Searched refs:clone (Results 1 - 25 of 67) sorted by relevance

123

/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/arch/um/kernel/skas/
H A DMakefile6 obj-y := clone.o exec.o mem.o mmu.o process.o syscall.o tlb.o uaccess.o
8 # clone.o is in the stub, so it can't be built with profiling
13 UNPROFILE_OBJS := clone.o
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/fs/
H A Dgeneric_acl.c141 struct posix_acl *clone; local
144 clone = posix_acl_clone(acl, GFP_KERNEL);
146 if (!clone)
148 ops->setacl(inode, ACL_TYPE_DEFAULT, clone);
149 posix_acl_release(clone);
151 clone = posix_acl_clone(acl, GFP_KERNEL);
153 if (!clone)
155 error = posix_acl_create_masq(clone, &mode);
159 ops->setacl(inode, ACL_TYPE_ACCESS, clone);
161 posix_acl_release(clone);
180 struct posix_acl *acl, *clone; local
[all...]
H A Dposix_acl.c56 struct posix_acl *clone = NULL; local
61 clone = kmemdup(acl, size, flags);
62 if (clone)
63 atomic_set(&clone->a_refcount, 1);
65 return clone;
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/drivers/md/
H A Ddm-crypt.c399 struct bio *clone; local
404 clone = bio_alloc_bioset(GFP_NOIO, nr_iovecs, cc->bs);
405 if (!clone)
408 clone_init(io, clone);
411 struct bio_vec *bv = bio_iovec_idx(clone, i);
431 clone->bi_size += bv->bv_len;
432 clone->bi_vcnt++;
436 if (!clone->bi_size) {
437 bio_put(clone);
441 return clone;
444 crypt_free_buffer_pages(struct crypt_config *cc, struct bio *clone, unsigned int bytes) argument
512 crypt_endio(struct bio *clone, unsigned int done, int error) argument
548 clone_init(struct crypt_io *io, struct bio *clone) argument
563 struct bio *clone; local
594 struct bio *clone; local
[all...]
H A Ddm.c560 static void __map_bio(struct dm_target *ti, struct bio *clone, argument
570 BUG_ON(!clone->bi_size);
572 clone->bi_end_io = clone_endio;
573 clone->bi_private = tio;
576 * Map the clone. If r == 0 we don't need to do
581 sector = clone->bi_sector;
582 r = ti->type->map(ti, clone, &tio->info);
586 blk_add_trace_remap(bdev_get_queue(clone->bi_bdev), clone,
588 clone
631 struct bio *clone; local
656 struct bio *clone; local
672 struct bio *clone, *bio = ci->bio; local
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/arch/um/include/
H A Dkern.h18 extern int clone(int (*proc)(void *), void *sp, int flags, void *data);
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/fs/jfs/
H A Dacl.c151 struct posix_acl *clone; local
168 clone = posix_acl_clone(acl, GFP_KERNEL);
169 if (!clone) {
174 rc = posix_acl_create_masq(clone, &mode);
179 clone);
181 posix_acl_release(clone);
195 struct posix_acl *acl, *clone; local
205 clone = posix_acl_clone(acl, GFP_KERNEL);
207 if (!clone)
210 rc = posix_acl_chmod_masq(clone, inod
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/net/bridge/
H A Dbr_forward.c154 static void br_flood(struct net_bridge *br, struct sk_buff *skb, int clone, argument
161 if (clone) {
202 void br_flood_deliver(struct net_bridge *br, struct sk_buff *skb, int clone) argument
204 br_flood(br, skb, clone, __br_deliver);
208 void br_flood_forward(struct net_bridge *br, struct sk_buff *skb, int clone) argument
210 br_flood(br, skb, clone, __br_forward);
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/db-4.7.25.NC/java/src/com/sleepycat/persist/evolve/
H A DEvolveConfig.java41 return (EvolveConfig) clone();
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/fs/gfs2/
H A Dacl.c201 struct posix_acl *acl = NULL, *clone; local
225 clone = posix_acl_clone(acl, GFP_KERNEL);
227 if (!clone)
230 acl = clone;
263 struct posix_acl *acl = NULL, *clone; local
275 clone = posix_acl_clone(acl, GFP_KERNEL);
277 if (!clone)
280 acl = clone;
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/net/tipc/
H A Deth_media.c71 struct sk_buff *clone; local
74 clone = skb_clone(buf, GFP_ATOMIC);
75 if (clone) {
76 skb_reset_network_header(clone);
78 clone->dev = dev;
79 dev->hard_header(clone, dev, ETH_P_TIPC,
81 dev->dev_addr, clone->len);
82 dev_queue_xmit(clone);
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/fs/ext2/
H A Dacl.c324 struct posix_acl *clone; local
332 clone = posix_acl_clone(acl, GFP_KERNEL);
334 if (!clone)
337 error = posix_acl_create_masq(clone, &mode);
343 ACL_TYPE_ACCESS, clone);
346 posix_acl_release(clone);
370 struct posix_acl *acl, *clone; local
380 clone = posix_acl_clone(acl, GFP_KERNEL);
382 if (!clone)
384 error = posix_acl_chmod_masq(clone, inod
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/fs/ext3/
H A Dacl.c329 struct posix_acl *clone; local
338 clone = posix_acl_clone(acl, GFP_KERNEL);
340 if (!clone)
344 error = posix_acl_create_masq(clone, &mode);
350 ACL_TYPE_ACCESS, clone);
353 posix_acl_release(clone);
377 struct posix_acl *acl, *clone; local
387 clone = posix_acl_clone(acl, GFP_KERNEL);
389 if (!clone)
391 error = posix_acl_chmod_masq(clone, inod
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/fs/ext4/
H A Dacl.c329 struct posix_acl *clone; local
338 clone = posix_acl_clone(acl, GFP_KERNEL);
340 if (!clone)
344 error = posix_acl_create_masq(clone, &mode);
350 ACL_TYPE_ACCESS, clone);
353 posix_acl_release(clone);
377 struct posix_acl *acl, *clone; local
387 clone = posix_acl_clone(acl, GFP_KERNEL);
389 if (!clone)
391 error = posix_acl_chmod_masq(clone, inod
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/fs/jffs2/
H A Dacl.c313 struct posix_acl *acl = NULL, *clone; local
332 clone = posix_acl_clone(acl, GFP_KERNEL);
334 if (!clone)
337 rc = posix_acl_create_masq(clone, &mode);
341 rc = jffs2_set_acl(inode, ACL_TYPE_ACCESS, clone);
343 posix_acl_release(clone);
364 struct posix_acl *acl, *clone; local
372 clone = posix_acl_clone(acl, GFP_KERNEL);
374 if (!clone)
376 rc = posix_acl_chmod_masq(clone, inod
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/arch/um/drivers/
H A Dubd_user.c46 pid = clone(io_thread, (void *) sp, CLONE_FILES | CLONE_VM | SIGCHLD,
50 printk("start_io_thread - clone failed : errno = %d\n", errno);
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/net/ipv6/netfilter/
H A Dnf_conntrack_reasm.c599 struct sk_buff *clone; local
602 if ((clone = alloc_skb(0, GFP_ATOMIC)) == NULL) {
606 clone->next = head->next;
607 head->next = clone;
608 skb_shinfo(clone)->frag_list = skb_shinfo(head)->frag_list;
612 clone->len = clone->data_len = head->data_len - plen;
613 head->data_len -= clone->len;
614 head->len -= clone->len;
615 clone
752 struct sk_buff *clone; local
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/net/ipv4/
H A Dip_fragment.c619 struct sk_buff *clone; local
622 if ((clone = alloc_skb(0, GFP_ATOMIC)) == NULL)
624 clone->next = head->next;
625 head->next = clone;
626 skb_shinfo(clone)->frag_list = skb_shinfo(head)->frag_list;
630 clone->len = clone->data_len = head->data_len - plen;
631 head->data_len -= clone->len;
632 head->len -= clone->len;
633 clone
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/db-4.7.25.NC/java/src/com/sleepycat/persist/
H A DStoreConfig.java59 return (StoreConfig) clone();
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/ppp-2.4.4/solaris/
H A DMakefile.sol253 if grep clone:ppp /etc/minor_perm; then :; else \
54 echo clone:ppp 0644 root sys >>/etc/minor_perm; fi
H A DMakefile.sol2gcc53 if grep clone:ppp /etc/minor_perm; then :; else \
54 echo clone:ppp 0644 root sys >>/etc/minor_perm; fi
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/prebuilt/WW/www/cgi-bin/
H A Djquery.flexbox.min.js416 $link.clone(true).attr('id', divId + 'f').attr('page', 1).html(first).appendTo($paging);
417 $link.clone(true).attr('id', divId + 'p').attr('page', currentPage - 1).html(prev).appendTo($paging);
420 $span.clone(true).html(first).appendTo($paging);
421 $span.clone(true).html(prev).appendTo($paging);
430 $span.clone(true).html(currentPage).appendTo($paging);
433 $link.clone(true).attr('page', i).html(i).appendTo($paging);
446 $link.clone(true).attr('page', startPage - 1).html(more).appendTo($paging);
454 $span.clone(true).html(i).appendTo($paging);
457 $link.clone(true).attr('page', i).html(i).appendTo($paging);
462 $link.clone(tru
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/prebuilt/WW/www/script/
H A Djquery.flexbox.min.js416 $link.clone(true).attr('id', divId + 'f').attr('page', 1).html(first).appendTo($paging);
417 $link.clone(true).attr('id', divId + 'p').attr('page', currentPage - 1).html(prev).appendTo($paging);
420 $span.clone(true).html(first).appendTo($paging);
421 $span.clone(true).html(prev).appendTo($paging);
430 $span.clone(true).html(currentPage).appendTo($paging);
433 $link.clone(true).attr('page', i).html(i).appendTo($paging);
446 $link.clone(true).attr('page', startPage - 1).html(more).appendTo($paging);
454 $span.clone(true).html(i).appendTo($paging);
457 $link.clone(true).attr('page', i).html(i).appendTo($paging);
462 $link.clone(tru
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/fs/reiserfs/
H A Dxattr_acl.c421 struct posix_acl *acl, *clone; local
439 clone = posix_acl_clone(acl, GFP_NOFS);
441 if (!clone)
443 error = posix_acl_chmod_masq(clone, inode->i_mode);
451 error = reiserfs_set_acl(inode, ACL_TYPE_ACCESS, clone);
458 posix_acl_release(clone);
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/arch/um/os-Linux/
H A Dhelper.c78 pid = clone(helper_child, (void *) sp, CLONE_VM | SIGCHLD, &data);
81 printk("run_helper : clone failed, errno = %d\n", errno);
129 pid = clone(proc, (void *) sp, flags | SIGCHLD, arg);
132 printk("run_helper_thread : clone failed, errno = %d\n",

Completed in 187 milliseconds

123