Home
last modified time | relevance | path

Searched refs:cloned (Results 1 – 25 of 34) sorted by relevance

12

/linux-6.15/drivers/net/wwan/t7xx/
H A Dt7xx_port_wwan.c93 struct sk_buff *cur = skb, *cloned; in t7xx_port_ctrl_tx() local
108 cloned = skb_clone(cur, GFP_KERNEL); in t7xx_port_ctrl_tx()
109 cloned->len = skb_headlen(cur); in t7xx_port_ctrl_tx()
110 ret = t7xx_port_send_skb(port, cloned, 0, 0); in t7xx_port_ctrl_tx()
112 dev_kfree_skb(cloned); in t7xx_port_ctrl_tx()
/linux-6.15/Documentation/admin-guide/device-mapper/
H A Ddm-clone.rst17 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-6.15/net/xfrm/
H A Dtrace_iptfs.h171 __field(u8, cloned)
182 __entry->cloned = skb_cloned(skb);
189 __entry->head_frag, __entry->pp_recycle, __entry->cloned, __entry->shared,
/linux-6.15/fs/
H A Dioctl.c235 loff_t cloned; in ioctl_file_clone() local
240 cloned = vfs_clone_file_range(fd_file(src_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-6.15/Documentation/fb/
H A Dgxfb.rst5 .. [This file is cloned from VesaFB/aty128fb]
H A Dlxfb.rst5 .. [This file is cloned from VesaFB/aty128fb]
H A Dsa1100fb.rst5 .. [This file is cloned from VesaFB/matroxfb]
H A Daty128fb.rst5 .. [This file is cloned from VesaFB/matroxfb]
H A Dmatroxfb.rst5 .. [This file is cloned from VesaFB. Thanks go to Gerd Knorr]
/linux-6.15/drivers/virt/
H A DKconfig21 to reseed the RNG when the VM is cloned. This is highly recommended if
/linux-6.15/rust/pin-init/internal/src/
H A Dpin_data.rs43 res.extend(ty_generics.iter().cloned()); in pin_data()
/linux-6.15/tools/perf/util/
H A Dpmu.c720 struct parse_events_term *term, *cloned; in pmu_alias_terms() local
725 int ret = parse_events_term__clone(&cloned, term); in pmu_alias_terms()
735 cloned->weak = true; in pmu_alias_terms()
736 cloned->err_term = cloned->err_val = err_loc; in pmu_alias_terms()
737 list_add_tail(&cloned->list, &clone_terms.terms); in pmu_alias_terms()
/linux-6.15/Documentation/gpu/
H A Dvkms.rst162 - Add support for cloned writeback outputs and related test cases using a
163 cloned output in the IGT kms_writeback.
H A Dtegra.rst74 also share a single framebuffer, allowing cloned configurations even if modes
/linux-6.15/Documentation/networking/
H A Ddriver.rst110 cloned SKB.
/linux-6.15/fs/overlayfs/
H A Dcopy_up.c268 loff_t cloned; in ovl_copy_up_file() local
284 cloned = vfs_clone_file_range(old_file, 0, new_file, 0, len, 0); in ovl_copy_up_file()
285 if (cloned == len) in ovl_copy_up_file()
/linux-6.15/fs/nfsd/
H A Dvfs.c654 loff_t cloned; in nfsd4_clone_file_range() local
658 cloned = vfs_clone_file_range(src, src_pos, dst, dst_pos, count, 0); in nfsd4_clone_file_range()
659 if (cloned < 0) { in nfsd4_clone_file_range()
660 ret = nfserrno(cloned); in nfsd4_clone_file_range()
663 if (count && cloned != count) { in nfsd4_clone_file_range()
/linux-6.15/net/tipc/
H A Dcrypto.c154 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-6.15/Documentation/filesystems/
H A Dfiles.rst14 table between tasks cloned with CLONE_FILES flag. Typically
/linux-6.15/include/linux/
H A Dskbuff.h953 __u8 cloned:1, member
1260 if (!skb->cloned) in skb_data_unref()
1983 return skb->cloned && in skb_cloned()
2024 if (!skb->cloned) in skb_header_cloned()
3764 int cloned) in __skb_cow() argument
3771 if (delta || cloned) in __skb_cow()
/linux-6.15/Documentation/netlink/specs/
H A Dconntrack.yaml75 - cloned
/linux-6.15/Documentation/block/
H A Dinline-encryption.rst128 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-6.15/fs/smb/server/
H A Dsmb2pdu.c8319 loff_t src_off, dst_off, length, cloned; in smb2_ioctl() local
8355 cloned = vfs_clone_file_range(fp_in->filp, src_off, in smb2_ioctl()
8357 if (cloned == -EXDEV || cloned == -EOPNOTSUPP) { in smb2_ioctl()
8360 } else if (cloned != length) { in smb2_ioctl()
8361 cloned = vfs_copy_file_range(fp_in->filp, src_off, in smb2_ioctl()
8364 if (cloned != length) { in smb2_ioctl()
8365 if (cloned < 0) in smb2_ioctl()
8366 ret = cloned; in smb2_ioctl()
/linux-6.15/net/core/
H A Dskbuff.c1563 n->cloned = 1; in __skb_clone()
1578 skb->cloned = 1; in __skb_clone()
2293 skb->cloned = 0; in pskb_expand_head()
6727 skb->cloned = 0; in pskb_carve_inside_header()
6861 skb->cloned = 0; in pskb_carve_inside_nonlinear()
/linux-6.15/Documentation/process/
H A Dmaintainer-pgp-guide.rst653 repository is cloned to your system, you have full history of the
655 hundreds of cloned repositories floating around, how does anyone verify

12