Home
last modified time | relevance | path

Searched refs:clone (Results 1 – 25 of 407) sorted by relevance

12345678910>>...17

/openbmc/linux/drivers/md/
H A Ddm-clone-target.c251 queue_work(clone->wq, &clone->worker); in wake_worker()
530 struct clone *clone; member
671 hd->clone = clone; in alloc_hydration()
704 struct clone *clone = hd->clone; in hydration_update_metadata() local
737 struct clone *clone = hd->clone; in hydration_complete() local
766 struct clone *clone = hd->clone; in hydration_kcopyd_callback() local
798 struct clone *clone = hd->clone; in hydration_copy() local
981 struct clone *clone = hd->clone; in __batch_hydration() local
1280 struct clone *clone = container_of(work, typeof(*clone), worker); in do_worker() local
1320 struct clone *clone = ti->private; in clone_map() local
[all …]
H A Ddm-rq.c21 struct request *orig, *clone; member
81 container_of(clone, struct dm_rq_clone_bio_info, clone); in end_clone_bio()
87 bio_put(clone); in end_clone_bio()
163 blk_rq_unprep_clone(clone); in dm_end_request()
195 if (tio->clone) { in dm_requeue_original_request()
255 struct request *clone = tio->clone; in dm_softirq_done() local
257 if (!clone) { in dm_softirq_done()
331 clone->end_io_data = tio; in setup_clone()
333 tio->clone = clone; in setup_clone()
343 tio->clone = NULL; in init_tio()
[all …]
H A Ddm-zone.c385 switch (bio_op(clone)) { in dm_zone_map_bio_begin()
402 (clone->bi_opf & (~REQ_OP_MASK)); in dm_zone_map_bio_begin()
464 struct bio *clone) in dm_zone_lock() argument
474 struct bio *clone) in dm_zone_unlock() argument
517 struct bio *clone = &tio->clone; in dm_zone_map_bio() local
528 return ti->type->map(ti, clone); in dm_zone_map_bio()
531 zno = bio_zone_no(clone); in dm_zone_map_bio()
532 dm_zone_lock(md->disk, zno, clone); in dm_zone_map_bio()
547 r = ti->type->map(ti, clone); in dm_zone_map_bio()
608 clone->bi_iter.bi_sector & mask; in dm_zone_endio()
[all …]
H A Ddm-flakey.c401 bio_uninit(clone); in clone_free()
402 kfree(clone); in clone_free()
409 clone_free(clone); in clone_endio()
415 struct bio *clone; in clone_bio() local
426 if (!clone) in clone_bio()
432 clone->bi_private = bio; in clone_bio()
452 clone_free(clone); in clone_bio()
475 return clone; in clone_bio()
536 if (clone) { in flakey_map()
540 corrupt_bio_random(clone); in flakey_map()
[all …]
H A Ddm.c94 return container_of(clone, struct dm_target_io, clone); in clone_to_tio()
551 if (!clone || likely(dm_tio_is_normal(clone_to_tio(clone)))) { in dm_start_io_acct()
577 struct bio *clone; in alloc_io() local
617 struct bio *clone; in alloc_tio() local
623 clone = &tio->clone; in alloc_tio()
627 if (!clone) in alloc_tio()
655 return clone; in alloc_tio()
662 bio_put(clone); in free_tio()
1445 free_tio(clone); in __map_bio()
1506 struct bio *clone; in __send_duplicate_bios() local
[all …]
H A Ddm-crypt.c1683 struct bio *clone; in crypt_alloc_buffer() local
1724 bio_put(clone); in crypt_alloc_buffer()
1739 bio_put(clone); in crypt_alloc_buffer()
1740 clone = NULL; in crypt_alloc_buffer()
1746 return clone; in crypt_alloc_buffer()
1858 bio_put(clone); in crypt_endio()
1876 struct bio *clone; in kcryptd_io_read() local
1888 crypt_convert_init(cc, &io->ctx, clone, clone, io->sector); in kcryptd_io_read()
1901 if (!clone) in kcryptd_io_read()
1912 bio_put(clone); in kcryptd_io_read()
[all …]
/openbmc/openbmc/poky/meta/recipes-devtools/gcc/gcc/
H A D0027-Fix-gcc-vect-module-testcases.patch5 diff --git a/gcc/testsuite/gcc.dg/vect/vect-simd-clone-10.c b/gcc/testsuite/gcc.dg/vect/vect-simd-c…
7 --- a/gcc/testsuite/gcc.dg/vect/vect-simd-clone-10.c
8 +++ b/gcc/testsuite/gcc.dg/vect/vect-simd-clone-10.c
15 diff --git a/gcc/testsuite/gcc.dg/vect/vect-simd-clone-12.c b/gcc/testsuite/gcc.dg/vect/vect-simd-c…
17 --- a/gcc/testsuite/gcc.dg/vect/vect-simd-clone-12.c
18 +++ b/gcc/testsuite/gcc.dg/vect/vect-simd-clone-12.c
/openbmc/linux/Documentation/admin-guide/device-mapper/
H A Ddm-clone.rst4 dm-clone
15 The main use case of dm-clone is to clone a potentially remote, high-latency,
56 clone of the source device.
154 passed to dm-clone
187 <clone metadata mode>
231 1. Create the dm-clone device.
235 dmsetup create clone --table "0 1048576000 clone $metadata_dev $dest_dev \
243 mount /dev/mapper/clone /mnt/cloned-fs
257 dmsetup suspend clone
259 dmsetup resume clone
[all …]
/openbmc/linux/net/core/
H A Dtimestamping.c25 struct sk_buff *clone; in skb_clone_tx_timestamp() local
37 clone = skb_clone_sk(skb); in skb_clone_tx_timestamp()
38 if (!clone) in skb_clone_tx_timestamp()
40 mii_ts->txtstamp(mii_ts, clone, type); in skb_clone_tx_timestamp()
/openbmc/openbmc/poky/meta/recipes-core/glibc/glibc/
H A D0021-fix-create-thread-failed-in-unprivileged-process-BZ-.patch6 Since commit [d8ea0d0168 Add an internal wrapper for clone, clone2 and clone3]
11 __clone3 returns -1 with ENOSYS, fall back to clone or clone2.
19 So if __clone3 returns -1 with EPERM, fall back to clone or clone2 could
71 sysdeps/unix/sysv/linux/clone-internal.c | 2 +-
74 diff --git a/sysdeps/unix/sysv/linux/clone-internal.c b/sysdeps/unix/sysv/linux/clone-internal.c
76 --- a/sysdeps/unix/sysv/linux/clone-internal.c
77 +++ b/sysdeps/unix/sysv/linux/clone-internal.c
/openbmc/linux/fs/f2fs/
H A Dacl.c297 struct posix_acl *clone = NULL; in f2fs_acl_clone() local
302 clone = kmemdup(acl, size, flags); in f2fs_acl_clone()
303 if (clone) in f2fs_acl_clone()
304 refcount_set(&clone->a_refcount, 1); in f2fs_acl_clone()
306 return clone; in f2fs_acl_clone()
368 struct posix_acl *clone; in f2fs_acl_create() local
385 clone = f2fs_acl_clone(p, GFP_NOFS); in f2fs_acl_create()
386 if (!clone) { in f2fs_acl_create()
396 posix_acl_release(clone); in f2fs_acl_create()
398 *acl = clone; in f2fs_acl_create()
[all …]
/openbmc/linux/fs/
H A Dposix_acl.c227 if (clone) in posix_acl_clone()
230 return clone; in posix_acl_clone()
561 if (clone) { in __posix_acl_create()
565 clone = NULL; in __posix_acl_create()
569 *acl = clone; in __posix_acl_create()
579 if (clone) { in __posix_acl_chmod()
583 clone = NULL; in __posix_acl_chmod()
587 *acl = clone; in __posix_acl_chmod()
639 struct posix_acl *clone; in posix_acl_create() local
658 if (!clone) in posix_acl_create()
[all …]
/openbmc/openbmc/poky/scripts/contrib/
H A Dpatchtest.sh25 function clone() { function
29 git clone $REPOREMOTE $REPODIR --quiet
78 clone git://git.yoctoproject.org/patchtest $PT
79 clone git://git.yoctoproject.org/patchtest-oe $PTOE
/openbmc/linux/tools/testing/selftests/bpf/progs/
H A Ddynptr_fail.c1455 struct bpf_dynptr clone; in clone_invalid2() local
1474 struct bpf_dynptr clone; in clone_invalidate1() local
1480 bpf_dynptr_clone(&ptr, &clone); in clone_invalidate1()
1496 struct bpf_dynptr clone; in clone_invalidate2() local
1501 bpf_dynptr_clone(&ptr, &clone); in clone_invalidate2()
1543 struct bpf_dynptr clone; in clone_invalidate4() local
1548 bpf_dynptr_clone(&ptr, &clone); in clone_invalidate4()
1569 struct bpf_dynptr clone; in clone_invalidate5() local
1577 bpf_dynptr_clone(&ptr, &clone); in clone_invalidate5()
1623 struct bpf_dynptr clone; in clone_skb_packet_data() local
[all …]
/openbmc/linux/include/linux/dsa/
H A Docelot.h14 struct sk_buff *clone; member
262 struct sk_buff *clone = OCELOT_SKB_CB(skb)->clone; in ocelot_ptp_rew_op() local
266 if (ptp_cmd == IFH_REW_OP_TWO_STEP_PTP && clone) { in ocelot_ptp_rew_op()
268 rew_op |= OCELOT_SKB_CB(clone)->ts_id << 3; in ocelot_ptp_rew_op()
/openbmc/linux/net/rds/
H A Dtcp_recv.c162 struct sk_buff *clone; in rds_tcp_data_recv() local
219 clone = pskb_extract(skb, offset, to_copy, arg->gfp); in rds_tcp_data_recv()
220 if (!clone) { in rds_tcp_data_recv()
225 skb_queue_tail(&tinc->ti_skb_list, clone); in rds_tcp_data_recv()
230 clone, clone->data, clone->len); in rds_tcp_data_recv()
/openbmc/linux/net/ipv4/
H A Dinet_fragment.c514 struct sk_buff *clone; in inet_frag_reasm_prepare() local
517 clone = alloc_skb(0, GFP_ATOMIC); in inet_frag_reasm_prepare()
518 if (!clone) in inet_frag_reasm_prepare()
524 clone->data_len = head->data_len - plen; in inet_frag_reasm_prepare()
525 clone->len = clone->data_len; in inet_frag_reasm_prepare()
526 head->truesize += clone->truesize; in inet_frag_reasm_prepare()
527 clone->csum = 0; in inet_frag_reasm_prepare()
528 clone->ip_summed = head->ip_summed; in inet_frag_reasm_prepare()
529 add_frag_mem_limit(q->fqdir, clone->truesize); in inet_frag_reasm_prepare()
530 skb_shinfo(head)->frag_list = clone; in inet_frag_reasm_prepare()
[all …]
/openbmc/linux/arch/um/kernel/skas/
H A DMakefile6 obj-y := clone.o mmu.o process.o syscall.o uaccess.o
13 UNPROFILE_OBJS := clone.o
/openbmc/linux/net/netfilter/
H A Dnft_set_pipapo.c1700 pipapo_gc(set, priv->clone);
1716 priv->clone = new_clone;
1747 priv->clone = new_clone;
2047 m = priv->clone;
2181 priv->clone = pipapo_clone(m);
2182 if (IS_ERR(priv->clone)) {
2183 err = PTR_ERR(priv->clone);
2253 if (priv->clone) {
2254 m = priv->clone;
2263 kfree(priv->clone);
[all …]
/openbmc/openbmc/poky/scripts/
H A Dpatchtest-setup-sharedir72 git clone "${POKY_REPO}" "${SHAREDIR}/${BASENAME}"
80 git clone "${PATCHTEST_REPO}" "${SHAREDIR}/${BASENAME}"
/openbmc/openbmc-build-scripts/jenkins/
H A Drun-meta-ci21 git clone https://github.com/openbmc/openbmc-test-automation.git --branch master --single-branch
33 git clone https://github.com/openbmc/openbmc.git --branch "${GERRIT_BRANCH}" --single-branch
/openbmc/linux/drivers/gpu/drm/nouveau/nvkm/engine/dma/
H A Dusernv04.c35 bool clone; member
51 if (dmaobj->clone) { in nv04_dmaobj_bind()
99 dmaobj->clone = true; in nv04_dmaobj_new()
/openbmc/linux/drivers/net/usb/
H A Dlg-vl600.c103 struct sk_buff *clone; in vl600_rx_fixup() local
200 clone = skb_clone(buf, GFP_ATOMIC); in vl600_rx_fixup()
201 if (!clone) in vl600_rx_fixup()
204 skb_trim(clone, packet_len); in vl600_rx_fixup()
205 usbnet_skb_return(dev, clone); in vl600_rx_fixup()
/openbmc/linux/drivers/net/ethernet/mscc/
H A Docelot_ptp.c611 struct sk_buff *clone) in ocelot_port_add_txtstamp_skb() argument
624 skb_shinfo(clone)->tx_flags |= SKBTX_IN_PROGRESS; in ocelot_port_add_txtstamp_skb()
626 OCELOT_SKB_CB(clone)->ts_id = ocelot_port->ts_id; in ocelot_port_add_txtstamp_skb()
635 skb_queue_tail(&ocelot_port->tx_skbs, clone); in ocelot_port_add_txtstamp_skb()
663 struct sk_buff **clone) in ocelot_port_txtstamp_request() argument
690 *clone = skb_clone_sk(skb); in ocelot_port_txtstamp_request()
691 if (!(*clone)) in ocelot_port_txtstamp_request()
694 err = ocelot_port_add_txtstamp_skb(ocelot, port, *clone); in ocelot_port_txtstamp_request()
699 OCELOT_SKB_CB(*clone)->ptp_class = ptp_class; in ocelot_port_txtstamp_request()
733 static bool ocelot_validate_ptp_skb(struct sk_buff *clone, u16 seqid) in ocelot_validate_ptp_skb() argument
[all …]
/openbmc/linux/tools/perf/Documentation/
H A Dbuild-xed.txt4 $ git clone https://github.com/intelxed/mbuild.git mbuild
5 $ git clone https://github.com/intelxed/xed

12345678910>>...17