Home
last modified time | relevance | path

Searched refs:remain (Results 1 – 200 of 204) sorted by relevance

12

/linux-4.1.27/drivers/staging/unisys/common-spar/include/
Dvbusdeviceinfo.h53 vbuschannel_sanitize_buffer(char *p, int remain, char *src, int srcmax) in vbuschannel_sanitize_buffer() argument
61 if (remain > 0) { in vbuschannel_sanitize_buffer()
64 remain--; in vbuschannel_sanitize_buffer()
71 if (remain > 0) { in vbuschannel_sanitize_buffer()
74 remain--; in vbuschannel_sanitize_buffer()
88 #define VBUSCHANNEL_ADDACHAR(ch, p, remain, chars) \ argument
90 if (remain <= 0) \
93 p++; chars++; remain--; \
106 vbuschannel_itoa(char *p, int remain, int num) in vbuschannel_itoa() argument
114 if (remain <= 0) in vbuschannel_itoa()
[all …]
/linux-4.1.27/drivers/staging/rtl8188eu/hal/
Dfw.c63 u32 i, offset, blk_cnt, remain; in _rtl88e_fw_block_write() local
66 remain = size % blk_sz; in _rtl88e_fw_block_write()
74 if (remain) { in _rtl88e_fw_block_write()
77 for (i = 0; i < remain; i++) { in _rtl88e_fw_block_write()
87 u8 remain = (u8)(fwlen % 4); in _rtl88e_fill_dummy() local
89 remain = (remain == 0) ? 0 : (4 - remain); in _rtl88e_fill_dummy()
91 while (remain > 0) { in _rtl88e_fill_dummy()
94 remain--; in _rtl88e_fill_dummy()
115 u32 page_no, remain; in _rtl88e_write_fw() local
121 remain = size % FW_8192C_PAGE_SIZE; in _rtl88e_write_fw()
[all …]
/linux-4.1.27/arch/um/kernel/skas/
Duaccess.c93 int size, remain, n; in buffer_op() local
96 remain = len; in buffer_op()
100 remain = (n < 0 ? remain : 0); in buffer_op()
105 remain -= size; in buffer_op()
106 if (remain == 0) in buffer_op()
109 while (addr < ((addr + remain) & PAGE_MASK)) { in buffer_op()
112 remain = (n < 0 ? remain : 0); in buffer_op()
117 remain -= PAGE_SIZE; in buffer_op()
119 if (remain == 0) in buffer_op()
122 n = do_op_one_page(addr, remain, is_write, op, arg); in buffer_op()
[all …]
/linux-4.1.27/arch/mips/netlogic/xlr/
Dsetup.c104 int i, remain, len; in build_arcs_cmdline() local
107 remain = sizeof(arcs_cmdline) - 1; in build_arcs_cmdline()
112 if (len + 1 > remain) in build_arcs_cmdline()
116 remain -= len + 1; in build_arcs_cmdline()
123 if (len > remain) in build_arcs_cmdline()
126 remain -= len; in build_arcs_cmdline()
132 if (len > remain) in build_arcs_cmdline()
135 remain -= len; in build_arcs_cmdline()
/linux-4.1.27/drivers/staging/fbtft/
Dfbtft-bus.c134 size_t remain; in fbtft_write_vmem16_bus8() local
144 remain = len / 2; in fbtft_write_vmem16_bus8()
164 while (remain) { in fbtft_write_vmem16_bus8()
165 to_copy = remain > tx_array_size ? tx_array_size : remain; in fbtft_write_vmem16_bus8()
167 to_copy, remain - to_copy); in fbtft_write_vmem16_bus8()
177 remain -= to_copy; in fbtft_write_vmem16_bus8()
189 size_t remain; in fbtft_write_vmem16_bus9() local
203 remain = len; in fbtft_write_vmem16_bus9()
208 while (remain) { in fbtft_write_vmem16_bus9()
209 to_copy = remain > tx_array_size ? tx_array_size : remain; in fbtft_write_vmem16_bus9()
[all …]
Dfb_ra8875.c275 size_t remain; in write_vmem16_bus8() local
285 remain = len / 2; in write_vmem16_bus8()
293 while (remain) { in write_vmem16_bus8()
294 to_copy = remain > tx_array_size ? tx_array_size : remain; in write_vmem16_bus8()
296 to_copy, remain - to_copy); in write_vmem16_bus8()
306 remain -= to_copy; in write_vmem16_bus8()
/linux-4.1.27/arch/um/drivers/
Dumcast_kern.c73 char *port_str = NULL, *ttl_str = NULL, *remain; in mcast_setup() local
81 remain = split_if_spec(str, mac_out, &init->addr, &port_str, &ttl_str, in mcast_setup()
83 if (remain != NULL) { in mcast_setup()
85 "specification : '%s'\n", remain); in mcast_setup()
119 char *lport_str = NULL, *rport_str = NULL, *remain; in ucast_setup() local
127 remain = split_if_spec(str, mac_out, &init->addr, in ucast_setup()
129 if (remain != NULL) { in ucast_setup()
131 "specification : '%s'\n", remain); in ucast_setup()
Dnet_user.c52 int remain, ret, expected; in read_output() local
62 ret = read(fd, &remain, sizeof(remain)); in read_output()
64 if (ret != sizeof(remain)) { in read_output()
67 expected = sizeof(remain); in read_output()
72 while (remain != 0) { in read_output()
73 expected = (remain < len) ? remain : len; in read_output()
81 remain -= ret; in read_output()
Dpcap_kern.c56 char *remain, *host_if = NULL, *options[2] = { NULL, NULL }; in pcap_setup() local
65 remain = split_if_spec(str, &host_if, &init->filter, in pcap_setup()
67 if (remain != NULL) { in pcap_setup()
69 "specification : '%s'\n", remain); in pcap_setup()
Dvde_kern.c73 char *remain, *port_str = NULL, *mode_str = NULL, *last; in vde_setup() local
82 remain = split_if_spec(str, &init->vde_switch, mac_out, &port_str, in vde_setup()
85 if (remain != NULL) in vde_setup()
87 "'%s'\n", remain); in vde_setup()
Ddaemon_kern.c64 char *remain; in daemon_setup() local
70 remain = split_if_spec(str, mac_out, &init->sock_type, &init->ctl_sock, in daemon_setup()
72 if (remain != NULL) in daemon_setup()
Dnet_kern.c896 char *remain; in tap_setup_common() local
898 remain = split_if_spec(str, dev_name, mac_out, gate_addr, NULL); in tap_setup_common()
899 if (remain != NULL) { in tap_setup_common()
901 "specification : '%s'\n", remain); in tap_setup_common()
/linux-4.1.27/drivers/gpu/drm/qxl/
Dqxl_image.c136 int remain; in qxl_image_init_helper() local
140 remain = linesize * height; in qxl_image_init_helper()
144 while (remain > 0) { in qxl_image_init_helper()
155 size = min(size, remain); in qxl_image_init_helper()
161 remain -= size; in qxl_image_init_helper()
168 remain = linesize; in qxl_image_init_helper()
171 while (remain > 0) { in qxl_image_init_helper()
174 size = min((int)(PAGE_SIZE - page_offset), remain); in qxl_image_init_helper()
180 remain -= size; in qxl_image_init_helper()
/linux-4.1.27/drivers/media/usb/stk1160/
Dstk1160-video.c119 int remain; in stk1160_copy_video() local
135 remain = len; in stk1160_copy_video()
147 if (remain < (bytesperline - lineoff)) in stk1160_copy_video()
148 lencopy = remain; in stk1160_copy_video()
158 remain = lencopy; in stk1160_copy_video()
162 if (lencopy == 0 || remain == 0) in stk1160_copy_video()
181 remain -= lencopy; in stk1160_copy_video()
184 while (remain > 0) { in stk1160_copy_video()
190 if (remain < bytesperline) in stk1160_copy_video()
191 lencopy = remain; in stk1160_copy_video()
[all …]
/linux-4.1.27/arch/um/os-Linux/
Dtime.c61 long long remain, max = UM_NSEC_PER_SEC / UM_HZ; in disable_timer() local
67 remain = timeval_to_ns(&time.it_value); in disable_timer()
68 if (remain > max) in disable_timer()
69 remain = max; in disable_timer()
71 return remain; in disable_timer()
/linux-4.1.27/drivers/mmc/host/
Dmoxart-mmc.c164 int remain; in moxart_next_sg() local
172 remain = host->data_len - data->bytes_xfered; in moxart_next_sg()
173 if (remain > 0 && remain < host->data_remain) in moxart_next_sg()
174 host->data_remain = remain; in moxart_next_sg()
311 u32 *sgp, len = 0, remain, status; in moxart_transfer_pio() local
317 remain = host->data_remain; in moxart_transfer_pio()
320 while (remain > 0) { in moxart_transfer_pio()
327 for (len = 0; len < remain && len < host->fifo_width;) { in moxart_transfer_pio()
332 remain -= len; in moxart_transfer_pio()
336 while (remain > 0) { in moxart_transfer_pio()
[all …]
Dmmci.c919 u32 remain, success; in mmci_data_irq() local
934 remain = readl(host->base + MMCIDATACNT); in mmci_data_irq()
935 success = data->blksz * data->blocks - remain; in mmci_data_irq()
1047 static int mmci_get_rx_fifocnt(struct mmci_host *host, u32 status, int remain) in mmci_get_rx_fifocnt() argument
1049 return remain - (readl(host->base + MMCIFIFOCNT) << 2); in mmci_get_rx_fifocnt()
1066 static int mmci_pio_read(struct mmci_host *host, char *buffer, unsigned int remain) in mmci_pio_read() argument
1076 if (count > remain) in mmci_pio_read()
1077 count = remain; in mmci_pio_read()
1102 remain -= count; in mmci_pio_read()
1105 if (remain == 0) in mmci_pio_read()
[all …]
Dwbsd.h159 unsigned int remain; /* Data left in curren entry */ member
Dwbsd.c249 host->remain = host->cur_sg->length; in wbsd_init_sg()
265 host->remain = host->cur_sg->length; in wbsd_next_sg()
451 host->remain--; in wbsd_empty_fifo()
458 if (host->remain == 0) { in wbsd_empty_fifo()
514 host->remain--; in wbsd_fill_fifo()
521 if (host->remain == 0) { in wbsd_fill_fifo()
Ddw_mmc.c2059 unsigned int remain, fcnt; in dw_mci_read_data_pio() local
2067 remain = sg_miter->length; in dw_mci_read_data_pio()
2073 len = min(remain, fcnt); in dw_mci_read_data_pio()
2079 remain -= len; in dw_mci_read_data_pio()
2080 } while (remain); in dw_mci_read_data_pio()
2089 if (!remain) { in dw_mci_read_data_pio()
2114 unsigned int remain, fcnt; in dw_mci_write_data_pio() local
2122 remain = sg_miter->length; in dw_mci_write_data_pio()
2129 len = min(remain, fcnt); in dw_mci_write_data_pio()
2135 remain -= len; in dw_mci_write_data_pio()
[all …]
Dmmci.h232 int (*get_rx_fifocnt)(struct mmci_host *h, u32 status, int remain);
/linux-4.1.27/drivers/spi/
Dspi-sh.c166 int remain = t->len; in spi_sh_send() local
175 while (remain > 0) { in spi_sh_send()
176 cur_len = min(SPI_SH_FIFO_SIZE, remain); in spi_sh_send()
193 remain -= cur_len; in spi_sh_send()
196 if (remain > 0) { in spi_sh_send()
231 int remain = t->len; in spi_sh_receive() local
247 while (remain > 0) { in spi_sh_receive()
248 if (remain >= SPI_SH_FIFO_SIZE) { in spi_sh_receive()
261 cur_len = min(SPI_SH_FIFO_SIZE, remain); in spi_sh_receive()
268 remain -= cur_len; in spi_sh_receive()
Dspi-rockchip.c376 int remain = 0; in rockchip_spi_pio_transfer() local
380 remain = rs->tx_end - rs->tx; in rockchip_spi_pio_transfer()
385 remain = rs->rx_end - rs->rx; in rockchip_spi_pio_transfer()
390 } while (remain); in rockchip_spi_pio_transfer()
/linux-4.1.27/crypto/
Dgcm.c246 unsigned int remain, in gcm_hash_remain() argument
253 sg_init_one(pctx->src, gcm_zeroes, remain); in gcm_hash_remain()
254 ahash_request_set_crypt(ahreq, pctx->src, NULL, remain); in gcm_hash_remain()
353 unsigned int remain; in __gcm_hash_crypt_done() local
356 remain = gcm_remain(gctx->cryptlen); in __gcm_hash_crypt_done()
357 BUG_ON(!remain); in __gcm_hash_crypt_done()
358 err = gcm_hash_remain(req, pctx, remain, in __gcm_hash_crypt_done()
379 unsigned int remain = 0; in __gcm_hash_assoc_remain_done() local
382 remain = gcm_remain(gctx->cryptlen); in __gcm_hash_assoc_remain_done()
383 compl = remain ? gcm_hash_crypt_done : in __gcm_hash_assoc_remain_done()
[all …]
DKconfig602 lanes remain unfilled, a flush operation will be initiated to
/linux-4.1.27/lib/
Dgenalloc.c275 int nbits, start_bit = 0, end_bit, remain; in gen_pool_alloc() local
296 remain = bitmap_set_ll(chunk->bits, start_bit, nbits); in gen_pool_alloc()
297 if (remain) { in gen_pool_alloc()
298 remain = bitmap_clear_ll(chunk->bits, start_bit, in gen_pool_alloc()
299 nbits - remain); in gen_pool_alloc()
300 BUG_ON(remain); in gen_pool_alloc()
357 int start_bit, nbits, remain; in gen_pool_free() local
369 remain = bitmap_clear_ll(chunk->bits, start_bit, nbits); in gen_pool_free()
370 BUG_ON(remain); in gen_pool_free()
/linux-4.1.27/drivers/staging/gdm72xx/
Dgdm_sdio.c215 int n, blocks, ret, remain; in send_sdio_pkt() local
231 remain = len - n; in send_sdio_pkt()
232 remain = (remain + 3) & ~3; in send_sdio_pkt()
234 if (remain) { in send_sdio_pkt()
235 ret = sdio_memcpy_toio(func, 0, data + n, remain); in send_sdio_pkt()
482 int ret, remain; in gdm_sdio_irq() local
521 remain = len - TYPE_A_LOOKAHEAD_SIZE + TYPE_A_HEADER_SIZE; in gdm_sdio_irq()
522 if (remain <= 0) in gdm_sdio_irq()
525 blocks = remain / func->cur_blksize; in gdm_sdio_irq()
536 remain -= n; in gdm_sdio_irq()
[all …]
/linux-4.1.27/arch/powerpc/kernel/
Dudbg.c106 int remain = n; in udbg_write() local
113 while (((c = *s++) != '\0') && (remain-- > 0)) { in udbg_write()
121 return n - remain; in udbg_write()
/linux-4.1.27/drivers/net/wireless/rtlwifi/rtl8723com/
Dfw_common.c102 u8 remain = (u8) (fwlen % 4); in rtl8723_fill_dummy() local
104 remain = (remain == 0) ? 0 : (4 - remain); in rtl8723_fill_dummy()
106 while (remain > 0) { in rtl8723_fill_dummy()
109 remain--; in rtl8723_fill_dummy()
/linux-4.1.27/arch/alpha/lib/
Dmemchr.S72 # Deal with the case where at most 8 bytes remain to be searched
103 # Deal with the case where $18 > 8 bytes remain to be
127 # At least two quads remain to be accessed.
133 # At least three quads remain to be accessed
Dev6-memchr.S71 # Deal with the case where at most 8 bytes remain to be searched
122 # Deal with the case where $18 > 8 bytes remain to be
144 # At least two quads remain to be accessed.
149 # At least three quads remain to be accessed
/linux-4.1.27/drivers/staging/gdm724x/
Dgdm_tty.c182 int remain = len; in gdm_tty_write() local
193 sending_len = remain > MUX_TX_MAX_SIZE ? MUX_TX_MAX_SIZE : in gdm_tty_write()
194 remain; in gdm_tty_write()
203 remain -= sending_len; in gdm_tty_write()
204 if (remain <= 0) in gdm_tty_write()
/linux-4.1.27/net/rxrpc/
Dar-output.c594 sp->remain = chunk; in rxrpc_send_data()
595 if (sp->remain > skb_tailroom(skb)) in rxrpc_send_data()
596 sp->remain = skb_tailroom(skb); in rxrpc_send_data()
602 sp->remain); in rxrpc_send_data()
616 if (copy > sp->remain) in rxrpc_send_data()
617 copy = sp->remain; in rxrpc_send_data()
624 sp->remain -= copy; in rxrpc_send_data()
635 if (sp->remain <= 0 || in rxrpc_send_data()
Dar-internal.h87 int remain; /* amount of space remaining for next write */ member
/linux-4.1.27/arch/x86/kernel/
Dkdebugfs.c34 unsigned long remain; in setup_data_read() local
58 remain = copy_to_user(user_buf, p, count); in setup_data_read()
63 if (remain) in setup_data_read()
/linux-4.1.27/fs/omfs/
Dfile.c230 int remain; in omfs_get_block() local
253 offset = find_block(inode, entry, block, extent_count, &remain); in omfs_get_block()
257 if (remain > max_blocks) in omfs_get_block()
258 remain = max_blocks; in omfs_get_block()
259 bh_result->b_size = (remain << inode->i_blkbits); in omfs_get_block()
/linux-4.1.27/drivers/usb/dwc2/
Dhcd_ddma.c805 u16 remain = 0; in dwc2_cmpl_host_isoc_dma_desc() local
814 remain = (dma_desc->status & HOST_DMA_ISOC_NBYTES_MASK) >> in dwc2_cmpl_host_isoc_dma_desc()
824 frame_desc->actual_length = qh->n_bytes[idx] - remain; in dwc2_cmpl_host_isoc_dma_desc()
828 frame_desc->actual_length = qh->n_bytes[idx] - remain; in dwc2_cmpl_host_isoc_dma_desc()
940 u16 remain = 0; in dwc2_update_non_isoc_urb_state_ddma() local
943 remain = (dma_desc->status & HOST_DMA_NBYTES_MASK) >> in dwc2_update_non_isoc_urb_state_ddma()
946 dev_vdbg(hsotg->dev, "remain=%d dwc2_urb=%p\n", remain, urb); in dwc2_update_non_isoc_urb_state_ddma()
986 urb->actual_length += n_bytes - remain; in dwc2_update_non_isoc_urb_state_ddma()
987 if (remain || urb->actual_length >= urb->length) { in dwc2_update_non_isoc_urb_state_ddma()
1002 urb->actual_length += n_bytes - remain; in dwc2_update_non_isoc_urb_state_ddma()
[all …]
/linux-4.1.27/drivers/gpu/host1x/
Dsyncpt.c242 int remain = wait_event_interruptible_timeout(wq, in host1x_syncpt_wait() local
245 if (remain > 0 || host1x_syncpt_is_expired(sp, thresh)) { in host1x_syncpt_wait()
251 if (remain < 0) { in host1x_syncpt_wait()
252 err = remain; in host1x_syncpt_wait()
/linux-4.1.27/drivers/media/usb/au0828/
Dau0828-video.c330 int linesdone, currlinedone, offset, lencopy, remain; in au0828_copy_video() local
340 remain = len; in au0828_copy_video()
353 lencopy = lencopy > remain ? remain : lencopy; in au0828_copy_video()
359 remain = (char *)outp + buf->length - (char *)startwrite; in au0828_copy_video()
360 lencopy = remain; in au0828_copy_video()
366 remain -= lencopy; in au0828_copy_video()
368 while (remain > 0) { in au0828_copy_video()
371 if (bytesperline > remain) in au0828_copy_video()
372 lencopy = remain; in au0828_copy_video()
381 lencopy = remain = (char *)outp + buf->length - in au0828_copy_video()
[all …]
/linux-4.1.27/drivers/net/wireless/rtlwifi/rtl8188ee/
Dfw.c100 u8 remain = (u8) (fwlen % 4); in _rtl88e_fill_dummy() local
102 remain = (remain == 0) ? 0 : (4 - remain); in _rtl88e_fill_dummy()
104 while (remain > 0) { in _rtl88e_fill_dummy()
107 remain--; in _rtl88e_fill_dummy()
/linux-4.1.27/drivers/mmc/card/
Dqueue.c463 unsigned int len, remain, offset = 0; in mmc_queue_packed_map_sg() local
466 remain = hdr_sz; in mmc_queue_packed_map_sg()
468 len = min(remain, max_seg_sz); in mmc_queue_packed_map_sg()
471 remain -= len; in mmc_queue_packed_map_sg()
474 } while (remain); in mmc_queue_packed_map_sg()
/linux-4.1.27/scripts/
Dcheckpatch.pl1009 my ($linenr, $remain, $off) = @_;
1033 for (; $remain > 0; $line++) {
1036 $remain--;
1127 $remain--;
1139 $line, $remain + 1, $off - $loff + 1, $level);
1186 my ($linenr, $remain, $off) = @_;
1192 ($statement, $condition, $linenr, $remain, $off, $level) =
1193 ctx_statement_block($linenr, $remain, $off);
1196 if (!($remain > 0 && $condition =~ /^\s*(?:\n[+-])?\s*(?:if|else|do)\b/s)) {
1203 ($statement, $condition, $linenr, $remain, $off, $level) =
[all …]
/linux-4.1.27/drivers/usb/misc/
Dchaoskey.c374 unsigned long remain; in chaoskey_read() local
414 remain = copy_to_user(buffer, dev->buf + dev->used, this_time); in chaoskey_read()
415 if (remain) { in chaoskey_read()
421 dev->used += this_time - remain; in chaoskey_read()
/linux-4.1.27/drivers/staging/lustre/lustre/libcfs/
Dtracefile.c274 int remain; in libcfs_debug_vmsg2() local
343 remain = max_nob - needed; in libcfs_debug_vmsg2()
344 if (remain < 0) in libcfs_debug_vmsg2()
345 remain = 0; in libcfs_debug_vmsg2()
348 needed += vsnprintf(string_buf + needed, remain, in libcfs_debug_vmsg2()
444 remain = CFS_TRACE_CONSOLE_BUFFER_SIZE - needed; in libcfs_debug_vmsg2()
445 if (remain > 0) { in libcfs_debug_vmsg2()
447 needed += vsnprintf(string_buf+needed, remain, in libcfs_debug_vmsg2()
/linux-4.1.27/drivers/infiniband/hw/cxgb4/
Dmem.c185 u32 remain = len; in _c4iw_write_mem_dma() local
196 while (remain > inline_threshold) { in _c4iw_write_mem_dma()
197 if (remain < T4_ULPTX_MAX_DMA) { in _c4iw_write_mem_dma()
198 if (remain & ~T4_ULPTX_MIN_IO) in _c4iw_write_mem_dma()
199 dmalen = remain & ~(T4_ULPTX_MIN_IO-1); in _c4iw_write_mem_dma()
201 dmalen = remain; in _c4iw_write_mem_dma()
204 remain -= dmalen; in _c4iw_write_mem_dma()
206 !remain); in _c4iw_write_mem_dma()
213 if (remain) in _c4iw_write_mem_dma()
214 ret = _c4iw_write_mem_inline(rdev, addr, remain, data); in _c4iw_write_mem_dma()
/linux-4.1.27/drivers/net/wireless/rtlwifi/rtl8192de/
Dfw.c107 u8 remain = (u8) (fwlen % 4); in _rtl92d_fill_dummy() local
109 remain = (remain == 0) ? 0 : (4 - remain); in _rtl92d_fill_dummy()
110 while (remain > 0) { in _rtl92d_fill_dummy()
113 remain--; in _rtl92d_fill_dummy()
/linux-4.1.27/drivers/net/wireless/rtlwifi/rtl8192ee/
Dfw.c96 u8 remain = (u8)(fwlen % 4); in _rtl92ee_fill_dummy() local
98 remain = (remain == 0) ? 0 : (4 - remain); in _rtl92ee_fill_dummy()
100 while (remain > 0) { in _rtl92ee_fill_dummy()
103 remain--; in _rtl92ee_fill_dummy()
/linux-4.1.27/drivers/media/usb/em28xx/
Dem28xx-i2c.c619 int remain = len, rsize, rsize_max, ret; in em28xx_i2c_read_block() local
623 if (addr + remain > (addr_w16 * 0xff00 + 0xff + 1)) in em28xx_i2c_read_block()
636 while (remain > 0) { in em28xx_i2c_read_block()
637 if (remain > rsize_max) in em28xx_i2c_read_block()
640 rsize = remain; in em28xx_i2c_read_block()
646 remain -= rsize; in em28xx_i2c_read_block()
Dem28xx-video.c456 int linesdone, currlinedone, offset, lencopy, remain; in em28xx_copy_video() local
463 remain = len; in em28xx_copy_video()
480 lencopy = lencopy > remain ? remain : lencopy; in em28xx_copy_video()
486 remain = (char *)buf->vb_buf + buf->length - in em28xx_copy_video()
488 lencopy = remain; in em28xx_copy_video()
494 remain -= lencopy; in em28xx_copy_video()
496 while (remain > 0) { in em28xx_copy_video()
502 if (bytesperline > remain) in em28xx_copy_video()
503 lencopy = remain; in em28xx_copy_video()
513 lencopy = remain = (char *)buf->vb_buf + buf->length - in em28xx_copy_video()
[all …]
/linux-4.1.27/drivers/net/wireless/rtlwifi/rtl8192c/
Dfw_common.c115 u8 remain = (u8) (fwlen % 4); in _rtl92c_fill_dummy() local
117 remain = (remain == 0) ? 0 : (4 - remain); in _rtl92c_fill_dummy()
119 while (remain > 0) { in _rtl92c_fill_dummy()
122 remain--; in _rtl92c_fill_dummy()
/linux-4.1.27/drivers/staging/dgnc/
Ddgnc_tty.c445 int remain; in dgnc_wmove() local
458 remain = WQUEUESIZE - head; in dgnc_wmove()
460 if (n >= remain) { in dgnc_wmove()
461 n -= remain; in dgnc_wmove()
462 memcpy(ch->ch_wqueue + head, buf, remain); in dgnc_wmove()
464 buf += remain; in dgnc_wmove()
471 remain = n; in dgnc_wmove()
472 memcpy(ch->ch_wqueue + head, buf, remain); in dgnc_wmove()
473 head += remain; in dgnc_wmove()
1707 uint remain; in dgnc_tty_write() local
[all …]
/linux-4.1.27/drivers/usb/musb/
Dmusb_virthub.c170 long remain = (unsigned long) musb->rh_timer - jiffies; in musb_port_reset() local
172 if (musb->rh_timer > 0 && remain > 0) { in musb_port_reset()
175 &musb->deassert_reset_work, remain); in musb_port_reset()
/linux-4.1.27/drivers/staging/rtl8712/
DTODO5 - checkpatch.pl fixes - only a few remain
/linux-4.1.27/fs/ocfs2/
Dstackglue.c506 ssize_t ret = 0, total = 0, remain = PAGE_SIZE; in ocfs2_loaded_cluster_plugins_show() local
511 ret = snprintf(buf, remain, "%s\n", in ocfs2_loaded_cluster_plugins_show()
517 if (ret == remain) { in ocfs2_loaded_cluster_plugins_show()
523 remain -= ret; in ocfs2_loaded_cluster_plugins_show()
/linux-4.1.27/kernel/
Dauditfilter.c136 char *audit_unpack_string(void **bufp, size_t *remain, size_t len) in audit_unpack_string() argument
140 if (!*bufp || (len == 0) || (len > *remain)) in audit_unpack_string()
156 *remain -= len; in audit_unpack_string()
419 size_t remain = datasz - sizeof(struct audit_rule_data); in audit_data_to_entry() local
485 str = audit_unpack_string(&bufp, &remain, f->val); in audit_data_to_entry()
506 str = audit_unpack_string(&bufp, &remain, f->val); in audit_data_to_entry()
518 str = audit_unpack_string(&bufp, &remain, f->val); in audit_data_to_entry()
536 str = audit_unpack_string(&bufp, &remain, f->val); in audit_data_to_entry()
/linux-4.1.27/Documentation/ABI/testing/
Dsysfs-driver-intel-rapid-start20 remain asleep before waking up to enter hibernation.
Dsysfs-devices-power193 becomes idle at run time; they want the device to remain
Dsysfs-kernel-slab296 remain on a node's partial list to avoid the overhead of
Dsysfs-bus-iio1341 then the hardware watermark will remain unset.
/linux-4.1.27/drivers/net/wireless/rtlwifi/rtl8821ae/
Dfw.c98 u8 remain = (u8)(fwlen % 4); in _rtl8821ae_fill_dummy() local
100 remain = (remain == 0) ? 0 : (4 - remain); in _rtl8821ae_fill_dummy()
102 while (remain > 0) { in _rtl8821ae_fill_dummy()
105 remain--; in _rtl8821ae_fill_dummy()
/linux-4.1.27/Documentation/trace/
Dfunction-graph-fold.vim8 " functions will not include finish_task_switch(), so folding should remain
Dring-buffer-design.txt942 remain in UPDATE and only reset by the outermost writer. This prevents
/linux-4.1.27/drivers/net/wireless/libertas/
Dif_cs.c626 int remain = fw->size - sent; in if_cs_prog_helper() local
628 if (remain < count) in if_cs_prog_helper()
629 count = remain; in if_cs_prog_helper()
/linux-4.1.27/drivers/gpu/drm/i915/
Di915_gem.c618 ssize_t remain; in i915_gem_shmem_pread() local
627 remain = args->size; in i915_gem_shmem_pread()
641 if (remain <= 0) in i915_gem_shmem_pread()
650 page_length = remain; in i915_gem_shmem_pread()
666 ret = fault_in_multipages_writeable(user_data, remain); in i915_gem_shmem_pread()
685 remain -= page_length; in i915_gem_shmem_pread()
787 ssize_t remain; in i915_gem_gtt_pwrite_fast() local
805 remain = args->size; in i915_gem_gtt_pwrite_fast()
811 while (remain > 0) { in i915_gem_gtt_pwrite_fast()
820 page_length = remain; in i915_gem_gtt_pwrite_fast()
[all …]
Di915_gem_execbuffer.c499 int remain, ret; in i915_gem_execbuffer_relocate_vma() local
503 remain = entry->relocation_count; in i915_gem_execbuffer_relocate_vma()
504 while (remain) { in i915_gem_execbuffer_relocate_vma()
506 int count = remain; in i915_gem_execbuffer_relocate_vma()
509 remain -= count; in i915_gem_execbuffer_relocate_vma()
/linux-4.1.27/drivers/bluetooth/
Dbtusb.c1810 int remain = fw->size - (*fw_ptr - fw->data); in btusb_setup_intel_patching() local
1819 if (remain > HCI_COMMAND_HDR_SIZE && *fw_ptr[0] != 0x01) { in btusb_setup_intel_patching()
1824 remain--; in btusb_setup_intel_patching()
1828 remain -= sizeof(*cmd); in btusb_setup_intel_patching()
1833 if (remain < cmd->plen) { in btusb_setup_intel_patching()
1849 remain -= cmd->plen; in btusb_setup_intel_patching()
1858 while (remain > HCI_EVENT_HDR_SIZE && *fw_ptr[0] == 0x02) { in btusb_setup_intel_patching()
1860 remain--; in btusb_setup_intel_patching()
1864 remain -= sizeof(*evt); in btusb_setup_intel_patching()
1866 if (remain < evt->plen) { in btusb_setup_intel_patching()
[all …]
/linux-4.1.27/Documentation/devicetree/bindings/gpio/
Dspear_spics.txt5 PL022 control. If chipselect remain under PL022 control then they would be
/linux-4.1.27/Documentation/hwmon/
Dadc128d81835 If an alarm triggers, it will remain triggered until the hardware register
Dsmsc47m153 If an alarm triggers, it will remain triggered until the hardware register
Dlm8055 If an alarm triggers, it will remain triggered until the hardware register
Dlm7860 If an alarm triggers, it will remain triggered until the hardware register
Dlm8750 If an alarm triggers, it will remain triggered until the hardware register
Dgl518sm65 If an alarm triggers, it will remain triggered until the hardware register
Dvia686a58 If an alarm triggers, it will remain triggered until the hardware register
Dsis559592 If an alarm triggers, it will remain triggered until the hardware register
Dadm102667 If an alarm triggers, it will remain triggered until the hardware register
Dadm102181 If an alarm triggers, it will remain triggered until the hardware register
Dpc87360163 If an alarm triggers, it will remain triggered until the hardware register
Dit87193 If an alarm triggers, it will remain triggered until the hardware register
Dw83781d144 If an alarm triggers, it will remain triggered until the hardware register
/linux-4.1.27/drivers/isdn/hardware/mISDN/
Dhfcsusb.c1170 int k, tx_offset, num_isoc_packets, sink, remain, current_len, in tx_iso_complete() local
1252 remain = tx_skb->len - *tx_idx; in tx_iso_complete()
1254 remain = 15; /* > not complete */ in tx_iso_complete()
1256 remain = 0; in tx_iso_complete()
1258 if (remain > 0) { in tx_iso_complete()
1265 if (remain < current_len) in tx_iso_complete()
1266 current_len = remain; in tx_iso_complete()
1272 if (current_len == remain) { in tx_iso_complete()
/linux-4.1.27/Documentation/devicetree/bindings/net/can/
Dm_can.txt31 RAM. The remain cells are used to specify how many
/linux-4.1.27/Documentation/
DVGA-softcursor.txt10 hardware cursor should remain visible or not. There may be other things I have
Dkref.txt53 structure must remain valid during the kref_get().
296 But note that the struct kref member needs to remain in valid memory for a
DSubmitChecklist32 You should be able to justify all violations that remain in
Ddell_rbu.txt77 The /sys/class/firmware/dell_rbu/ entries will remain till the following is
Dcachetlb.txt353 implementation is a nop (and should remain so for all coherent
364 implementation is a nop and should remain so on all coherent
Dclk.txt261 the disabling means that the driver will remain functional while the issues
Dsysfs-rules.txt183 the attribute files to remain consistent in the absence of a version
Dparport-lowlevel.txt931 Once set for a registered device, the timeout will remain at the set
DHOWTO256 the real world, a small number of regressions often remain at
DCodingStyle890 remain easy to follow.
DSubmittingPatches259 You should be able to justify all violations that remain in your
Dkernel-parameters.txt2251 no guarantees that the file will remain unchanged
3515 Sets the number of seconds to remain in a suspend test
/linux-4.1.27/Documentation/video4linux/
Dcafe_ccic8 QVGA modes work; CIF is there but the colors remain funky. Only the OV7670
Dvideobuf230 remain mapped, videobuf_mmap_free() returns an error code instead. The
/linux-4.1.27/drivers/net/wireless/ath/ar5523/
Dar5523_hw.h30 __be32 remain; member
Dar5523.c1525 txblock->remain = cpu_to_be32(len - mlen); in ar5523_load_firmware()
/linux-4.1.27/drivers/net/hyperv/
Dnetvsc.c705 u32 remain = packet->total_data_buflen % net_device->pkt_align; in netvsc_copy_to_send_buf() local
710 if (packet->is_data_pkt && packet->xmit_more && remain && in netvsc_copy_to_send_buf()
712 padding = net_device->pkt_align - remain; in netvsc_copy_to_send_buf()
/linux-4.1.27/drivers/net/wireless/ath/wil6210/
Dwmi.c808 int remain; in wmi_call() local
819 remain = wait_for_completion_timeout(&wil->wmi_call, in wmi_call()
821 if (0 == remain) { in wmi_call()
829 to_msec - jiffies_to_msecs(remain)); in wmi_call()
/linux-4.1.27/Documentation/filesystems/
Ddnotify.txt25 remain until explicitly removed (by registering for no events).
Ddirectory-locking57 attempts to acquire lock on B, A will remain the parent of B until we
Dlogfs.txt222 remain open until all dirty inodes are written. So
Drelay.txt51 data between userspace and kernel, allowing the kernel side to remain
360 If the current buffer is full, i.e. all sub-buffers remain unconsumed,
Dporting72 change your internal locking. Otherwise exclusion warranties remain the
Dntfs.txt165 Note that files remain accessible via their short file
Dsharedsubtree.txt53 and the contents of both the mounts remain identical.
Dxfs-delayed-logging-design.txt472 transactions to remain untouched (i.e. commit an asynchronous transaction, then
Dcoda.txt505 long va_spare; /* remain quad aligned */
/linux-4.1.27/Documentation/virtual/kvm/devices/
Ds390_flic.txt33 All interrupts remain pending, i.e. are not deleted from the list of
/linux-4.1.27/Documentation/powerpc/
Dtransactional_memory.txt82 remain visible, but depending on the call they may abort your transaction as a
83 side-effect, read soon-to-be-aborted transactional data that should not remain
Dhvcs.txt262 adapter is not guaranteed to remain the same across system reboots. Look
/linux-4.1.27/drivers/media/dvb-frontends/
Dstb0899_algo.c804 u32 dec_ratio, dec_rate, decim, remain, intval, btr_nom_freq; in stb0899_dvbs2_calc_srate() local
816 remain = (decim * (1 << (config->btr_nco_bits - 1))) % master_clk; in stb0899_dvbs2_calc_srate()
819 remain = (decim * (1 << (config->btr_nco_bits - 1))) % master_clk; in stb0899_dvbs2_calc_srate()
821 btr_nom_freq = (intval * srate) + ((remain * srate) / master_clk); in stb0899_dvbs2_calc_srate()
/linux-4.1.27/Documentation/infiniband/
Dcore_locking.txt101 must be complete before this call. The device must remain usable
/linux-4.1.27/Documentation/security/
DYama.txt26 exist and remain possible if ptrace is allowed to operate as before.
/linux-4.1.27/arch/alpha/kernel/
Dosf_sys.c1216 struct timeval32 __user *, remain) in SYSCALL_DEFINE2() argument
1228 if (remain) { in SYSCALL_DEFINE2()
1230 if (put_tv32(remain, &tmp)) in SYSCALL_DEFINE2()
/linux-4.1.27/Documentation/usb/
Dpower-management.txt168 "suspend", meaning that the device should remain
175 number of milliseconds the device should remain idle
497 possible, the device should remain suspended following the system
509 succeed, it may still remain active and thus cause the system to
556 a shared power well causing power to remain until all ports in the gang
658 '1' the port will remain active/powered regardless of
745 power/pm_qos_no_power_off set to '1' causing ports to always remain
Dgadget_configfs.txt384 after a gadget is disabled and torn down, the modules remain loaded.
/linux-4.1.27/drivers/video/console/
DKconfig130 such that other users of the framebuffer will remain normally
/linux-4.1.27/Documentation/devicetree/bindings/sound/
Dfsl,ssi.txt84 "fsl,mpc8610-dma-channel") can remain. If these nodes are left as
/linux-4.1.27/drivers/staging/lustre/lustre/obdclass/
Dlu_object.c1870 unsigned long remain = sc->nr_to_scan, freed = 0; in lu_cache_shrink_scan() local
1889 freed = lu_site_purge(&lu_shrink_env, s, remain); in lu_cache_shrink_scan()
1890 remain -= freed; in lu_cache_shrink_scan()
1900 return sc->nr_to_scan - remain; in lu_cache_shrink_scan()
/linux-4.1.27/Documentation/frv/
Datomic-ops.txt53 condition in ICC3 to remain with the Z flag set, thus causing step (5) to loop back to step (1).
Dfeatures.txt276 Normally once a context ID is allocated, it will remain affixed to a task
301 The context ID will remain pinned as long as any process is using that
Dkernel-ABI.txt234 ICC2.C would remain unaffected (ie: 0).
/linux-4.1.27/drivers/usb/gadget/udc/
Dpxa27x_udc.c903 int length, count, remain, i; in write_packet() local
913 remain = length & 0x3; in write_packet()
919 for (i = remain; i > 0; i--) in write_packet()
922 ep_vdbg(ep, "length=%d+%d, udccsr=0x%03x\n", count, remain, in write_packet()
/linux-4.1.27/security/selinux/
DKconfig47 SELinux will then remain disabled until the next boot.
/linux-4.1.27/Documentation/filesystems/nfs/
Dnfs.txt47 The string should remain fixed for the lifetime of the client. It can be
/linux-4.1.27/drivers/power/
Dcharger-manager.c1945 ktime_t remain; in cm_suspend_complete() local
1949 remain = alarm_expires_remaining(cm_timer); in cm_suspend_complete()
1950 cm_suspend_duration_ms -= ktime_to_ms(remain); in cm_suspend_complete()
/linux-4.1.27/drivers/net/wireless/orinoco/
DKconfig48 on startup. The firmware will remain cached until the
/linux-4.1.27/drivers/staging/dgap/
Ddgap.c3584 u16 head, tail, tmask, remain; in dgap_tty_write() local
3667 remain = ch->ch_tstart + ch->ch_tsize - head; in dgap_tty_write()
3669 if (n >= remain) { in dgap_tty_write()
3670 n -= remain; in dgap_tty_write()
3673 memcpy_toio(vaddr, (u8 *) buf, remain); in dgap_tty_write()
3676 buf += remain; in dgap_tty_write()
3685 remain = n; in dgap_tty_write()
3687 memcpy_toio(vaddr, (u8 *) buf, remain); in dgap_tty_write()
3688 head += remain; in dgap_tty_write()
/linux-4.1.27/Documentation/s390/
Dkvm.txt3 the interface to the module is not yet considered to remain stable. Thus, be
Dcds.txt349 However, this should be used with care as it implies the channel will remain
/linux-4.1.27/arch/arm/kernel/
Dentry-header.S22 @ This _must_ remain a multiple of 8 for EABI.
Dentry-armv.S1053 @ Prepare for SVC32 mode. IRQs remain disabled.
/linux-4.1.27/arch/m68k/ifpsp060/
Dilsp.doc74 The entry point addresses at the beginning of the package will remain
Dfplsp.doc75 The entry point addresses at the beginning of the package will remain
DTEST.DOC175 must remain system independent.
/linux-4.1.27/drivers/platform/x86/
Dtoshiba_acpi.c1485 int remain = count; in video_proc_write() local
1506 while (remain) { in video_proc_write()
1516 --remain; in video_proc_write()
1517 } while (remain && *(buffer - 1) != ';'); in video_proc_write()
DKconfig873 then reboots into Linux, the system may remain configured to resume
875 will then remain awake until something triggers another suspend.
/linux-4.1.27/sound/pci/hda/
Dhda_controller.c312 u32 remain = 0x1000 - (ofs & 0xfff); in setup_bdle() local
313 if (chunk > remain) in setup_bdle()
314 chunk = remain; in setup_bdle()
/linux-4.1.27/Documentation/networking/
Dnetconsole.txt176 be more automatic, and some fundamental limitations will remain:
Dz8530drv.txt478 The time the transmitter will remain keyed after the last
497 2: Like 1, but the transmitter will remain keyed, also
Dopenvswitch.txt31 kernel module to remain relevant, it must be possible for newer
Dvortex.txt447 applied, etc. At the end of it all, the problem may even remain
Dl2tp.txt98 must remain open while the tunnel is active. Opening this tunnel
DLICENSE.qlge188 parties remain in full compliance.
DLICENSE.qlcnic188 parties remain in full compliance.
Dip-sysctl.txt276 application) connection will remain in the FIN_WAIT_2 state
411 when RTO retransmissions remain unacknowledged.
447 when RTO retransmissions remain unacknowledged.
Dfilter.txt30 remain on that socket.
/linux-4.1.27/net/wireless/
DKconfig83 and willing to ensure your system will remain regulatory
/linux-4.1.27/drivers/block/paride/
DTransition-notes128 can be taken to callers as long as they remain within the area.
/linux-4.1.27/Documentation/vm/
Dpage_migration112 7. The refcount of the page is examined and we back out if references remain
Dnuma_memory_policy.txt58 changes its task policy remain where they were allocated based on
96 is installed. Any pages already faulted into the VMA range remain
Dhugetlbpage.txt257 Note that the number of overcommit and reserve pages remain global quantities,
/linux-4.1.27/fs/jffs2/
DREADME.Locking6 JFFS2. It is not expected to remain perfectly up to date, but ought to
/linux-4.1.27/drivers/net/usb/
Dr8152.c1536 int remain, ret; in r8152_tx_agg_fill() local
1547 remain = agg_buf_sz; in r8152_tx_agg_fill()
1549 while (remain >= ETH_ZLEN + sizeof(struct tx_desc)) { in r8152_tx_agg_fill()
1561 if (len > remain) { in r8152_tx_agg_fill()
1596 remain = agg_buf_sz - (int)(tx_agg_align(tx_data) - agg->head); in r8152_tx_agg_fill()
/linux-4.1.27/Documentation/cgroups/
Dcgroups.txt220 will remain active even though unmounted; if there are no
598 fork. If this method returns 0 (success) then this should remain valid
608 "cgroup.subtree_control" but should remain enabled because other
Dmemory.txt436 remain charged to it, the charge is dropped when the page is freed or
Dcpusets.txt604 remain within the new cpusets memory placement. If the task was using
/linux-4.1.27/Documentation/scheduler/
Dcompletion.txt91 work threads remains in-scope, and no references remain to on-stack data
/linux-4.1.27/Documentation/scsi/
DFlashPoint.txt118 However, BusLogic does remain committed to providing a high performance
Dscsi_fc_transport.txt396 The vport will remain in this state until it is deleted or re-enabled.
416 removal. If the LLDD delete request fails, the vport object will remain,
Dsym53c8xx_2.txt191 instructions that address the on-chip RAM (8k) remain internal to the chip.
702 "diff" support. ("led pin" support for Symbios compatible cards can remain
DLICENSE.qla4xxx189 parties remain in full compliance.
DLICENSE.qla2xxx190 parties remain in full compliance.
Dncr53c8xx.txt216 instructions that address the on-chip RAM (8k) remain internal to the chip.
1475 "diff" support. ("led pin" support for Symbios compatible cards can remain
Dscsi_mid_low_api.txt118 and scsi_unregister() functions remain to support legacy LLDs that use
/linux-4.1.27/Documentation/arm64/
Dbooting.txt209 - CPUs with a "psci" enable method should remain outside of
/linux-4.1.27/Documentation/sound/alsa/
Dcompress_offload.txt127 the settings should remain the exception.
/linux-4.1.27/Documentation/fb/
Dfbcon.txt147 use the framebuffer will remain at their 'normal'orientation.
/linux-4.1.27/drivers/mtd/onenand/
Donenand_base.c642 unsigned long remain, timeout; in onenand_try_interrupt_wait() local
648 remain = wait_for_completion_timeout(&this->complete, timeout); in onenand_try_interrupt_wait()
649 if (!remain) { in onenand_try_interrupt_wait()
/linux-4.1.27/Documentation/device-mapper/
Dcache.txt83 blocks should remain clean.
/linux-4.1.27/arch/unicore32/kernel/
Dentry.S706 @ Prepare for PRIV mode. INTRs remain disabled.
/linux-4.1.27/Documentation/development-process/
D2.Process190 continue to take responsibility for the code if it is to remain useful
301 being added to the kernel tree live. They remain in drivers/staging while
/linux-4.1.27/Documentation/virtual/kvm/
Dtimekeeping.txt385 It is recommended not to trust the TSCs to remain synchronized on NUMA or
463 it may very well make that assumption. It may expect it to remain true to very
/linux-4.1.27/Documentation/filesystems/caching/
Dfscache.txt101 rather to let the netfs remain oblivious.
/linux-4.1.27/Documentation/arm/
Dcluster-pm-race-avoidance.txt335 The cluster will remain in this state until a policy decision is
/linux-4.1.27/Documentation/timers/
DNO_HZ.txt123 adaptive-tick CPUs: At least one non-adaptive-tick CPU must remain
/linux-4.1.27/tools/usb/usbip/
DCOPYING178 parties remain in full compliance.
/linux-4.1.27/Documentation/input/
Djoystick.txt154 This way, after the next reboot your joystick will remain calibrated. You
/linux-4.1.27/drivers/staging/rtl8192e/
Dlicense180 have their licenses terminated so long as such parties remain in full
/linux-4.1.27/kernel/trace/
DKconfig263 the main tracing buffer, and the other CPU buffers remain the same.
/linux-4.1.27/Documentation/power/
Dswsusp.txt287 for suspend. If you don't need swap after resume these data can remain
Druntime_pm.txt796 think it will remain in that state for a substantial time. A common heuristic
797 says that a device which hasn't been used for a while is liable to remain
Ddevices.txt495 the contents of memory should remain undisturbed while this happens, so that the
Dpci.txt132 presence of additional voltage (3.3Vaux) allowing the device to remain
/linux-4.1.27/drivers/staging/rtl8192u/
Dcopying178 parties remain in full compliance.
/linux-4.1.27/
DCOPYING194 parties remain in full compliance.
/linux-4.1.27/arch/arm64/
DKconfig522 # These have to remain sorted largest to smallest
/linux-4.1.27/fs/cifs/
Dcifssmb.c480 int val, seconds, remain, result; in decode_lanman_negprot_rsp() local
491 remain = seconds % MIN_TZ_ADJ; in decode_lanman_negprot_rsp()
492 if (remain >= (MIN_TZ_ADJ / 2)) in decode_lanman_negprot_rsp()
/linux-4.1.27/drivers/gpio/
DKconfig360 the Intel SCH suspend power supply. These GPIOs remain
/linux-4.1.27/Documentation/RCU/
DwhatisRCU.txt143 remain unreclaimed for the full duration of that critical section.
/linux-4.1.27/drivers/staging/speakup/
Dspkguide.txt1342 that this Transparent copy will remain thus accessible at the stated
1525 parties remain in full compliance.
/linux-4.1.27/drivers/mfd/
DKconfig825 remain unchanged when IC changes. Binding of the functions to
/linux-4.1.27/drivers/watchdog/
DKconfig312 and/or ATUe configuration registers will remain intact, but if
/linux-4.1.27/Documentation/filesystems/cifs/
DCHANGES1053 6) Moved negotiate, treeDisconnect and uloggoffX (only tConx and SessSetup remain in connect.c) to …
/linux-4.1.27/Documentation/block/
Dbiodoc.txt564 request that remain to be transferred (no change). The purpose of the
/linux-4.1.27/Documentation/laptops/
Dthinkpad-acpi.txt1066 many times as you want, and the sound will remain mute.
/linux-4.1.27/init/
DKconfig282 of names. The handle would remain the same even if file names
/linux-4.1.27/Documentation/devicetree/
Dbooting-without-of.txt1352 - System Suspend: The device may request to be disabled or remain

12