/linux-4.1.27/drivers/md/ |
D | dm.c | 85 struct request *orig, *clone; member 102 struct bio clone; member 609 bio_put(&tio->clone); in free_tio() 960 struct dm_target_io *tio = container_of(bio, struct dm_target_io, clone); in clone_endio() 996 static void end_clone_bio(struct bio *clone, int error) in end_clone_bio() argument 999 container_of(clone, struct dm_rq_clone_bio_info, clone); in end_clone_bio() 1004 bio_put(clone); in end_clone_bio() 1077 static void free_rq_clone(struct request *clone) in free_rq_clone() argument 1079 struct dm_rq_target_io *tio = clone->end_io_data; in free_rq_clone() 1082 blk_rq_unprep_clone(clone); in free_rq_clone() [all …]
|
D | dm-crypt.c | 954 static void crypt_free_buffer_pages(struct crypt_config *cc, struct bio *clone); 976 struct bio *clone; in crypt_alloc_buffer() local 987 clone = bio_alloc_bioset(GFP_NOIO, nr_iovecs, cc->bs); in crypt_alloc_buffer() 988 if (!clone) in crypt_alloc_buffer() 991 clone_init(io, clone); in crypt_alloc_buffer() 998 crypt_free_buffer_pages(cc, clone); in crypt_alloc_buffer() 999 bio_put(clone); in crypt_alloc_buffer() 1006 bvec = &clone->bi_io_vec[clone->bi_vcnt++]; in crypt_alloc_buffer() 1011 clone->bi_iter.bi_size += len; in crypt_alloc_buffer() 1020 return clone; in crypt_alloc_buffer() [all …]
|
D | dm-target.c | 134 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
|
D | dm-mpath.c | 382 static int __multipath_map(struct dm_target *ti, struct request *clone, in __multipath_map() argument 388 size_t nr_bytes = clone ? blk_rq_bytes(clone) : blk_rq_bytes(rq); in __multipath_map() 423 if (clone) { in __multipath_map() 425 clone->q = bdev_get_queue(bdev); in __multipath_map() 426 clone->rq_disk = bdev->bd_disk; in __multipath_map() 427 clone->cmd_flags |= REQ_FAILFAST_TRANSPORT; in __multipath_map() 454 static int multipath_map(struct dm_target *ti, struct request *clone, in multipath_map() argument 457 return __multipath_map(ti, clone, map_context, NULL, NULL); in multipath_map() 462 struct request **clone) in multipath_clone_and_map() argument 464 return __multipath_map(ti, NULL, map_context, rq, clone); in multipath_clone_and_map() [all …]
|
D | dm-era-target.c | 998 struct dm_block *clone; in metadata_take_snap() local 1024 &sb_validator, &clone, &inc); in metadata_take_snap() 1035 dm_tm_unlock(md->tm, clone); in metadata_take_snap() 1043 dm_tm_unlock(md->tm, clone); in metadata_take_snap() 1047 md->metadata_snap = dm_block_location(clone); in metadata_take_snap() 1049 r = dm_tm_unlock(md->tm, clone); in metadata_take_snap() 1063 struct dm_block *clone; in metadata_drop_snap() local 1071 r = dm_tm_read_lock(md->tm, md->metadata_snap, &sb_validator, &clone); in metadata_drop_snap() 1083 disk = dm_block_data(clone); in metadata_drop_snap() 1088 dm_tm_unlock(md->tm, clone); in metadata_drop_snap() [all …]
|
/linux-4.1.27/net/ipv6/netfilter/ |
D | nf_conntrack_reasm.c | 414 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.1.27/net/rds/ |
D | tcp_recv.c | 161 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.1.27/net/core/ |
D | timestamping.c | 38 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()
|
D | skbuff.c | 1618 struct sk_buff *clone = NULL; in __pskb_pull_tail() local 1634 clone = skb_clone(list, GFP_ATOMIC); in __pskb_pull_tail() 1635 if (!clone) in __pskb_pull_tail() 1638 list = clone; in __pskb_pull_tail() 1645 kfree_skb(clone); in __pskb_pull_tail() 1658 if (clone) { in __pskb_pull_tail() 1659 clone->next = list; in __pskb_pull_tail() 1660 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.1.27/fs/ |
D | posix_acl.c | 158 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.1.27/net/ieee802154/6lowpan/ |
D | reassembly.c | 274 struct sk_buff *clone; in lowpan_frag_reasm() local 277 clone = alloc_skb(0, GFP_ATOMIC); in lowpan_frag_reasm() 278 if (!clone) in lowpan_frag_reasm() 280 clone->next = head->next; in lowpan_frag_reasm() 281 head->next = clone; in lowpan_frag_reasm() 282 skb_shinfo(clone)->frag_list = skb_shinfo(head)->frag_list; in lowpan_frag_reasm() 286 clone->len = head->data_len - plen; in lowpan_frag_reasm() 287 clone->data_len = clone->len; in lowpan_frag_reasm() 288 head->data_len -= clone->len; in lowpan_frag_reasm() 289 head->len -= clone->len; in lowpan_frag_reasm() [all …]
|
/linux-4.1.27/include/linux/ |
D | device-mapper.h | 49 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, 298 struct bio clone; member 303 return (char *)bio - offsetof(struct dm_target_io, clone) - data_size; in dm_per_bio_data() 308 return (struct bio *)((char *)data + data_size + offsetof(struct dm_target_io, clone)); in dm_bio_from_per_bio_data() 313 return container_of(bio, struct dm_target_io, clone)->target_bio_nr; in dm_bio_get_target_bio_nr()
|
/linux-4.1.27/arch/um/kernel/skas/ |
D | Makefile | 6 obj-y := clone.o mmu.o process.o syscall.o uaccess.o 13 UNPROFILE_OBJS := clone.o
|
/linux-4.1.27/drivers/net/ethernet/intel/fm10k/ |
D | fm10k_ptp.c | 58 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_queue_tail(list, clone); in fm10k_ts_tx_enqueue() 82 skb_shinfo(clone)->tx_flags |= SKBTX_IN_PROGRESS; in fm10k_ts_tx_enqueue()
|
/linux-4.1.27/net/ipv6/ |
D | reassembly.c | 433 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 …]
|
D | raw.c | 214 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.1.27/net/ipv4/ |
D | ip_fragment.c | 559 struct sk_buff *clone; in ip_frag_reasm() local 562 clone = alloc_skb(0, GFP_ATOMIC); in ip_frag_reasm() 563 if (!clone) in ip_frag_reasm() 565 clone->next = head->next; in ip_frag_reasm() 566 head->next = clone; in ip_frag_reasm() 567 skb_shinfo(clone)->frag_list = skb_shinfo(head)->frag_list; in ip_frag_reasm() 571 clone->len = clone->data_len = head->data_len - plen; in ip_frag_reasm() 572 head->data_len -= clone->len; in ip_frag_reasm() 573 head->len -= clone->len; in ip_frag_reasm() 574 clone->csum = 0; in ip_frag_reasm() [all …]
|
D | tcp_cong.c | 291 char *saved_clone, *clone, *name; in tcp_set_allowed_congestion_control() local 294 saved_clone = clone = kstrdup(val, GFP_USER); in tcp_set_allowed_congestion_control() 295 if (!clone) in tcp_set_allowed_congestion_control() 300 while ((name = strsep(&clone, " ")) && *name) { in tcp_set_allowed_congestion_control()
|
D | raw.c | 190 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.1.27/net/tipc/ |
D | udp_media.c | 157 struct sk_buff *clone; in tipc_udp_send_msg() local 160 clone = skb_clone(skb, GFP_ATOMIC); in tipc_udp_send_msg() 161 skb_set_inner_protocol(clone, htons(ETH_P_TIPC)); in tipc_udp_send_msg() 171 .flowi4_mark = clone->mark, in tipc_udp_send_msg() 180 err = udp_tunnel_xmit_skb(rt, ub->ubsock->sk, clone, in tipc_udp_send_msg() 202 err = udp_tunnel6_xmit_skb(ndst, ub->ubsock->sk, clone, in tipc_udp_send_msg() 211 kfree_skb(clone); in tipc_udp_send_msg()
|
D | bearer.c | 428 struct sk_buff *clone; in tipc_l2_send_msg() local 436 clone = skb_clone(buf, GFP_ATOMIC); in tipc_l2_send_msg() 437 if (!clone) in tipc_l2_send_msg() 442 pskb_expand_head(clone, SKB_DATA_ALIGN(delta), 0, GFP_ATOMIC)) { in tipc_l2_send_msg() 443 kfree_skb(clone); in tipc_l2_send_msg() 447 skb_reset_network_header(clone); in tipc_l2_send_msg() 448 clone->dev = dev; in tipc_l2_send_msg() 449 clone->protocol = htons(ETH_P_TIPC); in tipc_l2_send_msg() 450 dev_hard_header(clone, dev, ETH_P_TIPC, dest->value, in tipc_l2_send_msg() 451 dev->dev_addr, clone->len); in tipc_l2_send_msg() [all …]
|
/linux-4.1.27/drivers/net/usb/ |
D | lg-vl600.c | 117 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.1.27/drivers/gpu/drm/nouveau/nvkm/engine/dmaobj/ |
D | nv04.c | 34 bool clone; member 62 if (priv->clone) { in nv04_dmaobj_bind() 100 priv->clone = true; in nv04_dmaobj_ctor()
|
/linux-4.1.27/fs/9p/ |
D | fid.c | 121 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.1.27/Documentation/ |
D | unshare.txt | 37 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 …]
|
D | nommu-mmap.txt | 12 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
|
D | sparse.txt | 78 of sparse using git to clone..
|
D | rtc.txt | 40 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.
|
D | devices.txt | 390 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
|
D | email-clients.txt | 211 Thunderbird is an Outlook clone that likes to mangle text, but there are ways
|
D | SubmittingPatches | 39 git clone git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
|
/linux-4.1.27/fs/f2fs/ |
D | acl.c | 266 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()
|
/linux-4.1.27/drivers/staging/fbtft/ |
D | README | 14 git clone https://github.com/notro/fbtft.git 21 git clone https://github.com/notro/fbtft.git
|
/linux-4.1.27/arch/um/os-Linux/ |
D | helper.c | 74 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.1.27/drivers/gpu/drm/exynos/ |
D | exynos_drm_encoder.c | 133 struct drm_encoder *clone; in exynos_drm_encoder_clones() local 140 list_for_each_entry(clone, &dev->mode_config.encoder_list, head) { in exynos_drm_encoder_clones()
|
/linux-4.1.27/net/ieee802154/ |
D | socket.c | 385 struct sk_buff *clone; in ieee802154_raw_deliver() local 387 clone = skb_clone(skb, GFP_ATOMIC); in ieee802154_raw_deliver() 388 if (clone) in ieee802154_raw_deliver() 389 raw_rcv_skb(sk, clone); in ieee802154_raw_deliver() 815 struct sk_buff *clone; in ieee802154_dgram_deliver() local 817 clone = skb_clone(skb, GFP_ATOMIC); in ieee802154_dgram_deliver() 818 if (clone) in ieee802154_dgram_deliver() 819 dgram_rcv_skb(prev, clone); in ieee802154_dgram_deliver()
|
/linux-4.1.27/arch/um/drivers/ |
D | ubd_user.c | 43 pid = clone(io_thread, (void *) sp, CLONE_FILES | CLONE_VM, NULL); in start_io_thread()
|
/linux-4.1.27/Documentation/prctl/ |
D | no_new_privs.txt | 21 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
|
D | seccomp_filter.txt | 65 If fork/clone and execve are allowed by @prog, any child
|
/linux-4.1.27/Documentation/ia64/ |
D | xen.txt | 29 # 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.1.27/net/phonet/ |
D | socket.c | 125 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.1.27/Documentation/filesystems/ |
D | sharedsubtree.txt | 20 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 …]
|
D | devpts.txt | 50 where 'ns_exec -cm /bin/bash' calls clone() with CLONE_NEWNS flag and execs
|
D | exofs.txt | 36 [parent-directory]$ git clone git://git.open-osd.org/open-osd.git
|
D | proc.txt | 1304 clone() system calls.
|
/linux-4.1.27/drivers/net/ethernet/8390/ |
D | Kconfig | 34 tristate "ASIX AX88796 NE2000 clone support" 104 NE2000 and clone support" below. 120 This driver also works for the following NE2000 clone cards:
|
/linux-4.1.27/Documentation/networking/ |
D | tc-actions-env-rules.txt | 9 clone the packet.
|
D | baycom.txt | 20 however if you have a broken UART clone that does not have working
|
D | netdev-FAQ.txt | 129 to simply clone the repo, and then git grep the mainline commit ID, e.g.
|
D | ppp_generic.txt | 255 this way an effect similar to Solaris' clone open is obtained,
|
/linux-4.1.27/include/net/9p/ |
D | client.h | 228 char **wnames, int clone);
|
/linux-4.1.27/tools/testing/selftests/memfd/ |
D | fuse_test.c | 211 pid = clone(sealing_thread_fn, in spawn_sealing_thread()
|
D | memfd_test.c | 517 pid = clone(idle_thread_fn, in spawn_idle_thread()
|
/linux-4.1.27/drivers/uio/ |
D | Kconfig | 70 git clone git://ifup.org/philips/uioport.git 154 git clone git://rtime.felk.cvut.cz/mf6xx.git
|
/linux-4.1.27/Documentation/sound/oss/ |
D | Soundblaster | 36 clone SB devices
|
D | README.OSS | 763 or a full 100% hardware compatible clone (like Thunderboard or
|
/linux-4.1.27/arch/openrisc/ |
D | README.openrisc | 37 git clone git://openrisc.net/jonas/or1ksim-svn
|
/linux-4.1.27/fs/gfs2/ |
D | rgrp.c | 1281 const u8 *clone = bi->bi_clone ? bi->bi_clone : bi->bi_bh->b_data; in gfs2_rgrp_send_discards() local 1282 clone += bi->bi_offset; in gfs2_rgrp_send_discards() 1283 clone += x; in gfs2_rgrp_send_discards() 1286 diff = ~(*orig | (*orig >> 1)) & (*clone | (*clone >> 1)); in gfs2_rgrp_send_discards() 1288 diff = ~(*clone | (*clone >> 1)); in gfs2_rgrp_send_discards()
|
/linux-4.1.27/Documentation/device-mapper/ |
D | era.txt | 39 Create a clone of the metadata, to allow a userland process to read it.
|
/linux-4.1.27/kernel/ |
D | fork.c | 1778 SYSCALL_DEFINE5(clone, unsigned long, clone_flags, unsigned long, newsp, in SYSCALL_DEFINE5() argument 1783 SYSCALL_DEFINE5(clone, unsigned long, newsp, unsigned long, clone_flags, in SYSCALL_DEFINE5() 1788 SYSCALL_DEFINE6(clone, unsigned long, clone_flags, unsigned long, newsp, in SYSCALL_DEFINE5() 1794 SYSCALL_DEFINE5(clone, unsigned long, clone_flags, unsigned long, newsp, in SYSCALL_DEFINE5()
|
/linux-4.1.27/Documentation/input/ |
D | walkera0701.txt | 10 cg-clone http://zub.fei.tuke.sk/GIT/walkera0701-joystick
|
D | joystick-parport.txt | 105 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.1.27/arch/ |
D | Kconfig | 508 Architecture has tls passed as the 4th argument of clone(2), 514 Architecture has the first two arguments of clone(2) swapped. 519 Architecture has tls passed as the 3rd argument of clone(2),
|
/linux-4.1.27/Documentation/fmc/ |
D | FMC-and-SDB.txt | 19 available from the repository you can clone from:
|
/linux-4.1.27/Documentation/hwmon/ |
D | adm1021 | 63 MAX1617A solves that. The ADM1021 is a straight clone of the MAX1617A.
|
D | it87 | 69 * SiS950 [clone of IT8705F]
|
/linux-4.1.27/arch/powerpc/include/asm/ |
D | systbl.h | 127 PPC_SYS(clone)
|
/linux-4.1.27/arch/um/os-Linux/skas/ |
D | process.c | 269 pid = clone(userspace_tramp, (void *) sp, flags, (void *) stub_stack); in start_userspace()
|
/linux-4.1.27/arch/s390/kernel/ |
D | compat_wrapper.c | 205 COMPAT_SYSCALL_WRAP5(clone, unsigned long, newsp, unsigned long, clone_flags, int __user *, parent_…
|
/linux-4.1.27/arch/x86/syscalls/ |
D | syscall_64.tbl | 65 56 common clone stub_clone
|
D | syscall_32.tbl | 129 120 i386 clone sys_clone stub32_clone
|
/linux-4.1.27/arch/alpha/kernel/ |
D | entry.S | 813 fork_like clone
|
/linux-4.1.27/Documentation/frv/ |
D | features.txt | 195 The MB93093 PDK board has an Ax88796 ethernet chipset (an NE2000 clone). A
|
/linux-4.1.27/arch/x86/kernel/ |
D | entry_64.S | 501 FORK_LIKE clone
|
/linux-4.1.27/net/9p/ |
D | client.c | 1152 char **wnames, int clone) in p9_client_walk() argument 1164 if (clone) { in p9_client_walk()
|
/linux-4.1.27/Documentation/video4linux/ |
D | gspca.txt | 148 spca1528 04fc:1528 Sunplus MD80 clone
|
D | Zoran | 98 * Zoran zr36016 Video Front End or Fuji md0211 Video Front End (clone?)
|
/linux-4.1.27/sound/oss/ |
D | CHANGELOG | 315 have an old SB Pro (the non-OPL-3 one) or a SB 2.0 clone which has a OPL-3.
|
D | Kconfig | 417 Labs or a 100% hardware compatible clone (like the Thunderboard or
|
/linux-4.1.27/arch/sparc/kernel/ |
D | entry.S | 885 mov SIGCHLD, %o0 ! arg0: clone flags
|
/linux-4.1.27/ |
D | Makefile | 629 $(call cc-option,-fno-ipa-cp-clone,) \
|
D | README | 9 Linux is a clone of the operating system Unix, written from scratch by
|
/linux-4.1.27/Documentation/blockdev/ |
D | paride.txt | 50 as well as most of the clone and no-name products on the market.
|
/linux-4.1.27/Documentation/security/ |
D | keys.txt | 156 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.1.27/Documentation/block/ |
D | biodoc.txt | 457 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.1.27/arch/parisc/kernel/ |
D | entry.S | 1722 fork_like clone
|
/linux-4.1.27/Documentation/vm/ |
D | numa_memory_policy.txt | 44 [clone() w/o the CLONE_VM flag] and exec*(). This allows a parent task
|
/linux-4.1.27/tools/lguest/ |
D | lguest.c | 1859 vq->thread = clone(do_thread, stack + 32768, CLONE_VM | SIGCHLD, vq); in start_virtqueue()
|
/linux-4.1.27/Documentation/cgroups/ |
D | cgroups.txt | 319 7) fork, exec or clone the job tasks from this founding father task.
|
D | cpusets.txt | 677 6) fork, exec or clone the job tasks from this founding father task.
|
/linux-4.1.27/net/netfilter/ |
D | Kconfig | 859 this clone be rerouted to another nexthop.
|
/linux-4.1.27/drivers/hwmon/ |
D | Kconfig | 604 IT8603E, IT8620E, and IT8623E sensor chips, and the SiS950 clone.
|