Home
last modified time | relevance | path

Searched refs:it (Results 1 – 25 of 2730) sorted by relevance

12345678910>>...110

/linux-6.3-rc2/fs/erofs/
A Dxattr.c99 it.kaddr = erofs_read_metabuf(&it.buf, sb, ++it.blkaddr, in init_inode_xattrs()
146 it->kaddr = erofs_read_metabuf(&it->buf, it->sb, it->blkaddr, in xattr_iter_fixup()
271 op->value(it, processed, it->kaddr + it->ofs, slice); in xattr_foreach()
364 it->it.kaddr = erofs_read_metabuf(&it->it.buf, sb, blkaddr, in shared_getxattr()
366 if (IS_ERR(it->it.kaddr)) in shared_getxattr()
368 it->it.blkaddr = blkaddr; in shared_getxattr()
412 it.it.sb = inode->i_sb; in erofs_getxattr()
576 it->it.kaddr = erofs_read_metabuf(&it->it.buf, sb, blkaddr, in shared_listxattr()
578 if (IS_ERR(it->it.kaddr)) in shared_listxattr()
580 it->it.blkaddr = blkaddr; in shared_listxattr()
[all …]
/linux-6.3-rc2/rust/macros/
A Dhelpers.rs5 pub(crate) fn try_ident(it: &mut token_stream::IntoIter) -> Option<String> { in try_ident()
6 if let Some(TokenTree::Ident(ident)) = it.next() { in try_ident()
14 if let Some(TokenTree::Literal(literal)) = it.next() { in try_literal()
22 try_literal(it).and_then(|string| { in try_string()
37 pub(crate) fn expect_ident(it: &mut token_stream::IntoIter) -> String { in expect_ident()
38 try_ident(it).expect("Expected Ident") in expect_ident()
41 pub(crate) fn expect_punct(it: &mut token_stream::IntoIter) -> char { in expect_punct()
50 try_string(it).expect("Expected string") in expect_string()
54 let string = try_string(it).expect("Expected string"); in expect_string_ascii()
59 pub(crate) fn expect_end(it: &mut token_stream::IntoIter) { in expect_end()
[all …]
A Dmodule.rs85 fn parse(it: &mut token_stream::IntoIter) -> Self { in parse()
94 let key = match it.next() { in parse()
107 assert_eq!(expect_punct(it), ':'); in parse()
110 "type" => info.type_ = expect_ident(it), in parse()
111 "name" => info.name = expect_string_ascii(it), in parse()
112 "author" => info.author = Some(expect_string(it)), in parse()
114 "license" => info.license = expect_string_ascii(it), in parse()
122 assert_eq!(expect_punct(it), ','); in parse()
127 expect_end(it); in parse()
154 let mut it = ts.into_iter(); in module() variables
[all …]
A Dconcat_idents.rs7 fn expect_ident(it: &mut token_stream::IntoIter) -> Ident { in expect_ident()
8 if let Some(TokenTree::Ident(ident)) = it.next() { in expect_ident()
16 let mut it = ts.into_iter(); in concat_idents() variables
17 let a = expect_ident(&mut it); in concat_idents()
18 assert_eq!(expect_punct(&mut it), ','); in concat_idents()
19 let b = expect_ident(&mut it); in concat_idents()
20 assert!(it.next().is_none(), "only two idents can be concatenated"); in concat_idents()
/linux-6.3-rc2/fs/cifs/
A Ddfs_cache.h50 struct dfs_cache_tgt_iterator *it) in dfs_cache_get_next_tgt() argument
52 if (!tl || list_empty(&tl->tl_list) || !it || in dfs_cache_get_next_tgt()
53 list_is_last(&it->it_list, &tl->tl_list)) in dfs_cache_get_next_tgt()
55 return list_next_entry(it, it_list); in dfs_cache_get_next_tgt()
70 struct dfs_cache_tgt_iterator *it, *nit; in dfs_cache_free_tgts() local
74 list_for_each_entry_safe(it, nit, &tl->tl_list, it_list) { in dfs_cache_free_tgts()
75 list_del(&it->it_list); in dfs_cache_free_tgts()
76 kfree(it->it_name); in dfs_cache_free_tgts()
77 kfree(it); in dfs_cache_free_tgts()
83 dfs_cache_get_tgt_name(const struct dfs_cache_tgt_iterator *it) in dfs_cache_get_tgt_name() argument
[all …]
/linux-6.3-rc2/drivers/gpu/drm/nouveau/nvkm/subdev/mmu/
A Dvmm.c122 it->flush = min(it->flush, it->max - it->lvl); in nvkm_vmm_flush_mark()
131 it->vmm->func->flush(it->vmm, it->flush); in nvkm_vmm_flush()
478 it->desc[it->lvl].func->pde(it->vmm, pgd, pdei); in nvkm_vmm_ref_hwpt()
518 for (it.lvl = 0; desc[it.lvl].bits; it.lvl++) { in nvkm_vmm_iter()
522 it.max = --it.lvl; in nvkm_vmm_iter()
523 it.pt[it.max] = vmm->pd; in nvkm_vmm_iter()
528 it.lvl = it.max; in nvkm_vmm_iter()
575 it.pte[it.lvl] += ptes; in nvkm_vmm_iter()
579 it.pte[it.lvl++] = 0; in nvkm_vmm_iter()
580 it.pte[it.lvl]++; in nvkm_vmm_iter()
[all …]
/linux-6.3-rc2/Documentation/translations/it_IT/process/
A Dprogramming-language.rst4 :Translator: Federico Vaga <federico.vaga@vaga.pv.it>
11 Il kernel è scritto nel linguaggio di programmazione C [it-c-language]_.
12 Più precisamente, il kernel viene compilato con ``gcc`` [it-gcc]_ usando
13 l'opzione ``-std=gnu11`` [it-gcc-c-dialect-options]_: il dialetto GNU
15 Linux supporta anche ``clang`` [it-clang]_, leggete la documentazione
22 ``icc`` [it-icc]_ su diverse architetture, tuttavia in questo momento
32 linguaggio stesso (come l'aggiunta di nuove parole chiave) [it-n2049]_.
46 .. [it-c-language] http://www.open-std.org/jtc1/sc22/wg14/www/standards
47 .. [it-gcc] https://gcc.gnu.org
48 .. [it-clang] https://clang.llvm.org
[all …]
/linux-6.3-rc2/include/linux/ceph/
A Dmessenger.h114 BUG_ON(!(it)->iter.bi_size); \
117 bio_advance_iter((it)->bio, &(it)->iter, __cur_n); \
118 if (!(it)->iter.bi_size && (it)->bio->bi_next) { \
120 (it)->bio = (it)->bio->bi_next; \
121 (it)->iter = (it)->bio->bi_iter; \
131 __ceph_bio_iter_advance_step(it, n, 0)
141 __cur_iter = (it)->iter; \
157 bvec_iter_advance((it)->bvecs, &(it)->iter, (n)); \
164 __ceph_bvec_iter_advance_step(it, n, 0)
174 __cur_iter = (it)->iter; \
[all …]
/linux-6.3-rc2/drivers/of/
A Dbase.c1297 memset(it, 0, sizeof(*it)); in of_phandle_iterator_init()
1330 if (!it->cur || it->phandle_end >= it->list_end) in of_phandle_iterator_next()
1333 it->cur = it->phandle_end; in of_phandle_iterator_next()
1336 it->phandle = be32_to_cpup(it->cur++); in of_phandle_iterator_next()
1349 it->parent, it->phandle); in of_phandle_iterator_next()
1378 if (it->cur + count > it->list_end) { in of_phandle_iterator_next()
1381 it->parent, it->cells_name, in of_phandle_iterator_next()
1382 count, it->list_end - it->cur); in of_phandle_iterator_next()
1385 it->parent, of_node_full_name(it->node), in of_phandle_iterator_next()
1386 count, it->list_end - it->cur); in of_phandle_iterator_next()
[all …]
/linux-6.3-rc2/drivers/accessibility/speakup/
A DKconfig8 This is the Speakup screen reader. Think of it as a
10 kernel, it can speak everything on the text console from
55 or m to build it as a module. See the configuration
64 or m to build it as a module. See the configuration
72 or m to build it as a module. See the configuration
79 You can say y to build it into the kernel, or m to
106 kernel, or m to build it as a module. See the
140 kernel, or m to build it as a module. See the
151 kernel, or m to build it as a module. See the
161 kernel, or m to build it as a module. See the
[all …]
/linux-6.3-rc2/drivers/iio/imu/inv_icm42600/
A Dinv_icm42600_timestamp.c115 struct inv_icm42600_timestamp_interval *it; in inv_icm42600_timestamp_interrupt() local
126 it = &ts->it; in inv_icm42600_timestamp_interrupt()
127 it->lo = it->up; in inv_icm42600_timestamp_interrupt()
128 it->up = timestamp; in inv_icm42600_timestamp_interrupt()
129 delta = it->up - it->lo; in inv_icm42600_timestamp_interrupt()
130 if (it->lo != 0) { in inv_icm42600_timestamp_interrupt()
143 ts->timestamp = it->up - interval; in inv_icm42600_timestamp_interrupt()
152 delta = it->lo - ts->timestamp; in inv_icm42600_timestamp_interrupt()
193 ts->timestamp = ts->it.up - interval; in inv_icm42600_timestamp_apply_odr()
/linux-6.3-rc2/Documentation/gpu/amdgpu/
A Dthermal.rst81 Use it to enable/disable GFXOFF, and to check if it's current enabled/disabled::
86 - Write 0 to disable it, and 1 to enable it.
87 - Read 0 means it's disabled, 1 it's enabled.
89 If it's enabled, that means that the GPU is free to enter into GFXOFF mode as
90 needed. Disabled means that it will never enter GFXOFF mode.
95 Read it to check current GFXOFF's status of a GPU::
106 getting into 0 when possible. When it's disabled, it's always at 2. Returns
107 ``-EINVAL`` if it's not supported.
112 Read it to get the total GFXOFF entry count at the time of query since system
114 it can currently overflow as an `uint32_t`. *Only supported in vangogh*
[all …]
/linux-6.3-rc2/drivers/net/wireless/realtek/rtlwifi/
A DKconfig24 If you choose to build it as a module, it will be called rtl8192ce
35 If you choose to build it as a module, it will be called rtl8192se
46 If you choose to build it as a module, it will be called rtl8192de
59 If you choose to build it as a module, it will be called rtl8723ae
72 If you choose to build it as a module, it will be called rtl8723be
83 If you choose to build it as a module, it will be called rtl8188ee
95 If you choose to build it as a module, it will be called rtl8192ee
107 If you choose to build it as a module, it will be called rtl8821ae
119 If you choose to build it as a module, it will be called rtl8192cu
/linux-6.3-rc2/Documentation/filesystems/
A Dhpfs.rst15 is taken from it
42 danger. I tried to write it so that it won't crash if check=normal on
45 bitmaps when accessing it).
125 name it's comparing to with its code page (850). These could never match. Is it
181 it will be slow).
201 whole created by this driver, it is BUG - let me know about it.
259 1.93 Modified, so that it works with kernels >= 2.1.131, I don't know if it
263 test it)
286 it)
288 Fixed a bug that it set badly one flag in large anode tree (it was not
[all …]
A Dporting.rst115 individual fs sb_op functions. If you don't need it, remove it.
122 free to drop it...
142 FS_LITTER is gone - just remove it from fs_flags.
273 As soon as it gets fixed is_read_only() will die.
291 it's safe to remove it. If you don't need it, remove it.
358 to it.
486 release it yourself.
519 two, it gets "is it an O_EXCL or equivalent?" boolean argument. Note that
571 it entirely.
615 dentry, it does not get nameidata at all and it gets called only when cookie
[all …]
/linux-6.3-rc2/arch/s390/kernel/
A Drelocate_kernel.S36 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-6.3-rc2/drivers/gpu/drm/radeon/
A Dradeon_vm.c333 bo_va->it.last = 0; in radeon_vm_bo_add()
484 if (it && it != &bo_va->it) { in radeon_vm_bo_set_addr()
486 tmp = container_of(it, struct radeon_bo_va, it); in radeon_vm_bo_set_addr()
490 soffset, tmp->bo, tmp->it.start, tmp->it.last); in radeon_vm_bo_set_addr()
497 if (bo_va->it.start || bo_va->it.last) { in radeon_vm_bo_set_addr()
506 tmp->it.start = bo_va->it.start; in radeon_vm_bo_set_addr()
507 tmp->it.last = bo_va->it.last; in radeon_vm_bo_set_addr()
966 nptes = bo_va->it.last - bo_va->it.start + 1; in radeon_vm_bo_update()
1126 if (bo_va->it.start || bo_va->it.last) in radeon_vm_bo_rmv()
1131 if (bo_va->it.start || bo_va->it.last) { in radeon_vm_bo_rmv()
[all …]
/linux-6.3-rc2/Documentation/userspace-api/media/dvb/
A Dfrontend-stat-properties.rst39 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
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
170 - ``FE_SCALE_NOT_AVAILABLE`` - it failed to measure it, or the
198 - ``FE_SCALE_NOT_AVAILABLE`` - it failed to measure it, or the
219 - ``FE_SCALE_NOT_AVAILABLE`` - it failed to measure it, or the
[all …]
/linux-6.3-rc2/drivers/net/wireless/marvell/mwifiex/
A DKconfig9 If you choose to build it as a module, it will be called
22 If you choose to build it as a module, it will be called
34 If you choose to build it as a module, it will be called
45 If you choose to build it as a module, it will be called
/linux-6.3-rc2/kernel/time/
A Dposix-cpu-timers.c496 if (timer->it.cpu.firing) in posix_cpu_timer_del()
948 if (!it->expires) in check_cpu_itimer()
952 if (it->incr) in check_cpu_itimer()
953 it->expires += it->incr; in check_cpu_itimer()
955 it->expires = 0; in check_cpu_itimer()
963 if (it->expires && it->expires < *expires) in check_cpu_itimer()
964 *expires = it->expires; in check_cpu_itimer()
1445 struct itimerspec64 it; in do_cpu_nanosleep() local
1464 memset(&it, 0, sizeof(it)); in do_cpu_nanosleep()
1465 it.it_value = *rqtp; in do_cpu_nanosleep()
[all …]
/linux-6.3-rc2/drivers/gpu/drm/i915/
A Di915_active.c130 struct active_node *it, *n; in __active_retire() local
235 struct active_node *it; in __active_lookup() local
246 it = READ_ONCE(ref->cache); in __active_lookup()
247 if (it) { in __active_lookup()
252 return it; in __active_lookup()
265 return it; in __active_lookup()
274 while (it) { in __active_lookup()
275 if (it->timeline < idx) { in __active_lookup()
276 it = fetch_node(it->node.rb_right); in __active_lookup()
278 it = fetch_node(it->node.rb_left); in __active_lookup()
[all …]
/linux-6.3-rc2/Documentation/process/
A Dmanagement-style.rst17 Btw, when talking about "kernel manager", it's all about the technical
24 People", and NOT read it. Burn it, it's a great symbolic gesture.
39 manager must be to make it. That's very deep and obvious, but it's not
95 deleting it, you may have irrevocably lost the trust of that
124 we just do both?" and look pitiful. Trust me, it works. If it's not
143 It turns out that while it's easy to undo technical mistakes, it's not
166 right), the harder it ends up being to apologize afterwards.
180 scan nearly as well. But I'm sure he thought about it.
227 out of it.
233 face it, it sure ain't you.
[all …]
/linux-6.3-rc2/drivers/net/wireless/ath/ath6kl/
A DKconfig10 If you choose to build it as a module, it will be called
21 choose to build it as a module, it will be called ath6kl_sdio.
31 Atheros AR6004 chipset and chipsets based on it running over
32 USB. If you choose to build it as a module, it will be
43 If unsure, say Y to make it easier to debug problems.
55 If unsure, say Y to make it easier to debug problems.
62 Enabling this makes it possible to change the regdomain in
/linux-6.3-rc2/Documentation/ABI/testing/
A Dsysfs-c2port3 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 …]
A Dsysfs-platform-ts55006 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".

Completed in 56 milliseconds

12345678910>>...110