/kernel/linux/linux-6.6/drivers/net/wwan/t7xx/ |
H A 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()
|
/kernel/linux/linux-6.6/rust/alloc/vec/ |
H A D | spec_extend.rs | 86 self.spec_extend(iterator.cloned()) 96 self.try_spec_extend(iterator.cloned())
|
/kernel/linux/linux-5.10/fs/ |
H A D | ioctl.c | 231 loff_t cloned; in ioctl_file_clone() local 239 cloned = vfs_clone_file_range(src_file.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()
|
/kernel/linux/linux-6.6/fs/ |
H A 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()
|
/kernel/linux/linux-6.6/rust/macros/ |
H A D | pin_data.rs | 39 res.extend(ty_generics.iter().cloned());
|
/kernel/linux/linux-5.10/fs/overlayfs/ |
H A D | copy_up.c | 140 loff_t cloned; in ovl_copy_up_data() local 160 cloned = do_clone_file_range(old_file, 0, new_file, 0, len, 0); in ovl_copy_up_data() 161 if (cloned == len) in ovl_copy_up_data()
|
/kernel/linux/linux-5.10/tools/perf/util/ |
H A D | pmu.c | 501 struct parse_events_term *term, *cloned; in pmu_alias_terms() local 506 ret = parse_events_term__clone(&cloned, term); in pmu_alias_terms() 515 cloned->weak = true; in pmu_alias_terms() 516 list_add_tail(&cloned->list, &list); in pmu_alias_terms()
|
/kernel/linux/linux-5.10/net/tipc/ |
H A D | crypto.c | 136 * @cloned: reference to the source key in case cloning 152 struct tipc_aead *cloned; member 405 if (aead->cloned) { in tipc_aead_free() 406 tipc_aead_put(aead->cloned); in tipc_aead_free() 590 tmp->cloned = NULL; in tipc_aead_init() 613 * A reference to the source is hold in the "cloned" pointer for the later 657 aead->cloned = src; in tipc_aead_clone()
|
/kernel/linux/linux-5.10/fs/nfsd/ |
H A D | vfs.c | 539 loff_t cloned; in nfsd4_clone_file_range() local 543 cloned = vfs_clone_file_range(src, src_pos, dst, dst_pos, count, 0); in nfsd4_clone_file_range() 544 if (cloned < 0) { in nfsd4_clone_file_range() 545 ret = nfserrno(cloned); in nfsd4_clone_file_range() 548 if (count && cloned != count) { in nfsd4_clone_file_range()
|
/kernel/linux/linux-6.6/fs/nfsd/ |
H A 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()
|
/kernel/linux/linux-6.6/net/tipc/ |
H A D | crypto.c | 138 * @cloned: reference to the source key in case cloning 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() 620 * A reference to the source is hold in the "cloned" pointer for the later 664 aead->cloned = src; in tipc_aead_clone()
|
/kernel/linux/linux-6.6/fs/overlayfs/ |
H A D | copy_up.c | 71 /* release cloned acl */ in ovl_copy_acl() 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()
|
/kernel/linux/linux-6.6/tools/perf/util/ |
H A 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()
|
/kernel/linux/linux-5.10/include/linux/ |
H A D | skbuff.h | 632 * @hdr_len: writable header length of cloned skb 638 * @cloned: Head may be cloned (check refcnt to be sure) 774 /* if you move cloned around you also must adapt those constants */ 785 __u8 cloned:1, member 1636 return skb->cloned && in skb_cloned() 1661 if (!skb->cloned) in skb_header_cloned() 1707 * If the buffer is shared the buffer is cloned and the old copy 2729 * pskb_trim_unique - remove end from a paged unique (not cloned) buffer 2734 * the skb is not cloned s 3172 __skb_cow(struct sk_buff *skb, unsigned int headroom, int cloned) __skb_cow() argument [all...] |
/kernel/linux/linux-6.6/include/linux/ |
H A D | skbuff.h | 749 * @hdr_len: writable header length of cloned skb 755 * @cloned: Head may be cloned (check refcnt to be sure) 904 /* if you move cloned around you also must adapt those constants */ 915 __u8 cloned:1, member 1903 return skb->cloned && in skb_cloned() 1944 if (!skb->cloned) in skb_header_cloned() 1992 * If the buffer is shared the buffer is cloned and the old copy 3078 * pskb_trim_unique - remove end from a paged unique (not cloned) buffer 3083 * the skb is not cloned s 3577 __skb_cow(struct sk_buff *skb, unsigned int headroom, int cloned) __skb_cow() argument [all...] |
/kernel/linux/linux-5.10/net/core/ |
H A D | skbuff.c | 170 * instead of head cache and allocate a cloned (child) skb. 612 if (skb->cloned && in skb_release_data() 1001 n->cloned = 1; in __skb_clone() 1015 skb->cloned = 1; in __skb_clone() 1552 * to true for the cases where the copy will likely be cloned 1690 skb->cloned = 0; in pskb_expand_head() 2079 * room at tail, reallocate without expansion only if skb is cloned. in __pskb_pull_tail() 3304 /* Shifting from/to a cloned skb is a no-go. 4485 /* If skb is cloned or its head is paged, reallocate in skb_cow_data() 5102 * If so, returns a cloned sk [all...] |
/kernel/linux/linux-6.6/net/core/ |
H A D | skbuff.c | 609 * instead of head cache and allocate a cloned (child) skb. 967 if (skb->cloned && in skb_release_data() 993 * So disable the recycling bit if an SKB is cloned and we have in skb_release_data() 1434 n->cloned = 1; in __skb_clone() 1449 skb->cloned = 1; in __skb_clone() 2001 * to true for the cases where the copy will likely be cloned 2139 skb->cloned = 0; in pskb_expand_head() 2645 * room at tail, reallocate without expansion only if skb is cloned. in __pskb_pull_tail() 3941 /* Shifting from/to a cloned skb is a no-go. 5015 /* If skb is cloned o in skb_cow_data() [all...] |
/kernel/linux/linux-6.6/fs/smb/server/ |
H A D | smb2pdu.c | 7888 loff_t src_off, dst_off, length, cloned; in smb2_ioctl() local 7924 cloned = vfs_clone_file_range(fp_in->filp, src_off, in smb2_ioctl() 7926 if (cloned == -EXDEV || cloned == -EOPNOTSUPP) { in smb2_ioctl() 7929 } else if (cloned != length) { in smb2_ioctl() 7930 cloned = vfs_copy_file_range(fp_in->filp, src_off, in smb2_ioctl() 7933 if (cloned != length) { in smb2_ioctl() 7934 if (cloned < 0) in smb2_ioctl() 7935 ret = cloned; in smb2_ioctl()
|
/kernel/linux/linux-5.10/drivers/net/ethernet/cadence/ |
H A D | macb_main.c | 1967 bool cloned = skb_cloned(*skb) || skb_header_cloned(*skb) || in macb_pad_and_fcs() local 1991 if (cloned || tailroom < padlen) { in macb_pad_and_fcs()
|
/kernel/linux/linux-6.6/drivers/net/ethernet/cadence/ |
H A D | macb_main.c | 2258 bool cloned = skb_cloned(*skb) || skb_header_cloned(*skb) || in macb_pad_and_fcs() local 2282 if (cloned || tailroom < padlen) { in macb_pad_and_fcs()
|
/kernel/linux/linux-5.10/net/netlink/ |
H A D | af_netlink.c | 367 if (!skb->cloned || in netlink_skb_destructor()
|
/kernel/linux/linux-6.6/net/netlink/ |
H A D | af_netlink.c | 375 if (!skb->cloned || in netlink_skb_destructor()
|