Searched refs:space (Results 1 - 12 of 12) sorted by relevance

/net/ceph/
H A Dpagelist.c81 int ceph_pagelist_reserve(struct ceph_pagelist *pl, size_t space) argument
83 if (space <= pl->room)
85 space -= pl->room;
86 space = (space + PAGE_SIZE - 1) >> PAGE_SHIFT; /* conv to num pages */
88 while (space > pl->num_pages_free) {
/net/batman-adv/
H A DKconfig15 http://www.open-mesh.org/ for more information and user space
27 this feature and save some space.
37 this option you can safely remove it and save some space.
51 can safely disable it and save some space.
/net/atm/
H A DKconfig17 Note that you need a set of user-space programs to actually make use
/net/bluetooth/
H A DKconfig37 To use Linux Bluetooth subsystem, you will need several user-space
/net/caif/
H A DKconfig12 with its modems. It is accessed from user space as sockets (PF_CAIF).
/net/rxrpc/
H A Dar-output.c399 * wait for space to appear in the transmit/ACK window
570 size_t size, chunk, max, space; local
593 space = chunk + call->conn->size_align;
594 space &= ~(call->conn->size_align - 1UL);
596 size = space + call->conn->header_size;
598 _debug("SIZE: %zu/%zu/%zu", chunk, space, size);
/net/ipv4/
H A Dtcp_output.c208 * Based on the assumption that the given amount of space
210 * NOTE: for smooth operation initial space offering should
219 unsigned int space = (__space < 0 ? 0 : __space); local
224 space = min(*window_clamp, space);
226 /* Quantize space offering to a multiple of mss if possible. */
227 if (space > mss)
228 space = (space / mss) * mss;
239 (*rcv_wnd) = min(space, MAX_TCP_WINDO
2424 tcp_retrans_try_collapse(struct sock *sk, struct sk_buff *to, int space) argument
3001 int syn_loss = 0, space, i, err = 0, iovlen = fo->data->msg_iovlen; local
[all...]
H A Dtcp_input.c413 tp->rcvq_space.space = tp->rcv_wnd;
548 * This function should be called every time data is copied to user space.
549 * It calculates the appropriate TCP receive buffer space.
563 if (copied <= tp->rcvq_space.space)
590 tp->rcvq_space.space + (tp->rcvq_space.space >> 2)) {
592 tp->rcvq_space.space + (tp->rcvq_space.space >> 1))
610 tp->rcvq_space.space = copied;
970 * |<------------+------+----- TCP seqno space
[all...]
H A Dtcp.c152 * (even a no space) answer.
525 /* Race breaker. If space is freed after
1217 /* We have some space in skb head. Superb! */
1449 /* Send ACK now, if this read freed lots of space
2715 info->tcpi_rcv_space = tp->rcvq_space.space;
/net/sunrpc/
H A Dsvc_xprt.c276 /* This errno is exposed to user space. Provide a reasonable
430 * svc_reserve - change the space reserved for the reply to a request.
432 * @space: new max space to reserve
434 * Each request reserves some space on the output queue of the transport
436 * space to be the amount of space used already, plus @space.
439 void svc_reserve(struct svc_rqst *rqstp, int space) argument
441 space
[all...]
/net/ipv6/
H A Dndisc.c152 int space = ndisc_opt_addr_space(skb->dev); local
153 u8 *opt = skb_put(skb, space);
156 opt[1] = space>>3;
160 space -= pad;
165 if ((space -= data_len) > 0)
166 memset(opt, 0, space);
/net/
H A DKconfig349 are broadcast via netlink socket to any listening user space

Completed in 157 milliseconds