Home
last modified time | relevance | path

Searched refs:room (Results 1 – 103 of 103) sorted by relevance

/linux-4.1.27/net/ceph/
Dpagelist.c46 pl->room += PAGE_SIZE; in ceph_pagelist_addpage()
55 while (pl->room < len) { in ceph_pagelist_append()
56 size_t bit = pl->room; in ceph_pagelist_append()
62 pl->room -= bit; in ceph_pagelist_append()
72 pl->room -= len; in ceph_pagelist_append()
83 if (space <= pl->room) in ceph_pagelist_reserve()
85 space -= pl->room; in ceph_pagelist_reserve()
120 c->room = pl->room; in ceph_pagelist_set_cursor()
143 pl->room = c->room; in ceph_pagelist_truncate()
/linux-4.1.27/drivers/usb/serial/
Dkeyspan_pda.c477 u8 *room; in keyspan_pda_write() local
479 room = kmalloc(1, GFP_KERNEL); in keyspan_pda_write()
480 if (!room) { in keyspan_pda_write()
492 room, in keyspan_pda_write()
496 dev_dbg(&port->dev, "roomquery says %d\n", *room); in keyspan_pda_write()
497 priv->tx_room = *room; in keyspan_pda_write()
499 kfree(room); in keyspan_pda_write()
609 u8 *room; in keyspan_pda_open() local
614 room = kmalloc(1, GFP_KERNEL); in keyspan_pda_open()
615 if (!room) in keyspan_pda_open()
[all …]
Domninet.c219 int room = 0; /* Default: no room */ in omninet_write_room() local
222 room = wport->bulk_out_size - OMNINET_HEADERLEN; in omninet_write_room()
224 dev_dbg(&port->dev, "%s - returns %d\n", __func__, room); in omninet_write_room()
226 return room; in omninet_write_room()
Dgeneric.c215 int room; in usb_serial_generic_write_room() local
221 room = kfifo_avail(&port->write_fifo); in usb_serial_generic_write_room()
224 dev_dbg(&port->dev, "%s - returns %d\n", __func__, room); in usb_serial_generic_write_room()
225 return room; in usb_serial_generic_write_room()
Ddigi_acceleport.c1049 int room; in digi_write_room() local
1055 room = 0; in digi_write_room()
1057 room = port->bulk_out_size - 2 - priv->dp_out_buf_len; in digi_write_room()
1060 dev_dbg(&port->dev, "digi_write_room: port=%d, room=%d\n", priv->dp_port_num, room); in digi_write_room()
1061 return room; in digi_write_room()
Doti6858.c371 int room = 0; in oti6858_write_room() local
375 room = kfifo_avail(&port->write_fifo); in oti6858_write_room()
378 return room; in oti6858_write_room()
Dcypress_m8.c804 int room = 0; in cypress_write_room() local
808 room = kfifo_avail(&priv->write_fifo); in cypress_write_room()
811 dev_dbg(&port->dev, "%s - returns %d\n", __func__, room); in cypress_write_room()
812 return room; in cypress_write_room()
Dmos7840.c1264 int room = 0; in mos7840_write_room() local
1278 room += URB_TRANSFER_BUFFER_SIZE; in mos7840_write_room()
1282 room = (room == 0) ? 0 : room - URB_TRANSFER_BUFFER_SIZE + 1; in mos7840_write_room()
1283 dev_dbg(&mos7840_port->port->dev, "%s - returns %d\n", __func__, room); in mos7840_write_room()
1284 return room; in mos7840_write_room()
Dti_usb_3410_5052.c603 int room = 0; in ti_write_room() local
610 room = kfifo_avail(&port->write_fifo); in ti_write_room()
613 dev_dbg(&port->dev, "%s - returns %d\n", __func__, room); in ti_write_room()
614 return room; in ti_write_room()
Dmos7720.c1186 int room = 0; in mos7720_write_room() local
1197 room += URB_TRANSFER_BUFFER_SIZE; in mos7720_write_room()
1200 dev_dbg(&port->dev, "%s - returns %d\n", __func__, room); in mos7720_write_room()
1201 return room; in mos7720_write_room()
Dio_ti.c1969 int room = 0; in edge_write_room() local
1978 room = kfifo_avail(&port->write_fifo); in edge_write_room()
1981 dev_dbg(&port->dev, "%s - returns %d\n", __func__, room); in edge_write_room()
1982 return room; in edge_write_room()
Dio_edgeport.c1314 int room; in edge_write_room() local
1329 room = edge_port->txCredits - edge_port->txfifo.count; in edge_write_room()
1332 dev_dbg(&port->dev, "%s - returns %d\n", __func__, room); in edge_write_room()
1333 return room; in edge_write_room()
/linux-4.1.27/drivers/tty/ipwireless/
Dtty.c194 int room, ret; in ipw_write() local
205 room = IPWIRELESS_TX_QUEUE_SIZE - tty->tx_bytes_queued; in ipw_write()
206 if (room < 0) in ipw_write()
207 room = 0; in ipw_write()
209 if (count > room) in ipw_write()
210 count = room; in ipw_write()
234 int room; in ipw_write_room() local
243 room = IPWIRELESS_TX_QUEUE_SIZE - tty->tx_bytes_queued; in ipw_write_room()
244 if (room < 0) in ipw_write_room()
245 room = 0; in ipw_write_room()
[all …]
/linux-4.1.27/include/linux/ceph/
Dpagelist.h13 size_t room; member
22 size_t room; /* room remaining to reset to */ member
30 pl->room = 0; in ceph_pagelist_init()
/linux-4.1.27/drivers/net/caif/
Dcaif_serial.c221 int tty_wr, len, room; in handle_tx() local
235 room = tty_write_room(tty); in handle_tx()
236 if (!room) in handle_tx()
238 if (room > ser_write_chunk) in handle_tx()
239 room = ser_write_chunk; in handle_tx()
240 if (len > room) in handle_tx()
241 len = room; in handle_tx()
/linux-4.1.27/drivers/tty/serial/
Dmen_z135_uart.c253 int room; in men_z135_handle_rx() local
266 room = tty_buffer_request_room(tport, size); in men_z135_handle_rx()
267 if (room != size) in men_z135_handle_rx()
270 room); in men_z135_handle_rx()
272 if (room == 0) in men_z135_handle_rx()
275 memcpy_fromio(uart->rxbuf, port->membase + MEN_Z135_RX_RAM, room); in men_z135_handle_rx()
278 iowrite32(room, port->membase + MEN_Z135_RX_CTRL); in men_z135_handle_rx()
280 copied = tty_insert_flip_string(tport, uart->rxbuf, room); in men_z135_handle_rx()
281 if (copied != room) in men_z135_handle_rx()
284 copied, room); in men_z135_handle_rx()
Dsh-sci.c1295 int i, active, room; in sci_dma_rx_push() local
1297 room = tty_buffer_request_room(tport, count); in sci_dma_rx_push()
1308 if (room < count) in sci_dma_rx_push()
1310 count - room); in sci_dma_rx_push()
1311 if (!room) in sci_dma_rx_push()
1312 return room; in sci_dma_rx_push()
1314 for (i = 0; i < room; i++) in sci_dma_rx_push()
1318 port->icount.rx += room; in sci_dma_rx_push()
1320 return room; in sci_dma_rx_push()
Dpch_uart.c672 int room; in dma_push_rx() local
676 room = tty_buffer_request_room(tport, size); in dma_push_rx()
678 if (room < size) in dma_push_rx()
680 size - room); in dma_push_rx()
681 if (!room) in dma_push_rx()
686 port->icount.rx += room; in dma_push_rx()
688 return room; in dma_push_rx()
/linux-4.1.27/drivers/staging/comedi/drivers/
Damplc_pci224.c509 unsigned int room; in pci224_ao_handle_fifo() local
517 room = PCI224_FIFO_ROOM_EMPTY; in pci224_ao_handle_fifo()
527 room = PCI224_FIFO_ROOM_ONETOHALF; in pci224_ao_handle_fifo()
530 room = PCI224_FIFO_ROOM_HALFTOFULL; in pci224_ao_handle_fifo()
533 room = PCI224_FIFO_ROOM_FULL; in pci224_ao_handle_fifo()
536 if (room >= PCI224_FIFO_ROOM_ONETOHALF) { in pci224_ao_handle_fifo()
545 room /= cmd->chanlist_len; in pci224_ao_handle_fifo()
548 if (num_scans > room) in pci224_ao_handle_fifo()
549 num_scans = room; in pci224_ao_handle_fifo()
Damplc_pci230.c1095 unsigned int room; in pci230_handle_ao_fifo() local
1126 room = PCI230P2_DAC_FIFOROOM_FULL; in pci230_handle_ao_fifo()
1128 room = PCI230P2_DAC_FIFOROOM_HALFTOFULL; in pci230_handle_ao_fifo()
1130 room = PCI230P2_DAC_FIFOROOM_EMPTY; in pci230_handle_ao_fifo()
1132 room = PCI230P2_DAC_FIFOROOM_ONETOHALF; in pci230_handle_ao_fifo()
1134 room /= cmd->chanlist_len; in pci230_handle_ao_fifo()
1136 if (num_scans > room) in pci230_handle_ao_fifo()
1137 num_scans = room; in pci230_handle_ao_fifo()
/linux-4.1.27/arch/powerpc/kernel/
Dprom_init.c1988 unsigned long room, chunk; in make_room() local
1992 room = alloc_top - alloc_bottom; in make_room()
1993 if (room > DEVTREE_CHUNK_SIZE) in make_room()
1994 room = DEVTREE_CHUNK_SIZE; in make_room()
1995 if (room < PAGE_SIZE) in make_room()
1998 chunk = alloc_up(room, 0); in make_room()
2002 *mem_end = chunk + room; in make_room()
2012 void *room = make_room(mem_start, mem_end, 4, 4); \
2013 *(__be32 *)room = cpu_to_be32(token); \
2092 int l, room, has_phandle = 0; in scan_dt_build_struct() local
[all …]
/linux-4.1.27/arch/m68k/fpsp040/
Dfpsp.h100 .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
Ddo_func.S81 lsll #3,%d0 |make room for STAG
/linux-4.1.27/arch/um/drivers/
Dline.c53 int room; in line_write_room() local
56 room = write_room(line); in line_write_room()
59 return room; in line_write_room()
87 int end, room; in buffer_data() local
100 room = write_room(line); in buffer_data()
101 len = (len > room) ? room : len; in buffer_data()
/linux-4.1.27/arch/alpha/
DKconfig.debug16 to 0x810000 to make room for the Wildfire's larger SRM console.
18 extra room.
/linux-4.1.27/net/ipv4/
Dicmp.c547 int room; in icmp_send() local
690 room = dst_mtu(&rt->dst); in icmp_send()
691 if (room > 576) in icmp_send()
692 room = 576; in icmp_send()
693 room -= sizeof(struct iphdr) + icmp_param->replyopts.opt.opt.optlen; in icmp_send()
694 room -= sizeof(struct icmphdr); in icmp_send()
697 if (icmp_param->data_len > room) in icmp_send()
698 icmp_param->data_len = room; in icmp_send()
/linux-4.1.27/drivers/bluetooth/
Dhci_ll.c350 int room = skb_tailroom(ll->rx_skb); in ll_check_data_len() local
352 BT_DBG("len %d room %d", len, room); in ll_check_data_len()
356 } else if (len > room) { in ll_check_data_len()
/linux-4.1.27/drivers/net/wimax/i2400m/
Dtx.c438 size_t room, tail_room, needed_size; in i2400m_tx_fifo_push() local
442 room = I2400M_TX_BUF_SIZE - (i2400m->tx_in - i2400m->tx_out); in i2400m_tx_fifo_push()
443 if (room < needed_size) { /* this takes care of Case B */ in i2400m_tx_fifo_push()
464 if (room - tail_room >= needed_size) { in i2400m_tx_fifo_push()
/linux-4.1.27/arch/ia64/kernel/
Dparavirt_patch.c253 unsigned long room = ebundle - sbundle; in __paravirt_patch_apply_bundle() local
258 if (room < need) { in __paravirt_patch_apply_bundle()
263 type, need, room); in __paravirt_patch_apply_bundle()
/linux-4.1.27/Documentation/ABI/stable/
Dsysfs-firmware-opal-elog15 Linux if there is no room for more log entries.
19 the service processor needs more room for log entries,
/linux-4.1.27/sound/core/seq/
Dseq_memory.h49 int room; /* watermark for sleep/wakeup */ member
Dseq_memory.c42 return snd_seq_pool_available(pool) >= pool->room; in snd_seq_output_ok()
408 pool->room = (pool->size + 1) / 2; in snd_seq_pool_init()
Dseq_clientmgr.c1887 info.output_room = cptr->pool->room; in snd_seq_ioctl_get_client_pool()
1944 client->pool->room = info.output_room; in snd_seq_ioctl_set_client_pool()
/linux-4.1.27/Documentation/virtual/kvm/
Dnested-vmx.txt97 u32 padding[7]; /* room for future expansion */
120 u64 padding64[8]; /* room for future expansion */
163 natural_width paddingl[8]; /* room for future expansion */
210 u32 padding32[8]; /* room for future expansion */
/linux-4.1.27/scripts/kconfig/lxdialog/
Dutil.c385 int prompt_len, room, wlen; in print_autowrap() local
411 room = width - cur_x; in print_autowrap()
413 if (wlen > room || in print_autowrap()
415 && wlen + 1 + strlen(sp) > room in print_autowrap()
417 || wlen + 1 + (sp2 - sp) > room))) { in print_autowrap()
/linux-4.1.27/drivers/tty/
Dmetag_da.c531 int room; in dashtty_write_room() local
538 room = SERIAL_XMIT_SIZE - dport->xmit_cnt; in dashtty_write_room()
541 return room; in dashtty_write_room()
Dn_tty.c1710 int room, n, rcvd = 0, overflow; in n_tty_receive_buf_common() local
1730 room = N_TTY_BUF_SIZE - (ldata->read_head - tail); in n_tty_receive_buf_common()
1732 room = (room + 2) / 3; in n_tty_receive_buf_common()
1733 room--; in n_tty_receive_buf_common()
1734 if (room <= 0) { in n_tty_receive_buf_common()
1736 if (overflow && room < 0) in n_tty_receive_buf_common()
1738 room = overflow; in n_tty_receive_buf_common()
1739 ldata->no_room = flow && !room; in n_tty_receive_buf_common()
1743 n = min(count, room); in n_tty_receive_buf_common()
1758 tty->receive_room = room; in n_tty_receive_buf_common()
Dn_r3964.c441 int room = 0; in transmit_block() local
447 room = tty_write_room(tty); in transmit_block()
450 pBlock, room, pBlock->length); in transmit_block()
453 if (room < 2) in transmit_block()
462 room--; in transmit_block()
465 if ((pInfo->tx_position == pBlock->length) && (room >= 3)) { in transmit_block()
Dmips_ejtag_fdc.c849 int room; in mips_ejtag_fdc_tty_write_room() local
853 room = priv->xmit_size - dport->xmit_cnt; in mips_ejtag_fdc_tty_write_room()
856 return room; in mips_ejtag_fdc_tty_write_room()
Dnozomi.c1705 int room = 4096; in ntty_write_room() local
1709 room = kfifo_avail(&port->fifo_ul); in ntty_write_room()
1711 return room; in ntty_write_room()
/linux-4.1.27/drivers/misc/ti-st/
Dst_core.c167 int room = skb_tailroom(st_gdata->rx_skb); in st_check_data_len() local
169 pr_debug("len %d room %d", len, room); in st_check_data_len()
178 } else if (len > room) { in st_check_data_len()
183 room); in st_check_data_len()
Dst_kim.c106 register int room = skb_tailroom(kim_gdata->rx_skb); in kim_check_data_len() local
108 pr_debug("len %d room %d", len, room); in kim_check_data_len()
112 } else if (len > room) { in kim_check_data_len()
117 room); in kim_check_data_len()
/linux-4.1.27/drivers/net/usb/
Drndis_host.c549 int room = skb_headroom(skb); in rndis_tx_fixup() local
552 if (unlikely((sizeof *hdr) <= room)) in rndis_tx_fixup()
556 room += skb_tailroom(skb); in rndis_tx_fixup()
557 if (likely((sizeof *hdr) <= room)) { in rndis_tx_fixup()
Dhso.c1387 int room; in hso_serial_write_room() local
1391 room = serial->tx_data_length - serial->tx_buffer_count; in hso_serial_write_room()
1395 return room; in hso_serial_write_room()
/linux-4.1.27/net/ipv6/
Dip6_flowlabel.c445 int room = FL_MAX_SIZE - atomic_read(&fl_size); in mem_check() local
448 if (room > FL_MAX_SIZE - FL_MAX_PER_SOCK) in mem_check()
456 if (room <= 0 || in mem_check()
458 (count > 0 && room < FL_MAX_SIZE/2) || room < FL_MAX_SIZE/4) && in mem_check()
/linux-4.1.27/arch/arm/crypto/
Dsha256-core.S_shipped118 str r1,[sp,#17*4] @ make room for r1
135 str r1,[sp,#17*4] @ make room for r1
176 str r1,[sp,#17*4] @ make room for r1
193 str r1,[sp,#17*4] @ make room for r1
234 str r1,[sp,#17*4] @ make room for r1
251 str r1,[sp,#17*4] @ make room for r1
292 str r1,[sp,#17*4] @ make room for r1
309 str r1,[sp,#17*4] @ make room for r1
350 str r1,[sp,#17*4] @ make room for r1
367 str r1,[sp,#17*4] @ make room for r1
[all …]
/linux-4.1.27/fs/f2fs/
Ddir.c166 bool room = false; in find_in_level() local
182 room = true; in find_in_level()
191 room = true; in find_in_level()
195 if (!de && room && F2FS_I(dir)->chash != namehash) { in find_in_level()
/linux-4.1.27/drivers/isdn/capi/
Dcapi.c1138 int room; in capinc_tty_write_room() local
1140 room = CAPINC_MAX_SENDQUEUE-skb_queue_len(&mp->outqueue); in capinc_tty_write_room()
1141 room *= CAPI_MAX_BLKSIZE; in capinc_tty_write_room()
1142 pr_debug("capinc_tty_write_room = %d\n", room); in capinc_tty_write_room()
1143 return room; in capinc_tty_write_room()
/linux-4.1.27/drivers/usb/gadget/function/
Du_serial.c945 int room = 0; in gs_write_room() local
949 room = gs_buf_space_avail(&port->port_write_buf); in gs_write_room()
953 port->port_num, tty, room); in gs_write_room()
955 return room; in gs_write_room()
/linux-4.1.27/net/bluetooth/rfcomm/
Dtty.c815 int room = 0; in rfcomm_tty_write_room() local
818 room = rfcomm_room(dev); in rfcomm_tty_write_room()
820 BT_DBG("tty %p room %d", tty, room); in rfcomm_tty_write_room()
822 return room; in rfcomm_tty_write_room()
/linux-4.1.27/arch/cris/arch-v32/kernel/
Dentry.S344 subq 10*4, $sp ; Make room for R9.
391 subq 14*4, $sp ; Make room for R0-R13.
489 subq 14*4, $sp ; Make room for r0-r13.
/linux-4.1.27/arch/m68k/ifpsp060/
Dilsp.doc86 subq.l &0x8,%sp # make room for result on stack
100 subq.l &0x8,%sp # make room for result on stack
/linux-4.1.27/Documentation/video4linux/cx2341x/
DREADME.vbi20 If all lines are used, then there is no longer room for the bitmask. To solve this
/linux-4.1.27/drivers/uwb/
DKconfig11 optimized for in-room use (480Mbps at 2 meters, 110Mbps at
/linux-4.1.27/Documentation/networking/
Ddriver.txt72 This error can deadlock sockets waiting for send buffer room
Drds.txt130 there's room on the send queue (ie the number of bytes queued
188 more send room)
Dfib_trie.txt84 and there may be some room for experimentation here.
Dde4x5.txt142 linux/drivers/net/Space.c to make room for them. Hence, module loading
D3c509.txt172 0x08 Tx FIFO room available
Dspider_net.txt189 is full, the netdev is stopped. When there is room in the ring,
Dfilter.txt813 has room for new instructions. Some of them may use 16/24/32 byte encoding. New
Dip-sysctl.txt721 causes the oldest entry in the bucket to be removed to make room.
/linux-4.1.27/arch/m32r/include/asm/
Dassembler.h130 addi sp, #-4 ; room for implicit pt_regs parameter
/linux-4.1.27/arch/mn10300/mm/
DKconfig.cache15 make room. Only at that point is it written back.
/linux-4.1.27/Documentation/arm/nwfpe/
DREADME9 possible, but there remains much room for improvement.
/linux-4.1.27/Documentation/mtd/
Dnand_ecc.txt5 I felt there was room for optimisation. I bashed the code for a few hours
8 Still I was not too happy as I felt there was additional room for improvement.
264 Fortunately there is plenty of room for improvement.
566 There is a little bit more room for improvement though. There are three
644 further there is still room to optimize the generation of the ecc codes.
/linux-4.1.27/arch/arc/include/asm/
Dentry.h313 st.a sp, [r9, -16] ; Make room for orig_r0, ECR, user_r25
/linux-4.1.27/Documentation/x86/x86_64/
Dkernel-stacks21 the split thread and interrupt stacks on i386, this gives more room
/linux-4.1.27/scripts/kconfig/
Dzconf.lex.c_shipped214 /* Size of input buffer in bytes, not including room for EOB
1522 { /* Not enough room in the buffer - grow it. */
1540 /* Include room in for 2 EOB chars. */
1646 { /* need to shift things up to make room */
2023 /* They forgot to leave room for the EOB's. */
/linux-4.1.27/arch/cris/arch-v10/kernel/
Dentry.S435 move $brp,[$sp=$sp-16]; instruction pointer and room for a fake SBFS frame
563 subq 14*4, $sp ; Make room for r0-r13.
/linux-4.1.27/scripts/genksyms/
Dlex.lex.c_shipped195 /* Size of input buffer in bytes, not including room for EOB
1095 { /* Not enough room in the buffer - grow it. */
1113 /* Include room in for 2 EOB chars. */
1245 { /* need to shift things up to make room */
1628 /* They forgot to leave room for the EOB's. */
/linux-4.1.27/Documentation/video4linux/
DREADME.ivtv19 The primary goal of the IVTV project is to provide a "clean room" Linux
Dv4l2-framework.txt1059 a new event is raised and there is no more room. The replace() callback
/linux-4.1.27/Documentation/hwmon/
Dpc87360146 room for per motherboard specificities, unfortunately. Even worse,
/linux-4.1.27/Documentation/input/
Dff.txt117 This makes room for new effects in the device's memory. Note that this also
/linux-4.1.27/scripts/dtc/
Ddtc-lexer.lex.c_shipped205 /* Size of input buffer in bytes, not including room for EOB
1399 { /* Not enough room in the buffer - grow it. */
1417 /* Include room in for 2 EOB chars. */
1891 /* They forgot to leave room for the EOB's. */
/linux-4.1.27/arch/frv/
DKconfig166 make room. Only at that point is it written back.
/linux-4.1.27/firmware/keyspan_pda/
Dkeyspan_pda.S441 ;; 06 is query room
890 ;; step 2: is there now room?
Dxircom_pgs.S479 ;; 06 is query room
951 ;; step 2: is there now room?
/linux-4.1.27/Documentation/
Dcrc32.txt61 can be precomputed, and merging in the final 32 zero bits to make room
Dsvga.txt175 video modes. Works only with some boot loaders which leave enough room for the
DManagementStyle271 room door, you _will_ get an immense feeling of personal accomplishment
Dxillybus.txt153 room in the buffers to store any of the data in the buffers.
DCodingStyle490 multiple data declarations). This leaves you room for a small comment on each
Dkernel-parameters.txt3912 decrease the size and leave more room for directly
/linux-4.1.27/Documentation/filesystems/nfs/
Drpc-cache.txt82 enough room or other problem.
/linux-4.1.27/Documentation/filesystems/
Drelay.txt333 the current sub-buffer, because there's no room left for it, the
402 whatever information the client wants. In the example above, room is
Dcoda.txt466 exchange information. It has room for future extensions such as
1047 has room to deal with an execp input field, probably this field should
/linux-4.1.27/Documentation/serial/
Dtty.txt125 If there is no room in the queue, the character is
/linux-4.1.27/Documentation/block/
Ddata-integrity.txt238 there is room in the bip bio_vec array (nr_pages).
Dbiodoc.txt337 to the device. The cmd block in the request structure has room for filling
/linux-4.1.27/Documentation/timers/
Dhighres.txt237 The implementation leaves room for further development like full tickless
/linux-4.1.27/arch/m68k/
DKconfig.machine384 a system with the RAM based at address 0, and leaving enough room
/linux-4.1.27/Documentation/ioctl/
Dioctl-number.txt25 unused block with enough room for expansion: 32 to 256 ioctl commands.
/linux-4.1.27/Documentation/development-process/
D6.Followthrough11 room for improvement. The kernel development process recognizes this fact,
D4.Coding32 quickly understand any part of it. So there is no longer room for
/linux-4.1.27/Documentation/vm/
Dfrontswap.txt168 have room, frontswap_store returns -1 and the kernel swaps the page
/linux-4.1.27/fs/xfs/libxfs/
Dxfs_bmap.c1260 xfs_extnum_t room; /* number of entries there's room for */ in xfs_bmap_read_extents() local
1299 room = ifp->if_bytes / (uint)sizeof(xfs_bmbt_rec_t); in xfs_bmap_read_extents()
1311 if (unlikely(i + num_recs > room)) { in xfs_bmap_read_extents()
1312 ASSERT(i + num_recs <= room); in xfs_bmap_read_extents()
/linux-4.1.27/arch/m68k/ifpsp060/src/
Dilsp.S58 # leave room for future possible aditions.
Dpfpsp.S2999 subq.l &0x8,%sp # make room for new stack
3296 # on the system stack must be carefully moved "down" to make room #
4403 sub.l %d0,%sp # make room for fpregs
Dfpsp.S3000 subq.l &0x8,%sp # make room for new stack
3297 # on the system stack must be carefully moved "down" to make room #
18354 sub.l %d0,%sp # make room for fpregs
Dfplsp.S267 # leave room for future possible additions
/linux-4.1.27/Documentation/trace/
Dftrace.txt153 If the last page allocated has room for more bytes