/linux-4.4.14/arch/ia64/scripts/ |
H A D | check-text-align.S | 1 .proc foo 3 foo: .save rp, r2 label 6 .endp foo
|
/linux-4.4.14/drivers/staging/lustre/lustre/include/ |
H A D | lu_ref.h | 35 * Suppose there is a reference counted data-structure struct foo. To track 36 * who acquired references to instance of struct foo, add lu_ref field to it: 39 * struct foo { 46 * foo::foo_reference has to be initialized by calling 48 * decrement foo::foo_refcount, let's say they are foo_get(struct foo *foo) 49 * and foo_put(struct foo *foo), respectively. 51 * Whenever foo_get() is called to acquire a reference on a foo, lu_ref_add() 52 * has to be called to insert into foo::foo_reference a record, describing 59 * // bar owns a reference to foo. 60 * bar->bar_foo = foo_get(foo); 61 * lu_ref_add(&foo->foo_reference, "bar", bar); 65 * // reference from bar to foo is released. 66 * lu_ref_del(&foo->foo_reference, "bar", bar); 70 * // current thread acquired a temporary reference to foo. 71 * foo_get(foo); 72 * lu_ref_add(&foo->reference, __func__, current); 77 * lu_ref_del(&foo->reference, __func__, current); 78 * foo_put(foo); 83 * foo is destroyed, lu_ref_fini() has to be called that checks that no 90 * in the same place where pointer to struct foo is stored), and use 94 * // There is a large number of bar's for a single foo. 95 * bar->bar_foo = foo_get(foo); 96 * bar->bar_foo_ref = lu_ref_add(&foo->foo_reference, "bar", bar); 100 * // reference from bar to foo is released. 101 * lu_ref_del_at(&foo->foo_reference, bar->bar_foo_ref, "bar", bar);
|
/linux-4.4.14/samples/kobject/ |
H A D | kset-example.c | 20 * Then tree kobjects are created and assigned to this kset, "foo", "baz", 33 int foo; member in struct:foo_obj 42 ssize_t (*show)(struct foo_obj *foo, struct foo_attribute *attr, char *buf); 43 ssize_t (*store)(struct foo_obj *foo, struct foo_attribute *attr, const char *buf, size_t count); 59 struct foo_obj *foo; foo_attr_show() local 62 foo = to_foo_obj(kobj); foo_attr_show() 67 return attribute->show(foo, attribute, buf); foo_attr_show() 79 struct foo_obj *foo; foo_attr_store() local 82 foo = to_foo_obj(kobj); foo_attr_store() 87 return attribute->store(foo, attribute, buf, len); foo_attr_store() 105 struct foo_obj *foo; foo_release() local 107 foo = to_foo_obj(kobj); foo_release() 108 kfree(foo); foo_release() 112 * The "foo" file where the .foo variable is read from and written to. 117 return sprintf(buf, "%d\n", foo_obj->foo); foo_show() 125 ret = kstrtoint(buf, 10, &foo_obj->foo); foo_store() 134 __ATTR(foo, 0664, foo_show, foo_store); 202 struct foo_obj *foo; create_foo_obj() local 206 foo = kzalloc(sizeof(*foo), GFP_KERNEL); create_foo_obj() 207 if (!foo) create_foo_obj() 214 foo->kobj.kset = example_kset; create_foo_obj() 222 retval = kobject_init_and_add(&foo->kobj, &foo_ktype, NULL, "%s", name); create_foo_obj() 224 kobject_put(&foo->kobj); create_foo_obj() 232 kobject_uevent(&foo->kobj, KOBJ_ADD); create_foo_obj() 234 return foo; create_foo_obj() 237 static void destroy_foo_obj(struct foo_obj *foo) destroy_foo_obj() argument 239 kobject_put(&foo->kobj); destroy_foo_obj() 255 foo_obj = create_foo_obj("foo"); example_init()
|
H A D | kobject-example.c | 19 * "foo", "baz", and "bar". If an integer is written to these files, it can be 23 static int foo; variable 28 * The "foo" file where a static variable is read from and written to. 33 return sprintf(buf, "%d\n", foo); foo_show() 41 ret = kstrtoint(buf, 10, &foo); foo_store() 50 __ATTR(foo, 0664, foo_show, foo_store);
|
/linux-4.4.14/arch/m32r/kernel/ |
H A D | asm-offsets.c | 4 int foo(void) foo() function
|
/linux-4.4.14/samples/trace_events/ |
H A D | trace-events-sample.h | 69 * Here it is trace_foo_bar(char *foo, int bar). 72 * Here it is simply "foo, bar". 84 * __field(int, foo) 86 * __entry->foo = 5; 93 * __field_struct(struct bar, foo) 101 * __array( char, foo, 10) is the same as saying: char foo[10]; 105 * __entry->foo[0] = 'a'; 107 * memcpy(__entry->foo, bar, 10); 118 * __dynamic_array( int, foo, bar) is similar to: int foo[bar]; 123 * memcpy(__get_dynamic_array(foo), bar, 10); 134 * __string(foo, bar) is similar to: strcpy(foo, bar) 138 * __assign_str(foo, bar); 169 * For __dynamic_array(int, foo, bar) use __get_dynamic_array(foo) 170 * Use __get_dynamic_array_len(foo) to get the length of the array 176 * For __string(foo, bar) use __get_str(foo) 230 TP_PROTO(const char *foo, int bar, const int *lst, 233 TP_ARGS(foo, bar, lst, string, mask), 236 __array( char, foo, 10 ) 244 strlcpy(__entry->foo, foo, 10); 252 TP_printk("foo %s %d %s %s %s %s (%s)", __entry->foo, __entry->bar, 338 TP_PROTO(const char *foo, int bar), 340 TP_ARGS(foo, bar), 345 __string( foo, foo ) 350 __assign_str(foo, foo); 354 TP_printk("foo %s %d", __get_str(foo), __entry->bar) 381 TP_PROTO(const char *foo, int bar), 383 TP_ARGS(foo, bar), 386 __string( foo, foo ) 391 __assign_str(foo, foo); 395 TP_printk("foo %s %d", __get_str(foo), __entry->bar), 428 TP_PROTO(const char *foo, int bar), 430 TP_ARGS(foo, bar), 433 __string( foo, foo ) 438 __assign_str(foo, foo); 442 TP_printk("foo %s %d", __get_str(foo), __entry->bar) 450 TP_PROTO(const char *foo, int bar), 451 TP_ARGS(foo, bar)); 454 TP_PROTO(const char *foo, int bar), 455 TP_ARGS(foo, bar), 460 TP_PROTO(const char *foo, int bar), 461 TP_ARGS(foo, bar), 477 TP_PROTO(const char *foo, int bar), 478 TP_ARGS(foo, bar), 479 TP_printk("bar %s %d", __get_str(foo), __entry->bar));
|
/linux-4.4.14/drivers/gpu/drm/nouveau/include/nvif/ |
H A D | list.h | 36 * We need to keep a list of struct foo in the parent struct bar, i.e. what 41 * struct foo *list_of_foos; -----> struct foo {}, struct foo {}, struct foo{} 54 * struct foo { 68 * struct foo *foo = malloc(...); 70 * list_add(&foo->entry, &bar.list_of_foos); 74 * list_del(&foo->entry); 75 * free(foo); 80 * Looping through the list requires a 'struct foo' as iterator and the 83 * struct foo *iterator; 92 * struct foo *iterator, *next; 152 * struct foo *newfoo = malloc(...); 173 * struct foo *newfoo = malloc(...); 202 * list_del(&foo->entry); 244 * struct foo* f; 245 * f = container_of(&foo->entry, struct foo, entry); 246 * assert(f == foo); 268 * struct foo *first; 269 * first = list_first_entry(&bar->list_of_foos, struct foo, list_of_foos); 283 * struct foo *first; 284 * first = list_last_entry(&bar->list_of_foos, struct foo, list_of_foos); 301 * struct foo *iterator;
|
/linux-4.4.14/arch/x86/um/shared/sysdep/ |
H A D | kernel-offsets.h | 15 void foo(void) foo() function
|
/linux-4.4.14/drivers/block/ |
H A D | rbd_types.h | 18 /* For format version 2, rbd image 'foo' consists of objects 19 * rbd_id.foo - id of image 32 * For format version 1, rbd image 'foo' consists of objects 33 * foo.rbd - image metadata
|
/linux-4.4.14/include/linux/ |
H A D | nvram.h | 6 /* __foo is foo without grabbing the rtc_lock - get it yourself */
|
H A D | once.h | 25 * void foo(void) 30 * foo(); 31 * foo();
|
H A D | rcupdate.h | 695 * bar = rcu_dereference_check(foo->bar, lockdep_is_held(&foo->lock)); 697 * could be used to indicate to lockdep that foo->bar may only be dereferenced 699 * the bar struct at foo->bar is held. 705 * bar = rcu_dereference_check(foo->bar, lockdep_is_held(&foo->lock) || 706 * atomic_read(&foo->usage) == 0);
|
H A D | moduleparam.h | 42 * NOARG - the parameter allows for no argument (foo instead of foo=1) 108 * the user can use "foo-bar=1" even for variable "foo_bar".
|
H A D | seqlock.h | 22 * seq = read_seqbegin(&foo); 24 * } while (read_seqretry(&foo, seq));
|
H A D | rculist.h | 260 * struct foo *bar = list_first_entry_rcu(mylist, struct foo, list_member);
|
H A D | compiler.h | 311 * int __deprecated foo(void)
|
H A D | module.h | 177 * Example: MODULE_SOFTDEP("pre: module-foo module-bar post: module-baz")
|
H A D | kernel.h | 391 /* Obsolete, do not use. Use kstrto<foo> instead */
|
H A D | device.h | 66 * @dev_name: Used for subsystems to enumerate devices like ("foo%u", dev->id).
|
H A D | netdevice.h | 1984 /* Used in ipv6_gro_receive() and foo-over-udp */ 2004 /* Used in foo-over-udp, set in udp[46]_gro_receive */
|
/linux-4.4.14/arch/ia64/kernel/ |
H A D | nr-irqs.c | 14 void foo(void) foo() function
|
H A D | asm-offsets.c | 22 void foo(void) foo() function
|
/linux-4.4.14/arch/powerpc/platforms/pseries/ |
H A D | of_helpers.c | 13 * described by path. E.g., for path = "/foo/bar", returns 14 * the node with full_name = "/foo".
|
/linux-4.4.14/kernel/ |
H A D | bounds.c | 15 void foo(void) foo() function
|
H A D | taskstats.c | 178 * per-task-foo(stats, tsk); fill_stats() 238 * per-task-foo(stats, tsk); fill_stats_for_tgid() 271 * per-task-foo(tsk->signal->stats, tsk); fill_tgid_exit()
|
H A D | acct.c | 72 #define RESUME (acct_parm[0]) /* >foo% free space - resume */ 73 #define SUSPEND (acct_parm[1]) /* <foo% free space - suspend */ 74 #define ACCT_TIMEOUT (acct_parm[2]) /* foo second timeout between checks */
|
H A D | params.c | 215 /* Args looks like "foo=bar,bar2 baz=fuz wiz". */ parse_args()
|
H A D | module.c | 1449 * /sys/module/foo/sections stuff 1556 * /sys/module/foo/notes/.section.name gives contents of SHT_NOTE sections.
|
/linux-4.4.14/arch/avr32/kernel/ |
H A D | asm-offsets.c | 12 void foo(void) foo() function
|
/linux-4.4.14/arch/x86/um/ |
H A D | bugs_32.c | 35 unsigned long foo = 0; arch_check_bugs() local 36 __asm__ __volatile__("cmovz %0, %1" : "=r" (foo) : "0" (foo)); arch_check_bugs()
|
H A D | user-offsets.c | 31 void foo(void) foo() function
|
H A D | signal.c | 95 env[5] = fxsave->foo; convert_fxsr_to_user() 132 fxsave->foo = env[5]; convert_fxsr_from_user()
|
/linux-4.4.14/net/netfilter/ipset/ |
H A D | ip_set_hash_mac.c | 38 __be32 foo[2]; member in union:hash_mac4_elem::__anon15002 84 struct hash_mac4_elem e = { { .foo[0] = 0, .foo[1] = 0 } }; hash_mac4_kadt() 106 struct hash_mac4_elem e = { { .foo[0] = 0, .foo[1] = 0 } }; hash_mac4_uadt()
|
/linux-4.4.14/tools/testing/selftests/efivarfs/ |
H A D | efivarfs.sh | 167 foo 168 foo-bar 169 -foo- 170 foo-barbazba-foob-foob-foob-foobarbazfoo 171 foo-------------------------------------
|
/linux-4.4.14/include/linux/mfd/ |
H A D | core.h | 91 * driver wants the cell "foo" to be used by a GPIO driver, an MTD driver, 95 * const char *fclones[] = { "foo-gpio", "foo-mtd" }; 96 * err = mfd_clone_cells("foo", fclones, ARRAY_SIZE(fclones)); 99 * platform_drivers for "foo-mtd", "foo-gpio", and "foo", respectively.
|
/linux-4.4.14/fs/gfs2/ |
H A D | main.c | 37 static void gfs2_init_inode_once(void *foo) gfs2_init_inode_once() argument 39 struct gfs2_inode *ip = foo; gfs2_init_inode_once() 48 static void gfs2_init_glock_once(void *foo) gfs2_init_glock_once() argument 50 struct gfs2_glock *gl = foo; gfs2_init_glock_once() 61 static void gfs2_init_gl_aspace_once(void *foo) gfs2_init_gl_aspace_once() argument 63 struct gfs2_glock *gl = foo; gfs2_init_gl_aspace_once()
|
/linux-4.4.14/sound/oss/ |
H A D | pas2_pcm.c | 49 int foo, tmp; pcm_set_speed() local 62 foo = ((PIT_TICK_RATE / 2) + (arg / 2)) / arg; pcm_set_speed() 63 arg = ((PIT_TICK_RATE / 2) + (foo / 2)) / foo; pcm_set_speed() 67 foo = (PIT_TICK_RATE + (arg / 2)) / arg; pcm_set_speed() 68 arg = (PIT_TICK_RATE + (foo / 2)) / foo; pcm_set_speed() 108 pas_write(foo & 0xff, 0x1388); pcm_set_speed() 109 pas_write((foo >> 8) & 0xff, 0x1388); pcm_set_speed()
|
H A D | pas2_mixer.c | 202 int foo; pas_mixer_reset() local 204 for (foo = 0; foo < SOUND_MIXER_NRDEVICES; foo++) pas_mixer_reset() 205 pas_mixer_set(foo, levels[foo]); pas_mixer_reset()
|
H A D | pas2_card.c | 284 unsigned char board_id, foo; detect_pas_hw() local 309 foo = board_id ^ 0xe0; detect_pas_hw() 311 pas_write(foo, 0x0B8B); detect_pas_hw() 312 foo = pas_read(0x0B8B); detect_pas_hw() 315 if (board_id != foo) detect_pas_hw()
|
/linux-4.4.14/arch/x86/kernel/ |
H A D | asm-offsets_32.c | 16 void foo(void); 18 void foo(void) foo() function
|
/linux-4.4.14/tools/testing/selftests/net/ |
H A D | socket.c | 15 * -foo = error foo
|
/linux-4.4.14/drivers/net/wireless/ath/ |
H A D | ath.h | 299 #define ATH_DBG_WARN(foo, arg...) WARN(foo, arg) 300 #define ATH_DBG_WARN_ON_ONCE(foo) WARN_ON_ONCE(foo) 312 #define ATH_DBG_WARN(foo, arg...) do {} while (0) 313 #define ATH_DBG_WARN_ON_ONCE(foo) ({ \ 314 int __ret_warn_once = !!(foo); \
|
/linux-4.4.14/arch/alpha/kernel/ |
H A D | asm-offsets.c | 14 void foo(void) foo() function
|
/linux-4.4.14/arch/powerpc/xmon/ |
H A D | ansidecl.h | 64 static int foo PARAMS ((int, char)); 66 This produces: `static int foo();' or `static int foo (int, char);' 70 static int EXFUN (foo, (int, char));
|
/linux-4.4.14/arch/sparc/kernel/ |
H A D | asm-offsets.c | 46 int foo(void) foo() function
|
H A D | prom_32.c | 50 * string, like this "foo@addr". The "addr" can be in any number of
|
H A D | prom_64.c | 58 * string, like this "foo@addr". The "addr" can be in any number of
|
/linux-4.4.14/drivers/scsi/ |
H A D | t128.c | 333 void __iomem *foo = base + T_CONTROL_REG_OFFSET; local 334 tmp = readb(foo); 335 writeb(tmp | T_CR_CT, foo); 336 writeb(tmp, foo); 379 void __iomem *foo = base + T_CONTROL_REG_OFFSET; local 380 tmp = readb(foo); 381 writeb(tmp | T_CR_CT, foo); 382 writeb(tmp, foo);
|
H A D | NCR5380.c | 1727 int foo; NCR5380_transfer_dma() local 1890 foo = NCR5380_pread(instance, d, c); NCR5380_transfer_dma() 1896 if (!(foo = NCR5380_pread(instance, d, c - diff))) { NCR5380_transfer_dma() 1929 foo = NCR5380_pwrite(instance, d, c); NCR5380_transfer_dma() 1933 if (!(foo = NCR5380_pwrite(instance, d, c))) { NCR5380_transfer_dma() 1978 return foo; NCR5380_transfer_dma()
|
H A D | scsi_lib.c | 1814 blk_dump_rq_flags(req, "foo");
|
H A D | qla1280.c | 403 #define ia64_platform_is(foo) (!strcmp(x, platform_name))
|
/linux-4.4.14/arch/x86/include/asm/ |
H A D | user32.h | 13 u32 foo; member in struct:user_i387_ia32_struct 26 int foo; member in struct:user32_fxsr_struct
|
H A D | user_32.h | 50 long foo; member in struct:user_i387_struct 62 long foo; member in struct:user_fxsr_struct
|
/linux-4.4.14/arch/x86/kernel/fpu/ |
H A D | regset.c | 218 env->foo = fxsave->rdp; convert_from_fxsr() 233 env->foo = fxsave->foo; convert_from_fxsr() 256 fxsave->rdp = env->foo; convert_to_fxsr() 261 fxsave->foo = env->foo; convert_to_fxsr()
|
/linux-4.4.14/tools/perf/tests/ |
H A D | mmap-basic.c | 98 int foo = syscalls[i](); test__basic_mmap() local 99 ++foo; test__basic_mmap()
|
/linux-4.4.14/scripts/ |
H A D | checkpatch.pl | 2765 # check for space after cast like "(int) foo" or "(struct foo) bar" 2768 # function pointer declarations like "(*foo)(int) = bar;" 2769 # structure definitions like "(struct foo) { 0 };" 2849 # foo bar; where foo is some local typedef or #define 2863 # foo bar; where foo is some local typedef or #define 2902 # (but not if it is a multiple line "if (foo) return bar; else return baz;") 2949 # check for old HOTPLUG __dev<foo> section markings 3006 # any (foo ... *) is a pointer cast, and foo is a type 3012 # int foo(something bar, other baz); 3303 # XXX(foo); 3335 "EXPORT_SYMBOL(foo); should immediately follow its function/variable\n" . $herecurr); 3370 # check for static char foo[] = "bar" declarations. 3377 # check for const <foo> const where <foo> is not a pointer or array type 3389 # check for non-global char *foo[] = {"bar", ...} declarations. 3396 # check for sizeof(foo)/sizeof(foo[0]) that could be ARRAY_SIZE(foo) 3409 # check for function declarations without arguments like "int foo()" 3455 "\"(foo$from)\" should be \"(foo$to)\"\n" . $herecurr) && 3482 "\"foo${from}bar\" should be \"foo${to}bar\"\n" . $herecurr) && 3650 # int foo(int bar, ...) 4006 # Ignore email addresses <foo@bar> 4157 # ie: &(foo->bar) should be &foo->bar and *(foo->bar) should be *foo->bar 4169 # ie: (foo->bar)(); should be foo->bar(); 4170 # but not "if (foo->bar) (" to avoid some false positives 4222 # if statements using unnecessary parentheses - ie: if ((foo == bar)) 4237 # avoid cases like "foo + BAR < baz" 4446 #Ignore Page<foo> variants 4480 # warn if <asm/foo.h> is #included and <linux/foo.h> is available and includes 4481 # itself <asm/foo.h> (uses RAW line) 4555 $dstat !~ /^(?:$Ident|-?$Constant),$/ && # 10, // foo(), 4556 $dstat !~ /^(?:$Ident|-?$Constant);$/ && # foo(); 4557 $dstat !~ /^[!~-]?(?:$Lval|$Constant)$/ && # 10 // foo() // !foo // ~foo // -foo // foo->bar // foo.bar->baz 4560 $dstat !~ /^\.$Ident\s*=/ && # .foo = 4561 $dstat !~ /^(?:\#\s*$Ident|\#\s*$Constant)\s*$/ && # stringification #foo 4904 # check for needless "if (<foo>) fn(<foo>)" uses 4968 $4 !~ /^\&/) { # $LvalOrFunc may be &foo, ignore if so 5044 # don't use __constant_<foo> functions outside of include/uapi/ 5296 # Check for memcpy(foo, bar, ETH_ALEN) that could be ether_addr_copy(foo, bar) 5307 # Check for memcmp(foo, bar, ETH_ALEN) that could be ether_addr_equal*(foo, bar) 5315 # check for memset(foo, 0x0, ETH_ALEN) that could be eth_zero_addr 5316 # check for memset(foo, 0xFF, ETH_ALEN) that could be eth_broadcast_addr 5395 # check for simple sscanf that should be kstrto<foo> 5473 # p = alloc(sizeof(struct foo), ...) should be p = alloc(sizeof(*p), ...) 5710 # likely/unlikely comparisons similar to "(likely(foo) > 0)"
|
H A D | kernel-doc-xml-ref | 15 # API-struct-foo
|
H A D | get_maintainer.pl | 849 The negative forms for --<foo> are --no<foo> and --no-<foo>.
|
H A D | kernel-doc | 18 # Functions prototyped as foo(void) same as foo()
|
/linux-4.4.14/arch/tile/include/asm/ |
H A D | linkage.h | 24 * self-named .text.foo section, and if linker feedback collection
|
/linux-4.4.14/arch/mips/sgi-ip32/ |
H A D | ip32-setup.c | 46 return 0; /* foo */ str2hexnum()
|
/linux-4.4.14/drivers/staging/wlan-ng/ |
H A D | p80211conv.c | 115 int foo; skb_ether_to_p80211() local 212 foo = wep_encrypt(wlandev, skb->data, p80211_wep->data, skb_ether_to_p80211() 216 if (foo) { skb_ether_to_p80211() 219 foo); skb_ether_to_p80211() 291 int foo; skb_p80211_to_ether() local 330 foo = wep_decrypt(wlandev, skb->data + payload_offset + 4, skb_p80211_to_ether() 335 if (foo) { skb_p80211_to_ether() 338 foo); skb_p80211_to_ether()
|
/linux-4.4.14/drivers/video/fbdev/omap2/dss/ |
H A D | omapdss-boot-init.c | 21 * encoder nodes from "panel-foo" to "omapdss,panel-foo". This way we can have
|
/linux-4.4.14/security/integrity/ |
H A D | iint.c | 150 static void init_once(void *foo) init_once() argument 152 struct integrity_iint_cache *iint = foo; init_once()
|
/linux-4.4.14/include/asm-generic/ |
H A D | bug.h | 179 * struct foo { 186 * void func(struct foo *zoot)
|
/linux-4.4.14/include/uapi/linux/ |
H A D | iso_fs.h | 105 char foo [ISODCL ( 1, 8)]; /* 733 */ member in struct:hs_volume_descriptor 114 char foo [ISODCL ( 1, 8)]; /* 733 */ member in struct:hs_primary_descriptor
|
/linux-4.4.14/arch/tile/kernel/ |
H A D | asm-offsets.c | 38 void foo(void) foo() function
|
/linux-4.4.14/fs/proc/ |
H A D | inode.c | 86 static void init_once(void *foo) init_once() argument 88 struct proc_inode *ei = (struct proc_inode *) foo; init_once() 320 * deadlockable: rmmod foo </proc/foo . So, we're going to do ->release proc_reg_open()
|
H A D | proc_tty.c | 141 * registering the driver's /proc handler into /proc/tty/driver/<foo>
|
/linux-4.4.14/tools/testing/selftests/timers/ |
H A D | mqueue-lat.c | 77 q = mq_open("/foo", O_CREAT | O_RDONLY, 0666, NULL); mqueue_lat_test()
|
/linux-4.4.14/fs/fat/ |
H A D | namei_msdos.c | 279 /* Have to do it due to foo vs. .foo conflicts */ msdos_create() 360 /* foo vs .foo situation */ msdos_mkdir() 465 /* "foo" -> ".foo" case. just change the ATTR_HIDDEN */ do_msdos_rename()
|
H A D | cache.c | 38 static void init_once(void *foo) init_once() argument 40 struct fat_cache *cache = (struct fat_cache *)foo; init_once()
|
H A D | inode.c | 662 static void init_once(void *foo) init_once() argument 664 struct msdos_inode_info *ei = (struct msdos_inode_info *)foo; init_once()
|
/linux-4.4.14/drivers/mtd/nand/ |
H A D | cs553x_nand.c | 157 unsigned char foo = readb(mmio_base + MM_NAND_STS); cs553x_device_ready() local 159 return (foo & CS_NAND_STS_FLASH_RDY) && !(foo & CS_NAND_CTLR_BUSY); cs553x_device_ready()
|
/linux-4.4.14/arch/x86/include/asm/fpu/ |
H A D | types.h | 17 u32 foo; /* FPU Operand Pointer Offset */ member in struct:fregs_state 46 u32 foo; /* FPU Operand Offset */ member in struct:fxregs_state::__anon3046::__anon3048 81 u32 foo; member in struct:swregs_state
|
/linux-4.4.14/arch/x86/math-emu/ |
H A D | fpu_system.h | 78 #define operand_address (*(struct address *)&I387->soft.foo)
|
H A D | fpu_aux.c | 43 oaddr = (struct address *)&soft->foo; fpstate_init_soft()
|
/linux-4.4.14/arch/c6x/kernel/ |
H A D | asm-offsets.c | 13 void foo(void) foo() function
|
/linux-4.4.14/fs/f2fs/ |
H A D | xattr.h | 95 * | .e_name = "foo" |
|
H A D | super.c | 264 static void init_once(void *foo) init_once() argument 266 struct f2fs_inode_info *fi = (struct f2fs_inode_info *) foo; init_once()
|
/linux-4.4.14/arch/mips/alchemy/common/ |
H A D | prom.c | 89 return 0; /* foo */ str2hexnum()
|
/linux-4.4.14/arch/mn10300/kernel/ |
H A D | asm-offsets.c | 18 void foo(void) foo() function
|
/linux-4.4.14/arch/frv/kernel/ |
H A D | asm-offsets.c | 33 void foo(void) foo() function
|
/linux-4.4.14/fs/jffs2/ |
H A D | super.c | 58 static void jffs2_i_init_once(void *foo) jffs2_i_init_once() argument 60 struct jffs2_inode_info *f = foo; jffs2_i_init_once()
|
/linux-4.4.14/scripts/kconfig/ |
H A D | expr.h | 125 * prompt "foo prompt" 133 P_PROMPT, /* prompt "foo prompt" or "BAZ Value" */
|
/linux-4.4.14/fs/coda/ |
H A D | inode.c | 67 static void init_once(void *foo) init_once() argument 69 struct coda_inode_info *ei = (struct coda_inode_info *) foo; init_once()
|
/linux-4.4.14/fs/efs/ |
H A D | super.c | 87 static void init_once(void *foo) init_once() argument 89 struct efs_inode_info *ei = (struct efs_inode_info *) foo; init_once()
|
/linux-4.4.14/include/net/sctp/ |
H A D | command.h | 151 * __s32. So, after foo = SCTP_I32(arg), foo.i32 == arg.
|
H A D | constants.h | 124 * sctp_subtype_t foo = SCTP_ST_CHUNK(SCTP_CID_INIT);
|
/linux-4.4.14/include/linux/byteorder/ |
H A D | generic.h | 13 * gathered all the good ideas from all asm-foo/byteorder.h into one file, 80 * See asm-foo/byteorder.h for examples of how to provide
|
/linux-4.4.14/arch/ia64/hp/sim/ |
H A D | simscsi.c | 81 * to use /foo/bar/disk[a-z] as disk images 82 * you have to specify simscsi=/foo/bar/disk on the command line
|
/linux-4.4.14/scripts/mod/ |
H A D | modpost.c | 222 /* For our purposes, .foo matches foo. PPC64 needs this. */ find_symbol() 777 * "foo" will match an exact string equal to "foo" 778 * "*foo" will match a string that ends with "foo" 779 * "foo*" will match a string that begins with "foo" 780 * "*foo*" will match a string that contains "foo" 789 /* "*foo*" */ match() 798 /* "*foo" */ match() 803 /* "foo*" */ match()
|
/linux-4.4.14/drivers/nubus/ |
H A D | nubus.c | 149 static inline long nubus_expand32(long foo) nubus_expand32() argument 151 if(foo & 0x00800000) /* 24bit negative */ nubus_expand32() 152 foo |= 0xFF000000; nubus_expand32() 153 return foo; nubus_expand32() 825 unsigned short foo, bar; nubus_add_board() local 826 foo = nubus_get_rom(&rp, 2, bytelanes); nubus_add_board() 828 printk("%04x %04x ", foo, bar); nubus_add_board()
|
/linux-4.4.14/tools/firewire/ |
H A D | decode-fcp.c | 74 { "foo", 0, 8 },
|
/linux-4.4.14/drivers/usb/mon/ |
H A D | mon_main.c | 191 * Add a USB bus (usually by a modprobe foo-hcd) 206 * Remove a USB bus (either from rmmod foo-hcd or from a hot-remove event).
|
/linux-4.4.14/fs/bfs/ |
H A D | inode.c | 261 static void init_once(void *foo) init_once() argument 263 struct bfs_inode_info *bi = foo; init_once()
|
/linux-4.4.14/fs/qnx4/ |
H A D | inode.c | 355 static void init_once(void *foo) init_once() argument 357 struct qnx4_inode_info *ei = (struct qnx4_inode_info *) foo; init_once()
|
/linux-4.4.14/kernel/locking/ |
H A D | rtmutex.c | 1277 * foo->lock->owner = NULL; rt_mutex_slowunlock() 1278 * rtmutex_lock(foo->lock); <- fast path rt_mutex_slowunlock() 1279 * free = atomic_dec_and_test(foo->refcnt); rt_mutex_slowunlock() 1280 * rtmutex_unlock(foo->lock); <- fast path rt_mutex_slowunlock() 1282 * kfree(foo); rt_mutex_slowunlock() 1283 * raw_spin_unlock(foo->lock->wait_lock); rt_mutex_slowunlock()
|
/linux-4.4.14/arch/cris/arch-v32/mach-a3/ |
H A D | arbiter.c | 18 * | foo arbiter|----| Internal memory| 325 /* Propagate allocation from foo to bar */ crisv32_arbiter_allocate_bandwidth()
|
/linux-4.4.14/fs/9p/ |
H A D | v9fs.c | 559 static void v9fs_inode_init_once(void *foo) v9fs_inode_init_once() argument 561 struct v9fs_inode *v9inode = (struct v9fs_inode *)foo; v9fs_inode_init_once()
|
/linux-4.4.14/fs/adfs/ |
H A D | super.c | 262 static void init_once(void *foo) init_once() argument 264 struct adfs_inode_info *ei = (struct adfs_inode_info *) foo; init_once()
|
/linux-4.4.14/fs/affs/ |
H A D | super.c | 121 static void init_once(void *foo) init_once() argument 123 struct affs_inode_info *ei = (struct affs_inode_info *) foo; init_once()
|
/linux-4.4.14/fs/squashfs/ |
H A D | super.c | 411 static void init_once(void *foo) init_once() argument 413 struct squashfs_inode_info *ei = foo; init_once()
|
/linux-4.4.14/fs/btrfs/ |
H A D | tree-log.c | 47 * mkdir foo/some_dir 49 * rename foo/some_dir foo2/some_dir 50 * mkdir foo/some_dir 51 * fsync foo/some_dir/some_file 70 * mkdir f1/foo 72 * rm -rf f1/foo 1828 * touch testdir/foo replay_one_dir_item() 1833 * ln testdir/foo testdir/foo_link replay_one_dir_item() 1840 * File foo would remain with a link count of 1 when it has two replay_one_dir_item() 3346 * touch foo log_dir_items() 3349 * ln foo mydir/bar log_dir_items() 4428 * echo "123" > /mnt/foo 4430 * mv /mnt/foo /mnt/bar 4431 * echo "abc" > /mnt/foo 4432 * xfs_io -c fsync /mnt/foo 5330 * touch testdir/foo btrfs_log_inode_parent() 5331 * ln testdir/foo testdir/bar btrfs_log_inode_parent() 5334 * xfs_io -c fsync testdir/foo btrfs_log_inode_parent() 5346 * touch foo btrfs_log_inode_parent() 5347 * ln foo testdir/foo2 btrfs_log_inode_parent() 5348 * ln foo testdir/foo3 btrfs_log_inode_parent() 5351 * xfs_io -c fsync foo btrfs_log_inode_parent()
|
H A D | xattr.c | 76 * where name is the xattr name, so security.foo, and data is the __btrfs_getxattr()
|
H A D | send.c | 210 * rm -f /a/b/c/foo.txt 4751 * xfs_io -f -c "pwrite -S 0xaa 0K 100K" /mnt/foo clone_range() 4752 * cp --reflink=always /mnt/foo /mnt/bar clone_range() 4753 * xfs_io -c "pwrite -S 0xbb 50K 50K" /mnt/foo clone_range() 4757 * has a higher inode number than foo) we blindly send a clone operation clone_range() 4758 * for the [0, 100K[ range from foo to bar, the receiver ends up getting clone_range() 4759 * a file bar that matches the content of file foo - iow, doesn't match clone_range()
|
H A D | inode.c | 3693 * touch mydir/foo btrfs_read_locked_inode() 3694 * ln mydir/foo mydir/bar btrfs_read_locked_inode() 3698 * xfs_io -c fsync mydir/foo btrfs_read_locked_inode() 3702 * We must make sure that when we fsync our inode foo we also log its btrfs_read_locked_inode() 3704 * dentry with the "bar" name but our inode foo has a link count of 1 btrfs_read_locked_inode() 9156 static void init_once(void *foo) init_once() argument 9158 struct btrfs_inode *ei = (struct btrfs_inode *) foo; init_once()
|
/linux-4.4.14/drivers/usb/phy/ |
H A D | phy-fsl-usb.c | 227 void b_data_pulse_end(unsigned long foo) b_data_pulse_end() argument 246 void b_vbus_pulse_end(unsigned long foo) b_vbus_pulse_end() argument 259 void b_srp_end(unsigned long foo) b_srp_end() argument 274 void a_wait_enum(unsigned long foo) a_wait_enum() argument
|
/linux-4.4.14/drivers/hwmon/ |
H A D | adt7470.c | 183 u16 foo; adt7470_read_word_data() local 184 foo = i2c_smbus_read_byte_data(client, reg); adt7470_read_word_data() 185 foo |= ((u16)i2c_smbus_read_byte_data(client, reg + 1) << 8); adt7470_read_word_data() 186 return foo; adt7470_read_word_data()
|
H A D | adt7462.c | 240 u16 foo; adt7462_read_word_data() local 241 foo = i2c_smbus_read_byte_data(client, reg); adt7462_read_word_data() 242 foo |= ((u16)i2c_smbus_read_byte_data(client, reg + 1) << 8); adt7462_read_word_data() 243 return foo; adt7462_read_word_data()
|
/linux-4.4.14/drivers/media/usb/pvrusb2/ |
H A D | pvrusb2-context.c | 162 static int pvr2_context_thread_func(void *foo) pvr2_context_thread_func() argument
|
/linux-4.4.14/net/dns_resolver/ |
H A D | dns_key.c | 58 * "ip1,ip2,...#foo=bar"
|
/linux-4.4.14/fs/ |
H A D | proc_namespace.c | 154 /* Tagged fields ("foo:X" or "bar") */ show_mountinfo()
|
H A D | xattr.c | 800 * the attribute name after skipping the handler's prefix: for example, "foo" 802 * attribute "user.foo". The full name is still "there" in the name though.
|
H A D | inode.c | 370 static void init_once(void *foo) init_once() argument 372 struct inode *inode = (struct inode *) foo; init_once()
|
H A D | block_dev.c | 524 static void init_once(void *foo) init_once() argument 526 struct bdev_inode *ei = (struct bdev_inode *) foo; init_once()
|
H A D | namei.c | 3414 * (foo/., foo/.., /////) filename_create() 3435 * Special case - lookup gave negative, but... we had foo/bar/ filename_create()
|
/linux-4.4.14/include/media/ |
H A D | v4l2-device.h | 90 instance = v4l2_device_set_name(&v4l2_dev, "foo", &drv_instance);
|
H A D | v4l2-ctrls.h | 589 * that cluster and set it up for autofoo/foo-type handling. 614 * on the autofoo control and V4L2_CTRL_FLAG_INACTIVE on the foo control(s)
|
/linux-4.4.14/drivers/char/xilinx_hwicap/ |
H A D | xilinx_hwicap.c | 67 * cp foo.bit /dev/icap0 69 * Note that unless foo.bit is an appropriately constructed partial
|
/linux-4.4.14/fs/hpfs/ |
H A D | super.c | 253 static void init_once(void *foo) init_once() argument 255 struct hpfs_inode_info *ei = (struct hpfs_inode_info *) foo; init_once()
|
/linux-4.4.14/fs/jfs/ |
H A D | super.c | 880 static void init_once(void *foo) init_once() argument 882 struct jfs_inode_info *jfs_ip = (struct jfs_inode_info *) foo; init_once()
|
/linux-4.4.14/fs/minix/ |
H A D | inode.c | 82 static void init_once(void *foo) init_once() argument 84 struct minix_inode_info *ei = (struct minix_inode_info *) foo; init_once()
|
/linux-4.4.14/fs/ceph/ |
H A D | super.c | 629 static void ceph_inode_init_once(void *foo) ceph_inode_init_once() argument 631 struct ceph_inode_info *ci = foo; ceph_inode_init_once()
|
H A D | dir.c | 808 /* mkdir .snap/foo is a MKSNAP */ ceph_mkdir() 925 /* rmdir .snap/foo is RMSNAP */ ceph_unlink()
|
H A D | mds_client.c | 1757 * foo/.snap/bar -> foo//bar
|
/linux-4.4.14/fs/ocfs2/dlmfs/ |
H A D | dlmfs.c | 331 static void dlmfs_init_once(void *foo) dlmfs_init_once() argument 334 (struct dlmfs_inode_private *) foo; dlmfs_init_once()
|
/linux-4.4.14/fs/qnx6/ |
H A D | inode.c | 615 static void init_once(void *foo) init_once() argument 617 struct qnx6_inode_info *ei = (struct qnx6_inode_info *) foo; init_once()
|
/linux-4.4.14/drivers/ide/ |
H A D | ide-gd.c | 359 /* strstr("foo", "") is non-NULL */ ide_gd_probe()
|
/linux-4.4.14/net/unix/ |
H A D | garbage.c | 37 * of foo to bar and vice versa. Current code chokes on that.
|
/linux-4.4.14/arch/microblaze/kernel/ |
H A D | unwind.c | 94 /* addik r1, r1, foo ? */ find_frame_creation()
|
/linux-4.4.14/arch/mips/pmcs-msp71xx/ |
H A D | msp_prom.c | 83 return 0; /* foo */ str2hexnum()
|
/linux-4.4.14/drivers/firmware/efi/libstub/ |
H A D | fdt.c | 43 pr_efi_err(sys_table, "Truncated device tree! foo!\n"); update_fdt()
|
/linux-4.4.14/lib/ |
H A D | dynamic_debug.c | 897 * modprobe foo finds foo.params in boot-args, strips "foo.", and
|
/linux-4.4.14/net/sunrpc/ |
H A D | rpc_pipe.c | 1288 seq_printf(m, "service: foo (1) version 0\n"); rpc_show_dummy_info() 1486 init_once(void *foo) init_once() argument 1488 struct rpc_inode *rpci = (struct rpc_inode *) foo; init_once()
|
/linux-4.4.14/arch/mips/cavium-octeon/ |
H A D | setup.c | 1057 u32 *foo; prom_free_prom_memory() local 1059 foo = &insn; prom_free_prom_memory() 1062 prefetch(foo); prom_free_prom_memory()
|
/linux-4.4.14/drivers/usb/storage/ |
H A D | freecom.c | 266 usb_stor_dbg(us, "foo Status result %d %u\n", result, partial); freecom_transport()
|
/linux-4.4.14/drivers/net/wireless/brcm80211/brcmfmac/ |
H A D | cfg80211.h | 221 struct pmkid foo[MAXPMKID - 1]; member in struct:brcmf_cfg80211_pmk_list
|
/linux-4.4.14/net/ceph/ |
H A D | ceph_common.c | 49 * find filename portion of a path (/foo/bar/baz -> baz)
|
H A D | osdmap.c | 44 * the foo_mask is the smallest value 2^n-1 that is >= foo.
|
/linux-4.4.14/fs/afs/ |
H A D | super.c | 33 static void afs_i_init_once(void *foo);
|
/linux-4.4.14/include/drm/ |
H A D | drm_crtc.h | 572 * @encoder_type: one of the %DRM_MODE_ENCODER_<foo> types in drm_mode.h 618 * @connector_type: one of the %DRM_MODE_CONNECTOR_<foo> types from drm_mode.h 631 * @polled: a %DRM_CONNECTOR_POLL_<foo> value for core driven polling 635 * @force: a %DRM_FORCE_<foo> state for forced mode sets
|
/linux-4.4.14/arch/powerpc/ |
H A D | Makefile | 160 asinstr := $(call as-instr,lis 9$(comma)foo@high,-DHAVE_AS_ATHIGH=1)
|
/linux-4.4.14/drivers/net/ethernet/intel/i40e/ |
H A D | i40e.h | 122 #define STRINGIFY(foo) #foo
|
/linux-4.4.14/fs/fuse/ |
H A D | inode.c | 1246 static void fuse_inode_init_once(void *foo) fuse_inode_init_once() argument 1248 struct inode *inode = foo; fuse_inode_init_once()
|
/linux-4.4.14/fs/hugetlbfs/ |
H A D | inode.c | 959 static void init_once(void *foo) init_once() argument 961 struct hugetlbfs_inode_info *ei = (struct hugetlbfs_inode_info *)foo; init_once()
|
/linux-4.4.14/fs/ncpfs/ |
H A D | inode.c | 72 static void init_once(void *foo) init_once() argument 74 struct ncp_inode_info *ei = (struct ncp_inode_info *) foo; init_once()
|
/linux-4.4.14/fs/befs/ |
H A D | linuxvfs.c | 290 static void init_once(void *foo) init_once() argument 292 struct befs_inode_info *bi = (struct befs_inode_info *) foo; init_once()
|
/linux-4.4.14/fs/exofs/ |
H A D | super.c | 183 static void exofs_init_once(void *foo) exofs_init_once() argument 185 struct exofs_i_info *oi = foo; exofs_init_once()
|
/linux-4.4.14/ipc/ |
H A D | mqueue.c | 342 static void init_once(void *foo) init_once() argument 344 struct mqueue_inode_info *p = (struct mqueue_inode_info *) foo; init_once()
|
/linux-4.4.14/drivers/media/usb/usbvision/ |
H A D | usbvision-core.c | 1266 static int foo; usbvision_compress_isochronous() local 1268 if (foo < 1) { usbvision_compress_isochronous() 1271 ++foo; usbvision_compress_isochronous()
|
/linux-4.4.14/drivers/atm/ |
H A D | eni.c | 1459 static void foo(void) 1515 foo(); eni_int() 1905 /*foo();*/ eni_close()
|
/linux-4.4.14/fs/reiserfs/ |
H A D | super.c | 615 static void init_once(void *foo) init_once() argument 617 struct reiserfs_inode_info *ei = (struct reiserfs_inode_info *)foo; init_once() 938 * foo=bar, reiserfs_getopt()
|
/linux-4.4.14/drivers/thermal/ |
H A D | intel_powerclamp.c | 265 static void noop_timer(unsigned long foo) noop_timer() argument
|
/linux-4.4.14/drivers/staging/olpc_dcon/ |
H A D | olpc_dcon.c | 553 unsigned long foo, void *bar) dcon_reboot_notify() 552 dcon_reboot_notify(struct notifier_block *nb, unsigned long foo, void *bar) dcon_reboot_notify() argument
|
/linux-4.4.14/security/tomoyo/ |
H A D | util.c | 124 * @string: String representation for permissions in foo/bar/buz format.
|
/linux-4.4.14/arch/x86/entry/ |
H A D | entry_64.S | 126 * When user can change pt_regs->foo always force IRET. That is because 272 /* Use IRET because user could have changed pt_regs->foo */
|
/linux-4.4.14/fs/isofs/ |
H A D | inode.c | 85 static void init_once(void *foo) init_once() argument 87 struct iso_inode_info *ei = foo; init_once()
|
/linux-4.4.14/fs/ext2/ |
H A D | super.c | 186 static void init_once(void *foo) init_once() argument 188 struct ext2_inode_info *ei = (struct ext2_inode_info *) foo; init_once()
|
/linux-4.4.14/fs/ufs/ |
H A D | super.c | 1418 static void init_once(void *foo) init_once() argument 1420 struct ufs_inode_info *ei = (struct ufs_inode_info *) foo; init_once()
|
/linux-4.4.14/drivers/net/ethernet/nvidia/ |
H A D | forcedeth.c | 3592 static irqreturn_t nv_nic_irq(int foo, void *data) nv_nic_irq() argument 3625 static irqreturn_t nv_nic_irq_optimized(int foo, void *data) nv_nic_irq_optimized() argument 3654 static irqreturn_t nv_nic_irq_tx(int foo, void *data) nv_nic_irq_tx() argument 3766 static irqreturn_t nv_nic_irq_rx(int foo, void *data) nv_nic_irq_rx() argument 3811 static irqreturn_t nv_nic_irq_other(int foo, void *data) nv_nic_irq_other() argument 3878 static irqreturn_t nv_nic_irq_test(int foo, void *data) nv_nic_irq_test() argument 3935 irqreturn_t (*handler)(int foo, void *data); nv_request_irq()
|
/linux-4.4.14/drivers/of/ |
H A D | base.c | 764 * /foo/bar Full path 765 * foo Valid alias 766 * foo/bar Valid alias + relative path
|
H A D | address.c | 894 * base = of_io_request_and_map(node, 0, "foo");
|
/linux-4.4.14/ |
H A D | Makefile | 762 # disallow errors like 'EXPORT_GPL(foo);' with missing header 765 # require functions to have arguments in prototypes, not empty 'int foo()'
|
/linux-4.4.14/fs/nfs/ |
H A D | inode.c | 1915 static void init_once(void *foo) init_once() argument 1917 struct nfs_inode *nfsi = (struct nfs_inode *) foo; init_once()
|
H A D | super.c | 1238 * boolean options: foo/nofoo nfs_parse_mount_options()
|
/linux-4.4.14/fs/udf/ |
H A D | super.c | 169 static void init_once(void *foo) init_once() argument 171 struct udf_inode_info *ei = (struct udf_inode_info *)foo; init_once()
|
/linux-4.4.14/arch/mips/kernel/ |
H A D | unaligned.c | 46 * struct foo { 52 * struct foo x = {0, 1, 2, 3, 4, 5, 6, 7};
|
/linux-4.4.14/drivers/staging/lustre/lustre/obdclass/ |
H A D | obd_config.c | 990 /* e.g. tunefs.lustre --param mdt.group_upcall=foo /r/tmp/lustre-mdt class_process_proc_param()
|
/linux-4.4.14/drivers/input/serio/ |
H A D | hp_sdc.c | 304 static void hp_sdc_tasklet(unsigned long foo) hp_sdc_tasklet() argument
|
/linux-4.4.14/drivers/net/ethernet/sun/ |
H A D | sunbmac.c | 570 bp->timer_state = asleep; /* foo on you */ bigmac_timer()
|
H A D | sunhme.c | 855 hp->timer_state = asleep; /* foo on you */ happy_meal_timer()
|
/linux-4.4.14/tools/net/ |
H A D | bpf_dbg.c | 21 * 3) > load pcap foo.pcap
|
/linux-4.4.14/mm/ |
H A D | shmem.c | 3095 static void shmem_init_inode(void *foo) shmem_init_inode() argument 3097 struct shmem_inode_info *info = foo; shmem_init_inode()
|
/linux-4.4.14/net/ |
H A D | socket.c | 283 static void init_once(void *foo) init_once() argument 285 struct socket_alloc *ei = (struct socket_alloc *)foo; init_once()
|
/linux-4.4.14/net/ipv4/ |
H A D | ip_output.c | 444 /* Transport layer set skb->h.foo itself. */ ip_queue_xmit()
|
/linux-4.4.14/drivers/gpu/drm/radeon/ |
H A D | radeon_drv.h | 59 * - Add flip-buffers ioctl, deprecate fullscreen foo (keith).
|
/linux-4.4.14/drivers/net/ethernet/natsemi/ |
H A D | ns83820.c | 1401 static irqreturn_t ns83820_irq(int foo, void *data) ns83820_irq() argument
|
/linux-4.4.14/fs/nfsd/ |
H A D | vfs.c | 1995 * However, `cp foo bar' should fail nevertheless when bar is nfsd_permission()
|
/linux-4.4.14/fs/ext4/ |
H A D | super.c | 954 static void init_once(void *foo) init_once() argument 956 struct ext4_inode_info *ei = (struct ext4_inode_info *) foo; init_once()
|
/linux-4.4.14/fs/ntfs/ |
H A D | super.c | 3048 static void ntfs_big_inode_init_once(void *foo) ntfs_big_inode_init_once() argument 3050 ntfs_inode *ni = (ntfs_inode *)foo; ntfs_big_inode_init_once()
|
/linux-4.4.14/fs/xfs/ |
H A D | xfs_log.c | 789 * currently architecture converted and "Unmount" is a bit foo.
|
/linux-4.4.14/kernel/trace/ |
H A D | trace.c | 3718 " instances\t\t- Make sub-buffers with: mkdir instances/foo\n"
|
/linux-4.4.14/drivers/net/ethernet/broadcom/ |
H A D | tg3.c | 148 * replace things like '% foo' with '& (foo - 1)'.
|