Searched refs:done (Results 1 - 200 of 5133) sorted by relevance

1234567891011>>

/linux-4.1.27/tools/testing/selftests/
H A DMakefile37 done;
42 done;
47 done;
52 done;
57 done;
70 done;
83 done;
93 done;
H A Dlib.mk8 done;
29 done;
/linux-4.1.27/arch/ia64/include/asm/
H A Dmmu.h7 * (e.g., as done in activate_mm() and init_new_context()).
/linux-4.1.27/tools/testing/selftests/powerpc/
H A DMakefile29 done;
35 done;
41 done;
47 done;
/linux-4.1.27/arch/powerpc/platforms/chrp/
H A Dnvram.c28 unsigned int done; chrp_nvram_read() local
38 if ((rtas_call(rtas_token("nvram-fetch"), 3, 2, &done, addr, chrp_nvram_read()
39 __pa(nvram_buf), 1) != 0) || 1 != done) chrp_nvram_read()
50 unsigned int done; chrp_nvram_write() local
60 if ((rtas_call(rtas_token("nvram-store"), 3, 2, &done, addr, chrp_nvram_write()
61 __pa(nvram_buf), 1) != 0) || 1 != done) chrp_nvram_write()
/linux-4.1.27/drivers/media/v4l2-core/
H A Dvideobuf-core.c70 init_waitqueue_head(&vb->done); videobuf_alloc_vb()
110 ret = wait_event_interruptible(vb->done, is_state_active_or_queued(q, vb)); videobuf_waiton()
112 wait_event(vb->done, is_state_active_or_queued(q, vb)); videobuf_waiton()
280 wake_up_all(&q->bufs[i]->done); videobuf_queue_cancel()
457 goto done; videobuf_reqbufs()
463 goto done; videobuf_reqbufs()
468 goto done; videobuf_reqbufs()
474 goto done; videobuf_reqbufs()
489 goto done; videobuf_reqbufs()
495 done: videobuf_reqbufs()
508 goto done; videobuf_querybuf()
512 goto done; videobuf_querybuf()
516 goto done; videobuf_querybuf()
522 done: videobuf_querybuf()
544 goto done; videobuf_qbuf()
549 goto done; videobuf_qbuf()
553 goto done; videobuf_qbuf()
558 goto done; videobuf_qbuf()
563 goto done; videobuf_qbuf()
567 goto done; videobuf_qbuf()
575 goto done; videobuf_qbuf()
588 goto done; videobuf_qbuf()
600 goto done; videobuf_qbuf()
608 goto done; videobuf_qbuf()
621 done: videobuf_qbuf()
640 goto done; stream_next_buffer_check_queue()
647 goto done; stream_next_buffer_check_queue()
662 goto done; stream_next_buffer_check_queue()
670 done: stream_next_buffer_check_queue()
683 goto done; stream_next_buffer()
688 goto done; stream_next_buffer()
691 done: stream_next_buffer()
709 goto done; videobuf_dqbuf()
717 dprintk(1, "dqbuf: state is done\n"); videobuf_dqbuf()
722 goto done; videobuf_dqbuf()
729 done: videobuf_dqbuf()
744 goto done; videobuf_streamon()
747 goto done; videobuf_streamon()
756 done: videobuf_streamon()
808 goto done; videobuf_read_zerocopy()
823 done: videobuf_read_zerocopy()
894 /* ok, all done */ videobuf_read_one()
895 goto done; videobuf_read_one()
906 goto done; videobuf_read_one()
915 goto done; videobuf_read_one()
925 /* wait until capture is done */ videobuf_read_one()
928 goto done; videobuf_read_one()
938 goto done; videobuf_read_one()
944 goto done; videobuf_read_one()
954 done: videobuf_read_one()
1059 goto done; videobuf_read_stream()
1063 goto done; videobuf_read_stream()
1100 /* requeue buffer when done with copying */ videobuf_read_stream()
1113 done: videobuf_read_stream()
1150 poll_wait(file, &buf->done, wait); videobuf_poll_stream()
/linux-4.1.27/drivers/vfio/pci/
H A Dvfio_pci_rdwr.c34 ssize_t done = 0; do_io_rw() local
108 done += filled; do_io_rw()
113 return done; do_io_rw()
125 ssize_t done; vfio_pci_bar_rw() local
169 done = do_io_rw(io, buf, pos, count, x_start, x_end, iswrite); vfio_pci_bar_rw()
171 if (done >= 0) vfio_pci_bar_rw()
172 *ppos += done; vfio_pci_bar_rw()
177 return done; vfio_pci_bar_rw()
188 ssize_t done; vfio_pci_vga_rw() local
228 done = do_io_rw(iomem, buf, off, count, 0, 0, iswrite); vfio_pci_vga_rw()
234 if (done >= 0) vfio_pci_vga_rw()
235 *ppos += done; vfio_pci_vga_rw()
237 return done; vfio_pci_vga_rw()
/linux-4.1.27/fs/
H A Dfs_pin.c16 pin->done = 1; pin_remove()
45 if (likely(!p->done)) { pin_kill()
46 p->done = -1; pin_kill()
52 if (p->done > 0) { pin_kill()
68 if (p->done > 0) { pin_kill()
/linux-4.1.27/Documentation/mic/mpssd/
H A Dmicctrl51 done
72 done
96 done
117 done
128 done
143 done
H A Dmpss62 done
99 done
102 done
128 done
129 done
/linux-4.1.27/kernel/
H A Dstop_machine.c55 static void cpu_stop_init_done(struct cpu_stop_done *done, unsigned int nr_todo) cpu_stop_init_done() argument
57 memset(done, 0, sizeof(*done)); cpu_stop_init_done()
58 atomic_set(&done->nr_todo, nr_todo); cpu_stop_init_done()
59 init_completion(&done->completion); cpu_stop_init_done()
62 /* signal completion unless @done is NULL */ cpu_stop_signal_done()
63 static void cpu_stop_signal_done(struct cpu_stop_done *done, bool executed) cpu_stop_signal_done() argument
65 if (done) { cpu_stop_signal_done()
67 done->executed = true; cpu_stop_signal_done()
68 if (atomic_dec_and_test(&done->nr_todo)) cpu_stop_signal_done()
69 complete(&done->completion); cpu_stop_signal_done()
87 cpu_stop_signal_done(work->done, false); cpu_stop_queue_work()
118 struct cpu_stop_done done; stop_one_cpu() local
119 struct cpu_stop_work work = { .fn = fn, .arg = arg, .done = &done }; stop_one_cpu()
121 cpu_stop_init_done(&done, 1); stop_one_cpu()
123 wait_for_completion(&done.completion); stop_one_cpu()
124 return done.executed ? done.ret : -ENOENT; stop_one_cpu()
246 struct cpu_stop_done done; stop_two_cpus() local
262 .done = &done stop_two_cpus()
272 cpu_stop_init_done(&done, 2); stop_two_cpus()
290 * Queuing needs to be done by the lowest numbered CPU, to ensure stop_two_cpus()
300 wait_for_completion(&done.completion); stop_two_cpus()
302 return done.executed ? done.ret : -ENOENT; stop_two_cpus()
332 struct cpu_stop_done *done) queue_stop_cpus_work()
337 /* initialize works and done */ for_each_cpu()
342 work->done = done; for_each_cpu()
359 struct cpu_stop_done done; __stop_cpus() local
361 cpu_stop_init_done(&done, cpumask_weight(cpumask)); __stop_cpus()
362 queue_stop_cpus_work(cpumask, fn, arg, &done); __stop_cpus()
363 wait_for_completion(&done.completion); __stop_cpus()
364 return done.executed ? done.ret : -ENOENT; __stop_cpus()
467 struct cpu_stop_done *done = work->done; cpu_stopper_thread() local
475 done->ret = ret; cpu_stopper_thread()
484 cpu_stop_signal_done(done, true); cpu_stopper_thread()
505 cpu_stop_signal_done(work->done, false); cpu_stop_park()
622 struct cpu_stop_done done; stop_machine_from_inactive_cpu() local
635 cpu_stop_init_done(&done, num_active_cpus()); stop_machine_from_inactive_cpu()
637 &done); stop_machine_from_inactive_cpu()
641 while (!completion_done(&done.completion)) stop_machine_from_inactive_cpu()
645 return ret ?: done.ret; stop_machine_from_inactive_cpu()
330 queue_stop_cpus_work(const struct cpumask *cpumask, cpu_stop_fn_t fn, void *arg, struct cpu_stop_done *done) queue_stop_cpus_work() argument
H A Dkthread.c4 * Creation is done via kthreadd, so that we get a clean environment
36 struct completion *done; member in struct:kthread_create_info
181 struct completion *done; kthread() local
192 done = xchg(&create->done, NULL); kthread()
193 if (!done) { kthread()
200 complete(done); kthread()
234 struct completion *done = xchg(&create->done, NULL); create_kthread() local
236 if (!done) { create_kthread()
241 complete(done); create_kthread()
272 DECLARE_COMPLETION_ONSTACK(done); kthread_create_on_node()
282 create->done = &done; kthread_create_on_node()
294 if (unlikely(wait_for_completion_killable(&done))) { kthread_create_on_node()
300 if (xchg(&create->done, NULL)) kthread_create_on_node()
306 wait_for_completion(&done); kthread_create_on_node()
330 /* Must have done schedule() in kthread() before we set_task_cpu */ __kthread_bind()
625 struct completion done; member in struct:kthread_flush_work
632 complete(&fwork->done); kthread_flush_work_fn()
645 COMPLETION_INITIALIZER_ONSTACK(fwork.done), flush_kthread_work()
671 wait_for_completion(&fwork.done); flush_kthread_work()
686 COMPLETION_INITIALIZER_ONSTACK(fwork.done), flush_kthread_worker()
690 wait_for_completion(&fwork.done); flush_kthread_worker()
/linux-4.1.27/arch/x86/um/
H A Dstub_32.S19 jz done
46 done: label
H A Dstub_64.S34 jz done
61 done: label
/linux-4.1.27/arch/powerpc/crypto/
H A Dsha1.c46 unsigned int partial, done; sha1_update() local
51 done = 0; sha1_update()
58 done = -partial; sha1_update()
59 memcpy(sctx->buffer + partial, data, done + 64); sha1_update()
65 done += 64; sha1_update()
66 src = data + done; sha1_update()
67 } while (done + 63 < len); sha1_update()
72 memcpy(sctx->buffer + partial, src, len - done); sha1_update()
/linux-4.1.27/net/atm/
H A Dresources.c292 goto done; atm_dev_ioctl()
299 goto done; atm_dev_ioctl()
309 goto done; atm_dev_ioctl()
319 goto done; atm_dev_ioctl()
323 goto done; atm_dev_ioctl()
327 goto done; atm_dev_ioctl()
332 goto done; atm_dev_ioctl()
339 goto done; atm_dev_ioctl()
345 goto done; atm_dev_ioctl()
352 goto done; atm_dev_ioctl()
358 goto done; atm_dev_ioctl()
371 goto done; atm_dev_ioctl()
376 goto done; atm_dev_ioctl()
386 goto done; atm_dev_ioctl()
394 goto done; atm_dev_ioctl()
399 goto done; atm_dev_ioctl()
405 goto done; atm_dev_ioctl()
415 goto done; atm_dev_ioctl()
423 goto done; atm_dev_ioctl()
430 goto done; atm_dev_ioctl()
436 goto done; atm_dev_ioctl()
444 done: atm_dev_ioctl()
H A Dioctl.c65 goto done; do_vcc_ioctl()
69 goto done; do_vcc_ioctl()
76 goto done; do_vcc_ioctl()
81 goto done; do_vcc_ioctl()
90 goto done; do_vcc_ioctl()
98 goto done; do_vcc_ioctl()
103 goto done; do_vcc_ioctl()
107 goto done; do_vcc_ioctl()
118 goto done; do_vcc_ioctl()
127 goto done; do_vcc_ioctl()
133 goto done; do_vcc_ioctl()
140 goto done; do_vcc_ioctl()
178 goto done; do_vcc_ioctl()
182 done: do_vcc_ioctl()
/linux-4.1.27/init/
H A Ddo_mounts_rd.c104 goto done; identify_ramdisk_image()
114 goto done; identify_ramdisk_image()
122 goto done; identify_ramdisk_image()
132 goto done; identify_ramdisk_image()
146 goto done; identify_ramdisk_image()
162 goto done; identify_ramdisk_image()
172 goto done; identify_ramdisk_image()
179 done: identify_ramdisk_image()
208 goto done; rd_load_image()
213 goto done; rd_load_image()
235 goto done; rd_load_image()
251 goto done; rd_load_image()
257 goto done; rd_load_image()
264 printk("done disk #%d.\n", disk++); rd_load_image()
287 printk("done.\n"); rd_load_image()
291 done: rd_load_image()
H A Ddo_mounts.c137 goto done; devt_from_partuuid()
146 goto done; devt_from_partuuid()
152 goto done; devt_from_partuuid()
170 done: devt_from_partuuid()
223 goto done; name_to_dev_t()
241 goto done; name_to_dev_t()
247 goto done; name_to_dev_t()
250 goto done; name_to_dev_t()
260 goto done; name_to_dev_t()
276 goto done; name_to_dev_t()
284 goto done; name_to_dev_t()
288 done: name_to_dev_t()
/linux-4.1.27/arch/s390/include/uapi/asm/
H A Dtypes.h14 /* A address type so that arithmetic can be done on it & it can be upgraded to
/linux-4.1.27/arch/mn10300/unit-asb2364/
H A DMakefile4 # Note! Dependencies are done automagically by 'make dep', which also
/linux-4.1.27/scripts/
H A Dheaders.sh28 done
H A Dgfp-translate40 done
83 done
H A Dpatch-kernel86 done
150 echo "done."
172 echo "done."
277 done
278 #echo "#___sublevel all done"
295 #echo "#___extraver all done"
297 done
302 # They could have done -ac (get latest) or -acxx where xx=version they want
315 done
H A Dsetlocalversion80 # All done with git
104 # All done with mercurial
113 # All done with svn
131 done
/linux-4.1.27/tools/testing/selftests/powerpc/switch_endian/
H A DMakefile19 done;
/linux-4.1.27/include/linux/
H A Dcuda.h15 void (*done)(struct adb_request *), int nbytes, ...);
H A Dfs_pin.h5 int done; member in struct:fs_pin
H A Dkeyboard.h11 struct vc_data *vc; /* VC on which the keyboard press was done */
H A Dadb.h18 void (*done)(struct adb_request *); member in struct:adb_request
42 #define ADBREQ_SYNC 2 /* poll until done */
54 int adb_request(struct adb_request *req, void (*done)(struct adb_request *),
H A Dvia-core.h127 #define VDE_I_DMA0DDONE 0x00000010 /* DMA 0 descr done */
128 #define VDE_I_DMA0TDONE 0x00000020 /* DMA 0 transfer done */
129 #define VDE_I_DMA1DDONE 0x00000040 /* DMA 1 descr done */
130 #define VDE_I_DMA1TDONE 0x00000080 /* DMA 1 transfer done */
143 #define VDE_I_DMA0DDEN 0x00100000 /* DMA 0 descr done enable */
144 #define VDE_I_DMA0TDEN 0x00200000 /* DMA 0 trans done enable */
145 #define VDE_I_DMA1DDEN 0x00400000 /* DMA 1 descr done enable */
146 #define VDE_I_DMA1TDEN 0x00800000 /* DMA 1 trans done enable */
170 #define VDMA_MR_TDIE 0x02 /* Transfer done int enable */
175 #define VDMA_C_DONE 0x08 /* Transfer is done */
H A Dlz4.h31 * dst_len : is the output size, which is returned after compress done
48 * dst_len : is the output size, which is returned after compress done
62 * src_len : is the input size, whcih is returned after decompress done
80 * decompress done
H A Dcompletion.h26 unsigned int done; member in struct:completion
75 x->done = 0; init_completion()
88 x->done = 0; reinit_completion()
H A Drfkill-regulator.h24 * .dev_name as done above, and use the same id when declaring the platform
H A Dkern_levels.h19 * Annotation for a "continued" line of log printout (only done after a
H A Dleds-regulator.h23 * .dev_name as done above, and use the same id when declaring the platform
H A Dmg_disk.h30 /* same as MG_STORAGE_DEV, but bootloader already done reset sequence */
/linux-4.1.27/drivers/net/wireless/brcm80211/brcmfmac/
H A Dcommon.c54 goto done; brcmf_c_preinit_dcmds()
91 goto done; brcmf_c_preinit_dcmds()
107 goto done; brcmf_c_preinit_dcmds()
118 goto done; brcmf_c_preinit_dcmds()
127 goto done; brcmf_c_preinit_dcmds()
149 goto done; brcmf_c_preinit_dcmds()
156 goto done; brcmf_c_preinit_dcmds()
165 goto done; brcmf_c_preinit_dcmds()
174 goto done; brcmf_c_preinit_dcmds()
179 done: brcmf_c_preinit_dcmds()
H A Dfirmware.c242 void (*done)(struct device *dev, const struct firmware *fw, member in struct:brcmf_fw
263 fwctx->done(fwctx->dev, fwctx->code, nvram, nvram_length); brcmf_fw_request_nvram_done()
283 /* only requested code so done here */ brcmf_fw_request_code_done()
285 fwctx->done(fwctx->dev, fw, NULL, 0); brcmf_fw_request_code_done()
297 /* when nvram is optional call .done() callback here */ brcmf_fw_request_code_done()
299 fwctx->done(fwctx->dev, fw, NULL, 0); brcmf_fw_request_code_done()
333 fwctx->done = fw_cb; brcmf_fw_get_firmwares()
H A Dbcdc.c174 goto done; brcmf_proto_bcdc_query_dcmd()
181 goto done; brcmf_proto_bcdc_query_dcmd()
192 goto done; brcmf_proto_bcdc_query_dcmd()
209 done: brcmf_proto_bcdc_query_dcmd()
226 goto done; brcmf_proto_bcdc_set_dcmd()
230 goto done; brcmf_proto_bcdc_set_dcmd()
239 goto done; brcmf_proto_bcdc_set_dcmd()
246 done: brcmf_proto_bcdc_set_dcmd()
/linux-4.1.27/arch/powerpc/sysdev/
H A Dscom.c112 ssize_t done = 0; scom_debug_read() local
131 if (!done) scom_debug_read()
132 done = rc; scom_debug_read()
137 done += 8; scom_debug_read()
140 return done; scom_debug_read()
149 ssize_t done = 0; scom_debug_write() local
168 if (!done) scom_debug_write()
169 done = rc; scom_debug_write()
173 done += 8; scom_debug_write()
176 return done; scom_debug_write()
/linux-4.1.27/drivers/staging/iio/adc/
H A Dad7606_ring.c59 goto done; ad7606_poll_bh_to_ring()
67 goto done; ad7606_poll_bh_to_ring()
72 goto done; ad7606_poll_bh_to_ring()
77 goto done; ad7606_poll_bh_to_ring()
81 done: ad7606_poll_bh_to_ring()
/linux-4.1.27/drivers/crypto/
H A Dpadlock-sha.c309 unsigned int partial, done; padlock_sha1_update_nano() local
319 done = 0; padlock_sha1_update_nano()
327 done = -partial; padlock_sha1_update_nano()
329 done + SHA1_BLOCK_SIZE); padlock_sha1_update_nano()
336 done += SHA1_BLOCK_SIZE; padlock_sha1_update_nano()
337 src = data + done; padlock_sha1_update_nano()
341 if (len - done >= SHA1_BLOCK_SIZE) { padlock_sha1_update_nano()
346 "c"((unsigned long)((len - done) / SHA1_BLOCK_SIZE))); padlock_sha1_update_nano()
348 done += ((len - done) - (len - done) % SHA1_BLOCK_SIZE); padlock_sha1_update_nano()
349 src = data + done; padlock_sha1_update_nano()
354 memcpy(sctx->buffer + partial, src, len - done); padlock_sha1_update_nano()
398 unsigned int partial, done; padlock_sha256_update_nano() local
408 done = 0; padlock_sha256_update_nano()
416 done = -partial; padlock_sha256_update_nano()
418 done + SHA256_BLOCK_SIZE); padlock_sha256_update_nano()
425 done += SHA256_BLOCK_SIZE; padlock_sha256_update_nano()
426 src = data + done; padlock_sha256_update_nano()
430 if (len - done >= SHA256_BLOCK_SIZE) { padlock_sha256_update_nano()
435 "c"((unsigned long)((len - done) / 64))); padlock_sha256_update_nano()
437 done += ((len - done) - (len - done) % 64); padlock_sha256_update_nano()
438 src = data + done; padlock_sha256_update_nano()
443 memcpy(sctx->buf + partial, src, len - done); padlock_sha256_update_nano()
H A Dtalitos.h64 * @callback: whom to call when descriptor processing is done
92 /* index to next in-progress/done descriptor request */
162 #define TALITOS_IMR_DONE 0x00055 /* done IRQs */
167 #define TALITOS_ISR_4CHDONE 0x55 /* 4 channel done mask */
169 #define TALITOS_ISR_CH_0_2_DONE 0x11 /* channels 0, 2 done mask */
171 #define TALITOS_ISR_CH_1_3_DONE 0x44 /* channels 1, 3 done mask */
187 #define TALITOS_CCCR_LO_CDWE 0x10 /* chan. done writeback enab. */
189 #define TALITOS_CCCR_LO_CDIE 0x2 /* channel done IRQ enable */
243 #define TALITOS_RNGUSR_LO_RD 0x1 /* reset done */
266 /* written back when done */
339 /* request done notification (DN) */
/linux-4.1.27/arch/sparc/crypto/
H A Dmd5_glue.c48 unsigned int done = 0; __md5_sparc64_update() local
52 done = MD5_HMAC_BLOCK_SIZE - partial; __md5_sparc64_update()
53 memcpy((u8 *)sctx->block + partial, data, done); __md5_sparc64_update()
56 if (len - done >= MD5_HMAC_BLOCK_SIZE) { __md5_sparc64_update()
57 const unsigned int rounds = (len - done) / MD5_HMAC_BLOCK_SIZE; __md5_sparc64_update()
59 md5_sparc64_transform(sctx->hash, data + done, rounds); __md5_sparc64_update()
60 done += rounds * MD5_HMAC_BLOCK_SIZE; __md5_sparc64_update()
63 memcpy(sctx->block, data + done, len - done); __md5_sparc64_update()
H A Dsha1_glue.c43 unsigned int done = 0; __sha1_sparc64_update() local
47 done = SHA1_BLOCK_SIZE - partial; __sha1_sparc64_update()
48 memcpy(sctx->buffer + partial, data, done); __sha1_sparc64_update()
51 if (len - done >= SHA1_BLOCK_SIZE) { __sha1_sparc64_update()
52 const unsigned int rounds = (len - done) / SHA1_BLOCK_SIZE; __sha1_sparc64_update()
54 sha1_sparc64_transform(sctx->state, data + done, rounds); __sha1_sparc64_update()
55 done += rounds * SHA1_BLOCK_SIZE; __sha1_sparc64_update()
58 memcpy(sctx->buffer, data + done, len - done); __sha1_sparc64_update()
H A Dsha256_glue.c64 unsigned int done = 0; __sha256_sparc64_update() local
68 done = SHA256_BLOCK_SIZE - partial; __sha256_sparc64_update()
69 memcpy(sctx->buf + partial, data, done); __sha256_sparc64_update()
72 if (len - done >= SHA256_BLOCK_SIZE) { __sha256_sparc64_update()
73 const unsigned int rounds = (len - done) / SHA256_BLOCK_SIZE; __sha256_sparc64_update()
75 sha256_sparc64_transform(sctx->state, data + done, rounds); __sha256_sparc64_update()
76 done += rounds * SHA256_BLOCK_SIZE; __sha256_sparc64_update()
79 memcpy(sctx->buf, data + done, len - done); __sha256_sparc64_update()
H A Dsha512_glue.c63 unsigned int done = 0; __sha512_sparc64_update() local
68 done = SHA512_BLOCK_SIZE - partial; __sha512_sparc64_update()
69 memcpy(sctx->buf + partial, data, done); __sha512_sparc64_update()
72 if (len - done >= SHA512_BLOCK_SIZE) { __sha512_sparc64_update()
73 const unsigned int rounds = (len - done) / SHA512_BLOCK_SIZE; __sha512_sparc64_update()
75 sha512_sparc64_transform(sctx->state, data + done, rounds); __sha512_sparc64_update()
76 done += rounds * SHA512_BLOCK_SIZE; __sha512_sparc64_update()
79 memcpy(sctx->buf, data + done, len - done); __sha512_sparc64_update()
/linux-4.1.27/arch/sh/drivers/dma/
H A Ddmabrg.c25 * 0 | USB-DMA | ... | xfer done | DMABRGI1
27 * 2 | HAC0/SSI0 | play| all done | DMABRGI1
28 * 3 | HAC0/SSI0 | play| half done | DMABRGI2
29 * 4 | HAC0/SSI0 | rec | all done | DMABRGI1
30 * 5 | HAC0/SSI0 | rec | half done | DMABRGI2
31 * 6 | HAC1/SSI1 | play| all done | DMABRGI1
32 * 7 | HAC1/SSI1 | play| half done | DMABRGI2
33 * 8 | HAC1/SSI1 | rec | all done | DMABRGI1
34 * 9 | HAC1/SSI1 | rec | half done | DMABRGI2
/linux-4.1.27/tools/testing/selftests/cpu-hotplug/
H A Dcpu-on-off-test.sh53 done
156 done
193 done
200 done
207 done
242 done
250 done
258 done
266 done
/linux-4.1.27/tools/testing/selftests/memory-hotplug/
H A Dmem-on-off-test.sh39 done
136 done
156 done
166 done
174 done
211 done
219 done
227 done
235 done
/linux-4.1.27/arch/m68k/include/asm/
H A Damigaints.h49 /* Blitter done interrupt */
79 #define IF_AUD3 0x0400 /* audio channel 3 done interrupt */
80 #define IF_AUD2 0x0200 /* audio channel 2 done interrupt */
81 #define IF_AUD1 0x0100 /* audio channel 1 done interrupt */
82 #define IF_AUD0 0x0080 /* audio channel 0 done interrupt */
83 #define IF_BLIT 0x0040 /* blitter done interrupt */
/linux-4.1.27/tools/testing/selftests/timers/
H A Dthreadtest.c47 int done = 0; variable
68 done = 1; checklist()
95 while (!done) { shared_thread()
120 while (!done) { independent_thread()
185 if (done) { main()
193 done = 1; main()
H A Dposix_timers.c23 static volatile int done; variable
28 while (!done); user_loop()
40 while (!done && !err) { kernel_loop()
56 done = 1; sig_handler()
97 done = 0; check_itimer()
156 done = 0; check_timer_create()
/linux-4.1.27/drivers/media/platform/vsp1/
H A Dvsp1_drv.c156 goto done; vsp1_create_entities()
163 goto done; vsp1_create_entities()
171 goto done; vsp1_create_entities()
179 goto done; vsp1_create_entities()
188 goto done; vsp1_create_entities()
198 goto done; vsp1_create_entities()
210 goto done; vsp1_create_entities()
221 goto done; vsp1_create_entities()
233 goto done; vsp1_create_entities()
246 goto done; vsp1_create_entities()
261 goto done; vsp1_create_entities()
277 goto done; vsp1_create_entities()
282 done: vsp1_create_entities()
356 goto done; vsp1_device_get()
360 goto done; vsp1_device_get()
365 goto done; vsp1_device_get()
368 done: vsp1_device_get()
/linux-4.1.27/kernel/sched/
H A Dcompletion.c34 x->done++; complete()
54 x->done += UINT_MAX/2; complete_all()
64 if (!x->done) { do_wait_for_common()
77 } while (!x->done && timeout); do_wait_for_common()
79 if (!x->done) do_wait_for_common()
82 x->done--; do_wait_for_common()
258 * Return: 0 if a decrement cannot be done without blocking
272 * Since x->done will need to be locked only try_wait_for_completion()
273 * in the non-blocking case, we check x->done try_wait_for_completion()
277 if (!READ_ONCE(x->done)) try_wait_for_completion()
281 if (!x->done) try_wait_for_completion()
284 x->done--; try_wait_for_completion()
300 if (!READ_ONCE(x->done)) completion_done()
304 * If ->done, we need to wait for complete() to release ->wait.lock completion_done()
306 * is done referencing it. completion_done()
309 * the loads of ->done and ->wait.lock such that we cannot observe completion_done()
310 * the lock before complete() acquires it while observing the ->done completion_done()
/linux-4.1.27/drivers/usb/host/
H A Duhci-debug.c66 goto done; uhci_show_td()
93 done: uhci_show_td()
115 goto done; uhci_show_urbp()
135 goto done; uhci_show_urbp()
157 done: uhci_show_urbp()
193 goto done; uhci_show_qh()
208 goto done; uhci_show_qh()
244 goto done; uhci_show_qh()
254 done: uhci_show_qh()
333 goto done; uhci_show_status()
344 goto done; uhci_show_status()
352 goto done; uhci_show_status()
356 goto done; uhci_show_status()
360 goto done; uhci_show_status()
367 done: uhci_show_status()
391 goto done; uhci_sprint_schedule()
417 goto done; uhci_sprint_schedule()
440 goto done; uhci_sprint_schedule()
467 goto done; uhci_sprint_schedule()
479 goto done; uhci_sprint_schedule()
497 goto done; uhci_sprint_schedule()
538 goto done; uhci_sprint_schedule()
541 done: uhci_sprint_schedule()
/linux-4.1.27/drivers/media/pci/ttpci/
H A Dav7110_ipack.c18 p->done = 0; av7110_ipack_reset()
153 && (p->found < 5 || !p->done)) { av7110_ipack_instant_repack()
183 p->done = 1; av7110_ipack_instant_repack()
219 if (!p->done) { av7110_ipack_instant_repack()
235 if (!p->done && p->mpeg == 2) { av7110_ipack_instant_repack()
243 if (!p->done && p->mpeg == 2) { av7110_ipack_instant_repack()
258 if (p->done || ((p->mpeg == 2 && p->found >= 9) || av7110_ipack_instant_repack()
385 if (p->done) { av7110_ipack_instant_repack()
/linux-4.1.27/drivers/mfd/
H A Dcros_ec_i2c.c57 goto done; cros_ec_cmd_xfer_i2c()
68 goto done; cros_ec_cmd_xfer_i2c()
88 goto done; cros_ec_cmd_xfer_i2c()
92 goto done; cros_ec_cmd_xfer_i2c()
99 goto done; cros_ec_cmd_xfer_i2c()
106 goto done; cros_ec_cmd_xfer_i2c()
120 goto done; cros_ec_cmd_xfer_i2c()
124 done: cros_ec_cmd_xfer_i2c()
/linux-4.1.27/arch/um/kernel/skas/
H A Dclone.c44 goto done; stub_clone_handler()
54 done: stub_clone_handler()
/linux-4.1.27/arch/um/os-Linux/skas/
H A Dmem.c112 int done) run_syscall_stub()
129 if (!done && ((((unsigned long) stack) & ~UM_KERN_PAGE_MASK) < run_syscall_stub()
171 int phys_fd, unsigned long long offset, int done, void **data) map()
179 data, done); map()
185 int done, void **data) unmap()
192 data, done); unmap()
198 unsigned int prot, int done, void **data) protect()
204 data, done); protect()
110 run_syscall_stub(struct mm_id * mm_idp, int syscall, unsigned long *args, long expected, void **addr, int done) run_syscall_stub() argument
170 map(struct mm_id * mm_idp, unsigned long virt, unsigned long len, int prot, int phys_fd, unsigned long long offset, int done, void **data) map() argument
184 unmap(struct mm_id * mm_idp, unsigned long addr, unsigned long len, int done, void **data) unmap() argument
197 protect(struct mm_id * mm_idp, unsigned long addr, unsigned long len, unsigned int prot, int done, void **data) protect() argument
/linux-4.1.27/arch/mips/cavium-octeon/crypto/
H A Docteon-sha1.c96 unsigned int done; __octeon_sha1_update() local
101 done = 0; __octeon_sha1_update()
106 done = -partial; __octeon_sha1_update()
108 done + SHA1_BLOCK_SIZE); __octeon_sha1_update()
114 done += SHA1_BLOCK_SIZE; __octeon_sha1_update()
115 src = data + done; __octeon_sha1_update()
116 } while (done + SHA1_BLOCK_SIZE <= len); __octeon_sha1_update()
120 memcpy(sctx->buffer + partial, src, len - done); __octeon_sha1_update()
H A Docteon-sha256.c108 unsigned int done; __octeon_sha256_update() local
113 done = 0; __octeon_sha256_update()
118 done = -partial; __octeon_sha256_update()
120 done + SHA256_BLOCK_SIZE); __octeon_sha256_update()
126 done += SHA256_BLOCK_SIZE; __octeon_sha256_update()
127 src = data + done; __octeon_sha256_update()
128 } while (done + SHA256_BLOCK_SIZE <= len); __octeon_sha256_update()
132 memcpy(sctx->buf + partial, src, len - done); __octeon_sha256_update()
/linux-4.1.27/arch/arm/mach-imx/
H A Dcpuidle-imx6q.c34 goto done; imx6q_enter_wait()
39 done: imx6q_enter_wait()
/linux-4.1.27/arch/arm/mach-imx/devices/
H A Ddevices.c39 goto done; mxc_device_init()
43 done: mxc_device_init()
/linux-4.1.27/arch/alpha/lib/
H A Dstrlen.S38 found: blbs $2, done # make aligned case fast
54 done: subq $0, $16, $0 label
H A Dmemcpy.c21 * This should be done in one go with ldq_u*2/mask/stq_u. Do it
40 * This should similarly be done with ldq_u*2/mask/stq. The destination
57 * This should be done with ldq/mask/stq. The source and destination are
H A Dev6-memcpy.S34 ble $18, $nomoredata # U : done with the copy?
57 ble $18, $nomoredata # U : done with the copy?
158 ble $18, $nomoredata # U : All-done
171 bgt $18, $tail_bytes # U : more to be done?
/linux-4.1.27/sound/usb/line6/
H A Dmidi.c48 int req, done; line6_midi_transmit() local
52 done = snd_rawmidi_transmit_peek(substream, chunk, req); line6_midi_transmit()
54 if (done == 0) line6_midi_transmit()
57 line6_midibuf_write(mb, chunk, done); line6_midi_transmit()
58 snd_rawmidi_transmit_ack(substream, done); line6_midi_transmit()
62 done = line6_midibuf_read(mb, chunk, line6_midi_transmit()
65 if (done == 0) line6_midi_transmit()
68 send_midi_async(line6, chunk, done); line6_midi_transmit()
H A Ddriver.c52 int done; member in struct:message
92 int i, done = 0; line6_send_raw_message() local
112 done += frag_size; line6_send_raw_message()
115 return done; line6_send_raw_message()
125 if (msg->done >= msg->size) { line6_async_request_sent()
140 int done = msg->done; line6_send_raw_message_async_part() local
141 int bytes = min(msg->size - done, line6->max_packet_size); line6_send_raw_message_async_part()
145 (char *)msg->buffer + done, bytes, line6_send_raw_message_async_part()
148 msg->done += bytes; line6_send_raw_message_async_part()
199 msg->done = 0; line6_send_raw_message_async()
267 int done; line6_data_received() local
272 done = line6_data_received()
275 if (done < urb->actual_length) { line6_data_received()
276 line6_midibuf_ignore(mb, done); line6_data_received()
278 done, urb->actual_length); line6_data_received()
282 done = line6_data_received()
286 if (done == 0) line6_data_received()
289 line6->message_length = done; line6_data_received()
290 line6_midi_receive(line6, line6->buffer_message, done); line6_data_received()
/linux-4.1.27/tools/perf/
H A Dperf-completion.sh42 done
47 done
84 done
104 done
139 done
141 done
200 done
224 done
/linux-4.1.27/tools/power/cpupower/bench/
H A Dcpufreq-bench_script.sh62 done
63 done
74 done
78 done
84 done
88 done
94 done
95 done
H A Dcpufreq-bench_plot.sh60 done
74 done
100 done
/linux-4.1.27/virt/kvm/
H A Dasync_pf.c67 INIT_LIST_HEAD(&vcpu->async_pf.done); kvm_async_pf_vcpu_init()
87 list_add_tail(&apf->link, &vcpu->async_pf.done); async_pf_execute()
125 while (!list_empty(&vcpu->async_pf.done)) { kvm_clear_async_pf_completion_queue()
127 list_entry(vcpu->async_pf.done.next, kvm_clear_async_pf_completion_queue()
141 while (!list_empty_careful(&vcpu->async_pf.done) && kvm_check_async_pf_completion()
144 work = list_first_entry(&vcpu->async_pf.done, typeof(*work), kvm_check_async_pf_completion()
209 if (!list_empty_careful(&vcpu->async_pf.done)) kvm_async_pf_wakeup_all()
220 list_add_tail(&work->link, &vcpu->async_pf.done); kvm_async_pf_wakeup_all()
/linux-4.1.27/drivers/staging/fwserial/
H A Ddma_fifo.c83 fifo->done = 0; dma_fifo_alloc()
133 fifo->done = 0; dma_fifo_reset()
167 if (FAIL(fifo, addr_check(fifo->done, fifo->in, fifo->in + n) || dma_fifo_in()
169 "fifo corrupt: in:%u out:%u done:%u n:%d avail:%d", dma_fifo_in()
170 fifo->in, fifo->out, fifo->done, n, fifo->avail)) dma_fifo_in()
176 df_trace("in:%u out:%u done:%u n:%d avail:%d", fifo->in, fifo->out, dma_fifo_in()
177 fifo->done, n, fifo->avail); dma_fifo_in()
225 df_trace("in: %u out: %u done: %u n: %d len: %u avail: %d", fifo->in, dma_fifo_out_pend()
226 fifo->out, fifo->done, n, len, fifo->avail); dma_fifo_out_pend()
280 if (FAIL(fifo, pending->out != fifo->done || dma_fifo_out_complete()
281 addr_check(fifo->in, fifo->done, pending->next), dma_fifo_out_complete()
282 "in:%u out:%u done:%u saved:%u next:%u", dma_fifo_out_complete()
283 fifo->in, fifo->out, fifo->done, pending->out, dma_fifo_out_complete()
288 fifo->done = pending->next; dma_fifo_out_complete()
292 df_trace("in: %u out: %u done: %u len: %u avail: %d", fifo->in, dma_fifo_out_complete()
293 fifo->out, fifo->done, pending->len, fifo->avail); dma_fifo_out_complete()
/linux-4.1.27/arch/sparc/kernel/
H A Dutrap.S28 done
/linux-4.1.27/include/scsi/
H A Dscsi_driver.h17 int (*done)(struct scsi_cmnd *); member in struct:scsi_driver
/linux-4.1.27/arch/powerpc/include/asm/
H A Dmpc8260.h5 * this one and the configuration switching is done here.
H A Dvga.h23 * <linux/vt_buffer.h> has already done the right job for us.
/linux-4.1.27/arch/cris/include/arch-v32/arch/
H A Dbug.h10 * All other stuff is done out-of-band with exception handlers.
/linux-4.1.27/arch/arm/mach-ux500/
H A Dhotplug.c32 * OK, proper wakeup, we're done ux500_cpu_die()
/linux-4.1.27/lib/zlib_inflate/
H A DMakefile13 # uncompression can be done without blocking on allocation).
/linux-4.1.27/tools/time/
H A Dudelay_test.sh51 done
54 done
57 done
/linux-4.1.27/drivers/infiniband/hw/ipath/
H A Dipath_uc.c72 goto done; ipath_make_uc_req()
216 done: ipath_make_uc_req()
255 goto done; ipath_uc_rcv()
309 goto done; ipath_uc_rcv()
353 goto done;
368 goto done; OP()
374 goto done;
400 goto done;
408 goto done;
450 goto done;
462 goto done;
473 goto done; OP()
478 goto done;
501 goto done;
507 goto done;
513 goto done;
527 goto done;
533 goto done;
541 goto done;
545 done:
/linux-4.1.27/arch/cris/include/arch-v32/arch/hwregs/iop/
H A DMakefile96 done
100 done
105 done
125 done
135 done
/linux-4.1.27/block/
H A Dblk-lib.c13 atomic_t done; member in struct:bio_batch
24 if (atomic_dec_and_test(&bb->done)) bio_batch_end_io()
80 atomic_set(&bb.done, 1); blkdev_issue_discard()
120 atomic_inc(&bb.done); blkdev_issue_discard()
134 if (!atomic_dec_and_test(&bb.done)) blkdev_issue_discard()
174 atomic_set(&bb.done, 1); blkdev_issue_write_same()
203 atomic_inc(&bb.done); blkdev_issue_write_same()
208 if (!atomic_dec_and_test(&bb.done)) blkdev_issue_write_same()
238 atomic_set(&bb.done, 1); __blkdev_issue_zeroout()
265 atomic_inc(&bb.done); __blkdev_issue_zeroout()
270 if (!atomic_dec_and_test(&bb.done)) __blkdev_issue_zeroout()
H A Dblk-exec.c42 * @done: I/O completion handler
49 * This function will invoke @done directly if the queue is dead.
53 rq_end_io_fn *done) blk_execute_rq_nowait()
62 rq->end_io = done; blk_execute_rq_nowait()
51 blk_execute_rq_nowait(struct request_queue *q, struct gendisk *bd_disk, struct request *rq, int at_head, rq_end_io_fn *done) blk_execute_rq_nowait() argument
/linux-4.1.27/drivers/media/i2c/soc_camera/
H A Dov9740.c598 goto done; ov9740_set_res()
601 goto done; ov9740_set_res()
604 goto done; ov9740_set_res()
607 goto done; ov9740_set_res()
611 goto done; ov9740_set_res()
614 goto done; ov9740_set_res()
617 goto done; ov9740_set_res()
620 goto done; ov9740_set_res()
624 goto done; ov9740_set_res()
627 goto done; ov9740_set_res()
630 goto done; ov9740_set_res()
633 goto done; ov9740_set_res()
637 goto done; ov9740_set_res()
640 goto done; ov9740_set_res()
643 goto done; ov9740_set_res()
646 goto done; ov9740_set_res()
651 goto done; ov9740_set_res()
655 goto done; ov9740_set_res()
659 goto done; ov9740_set_res()
663 goto done; ov9740_set_res()
666 done: ov9740_set_res()
853 goto done; ov9740_video_probe()
857 goto done; ov9740_video_probe()
863 goto done; ov9740_video_probe()
867 goto done; ov9740_video_probe()
871 goto done; ov9740_video_probe()
875 goto done; ov9740_video_probe()
884 done: ov9740_video_probe()
/linux-4.1.27/drivers/net/wireless/ath/wil6210/
H A Dnetdev.c80 int done; wil6210_netdev_poll_rx() local
83 done = budget - quota; wil6210_netdev_poll_rx()
85 if (done < budget) { wil6210_netdev_poll_rx()
91 wil_dbg_txrx(wil, "NAPI RX poll(%d) done %d\n", budget, done); wil6210_netdev_poll_rx()
93 return done; wil6210_netdev_poll_rx()
119 wil_dbg_txrx(wil, "NAPI TX poll(%d) done %d\n", budget, tx_done); wil6210_netdev_poll_tx()
/linux-4.1.27/drivers/pinctrl/sh-pfc/
H A Dpinctrl.c132 goto done; sh_pfc_dt_subnode_to_map()
141 goto done; sh_pfc_dt_subnode_to_map()
151 goto done; sh_pfc_dt_subnode_to_map()
159 goto done; sh_pfc_dt_subnode_to_map()
170 goto done; sh_pfc_dt_subnode_to_map()
190 goto done; sh_pfc_dt_subnode_to_map()
198 goto done; sh_pfc_dt_subnode_to_map()
206 goto done; sh_pfc_dt_subnode_to_map()
211 done: sh_pfc_dt_subnode_to_map()
252 goto done; for_each_child_of_node()
259 goto done;
268 done:
333 goto done; sh_pfc_func_set_mux()
343 done: sh_pfc_func_set_mux()
366 goto done; sh_pfc_gpio_request_enable()
377 goto done; sh_pfc_gpio_request_enable()
384 done: sh_pfc_gpio_request_enable()
432 goto done; sh_pfc_gpio_set_direction()
436 done: sh_pfc_gpio_set_direction()
/linux-4.1.27/net/bluetooth/
H A Dhci_sock.c615 goto done; hci_sock_ioctl()
670 done: hci_sock_ioctl()
699 goto done; hci_sock_bind()
706 goto done; hci_sock_bind()
713 goto done; hci_sock_bind()
725 goto done; hci_sock_bind()
730 goto done; hci_sock_bind()
735 goto done; hci_sock_bind()
741 goto done; hci_sock_bind()
751 goto done; hci_sock_bind()
757 goto done; hci_sock_bind()
777 goto done; hci_sock_bind()
789 goto done; hci_sock_bind()
794 goto done; hci_sock_bind()
810 goto done; hci_sock_bind()
815 goto done; hci_sock_bind()
848 done: hci_sock_bind()
871 goto done; hci_sock_getname()
879 done: hci_sock_getname()
992 goto done; hci_mgmt_cmd()
1002 goto done; hci_mgmt_cmd()
1010 goto done; hci_mgmt_cmd()
1019 goto done; hci_mgmt_cmd()
1027 goto done; hci_mgmt_cmd()
1035 goto done; hci_mgmt_cmd()
1042 goto done; hci_mgmt_cmd()
1050 goto done; hci_mgmt_cmd()
1058 goto done; hci_mgmt_cmd()
1068 goto done; hci_mgmt_cmd()
1072 done: hci_mgmt_cmd()
1108 goto done; hci_sock_sendmsg()
1118 goto done; hci_sock_sendmsg()
1124 goto done; hci_sock_sendmsg()
1129 goto done; hci_sock_sendmsg()
1134 goto done; hci_sock_sendmsg()
1196 done: hci_sock_sendmsg()
1202 goto done; hci_sock_sendmsg()
1218 goto done; hci_sock_setsockopt()
1283 done: hci_sock_setsockopt()
1304 goto done; hci_sock_getsockopt()
1349 done: hci_sock_getsockopt()
/linux-4.1.27/drivers/gpu/drm/nouveau/nvkm/engine/disp/
H A Doutpdp.c46 goto done; nvkm_output_dp_train()
54 goto done; nvkm_output_dp_train()
61 goto done; nvkm_output_dp_train()
71 goto done; nvkm_output_dp_train()
79 done: nvkm_output_dp_train()
80 if (retrain || !atomic_read(&outp->lt.done)) { nvkm_output_dp_train()
88 atomic_set(&outp->lt.done, 0); nvkm_output_dp_train()
96 atomic_read(&outp->lt.done), nvkm_output_dp_train()
121 atomic_set(&outp->lt.done, 0); nvkm_output_dp_enable()
253 atomic_set(&outp->lt.done, 0); nvkm_output_dp_create_()
H A Doutpdp.h22 atomic_t done; member in struct:nvkm_output_dp::__anon4257
/linux-4.1.27/tools/perf/bench/
H A Dsched-messaging.c93 int ret, done = 0; sender() local
96 ret = write(ctx->out_fds[j], data + done, sender()
97 sizeof(data)-done); sender()
100 done += ret; sender()
101 if (done < DATASIZE) sender()
124 int ret, done = 0; receiver() local
127 ret = read(ctx->in_fds[0], data + done, DATASIZE - done); receiver()
130 done += ret; receiver()
131 if (done < DATASIZE) receiver()
H A Dfutex-hash.c28 static bool fshared = false, done = false, silent = false; variable
84 } while (!done); workerfn()
93 /* inform all threads that we're done for the day */ toggle_done()
94 done = true; toggle_done()
/linux-4.1.27/drivers/pnp/
H A Dinterface.c345 goto done; resources_store()
351 goto done; resources_store()
355 goto done; resources_store()
359 goto done; resources_store()
361 goto done; resources_store()
365 goto done; resources_store()
368 goto done; resources_store()
372 goto done; resources_store()
374 goto done; resources_store()
381 goto done; resources_store()
389 goto done; resources_store()
429 goto done; resources_store()
432 done: resources_store()
/linux-4.1.27/drivers/vme/bridges/
H A Dvme_ca91cx42.c864 unsigned int done = 0; ca91cx42_master_read() local
882 done += 1; ca91cx42_master_read()
883 if (done == count) ca91cx42_master_read()
886 if ((uintptr_t)(addr + done) & 0x2) { ca91cx42_master_read()
887 if ((count - done) < 2) { ca91cx42_master_read()
888 *(u8 *)(buf + done) = ioread8(addr + done); ca91cx42_master_read()
889 done += 1; ca91cx42_master_read()
892 *(u16 *)(buf + done) = ioread16(addr + done); ca91cx42_master_read()
893 done += 2; ca91cx42_master_read()
897 count32 = (count - done) & ~0x3; ca91cx42_master_read()
898 while (done < count32) { ca91cx42_master_read()
899 *(u32 *)(buf + done) = ioread32(addr + done); ca91cx42_master_read()
900 done += 4; ca91cx42_master_read()
903 if ((count - done) & 0x2) { ca91cx42_master_read()
904 *(u16 *)(buf + done) = ioread16(addr + done); ca91cx42_master_read()
905 done += 2; ca91cx42_master_read()
907 if ((count - done) & 0x1) { ca91cx42_master_read()
908 *(u8 *)(buf + done) = ioread8(addr + done); ca91cx42_master_read()
909 done += 1; ca91cx42_master_read()
923 unsigned int done = 0; ca91cx42_master_write() local
936 done += 1; ca91cx42_master_write()
937 if (done == count) ca91cx42_master_write()
940 if ((uintptr_t)(addr + done) & 0x2) { ca91cx42_master_write()
941 if ((count - done) < 2) { ca91cx42_master_write()
942 iowrite8(*(u8 *)(buf + done), addr + done); ca91cx42_master_write()
943 done += 1; ca91cx42_master_write()
946 iowrite16(*(u16 *)(buf + done), addr + done); ca91cx42_master_write()
947 done += 2; ca91cx42_master_write()
951 count32 = (count - done) & ~0x3; ca91cx42_master_write()
952 while (done < count32) { ca91cx42_master_write()
953 iowrite32(*(u32 *)(buf + done), addr + done); ca91cx42_master_write()
954 done += 4; ca91cx42_master_write()
957 if ((count - done) & 0x2) { ca91cx42_master_write()
958 iowrite16(*(u16 *)(buf + done), addr + done); ca91cx42_master_write()
959 done += 2; ca91cx42_master_write()
961 if ((count - done) & 0x1) { ca91cx42_master_write()
962 iowrite8(*(u8 *)(buf + done), addr + done); ca91cx42_master_write()
963 done += 1; ca91cx42_master_write()
1292 * This does not enable the LM monitor - that should be done when the first
H A Dvme_tsi148.c1270 unsigned int done = 0; tsi148_master_read() local
1287 done += 1; tsi148_master_read()
1288 if (done == count) tsi148_master_read()
1291 if ((uintptr_t)(addr + done) & 0x2) { tsi148_master_read()
1292 if ((count - done) < 2) { tsi148_master_read()
1293 *(u8 *)(buf + done) = ioread8(addr + done); tsi148_master_read()
1294 done += 1; tsi148_master_read()
1297 *(u16 *)(buf + done) = ioread16(addr + done); tsi148_master_read()
1298 done += 2; tsi148_master_read()
1302 count32 = (count - done) & ~0x3; tsi148_master_read()
1303 while (done < count32) { tsi148_master_read()
1304 *(u32 *)(buf + done) = ioread32(addr + done); tsi148_master_read()
1305 done += 4; tsi148_master_read()
1308 if ((count - done) & 0x2) { tsi148_master_read()
1309 *(u16 *)(buf + done) = ioread16(addr + done); tsi148_master_read()
1310 done += 2; tsi148_master_read()
1312 if ((count - done) & 0x1) { tsi148_master_read()
1313 *(u8 *)(buf + done) = ioread8(addr + done); tsi148_master_read()
1314 done += 1; tsi148_master_read()
1351 unsigned int done = 0; tsi148_master_write() local
1369 done += 1; tsi148_master_write()
1370 if (done == count) tsi148_master_write()
1373 if ((uintptr_t)(addr + done) & 0x2) { tsi148_master_write()
1374 if ((count - done) < 2) { tsi148_master_write()
1375 iowrite8(*(u8 *)(buf + done), addr + done); tsi148_master_write()
1376 done += 1; tsi148_master_write()
1379 iowrite16(*(u16 *)(buf + done), addr + done); tsi148_master_write()
1380 done += 2; tsi148_master_write()
1384 count32 = (count - done) & ~0x3; tsi148_master_write()
1385 while (done < count32) { tsi148_master_write()
1386 iowrite32(*(u32 *)(buf + done), addr + done); tsi148_master_write()
1387 done += 4; tsi148_master_write()
1390 if ((count - done) & 0x2) { tsi148_master_write()
1391 iowrite16(*(u16 *)(buf + done), addr + done); tsi148_master_write()
1392 done += 2; tsi148_master_write()
1394 if ((count - done) & 0x1) { tsi148_master_write()
1395 iowrite8(*(u8 *)(buf + done), addr + done); tsi148_master_write()
1396 done += 1; tsi148_master_write()
1996 * This does not enable the LM monitor - that should be done when the first
/linux-4.1.27/drivers/iio/pressure/
H A Dmpl115.c58 goto done; mpl115_comp_pressure()
62 goto done; mpl115_comp_pressure()
67 goto done; mpl115_comp_pressure()
80 done: mpl115_comp_pressure()
92 goto done; mpl115_read_temp()
94 done: mpl115_read_temp()
H A Dt5403.c79 goto done; t5403_comp_pressure()
84 goto done; t5403_comp_pressure()
104 done: t5403_comp_pressure()
117 goto done; t5403_comp_temp()
124 done: t5403_comp_temp()
/linux-4.1.27/drivers/mtd/maps/
H A Dlatch-addr-flash.c120 if (latch_addr_data->done) latch_addr_flash_remove()
121 latch_addr_data->done(latch_addr_data->data); latch_addr_flash_remove()
155 goto done; latch_addr_flash_probe()
211 done: latch_addr_flash_probe()
212 if (latch_addr_data->done) latch_addr_flash_probe()
213 latch_addr_data->done(latch_addr_data->data); latch_addr_flash_probe()
/linux-4.1.27/fs/hfsplus/
H A Dbitmap.c110 goto done; hfsplus_block_allocate()
113 goto done; hfsplus_block_allocate()
150 done: hfsplus_block_allocate()
172 /* is there any actual work to be done? */ hfsplus_block_free()
210 goto done; hfsplus_block_free()
225 done: hfsplus_block_free()
/linux-4.1.27/arch/powerpc/platforms/pseries/
H A Dnvram.c49 int done; pSeries_nvram_read() local
71 if ((rtas_call(nvram_fetch, 3, 2, &done, i, __pa(nvram_buf), pSeries_nvram_read()
72 len) != 0) || len != done) { pSeries_nvram_read()
93 int done; pSeries_nvram_write() local
116 if ((rtas_call(nvram_store, 3, 2, &done, i, __pa(nvram_buf), pSeries_nvram_write()
117 len) != 0) || len != done) { pSeries_nvram_write()
/linux-4.1.27/fs/ecryptfs/
H A Dkthread.c34 struct completion done; member in struct:ecryptfs_open_req
79 complete(&req->done); ecryptfs_threadfn()
114 complete(&req->done); ecryptfs_destroy_kthread()
140 init_completion(&req.done); ecryptfs_privileged_open()
145 /* Corresponding dput() and mntput() are done when the ecryptfs_privileged_open()
168 wait_for_completion(&req.done); ecryptfs_privileged_open()
/linux-4.1.27/drivers/block/paride/
H A Dpseudo.h19 If nice is 1, the test will done approximately once a
20 jiffy. If nice is 0, the test will also be done whenever
22 nice is greater than 1, the test will be done once every
/linux-4.1.27/arch/s390/include/asm/
H A Dccwgroup.h13 * @ungroup_work: work to be done when a ccwgroup notifier has action
39 * @complete: undo work done in @prepare
41 * @thaw: undo work done in @freeze
/linux-4.1.27/security/tomoyo/
H A Dload_policy.c85 static bool done; tomoyo_load_policy() local
89 if (tomoyo_policy_loaded || done) tomoyo_load_policy()
97 done = true; tomoyo_load_policy()
/linux-4.1.27/tools/perf/ui/tui/
H A Dsetup.c42 static bool done; ui__setup_sigwinch() local
44 if (done) ui__setup_sigwinch()
47 done = true; ui__setup_sigwinch()
/linux-4.1.27/drivers/lguest/
H A DMakefile16 @for f in Preparation Guest Drivers Launcher Host Switcher Mastery; do echo "{==- $$f -==}"; make -s $$f; done; echo "{==-==}"
/linux-4.1.27/drivers/iio/humidity/
H A Dsi7005.c53 goto done; si7005_read_measurement()
59 goto done; si7005_read_measurement()
65 goto done; si7005_read_measurement()
70 done: si7005_read_measurement()
/linux-4.1.27/arch/unicore32/include/asm/
H A Dcache.h22 * cache before the transfer is done, causing old data to be seen by
/linux-4.1.27/arch/powerpc/platforms/powernv/
H A Dsubcore.h14 #define SYNC_STEP_FINISHED 3 /* Set by secondary when split/unsplit is done */
/linux-4.1.27/arch/s390/kernel/
H A Drelocate_kernel.S15 * %r3 = start address - where to jump to after the job is done...
74 tml %r5,0x4 # is it the done indicator?
76 j .done # ok, lets finish it here...
85 .done:
/linux-4.1.27/arch/powerpc/boot/
H A Dvirtex405-head.S17 * - If the data cache is turned on this must have been done by
/linux-4.1.27/arch/powerpc/mm/
H A Dppc_mmu_32.c77 unsigned long tot, bl, done; mmu_mapin_ram() local
96 done = (unsigned long)bat_addrs[2].limit - PAGE_OFFSET + 1; mmu_mapin_ram()
97 if ((done < tot) && !bat_addrs[3].limit) { mmu_mapin_ram()
99 tot -= done; mmu_mapin_ram()
103 setbat(3, PAGE_OFFSET+done, done, bl, PAGE_KERNEL_X); mmu_mapin_ram()
104 done = (unsigned long)bat_addrs[3].limit - PAGE_OFFSET + 1; mmu_mapin_ram()
107 return done; mmu_mapin_ram()
273 if ( ppc_md.progress ) ppc_md.progress("hash:done", 0x205); MMU_init_hw()
/linux-4.1.27/arch/cris/arch-v10/lib/
H A Ddmacopy.c38 D(printk(KERN_DEBUG "done\n")); dma_memcpy()
/linux-4.1.27/arch/arm/mach-prima2/
H A Dhotplug.c23 * OK, proper wakeup, we're done platform_do_lowpower()
/linux-4.1.27/arch/arm/crypto/
H A Dsha512_neon_glue.c100 unsigned int done = 0; __sha512_neon_update() local
107 done = SHA512_BLOCK_SIZE - partial; __sha512_neon_update()
108 memcpy(sctx->buf + partial, data, done); __sha512_neon_update()
112 if (len - done >= SHA512_BLOCK_SIZE) { __sha512_neon_update()
113 const unsigned int rounds = (len - done) / SHA512_BLOCK_SIZE; __sha512_neon_update()
115 sha512_transform_neon(sctx->state, data + done, sha512_k, __sha512_neon_update()
118 done += rounds * SHA512_BLOCK_SIZE; __sha512_neon_update()
121 memcpy(sctx->buf, data + done, len - done); __sha512_neon_update()
/linux-4.1.27/arch/arm/include/asm/
H A Dcache.h14 * cache before the transfer is done, causing old data to be seen by
/linux-4.1.27/fs/btrfs/
H A Dtree-defrag.c125 goto done; btrfs_defrag_leaves()
127 goto done; btrfs_defrag_leaves()
129 goto done; btrfs_defrag_leaves()
132 done: btrfs_defrag_leaves()
/linux-4.1.27/sound/usb/hiface/
H A Dchip.h9 * The driver is based on the work done in TerraTec DMX 6Fire USB
H A Dpcm.h9 * The driver is based on the work done in TerraTec DMX 6Fire USB
/linux-4.1.27/tools/lib/lockdep/uinclude/linux/
H A Dkern_levels.h19 * Annotation for a "continued" line of log printout (only done after a
/linux-4.1.27/include/asm-generic/
H A Dscatterlist.h20 * These macros should be used after a dma_map_sg call has been done
/linux-4.1.27/include/linux/mtd/
H A Dlatch-addr-flash.h21 void (*done)(void *data); member in struct:latch_addr_flash_data
/linux-4.1.27/fs/affs/
H A Damigaffs.c151 goto done; affs_remove_link()
161 goto done; affs_remove_link()
166 goto done; affs_remove_link()
178 goto done; affs_remove_link()
186 goto done; affs_remove_link()
195 goto done; affs_remove_link()
215 goto done; affs_remove_link()
220 goto done; affs_remove_link()
223 done: affs_remove_link()
240 goto done; affs_empty_dir()
249 done: affs_empty_dir()
277 goto done; affs_remove_header()
283 goto done; affs_remove_header()
318 done: affs_remove_header()
325 goto done; affs_remove_header()
/linux-4.1.27/Documentation/DocBook/media/
H A DMakefile297 done)
307 done)
315 done)
323 done)
331 done)
338 done)
348 done)
358 done)
373 done)
379 done)
385 done)
/linux-4.1.27/drivers/scsi/
H A Dultrastor.c105 * Abort now calls done when multiple commands are enabled.
199 void (*done) (struct scsi_cmnd *); member in struct:mscp
704 void (*done) (struct scsi_cmnd *))
757 my_mscp->done = done;
798 /* If the driver queues commands, call the done proc here. Otherwise
802 done(SCpnt);
841 2b. Call the command's done procedure.
855 void (*done)(struct scsi_cmnd *);
918 and the interrupt handler will call done. */
961 done = config.mscp[mscp_index].done;
962 config.mscp[mscp_index].done = NULL;
966 done(SCpnt);
996 if (config.mscp_busy && config.mscp->done && config.mscp->SCint)
999 config.mscp->done(config.mscp->SCint);
1006 config.mscp[i].done && config.mscp[i].SCint)
1009 config.mscp[i].done(config.mscp[i].SCint);
1010 config.mscp[i].done = NULL;
1057 void (*done) (struct scsi_cmnd *);
1091 void (*done)(struct scsi_cmnd *) = mscp->done;
1092 if (done) {
1093 mscp->done = NULL;
1095 done(mscp->SCint);
1120 /* Save done locally and zero before calling. This is needed as
1121 once we call done, we may get another command queued before this
1123 done = mscp->done;
1124 mscp->done = NULL;
1126 /* Let the higher levels know that we're done */
1164 if (done)
1165 done(SCtmp);
/linux-4.1.27/drivers/media/pci/tw68/
H A Dtw68-risc.c47 unsigned int line, todo, done; tw68_risc_field() local
82 todo = bpl; /* one full line to be done */ tw68_risc_field()
84 done = (sg_dma_len(sg) - offset); tw68_risc_field()
87 done); tw68_risc_field()
89 todo -= done; tw68_risc_field()
94 (done << 12) | tw68_risc_field()
99 done += sg_dma_len(sg); tw68_risc_field()
104 (done << 12) | tw68_risc_field()
/linux-4.1.27/arch/x86/power/
H A Dhibernate_asm_32.S46 jz done
59 done: label
/linux-4.1.27/arch/x86/purgatory/
H A Dsha256.c228 unsigned int partial, done; sha256_update() local
233 done = 0; sha256_update()
238 done = -partial; sha256_update()
239 memcpy(sctx->buf + partial, data, done + 64); sha256_update()
245 done += 64; sha256_update()
246 src = data + done; sha256_update()
247 } while (done + 63 < len); sha256_update()
251 memcpy(sctx->buf + partial, src, len - done); sha256_update()
/linux-4.1.27/arch/mips/include/asm/mach-rc32434/
H A Ddma.h50 #define DMA_DESC_COD (1 << 26) /* Chain on done */
52 #define DMA_DESC_IOD (1 << 28) /* Interrupt on done */
/linux-4.1.27/arch/mn10300/mm/
H A Ddma-alloc.c37 goto done; dma_alloc_coherent()
59 done: dma_alloc_coherent()
/linux-4.1.27/net/nfc/nci/
H A Dspi.c94 goto done; nci_spi_send()
100 goto done; nci_spi_send()
106 goto done; nci_spi_send()
116 done: nci_spi_send()
290 goto done; nci_spi_read()
295 goto done; nci_spi_read()
312 goto done; nci_spi_read()
318 done: nci_spi_read()
/linux-4.1.27/scripts/kconfig/lxdialog/
H A Dcheck-lxdialog.sh16 done
17 done
/linux-4.1.27/drivers/iio/common/ssp_sensors/
H A Dssp_spi.c48 struct completion *done; member in struct:ssp_msg
188 struct completion *done, int timeout) ssp_do_transfer()
200 msg->done = done; ssp_do_transfer()
233 if (!use_no_irq && done) ssp_do_transfer()
234 if (wait_for_completion_timeout(done, ssp_do_transfer()
262 DECLARE_COMPLETION_ONSTACK(done); ssp_spi_sync()
267 return ssp_do_transfer(data, msg, &done, timeout); ssp_spi_sync()
423 if (msg->done) ssp_irq_msg()
424 if (!completion_done(msg->done)) ssp_irq_msg()
425 complete(msg->done); ssp_irq_msg()
462 if (msg->done) ssp_clean_pending_list()
463 if (!completion_done(msg->done)) ssp_clean_pending_list()
464 complete(msg->done); ssp_clean_pending_list()
187 ssp_do_transfer(struct ssp_data *data, struct ssp_msg *msg, struct completion *done, int timeout) ssp_do_transfer() argument
/linux-4.1.27/drivers/gpu/drm/
H A Dati_pcigart.c111 goto done; drm_ati_pcigart_init()
121 goto done; drm_ati_pcigart_init()
127 goto done; drm_ati_pcigart_init()
163 goto done; drm_ati_pcigart_init()
199 done: drm_ati_pcigart_init()
/linux-4.1.27/arch/alpha/kernel/
H A Dsmc37c93x.c249 DBG_DEVS(("SMC FDC37C93X: SER1 done\n")); SMC93x_Init()
251 DBG_DEVS(("SMC FDC37C93X: SER2 done\n")); SMC93x_Init()
253 DBG_DEVS(("SMC FDC37C93X: PARP done\n")); SMC93x_Init()
257 DBG_DEVS(("SMC FDC37C93X: KYB done\n")); SMC93x_Init()
259 DBG_DEVS(("SMC FDC37C93X: FDC done\n")); SMC93x_Init()
/linux-4.1.27/tools/hv/
H A Dhv_fcopy_daemon.c66 goto done; hv_start_fcopy()
71 goto done; hv_start_fcopy()
82 goto done; hv_start_fcopy()
90 goto done; hv_start_fcopy()
94 done: hv_start_fcopy()
/linux-4.1.27/fs/xfs/libxfs/
H A Dxfs_bmap.c916 goto done; xfs_bmap_local_to_extents()
942 goto done; xfs_bmap_local_to_extents()
975 done: xfs_bmap_local_to_extents()
1839 goto done; xfs_bmap_add_extent_delay_real()
1840 XFS_WANT_CORRUPTED_GOTO(mp, i == 1, done); xfs_bmap_add_extent_delay_real()
1843 goto done; xfs_bmap_add_extent_delay_real()
1844 XFS_WANT_CORRUPTED_GOTO(mp, i == 1, done); xfs_bmap_add_extent_delay_real()
1847 goto done; xfs_bmap_add_extent_delay_real()
1848 XFS_WANT_CORRUPTED_GOTO(mp, i == 1, done); xfs_bmap_add_extent_delay_real()
1855 goto done; xfs_bmap_add_extent_delay_real()
1880 goto done; xfs_bmap_add_extent_delay_real()
1881 XFS_WANT_CORRUPTED_GOTO(mp, i == 1, done); xfs_bmap_add_extent_delay_real()
1887 goto done; xfs_bmap_add_extent_delay_real()
1911 goto done; xfs_bmap_add_extent_delay_real()
1912 XFS_WANT_CORRUPTED_GOTO(mp, i == 1, done); xfs_bmap_add_extent_delay_real()
1918 goto done; xfs_bmap_add_extent_delay_real()
1941 goto done; xfs_bmap_add_extent_delay_real()
1942 XFS_WANT_CORRUPTED_GOTO(mp, i == 0, done); xfs_bmap_add_extent_delay_real()
1946 goto done; xfs_bmap_add_extent_delay_real()
1947 XFS_WANT_CORRUPTED_GOTO(mp, i == 1, done); xfs_bmap_add_extent_delay_real()
1974 goto done; xfs_bmap_add_extent_delay_real()
1975 XFS_WANT_CORRUPTED_GOTO(mp, i == 1, done); xfs_bmap_add_extent_delay_real()
1982 goto done; xfs_bmap_add_extent_delay_real()
2011 goto done; xfs_bmap_add_extent_delay_real()
2012 XFS_WANT_CORRUPTED_GOTO(mp, i == 0, done); xfs_bmap_add_extent_delay_real()
2016 goto done; xfs_bmap_add_extent_delay_real()
2017 XFS_WANT_CORRUPTED_GOTO(mp, i == 1, done); xfs_bmap_add_extent_delay_real()
2026 goto done; xfs_bmap_add_extent_delay_real()
2057 goto done; xfs_bmap_add_extent_delay_real()
2058 XFS_WANT_CORRUPTED_GOTO(mp, i == 1, done); xfs_bmap_add_extent_delay_real()
2065 goto done; xfs_bmap_add_extent_delay_real()
2095 goto done; xfs_bmap_add_extent_delay_real()
2096 XFS_WANT_CORRUPTED_GOTO(mp, i == 0, done); xfs_bmap_add_extent_delay_real()
2100 goto done; xfs_bmap_add_extent_delay_real()
2101 XFS_WANT_CORRUPTED_GOTO(mp, i == 1, done); xfs_bmap_add_extent_delay_real()
2110 goto done; xfs_bmap_add_extent_delay_real()
2164 goto done; xfs_bmap_add_extent_delay_real()
2165 XFS_WANT_CORRUPTED_GOTO(mp, i == 0, done); xfs_bmap_add_extent_delay_real()
2169 goto done; xfs_bmap_add_extent_delay_real()
2170 XFS_WANT_CORRUPTED_GOTO(mp, i == 1, done); xfs_bmap_add_extent_delay_real()
2179 goto done; xfs_bmap_add_extent_delay_real()
2190 goto done; xfs_bmap_add_extent_delay_real()
2228 goto done; xfs_bmap_add_extent_delay_real()
2242 /* clear out the allocated field, done with it now in any case. */ xfs_bmap_add_extent_delay_real()
2247 done: xfs_bmap_add_extent_delay_real()
2393 goto done; xfs_bmap_add_extent_unwritten_real()
2394 XFS_WANT_CORRUPTED_GOTO(mp, i == 1, done); xfs_bmap_add_extent_unwritten_real()
2396 goto done; xfs_bmap_add_extent_unwritten_real()
2397 XFS_WANT_CORRUPTED_GOTO(mp, i == 1, done); xfs_bmap_add_extent_unwritten_real()
2399 goto done; xfs_bmap_add_extent_unwritten_real()
2400 XFS_WANT_CORRUPTED_GOTO(mp, i == 1, done); xfs_bmap_add_extent_unwritten_real()
2402 goto done; xfs_bmap_add_extent_unwritten_real()
2403 XFS_WANT_CORRUPTED_GOTO(mp, i == 1, done); xfs_bmap_add_extent_unwritten_real()
2405 goto done; xfs_bmap_add_extent_unwritten_real()
2406 XFS_WANT_CORRUPTED_GOTO(mp, i == 1, done); xfs_bmap_add_extent_unwritten_real()
2411 goto done; xfs_bmap_add_extent_unwritten_real()
2436 goto done; xfs_bmap_add_extent_unwritten_real()
2437 XFS_WANT_CORRUPTED_GOTO(mp, i == 1, done); xfs_bmap_add_extent_unwritten_real()
2439 goto done; xfs_bmap_add_extent_unwritten_real()
2440 XFS_WANT_CORRUPTED_GOTO(mp, i == 1, done); xfs_bmap_add_extent_unwritten_real()
2442 goto done; xfs_bmap_add_extent_unwritten_real()
2443 XFS_WANT_CORRUPTED_GOTO(mp, i == 1, done); xfs_bmap_add_extent_unwritten_real()
2448 goto done; xfs_bmap_add_extent_unwritten_real()
2471 goto done; xfs_bmap_add_extent_unwritten_real()
2472 XFS_WANT_CORRUPTED_GOTO(mp, i == 1, done); xfs_bmap_add_extent_unwritten_real()
2474 goto done; xfs_bmap_add_extent_unwritten_real()
2475 XFS_WANT_CORRUPTED_GOTO(mp, i == 1, done); xfs_bmap_add_extent_unwritten_real()
2477 goto done; xfs_bmap_add_extent_unwritten_real()
2478 XFS_WANT_CORRUPTED_GOTO(mp, i == 1, done); xfs_bmap_add_extent_unwritten_real()
2483 goto done; xfs_bmap_add_extent_unwritten_real()
2504 goto done; xfs_bmap_add_extent_unwritten_real()
2505 XFS_WANT_CORRUPTED_GOTO(mp, i == 1, done); xfs_bmap_add_extent_unwritten_real()
2509 goto done; xfs_bmap_add_extent_unwritten_real()
2541 goto done; xfs_bmap_add_extent_unwritten_real()
2542 XFS_WANT_CORRUPTED_GOTO(mp, i == 1, done); xfs_bmap_add_extent_unwritten_real()
2548 goto done; xfs_bmap_add_extent_unwritten_real()
2550 goto done; xfs_bmap_add_extent_unwritten_real()
2556 goto done; xfs_bmap_add_extent_unwritten_real()
2583 goto done; xfs_bmap_add_extent_unwritten_real()
2584 XFS_WANT_CORRUPTED_GOTO(mp, i == 1, done); xfs_bmap_add_extent_unwritten_real()
2590 goto done; xfs_bmap_add_extent_unwritten_real()
2593 goto done; xfs_bmap_add_extent_unwritten_real()
2594 XFS_WANT_CORRUPTED_GOTO(mp, i == 1, done); xfs_bmap_add_extent_unwritten_real()
2623 goto done; xfs_bmap_add_extent_unwritten_real()
2624 XFS_WANT_CORRUPTED_GOTO(mp, i == 1, done); xfs_bmap_add_extent_unwritten_real()
2629 goto done; xfs_bmap_add_extent_unwritten_real()
2631 goto done; xfs_bmap_add_extent_unwritten_real()
2636 goto done; xfs_bmap_add_extent_unwritten_real()
2661 goto done; xfs_bmap_add_extent_unwritten_real()
2662 XFS_WANT_CORRUPTED_GOTO(mp, i == 1, done); xfs_bmap_add_extent_unwritten_real()
2667 goto done; xfs_bmap_add_extent_unwritten_real()
2671 goto done; xfs_bmap_add_extent_unwritten_real()
2672 XFS_WANT_CORRUPTED_GOTO(mp, i == 0, done); xfs_bmap_add_extent_unwritten_real()
2675 goto done; xfs_bmap_add_extent_unwritten_real()
2676 XFS_WANT_CORRUPTED_GOTO(mp, i == 1, done); xfs_bmap_add_extent_unwritten_real()
2709 goto done; xfs_bmap_add_extent_unwritten_real()
2710 XFS_WANT_CORRUPTED_GOTO(mp, i == 1, done); xfs_bmap_add_extent_unwritten_real()
2715 goto done; xfs_bmap_add_extent_unwritten_real()
2721 goto done; xfs_bmap_add_extent_unwritten_real()
2722 XFS_WANT_CORRUPTED_GOTO(mp, i == 1, done); xfs_bmap_add_extent_unwritten_real()
2731 goto done; xfs_bmap_add_extent_unwritten_real()
2732 XFS_WANT_CORRUPTED_GOTO(mp, i == 0, done); xfs_bmap_add_extent_unwritten_real()
2736 goto done; xfs_bmap_add_extent_unwritten_real()
2737 XFS_WANT_CORRUPTED_GOTO(mp, i == 1, done); xfs_bmap_add_extent_unwritten_real()
2763 goto done; xfs_bmap_add_extent_unwritten_real()
2766 /* clear out the allocated field, done with it now in any case. */ xfs_bmap_add_extent_unwritten_real()
2773 done: xfs_bmap_add_extent_unwritten_real()
3030 goto done; xfs_bmap_add_extent_hole_real()
3031 XFS_WANT_CORRUPTED_GOTO(mp, i == 1, done); xfs_bmap_add_extent_hole_real()
3034 goto done; xfs_bmap_add_extent_hole_real()
3035 XFS_WANT_CORRUPTED_GOTO(mp, i == 1, done); xfs_bmap_add_extent_hole_real()
3038 goto done; xfs_bmap_add_extent_hole_real()
3039 XFS_WANT_CORRUPTED_GOTO(mp, i == 1, done); xfs_bmap_add_extent_hole_real()
3047 goto done; xfs_bmap_add_extent_hole_real()
3071 goto done; xfs_bmap_add_extent_hole_real()
3072 XFS_WANT_CORRUPTED_GOTO(mp, i == 1, done); xfs_bmap_add_extent_hole_real()
3079 goto done; xfs_bmap_add_extent_hole_real()
3105 goto done; xfs_bmap_add_extent_hole_real()
3106 XFS_WANT_CORRUPTED_GOTO(mp, i == 1, done); xfs_bmap_add_extent_hole_real()
3113 goto done; xfs_bmap_add_extent_hole_real()
3135 goto done; xfs_bmap_add_extent_hole_real()
3136 XFS_WANT_CORRUPTED_GOTO(mp, i == 0, done); xfs_bmap_add_extent_hole_real()
3140 goto done; xfs_bmap_add_extent_hole_real()
3141 XFS_WANT_CORRUPTED_GOTO(mp, i == 1, done); xfs_bmap_add_extent_hole_real()
3156 goto done; xfs_bmap_add_extent_hole_real()
3159 /* clear out the allocated field, done with it now in any case. */ xfs_bmap_add_extent_hole_real()
3164 done: xfs_bmap_add_extent_hole_real()
3702 * Normal allocation, done through xfs_alloc_vextent. xfs_bmap_btalloc()
4077 /* If we're done, stop now. */ xfs_bmapi_read()
4255 /* If we're done, stop now. */ xfs_bmapi_delay()
4603 * If we're done, stop now. Stop when we've allocated xfs_bmapi_write()
4758 goto done; xfs_bmap_del_extent()
4779 goto done; xfs_bmap_del_extent()
4780 XFS_WANT_CORRUPTED_GOTO(mp, i == 1, done); xfs_bmap_del_extent()
4813 goto done; xfs_bmap_del_extent()
4814 XFS_WANT_CORRUPTED_GOTO(mp, i == 1, done); xfs_bmap_del_extent()
4842 goto done; xfs_bmap_del_extent()
4869 goto done; xfs_bmap_del_extent()
4891 goto done; xfs_bmap_del_extent()
4893 goto done; xfs_bmap_del_extent()
4897 goto done; xfs_bmap_del_extent()
4913 goto done; xfs_bmap_del_extent()
4915 i == 1, done); xfs_bmap_del_extent()
4925 goto done; xfs_bmap_del_extent()
4934 goto done; xfs_bmap_del_extent()
4936 XFS_WANT_CORRUPTED_GOTO(mp, i == 1, done); xfs_bmap_del_extent()
4994 done: xfs_bmap_del_extent()
5003 * *done is set.
5016 int *done) /* set if not done yet */ xfs_bunmapi()
5064 *done = 1; xfs_bunmapi()
5116 * we're supposed to delete? If so, we're done. xfs_bunmapi()
5308 * If not done go on to the next (previous) record. xfs_bunmapi()
5323 *done = bno == (xfs_fileoff_t)-1 || bno < start || lastx < 0; xfs_bunmapi()
5616 int *done, xfs_bmap_shift_extents()
5675 *done = 1; xfs_bmap_shift_extents()
5687 *done = 1; xfs_bmap_shift_extents()
5707 * way, we are done. xfs_bmap_shift_extents()
5711 *done = 1; xfs_bmap_shift_extents()
5738 *done = 1; xfs_bmap_shift_extents()
5745 if (!*done) { xfs_bmap_shift_extents()
5811 * no extents. Either way, we are done. xfs_bmap_split_extent_at()
5006 xfs_bunmapi( xfs_trans_t *tp, struct xfs_inode *ip, xfs_fileoff_t bno, xfs_filblks_t len, int flags, xfs_extnum_t nexts, xfs_fsblock_t *firstblock, xfs_bmap_free_t *flist, int *done) xfs_bunmapi() argument
5611 xfs_bmap_shift_extents( struct xfs_trans *tp, struct xfs_inode *ip, xfs_fileoff_t *next_fsb, xfs_fileoff_t offset_shift_fsb, int *done, xfs_fileoff_t stop_fsb, xfs_fsblock_t *firstblock, struct xfs_bmap_free *flist, enum shift_direction direction, int num_exts) xfs_bmap_shift_extents() argument
/linux-4.1.27/drivers/i2c/busses/
H A Di2c-efm32.c124 struct completion done; member in struct:efm32_i2c_ddata
162 complete(&ddata->done); efm32_i2c_send_next_byte()
187 complete(&ddata->done); efm32_i2c_recv_next_byte()
209 complete(&ddata->done); efm32_i2c_irq()
220 complete(&ddata->done); efm32_i2c_irq()
232 complete(&ddata->done); efm32_i2c_irq()
249 complete(&ddata->done); efm32_i2c_irq()
273 reinit_completion(&ddata->done); efm32_i2c_master_xfer()
281 wait_for_completion(&ddata->done); efm32_i2c_master_xfer()
327 init_completion(&ddata->done); efm32_i2c_probe()
H A Di2c-digicolor.c61 struct completion done; member in struct:dc_i2c
119 complete(&i2c->done); dc_i2c_stop()
177 complete(&i2c->done); dc_i2c_irq()
209 complete(&i2c->done); dc_i2c_irq()
230 reinit_completion(&i2c->done); dc_i2c_xfer_msg()
235 timeout = wait_for_completion_timeout(&i2c->done, timeout); dc_i2c_xfer_msg()
312 init_completion(&i2c->done); dc_i2c_probe()
H A Di2c-meson.c75 * @done: Completion used to wait for transfer termination
95 struct completion done; member in struct:meson_i2c
214 complete_all(&i2c->done); meson_i2c_stop()
241 complete_all(&i2c->done); meson_i2c_irq()
272 complete_all(&i2c->done); meson_i2c_irq()
327 reinit_completion(&i2c->done); meson_i2c_xfer_msg()
333 time_left = wait_for_completion_timeout(&i2c->done, time_left); meson_i2c_xfer_msg()
408 init_completion(&i2c->done); meson_i2c_probe()
/linux-4.1.27/drivers/gpu/vga/
H A Dvgaarb.c533 * to be done vga_arbiter_add_pci_device()
860 goto done; vga_arb_read()
873 goto done; vga_arb_read()
886 done: vga_arb_read()
937 goto done; vga_arb_write()
941 goto done; vga_arb_write()
947 goto done; vga_arb_write()
964 goto done; vga_arb_write()
977 goto done; vga_arb_write()
982 goto done; vga_arb_write()
990 goto done; vga_arb_write()
999 goto done; vga_arb_write()
1004 goto done; vga_arb_write()
1009 goto done; vga_arb_write()
1020 goto done; vga_arb_write()
1029 goto done; vga_arb_write()
1034 goto done; vga_arb_write()
1041 goto done; vga_arb_write()
1056 goto done; vga_arb_write()
1059 goto done; vga_arb_write()
1076 goto done; vga_arb_write()
1087 goto done; vga_arb_write()
1097 goto done; vga_arb_write()
1117 goto done; vga_arb_write()
1122 goto done; vga_arb_write()
1132 goto done; vga_arb_write()
1137 goto done; vga_arb_write()
1142 goto done; vga_arb_write()
1148 done: vga_arb_write()
1319 /* Override I/O based detection done by vga_arbiter_add_pci_device() vga_arb_device_init()
/linux-4.1.27/drivers/net/wireless/libertas_tf/
H A Dcmd.c460 goto done; lbtf_allocate_cmd_buffer()
470 goto done; lbtf_allocate_cmd_buffer()
481 done: lbtf_allocate_cmd_buffer()
503 goto done; lbtf_free_cmd_buffer()
518 done: lbtf_free_cmd_buffer()
582 goto done; lbtf_execute_next_command()
602 done: lbtf_execute_next_command()
620 goto done; __lbtf_cmd_async()
630 goto done; __lbtf_cmd_async()
652 done: __lbtf_cmd_async()
681 goto done; __lbtf_cmd()
690 goto done; __lbtf_cmd()
702 done: __lbtf_cmd()
732 goto done; lbtf_process_rx_command()
748 goto done; lbtf_process_rx_command()
753 goto done; lbtf_process_rx_command()
761 goto done; lbtf_process_rx_command()
786 goto done; lbtf_process_rx_command()
803 done: lbtf_process_rx_command()
/linux-4.1.27/drivers/net/usb/
H A Dsmsc75xx.c198 goto done; __smsc75xx_mdio_read()
210 goto done; __smsc75xx_mdio_read()
216 goto done; __smsc75xx_mdio_read()
222 goto done; __smsc75xx_mdio_read()
227 done: __smsc75xx_mdio_read()
245 goto done; __smsc75xx_mdio_write()
252 goto done; __smsc75xx_mdio_write()
264 goto done; __smsc75xx_mdio_write()
270 goto done; __smsc75xx_mdio_write()
273 done: __smsc75xx_mdio_write()
475 goto done; smsc75xx_dataport_write()
481 goto done; smsc75xx_dataport_write()
489 goto done; smsc75xx_dataport_write()
496 goto done; smsc75xx_dataport_write()
502 goto done; smsc75xx_dataport_write()
508 goto done; smsc75xx_dataport_write()
514 goto done; smsc75xx_dataport_write()
518 done: smsc75xx_dataport_write()
1743 goto done; smsc75xx_suspend()
1758 goto done; smsc75xx_suspend()
1766 goto done; smsc75xx_suspend()
1772 goto done; smsc75xx_suspend()
1780 goto done; smsc75xx_suspend()
1784 goto done; smsc75xx_suspend()
1792 goto done; smsc75xx_suspend()
1807 goto done; smsc75xx_suspend()
1817 goto done; smsc75xx_suspend()
1829 goto done; smsc75xx_suspend()
1842 goto done; smsc75xx_suspend()
1855 goto done; smsc75xx_suspend()
1863 goto done; smsc75xx_suspend()
1871 goto done; smsc75xx_suspend()
1878 goto done; smsc75xx_suspend()
1886 goto done; smsc75xx_suspend()
1893 goto done; smsc75xx_suspend()
1901 goto done; smsc75xx_suspend()
1909 goto done; smsc75xx_suspend()
1917 goto done; smsc75xx_suspend()
1926 goto done; smsc75xx_suspend()
1936 goto done; smsc75xx_suspend()
1945 goto done; smsc75xx_suspend()
1954 goto done; smsc75xx_suspend()
1963 goto done; smsc75xx_suspend()
1971 goto done; smsc75xx_suspend()
1980 goto done; smsc75xx_suspend()
1988 goto done; smsc75xx_suspend()
1996 goto done; smsc75xx_suspend()
2004 goto done; smsc75xx_suspend()
2011 done: smsc75xx_suspend()
2109 /* This check is no longer done by usbnet */ smsc75xx_rx_fixup()
H A Dsmsc95xx.c191 goto done; __smsc95xx_mdio_read()
201 goto done; __smsc95xx_mdio_read()
207 goto done; __smsc95xx_mdio_read()
213 goto done; __smsc95xx_mdio_read()
218 done: __smsc95xx_mdio_read()
236 goto done; __smsc95xx_mdio_write()
243 goto done; __smsc95xx_mdio_write()
253 goto done; __smsc95xx_mdio_write()
259 goto done; __smsc95xx_mdio_write()
262 done: __smsc95xx_mdio_write()
1436 goto done; smsc95xx_suspend()
1450 goto done; smsc95xx_suspend()
1456 goto done; smsc95xx_suspend()
1460 goto done; smsc95xx_suspend()
1466 goto done; smsc95xx_suspend()
1469 goto done; smsc95xx_suspend()
1477 goto done; smsc95xx_suspend()
1486 goto done; smsc95xx_suspend()
1503 goto done; smsc95xx_suspend()
1565 goto done; smsc95xx_suspend()
1573 goto done; smsc95xx_suspend()
1579 goto done; smsc95xx_suspend()
1585 goto done; smsc95xx_suspend()
1591 goto done; smsc95xx_suspend()
1597 goto done; smsc95xx_suspend()
1604 goto done; smsc95xx_suspend()
1610 goto done; smsc95xx_suspend()
1616 goto done; smsc95xx_suspend()
1636 goto done; smsc95xx_suspend()
1641 goto done; smsc95xx_suspend()
1651 goto done; smsc95xx_suspend()
1660 done: smsc95xx_suspend()
1740 /* This check is no longer done by usbnet */ smsc95xx_rx_fixup()
/linux-4.1.27/net/bluetooth/rfcomm/
H A Dsock.c351 goto done; rfcomm_sock_bind()
356 goto done; rfcomm_sock_bind()
372 done: rfcomm_sock_bind()
394 goto done; rfcomm_sock_connect()
399 goto done; rfcomm_sock_connect()
415 done: rfcomm_sock_connect()
431 goto done; rfcomm_sock_listen()
436 goto done; rfcomm_sock_listen()
457 goto done; rfcomm_sock_listen()
464 done: rfcomm_sock_listen()
480 goto done; rfcomm_sock_accept()
518 goto done; rfcomm_sock_accept()
524 done: rfcomm_sock_accept()
575 goto done; rfcomm_sock_sendmsg()
612 done: rfcomm_sock_sendmsg()
969 goto done; rfcomm_connect_ind()
974 goto done; rfcomm_connect_ind()
990 done: rfcomm_connect_ind()
/linux-4.1.27/drivers/net/wireless/libertas/
H A Dcmdresp.c77 goto done; lbs_process_command_response()
96 goto done; lbs_process_command_response()
104 goto done; lbs_process_command_response()
115 goto done; lbs_process_command_response()
173 goto done; lbs_process_command_response()
194 goto done; lbs_process_command_response()
212 done: lbs_process_command_response()
/linux-4.1.27/drivers/gpu/drm/nouveau/nvkm/subdev/i2c/
H A Danx9805.c97 goto done; anx9805_aux()
102 goto done; anx9805_aux()
113 done: anx9805_aux()
199 goto done; anx9805_xfer()
211 goto done; anx9805_xfer()
213 goto done; anx9805_xfer()
219 done: anx9805_xfer()
/linux-4.1.27/arch/powerpc/kvm/
H A Dbook3s_pr_papr.c60 goto done; kvmppc_h_pr_enter()
68 goto done; kvmppc_h_pr_enter()
78 done: kvmppc_h_pr_enter()
104 goto done; kvmppc_h_pr_remove()
115 done: kvmppc_h_pr_remove()
221 goto done; kvmppc_h_pr_protect()
240 done: kvmppc_h_pr_protect()
/linux-4.1.27/net/rds/
H A Dtcp_send.c84 int done = 0; rds_tcp_xmit() local
114 done += ret; rds_tcp_xmit()
115 if (hdr_off + done != sizeof(struct rds_header)) rds_tcp_xmit()
132 done += ret; rds_tcp_xmit()
152 if (done == 0) rds_tcp_xmit()
153 done = ret; rds_tcp_xmit()
154 return done; rds_tcp_xmit()
/linux-4.1.27/drivers/misc/
H A Dcs5535-mfgpt.c156 goto done; cs5535_mfgpt_alloc_timer()
167 goto done; cs5535_mfgpt_alloc_timer()
190 goto done; cs5535_mfgpt_alloc_timer()
198 goto done; cs5535_mfgpt_alloc_timer()
204 done: cs5535_mfgpt_alloc_timer()
327 goto done; cs5535_mfgpt_probe()
340 goto done; cs5535_mfgpt_probe()
345 goto done; cs5535_mfgpt_probe()
361 done: cs5535_mfgpt_probe()
/linux-4.1.27/arch/x86/crypto/
H A Dglue_helper.c69 goto done; __glue_ecb_crypt_128bit()
73 done: __glue_ecb_crypt_128bit()
172 goto done; __glue_cbc_decrypt_128bit()
180 goto done; __glue_cbc_decrypt_128bit()
184 done: __glue_cbc_decrypt_128bit()
266 goto done; __glue_ctr_crypt_128bit()
270 done: __glue_ctr_crypt_128bit()
334 goto done; __glue_xts_crypt_128bit()
338 done: __glue_xts_crypt_128bit()
/linux-4.1.27/sound/soc/cirrus/
H A Dep93xx-ac97.c94 * @done: bus ops wait here for an interrupt
100 struct completion done; member in struct:ep93xx_ac97_info
142 if (!wait_for_completion_timeout(&info->done, AC97_TIMEOUT)) { ep93xx_ac97_read()
162 * Writes to the codec need to be done so that slot 2 is filled in ep93xx_ac97_write()
169 if (!wait_for_completion_timeout(&info->done, AC97_TIMEOUT)) ep93xx_ac97_write()
189 if (!wait_for_completion_timeout(&info->done, AC97_TIMEOUT)) ep93xx_ac97_warm_reset()
214 if (!wait_for_completion_timeout(&info->done, AC97_TIMEOUT)) ep93xx_ac97_cold_reset()
241 complete(&info->done); ep93xx_ac97_interrupt()
392 init_completion(&info->done); ep93xx_ac97_probe()
/linux-4.1.27/sound/soc/samsung/
H A Dac97.c37 struct completion done; member in struct:s3c_ac97_info
61 reinit_completion(&s3c_ac97.done); s3c_ac97_activate()
76 if (!wait_for_completion_timeout(&s3c_ac97.done, HZ)) s3c_ac97_activate()
90 reinit_completion(&s3c_ac97.done); s3c_ac97_read()
102 if (!wait_for_completion_timeout(&s3c_ac97.done, HZ)) s3c_ac97_read()
127 reinit_completion(&s3c_ac97.done); s3c_ac97_write()
139 if (!wait_for_completion_timeout(&s3c_ac97.done, HZ)) s3c_ac97_write()
191 complete(&s3c_ac97.done); s3c_ac97_irq()
374 init_completion(&s3c_ac97.done); s3c_ac97_probe()
/linux-4.1.27/drivers/net/fddi/skfp/
H A Dsmttimer.c126 int done = 0 ; timer_done() local
131 while (tm && !done) { timer_done()
141 done = 1 ; timer_done()
/linux-4.1.27/drivers/bluetooth/
H A Dbtmrvl_sdio.c361 goto done; btmrvl_sdio_download_helper()
377 goto done; btmrvl_sdio_download_helper()
393 goto done; btmrvl_sdio_download_helper()
418 goto done; btmrvl_sdio_download_helper()
432 goto done; btmrvl_sdio_download_helper()
437 done: btmrvl_sdio_download_helper()
461 goto done; btmrvl_sdio_download_fw_w_helper()
475 goto done; btmrvl_sdio_download_fw_w_helper()
489 goto done; btmrvl_sdio_download_fw_w_helper()
505 goto done; btmrvl_sdio_download_fw_w_helper()
515 goto done; btmrvl_sdio_download_fw_w_helper()
531 goto done; btmrvl_sdio_download_fw_w_helper()
542 goto done; btmrvl_sdio_download_fw_w_helper()
580 done: btmrvl_sdio_download_fw_w_helper()
1050 goto done; btmrvl_sdio_download_fw()
1063 goto done; btmrvl_sdio_download_fw()
1070 goto done; btmrvl_sdio_download_fw()
1087 done: btmrvl_sdio_download_fw()
1248 goto done; btmrvl_sdio_dump_firmware()
1256 goto done; btmrvl_sdio_dump_firmware()
1265 goto done; btmrvl_sdio_dump_firmware()
1273 goto done; btmrvl_sdio_dump_firmware()
1289 goto done; btmrvl_sdio_dump_firmware()
1308 goto done; btmrvl_sdio_dump_firmware()
1316 goto done; btmrvl_sdio_dump_firmware()
1327 BT_INFO("%s done: size=0x%tx", btmrvl_sdio_dump_firmware()
1337 done: btmrvl_sdio_dump_firmware()
/linux-4.1.27/drivers/video/backlight/
H A Dpandora_bl.c57 goto done; pandora_backlight_update_status()
66 goto done; pandora_backlight_update_status()
94 done: pandora_backlight_update_status()
/linux-4.1.27/net/ipv6/
H A Dip6_flowlabel.c218 * done in ipv6_flowlabel_opt - sock is locked, so new entry fl_intern()
365 goto done; fl_create()
370 goto done; fl_create()
380 goto done; fl_create()
386 goto done; fl_create()
395 goto done; fl_create()
398 goto done; fl_create()
409 goto done; fl_create()
415 goto done; fl_create()
431 goto done; fl_create()
435 done: fl_create()
611 goto done; for_each_sk_fl_rcu()
649 goto done;
654 goto done;
658 goto done;
662 goto done;
682 done:
/linux-4.1.27/kernel/power/
H A Dswap.c477 printk(KERN_INFO "PM: Image saving done.\n"); save_image()
491 wait_queue_head_t done; /* crc update done */ member in struct:crc_data
511 wake_up(&d->done); crc32_threadfn()
520 wake_up(&d->done); crc32_threadfn()
533 wait_queue_head_t done; /* compression done */ member in struct:cmp_data
555 wake_up(&d->done); lzo_compress_threadfn()
564 wake_up(&d->done); lzo_compress_threadfn()
628 init_waitqueue_head(&data[thr].done); save_image_lzo()
646 init_waitqueue_head(&crc->done); save_image_lzo()
665 * been done. We don't want to run out of pages when writing. save_image_lzo()
716 wait_event(data[thr].done, save_image_lzo()
757 wait_event(crc->done, atomic_read(&crc->stop)); save_image_lzo()
767 printk(KERN_INFO "PM: Image saving done.\n"); save_image_lzo()
1004 printk(KERN_INFO "PM: Image loading done.\n"); load_image()
1022 wait_queue_head_t done; /* decompression done */ member in struct:dec_data
1043 wake_up(&d->done); lzo_decompress_threadfn()
1052 wake_up(&d->done); lzo_decompress_threadfn()
1119 init_waitqueue_head(&data[thr].done); load_image_lzo()
1137 init_waitqueue_head(&crc->done); load_image_lzo()
1239 wait_event(crc->done, atomic_read(&crc->stop)); load_image_lzo()
1294 wait_event(data[thr].done, load_image_lzo()
1344 wait_event(crc->done, atomic_read(&crc->stop)); load_image_lzo()
1349 printk(KERN_INFO "PM: Image loading done.\n"); load_image_lzo()
H A Dprocess.c138 pr_cont("done."); freeze_processes()
173 pr_cont("done."); freeze_kernel_threads()
215 pr_cont("done.\n");
236 pr_cont("done.\n");
/linux-4.1.27/drivers/misc/vmw_vmci/
H A Dvmci_resource.h40 struct completion done; member in struct:vmci_resource
/linux-4.1.27/drivers/media/pci/ngene/
H A Dngene-i2c.c132 goto done; ngene_i2c_master_xfer()
137 goto done; ngene_i2c_master_xfer()
141 goto done; ngene_i2c_master_xfer()
146 done: ngene_i2c_master_xfer()
/linux-4.1.27/drivers/net/wireless/mwifiex/
H A Ddebugfs.c462 goto done; mwifiex_regrdwr_write()
469 goto done; mwifiex_regrdwr_write()
476 done: mwifiex_regrdwr_write()
505 goto done; mwifiex_regrdwr_read()
518 goto done; mwifiex_regrdwr_read()
525 goto done; mwifiex_regrdwr_read()
533 done: mwifiex_regrdwr_read()
563 goto done; mwifiex_rdeeprom_write()
570 goto done; mwifiex_rdeeprom_write()
576 done: mwifiex_rdeeprom_write()
605 goto done; mwifiex_rdeeprom_read()
621 done: mwifiex_rdeeprom_read()
649 goto done; mwifiex_hscfg_write()
659 goto done; mwifiex_hscfg_write()
670 goto done; mwifiex_hscfg_write()
686 done: mwifiex_hscfg_write()
/linux-4.1.27/drivers/cpufreq/
H A Darm_big_little.h30 * This must set opp table for cpu_dev in a similar way as done by
/linux-4.1.27/arch/x86/kernel/cpu/
H A Dmkcapflags.sh45 done
/linux-4.1.27/arch/x86/kernel/
H A Dtce_64.c118 goto done; tce_table_setparms()
131 done: tce_table_setparms()
150 goto done; build_tce_table()
165 done: build_tce_table()
H A Dtracepoint.c15 /* No need to be aligned, but done to keep all IDTs defined the same way. */
/linux-4.1.27/arch/sparc/include/asm/
H A Dpil.h13 * need to be done if the XCALL arrived while %pil==PIL_NORMAL_MAX.
/linux-4.1.27/arch/tile/include/asm/
H A Dedac.h23 * These is nothing to be done here because CE is atomic_scrub()
/linux-4.1.27/drivers/gpu/drm/radeon/
H A Datombios_i2c.c59 goto done; radeon_process_i2c_ch()
74 goto done; radeon_process_i2c_ch()
92 goto done; radeon_process_i2c_ch()
98 done: radeon_process_i2c_ch()
H A Dradeon_dp_auxch.c163 goto done; radeon_dp_aux_transfer_native()
169 goto done; radeon_dp_aux_transfer_native()
174 goto done; radeon_dp_aux_transfer_native()
198 done: radeon_dp_aux_transfer_native()
/linux-4.1.27/drivers/gpu/drm/via/
H A Dvia_dmablit.h122 #define VIA_DMA_DPR_DDIE (1<<2) /* descriptor done interrupt enable */
127 #define VIA_DMA_MR_TDIE (1<<1) /* transfer done interrupt enable */
134 #define VIA_DMA_CSR_TD (1<<3) /* transfer done */
135 #define VIA_DMA_CSR_DD (1<<4) /* descriptor done */
/linux-4.1.27/fs/ufs/
H A Dsymlink.c4 * Only fast symlinks left here - the rest is done by generic code. AV, 1999
/linux-4.1.27/include/net/netfilter/
H A Dnf_tables_core.h18 * something smaller than the full u32, therefore a cpu_to_le32 is done.
/linux-4.1.27/arch/mips/include/asm/
H A Dvga.h27 * <linux/vt_buffer.h> has already done the right job for us.
/linux-4.1.27/arch/mips/kernel/
H A Drelocate_kernel.S33 beqz s2, done
49 /* done page */
52 b done
71 done: label
/linux-4.1.27/arch/parisc/include/uapi/asm/
H A Dswab.h50 ** OR %0 | %1 -> 76543210 into %0 (all done!)
/linux-4.1.27/arch/avr32/include/asm/
H A Dcache.h11 * cache before the transfer is done, causing old data to be seen by
/linux-4.1.27/arch/blackfin/lib/
H A Dstrncmp.S36 if ! cc jump 4f; /* yes, all done */
/linux-4.1.27/arch/cris/kernel/
H A Dsys_cris.c8 * versions are done in the most "normal" way possible.
/linux-4.1.27/arch/ia64/kernel/
H A Dinit_task.c26 * handled. This is done by having a special ".data..init_task" section...
/linux-4.1.27/arch/m32r/kernel/
H A Dirq.c15 * done by the generic kernel/irq/ code and in the
/linux-4.1.27/arch/arm/mach-s3c64xx/
H A Dmach-real6410.c251 int done; member in struct:real6410_features_t
261 features->done = 0; real6410_parse_features()
269 if (features->done & FEATURE_SCREEN) { real6410_parse_features()
281 features->done |= FEATURE_SCREEN; real6410_parse_features()
/linux-4.1.27/arch/arm/include/debug/
H A Dimx.S46 beq 1002b @ wait until transmit done
H A Dvf.S33 beq 1001b @ wait until transmit done
/linux-4.1.27/arch/arc/include/uapi/asm/
H A Dpage.h20 * done this way (instead of under CONFIG_ARC_PAGE_SIZE_8K) because adhoc
/linux-4.1.27/arch/arm/boot/compressed/
H A Dhead-xscale.S19 @ This is done by fetching through currently executed
/linux-4.1.27/fs/ext2/
H A Dsymlink.c4 * Only fast symlinks left here - the rest is done by generic code. AV, 1999
/linux-4.1.27/fs/ext3/
H A Dsymlink.c4 * Only fast symlinks left here - the rest is done by generic code. AV, 1999
/linux-4.1.27/scripts/kconfig/
H A Dmerge_config.sh78 done
118 done
120 done
156 done
/linux-4.1.27/drivers/net/wireless/ath/ath6kl/
H A Dbmi.c29 ath6kl_dbg(ATH6KL_DBG_BMI, "bmi done skipped\n"); ath6kl_bmi_done()
37 ath6kl_err("Unable to send bmi done: %d\n", ret); ath6kl_bmi_done()
51 ath6kl_err("bmi done sent already, cmd %d disallowed\n", cid); ath6kl_bmi_get_target_info()
123 ath6kl_err("bmi done sent already, cmd %d disallowed\n", cid); ath6kl_bmi_read()
181 ath6kl_err("bmi done sent already, cmd %d disallowed\n", cid); ath6kl_bmi_write()
245 ath6kl_err("bmi done sent already, cmd %d disallowed\n", cid); ath6kl_bmi_execute()
292 ath6kl_err("bmi done sent already, cmd %d disallowed\n", cid); ath6kl_bmi_set_app_start()
328 ath6kl_err("bmi done sent already, cmd %d disallowed\n", cid); ath6kl_bmi_reg_read()
371 ath6kl_err("bmi done sent already, cmd %d disallowed\n", cid); ath6kl_bmi_reg_write()
413 ath6kl_err("bmi done sent already, cmd %d disallowed\n", cid); ath6kl_bmi_lz_data()
462 ath6kl_err("bmi done sent already, cmd %d disallowed\n", cid); ath6kl_bmi_lz_stream_start()
/linux-4.1.27/drivers/net/can/c_can/
H A Dc_can_platform.c103 mask = 1 << raminit->bits.start | 1 << raminit->bits.done; c_can_hw_raminit_syscon()
125 ctrl |= 1 << raminit->bits.done; c_can_hw_raminit_syscon()
128 ctrl &= ~(1 << raminit->bits.done); c_can_hw_raminit_syscon()
136 ctrl |= 1 << raminit->bits.done; c_can_hw_raminit_syscon()
201 [0] = { .start = 3, .done = 1, },
202 [1] = { .start = 5, .done = 2, },
213 [0] = { .start = 0, .done = 8, },
214 [1] = { .start = 1, .done = 9, },
/linux-4.1.27/drivers/scsi/aacraid/
H A Ddpcsup.c130 if (!fib->done) { aac_response_normal()
131 fib->done = 1; aac_response_normal()
141 if (fib->done == 2) { aac_response_normal()
143 fib->done = 0; aac_response_normal()
403 if (!fib->done) { aac_intr_normal()
404 fib->done = 1; aac_intr_normal()
414 if (fib->done == 2) { aac_intr_normal()
416 fib->done = 0; aac_intr_normal()
/linux-4.1.27/drivers/input/serio/
H A Dhp_sdc_mlc.c98 goto done; hp_sdc_mlc_isr()
101 goto done; hp_sdc_mlc_isr()
103 goto done; hp_sdc_mlc_isr()
133 done: hp_sdc_mlc_isr()
173 goto done; hp_sdc_mlc_in()
178 done: hp_sdc_mlc_in()
203 goto done; hp_sdc_mlc_cts()
219 done: hp_sdc_mlc_cts()
/linux-4.1.27/drivers/usb/renesas_usbhs/
H A Dfifo.h57 void (*done)(struct usbhs_priv *priv, member in struct:usbhs_pkt
103 void (*done)(struct usbhs_priv *priv,
/linux-4.1.27/fs/xfs/
H A Dxfs_extfree_item.h39 * "extent free done" log item described below.
55 * This is the "extent free done" log item. It is used to log
/linux-4.1.27/include/media/
H A Dv4l2-async.h70 * @done: list of struct v4l2_subdev, already probed
81 struct list_head done; member in struct:v4l2_async_notifier
/linux-4.1.27/arch/sh/include/asm/
H A Dmutex-llsc.h12 * Attempting to lock a mutex on SH4A is done like in ARMv6+ architecure.
78 * If the unlock was done on a contended lock, or if the unlock simply fails

Completed in 10756 milliseconds

1234567891011>>