/Linux-v4.19/drivers/staging/erofs/ |
D | xattr.c | 25 static inline void xattr_iter_end(struct xattr_iter *it, bool atomic) in xattr_iter_end() argument 29 kunmap(it->page); in xattr_iter_end() 31 kunmap_atomic(it->kaddr); in xattr_iter_end() 32 unlock_page(it->page); in xattr_iter_end() 33 put_page(it->page); in xattr_iter_end() 38 struct xattr_iter it; in init_inode_xattrs() local 52 it.blkaddr = erofs_blknr(iloc(sbi, vi->nid) + vi->inode_isize); in init_inode_xattrs() 53 it.ofs = erofs_blkoff(iloc(sbi, vi->nid) + vi->inode_isize); in init_inode_xattrs() 55 it.page = erofs_get_inline_page(inode, it.blkaddr); in init_inode_xattrs() 56 BUG_ON(IS_ERR(it.page)); in init_inode_xattrs() [all …]
|
/Linux-v4.19/drivers/gpu/drm/nouveau/nvkm/subdev/mmu/ |
D | vmm.c | 98 nvkm_vmm_trace(struct nvkm_vmm_iter *it, char *buf) in nvkm_vmm_trace() argument 101 for (lvl = it->max; lvl >= 0; lvl--) { in nvkm_vmm_trace() 102 if (lvl >= it->lvl) in nvkm_vmm_trace() 103 buf += sprintf(buf, "%05x:", it->pte[lvl]); in nvkm_vmm_trace() 120 nvkm_vmm_flush_mark(struct nvkm_vmm_iter *it) in nvkm_vmm_flush_mark() argument 122 it->flush = min(it->flush, it->max - it->lvl); in nvkm_vmm_flush_mark() 126 nvkm_vmm_flush(struct nvkm_vmm_iter *it) in nvkm_vmm_flush() argument 128 if (it->flush != NVKM_VMM_LEVELS_MAX) { in nvkm_vmm_flush() 129 if (it->vmm->func->flush) { in nvkm_vmm_flush() 130 TRA(it, "flush: %d", it->flush); in nvkm_vmm_flush() [all …]
|
/Linux-v4.19/include/linux/ceph/ |
D | messenger.h | 108 #define __ceph_bio_iter_advance_step(it, n, STEP) do { \ argument 112 BUG_ON(!(it)->iter.bi_size); \ 113 __cur_n = min((it)->iter.bi_size, __n); \ 115 bio_advance_iter((it)->bio, &(it)->iter, __cur_n); \ 116 if (!(it)->iter.bi_size && (it)->bio->bi_next) { \ 118 (it)->bio = (it)->bio->bi_next; \ 119 (it)->iter = (it)->bio->bi_iter; \ 128 #define ceph_bio_iter_advance(it, n) \ argument 129 __ceph_bio_iter_advance_step(it, n, 0) 134 #define ceph_bio_iter_advance_step(it, n, BVEC_STEP) \ argument [all …]
|
/Linux-v4.19/drivers/gpu/drm/amd/amdgpu/ |
D | amdgpu_mn.c | 101 struct interval_tree_node it; member 123 &amn->objects.rb_root, it.rb) { in amdgpu_mn_destroy() 255 struct interval_tree_node *it; in amdgpu_mn_invalidate_range_start_gfx() local 266 it = interval_tree_iter_first(&amn->objects, start, end); in amdgpu_mn_invalidate_range_start_gfx() 267 while (it) { in amdgpu_mn_invalidate_range_start_gfx() 275 node = container_of(it, struct amdgpu_mn_node, it); in amdgpu_mn_invalidate_range_start_gfx() 276 it = interval_tree_iter_next(it, start, end); in amdgpu_mn_invalidate_range_start_gfx() 303 struct interval_tree_node *it; in amdgpu_mn_invalidate_range_start_hsa() local 311 it = interval_tree_iter_first(&amn->objects, start, end); in amdgpu_mn_invalidate_range_start_hsa() 312 while (it) { in amdgpu_mn_invalidate_range_start_hsa() [all …]
|
/Linux-v4.19/drivers/gpu/drm/radeon/ |
D | radeon_mn.c | 57 struct interval_tree_node it; member 79 &rmn->objects.rb_root, it.rb) { in radeon_mn_destroy() 81 interval_tree_remove(&node->it, &rmn->objects); in radeon_mn_destroy() 129 struct interval_tree_node *it; in radeon_mn_invalidate_range_start() local 143 it = interval_tree_iter_first(&rmn->objects, start, end); in radeon_mn_invalidate_range_start() 144 while (it) { in radeon_mn_invalidate_range_start() 154 node = container_of(it, struct radeon_mn_node, it); in radeon_mn_invalidate_range_start() 155 it = interval_tree_iter_next(it, start, end); in radeon_mn_invalidate_range_start() 263 struct interval_tree_node *it; in radeon_mn_register() local 273 while ((it = interval_tree_iter_first(&rmn->objects, addr, end))) { in radeon_mn_register() [all …]
|
D | radeon_vm.c | 331 bo_va->it.start = 0; in radeon_vm_bo_add() 332 bo_va->it.last = 0; in radeon_vm_bo_add() 481 struct interval_tree_node *it; in radeon_vm_bo_set_addr() local 482 it = interval_tree_iter_first(&vm->va, soffset, eoffset); in radeon_vm_bo_set_addr() 483 if (it && it != &bo_va->it) { in radeon_vm_bo_set_addr() 485 tmp = container_of(it, struct radeon_bo_va, it); in radeon_vm_bo_set_addr() 489 soffset, tmp->bo, tmp->it.start, tmp->it.last); in radeon_vm_bo_set_addr() 496 if (bo_va->it.start || bo_va->it.last) { in radeon_vm_bo_set_addr() 505 tmp->it.start = bo_va->it.start; in radeon_vm_bo_set_addr() 506 tmp->it.last = bo_va->it.last; in radeon_vm_bo_set_addr() [all …]
|
/Linux-v4.19/kernel/time/ |
D | posix-cpu-timers.c | 70 if (timer->it.cpu.incr == 0) in bump_cpu_timer() 73 if (now < timer->it.cpu.expires) in bump_cpu_timer() 76 incr = timer->it.cpu.incr; in bump_cpu_timer() 77 delta = now + incr - timer->it.cpu.expires; in bump_cpu_timer() 87 timer->it.cpu.expires += incr; in bump_cpu_timer() 334 INIT_LIST_HEAD(&new_timer->it.cpu.entry); in posix_cpu_timer_create() 354 new_timer->it.cpu.task = p; in posix_cpu_timer_create() 376 struct task_struct *p = timer->it.cpu.task; in posix_cpu_timer_del() 390 WARN_ON_ONCE(!list_empty(&timer->it.cpu.entry)); in posix_cpu_timer_del() 392 if (timer->it.cpu.firing) in posix_cpu_timer_del() [all …]
|
D | itimer.c | 53 struct cpu_itimer *it = &tsk->signal->it[clock_id]; in get_cpu_itimer() local 57 val = it->expires; in get_cpu_itimer() 58 interval = it->incr; in get_cpu_itimer() 123 struct compat_itimerval __user *, it) in COMPAT_SYSCALL_DEFINE2() 128 if (!error && put_compat_itimerval(it, &kit)) in COMPAT_SYSCALL_DEFINE2() 155 struct cpu_itimer *it = &tsk->signal->it[clock_id]; in set_cpu_itimer() local 166 oval = it->expires; in set_cpu_itimer() 167 ointerval = it->incr; in set_cpu_itimer() 173 it->expires = nval; in set_cpu_itimer() 174 it->incr = ninterval; in set_cpu_itimer()
|
/Linux-v4.19/drivers/staging/speakup/ |
D | Kconfig | 7 This is the Speakup screen reader. Think of it as a 9 kernel, it can speak everything on the text console from 48 synthesizer. You can say y to build it into the kernel, 49 or m to build it as a module. See the configuration 57 synthesizer. You can say y to build it into the kernel, 58 or m to build it as a module. See the configuration 65 synthesizer. You can say y to build it into the kernel, 66 or m to build it as a module. See the configuration 73 You can say y to build it into the kernel, or m to 74 build it as a module. See the configuration help on the [all …]
|
/Linux-v4.19/drivers/net/wireless/realtek/rtlwifi/ |
D | Kconfig | 23 If you choose to build it as a module, it will be called rtl8192ce 34 If you choose to build it as a module, it will be called rtl8192se 45 If you choose to build it as a module, it will be called rtl8192de 58 If you choose to build it as a module, it will be called rtl8723ae 71 If you choose to build it as a module, it will be called rtl8723be 82 If you choose to build it as a module, it will be called rtl8188ee 94 If you choose to build it as a module, it will be called rtl8192ee 106 If you choose to build it as a module, it will be called rtl8821ae 118 If you choose to build it as a module, it will be called rtl8192cu
|
/Linux-v4.19/drivers/of/ |
D | base.c | 1180 int of_phandle_iterator_init(struct of_phandle_iterator *it, in of_phandle_iterator_init() argument 1189 memset(it, 0, sizeof(*it)); in of_phandle_iterator_init() 1195 it->cells_name = cells_name; in of_phandle_iterator_init() 1196 it->cell_count = cell_count; in of_phandle_iterator_init() 1197 it->parent = np; in of_phandle_iterator_init() 1198 it->list_end = list + size / sizeof(*list); in of_phandle_iterator_init() 1199 it->phandle_end = list; in of_phandle_iterator_init() 1200 it->cur = list; in of_phandle_iterator_init() 1206 int of_phandle_iterator_next(struct of_phandle_iterator *it) in of_phandle_iterator_next() argument 1210 if (it->node) { in of_phandle_iterator_next() [all …]
|
/Linux-v4.19/Documentation/filesystems/ |
D | hpfs.txt | 9 is taken from it 16 Set owner/group/mode for files that do not have it specified in extended 25 - there is a list of text extensions (I thing it's better to not convert 27 change it in the source. Original readonly HPFS contained some strange 28 heuristic algorithm that I removed. I thing it's danger to let the 34 danger. I tried to write it so that it won't crash if check=normal on 36 used for debugging (for example it checks if file is allocated in 37 bitmaps when accessing it). 41 When to mark filesystem dirty so that OS/2 checks it. 63 access it under names 'a.', 'a..', 'a . . . ' etc. [all …]
|
D | porting | 51 informative error value to report). Call it foo_fill_super(). Now declare 80 it by internal locking (most of filesystems couldn't care less) - you 88 and ->readdir() are called without BKL now. Grab it on entry, drop upon return 98 individual fs sb_op functions. If you don't need it, remove it. 104 free to drop it... 116 an existing filesystem, set it according to ->fs_flags: 120 FS_LITTER is gone - just remove it from fs_flags. 126 went in - and hadn't been documented ;-/). Just remove it from fs_flags 144 Briefly it allows for the definition of decode_fh and encode_fh operations 175 When the inode has been created by iget5_locked(), it will be returned with the [all …]
|
/Linux-v4.19/arch/s390/kernel/ |
D | relocate_kernel.S | 36 tml %r5,0x1 # is it a destination page? 39 nill %r6,0xf000 # mask it out and... 42 tml %r5,0x2 # is it a indirection page? 45 lgr %r2,%r5 # move it into the right register, 48 tml %r5,0x4 # is it the done indicator? 49 je .source_test # NO! Well, then it should be the source indicator... 50 j .done # ok, lets finish it here... 52 tml %r5,0x8 # it should be a source indicator... 53 je .base # NO, ignore it...
|
/Linux-v4.19/drivers/staging/comedi/ |
D | range.c | 51 struct comedi_rangeinfo it; in do_rangeinfo_ioctl() local 56 if (copy_from_user(&it, arg, sizeof(struct comedi_rangeinfo))) in do_rangeinfo_ioctl() 58 subd = (it.range_type >> 24) & 0xf; in do_rangeinfo_ioctl() 59 chan = (it.range_type >> 16) & 0xff; in do_rangeinfo_ioctl() 76 if (RANGE_LENGTH(it.range_type) != lr->length) { in do_rangeinfo_ioctl() 79 RANGE_LENGTH(it.range_type), in do_rangeinfo_ioctl() 80 lr->length, it.range_type); in do_rangeinfo_ioctl() 84 if (copy_to_user(it.range_ptr, lr->range, in do_rangeinfo_ioctl()
|
/Linux-v4.19/drivers/net/wireless/marvell/mwifiex/ |
D | Kconfig | 8 If you choose to build it as a module, it will be called 20 If you choose to build it as a module, it will be called 32 If you choose to build it as a module, it will be called 43 If you choose to build it as a module, it will be called
|
/Linux-v4.19/drivers/net/wireless/ath/ath6kl/ |
D | Kconfig | 9 If you choose to build it as a module, it will be called 20 choose to build it as a module, it will be called ath6kl_sdio. 30 Atheros AR6004 chipset and chipsets based on it running over 31 USB. If you choose to build it as a module, it will be 42 If unsure, say Y to make it easier to debug problems. 54 If unsure, say Y to make it easier to debug problems. 61 Enabling this makes it possible to change the regdomain in
|
/Linux-v4.19/Documentation/media/uapi/dvb/ |
D | frontend-stat-properties.rst | 39 frontend, but it was not possible to collect it (could be a 63 - ``FE_SCALE_NOT_AVAILABLE`` - it failed to measure it, or the 82 - ``FE_SCALE_NOT_AVAILABLE`` - it failed to measure it, or the 103 In order to get the BER (Bit Error Rate) measurement, it should be 108 bit count measurements. The frontend may reset it when a 113 - ``FE_SCALE_NOT_AVAILABLE`` - it failed to measure it, or the 136 bit count measurements. The frontend may reset it when a 141 - ``FE_SCALE_NOT_AVAILABLE`` - it failed to measure it, or the 160 In order to get the BER (Bit Error Rate) measurement, it should be 165 bit count measurements. The frontend may reset it when a [all …]
|
/Linux-v4.19/Documentation/ABI/testing/ |
D | sysfs-c2port | 3 Contact: Rodolfo Giometti <giometti@linux.it> 11 Contact: Rodolfo Giometti <giometti@linux.it> 19 Contact: Rodolfo Giometti <giometti@linux.it> 27 Contact: Rodolfo Giometti <giometti@linux.it> 34 Contact: Rodolfo Giometti <giometti@linux.it> 42 Contact: Rodolfo Giometti <giometti@linux.it> 49 Contact: Rodolfo Giometti <giometti@linux.it> 56 Contact: Rodolfo Giometti <giometti@linux.it> 63 Contact: Rodolfo Giometti <giometti@linux.it> 71 Contact: Rodolfo Giometti <giometti@linux.it> [all …]
|
D | sysfs-platform-ts5500 | 6 Indicates the presence of an A/D Converter. If it is present, 7 it will display "1", otherwise "0". 14 Indicates the presence of an external reset. If it is present, 15 it will display "1", otherwise "0". 45 Indicates the presence of the RS485 option. If it is present, 46 it will display "1", otherwise "0". 53 Indicates the presence of the SRAM option. If it is present, 54 it will display "1", otherwise "0".
|
/Linux-v4.19/net/ipv4/ |
D | ipmr_base.c | 148 struct mr_mfc_iter *it, loff_t pos) in mr_mfc_seq_idx() argument 150 struct mr_table *mrt = it->mrt; in mr_mfc_seq_idx() 154 it->cache = &mrt->mfc_cache_list; in mr_mfc_seq_idx() 160 spin_lock_bh(it->lock); in mr_mfc_seq_idx() 161 it->cache = &mrt->mfc_unres_queue; in mr_mfc_seq_idx() 162 list_for_each_entry(mfc, it->cache, list) in mr_mfc_seq_idx() 165 spin_unlock_bh(it->lock); in mr_mfc_seq_idx() 167 it->cache = NULL; in mr_mfc_seq_idx() 175 struct mr_mfc_iter *it = seq->private; in mr_mfc_seq_next() local 177 struct mr_table *mrt = it->mrt; in mr_mfc_seq_next() [all …]
|
/Linux-v4.19/drivers/staging/iio/Documentation/ |
D | sysfs-bus-iio-light | 6 it comes back in SI units, it should also include _input else it 7 should include _raw to signify it is not in SI units. 26 value is returned in SI units, it should also include _input 27 but if it is not, then it should include _raw. 36 value is not in SI units, then it should include _raw. 68 value is not in SI units (irradiance, uW/mm^2), then it should 76 light sensor. If it comes back in SI units, it should also 77 include _input else it should include _raw to signify it is not
|
/Linux-v4.19/Documentation/process/ |
D | management-style.rst | 13 to do with reality. It started as a lark, but that doesn't mean that it 16 Btw, when talking about "kernel manager", it's all about the technical 23 People", and NOT read it. Burn it, it's a great symbolic gesture. 26 making it painfully obvious to the questioner that we don't have a clue 38 manager must be to make it. That's very deep and obvious, but it's not 75 a kernel manager have huge fiscal responsibility **anyway**, it's usually 82 you made a year ago wasn't a big decision after all, since it could be 88 - admitting you were an idiot is harder than it looks. We all like to 94 deleting it, you may have irrevocably lost the trust of that 103 your mind, and make people very **aware** of that. And it's much easier [all …]
|
/Linux-v4.19/drivers/staging/comedi/drivers/ |
D | rti800.c | 253 static int rti800_attach(struct comedi_device *dev, struct comedi_devconfig *it) in rti800_attach() argument 260 ret = comedi_request_region(dev, it->options[0], 0x10); in rti800_attach() 272 devpriv->adc_2comp = (it->options[4] == 0); in rti800_attach() 273 devpriv->dac_2comp[0] = (it->options[6] == 0); in rti800_attach() 274 devpriv->dac_2comp[1] = (it->options[8] == 0); in rti800_attach() 286 s->n_chan = (it->options[2] ? 16 : 8); in rti800_attach() 289 s->range_table = (it->options[3] < ARRAY_SIZE(rti800_ai_ranges)) in rti800_attach() 290 ? rti800_ai_ranges[it->options[3]] in rti800_attach() 302 (it->options[5] < ARRAY_SIZE(rti800_ao_ranges)) in rti800_attach() 303 ? rti800_ao_ranges[it->options[5]] in rti800_attach() [all …]
|
/Linux-v4.19/kernel/cgroup/ |
D | freezer.c | 248 struct css_task_iter it; in update_if_frozen() local 271 css_task_iter_start(css, 0, &it); in update_if_frozen() 273 while ((task = css_task_iter_next(&it))) { in update_if_frozen() 288 css_task_iter_end(&it); in update_if_frozen() 320 struct css_task_iter it; in freeze_cgroup() local 323 css_task_iter_start(&freezer->css, 0, &it); in freeze_cgroup() 324 while ((task = css_task_iter_next(&it))) in freeze_cgroup() 326 css_task_iter_end(&it); in freeze_cgroup() 331 struct css_task_iter it; in unfreeze_cgroup() local 334 css_task_iter_start(&freezer->css, 0, &it); in unfreeze_cgroup() [all …]
|