Home
last modified time | relevance | path

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

/linux-4.4.14/drivers/md/
Ddm.c86 struct request *orig, *clone; member
106 struct bio clone; member
642 bio_put(&tio->clone); in free_tio()
995 struct dm_target_io *tio = container_of(bio, struct dm_target_io, clone); in clone_endio()
1028 static void end_clone_bio(struct bio *clone) in end_clone_bio() argument
1031 container_of(clone, struct dm_rq_clone_bio_info, clone); in end_clone_bio()
1035 int error = clone->bi_error; in end_clone_bio()
1037 bio_put(clone); in end_clone_bio()
1121 static void free_rq_clone(struct request *clone) in free_rq_clone() argument
1123 struct dm_rq_target_io *tio = clone->end_io_data; in free_rq_clone()
[all …]
Ddm-crypt.c968 static void crypt_free_buffer_pages(struct crypt_config *cc, struct bio *clone);
990 struct bio *clone; in crypt_alloc_buffer() local
1001 clone = bio_alloc_bioset(GFP_NOIO, nr_iovecs, cc->bs); in crypt_alloc_buffer()
1002 if (!clone) in crypt_alloc_buffer()
1005 clone_init(io, clone); in crypt_alloc_buffer()
1012 crypt_free_buffer_pages(cc, clone); in crypt_alloc_buffer()
1013 bio_put(clone); in crypt_alloc_buffer()
1020 bvec = &clone->bi_io_vec[clone->bi_vcnt++]; in crypt_alloc_buffer()
1025 clone->bi_iter.bi_size += len; in crypt_alloc_buffer()
1034 return clone; in crypt_alloc_buffer()
[all …]
Ddm-target.c134 static int io_err_map_rq(struct dm_target *ti, struct request *clone, in io_err_map_rq() argument
142 struct request **clone) in io_err_clone_and_map_rq() argument
147 static void io_err_release_clone_rq(struct request *clone) in io_err_release_clone_rq() argument
Ddm-mpath.c379 static int __multipath_map(struct dm_target *ti, struct request *clone, in __multipath_map() argument
385 size_t nr_bytes = clone ? blk_rq_bytes(clone) : blk_rq_bytes(rq); in __multipath_map()
420 if (clone) { in __multipath_map()
422 clone->q = bdev_get_queue(bdev); in __multipath_map()
423 clone->rq_disk = bdev->bd_disk; in __multipath_map()
424 clone->cmd_flags |= REQ_FAILFAST_TRANSPORT; in __multipath_map()
451 static int multipath_map(struct dm_target *ti, struct request *clone, in multipath_map() argument
454 return __multipath_map(ti, clone, map_context, NULL, NULL); in multipath_map()
459 struct request **clone) in multipath_clone_and_map() argument
461 return __multipath_map(ti, NULL, map_context, rq, clone); in multipath_clone_and_map()
[all …]
Ddm-era-target.c1002 struct dm_block *clone; in metadata_take_snap() local
1028 &sb_validator, &clone, &inc); in metadata_take_snap()
1039 dm_tm_unlock(md->tm, clone); in metadata_take_snap()
1047 dm_tm_unlock(md->tm, clone); in metadata_take_snap()
1051 md->metadata_snap = dm_block_location(clone); in metadata_take_snap()
1053 dm_tm_unlock(md->tm, clone); in metadata_take_snap()
1062 struct dm_block *clone; in metadata_drop_snap() local
1070 r = dm_tm_read_lock(md->tm, md->metadata_snap, &sb_validator, &clone); in metadata_drop_snap()
1082 disk = dm_block_data(clone); in metadata_drop_snap()
1087 dm_tm_unlock(md->tm, clone); in metadata_drop_snap()
[all …]
/linux-4.4.14/net/ipv6/netfilter/
Dnf_conntrack_reasm.c414 struct sk_buff *clone; in nf_ct_frag6_reasm() local
417 clone = alloc_skb(0, GFP_ATOMIC); in nf_ct_frag6_reasm()
418 if (clone == NULL) in nf_ct_frag6_reasm()
421 clone->next = head->next; in nf_ct_frag6_reasm()
422 head->next = clone; in nf_ct_frag6_reasm()
423 skb_shinfo(clone)->frag_list = skb_shinfo(head)->frag_list; in nf_ct_frag6_reasm()
427 clone->len = clone->data_len = head->data_len - plen; in nf_ct_frag6_reasm()
428 head->data_len -= clone->len; in nf_ct_frag6_reasm()
429 head->len -= clone->len; in nf_ct_frag6_reasm()
430 clone->csum = 0; in nf_ct_frag6_reasm()
[all …]
/linux-4.4.14/fs/
Dposix_acl.c158 struct posix_acl *clone = NULL; in posix_acl_clone() local
163 clone = kmemdup(acl, size, flags); in posix_acl_clone()
164 if (clone) in posix_acl_clone()
165 atomic_set(&clone->a_refcount, 1); in posix_acl_clone()
167 return clone; in posix_acl_clone()
485 struct posix_acl *clone = posix_acl_clone(*acl, gfp); in __posix_acl_create() local
487 if (clone) { in __posix_acl_create()
488 err = posix_acl_create_masq(clone, mode_p); in __posix_acl_create()
490 posix_acl_release(clone); in __posix_acl_create()
491 clone = NULL; in __posix_acl_create()
[all …]
/linux-4.4.14/fs/f2fs/
Dacl.c266 struct posix_acl *clone = NULL; in f2fs_acl_clone() local
271 clone = kmemdup(acl, size, flags); in f2fs_acl_clone()
272 if (clone) in f2fs_acl_clone()
273 atomic_set(&clone->a_refcount, 1); in f2fs_acl_clone()
275 return clone; in f2fs_acl_clone()
337 struct posix_acl *clone; in f2fs_acl_create() local
354 clone = f2fs_acl_clone(p, GFP_NOFS); in f2fs_acl_create()
355 if (!clone) in f2fs_acl_create()
358 ret = f2fs_acl_create_masq(clone, mode); in f2fs_acl_create()
363 posix_acl_release(clone); in f2fs_acl_create()
[all …]
/linux-4.4.14/net/rds/
Dtcp_recv.c161 struct sk_buff *clone; in rds_tcp_data_recv() local
210 clone = skb_clone(skb, arg->gfp); in rds_tcp_data_recv()
211 if (!clone) { in rds_tcp_data_recv()
217 if (!pskb_pull(clone, offset) || in rds_tcp_data_recv()
218 pskb_trim(clone, to_copy)) { in rds_tcp_data_recv()
222 kfree_skb(clone); in rds_tcp_data_recv()
226 skb_queue_tail(&tinc->ti_skb_list, clone); in rds_tcp_data_recv()
231 clone, clone->data, clone->len); in rds_tcp_data_recv()
/linux-4.4.14/net/core/
Dtimestamping.c38 struct sk_buff *clone; in skb_clone_tx_timestamp() local
50 clone = skb_clone_sk(skb); in skb_clone_tx_timestamp()
51 if (!clone) in skb_clone_tx_timestamp()
53 phydev->drv->txtstamp(phydev, clone, type); in skb_clone_tx_timestamp()
Dskbuff.c1570 struct sk_buff *clone = NULL; in __pskb_pull_tail() local
1586 clone = skb_clone(list, GFP_ATOMIC); in __pskb_pull_tail()
1587 if (!clone) in __pskb_pull_tail()
1590 list = clone; in __pskb_pull_tail()
1597 kfree_skb(clone); in __pskb_pull_tail()
1610 if (clone) { in __pskb_pull_tail()
1611 clone->next = list; in __pskb_pull_tail()
1612 skb_shinfo(skb)->frag_list = clone; in __pskb_pull_tail()
3634 struct sk_buff *clone; in skb_clone_sk() local
3639 clone = skb_clone(skb, GFP_ATOMIC); in skb_clone_sk()
[all …]
/linux-4.4.14/drivers/net/ethernet/intel/fm10k/
Dfm10k_ptp.c58 struct sk_buff *clone; in fm10k_ts_tx_enqueue() local
62 clone = skb_clone_sk(skb); in fm10k_ts_tx_enqueue()
63 if (!clone) in fm10k_ts_tx_enqueue()
66 FM10K_CB(clone)->ts_tx_timeout = jiffies + FM10K_TS_TX_TIMEOUT; in fm10k_ts_tx_enqueue()
72 skb = fm10k_ts_tx_skb(interface, FM10K_CB(clone)->fi.w.dglort); in fm10k_ts_tx_enqueue()
74 skb_shinfo(clone)->tx_flags |= SKBTX_IN_PROGRESS; in fm10k_ts_tx_enqueue()
75 __skb_queue_tail(list, clone); in fm10k_ts_tx_enqueue()
82 dev_kfree_skb(clone); in fm10k_ts_tx_enqueue()
/linux-4.4.14/include/linux/
Ddevice-mapper.h49 typedef int (*dm_map_request_fn) (struct dm_target *ti, struct request *clone,
54 struct request **clone);
55 typedef void (*dm_release_clone_request_fn) (struct request *clone);
68 struct request *clone, int error,
296 struct bio clone; member
301 return (char *)bio - offsetof(struct dm_target_io, clone) - data_size; in dm_per_bio_data()
306 return (struct bio *)((char *)data + data_size + offsetof(struct dm_target_io, clone)); in dm_bio_from_per_bio_data()
311 return container_of(bio, struct dm_target_io, clone)->target_bio_nr; in dm_bio_get_target_bio_nr()
/linux-4.4.14/net/ieee802154/6lowpan/
Dreassembly.c263 struct sk_buff *clone; in lowpan_frag_reasm() local
266 clone = alloc_skb(0, GFP_ATOMIC); in lowpan_frag_reasm()
267 if (!clone) in lowpan_frag_reasm()
269 clone->next = head->next; in lowpan_frag_reasm()
270 head->next = clone; in lowpan_frag_reasm()
271 skb_shinfo(clone)->frag_list = skb_shinfo(head)->frag_list; in lowpan_frag_reasm()
275 clone->len = head->data_len - plen; in lowpan_frag_reasm()
276 clone->data_len = clone->len; in lowpan_frag_reasm()
277 head->data_len -= clone->len; in lowpan_frag_reasm()
278 head->len -= clone->len; in lowpan_frag_reasm()
[all …]
/linux-4.4.14/arch/um/kernel/skas/
DMakefile6 obj-y := clone.o mmu.o process.o syscall.o uaccess.o
13 UNPROFILE_OBJS := clone.o
/linux-4.4.14/net/ipv6/
Dreassembly.c433 struct sk_buff *clone; in ip6_frag_reasm() local
436 clone = alloc_skb(0, GFP_ATOMIC); in ip6_frag_reasm()
437 if (!clone) in ip6_frag_reasm()
439 clone->next = head->next; in ip6_frag_reasm()
440 head->next = clone; in ip6_frag_reasm()
441 skb_shinfo(clone)->frag_list = skb_shinfo(head)->frag_list; in ip6_frag_reasm()
445 clone->len = clone->data_len = head->data_len - plen; in ip6_frag_reasm()
446 head->data_len -= clone->len; in ip6_frag_reasm()
447 head->len -= clone->len; in ip6_frag_reasm()
448 clone->csum = 0; in ip6_frag_reasm()
[all …]
Draw.c214 struct sk_buff *clone = skb_clone(skb, GFP_ATOMIC); in ipv6_raw_deliver() local
217 if (clone) { in ipv6_raw_deliver()
218 nf_reset(clone); in ipv6_raw_deliver()
219 rawv6_rcv(sk, clone); in ipv6_raw_deliver()
/linux-4.4.14/drivers/gpu/drm/nouveau/nvkm/engine/dma/
Dusernv04.c35 bool clone; member
51 if (dmaobj->clone) { in nv04_dmaobj_bind()
99 dmaobj->clone = true; in nv04_dmaobj_new()
/linux-4.4.14/drivers/net/usb/
Dlg-vl600.c117 struct sk_buff *clone; in vl600_rx_fixup() local
218 clone = skb_clone(buf, GFP_ATOMIC); in vl600_rx_fixup()
219 if (!clone) in vl600_rx_fixup()
222 skb_trim(clone, packet_len); in vl600_rx_fixup()
223 usbnet_skb_return(dev, clone); in vl600_rx_fixup()
/linux-4.4.14/net/ipv4/
Dip_fragment.c580 struct sk_buff *clone; in ip_frag_reasm() local
583 clone = alloc_skb(0, GFP_ATOMIC); in ip_frag_reasm()
584 if (!clone) in ip_frag_reasm()
586 clone->next = head->next; in ip_frag_reasm()
587 head->next = clone; in ip_frag_reasm()
588 skb_shinfo(clone)->frag_list = skb_shinfo(head)->frag_list; in ip_frag_reasm()
592 clone->len = clone->data_len = head->data_len - plen; in ip_frag_reasm()
593 head->data_len -= clone->len; in ip_frag_reasm()
594 head->len -= clone->len; in ip_frag_reasm()
595 clone->csum = 0; in ip_frag_reasm()
[all …]
Dtcp_cong.c302 char *saved_clone, *clone, *name; in tcp_set_allowed_congestion_control() local
305 saved_clone = clone = kstrdup(val, GFP_USER); in tcp_set_allowed_congestion_control()
306 if (!clone) in tcp_set_allowed_congestion_control()
311 while ((name = strsep(&clone, " ")) && *name) { in tcp_set_allowed_congestion_control()
Draw.c190 struct sk_buff *clone = skb_clone(skb, GFP_ATOMIC); in raw_v4_input() local
193 if (clone) in raw_v4_input()
194 raw_rcv(sk, clone); in raw_v4_input()
/linux-4.4.14/fs/9p/
Dfid.c121 int i, n, l, clone, access; in v9fs_fid_lookup_with_uid() local
178 clone = 1; in v9fs_fid_lookup_with_uid()
186 fid = p9_client_walk(fid, l, &wnames[i], clone); in v9fs_fid_lookup_with_uid()
201 clone = 0; in v9fs_fid_lookup_with_uid()
/linux-4.4.14/Documentation/
Dunshare.txt37 threads. On Linux, at the time of thread creation using the clone system
56 when creating a new process using fork or clone, unshare can benefit
91 works on an active task (as opposed to clone/fork working on a newly
93 changes to copy_* functions utilized by clone/fork system call.
102 unshare reverses sharing that was done using clone(2) system call,
103 so unshare should have a similar interface as clone(2). That is,
104 since flags in clone(int flags, void *stack) specifies what should
107 the meaning of the flags from the way they are used in clone(2).
133 using clone(2).
175 clone(2), fork(2)
[all …]
Dnommu-mmap.txt12 Memory mapping behaviour also involves the way fork(), vfork(), clone() and
13 ptrace() work. Under uClinux there is no fork(), and clone() must be supplied
30 shared across fork() or clone() without CLONE_VM in the MMU case. Since
Dsparse.txt78 of sparse using git to clone..
Drtc.txt40 actually have a Motorola MC146818 (or clone) on the board. This is the
113 than expecting a single battery-backed MC146818 clone on every system.
Ddevices.txt390 172 = /dev/usemaclone Semaphore clone device
1791 Arla is a free clone of the Andrew File System, AFS.
2921 6 = /dev/sbei/wanc00 WAN clone device, port 0, board 0
2922 7 = /dev/sbei/wanc01 WAN clone device, port 1, board 0
2923 8 = /dev/sbei/wanc02 WAN clone device, port 2, board 0
2924 9 = /dev/sbei/wanc03 WAN clone device, port 3, board 0
2931 16 = /dev/sbei/wanc10 WAN clone device, port 0, board 1
2932 17 = /dev/sbei/wanc11 WAN clone device, port 1, board 1
2933 18 = /dev/sbei/wanc12 WAN clone device, port 2, board 1
2934 19 = /dev/sbei/wanc13 WAN clone device, port 3, board 1
Demail-clients.txt247 Thunderbird is an Outlook clone that likes to mangle text, but there are ways
Dadding-syscalls.txt387 different location (rt_sigreturn) or change the memory space (fork/vfork/clone)
DSubmittingPatches39 git clone git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
/linux-4.4.14/drivers/staging/fbtft/
DREADME14 git clone https://github.com/notro/fbtft.git
21 git clone https://github.com/notro/fbtft.git
/linux-4.4.14/drivers/scsi/cxlflash/
Dvlun.c49 static void marshal_clone_to_rele(struct dk_cxlflash_clone *clone, in marshal_clone_to_rele() argument
52 release->hdr = clone->hdr; in marshal_clone_to_rele()
53 release->context_id = clone->context_id_dst; in marshal_clone_to_rele()
1119 struct dk_cxlflash_clone *clone) in cxlflash_disk_clone() argument
1132 u64 ctxid_src = DECODE_CTXID(clone->context_id_src), in cxlflash_disk_clone()
1133 ctxid_dst = DECODE_CTXID(clone->context_id_dst), in cxlflash_disk_clone()
1134 rctxid_src = clone->context_id_src, in cxlflash_disk_clone()
1135 rctxid_dst = clone->context_id_dst; in cxlflash_disk_clone()
1136 int adap_fd_src = clone->adap_fd_src; in cxlflash_disk_clone()
1241 marshal_clone_to_rele(clone, &release); in cxlflash_disk_clone()
/linux-4.4.14/arch/um/os-Linux/
Dhelper.c74 pid = clone(helper_child, (void *) sp, CLONE_VM, &data); in run_helper()
124 pid = clone(proc, (void *) sp, flags, arg); in run_helper_thread()
/linux-4.4.14/Documentation/cgroups/
Dpids.txt8 new tasks from being fork()'d or clone()'d after a certain limit is reached.
26 policy through fork() or clone(). fork() and clone() will return -EAGAIN if the
Dcgroups.txt319 7) fork, exec or clone the job tasks from this founding father task.
Dcpusets.txt677 6) fork, exec or clone the job tasks from this founding father task.
/linux-4.4.14/net/ieee802154/
Dsocket.c377 struct sk_buff *clone; in ieee802154_raw_deliver() local
379 clone = skb_clone(skb, GFP_ATOMIC); in ieee802154_raw_deliver()
380 if (clone) in ieee802154_raw_deliver()
381 raw_rcv_skb(sk, clone); in ieee802154_raw_deliver()
807 struct sk_buff *clone; in ieee802154_dgram_deliver() local
809 clone = skb_clone(skb, GFP_ATOMIC); in ieee802154_dgram_deliver()
810 if (clone) in ieee802154_dgram_deliver()
811 dgram_rcv_skb(prev, clone); in ieee802154_dgram_deliver()
/linux-4.4.14/arch/um/drivers/
Dubd_user.c43 pid = clone(io_thread, (void *) sp, CLONE_FILES | CLONE_VM, NULL); in start_io_thread()
/linux-4.4.14/Documentation/prctl/
Dno_new_privs.txt21 clone, and execve and cannot be unset. With no_new_privs set, execve
55 several options to unshare(2) and clone(2) would be safe when
Dseccomp_filter.txt65 If fork/clone and execve are allowed by @prog, any child
/linux-4.4.14/Documentation/ia64/
Dxen.txt29 # hg clone http://xenbits.xensource.com/ext/ia64/xen-unstable.hg
31 # hg clone http://xenbits.xensource.com/ext/ia64/linux-2.6.18-xen.hg
127 # git clone http://people.valinux.co.jp/~yamahata/xen-ia64/linux-2.6-xen-ia64.git/
/linux-4.4.14/Documentation/networking/
Dtc-actions-env-rules.txt9 clone the packet.
Dbaycom.txt20 however if you have a broken UART clone that does not have working
Dnetdev-FAQ.txt129 to simply clone the repo, and then git grep the mainline commit ID, e.g.
Dppp_generic.txt255 this way an effect similar to Solaris' clone open is obtained,
/linux-4.4.14/drivers/net/ethernet/8390/
DKconfig32 tristate "ASIX AX88796 NE2000 clone support"
99 NE2000 and clone support" below.
114 This driver also works for the following NE2000 clone cards:
/linux-4.4.14/net/phonet/
Dsocket.c125 struct sk_buff *clone; in pn_deliver_sock_broadcast() local
132 clone = skb_clone(skb, GFP_ATOMIC); in pn_deliver_sock_broadcast()
133 if (clone) { in pn_deliver_sock_broadcast()
135 sk_receive_skb(sknode, clone, 0); in pn_deliver_sock_broadcast()
/linux-4.4.14/Documentation/DocBook/
Dnetworking.xml.db60 API-skb-clone-writable
106 API-skb-clone
138 API-skb-clone-sk
151 API-sk-clone-lock
247 API-rpc-clone-client
248 API-rpc-clone-client-set-auth
Dfilesystems.xml.db116 API---bio-clone-fast
117 API-bio-clone-fast
118 API-bio-clone-bioset
Dkernel-api.xml.db631 API-blk-rq-unprep-clone
632 API-blk-rq-prep-clone
/linux-4.4.14/Documentation/filesystems/
Dsharedsubtree.txt20 A process wants to clone its own namespace, but still wants to access the CD
152 A) A process wants to clone its own namespace, but still wants to
166 propagated to the other mount at /cdrom in all the other clone
179 A new process can clone off a new namespace. And mark some part
230 bind, rbind, move, mount, umount and clone-namespace operations.
366 which is clone of 'A', is created. Its root dentry is 'a' . 'C' is
375 which is clone of 'A', is created. Its root dentry is 'a'. 'C' is
383 mount 'C' which is clone of 'A', is created. Its root dentry is 'a' .
396 unbindable) mount. A new mount 'C' which is clone of 'A', is created.
400 which is a clone of 'A' is created. Its root dentry is 'a'. 'C' is
[all …]
Ddevpts.txt50 where 'ns_exec -cm /bin/bash' calls clone() with CLONE_NEWNS flag and execs
Dexofs.txt36 [parent-directory]$ git clone git://git.open-osd.org/open-osd.git
Dproc.txt1319 clone() system calls.
/linux-4.4.14/include/uapi/scsi/
Dcxlflash_ioctl.h152 struct dk_cxlflash_clone clone; member
/linux-4.4.14/include/net/netfilter/
Dnf_tables.h621 int (*clone)(struct nft_expr *dst, member
670 if (src->ops->clone) { in nft_expr_clone()
672 err = src->ops->clone(dst, src); in nft_expr_clone()
/linux-4.4.14/include/net/9p/
Dclient.h228 char **wnames, int clone);
/linux-4.4.14/tools/testing/selftests/memfd/
Dfuse_test.c211 pid = clone(sealing_thread_fn, in spawn_sealing_thread()
Dmemfd_test.c518 pid = clone(idle_thread_fn, in spawn_idle_thread()
/linux-4.4.14/net/netfilter/
Dnft_counter.c161 .clone = nft_counter_clone,
DKconfig875 this clone be rerouted to another nexthop.
/linux-4.4.14/drivers/uio/
DKconfig70 git clone git://ifup.org/philips/uioport.git
154 git clone git://rtime.felk.cvut.cz/mf6xx.git
/linux-4.4.14/arch/openrisc/
DREADME.openrisc37 git clone git://openrisc.net/jonas/or1ksim-svn
/linux-4.4.14/Documentation/sound/oss/
DSoundblaster36 clone SB devices
DREADME.OSS763 or a full 100% hardware compatible clone (like Thunderboard or
/linux-4.4.14/fs/gfs2/
Drgrp.c1297 const u8 *clone = bi->bi_clone ? bi->bi_clone : bi->bi_bh->b_data; in gfs2_rgrp_send_discards() local
1298 clone += bi->bi_offset; in gfs2_rgrp_send_discards()
1299 clone += x; in gfs2_rgrp_send_discards()
1302 diff = ~(*orig | (*orig >> 1)) & (*clone | (*clone >> 1)); in gfs2_rgrp_send_discards()
1304 diff = ~(*clone | (*clone >> 1)); in gfs2_rgrp_send_discards()
/linux-4.4.14/Documentation/device-mapper/
Dera.txt39 Create a clone of the metadata, to allow a userland process to read it.
/linux-4.4.14/Documentation/input/
Dwalkera0701.txt10 cg-clone http://zub.fei.tuke.sk/GIT/walkera0701-joystick
Djoystick-parport.txt105 either a NES or NES clone and will work with this connection. SNES gamepads
122 Pinout for NES clone (db9) gamepads Pinout for NES clone (db15) gamepads
/linux-4.4.14/arch/
DKconfig527 Architecture has tls passed as the 4th argument of clone(2),
533 Architecture has the first two arguments of clone(2) swapped.
538 Architecture has tls passed as the 3rd argument of clone(2),
/linux-4.4.14/kernel/
Dfork.c1809 SYSCALL_DEFINE5(clone, unsigned long, clone_flags, unsigned long, newsp, in SYSCALL_DEFINE5() argument
1814 SYSCALL_DEFINE5(clone, unsigned long, newsp, unsigned long, clone_flags, in SYSCALL_DEFINE5()
1819 SYSCALL_DEFINE6(clone, unsigned long, clone_flags, unsigned long, newsp, in SYSCALL_DEFINE5()
1825 SYSCALL_DEFINE5(clone, unsigned long, clone_flags, unsigned long, newsp, in SYSCALL_DEFINE5()
/linux-4.4.14/Documentation/fmc/
DFMC-and-SDB.txt19 available from the repository you can clone from:
/linux-4.4.14/Documentation/powerpc/
Dcxlflash.txt270 forks, child process can clone the parents context by first creating
272 perform the clone from the parent to the child.
274 The clone itself is fairly simple. The resource handle and lun
/linux-4.4.14/Documentation/hwmon/
Dadm102163 MAX1617A solves that. The ADM1021 is a straight clone of the MAX1617A.
Dit8773 * SiS950 [clone of IT8705F]
/linux-4.4.14/arch/um/os-Linux/skas/
Dprocess.c268 pid = clone(userspace_tramp, (void *) sp, flags, (void *) stub_stack); in start_userspace()
/linux-4.4.14/arch/powerpc/include/asm/
Dsystbl.h127 PPC_SYS(clone)
/linux-4.4.14/arch/s390/kernel/
Dcompat_wrapper.c158 COMPAT_SYSCALL_WRAP5(clone, unsigned long, newsp, unsigned long, clone_flags, int __user *, parent_…
/linux-4.4.14/arch/x86/entry/syscalls/
Dsyscall_64.tbl65 56 common clone stub_clone
Dsyscall_32.tbl129 120 i386 clone sys_clone stub32_clone
/linux-4.4.14/arch/alpha/kernel/
Dentry.S813 fork_like clone
/linux-4.4.14/arch/x86/entry/
Dentry_64.S366 FORK_LIKE clone
/linux-4.4.14/Documentation/frv/
Dfeatures.txt195 The MB93093 PDK board has an Ax88796 ethernet chipset (an NE2000 clone). A
/linux-4.4.14/net/9p/
Dclient.c1152 char **wnames, int clone) in p9_client_walk() argument
1164 if (clone) { in p9_client_walk()
/linux-4.4.14/sound/oss/
DCHANGELOG315 have an old SB Pro (the non-OPL-3 one) or a SB 2.0 clone which has a OPL-3.
DKconfig417 Labs or a 100% hardware compatible clone (like the Thunderboard or
/linux-4.4.14/Documentation/video4linux/
Dgspca.txt148 spca1528 04fc:1528 Sunplus MD80 clone
DZoran98 * Zoran zr36016 Video Front End or Fuji md0211 Video Front End (clone?)
/linux-4.4.14/Documentation/blockdev/
Dparide.txt50 as well as most of the clone and no-name products on the market.
/linux-4.4.14/
DREADME9 Linux is a clone of the operating system Unix, written from scratch by
DMakefile625 $(call cc-option,-fno-ipa-cp-clone,) \
/linux-4.4.14/Documentation/block/
Dbiodoc.txt457 lvm or raid) is achieved by cloning the bio (where the clone points to
626 for a non-clone bio. There are the 6 pools setup for different size biovecs,
635 The bio_clone() routine may be used to duplicate a bio, where the clone
/linux-4.4.14/Documentation/security/
Dkeys.txt156 clone, fork, vfork or execve occurs. A new keyring is created only when
160 clone, fork, vfork unless CLONE_THREAD is supplied, in which case it is
164 The session-specific keyring is persistent across clone, fork, vfork and
/linux-4.4.14/arch/sparc/kernel/
Dentry.S885 mov SIGCHLD, %o0 ! arg0: clone flags
/linux-4.4.14/Documentation/vm/
Dnuma_memory_policy.txt44 [clone() w/o the CLONE_VM flag] and exec*(). This allows a parent task
/linux-4.4.14/arch/parisc/kernel/
Dentry.S1734 fork_like clone
/linux-4.4.14/tools/lguest/
Dlguest.c1863 vq->thread = clone(do_thread, stack + 32768, CLONE_VM | SIGCHLD, vq); in start_virtqueue()
/linux-4.4.14/drivers/hwmon/
DKconfig624 IT8603E, IT8620E, and IT8623E sensor chips, and the SiS950 clone.