Home
last modified time | relevance | path

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

/linux/fs/
H A Dioctl.c234 loff_t cloned; in ioctl_file_clone() local
239 cloned = vfs_clone_file_range(fd_file(src_file), off, dst_file, destoff, in ioctl_file_clone()
241 if (cloned < 0) in ioctl_file_clone()
242 ret = cloned; in ioctl_file_clone()
243 else if (olen && cloned != olen) in ioctl_file_clone()
/linux/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/drivers/virt/
H A DKconfig21 to reseed the RNG when the VM is cloned. This is highly recommended if
/linux/rust/macros/
H A Dpin_data.rs
/linux/Documentation/networking/
H A Ddriver.rst113 cloned SKB.
/linux/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/net/tipc/
H A Dcrypto.c138 * @cloned: reference to the source key in case cloning
154 struct tipc_aead *cloned; member
402 if (aead->cloned) {
403 tipc_aead_put(aead->cloned);
588 tmp->cloned = NULL; in tipc_aead_init()
611 * A reference to the source is hold in the "cloned" pointer for the later in tipc_aead_init()
655 aead->cloned = src; in tipc_aead_clone()
/linux/Documentation/filesystems/
H A Dfiles.rst14 table between tasks cloned with CLONE_FILES flag. Typically
/linux/include/linux/
H A Dskbuff.h793 * @hdr_len: writable header length of cloned skb
799 * @cloned: Head may be cloned (check refcnt to be sure)
945 /* if you move cloned around you also must adapt those constants */
956 __u8 cloned:1, member
1303 if (!skb->cloned) in skb_data_unref()
2032 return skb->cloned && in skb_cloned()
2073 if (!skb->cloned) in skb_header_cloned()
2121 * If the buffer is shared the buffer is cloned and the old copy
3353 * pskb_trim_unique - remove end from a paged unique (not cloned) buffe
3873 __skb_cow(struct sk_buff * skb,unsigned int headroom,int cloned) __skb_cow() argument
[all...]
/linux/Documentation/gpu/
H A Dtegra.rst74 also share a single framebuffer, allowing cloned configurations even if modes
/linux/fs/smb/server/
H A Dsmb2pdu.c8750 loff_t src_off, dst_off, length, cloned; in smb20_oplock_break_ack()
8801 cloned = vfs_clone_file_range(fp_in->filp, src_off, in smb21_lease_break_ack()
8803 if (cloned == -EXDEV || cloned == -EOPNOTSUPP) { in smb21_lease_break_ack()
8806 } else if (cloned != length) { in smb21_lease_break_ack()
8807 cloned = vfs_copy_file_range(fp_in->filp, src_off, in smb21_lease_break_ack()
8810 if (cloned != length) { in smb21_lease_break_ack()
8811 if (cloned < 0) in smb21_lease_break_ack()
8812 ret = cloned; in smb21_lease_break_ack()
8536 loff_t src_off, dst_off, length, cloned; smb2_ioctl() local
/linux/net/core/
H A Dskbuff.c662 * instead of head cache and allocate a cloned (child) skb.
1122 * So disable the recycling bit if an SKB is cloned and we have in skb_release_data()
1613 n->cloned = 1; in __skb_clone()
1628 skb->cloned = 1; in __skb_clone()
2209 * to true for the cases where the copy will likely be cloned
2352 skb->cloned = 0; in pskb_expand_head()
2873 * room at tail, reallocate without expansion only if skb is cloned. in __pskb_pull_tail()
4241 /* Shifting from/to a cloned skb is a no-go.
5369 /* If skb is cloned or its head is paged, reallocate in skb_cow_data()
6061 * If so, returns a cloned sk
[all...]
/linux/rust/syn/
H A Dpunctuated.rs1037 pub fn cloned(self) -> Pair<T, P> in cloned() method
/linux/drivers/android/binder/
H A Dthread.rs357 self.current_transaction = transaction.find_from(thread).cloned(); in pop_transaction_to_reply()
/linux/Documentation/networking/device_drivers/can/ctu/
H A Dctucanfd-driver.rst33 version of emulation support can be cloned from ctu-canfd branch of QEMU local
/linux/Documentation/bpf/
H A Dbpf_devel_QA.rst457 working directory points to the root of the cloned git tree)::
/linux/net/netlink/
H A Daf_netlink.c376 if (!skb->cloned || in netlink_skb_destructor()
/linux/drivers/net/ethernet/cadence/
H A Dmacb_main.c2421 bool cloned = skb_cloned(*skb) || skb_header_cloned(*skb) || in macb_pad_and_fcs() local
2445 if (cloned || tailroom < padlen) { in macb_pad_and_fcs()