| /linux/net/ceph/ |
| H A D | pagelist.c | 20 pl->room = 0; in ceph_pagelist_alloc() 67 pl->room += PAGE_SIZE; in ceph_pagelist_addpage() 76 while (pl->room < len) { in ceph_pagelist_append() 77 size_t bit = pl->room; in ceph_pagelist_append() 83 pl->room -= bit; in ceph_pagelist_append() 93 pl->room -= len; in ceph_pagelist_append() 104 if (space <= pl->room) in ceph_pagelist_reserve() 106 space -= pl->room; in ceph_pagelist_reserve()
|
| /linux/drivers/tty/ipwireless/ |
| H A D | tty.c | 193 int room, ret; in ipw_write() local 204 room = IPWIRELESS_TX_QUEUE_SIZE - tty->tx_bytes_queued; in ipw_write() 205 if (room < 0) in ipw_write() 206 room = 0; in ipw_write() 208 if (count > room) in ipw_write() 209 count = room; in ipw_write() 233 int room; in ipw_write_room() local 242 room = IPWIRELESS_TX_QUEUE_SIZE - tty->tx_bytes_queued; in ipw_write_room() 243 if (room < 0) in ipw_write_room() 244 room = 0; in ipw_write_room() [all …]
|
| /linux/drivers/usb/serial/ |
| H A D | keyspan_pda.c | 80 u8 room; in keyspan_pda_get_write_room() local 89 &room, in keyspan_pda_get_write_room() 98 dev_dbg(&port->dev, "roomquery says %d\n", room); in keyspan_pda_get_write_room() 100 return room; in keyspan_pda_get_write_room() 483 int room; in keyspan_pda_write_start() local 502 room = priv->tx_room; in keyspan_pda_write_start() 505 if (!test_bit(0, &port->write_urbs_free) || count == 0 || room == 0) { in keyspan_pda_write_start() 511 if (count > room) in keyspan_pda_write_start() 512 count = room; in keyspan_pda_write_start() 525 dev_dbg(&port->dev, "%s - count = %d, txroom = %d\n", __func__, count, room); in keyspan_pda_write_start() [all …]
|
| H A D | digi_acceleport.c | 1033 unsigned int room; in digi_write_room() local 1038 room = 0; in digi_write_room() 1040 room = port->bulk_out_size - 2 - priv->dp_out_buf_len; in digi_write_room() 1043 dev_dbg(&port->dev, "digi_write_room: port=%d, room=%u\n", priv->dp_port_num, room); in digi_write_room() 1044 return room; in digi_write_room()
|
| /linux/arch/m68k/fpsp040/ |
| H A D | fpsp.h | 100 .set FP_SCR1,LV+76 | room for a temporary float value 101 .set FP_SCR2,LV+92 | room for a temporary float value 102 .set L_SCR1,LV+108 | room for a temporary long value 103 .set L_SCR2,LV+112 | room for a temporary long value 112 .set L_SCR3,LV+124 | room for a temporary long value 113 .set FP_SCR3,LV+128 | room for a temporary float value 114 .set FP_SCR4,LV+144 | room for a temporary float value 115 .set FP_SCR5,LV+160 | room for a temporary float value
|
| /linux/arch/um/drivers/ |
| H A D | line.c | 54 unsigned int room; in line_write_room() local 57 room = write_room(line); in line_write_room() 60 return room; in line_write_room() 88 int end, room; in buffer_data() local 101 room = write_room(line); in buffer_data() 102 len = (len > room) ? room : len; in buffer_data()
|
| /linux/arch/alpha/ |
| H A D | Kconfig.debug | 14 to 0x810000 to make room for the Wildfire's larger SRM console. 16 extra room.
|
| /linux/net/ipv4/ |
| H A D | icmp.c | 740 unsigned int room, int iif) in icmp_ext_append() argument 762 if (ICMP_EXT_ORIG_DGRAM_MIN_LEN + ext_max_len > room) in icmp_ext_append() 820 int room; in __icmp_send() local 985 room = dst4_mtu(&rt->dst); in __icmp_send() 986 if (room > 576) in __icmp_send() 987 room = 576; in __icmp_send() 988 room -= sizeof(struct iphdr) + icmp_param->replyopts.opt.optlen; in __icmp_send() 989 room -= sizeof(struct icmphdr); in __icmp_send() 993 if (room <= (int)sizeof(struct iphdr)) in __icmp_send() 996 ext_skb = icmp_ext_append(net, skb_in, &icmp_param->data.icmph, room, in __icmp_send() [all …]
|
| /linux/scripts/kconfig/lxdialog/ |
| H A D | util.c | 345 int prompt_len, room, wlen; in print_autowrap() local 370 room = width - cur_x; in print_autowrap() 372 if (wlen > room || in print_autowrap() 374 && wlen + 1 + strlen(sp) > room in print_autowrap() 376 || wlen + 1 + (sp2 - sp) > room))) { in print_autowrap()
|
| /linux/Documentation/ABI/stable/ |
| H A D | sysfs-firmware-opal-elog | 15 Linux if there is no room for more log entries. 19 the service processor needs more room for log entries,
|
| /linux/Documentation/virt/kvm/x86/ |
| H A D | nested-vmx.rst | 93 u32 padding[7]; /* room for future expansion */ 116 u64 padding64[8]; /* room for future expansion */ 156 natural_width paddingl[8]; /* room for future expansion */ 203 u32 padding32[8]; /* room for future expansion */
|
| /linux/drivers/tty/ |
| H A D | n_tty.c | 1676 int room, overflow; in n_tty_receive_buf_common() local 1696 room = N_TTY_BUF_SIZE - (ldata->read_head - tail); in n_tty_receive_buf_common() 1698 room = DIV_ROUND_UP(room, 3); in n_tty_receive_buf_common() 1699 room--; in n_tty_receive_buf_common() 1700 if (room <= 0) { in n_tty_receive_buf_common() 1702 if (overflow && room < 0) in n_tty_receive_buf_common() 1704 room = overflow; in n_tty_receive_buf_common() 1705 WRITE_ONCE(ldata->no_room, flow && !room); in n_tty_receive_buf_common() 1709 n = min_t(size_t, count, room); in n_tty_receive_buf_common() 1724 tty->receive_room = room; in n_tty_receive_buf_common()
|
| /linux/drivers/usb/host/ |
| H A D | xhci-dbgtty.c | 355 unsigned int room; in dbc_tty_write_room() local 358 room = kfifo_avail(&port->port.xmit_fifo); in dbc_tty_write_room() 361 room = 0; in dbc_tty_write_room() 365 return room; in dbc_tty_write_room()
|
| /linux/drivers/net/usb/ |
| H A D | rndis_host.c | 565 int room = skb_headroom(skb); in rndis_tx_fixup() local 568 if (unlikely((sizeof *hdr) <= room)) in rndis_tx_fixup() 572 room += skb_tailroom(skb); in rndis_tx_fixup() 573 if (likely((sizeof *hdr) <= room)) { in rndis_tx_fixup()
|
| /linux/include/linux/ceph/ |
| H A D | pagelist.h | 14 size_t room; member
|
| /linux/sound/core/seq/ |
| H A D | seq_memory.h | 51 int room; /* watermark for sleep/wakeup */ member
|
| H A D | seq_memory.c | 29 return snd_seq_pool_available(pool) >= pool->room; in snd_seq_output_ok() 464 pool->room = (pool->size + 1) / 2; in snd_seq_pool_init()
|
| /linux/Documentation/userspace-api/media/mediactl/ |
| H A D | media-ioc-enum-links.rst | 44 room to store all the entity's pads. The number of pads can be retrieved 49 enough room to store all the entity's outbound links. The number of
|
| /linux/drivers/staging/greybus/ |
| H A D | uart.c | 446 int room; in gb_tty_write_room() local 449 room = kfifo_avail(&gb_tty->write_fifo); in gb_tty_write_room() 452 room -= GB_UART_WRITE_ROOM_MARGIN; in gb_tty_write_room() 453 if (room < 0) in gb_tty_write_room() 456 return room; in gb_tty_write_room()
|
| /linux/net/ipv6/ |
| H A D | icmp.c | 563 struct icmp6hdr *icmp6h, unsigned int room, int iif) in icmp6_ext_append() argument 592 if (ICMP_EXT_ORIG_DGRAM_MIN_LEN + ext_max_len > room) in icmp6_ext_append() 649 unsigned int room; in icmp6_send() local 803 room = IPV6_MIN_MTU - sizeof(struct ipv6hdr) - sizeof(struct icmp6hdr); in icmp6_send() 804 ext_skb = icmp6_ext_append(net, skb, &tmp_hdr, room, parm->iif); in icmp6_send() 809 len = min_t(unsigned int, len, room); in icmp6_send()
|
| /linux/Documentation/userspace-api/media/cec/ |
| H A D | cec-ioc-dqevent.rst | 39 there is no more room in a queue then the last event is overwritten with 89 new message arrives and there is no more room, then the oldest 90 message is discarded to make room for the new one. The internal
|
| H A D | cec-func-poll.rst | 47 transmit queue has room for new messages, the ``POLLOUT`` and
|
| /linux/net/bluetooth/rfcomm/ |
| H A D | tty.c | 804 int room = 0; in rfcomm_tty_write_room() local 807 room = rfcomm_room(dev); in rfcomm_tty_write_room() 809 BT_DBG("tty %p room %d", tty, room); in rfcomm_tty_write_room() 811 return room; in rfcomm_tty_write_room()
|
| /linux/arch/m68k/ifpsp060/ |
| H A D | ilsp.doc | 86 subq.l &0x8,%sp # make room for result on stack 100 subq.l &0x8,%sp # make room for result on stack
|
| /linux/drivers/spi/ |
| H A D | spi-dw-core.c | 694 u32 room, entries, sts; in dw_spi_write_then_read() local 722 room = min(dws->fifo_len - entries, len); in dw_spi_write_then_read() 723 for (; room; --room, --len) in dw_spi_write_then_read()
|