Home
last modified time | relevance | path

Searched refs:label (Results 1 – 25 of 2577) sorted by relevance

12345678910>>...104

/OK3568_Linux_fs/kernel/arch/powerpc/include/asm/
H A Dfeature-fixups.h31 #define START_FTR_SECTION(label) label##1: argument
33 #define FTR_SECTION_ELSE_NESTED(label) \ argument
34 label##2: \
35 .pushsection __ftr_alt_##label,"a"; \
37 label##3:
39 #define MAKE_FTR_SECTION_ENTRY(msk, val, label, sect) \ argument
40 label##4: \
44 label##5: \
47 FTR_ENTRY_OFFSET label##1b-label##5b; \
48 FTR_ENTRY_OFFSET label##2b-label##5b; \
[all …]
/OK3568_Linux_fs/kernel/tools/testing/selftests/powerpc/primitives/asm/
H A Dfeature-fixups.h31 #define START_FTR_SECTION(label) label##1: argument
33 #define FTR_SECTION_ELSE_NESTED(label) \ argument
34 label##2: \
35 .pushsection __ftr_alt_##label,"a"; \
37 label##3:
39 #define MAKE_FTR_SECTION_ENTRY(msk, val, label, sect) \ argument
40 label##4: \
44 label##5: \
47 FTR_ENTRY_OFFSET label##1b-label##5b; \
48 FTR_ENTRY_OFFSET label##2b-label##5b; \
[all …]
/OK3568_Linux_fs/kernel/security/apparmor/
H A Dlabel.c46 aa_put_label(rcu_dereference_protected(proxy->label, true)); in free_proxy()
48 RCU_INIT_POINTER(proxy->label, (struct aa_label *)PROXY_POISON); in free_proxy()
60 struct aa_proxy *aa_alloc_proxy(struct aa_label *label, gfp_t gfp) in aa_alloc_proxy() argument
67 rcu_assign_pointer(new->label, aa_get_label(label)); in aa_alloc_proxy()
81 tmp = rcu_dereference_protected(orig->proxy->label, in __aa_proxy_redirect()
83 rcu_assign_pointer(orig->proxy->label, aa_get_label(new)); in __aa_proxy_redirect()
312 void aa_label_destroy(struct aa_label *label) in aa_label_destroy() argument
314 AA_BUG(!label); in aa_label_destroy()
316 if (!label_isprofile(label)) { in aa_label_destroy()
320 aa_put_str(label->hname); in aa_label_destroy()
[all …]
H A Dsecid.c46 void aa_secid_update(u32 secid, struct aa_label *label) in aa_secid_update() argument
51 idr_replace(&aa_secids, label, secid); in aa_secid_update()
61 struct aa_label *label; in aa_secid_to_label() local
64 label = idr_find(&aa_secids, secid); in aa_secid_to_label()
67 return label; in aa_secid_to_label()
73 struct aa_label *label = aa_secid_to_label(secid); in apparmor_secid_to_secctx() local
78 if (!label) in apparmor_secid_to_secctx()
82 len = aa_label_asxprint(secdata, root_ns, label, in apparmor_secid_to_secctx()
87 len = aa_label_snxprint(NULL, 0, root_ns, label, in apparmor_secid_to_secctx()
100 struct aa_label *label; in apparmor_secctx_to_secid() local
[all …]
H A Ddomain.c133 struct aa_label *label, bool stack, in label_compound_match() argument
142 label_for_each(i, label, tp) { in label_compound_match()
156 label_for_each_cont(i, label, tp) { in label_compound_match()
193 struct aa_label *label, bool stack, in label_components_match() argument
204 label_for_each(i, label, tp) { in label_components_match()
220 label_for_each_cont(i, label, tp) { in label_components_match()
253 static int label_match(struct aa_profile *profile, struct aa_label *label, in label_match() argument
260 error = label_compound_match(profile, label, stack, state, subns, in label_match()
266 return label_components_match(profile, label, stack, state, subns, in label_match()
400 if (profile->label.flags & FLAG_NULL && in find_attach()
[all …]
H A Dnet.c102 aa_label_xaudit(ab, labels_ns(aad(sa)->label), aad(sa)->peer, in audit_net_cb()
134 int aa_af_perm(struct aa_label *label, const char *op, u32 request, u16 family, in aa_af_perm() argument
140 return fn_for_each_confined(label, profile, in aa_af_perm()
145 static int aa_label_sk_perm(struct aa_label *label, const char *op, u32 request, in aa_label_sk_perm() argument
150 AA_BUG(!label); in aa_label_sk_perm()
153 if (!unconfined(label)) { in aa_label_sk_perm()
157 error = fn_for_each_confined(label, profile, in aa_label_sk_perm()
166 struct aa_label *label; in aa_sk_perm() local
173 label = begin_current_label_crit_section(); in aa_sk_perm()
174 error = aa_label_sk_perm(label, op, request, sk); in aa_sk_perm()
[all …]
H A Dlsm.c150 struct aa_label *label; in apparmor_capget() local
155 label = aa_get_newest_cred_label(cred); in apparmor_capget()
161 if (!unconfined(label)) { in apparmor_capget()
165 label_for_each_confined(i, label, profile) { in apparmor_capget()
175 aa_put_label(label); in apparmor_capget()
183 struct aa_label *label; in apparmor_capable() local
186 label = aa_get_newest_cred_label(cred); in apparmor_capable()
187 if (!unconfined(label)) in apparmor_capable()
188 error = aa_capable(label, cap, opts); in apparmor_capable()
189 aa_put_label(label); in apparmor_capable()
[all …]
/OK3568_Linux_fs/kernel/security/apparmor/include/
H A Dcred.h31 struct aa_label *label) in set_cred_label() argument
36 *blob = label; in set_cred_label()
49 struct aa_label *label = cred_label(cred); in aa_cred_raw_label() local
51 AA_BUG(!label); in aa_cred_raw_label()
52 return label; in aa_cred_raw_label()
120 static inline void end_current_label_crit_section(struct aa_label *label) in end_current_label_crit_section() argument
122 if (label != aa_current_raw_label()) in end_current_label_crit_section()
123 aa_put_label(label); in end_current_label_crit_section()
140 struct aa_label *label = aa_current_raw_label(); in __begin_current_label_crit_section() local
142 if (label_is_stale(label)) in __begin_current_label_crit_section()
[all …]
/OK3568_Linux_fs/kernel/drivers/platform/x86/
H A Dmlx-platform.c358 .label = "psu1",
364 .label = "psu2",
374 .label = "psu1",
380 .label = "psu2",
389 .label = "pwr1",
396 .label = "pwr2",
406 .label = "fan1",
413 .label = "fan2",
420 .label = "fan3",
427 .label = "fan4",
[all …]
/OK3568_Linux_fs/u-boot/cmd/
H A Dpxe.c514 struct pxe_label *label; in label_create() local
516 label = malloc(sizeof(struct pxe_label)); in label_create()
518 if (!label) in label_create()
521 memset(label, 0, sizeof(struct pxe_label)); in label_create()
523 return label; in label_create()
534 static void label_destroy(struct pxe_label *label) in label_destroy() argument
536 if (label->name) in label_destroy()
537 free(label->name); in label_destroy()
539 if (label->kernel) in label_destroy()
540 free(label->kernel); in label_destroy()
[all …]
/OK3568_Linux_fs/kernel/Documentation/admin-guide/blockdev/drbd/
H A Ddrbd-connection-state-overview.dot9 StandAlone [ style=filled,fillcolor=gray,label=StandAlone ]
13 Unconnected [ label=Unconnected ]
16 label="{communication loss|{Timeout|BrokenPipe|NetworkFailure}}" ]
21 label="try to connect, handshake"
23 WFConnection [ label=WFConnection ]
24 WFReportParams [ label=WFReportParams ]
27 TearDown [ label=TearDown ]
29 Connected [ label=Connected,style=filled,fillcolor=green,fontcolor=black ]
33 StartingSyncS [ label=StartingSyncS ]
34 StartingSyncT [ label=StartingSyncT ]
[all …]
H A Ddisk-states-8.dot2 Diskless -> Inconsistent [ label = "ioctl_set_disk()" ]
3 Diskless -> Consistent [ label = "ioctl_set_disk()" ]
4 Diskless -> Outdated [ label = "ioctl_set_disk()" ]
5 Consistent -> Outdated [ label = "receive_param()" ]
6 Consistent -> UpToDate [ label = "receive_param()" ]
7 Consistent -> Inconsistent [ label = "start resync" ]
8 Outdated -> Inconsistent [ label = "start resync" ]
9 UpToDate -> Inconsistent [ label = "ioctl_replicate" ]
10 Inconsistent -> UpToDate [ label = "resync completed" ]
11 Consistent -> Failed [ label = "io completion error" ]
[all …]
/OK3568_Linux_fs/kernel/tools/bpf/
H A Dbpf_exp.y44 static void bpf_set_curr_label(char *label);
45 static void bpf_set_jmp_label(char *label, enum jmp_type type);
50 char *label; member
63 %token extension number label
65 %type <label> label
119 : label ':' { bpf_set_curr_label($1); }
210 : OP_JMP label {
216 : OP_JEQ '#' number ',' label ',' label {
220 | OP_JEQ 'x' ',' label ',' label {
224 | OP_JEQ '%' 'x' ',' label ',' label {
[all …]
/OK3568_Linux_fs/kernel/arch/arm/boot/dts/
H A Dbcm47094-linksys-panamera.dts29 label = "WPS";
35 label = "WiFi";
41 label = "Reset";
51 label = "bcm53xx:white:wps";
56 label = "bcm53xx:green:usb2";
63 label = "bcm53xx:green:usb3";
71 label = "bcm53xx:white:power";
76 label = "bcm53xx:amber:wifi-disabled";
81 label = "bcm53xx:white:wifi-enabled";
86 label = "bcm53xx:white:bluebar1";
[all …]
H A Darmada-385-linksys-shelby.dts19 label = "shelby:amber:wan";
24 label = "shelby:white:wan";
29 label = "shelby:white:wlan_2g";
34 label = "shelby:white:wlan_5g";
39 label = "shelby:white:usb2";
44 label = "shelby:white:usb3_1";
49 label = "shelby:white:usb3_2";
54 label = "shelby:white:wps";
59 label = "shelby:amber:wps";
66 label = "shelby:white:power";
[all …]
H A Darmada-385-linksys-caiman.dts19 label = "caiman:amber:wan";
24 label = "caiman:white:wan";
29 label = "caiman:white:wlan_2g";
34 label = "caiman:white:wlan_5g";
39 label = "caiman:white:usb2";
44 label = "caiman:white:usb3_1";
49 label = "caiman:white:usb3_2";
54 label = "caiman:white:wps";
59 label = "caiman:amber:wps";
66 label = "caiman:white:power";
[all …]
H A Darmada-385-linksys-cobra.dts19 label = "cobra:amber:wan";
24 label = "cobra:white:wan";
29 label = "cobra:white:wlan_2g";
34 label = "cobra:white:wlan_5g";
39 label = "cobra:white:usb2";
44 label = "cobra:white:usb3_1";
49 label = "cobra:white:usb3_2";
54 label = "cobra:white:wps";
59 label = "cobra:amber:wps";
66 label = "cobra:white:power";
[all …]
H A Darmada-385-linksys-rango.dts21 label = "rango:amber:wan";
26 label = "rango:white:wan";
31 label = "rango:white:usb2";
36 label = "rango:white:usb3_1";
41 label = "rango:white:usb3_2";
46 label = "rango:white:wps";
51 label = "rango:amber:wps";
59 label = "rango:white:power";
64 label = "rango:white:sata";
69 label = "rango:white:wlan_2g";
[all …]
H A Dbcm4708-smartrg-sr400ac.dts32 label = "bcm53xx:white:power";
38 label = "bcm53xx:amber:power";
43 label = "bcm53xx:white:usb2";
50 label = "bcm53xx:white:usb3";
57 label = "bcm53xx:green:usb3";
64 label = "bcm53xx:white:wps";
69 label = "bcm53xx:red:status";
74 label = "bcm53xx:green:status";
79 label = "bcm53xx:blue:status";
84 label = "bcm53xx:white:wan";
[all …]
H A Dkirkwood-l-50.dts99 label = "l-50:green:status";
104 label = "l-50:red:status";
109 label = "l-50:green:wifi";
115 label = "l-50:green:internet";
120 label = "l-50:red:internet";
125 label = "l-50:green:usb1";
132 label = "l-50:red:usb1";
137 label = "l-50:green:usb2";
144 label = "l-50:red:usb2";
195 label = "factory_defaults";
[all …]
/OK3568_Linux_fs/kernel/drivers/scsi/sym53c8xx_2/
H A Dsym_fw.h74 #define SYM_GEN_A(s, label) s label; argument
75 #define SYM_GEN_B(s, label) s label; argument
76 #define SYM_GEN_Z(s, label) s label; argument
152 #define SCRIPTA_BA(np, label) (np->fwa_bas.label) argument
153 #define SCRIPTB_BA(np, label) (np->fwb_bas.label) argument
154 #define SCRIPTZ_BA(np, label) (np->fwz_bas.label) argument
181 #define HADDR_1(label) (RELOC_SOFTC | offsetof(struct sym_hcb, label)) argument
182 #define HADDR_2(label,ofs) (RELOC_SOFTC | \ argument
183 (offsetof(struct sym_hcb, label)+(ofs)))
184 #define RADDR_1(label) (RELOC_REGISTER | REG(label)) argument
[all …]
/OK3568_Linux_fs/kernel/drivers/gpu/arm/midgard/docs/
H A Dpolicy_operation_diagram.dot28 low_queue [ shape=record label = "LowP | {<ql>ctx_lo | ... | <qm>ctx_i | ... | <qr>ctx_hi}" ];
29 queues_middle_sep [ label="" shape=plaintext width=0 height=0 ];
31 rt_queue [ shape=record label = "RT | {<ql>ctx_lo | ... | <qm>ctx_j | ... | <qr>ctx_hi}" ];
33 label = "Policy's Queue(s)";
36 call_enqueue [ shape=plaintext label="enqueue_ctx()" ];
41 call_dequeue [ shape=plaintext label="dequeue_head_ctx()\n+ runpool_add_ctx()" ];
42 call_ctxfinish [ shape=plaintext label="runpool_remove_ctx()" ];
44 call_ctxdone [ shape=plaintext label="don't requeue;\n/* ctx has no more jobs */" ];
49 as0 [ width=2 height = 0.25 label="AS0: Job_1, ..., Job_n" ];
50 as1 [ width=2 height = 0.25 label="AS1: Job_1, ..., Job_m" ];
[all …]
/OK3568_Linux_fs/u-boot/include/fsl-mc/
H A Dfsl_dprc.h51 MC_CMD_OP(cmd, 2, 0, 8, char, cfg->label[0]);\
52 MC_CMD_OP(cmd, 2, 8, 8, char, cfg->label[1]);\
53 MC_CMD_OP(cmd, 2, 16, 8, char, cfg->label[2]);\
54 MC_CMD_OP(cmd, 2, 24, 8, char, cfg->label[3]);\
55 MC_CMD_OP(cmd, 2, 32, 8, char, cfg->label[4]);\
56 MC_CMD_OP(cmd, 2, 40, 8, char, cfg->label[5]);\
57 MC_CMD_OP(cmd, 2, 48, 8, char, cfg->label[6]);\
58 MC_CMD_OP(cmd, 2, 56, 8, char, cfg->label[7]);\
59 MC_CMD_OP(cmd, 3, 0, 8, char, cfg->label[8]);\
60 MC_CMD_OP(cmd, 3, 8, 8, char, cfg->label[9]);\
[all …]
/OK3568_Linux_fs/kernel/Documentation/scsi/scsi_transport_srp/
H A Drport_state_diagram.dot7 running_rta [ label = "running;\nreconnect\ntimer\nactive" ];
9 running [ label = "running;\nreconnect\ntimer\nstopped" ];
11 failfast [ label = "fail I/O\nfast" ];
14 …running -> running_rta [ label = "fast_io_fail_tmo = off and\ndev_loss_tmo = off;\nsrp_start_tl_f…
15 …running_rta -> running [ label = "fast_io_fail_tmo = off and\ndev_loss_tmo = off;\nreconnecting s…
16 …running -> blocked [ label = "fast_io_fail_tmo >= 0 or\ndev_loss_tmo >= 0;\nsrp_start_tl_fail_tim…
17 …running -> failfast [ label = "fast_io_fail_tmo = off and\ndev_loss_tmo = off;\nreconnecting fail…
18 blocked -> failfast [ label = "fast_io_fail_tmo\nexpired or\nreconnecting\nfailed" ];
19 blocked -> lost [ label = "dev_loss_tmo\nexpired or\nsrp_stop_rport_timers()" ];
20 failfast -> lost [ label = "dev_loss_tmo\nexpired or\nsrp_stop_rport_timers()" ];
[all …]
/OK3568_Linux_fs/kernel/block/partitions/
H A Dsun.c65 } * label; in sun_partition() local
72 label = read_part_sector(state, 0, &sect); in sun_partition()
73 if (!label) in sun_partition()
76 p = label->partitions; in sun_partition()
77 if (be16_to_cpu(label->magic) != SUN_LABEL_MAGIC) { in sun_partition()
84 ush = ((__be16 *) (label+1)) - 1; in sun_partition()
85 for (csum = 0; ush >= ((__be16 *) label);) in sun_partition()
95 use_vtoc = ((be32_to_cpu(label->vtoc.sanity) == SUN_VTOC_SANITY) && in sun_partition()
96 (be32_to_cpu(label->vtoc.version) == 1) && in sun_partition()
97 (be16_to_cpu(label->vtoc.nparts) <= 8)); in sun_partition()
[all …]

12345678910>>...104