Home
last modified time | relevance | path

Searched refs:NAME (Results 1 – 25 of 180) sorted by relevance

12345678

/Linux-v5.10/include/linux/
Dfs_parser.h106 #define __fsparam(TYPE, NAME, OPT, FLAGS, DATA) \ argument
108 .name = NAME, \
115 #define fsparam_flag(NAME, OPT) __fsparam(NULL, NAME, OPT, 0, NULL) argument
116 #define fsparam_flag_no(NAME, OPT) \ argument
117 __fsparam(NULL, NAME, OPT, fs_param_neg_with_no, NULL)
118 #define fsparam_bool(NAME, OPT) __fsparam(fs_param_is_bool, NAME, OPT, 0, NULL) argument
119 #define fsparam_u32(NAME, OPT) __fsparam(fs_param_is_u32, NAME, OPT, 0, NULL) argument
120 #define fsparam_u32oct(NAME, OPT) \ argument
121 __fsparam(fs_param_is_u32, NAME, OPT, 0, (void *)8)
122 #define fsparam_u32hex(NAME, OPT) \ argument
[all …]
Dlsm_hooks.h1537 #define LSM_HOOK(RET, DEFAULT, NAME, ...) RET (*NAME)(__VA_ARGS__); argument
1543 #define LSM_HOOK(RET, DEFAULT, NAME, ...) struct hlist_head NAME; argument
/Linux-v5.10/arch/alpha/include/asm/
Dpal.h18 #define __CALL_PAL_R0(NAME, TYPE) \ argument
19 extern inline TYPE NAME(void) \
23 "call_pal %1 # " #NAME \
25 :"i" (PAL_ ## NAME) \
30 #define __CALL_PAL_W1(NAME, TYPE0) \ argument
31 extern inline void NAME(TYPE0 arg0) \
35 "call_pal %1 # "#NAME \
37 : "i"(PAL_ ## NAME), "0"(__r16) \
41 #define __CALL_PAL_W2(NAME, TYPE0, TYPE1) \ argument
42 extern inline void NAME(TYPE0 arg0, TYPE1 arg1) \
[all …]
/Linux-v5.10/drivers/gpu/drm/msm/disp/mdp5/
Dmdp5_kms.h187 #define NAME(n) [n] = #n in stage2name() macro
188 NAME(STAGE_UNUSED), NAME(STAGE_BASE), in stage2name()
189 NAME(STAGE0), NAME(STAGE1), NAME(STAGE2), in stage2name()
190 NAME(STAGE3), NAME(STAGE4), NAME(STAGE6), in stage2name()
191 #undef NAME in stage2name()
199 #define NAME(n) [SSPP_ ## n] = #n in pipe2name() macro
200 NAME(VIG0), NAME(VIG1), NAME(VIG2), in pipe2name()
201 NAME(RGB0), NAME(RGB1), NAME(RGB2), in pipe2name()
202 NAME(DMA0), NAME(DMA1), in pipe2name()
203 NAME(VIG3), NAME(RGB3), in pipe2name()
[all …]
/Linux-v5.10/arch/arm64/include/asm/
Dhyp_image.h22 #define HYP_SECTION_NAME(NAME) .hyp##NAME argument
25 #define HYP_SECTION(NAME) \ argument
26 HYP_SECTION_NAME(NAME) : { *(NAME NAME##.*) }
/Linux-v5.10/security/apparmor/include/
Dnet.h56 #define DEFINE_AUDIT_NET(NAME, OP, SK, F, T, P) \ argument
57 struct lsm_network_audit NAME ## _net = { .sk = (SK), \
59 DEFINE_AUDIT_DATA(NAME, \
63 NAME.u.net = &(NAME ## _net); \
64 aad(&NAME)->net.type = (T); \
65 aad(&NAME)->net.protocol = (P)
67 #define DEFINE_AUDIT_SK(NAME, OP, SK) \ argument
68 DEFINE_AUDIT_NET(NAME, OP, SK, (SK)->sk_family, (SK)->sk_type, \
Daudit.h158 #define DEFINE_AUDIT_DATA(NAME, T, X) \ argument
160 struct apparmor_audit_data NAME ## _aad = { .op = (X), }; \
161 struct common_audit_data NAME = \
166 NAME.apparmor_audit_data = &(NAME ## _aad)
/Linux-v5.10/arch/alpha/lib/
Dcallback_srm.S59 #define CALLBACK(NAME, CODE, ARG_CNT) \ argument
60 .align 4; .globl callback_##NAME; .ent callback_##NAME; callback_##NAME##: \
61 ldgp $29,0($27); br $25,srm_dispatch; .word CODE, ARG_CNT; .end callback_##NAME
65 #define CALLBACK(NAME, CODE, ARG_CNT) \ argument
66 .align 3; .globl callback_##NAME; .ent callback_##NAME; callback_##NAME##: \
67 lda $0,-1($31); ret; .end callback_##NAME
/Linux-v5.10/drivers/mtd/maps/
Dscx200_docflash.c21 #define NAME "scx200_docflash" macro
84 printk(KERN_DEBUG NAME ": NatSemi SCx200 DOCCS Flash Driver\n"); in init_scx200_docflash()
126 printk(KERN_ERR NAME ": unable to allocate memory for flash mapping\n"); in init_scx200_docflash()
134 printk(KERN_ERR NAME ": invalid size for flash mapping\n"); in init_scx200_docflash()
139 printk(KERN_ERR NAME ": invalid bus width for flash mapping\n"); in init_scx200_docflash()
147 printk(KERN_ERR NAME ": unable to allocate memory for flash mapping\n"); in init_scx200_docflash()
167 printk(KERN_INFO NAME ": DOCCS mapped at %pR, width %d\n", in init_scx200_docflash()
181 printk(KERN_ERR NAME ": failed to ioremap the flash\n"); in init_scx200_docflash()
188 printk(KERN_ERR NAME ": unable to detect flash\n"); in init_scx200_docflash()
195 printk(KERN_WARNING NAME ": warning, flash mapping is smaller than flash size\n"); in init_scx200_docflash()
/Linux-v5.10/arch/sparc/kernel/
Dsysfs.c19 #define SHOW_MMUSTAT_ULONG(NAME) \ argument
20 static ssize_t show_##NAME(struct device *dev, \
24 return sprintf(buf, "%lu\n", p->NAME); \
26 static DEVICE_ATTR(NAME, 0444, show_##NAME, NULL)
172 #define SHOW_CPUDATA_ULONG_NAME(NAME, MEMBER) \ argument
173 static ssize_t show_##NAME(struct device *dev, \
180 #define SHOW_CPUDATA_UINT_NAME(NAME, MEMBER) \ argument
181 static ssize_t show_##NAME(struct device *dev, \
/Linux-v5.10/kernel/bpf/
Dbpf_lsm.c21 #define LSM_HOOK(RET, DEFAULT, NAME, ...) \ argument
22 noinline RET bpf_lsm_##NAME(__VA_ARGS__) \
30 #define LSM_HOOK(RET, DEFAULT, NAME, ...) BTF_ID(func, bpf_lsm_##NAME) argument
/Linux-v5.10/Documentation/admin-guide/aoe/
Dudev.txt19 SUBSYSTEM=="aoe", KERNEL=="discover", NAME="etherd/%k", GROUP="disk", MODE="0220"
20 SUBSYSTEM=="aoe", KERNEL=="err", NAME="etherd/%k", GROUP="disk", MODE="0440"
21 SUBSYSTEM=="aoe", KERNEL=="interfaces", NAME="etherd/%k", GROUP="disk", MODE="0220"
22 SUBSYSTEM=="aoe", KERNEL=="revalidate", NAME="etherd/%k", GROUP="disk", MODE="0220"
23 SUBSYSTEM=="aoe", KERNEL=="flush", NAME="etherd/%k", GROUP="disk", MODE="0220"
/Linux-v5.10/tools/testing/selftests/firmware/
Dfw_fallback.sh160 DEVPATH="$DIR"/"nope-$NAME"/loading
164 echo -n "nope-$NAME" >"$DIR"/trigger_request 2>/dev/null &
203 load_fw "$NAME" "$0"
212 load_fw "$NAME" "$FW"
220 load_fw_cancel "nope-$NAME" "$FW"
229 load_fw_fallback_with_child "nope-signal-$NAME" "$FW"
/Linux-v5.10/tools/lib/bpf/
Dlibbpf_common.h33 #define DECLARE_LIBBPF_OPTS(TYPE, NAME, ...) \ argument
34 struct TYPE NAME = ({ \
35 memset(&NAME, 0, sizeof(struct TYPE)); \
/Linux-v5.10/tools/perf/tests/
Dthread-map.c19 #define NAME (const char *) "perf" macro
20 #define NAMEUL (unsigned long) NAME
40 !strcmp(perf_thread_map__comm(map, 0), NAME)); in test__thread_map()
72 TEST_ASSERT_VAL("wrong comm", !strcmp(map->entries[0].comm, NAME)); in process_event()
82 !strcmp(perf_thread_map__comm(threads, 0), NAME)); in process_event()
Dbpf-script-test-kbuild.c10 #define SEC(NAME) __attribute__((section(NAME), used)) argument
/Linux-v5.10/security/bpf/
Dhooks.c10 #define LSM_HOOK(RET, DEFAULT, NAME, ...) \ argument
11 LSM_HOOK_INIT(NAME, bpf_lsm_##NAME),
/Linux-v5.10/tools/testing/selftests/kmod/
Dkmod.sh342 NAME='\000'
346 printf $NAME >"$DIR"/config_test_driver
353 NAME='\000'
357 printf $NAME >"$DIR"/config_test_fs
370 NAME="nope-$DEFAULT_KMOD_DRIVER"
373 config_set_driver $NAME
381 NAME="nope-$DEFAULT_KMOD_FS"
384 config_set_fs $NAME
/Linux-v5.10/tools/bpf/bpftool/Documentation/
Dbpftool-net.rst23 | **bpftool** **net** { **show** | **list** } [ **dev** *NAME* ]
24 | **bpftool** **net attach** *ATTACH_TYPE* *PROG* **dev** *NAME* [ **overwrite** ]
25 | **bpftool** **net detach** *ATTACH_TYPE* **dev** *NAME*
33 **bpftool net { show | list }** [ **dev** *NAME* ]
55 **bpftool** **net attach** *ATTACH_TYPE* *PROG* **dev** *NAME* [ **overwrite** ]
56 Attach bpf program *PROG* to network interface *NAME* with
67 **bpftool** **net detach** *ATTACH_TYPE* **dev** *NAME*
68 Detach bpf program attached to network interface *NAME* with
/Linux-v5.10/arch/ia64/lib/
Didiv64.S39 #define NAME PASTE(PASTE(__,SGN),PASTE(OP,di3)) macro
41 GLOBAL_ENTRY(NAME)
82 END(NAME)
83 EXPORT_SYMBOL(NAME)
Didiv32.S41 #define NAME PASTE(PASTE(__,SGN),PASTE(OP,si3)) macro
43 GLOBAL_ENTRY(NAME)
85 END(NAME)
86 EXPORT_SYMBOL(NAME)
/Linux-v5.10/drivers/clk/
Dclk-lochnagar.c46 #define LN_PARENT(NAME) { .name = NAME, .fw_name = NAME } argument
84 #define LN1_CLK(ID, NAME, REG) \ argument
86 .name = NAME, \
93 #define LN2_CLK(ID, NAME) \ argument
95 .name = NAME, \
/Linux-v5.10/scripts/
Dpatch-kernel203 NAME=`grep ^NAME $sourcedir/Makefile`
204 NAME=${NAME##*=}
206 echo "Current kernel version is $VERSION.$PATCHLEVEL.$SUBLEVEL${EXTRAVERSION} ($NAME)"
/Linux-v5.10/Documentation/networking/
Dj1939.rst104 in the kernel. In J1939 any ECU is known by its 64-bit NAME. At the moment of
105 a successful address claim, the kernel keeps track of both NAME and source
188 ``can_addr.j1939.name`` contains the 64-bit J1939 NAME.
194 I.e. only packets with a matching PGN are received. If an ADDR or NAME is set
195 it is used as a receive filter, too. It will match the destination NAME or ADDR
196 of the incoming packet. The NAME filter will work only if appropriate Address
202 packets. If ADDR or NAME is set it will be used as the default destination ADDR
203 or NAME. Further a set ADDR or NAME during ``connect(2)`` is used as a receive
204 filter. It will match the source NAME or ADDR of the incoming packet.
210 If ``can_addr.j1939.name`` is set (!= 0) the NAME is looked up by the kernel and
[all …]
/Linux-v5.10/arch/powerpc/kernel/
Dsysfs.c83 #define __SYSFS_SPRSETUP_READ_WRITE(NAME, ADDRESS, EXTRA) \ argument
84 static void read_##NAME(void *val) \
88 static void write_##NAME(void *val) \
94 #define __SYSFS_SPRSETUP_SHOW_STORE(NAME) \ argument
95 static ssize_t show_##NAME(struct device *dev, \
101 smp_call_function_single(cpu->dev.id, read_##NAME, &val, 1); \
105 store_##NAME(struct device *dev, struct device_attribute *attr, \
113 smp_call_function_single(cpu->dev.id, write_##NAME, &val, 1); \
117 #define SYSFS_PMCSETUP(NAME, ADDRESS) \ argument
118 __SYSFS_SPRSETUP_READ_WRITE(NAME, ADDRESS, ppc_enable_pmcs()) \
[all …]

12345678