/Linux-v6.6/drivers/net/wwan/t7xx/ |
D | t7xx_port_wwan.c | 58 struct sk_buff *cur = skb, *cloned; in t7xx_port_ctrl_tx() local 76 cloned = skb_clone(cur, GFP_KERNEL); in t7xx_port_ctrl_tx() 77 cloned->len = skb_headlen(cur); in t7xx_port_ctrl_tx() 78 ret = t7xx_port_send_skb(port_private, cloned, 0, 0); in t7xx_port_ctrl_tx() 80 dev_kfree_skb(cloned); in t7xx_port_ctrl_tx()
|
/Linux-v6.6/rust/alloc/vec/ |
D | spec_extend.rs | 86 self.spec_extend(iterator.cloned()) in spec_extend() 96 self.try_spec_extend(iterator.cloned()) in try_spec_extend()
|
/Linux-v6.6/Documentation/admin-guide/device-mapper/ |
D | dm-clone.rst | 17 for fast, low-latency I/O. The cloned device is visible/mountable immediately 52 1. A source device - the read-only device that gets cloned and source of the 146 destination dev The destination device, where the source will be cloned 147 source dev Read only device containing the data that gets cloned 243 mount /dev/mapper/clone /mnt/cloned-fs 244 fstrim /mnt/cloned-fs 319 un-provisioned/not-yet-cloned areas the same way as dm-clone does.
|
/Linux-v6.6/fs/ |
D | ioctl.c | 235 loff_t cloned; in ioctl_file_clone() local 240 cloned = vfs_clone_file_range(src_file.file, off, dst_file, destoff, in ioctl_file_clone() 242 if (cloned < 0) in ioctl_file_clone() 243 ret = cloned; in ioctl_file_clone() 244 else if (olen && cloned != olen) in ioctl_file_clone()
|
/Linux-v6.6/Documentation/fb/ |
D | gxfb.rst | 5 .. [This file is cloned from VesaFB/aty128fb]
|
D | lxfb.rst | 5 .. [This file is cloned from VesaFB/aty128fb]
|
D | sa1100fb.rst | 5 .. [This file is cloned from VesaFB/matroxfb]
|
D | aty128fb.rst | 5 .. [This file is cloned from VesaFB/matroxfb]
|
D | matroxfb.rst | 5 .. [This file is cloned from VesaFB. Thanks go to Gerd Knorr]
|
/Linux-v6.6/drivers/virt/ |
D | Kconfig | 22 to reseed the RNG when the VM is cloned. This is highly recommended if
|
/Linux-v6.6/rust/macros/ |
D | pin_data.rs | 39 res.extend(ty_generics.iter().cloned()); in pin_data()
|
/Linux-v6.6/Documentation/gpu/ |
D | vkms.rst | 162 - Add support for cloned writeback outputs and related test cases using a 163 cloned output in the IGT kms_writeback.
|
D | tegra.rst | 74 also share a single framebuffer, allowing cloned configurations even if modes
|
/Linux-v6.6/Documentation/networking/ |
D | driver.rst | 110 cloned SKB.
|
/Linux-v6.6/fs/overlayfs/ |
D | copy_up.c | 240 loff_t cloned; in ovl_copy_up_file() local 255 cloned = do_clone_file_range(old_file, 0, new_file, 0, len, 0); in ovl_copy_up_file() 256 if (cloned == len) in ovl_copy_up_file()
|
/Linux-v6.6/tools/perf/util/ |
D | pmu.c | 662 struct parse_events_term *term, *cloned; in pmu_alias_terms() local 667 ret = parse_events_term__clone(&cloned, term); in pmu_alias_terms() 676 cloned->weak = true; in pmu_alias_terms() 677 list_add_tail(&cloned->list, &list); in pmu_alias_terms()
|
/Linux-v6.6/fs/nfsd/ |
D | vfs.c | 619 loff_t cloned; in nfsd4_clone_file_range() local 623 cloned = vfs_clone_file_range(src, src_pos, dst, dst_pos, count, 0); in nfsd4_clone_file_range() 624 if (cloned < 0) { in nfsd4_clone_file_range() 625 ret = nfserrno(cloned); in nfsd4_clone_file_range() 628 if (count && cloned != count) { in nfsd4_clone_file_range()
|
/Linux-v6.6/net/tipc/ |
D | crypto.c | 154 struct tipc_aead *cloned; member 411 if (aead->cloned) { in tipc_aead_free() 412 tipc_aead_put(aead->cloned); in tipc_aead_free() 597 tmp->cloned = NULL; in tipc_aead_init() 664 aead->cloned = src; in tipc_aead_clone()
|
/Linux-v6.6/Documentation/filesystems/ |
D | files.rst | 14 table between tasks cloned with CLONE_FILES flag. Typically
|
/Linux-v6.6/Documentation/block/ |
D | inline-encryption.rst | 128 layered devices, when a request is cloned, its encryption context is cloned as 129 well. When the cloned request is submitted, it is then processed as usual; this
|
/Linux-v6.6/include/linux/ |
D | skbuff.h | 915 __u8 cloned:1, member 1903 return skb->cloned && in skb_cloned() 1944 if (!skb->cloned) in skb_header_cloned() 3578 int cloned) in __skb_cow() argument 3585 if (delta || cloned) in __skb_cow()
|
/Linux-v6.6/net/core/ |
D | skbuff.c | 967 if (skb->cloned && in skb_release_data() 1434 n->cloned = 1; in __skb_clone() 1449 skb->cloned = 1; in __skb_clone() 2139 skb->cloned = 0; in pskb_expand_head() 6401 skb->cloned = 0; in pskb_carve_inside_header() 6535 skb->cloned = 0; in pskb_carve_inside_nonlinear()
|
/Linux-v6.6/fs/smb/server/ |
D | smb2pdu.c | 7864 loff_t src_off, dst_off, length, cloned; in smb2_ioctl() local 7900 cloned = vfs_clone_file_range(fp_in->filp, src_off, in smb2_ioctl() 7902 if (cloned == -EXDEV || cloned == -EOPNOTSUPP) { in smb2_ioctl() 7905 } else if (cloned != length) { in smb2_ioctl() 7906 cloned = vfs_copy_file_range(fp_in->filp, src_off, in smb2_ioctl() 7909 if (cloned != length) { in smb2_ioctl() 7910 if (cloned < 0) in smb2_ioctl() 7911 ret = cloned; in smb2_ioctl()
|
/Linux-v6.6/Documentation/process/ |
D | maintainer-pgp-guide.rst | 653 repository is cloned to your system, you have full history of the 655 hundreds of cloned repositories floating around, how does anyone verify
|
/Linux-v6.6/drivers/md/ |
D | Kconfig | 384 device into a writable destination device. The cloned device is
|