| /linux-4.4.14/samples/seccomp/ |
| D | bpf-helper.c | 18 int bpf_resolve_jumps(struct bpf_labels *labels, in bpf_resolve_jumps() argument 36 if (labels->labels[filter->k].location == 0xffffffff) { in bpf_resolve_jumps() 38 labels->labels[filter->k].label); in bpf_resolve_jumps() 41 filter->k = labels->labels[filter->k].location - in bpf_resolve_jumps() 47 if (labels->labels[filter->k].location != 0xffffffff) { in bpf_resolve_jumps() 49 labels->labels[filter->k].label); in bpf_resolve_jumps() 52 labels->labels[filter->k].location = insn; in bpf_resolve_jumps() 63 __u32 seccomp_bpf_label(struct bpf_labels *labels, const char *label) in seccomp_bpf_label() argument 65 struct __bpf_label *begin = labels->labels, *end; in seccomp_bpf_label() 68 if (labels->count == BPF_LABELS_MAX) { in seccomp_bpf_label() [all …]
|
| D | bpf-helper.h | 31 } labels[BPF_LABELS_MAX]; member 34 int bpf_resolve_jumps(struct bpf_labels *labels, 36 __u32 seccomp_bpf_label(struct bpf_labels *labels, const char *label); 48 #define JUMP(labels, label) \ argument 49 BPF_JUMP(BPF_JMP+BPF_JA, FIND_LABEL((labels), (label)), \ 51 #define LABEL(labels, label) \ argument 52 BPF_JUMP(BPF_JMP+BPF_JA, FIND_LABEL((labels), (label)), \ 59 #define FIND_LABEL(labels, label) seccomp_bpf_label((labels), #label) argument
|
| /linux-4.4.14/net/netfilter/ |
| D | nf_conntrack_labels.c | 27 struct nf_conn_labels *labels = nf_ct_labels_find(ct); in nf_connlabel_match() local 29 if (!labels) in nf_connlabel_match() 32 return bit < label_bits(labels) && test_bit(bit, labels->bits); in nf_connlabel_match() 38 struct nf_conn_labels *labels = nf_ct_labels_find(ct); in nf_connlabel_set() local 40 if (!labels || bit >= label_bits(labels)) in nf_connlabel_set() 43 if (test_bit(bit, labels->bits)) in nf_connlabel_set() 46 if (!test_and_set_bit(bit, labels->bits)) in nf_connlabel_set() 67 struct nf_conn_labels *labels; in nf_connlabels_replace() local 71 labels = nf_ct_labels_find(ct); in nf_connlabels_replace() 72 if (!labels) in nf_connlabels_replace() [all …]
|
| D | nft_ct.c | 102 struct nf_conn_labels *labels = nf_ct_labels_find(ct); in nft_ct_get_eval() local 105 if (!labels) { in nft_ct_get_eval() 110 size = labels->words * sizeof(long); in nft_ct_get_eval() 111 memcpy(dest, labels->bits, size); in nft_ct_get_eval()
|
| D | nf_conntrack_netlink.c | 350 struct nf_conn_labels *labels = nf_ct_labels_find(ct); in ctnetlink_label_size() local 352 if (!labels) in ctnetlink_label_size() 354 return nla_total_size(labels->words * sizeof(long)); in ctnetlink_label_size() 360 struct nf_conn_labels *labels = nf_ct_labels_find(ct); in ctnetlink_dump_labels() local 363 if (!labels) in ctnetlink_dump_labels() 366 len = labels->words * sizeof(long); in ctnetlink_dump_labels() 369 if (labels->bits[i] != 0) in ctnetlink_dump_labels() 370 return nla_put(skb, CTA_LABELS, len, labels->bits); in ctnetlink_dump_labels() 372 } while (i < labels->words); in ctnetlink_dump_labels()
|
| D | Kconfig | 1030 This match allows you to test and assign userspace-defined labels names
|
| /linux-4.4.14/net/openvswitch/ |
| D | conntrack.c | 53 struct md_labels labels; member 115 struct ovs_key_ct_labels *labels) in ovs_ct_get_labels() argument 125 memset(labels, 0, OVS_CT_LABELS_LEN); in ovs_ct_get_labels() 126 memcpy(labels, cl->bits, len); in ovs_ct_get_labels() 128 memset(labels, 0, OVS_CT_LABELS_LEN); in ovs_ct_get_labels() 139 ovs_ct_get_labels(ct, &key->ct.labels); in __ovs_ct_update_key() 189 nla_put(skb, OVS_KEY_ATTR_CT_LABELS, sizeof(key->ct.labels), in ovs_ct_put_key() 190 &key->ct.labels)) in ovs_ct_put_key() 224 const struct ovs_key_ct_labels *labels, in ovs_ct_set_labels() argument 245 err = nf_connlabels_replace(ct, (u32 *)labels, (u32 *)mask, in ovs_ct_set_labels() [all …]
|
| D | conntrack.h | 80 memset(&key->ct.labels, 0, sizeof(key->ct.labels)); in ovs_ct_fill_key()
|
| D | flow.h | 120 struct ovs_key_ct_labels labels; member
|
| D | flow_netlink.c | 896 SW_FLOW_KEY_MEMCPY(match, ct.labels, cl->ct_labels, in metadata_from_nlattrs()
|
| /linux-4.4.14/net/mpls/ |
| D | mpls_iptunnel.c | 37 return en->labels * sizeof(struct mpls_shim_hdr); in mpls_encap_size() 102 for (i = tun_encap_info->labels - 1; i >= 0; i--) { in mpls_output() 152 &tun_encap_info->labels, tun_encap_info->label); in mpls_build_state() 176 if (nla_put_labels(skb, MPLS_IPTUNNEL_DST, tun_encap_info->labels, in mpls_fill_encap_info() 192 return nla_total_size(tun_encap_info->labels * 4); in mpls_encap_nlsize() 201 if (a_hdr->labels != b_hdr->labels) in mpls_encap_cmp()
|
| D | internal.h | 123 int nla_put_labels(struct sk_buff *skb, int attrtype, u8 labels, 125 int nla_get_labels(const struct nlattr *nla, u32 max_labels, u8 *labels,
|
| D | af_mpls.c | 987 u8 labels, const u32 label[]) in nla_put_labels() argument 993 nla = nla_reserve(skb, attrtype, labels*4); in nla_put_labels() 999 for (i = labels - 1; i >= 0; i--) { in nla_put_labels() 1009 u32 max_labels, u8 *labels, u32 label[]) in nla_get_labels() argument 1049 *labels = nla_labels; in nla_get_labels() 1396 struct mpls_route __rcu **labels = NULL, **old; in resize_platform_label_table() local 1401 labels = kzalloc(size, GFP_KERNEL | __GFP_NOWARN | __GFP_NORETRY); in resize_platform_label_table() 1402 if (!labels) in resize_platform_label_table() 1403 labels = vzalloc(size); in resize_platform_label_table() 1405 if (!labels) in resize_platform_label_table() [all …]
|
| /linux-4.4.14/drivers/nvdimm/ |
| D | label.c | 539 victim_label = nd_mapping->labels[0]; in __pmem_label_update() 552 nd_mapping->labels[0] = nd_label; in __pmem_label_update() 564 nd_label = nd_mapping->labels[l]; in del_label() 568 for (j = l; (next_label = nd_mapping->labels[j + 1]); j++) in del_label() 569 nd_mapping->labels[j] = next_label; in del_label() 570 nd_mapping->labels[j] = NULL; in del_label() 739 for_each_label(l, nd_label, nd_mapping->labels) { in __blk_label_update() 767 nd_mapping->labels[l++] = nd_label; in __blk_label_update() 769 nd_mapping->labels[l] = NULL; in __blk_label_update() 797 for_each_label(l, nd_label, nd_mapping->labels) in init_labels() [all …]
|
| D | nd.h | 83 #define for_each_label(l, label, labels) \ argument 84 for (l = 0; (label = labels ? labels[l] : NULL); l++)
|
| D | namespace_devs.c | 1082 if (nd_mapping->labels) in namespace_update_uuid() 1456 for_each_label(l, nd_label, nd_mapping->labels) { in has_uuid_at_pos() 1501 for_each_label(l, nd_label, nd_mapping->labels) in select_pmem_id() 1524 nd_mapping->labels[0] = select; in select_pmem_id() 1525 nd_mapping->labels[1] = NULL; in select_pmem_id() 1552 for_each_label(l, nd_label, nd_region->mapping[0].labels) { in find_pmem_label_set() 1598 struct nd_namespace_label *label0 = nd_mapping->labels[0]; in find_pmem_label_set() 1659 kfree(nd_mapping->labels); in create_namespace_pmem() 1660 nd_mapping->labels = NULL; in create_namespace_pmem() 1771 for_each_label(l, nd_label, nd_mapping->labels) { in create_namespace_blk() [all …]
|
| D | region_devs.c | 402 kfree(nd_mapping->labels); in nd_region_notify_driver_action() 403 nd_mapping->labels = NULL; in nd_region_notify_driver_action()
|
| /linux-4.4.14/arch/mips/mm/ |
| D | tlbex.c | 310 static struct uasm_label labels[128]; variable 1246 struct uasm_label *l = labels; in build_r4000_tlb_refill_handler() 1254 memset(labels, 0, sizeof(labels)); in build_r4000_tlb_refill_handler() 1332 uasm_copy_handler(relocs, labels, tlb_handler, p, f); in build_r4000_tlb_refill_handler() 1347 uasm_copy_handler(relocs, labels, tlb_handler, p, f); in build_r4000_tlb_refill_handler() 1359 for (i = 0; i < ARRAY_SIZE(labels) && labels[i].lab != ls; i++) in build_r4000_tlb_refill_handler() 1361 BUG_ON(i == ARRAY_SIZE(labels)); in build_r4000_tlb_refill_handler() 1362 split = labels[i].addr; in build_r4000_tlb_refill_handler() 1388 uasm_copy_handler(relocs, labels, tlb_handler, split, f); in build_r4000_tlb_refill_handler() 1398 uasm_copy_handler(relocs, labels, in build_r4000_tlb_refill_handler() [all …]
|
| D | page.c | 69 static struct uasm_label labels[5]; variable 270 struct uasm_label *l = labels; in build_clear_page() 279 memset(labels, 0, sizeof(labels)); in build_clear_page() 347 uasm_resolve_relocs(relocs, labels); in build_clear_page() 417 struct uasm_label *l = labels; in build_copy_page() 426 memset(labels, 0, sizeof(labels)); in build_copy_page() 591 uasm_resolve_relocs(relocs, labels); in build_copy_page()
|
| /linux-4.4.14/scripts/dtc/ |
| D | livetree.c | 27 void add_label(struct label **labels, char *label) in add_label() argument 32 for_each_label_withdel(*labels, new) in add_label() 41 new->next = *labels; in add_label() 42 *labels = new; in add_label() 45 void delete_labels(struct label **labels) in delete_labels() argument 49 for_each_label(*labels, label) in delete_labels() 146 for_each_label_withdel(new_node->labels, l) in merge_nodes() 147 add_label(&old_node->labels, l->label); in merge_nodes() 167 for_each_label_withdel(new_prop->labels, l) in merge_nodes() 168 add_label(&old_prop->labels, l->label); in merge_nodes() [all …]
|
| D | flattree.c | 55 void (*beginnode)(void *, struct label *labels); 56 void (*endnode)(void *, struct label *labels); 57 void (*property)(void *, struct label *labels); 92 static void bin_emit_beginnode(void *e, struct label *labels) in bin_emit_beginnode() argument 97 static void bin_emit_endnode(void *e, struct label *labels) in bin_emit_endnode() argument 102 static void bin_emit_property(void *e, struct label *labels) in bin_emit_property() argument 194 static void asm_emit_beginnode(void *e, struct label *labels) in asm_emit_beginnode() argument 199 for_each_label(labels, l) { in asm_emit_beginnode() 207 static void asm_emit_endnode(void *e, struct label *labels) in asm_emit_endnode() argument 214 for_each_label(labels, l) { in asm_emit_endnode() [all …]
|
| D | dtc.h | 142 struct label *labels; member 160 struct label *labels; member 184 void add_label(struct label **labels, char *label); 185 void delete_labels(struct label **labels); 228 struct label *labels; member
|
| D | dtc-parser.y | 129 add_label(&$2->labels, $1); 148 add_label(&target->labels, $2); 212 add_label(&$2->labels, $1); 467 add_label(&$2->labels, $1);
|
| D | treesource.c | 243 for_each_label(tree->labels, l) in write_tree_source_node() 252 for_each_label(prop->labels, l) in write_tree_source_node() 275 for_each_label(re->labels, l) in dt_to_source()
|
| D | checks.c | 346 for_each_label(node->labels, l) in check_duplicate_label_node() 355 for_each_label(prop->labels, l) in check_duplicate_label_prop()
|
| D | dtc-parser.tab.c_shipped | 1501 add_label(&(yyvsp[0].re)->labels, (yyvsp[-1].labelref)); 1528 add_label(&target->labels, (yyvsp[-2].labelref)); 1619 add_label(&(yyvsp[0].prop)->labels, (yyvsp[-1].labelref)); 2009 add_label(&(yyvsp[0].node)->labels, (yyvsp[-1].labelref));
|
| /linux-4.4.14/fs/9p/ |
| D | Kconfig | 40 Security labels support alternative access control models 43 labels in the 9P filesystem. 46 extended attributes for file security labels, say N.
|
| /linux-4.4.14/fs/ext2/ |
| D | Kconfig | 38 Security labels support alternative access control models 41 labels in the ext2 filesystem. 44 extended attributes for file security labels, say N.
|
| /linux-4.4.14/drivers/gpio/ |
| D | gpio-it87.c | 295 char *labels, **labels_table; in it87_gpio_init() local 364 labels = kcalloc(it87_gpio->chip.ngpio, sizeof("it87_gpXY"), in it87_gpio_init() 369 if (!labels || !labels_table) { in it87_gpio_init() 375 char *label = &labels[i * sizeof("it87_gpXY")]; in it87_gpio_init() 391 kfree(labels); in it87_gpio_init()
|
| /linux-4.4.14/fs/jfs/ |
| D | Kconfig | 28 Security labels support alternative access control models 31 labels in the jfs filesystem. 34 extended attributes for file security labels, say N.
|
| /linux-4.4.14/sound/firewire/bebob/ |
| D | bebob_focusrite.c | 237 if (spec->labels == saffire_le_meter_labels) in saffire_meter_get() 247 if (err >= 0 && spec->labels == saffire_le_meter_labels) { in saffire_meter_get() 302 .labels = saffire_le_meter_labels, 313 .labels = saffire_meter_labels,
|
| D | bebob_maudio.c | 706 if (spec->labels == solo_meter_labels) { in normal_meter_get() 726 .labels = special_meter_labels, 742 .labels = fw410_meter_labels, 754 .labels = audiophile_meter_labels, 766 .labels = solo_meter_labels, 778 .labels = ozonic_meter_labels, 790 .labels = nrv10_meter_labels,
|
| D | bebob_proc.c | 94 spec->labels[i / 2], c++, buf[i]); in proc_read_meters() 96 (strcmp(spec->labels[i / 2], in proc_read_meters() 97 spec->labels[(i + 1) / 2]) != 0)) in proc_read_meters()
|
| D | bebob.h | 59 const char *const *labels; member 69 const char *const *labels; member
|
| /linux-4.4.14/drivers/hwmon/ |
| D | dell-smm-hwmon.c | 567 static const char * const labels[] = { in i8k_hwmon_show_temp_label() local 581 if (type >= ARRAY_SIZE(labels)) in i8k_hwmon_show_temp_label() 582 type = ARRAY_SIZE(labels) - 1; in i8k_hwmon_show_temp_label() 583 return sprintf(buf, "%s\n", labels[type]); in i8k_hwmon_show_temp_label() 603 static const char * const labels[] = { in i8k_hwmon_show_fan_label() local 624 if (type >= ARRAY_SIZE(labels)) in i8k_hwmon_show_fan_label() 625 type = (ARRAY_SIZE(labels) - 1); in i8k_hwmon_show_fan_label() 627 return sprintf(buf, "%s%s\n", (dock ? "Docking " : ""), labels[type]); in i8k_hwmon_show_fan_label()
|
| D | it87.c | 1527 static const char * const labels[] = { in show_label() local 1544 label = labels[nr]; in show_label()
|
| /linux-4.4.14/Documentation/networking/ |
| D | mpls-sysctl.txt | 6 greater than the number of platform labels. 9 is possible and expected aas the platform labels are locally
|
| D | pktgen.txt | 179 pgset "mpls 0001000a,0002000a,0000000a" set MPLS labels (in this example 191 labels in the label stack.
|
| D | ip-sysctl.txt | 1262 Automatically generate flow labels based on a flow hash of the 1266 0: automatic flow labels are completely disabled 1267 1: automatic flow labels are enabled by default, they can be 1270 2: automatic flow labels are allowed, they may be enabled on a 1272 3: automatic flow labels are enabled and enforced, they cannot 1279 is reserved for stateless flow labels as described in RFC6437.
|
| /linux-4.4.14/arch/mips/kernel/ |
| D | pm-cps.c | 73 static struct uasm_label labels[32] __initdata; variable 351 struct uasm_label *l = labels; in cps_gen_entry_code() 380 memset(labels, 0, sizeof(labels)); in cps_gen_entry_code() 609 BUG_ON((l - labels) > ARRAY_SIZE(labels)); in cps_gen_entry_code() 613 uasm_resolve_relocs(relocs, labels); in cps_gen_entry_code()
|
| /linux-4.4.14/Documentation/netlabel/ |
| D | lsm_interface.txt | 19 labels. The NetLabel security attributes are defined by the 29 These are the functions which allow the LSM developer to manipulate the labels 30 on outgoing packets as well as read the labels on incoming packets. Functions
|
| D | draft-ietf-cipso-ipsecurity-01.txt | 356 labels where all categories in a range, or set of ranges, are included 431 gateways, and routers that support multiple sensitivity labels. A CIPSO 490 particular network interface port. All CIPSO labels within datagrams 496 particular IP network address. All CIPSO labels within datagrams destined 502 particular IP host address. All CIPSO labels within datagrams destined for 516 The labels represented by the PORT_LABEL_MAX and PORT_LABEL_MIN parameters 519 labels do not have to be converted to a local format before being compared 535 The port range will usually represent the total set of labels that may 537 interface. It may, however, represent a subset of these labels that are 640 the current set of defined tag types, this means that CIPSO labels at
|
| D | cipso_ipv4.txt | 47 mappings from the network labels to the corresponding LSM identifiers. The
|
| /linux-4.4.14/tools/net/ |
| D | bpf_exp.y | 594 static char **labels, **labels_jt, **labels_jf, **labels_k; variable 618 labels[curr_instr] = label; in bpf_set_curr_label() 642 if (labels[i] && !strcmp(label, labels[i])) { in bpf_find_insns_offset() 728 labels = calloc(BPF_MAXINSNS, sizeof(*labels)); in bpf_init() 729 assert(labels); in bpf_init() 746 free(labels[i]); in bpf_destroy_labels() 756 free(labels); in bpf_destroy()
|
| /linux-4.4.14/Documentation/security/ |
| D | Smack.txt | 65 Smack uses extended attributes (xattrs) to store labels on filesystem 233 This contains labels processes must have for CAP_MAC_ADMIN 236 label. The values are set by writing the desired labels, separated 244 only allowed when subject's and object's labels are equal. 259 This interface contains a list of labels to which the process can 263 CAP_MAC_ADMIN to relabel itself to one of labels from predefined list. 266 The values are set by writing the desired labels, separated 365 on what subjects can access which objects, based on the labels attached to 370 Smack labels are ASCII character strings. They can be up to 255 characters 372 Single character labels using special characters, that being anything [all …]
|
| D | IMA-templates.txt | 12 the inode UID/GID or the LSM labels either of the inode and of the process
|
| /linux-4.4.14/include/net/ |
| D | mpls_iptunnel.h | 21 u8 labels; member
|
| /linux-4.4.14/fs/reiserfs/ |
| D | Kconfig | 82 Security labels support alternative access control models 85 labels in the ReiserFS filesystem. 88 extended attributes for file security labels, say N.
|
| /linux-4.4.14/fs/ext4/ |
| D | Kconfig | 93 Security labels support alternative access control models 96 labels in the ext4 filesystem. 99 extended attributes for file security labels, say N.
|
| /linux-4.4.14/drivers/watchdog/ |
| D | octeon-wdt-main.c | 110 static struct uasm_label labels[5] __initdata; variable 132 struct uasm_label *l = labels; in octeon_wdt_build_stage1() 208 uasm_resolve_relocs(relocs, labels); in octeon_wdt_build_stage1()
|
| /linux-4.4.14/Documentation/features/core/jump-labels/ |
| D | arch-support.txt | 2 # Feature name: jump-labels
|
| /linux-4.4.14/fs/f2fs/ |
| D | Kconfig | 59 Security labels provide an access control facility to support Linux 62 security labels in the f2fs filesystem, so that it requires enabling
|
| /linux-4.4.14/fs/jffs2/ |
| D | Kconfig | 95 Security labels support alternative access control models 98 labels in the jffs2 filesystem. 101 extended attributes for file security labels, say N.
|
| /linux-4.4.14/drivers/block/ |
| D | amiflop.c | 713 unsigned char labels[16]; member 737 raw = decode ((ulong *)&hdr.labels, (ulong *)raw, 16); in amiga_read() 746 *(ulong *)&hdr.labels[0], *(ulong *)&hdr.labels[4], in amiga_read() 747 *(ulong *)&hdr.labels[8], *(ulong *)&hdr.labels[12], in amiga_read() 829 hdr.labels[i] = 0; in putsec() 836 encode_block(raw, (ulong *)&hdr.labels, 16); in putsec()
|
| /linux-4.4.14/fs/nfsd/ |
| D | Kconfig | 102 support for NFS version 4. Security labels allow security modules like 106 If you do not wish to enable fine-grained security labels SELinux or
|
| /linux-4.4.14/security/smack/ |
| D | Kconfig | 41 Smack labels.
|
| /linux-4.4.14/include/linux/ |
| D | libnvdimm.h | 58 struct nd_namespace_label **labels; member
|
| /linux-4.4.14/Documentation/hwmon/ |
| D | userspace-tools | 30 4) fix sensors.conf, labels, limits, fan divisors
|
| D | adt7462 | 47 The driver will report sensor labels when it is able to determine that
|
| /linux-4.4.14/arch/s390/net/ |
| D | bpf_jit_comp.c | 45 int labels[1]; /* Labels for local jumps */ member 226 int rel = (jit->labels[label] - jit->prg) >> 1; \ 235 int rel = (jit->labels[label] - jit->prg) >> 1; \ 1063 jit->labels[0] = jit->prg; in bpf_jit_insn()
|
| /linux-4.4.14/Documentation/input/ |
| D | gamepad.txt | 95 of the labels on the buttons, the codes are sent according to the 147 instead of their labels. That is:
|
| /linux-4.4.14/Documentation/devicetree/bindings/net/dsa/ |
| D | dsa.txt | 40 labels are "cpu" to indicate a CPU port and "dsa" to
|
| /linux-4.4.14/net/core/ |
| D | pktgen.c | 334 __be32 labels[MAX_MPLS_LABELS]; member 601 seq_printf(seq, "%08x%s", ntohl(pkt_dev->labels[i]), in pktgen_if_show() 843 pkt_dev->labels[n] = htonl(tmp); in get_labels() 844 if (pkt_dev->labels[n] & MPLS_STACK_BOTTOM) in get_labels() 1618 "%08x%s", ntohl(pkt_dev->labels[n]), in pktgen_if_write() 2445 if (pkt_dev->labels[i] & MPLS_STACK_BOTTOM) in mod_cur_headers() 2446 pkt_dev->labels[i] = MPLS_STACK_BOTTOM | in mod_cur_headers() 2688 *mpls++ = pkt_dev->labels[i] & ~MPLS_STACK_BOTTOM; in mpls_push()
|
| /linux-4.4.14/Documentation/s390/ |
| D | DASD | 43 labels, VTOCs etc. The ioctl may take a 'struct format_data *' or
|
| /linux-4.4.14/Documentation/ |
| D | static-keys.txt | 144 4) Architecture level code patching interface, 'jump labels' 191 The resulting instructions with jump labels generated by GCC is:
|
| D | CodingStyle | 39 to align the "switch" and its subordinate "case" labels in the same column 40 instead of "double-indenting" the "case" labels. E.g.: 441 fix for this is to split it up into two error labels "err_bar:" and "err_foo:". 616 Names of macros defining constants and labels in enums are capitalized.
|
| D | edac.txt | 704 …EDAC MC0: UE row 0, channel-a= 0 channel-b= 0 labels "-": NON_FATAL (addr = 0x0075b980, socket=0, …
|
| D | kernel-parameters.txt | 3351 0 -- Traditional sleep state labels. 3352 1 -- Relative sleep state labels.
|
| /linux-4.4.14/security/ |
| D | Kconfig | 58 implement per-packet access controls based on labels
|
| /linux-4.4.14/Documentation/trace/ |
| D | tracepoints.txt | 140 with jump labels and avoid conditional branches.
|
| /linux-4.4.14/Documentation/ABI/testing/ |
| D | sysfs-power | 15 labels, which may be "mem", "standby", "freeze" and "disk" 16 (hibernation). The meanings of the first three labels depend on
|
| /linux-4.4.14/sound/pci/hda/ |
| D | patch_sigmatel.c | 980 const char * const *labels = spec->spdif_labels; in stac_create_spdif_mux_ctls() local 991 if (!labels) in stac_create_spdif_mux_ctls() 992 labels = stac_spdif_labels; in stac_create_spdif_mux_ctls() 994 if (snd_BUG_ON(!labels[i])) in stac_create_spdif_mux_ctls() 996 snd_hda_add_imux_item(codec, &spec->spdif_mux, labels[i], i, NULL); in stac_create_spdif_mux_ctls()
|
| /linux-4.4.14/arch/powerpc/boot/dts/ |
| D | mpc832x_mds.dts | 19 * Note that there's a typo in the schematic. The board labels the last column
|
| /linux-4.4.14/arch/m68k/ifpsp060/ |
| D | TEST.DOC | 48 the installer should add symbolic labels to the top of the files.
|
| /linux-4.4.14/Documentation/x86/ |
| D | exception-tables.txt | 238 are local labels. The local label 1b (1b stands for next label 1
|
| /linux-4.4.14/arch/cris/arch-v10/kernel/ |
| D | head.S | 188 ;; on that the labels below actually are the first and last positions
|
| /linux-4.4.14/Documentation/networking/dsa/ |
| D | dsa.txt | 214 various properties of its ports: names/labels, and finally a routing table
|
| /linux-4.4.14/Documentation/gpio/ |
| D | gpio-legacy.txt | 248 * non-null labels may be useful for diagnostics.
|
| /linux-4.4.14/Documentation/filesystems/ |
| D | coda.txt | 409 which we will discuss. The unique field labels the inputArg with a
|
| /linux-4.4.14/Documentation/devicetree/ |
| D | booting-without-of.txt | 1158 automatic generation of phandles, labels (exported to the asm file so
|