/Linux-v4.19/arch/powerpc/include/asm/ |
D | feature-fixups.h | 34 #define START_FTR_SECTION(label) label##1: argument 36 #define FTR_SECTION_ELSE_NESTED(label) \ argument 37 label##2: \ 38 .pushsection __ftr_alt_##label,"a"; \ 40 label##3: 42 #define MAKE_FTR_SECTION_ENTRY(msk, val, label, sect) \ argument 43 label##4: \ 47 label##5: \ 50 FTR_ENTRY_OFFSET label##1b-label##5b; \ 51 FTR_ENTRY_OFFSET label##2b-label##5b; \ [all …]
|
D | exception-64s.h | 160 #define __EXCEPTION_PROLOG_2_RELON(label, h) \ argument 162 LOAD_HANDLER(r12,label); \ 170 #define __EXCEPTION_PROLOG_2_RELON(label, h) \ argument 175 b label; 177 #define EXCEPTION_PROLOG_2_RELON(label, h) \ argument 178 __EXCEPTION_PROLOG_2_RELON(label, h) 185 #define EXCEPTION_RELON_PROLOG(area, label, h, extra, vec) \ argument 189 EXCEPTION_PROLOG_2_RELON(label, h) 198 #define LOAD_HANDLER(reg, label) \ argument 200 ori reg,reg,FIXED_SYMBOL_ABS_ADDR(label); [all …]
|
/Linux-v4.19/tools/testing/selftests/powerpc/primitives/asm/ |
D | feature-fixups.h | 34 #define START_FTR_SECTION(label) label##1: argument 36 #define FTR_SECTION_ELSE_NESTED(label) \ argument 37 label##2: \ 38 .pushsection __ftr_alt_##label,"a"; \ 40 label##3: 42 #define MAKE_FTR_SECTION_ENTRY(msk, val, label, sect) \ argument 43 label##4: \ 47 label##5: \ 50 FTR_ENTRY_OFFSET label##1b-label##5b; \ 51 FTR_ENTRY_OFFSET label##2b-label##5b; \ [all …]
|
/Linux-v4.19/security/apparmor/ |
D | label.c | 50 aa_put_label(rcu_dereference_protected(proxy->label, true)); in free_proxy() 52 RCU_INIT_POINTER(proxy->label, (struct aa_label *)PROXY_POISON); in free_proxy() 64 struct aa_proxy *aa_alloc_proxy(struct aa_label *label, gfp_t gfp) in aa_alloc_proxy() argument 71 rcu_assign_pointer(new->label, aa_get_label(label)); in aa_alloc_proxy() 85 tmp = rcu_dereference_protected(orig->proxy->label, in __aa_proxy_redirect() 87 rcu_assign_pointer(orig->proxy->label, aa_get_label(new)); in __aa_proxy_redirect() 316 static void label_destroy(struct aa_label *label) in label_destroy() argument 320 AA_BUG(!label); in label_destroy() 322 if (!label_isprofile(label)) { in label_destroy() 326 aa_put_str(label->hname); in label_destroy() [all …]
|
D | secid.c | 52 void aa_secid_update(u32 secid, struct aa_label *label) in aa_secid_update() argument 57 idr_replace(&aa_secids, label, secid); in aa_secid_update() 67 struct aa_label *label; in aa_secid_to_label() local 70 label = idr_find(&aa_secids, secid); in aa_secid_to_label() 73 return label; in aa_secid_to_label() 79 struct aa_label *label = aa_secid_to_label(secid); in apparmor_secid_to_secctx() local 84 if (!label) in apparmor_secid_to_secctx() 88 len = aa_label_asxprint(secdata, root_ns, label, in apparmor_secid_to_secctx() 93 len = aa_label_snxprint(NULL, 0, root_ns, label, in apparmor_secid_to_secctx() 106 struct aa_label *label; in apparmor_secctx_to_secid() local [all …]
|
D | lsm.c | 146 struct aa_label *label; in apparmor_capget() local 151 label = aa_get_newest_cred_label(cred); in apparmor_capget() 157 if (!unconfined(label)) { in apparmor_capget() 161 label_for_each_confined(i, label, profile) { in apparmor_capget() 171 aa_put_label(label); in apparmor_capget() 179 struct aa_label *label; in apparmor_capable() local 182 label = aa_get_newest_cred_label(cred); in apparmor_capable() 183 if (!unconfined(label)) in apparmor_capable() 184 error = aa_capable(label, cap, audit); in apparmor_capable() 185 aa_put_label(label); in apparmor_capable() [all …]
|
D | audit.c | 80 if (aad(sa)->label) { in audit_pre() 81 struct aa_label *label = aad(sa)->label; in audit_pre() local 83 if (label_isprofile(label)) { in audit_pre() 84 struct aa_profile *profile = labels_profile(label); in audit_pre() 95 aa_label_xaudit(ab, root_ns, label, FLAG_VIEW_SUBNS, in audit_pre() 152 aad(sa)->label = &profile->label; in aa_audit() 168 struct aa_label *label; member 176 if (!IS_ERR(rule->label)) in aa_audit_rule_free() 177 aa_put_label(rule->label); in aa_audit_rule_free() 201 rule->label = aa_label_parse(&root_ns->unconfined->label, rulestr, in aa_audit_rule_init() [all …]
|
D | domain.c | 137 struct aa_label *label, bool stack, in label_compound_match() argument 146 label_for_each(i, label, tp) { in label_compound_match() 160 label_for_each_cont(i, label, tp) { in label_compound_match() 197 struct aa_label *label, bool stack, in label_components_match() argument 208 label_for_each(i, label, tp) { in label_components_match() 224 label_for_each_cont(i, label, tp) { in label_components_match() 257 static int label_match(struct aa_profile *profile, struct aa_label *label, in label_match() argument 264 error = label_compound_match(profile, label, stack, state, subns, in label_match() 270 return label_components_match(profile, label, stack, state, subns, in label_match() 396 if (profile->label.flags & FLAG_NULL && in __attach_match() [all …]
|
/Linux-v4.19/security/apparmor/include/ |
D | cred.h | 39 struct aa_label *label = cred_label(cred); in aa_cred_raw_label() local 41 AA_BUG(!label); in aa_cred_raw_label() 42 return label; in aa_cred_raw_label() 110 static inline void end_current_label_crit_section(struct aa_label *label) in end_current_label_crit_section() argument 112 if (label != aa_current_raw_label()) in end_current_label_crit_section() 113 aa_put_label(label); in end_current_label_crit_section() 130 struct aa_label *label = aa_current_raw_label(); in __begin_current_label_crit_section() local 132 if (label_is_stale(label)) in __begin_current_label_crit_section() 133 label = aa_get_newest_label(label); in __begin_current_label_crit_section() 135 return label; in __begin_current_label_crit_section() [all …]
|
/Linux-v4.19/Documentation/blockdev/drbd/ |
D | drbd-connection-state-overview.dot | 9 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 …]
|
D | disk-states-8.dot | 2 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 …]
|
/Linux-v4.19/drivers/platform/x86/ |
D | mlx-platform.c | 260 .label = "psu1", 267 .label = "psu2", 277 .label = "pwr1", 284 .label = "pwr2", 294 .label = "fan1", 301 .label = "fan2", 308 .label = "fan3", 315 .label = "fan4", 325 .label = "asic1", 383 .label = "pwr1", [all …]
|
/Linux-v4.19/arch/arm/boot/dts/ |
D | bcm47094-linksys-panamera.dts | 30 label = "WPS"; 36 label = "WiFi"; 42 label = "Reset"; 52 label = "bcm53xx:white:wps"; 57 label = "bcm53xx:green:usb2"; 64 label = "bcm53xx:green:usb3"; 72 label = "bcm53xx:white:power"; 77 label = "bcm53xx:amber:wifi-disabled"; 82 label = "bcm53xx:white:wifi-enabled"; 87 label = "bcm53xx:white:bluebar1"; [all …]
|
D | armada-385-linksys-caiman.dts | 19 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 …]
|
D | armada-385-linksys-cobra.dts | 19 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 …]
|
D | armada-385-linksys-shelby.dts | 19 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 …]
|
D | armada-385-linksys-rango.dts | 21 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 …]
|
D | bcm4708-smartrg-sr400ac.dts | 31 label = "bcm53xx:white:power"; 37 label = "bcm53xx:amber:power"; 42 label = "bcm53xx:white:usb2"; 49 label = "bcm53xx:white:usb3"; 56 label = "bcm53xx:green:usb3"; 63 label = "bcm53xx:white:wps"; 68 label = "bcm53xx:red:status"; 73 label = "bcm53xx:green:status"; 78 label = "bcm53xx:blue:status"; 83 label = "bcm53xx:white:wan"; [all …]
|
D | kirkwood-linksys-viper.dts | 42 label = "WPS Button"; 48 label = "Reset Button"; 60 label = "viper:white:health"; 65 label = "viper:white:pulse"; 87 label = "ethernet1"; 92 label = "ethernet2"; 97 label = "ethernet3"; 102 label = "ethernet4"; 107 label = "internet"; 112 label = "cpu"; [all …]
|
D | armada-xp-linksys-mamba.dts | 113 label = "mamba:amber:wan"; 118 label = "mamba:white:wan"; 123 label = "mamba:white:wlan_2g"; 128 label = "mamba:white:wlan_5g"; 133 label = "mamba:white:esata"; 139 label = "mamba:white:usb2"; 144 label = "mamba:white:usb3_1"; 149 label = "mamba:white:usb3_2"; 154 label = "mamba:white:wps"; 159 label = "mamba:amber:wps"; [all …]
|
/Linux-v4.19/tools/bpf/ |
D | bpf_exp.y | 44 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 …]
|
/Linux-v4.19/drivers/scsi/sym53c8xx_2/ |
D | sym_fw.h | 87 #define SYM_GEN_A(s, label) s label; argument 88 #define SYM_GEN_B(s, label) s label; argument 89 #define SYM_GEN_Z(s, label) s label; argument 165 #define SCRIPTA_BA(np, label) (np->fwa_bas.label) argument 166 #define SCRIPTB_BA(np, label) (np->fwb_bas.label) argument 167 #define SCRIPTZ_BA(np, label) (np->fwz_bas.label) argument 194 #define HADDR_1(label) (RELOC_SOFTC | offsetof(struct sym_hcb, label)) argument 195 #define HADDR_2(label,ofs) (RELOC_SOFTC | \ argument 196 (offsetof(struct sym_hcb, label)+(ofs))) 197 #define RADDR_1(label) (RELOC_REGISTER | REG(label)) argument [all …]
|
/Linux-v4.19/Documentation/scsi/scsi_transport_srp/ |
D | rport_state_diagram.dot | 7 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 …]
|
/Linux-v4.19/block/partitions/ |
D | sun.c | 58 } * label; in sun_partition() local 65 label = read_part_sector(state, 0, §); in sun_partition() 66 if (!label) in sun_partition() 69 p = label->partitions; in sun_partition() 70 if (be16_to_cpu(label->magic) != SUN_LABEL_MAGIC) { in sun_partition() 77 ush = ((__be16 *) (label+1)) - 1; in sun_partition() 78 for (csum = 0; ush >= ((__be16 *) label);) in sun_partition() 88 use_vtoc = ((be32_to_cpu(label->vtoc.sanity) == SUN_VTOC_SANITY) && in sun_partition() 89 (be32_to_cpu(label->vtoc.version) == 1) && in sun_partition() 90 (be16_to_cpu(label->vtoc.nparts) <= 8)); in sun_partition() [all …]
|
/Linux-v4.19/Documentation/devicetree/bindings/leds/ |
D | leds-bcm6358.txt | 27 - label : see Documentation/devicetree/bindings/leds/common.txt 46 label = "white:alarm"; 51 label = "white:tv"; 56 label = "white:tel"; 61 label = "white:adsl"; 77 label = "red:power"; 82 label = "green:power"; 87 label = "blue:power"; 92 label = "red:broadband"; 96 label = "green:broadband"; [all …]
|