/linux-4.4.14/tools/perf/ |
H A D | builtin.h | 16 extern int cmd_annotate(int argc, const char **argv, const char *prefix); 17 extern int cmd_bench(int argc, const char **argv, const char *prefix); 18 extern int cmd_buildid_cache(int argc, const char **argv, const char *prefix); 19 extern int cmd_buildid_list(int argc, const char **argv, const char *prefix); 20 extern int cmd_diff(int argc, const char **argv, const char *prefix); 21 extern int cmd_evlist(int argc, const char **argv, const char *prefix); 22 extern int cmd_help(int argc, const char **argv, const char *prefix); 23 extern int cmd_sched(int argc, const char **argv, const char *prefix); 24 extern int cmd_list(int argc, const char **argv, const char *prefix); 25 extern int cmd_record(int argc, const char **argv, const char *prefix); 26 extern int cmd_report(int argc, const char **argv, const char *prefix); 27 extern int cmd_stat(int argc, const char **argv, const char *prefix); 28 extern int cmd_timechart(int argc, const char **argv, const char *prefix); 29 extern int cmd_top(int argc, const char **argv, const char *prefix); 30 extern int cmd_script(int argc, const char **argv, const char *prefix); 31 extern int cmd_version(int argc, const char **argv, const char *prefix); 32 extern int cmd_probe(int argc, const char **argv, const char *prefix); 33 extern int cmd_kmem(int argc, const char **argv, const char *prefix); 34 extern int cmd_lock(int argc, const char **argv, const char *prefix); 35 extern int cmd_kvm(int argc, const char **argv, const char *prefix); 36 extern int cmd_test(int argc, const char **argv, const char *prefix); 37 extern int cmd_trace(int argc, const char **argv, const char *prefix); 38 extern int cmd_inject(int argc, const char **argv, const char *prefix); 39 extern int cmd_mem(int argc, const char **argv, const char *prefix); 40 extern int cmd_data(int argc, const char **argv, const char *prefix);
|
H A D | builtin-data.c | 8 typedef int (*data_cmd_fn_t)(int argc, const char **argv, const char *prefix); 53 const char *prefix __maybe_unused) cmd_data_convert() 96 int cmd_data(int argc, const char **argv, const char *prefix) cmd_data() argument 116 return cmd->fn(argc, argv, prefix); for_each_cmd()
|
H A D | builtin-stat.c | 569 static void print_aggr(char *prefix) print_aggr() argument 594 if (prefix) evlist__for_each() 595 fprintf(output, "%s", prefix); evlist__for_each() 632 static void print_aggr_thread(struct perf_evsel *counter, char *prefix) print_aggr_thread() argument 649 if (prefix) print_aggr_thread() 650 fprintf(output, "%s", prefix); print_aggr_thread() 667 static void print_counter_aggr(struct perf_evsel *counter, char *prefix) print_counter_aggr() argument 679 if (prefix) print_counter_aggr() 680 fprintf(output, "%s", prefix); print_counter_aggr() 715 static void print_counter(struct perf_evsel *counter, char *prefix) print_counter() argument 727 if (prefix) print_counter() 728 fprintf(output, "%s", prefix); print_counter() 765 static void print_interval(char *prefix, struct timespec *ts) print_interval() argument 770 sprintf(prefix, "%6lu.%09lu%s", ts->tv_sec, ts->tv_nsec, csv_sep); print_interval() 848 char buf[64], *prefix = NULL; print_counters() local 851 print_interval(prefix = buf, ts); print_counters() 858 print_aggr(prefix); print_counters() 862 print_aggr_thread(counter, prefix); print_counters() 866 print_counter_aggr(counter, prefix); print_counters() 870 print_counter(counter, prefix); print_counters() 1239 int cmd_stat(int argc, const char **argv, const char *prefix __maybe_unused) cmd_stat()
|
H A D | builtin-bench.c | 28 typedef int (*bench_fn_t)(int argc, const char **argv, const char *prefix); 158 int argc, const char **argv, const char *prefix) run_bench() 174 ret = fn(argc, argv, prefix); run_bench() 214 int cmd_bench(int argc, const char **argv, const char *prefix __maybe_unused) cmd_bench() 273 ret = run_bench(coll->name, bench->name, bench->fn, argc-1, argv+1, prefix); for_each_bench() 157 run_bench(const char *coll_name, const char *bench_name, bench_fn_t fn, int argc, const char **argv, const char *prefix) run_bench() argument
|
H A D | builtin-evlist.c | 41 int cmd_evlist(int argc, const char **argv, const char *prefix __maybe_unused) cmd_evlist()
|
H A D | builtin-list.c | 19 int cmd_list(int argc, const char **argv, const char *prefix __maybe_unused) cmd_list()
|
H A D | builtin-buildid-list.c | 91 const char *prefix __maybe_unused) cmd_buildid_list()
|
H A D | builtin-help.c | 303 static const char *prepend(const char *prefix, const char *cmd) prepend() argument 305 size_t pre_len = strlen(prefix); prepend() 308 memcpy(p, prefix, pre_len); prepend() 427 int cmd_help(int argc, const char **argv, const char *prefix __maybe_unused) cmd_help()
|
/linux-4.4.14/drivers/regulator/ |
H A D | mc13xxx.h | 59 #define MC13xxx_DEFINE(prefix, _name, _reg, _vsel_reg, _voltages, _ops) \ 60 [prefix ## _name] = { \ 67 .id = prefix ## _name, \ 70 .reg = prefix ## _reg, \ 71 .enable_bit = prefix ## _reg ## _ ## _name ## EN, \ 72 .vsel_reg = prefix ## _vsel_reg, \ 73 .vsel_shift = prefix ## _vsel_reg ## _ ## _name ## VSEL,\ 74 .vsel_mask = prefix ## _vsel_reg ## _ ## _name ## VSEL_M,\ 77 #define MC13xxx_FIXED_DEFINE(prefix, _name, _reg, _voltages, _ops) \ 78 [prefix ## _name] = { \ 85 .id = prefix ## _name, \ 88 .reg = prefix ## _reg, \ 89 .enable_bit = prefix ## _reg ## _ ## _name ## EN, \ 92 #define MC13xxx_GPO_DEFINE(prefix, _name, _reg, _voltages, _ops) \ 93 [prefix ## _name] = { \ 100 .id = prefix ## _name, \ 103 .reg = prefix ## _reg, \ 104 .enable_bit = prefix ## _reg ## _ ## _name ## EN, \
|
/linux-4.4.14/tools/net/ |
H A D | Makefile | 0 prefix = /usr 33 install bpf_jit_disasm $(prefix)/bin/bpf_jit_disasm 34 install bpf_dbg $(prefix)/bin/bpf_dbg 35 install bpf_asm $(prefix)/bin/bpf_asm 1 prefix = /usr global() macro
|
/linux-4.4.14/tools/perf/bench/ |
H A D | bench.h | 28 extern int bench_numa(int argc, const char **argv, const char *prefix); 29 extern int bench_sched_messaging(int argc, const char **argv, const char *prefix); 30 extern int bench_sched_pipe(int argc, const char **argv, const char *prefix); 32 const char *prefix __maybe_unused); 33 extern int bench_mem_memset(int argc, const char **argv, const char *prefix); 34 extern int bench_futex_hash(int argc, const char **argv, const char *prefix); 35 extern int bench_futex_wake(int argc, const char **argv, const char *prefix); 37 const char *prefix); 38 extern int bench_futex_requeue(int argc, const char **argv, const char *prefix); 40 extern int bench_futex_lock_pi(int argc, const char **argv, const char *prefix);
|
/linux-4.4.14/tools/firewire/ |
H A D | Makefile | 0 prefix = /usr 19 install nosy-dump $(prefix)/bin/nosy-dump 1 prefix = /usr global() macro
|
/linux-4.4.14/include/linux/netfilter/ipset/ |
H A D | pfxlen.h | 45 ip6_netmask(union nf_inet_addr *ip, u8 prefix) ip6_netmask() argument 47 ip->ip6[0] &= ip_set_netmask6(prefix)[0]; ip6_netmask() 48 ip->ip6[1] &= ip_set_netmask6(prefix)[1]; ip6_netmask() 49 ip->ip6[2] &= ip_set_netmask6(prefix)[2]; ip6_netmask() 50 ip->ip6[3] &= ip_set_netmask6(prefix)[3]; ip6_netmask()
|
/linux-4.4.14/drivers/usb/gadget/function/ |
H A D | f_mass_storage.h | 20 #define _FSG_MODULE_PARAM_ARRAY(prefix, params, name, type, desc) \ 21 module_param_array_named(prefix ## name, params.name, type, \ 22 &prefix ## params.name ## _count, \ 24 MODULE_PARM_DESC(prefix ## name, desc) 26 #define _FSG_MODULE_PARAM(prefix, params, name, type, desc) \ 27 module_param_named(prefix ## name, params.name, type, \ 29 MODULE_PARM_DESC(prefix ## name, desc) 31 #define __FSG_MODULE_PARAMETERS(prefix, params) \ 32 _FSG_MODULE_PARAM_ARRAY(prefix, params, file, charp, \ 34 _FSG_MODULE_PARAM_ARRAY(prefix, params, ro, bool, \ 36 _FSG_MODULE_PARAM_ARRAY(prefix, params, removable, bool, \ 38 _FSG_MODULE_PARAM_ARRAY(prefix, params, cdrom, bool, \ 40 _FSG_MODULE_PARAM_ARRAY(prefix, params, nofua, bool, \ 42 _FSG_MODULE_PARAM(prefix, params, luns, uint, \ 44 _FSG_MODULE_PARAM(prefix, params, stall, bool, \ 49 #define FSG_MODULE_PARAMETERS(prefix, params) \ 50 __FSG_MODULE_PARAMETERS(prefix, params); \ 55 #define FSG_MODULE_PARAMETERS(prefix, params) \ 56 __FSG_MODULE_PARAMETERS(prefix, params)
|
H A D | u_fs.h | 28 # define ffs_dump_mem(prefix, ptr, len) \ 29 print_hex_dump_bytes(pr_fmt(prefix ": "), DUMP_PREFIX_NONE, ptr, len) 34 # define ffs_dump_mem(prefix, ptr, len) do { } while (0)
|
/linux-4.4.14/include/net/netfilter/ |
H A D | nfnetlink_log.h | 12 const char *prefix);
|
H A D | nf_log.h | 43 const char *prefix); 110 const char *prefix);
|
/linux-4.4.14/include/uapi/linux/netfilter/ |
H A D | xt_NFLOG.h | 17 char prefix[64]; member in struct:xt_nflog_info
|
H A D | xt_LOG.h | 16 char prefix[30]; member in struct:xt_log_info
|
H A D | nfnetlink_log.h | 46 NFULA_PREFIX, /* string prefix */
|
/linux-4.4.14/include/uapi/linux/netfilter_bridge/ |
H A D | ebt_nflog.h | 20 char prefix[EBT_NFLOG_PREFIX_SIZE]; member in struct:ebt_nflog_info
|
H A D | ebt_log.h | 16 __u8 prefix[EBT_LOG_PREFIX_SIZE]; member in struct:ebt_log_info
|
/linux-4.4.14/tools/testing/selftests/powerpc/pmu/ebb/ |
H A D | trace.c | 168 static void trace_print_header(int seq, int prefix) trace_print_header() argument 170 printf("%*s[%d]: ", prefix, "", seq); trace_print_header() 235 static void trace_print_entry(struct trace_entry *e, int seq, int *prefix) trace_print_entry() argument 239 trace_print_header(seq, *prefix); trace_print_entry() 243 trace_print_header(seq, *prefix); trace_print_entry() 247 trace_print_header(seq, *prefix); trace_print_entry() 251 trace_print_header(seq, *prefix); trace_print_entry() 253 *prefix += PREFIX_DELTA; trace_print_entry() 256 *prefix -= PREFIX_DELTA; trace_print_entry() 257 if (*prefix < BASE_PREFIX) trace_print_entry() 258 *prefix = BASE_PREFIX; trace_print_entry() 259 trace_print_header(seq, *prefix); trace_print_entry() 263 trace_print_header(seq, *prefix); trace_print_entry() 272 int i, prefix; trace_buffer_print() local 285 prefix = BASE_PREFIX; trace_buffer_print() 290 trace_print_entry(e, i, &prefix); trace_buffer_print()
|
/linux-4.4.14/arch/mips/bcm47xx/ |
H A D | sprom.c | 33 static void create_key(const char *prefix, const char *postfix, create_key() argument 36 if (prefix && postfix) create_key() 37 snprintf(buf, len, "%s%s%s", prefix, name, postfix); create_key() 38 else if (prefix) create_key() 39 snprintf(buf, len, "%s%s", prefix, name); create_key() 46 static int get_nvram_var(const char *prefix, const char *postfix, get_nvram_var() argument 52 create_key(prefix, postfix, name, key, sizeof(key)); get_nvram_var() 55 if (fallback && err == -ENOENT && prefix) { get_nvram_var() 63 static void nvram_read_ ## type(const char *prefix, \ 71 err = get_nvram_var(prefix, postfix, name, buf, sizeof(buf), \ 78 prefix, name, postfix, buf, err); \ 93 static void nvram_read_u32_2(const char *prefix, const char *name, nvram_read_u32_2() argument 100 err = get_nvram_var(prefix, NULL, name, buf, sizeof(buf), fallback); nvram_read_u32_2() 106 prefix, name, buf, err); nvram_read_u32_2() 113 static void nvram_read_leddc(const char *prefix, const char *name, nvram_read_leddc() argument 121 err = get_nvram_var(prefix, NULL, name, buf, sizeof(buf), fallback); nvram_read_leddc() 127 prefix, name, buf, err); nvram_read_leddc() 152 static void nvram_read_macaddr(const char *prefix, const char *name, nvram_read_macaddr() argument 158 err = get_nvram_var(prefix, NULL, name, buf, sizeof(buf), fallback); nvram_read_macaddr() 165 static void nvram_read_alpha2(const char *prefix, const char *name, nvram_read_alpha2() argument 171 err = get_nvram_var(prefix, NULL, name, buf, sizeof(buf), fallback); nvram_read_alpha2() 198 const char *prefix, bool fallback) bcm47xx_sprom_fill_auto() 200 const char *pre = prefix; bcm47xx_sprom_fill_auto() 419 const char *prefix, bool fallback) bcm47xx_fill_sprom_path_r4589() 430 nvram_read_u8(prefix, postfix, "maxp2ga", bcm47xx_fill_sprom_path_r4589() 432 nvram_read_u8(prefix, postfix, "itt2ga", bcm47xx_fill_sprom_path_r4589() 434 nvram_read_u8(prefix, postfix, "itt5ga", bcm47xx_fill_sprom_path_r4589() 436 nvram_read_u16(prefix, postfix, "pa2gw0a", bcm47xx_fill_sprom_path_r4589() 438 nvram_read_u16(prefix, postfix, "pa2gw1a", bcm47xx_fill_sprom_path_r4589() 440 nvram_read_u16(prefix, postfix, "pa2gw2a", bcm47xx_fill_sprom_path_r4589() 442 nvram_read_u8(prefix, postfix, "maxp5ga", bcm47xx_fill_sprom_path_r4589() 444 nvram_read_u8(prefix, postfix, "maxp5gha", bcm47xx_fill_sprom_path_r4589() 446 nvram_read_u8(prefix, postfix, "maxp5gla", bcm47xx_fill_sprom_path_r4589() 448 nvram_read_u16(prefix, postfix, "pa5gw0a", bcm47xx_fill_sprom_path_r4589() 450 nvram_read_u16(prefix, postfix, "pa5gw1a", bcm47xx_fill_sprom_path_r4589() 452 nvram_read_u16(prefix, postfix, "pa5gw2a", bcm47xx_fill_sprom_path_r4589() 454 nvram_read_u16(prefix, postfix, "pa5glw0a", bcm47xx_fill_sprom_path_r4589() 456 nvram_read_u16(prefix, postfix, "pa5glw1a", bcm47xx_fill_sprom_path_r4589() 458 nvram_read_u16(prefix, postfix, "pa5glw2a", bcm47xx_fill_sprom_path_r4589() 460 nvram_read_u16(prefix, postfix, "pa5ghw0a", bcm47xx_fill_sprom_path_r4589() 462 nvram_read_u16(prefix, postfix, "pa5ghw1a", bcm47xx_fill_sprom_path_r4589() 464 nvram_read_u16(prefix, postfix, "pa5ghw2a", bcm47xx_fill_sprom_path_r4589() 470 const char *prefix, bool fallback) bcm47xx_fill_sprom_path_r45() 481 nvram_read_u16(prefix, postfix, "pa2gw3a", bcm47xx_fill_sprom_path_r45() 483 nvram_read_u16(prefix, postfix, "pa5gw3a", bcm47xx_fill_sprom_path_r45() 485 nvram_read_u16(prefix, postfix, "pa5glw3a", bcm47xx_fill_sprom_path_r45() 487 nvram_read_u16(prefix, postfix, "pa5ghw3a", bcm47xx_fill_sprom_path_r45() 520 const char *prefix, bool fallback) bcm47xx_fill_sprom_ethernet() 524 nvram_read_macaddr(prefix, "et0macaddr", sprom->et0mac, fallback); bcm47xx_fill_sprom_ethernet() 525 nvram_read_u8(prefix, NULL, "et0mdcport", &sprom->et0mdcport, 0, bcm47xx_fill_sprom_ethernet() 527 nvram_read_u8(prefix, NULL, "et0phyaddr", &sprom->et0phyaddr, 0, bcm47xx_fill_sprom_ethernet() 530 nvram_read_macaddr(prefix, "et1macaddr", sprom->et1mac, fallback); bcm47xx_fill_sprom_ethernet() 531 nvram_read_u8(prefix, NULL, "et1mdcport", &sprom->et1mdcport, 0, bcm47xx_fill_sprom_ethernet() 533 nvram_read_u8(prefix, NULL, "et1phyaddr", &sprom->et1phyaddr, 0, bcm47xx_fill_sprom_ethernet() 536 nvram_read_macaddr(prefix, "et2macaddr", sprom->et2mac, fb); bcm47xx_fill_sprom_ethernet() 537 nvram_read_u8(prefix, NULL, "et2mdcport", &sprom->et2mdcport, 0, fb); bcm47xx_fill_sprom_ethernet() 538 nvram_read_u8(prefix, NULL, "et2phyaddr", &sprom->et2phyaddr, 0, fb); bcm47xx_fill_sprom_ethernet() 540 nvram_read_macaddr(prefix, "macaddr", sprom->il0mac, fallback); bcm47xx_fill_sprom_ethernet() 541 nvram_read_macaddr(prefix, "il0macaddr", sprom->il0mac, fallback); bcm47xx_fill_sprom_ethernet() 543 /* The address prefix 00:90:4C is used by Broadcom in their initial bcm47xx_fill_sprom_ethernet() 544 * configuration. When a mac address with the prefix 00:90:4C is used bcm47xx_fill_sprom_ethernet() 564 static void bcm47xx_fill_board_data(struct ssb_sprom *sprom, const char *prefix, bcm47xx_fill_board_data() argument 567 nvram_read_u32_2(prefix, "boardflags", &sprom->boardflags_lo, bcm47xx_fill_board_data() 569 nvram_read_u32_2(prefix, "boardflags2", &sprom->boardflags2_lo, bcm47xx_fill_board_data() 573 void bcm47xx_fill_sprom(struct ssb_sprom *sprom, const char *prefix, bcm47xx_fill_sprom() argument 576 bcm47xx_fill_sprom_ethernet(sprom, prefix, fallback); bcm47xx_fill_sprom() 577 bcm47xx_fill_board_data(sprom, prefix, fallback); bcm47xx_fill_sprom() 579 nvram_read_u8(prefix, NULL, "sromrev", &sprom->revision, 0, fallback); bcm47xx_fill_sprom() 582 nvram_read_alpha2(prefix, "ccode", sprom->alpha2, fallback); bcm47xx_fill_sprom() 584 nvram_read_leddc(prefix, "leddc", &sprom->leddc_on_time, bcm47xx_fill_sprom() 590 bcm47xx_fill_sprom_path_r4589(sprom, prefix, fallback); bcm47xx_fill_sprom() 591 bcm47xx_fill_sprom_path_r45(sprom, prefix, fallback); bcm47xx_fill_sprom() 595 bcm47xx_fill_sprom_path_r4589(sprom, prefix, fallback); bcm47xx_fill_sprom() 599 bcm47xx_sprom_fill_auto(sprom, prefix, fallback); bcm47xx_fill_sprom() 605 char prefix[10]; bcm47xx_get_sprom_ssb() local 613 snprintf(prefix, sizeof(prefix), "pci/%u/%u/", bcm47xx_get_sprom_ssb() 616 bcm47xx_fill_sprom(out, prefix, false); bcm47xx_get_sprom_ssb() 633 static void bcm47xx_sprom_apply_prefix_alias(char *prefix, size_t prefix_size) bcm47xx_sprom_apply_prefix_alias() argument 635 size_t prefix_len = strlen(prefix); bcm47xx_sprom_apply_prefix_alias() 641 /* Passed prefix has to end with a slash */ bcm47xx_sprom_apply_prefix_alias() 642 if (prefix_len <= 0 || prefix[prefix_len - 1] != '/') bcm47xx_sprom_apply_prefix_alias() 650 if (!strcmp(buf, prefix) || bcm47xx_sprom_apply_prefix_alias() 651 (short_len && strlen(buf) == short_len && !strncmp(buf, prefix, short_len))) { bcm47xx_sprom_apply_prefix_alias() 652 snprintf(prefix, prefix_size, "%d:", i); bcm47xx_sprom_apply_prefix_alias() 663 char *prefix; bcm47xx_get_sprom_bcma() local 673 prefix = buf; bcm47xx_get_sprom_bcma() 681 prefix = buf; bcm47xx_get_sprom_bcma() 684 prefix = NULL; bcm47xx_get_sprom_bcma() 692 nvram_read_u16(prefix, NULL, "boardvendor", &binfo->vendor, 0, true); bcm47xx_get_sprom_bcma() 695 nvram_read_u16(prefix, NULL, "boardtype", &binfo->type, 0, true); bcm47xx_get_sprom_bcma() 697 bcm47xx_fill_sprom(out, prefix, fallback); bcm47xx_get_sprom_bcma() 197 bcm47xx_sprom_fill_auto(struct ssb_sprom *sprom, const char *prefix, bool fallback) bcm47xx_sprom_fill_auto() argument 418 bcm47xx_fill_sprom_path_r4589(struct ssb_sprom *sprom, const char *prefix, bool fallback) bcm47xx_fill_sprom_path_r4589() argument 469 bcm47xx_fill_sprom_path_r45(struct ssb_sprom *sprom, const char *prefix, bool fallback) bcm47xx_fill_sprom_path_r45() argument 519 bcm47xx_fill_sprom_ethernet(struct ssb_sprom *sprom, const char *prefix, bool fallback) bcm47xx_fill_sprom_ethernet() argument
|
/linux-4.4.14/net/ipv6/ |
H A D | addrlabel.c | 33 struct in6_addr prefix; member in struct:ip6addrlbl_entry 59 * prefix addr_type label 81 const struct in6_addr *prefix; member in struct:ip6addrlbl_init_table 86 .prefix = &in6addr_any, 89 .prefix = &(struct in6_addr){ { { 0xfc } } } , 93 .prefix = &(struct in6_addr){ { { 0xfe, 0xc0 } } }, 97 .prefix = &(struct in6_addr){ { { 0x20, 0x02 } } }, 101 .prefix = &(struct in6_addr){ { { 0x3f, 0xfe } } }, 105 .prefix = &(struct in6_addr){ { { 0x20, 0x01 } } }, 109 .prefix = &(struct in6_addr){ { { 0x20, 0x01, 0x00, 0x10 } } }, 113 .prefix = &(struct in6_addr){ { { [10] = 0xff, [11] = 0xff } } }, 117 .prefix = &in6addr_any, 121 .prefix = &in6addr_loopback, 161 if (!ipv6_prefix_equal(addr, &p->prefix, p->prefixlen)) __ip6addrlbl_match() 199 const struct in6_addr *prefix, ip6addrlbl_alloc() 206 ADDRLABEL(KERN_DEBUG "%s(prefix=%pI6, prefixlen=%d, ifindex=%d, label=%u)\n", ip6addrlbl_alloc() 207 __func__, prefix, prefixlen, ifindex, (unsigned int)label); ip6addrlbl_alloc() 209 addrtype = ipv6_addr_type(prefix) & (IPV6_ADDR_MAPPED | IPV6_ADDR_COMPATv4 | IPV6_ADDR_LOOPBACK); ip6addrlbl_alloc() 232 ipv6_addr_prefix(&newp->prefix, prefix, prefixlen); ip6addrlbl_alloc() 257 ipv6_addr_equal(&p->prefix, &newp->prefix)) { __ip6addrlbl_add() 284 const struct in6_addr *prefix, int prefixlen, ip6addrlbl_add() 290 ADDRLABEL(KERN_DEBUG "%s(prefix=%pI6, prefixlen=%d, ifindex=%d, label=%u, replace=%d)\n", ip6addrlbl_add() 291 __func__, prefix, prefixlen, ifindex, (unsigned int)label, ip6addrlbl_add() 294 newp = ip6addrlbl_alloc(net, prefix, prefixlen, ifindex, label); ip6addrlbl_add() 307 const struct in6_addr *prefix, int prefixlen, __ip6addrlbl_del() 314 ADDRLABEL(KERN_DEBUG "%s(prefix=%pI6, prefixlen=%d, ifindex=%d)\n", __ip6addrlbl_del() 315 __func__, prefix, prefixlen, ifindex); __ip6addrlbl_del() 321 ipv6_addr_equal(&p->prefix, prefix)) { __ip6addrlbl_del() 332 const struct in6_addr *prefix, int prefixlen, ip6addrlbl_del() 338 ADDRLABEL(KERN_DEBUG "%s(prefix=%pI6, prefixlen=%d, ifindex=%d)\n", ip6addrlbl_del() 339 __func__, prefix, prefixlen, ifindex); ip6addrlbl_del() 341 ipv6_addr_prefix(&prefix_buf, prefix, prefixlen); ip6addrlbl_del() 358 ip6addrlbl_init_table[i].prefix, ip6addrlbl_net_init() 480 if (nla_put_in6_addr(skb, IFAL_ADDRESS, &p->prefix) < 0 || ip6addrlbl_fill() 198 ip6addrlbl_alloc(struct net *net, const struct in6_addr *prefix, int prefixlen, int ifindex, u32 label) ip6addrlbl_alloc() argument 283 ip6addrlbl_add(struct net *net, const struct in6_addr *prefix, int prefixlen, int ifindex, u32 label, int replace) ip6addrlbl_add() argument 306 __ip6addrlbl_del(struct net *net, const struct in6_addr *prefix, int prefixlen, int ifindex) __ip6addrlbl_del() argument 331 ip6addrlbl_del(struct net *net, const struct in6_addr *prefix, int prefixlen, int ifindex) ip6addrlbl_del() argument
|
H A D | sit.c | 180 ipv6_addr_set(&t->ip6rd.prefix, htonl(0x20020000), 0, 0, 0); ipip6_tunnel_clone_6rd() 763 if (ipv6_prefix_equal(v6dst, &tunnel->ip6rd.prefix, check_6rd() 785 /* 6to4 v6 addr has 16 bits prefix, 32 v4addr, 16 SLA, ... */ check_6rd() 1107 struct in6_addr prefix; ipip6_tunnel_update_6rd() local 1114 ipv6_addr_prefix(&prefix, &ip6rd->prefix, ip6rd->prefixlen); ipip6_tunnel_update_6rd() 1115 if (!ipv6_addr_equal(&prefix, &ip6rd->prefix)) ipip6_tunnel_update_6rd() 1126 t->ip6rd.prefix = prefix; ipip6_tunnel_update_6rd() 1172 ip6rd.prefix = t->ip6rd.prefix; ipip6_tunnel_ioctl() 1518 ip6rd->prefix = nla_get_in6_addr(data[IFLA_IPTUN_6RD_PREFIX]); ipip6_netlink_6rd_parms() 1682 &tunnel->ip6rd.prefix) || ipip6_fill_info()
|
H A D | route.c | 103 const struct in6_addr *prefix, int prefixlen, 107 const struct in6_addr *prefix, int prefixlen, 760 struct in6_addr prefix_buf, *prefix; rt6_route_rcv() local 791 prefix = (struct in6_addr *)rinfo->prefix; rt6_route_rcv() 795 (struct in6_addr *)rinfo->prefix, rt6_route_rcv() 797 prefix = &prefix_buf; rt6_route_rcv() 803 rt = rt6_get_route_info(net, prefix, rinfo->prefix_len, rt6_route_rcv() 812 rt = rt6_add_route_info(net, prefix, rinfo->prefix_len, gwaddr, dev->ifindex, rt6_route_rcv() 1910 * will return already-added prefix route via interface that ip6_route_info_create() 1911 * prefix route was assigned to, which might be non-loopback. ip6_route_info_create() 2252 const struct in6_addr *prefix, int prefixlen, rt6_get_route_info() 2264 fn = fib6_locate(&table->tb6_root, prefix, prefixlen, NULL, 0); rt6_get_route_info() 2284 const struct in6_addr *prefix, int prefixlen, rt6_add_route_info() 2300 cfg.fc_dst = *prefix; rt6_add_route_info() 2303 /* We should treat it as a default route if prefix length is 0. */ rt6_add_route_info() 2309 return rt6_get_route_info(net, prefix, prefixlen, gwaddr, ifindex); rt6_add_route_info() 3051 int prefix, int nowait, unsigned int flags) rt6_fill_node() 3059 if (prefix) { /* user wants prefix routes only */ rt6_fill_node() 3061 /* success since this is not a prefix route */ rt6_fill_node() 3210 int prefix; rt6_dump_route() local 3214 prefix = (rtm->rtm_flags & RTM_F_PREFIX) != 0; rt6_dump_route() 3216 prefix = 0; rt6_dump_route() 3221 prefix, 0, NLM_F_MULTI); rt6_dump_route() 2251 rt6_get_route_info(struct net *net, const struct in6_addr *prefix, int prefixlen, const struct in6_addr *gwaddr, int ifindex) rt6_get_route_info() argument 2283 rt6_add_route_info(struct net *net, const struct in6_addr *prefix, int prefixlen, const struct in6_addr *gwaddr, int ifindex, unsigned int pref) rt6_add_route_info() argument 3047 rt6_fill_node(struct net *net, struct sk_buff *skb, struct rt6_info *rt, struct in6_addr *dst, struct in6_addr *src, int iif, int type, u32 portid, u32 seq, int prefix, int nowait, unsigned int flags) rt6_fill_node() argument
|
/linux-4.4.14/drivers/staging/lustre/lustre/include/ |
H A D | lustre_eacl.h | 67 #define CFS_ACL_XATTR_SIZE(count, prefix) \ 68 (sizeof(prefix ## _header) + (count) * sizeof(prefix ## _entry)) 70 #define CFS_ACL_XATTR_COUNT(size, prefix) \ 71 (((size) - sizeof(prefix ## _header)) / sizeof(prefix ## _entry))
|
/linux-4.4.14/drivers/misc/genwqe/ |
H A D | genwqe_driver.h | 68 char prefix[32]; genwqe_hexdump() local 70 scnprintf(prefix, sizeof(prefix), "%s %s: ", genwqe_hexdump() 73 print_hex_dump_debug(prefix, DUMP_PREFIX_OFFSET, 16, 1, buff, genwqe_hexdump()
|
/linux-4.4.14/net/bridge/netfilter/ |
H A D | nf_log_bridge.c | 25 const char *prefix) nf_log_bridge_packet() 30 loginfo, "%s", prefix); nf_log_bridge_packet() 34 loginfo, "%s", prefix); nf_log_bridge_packet() 39 loginfo, "%s", prefix); nf_log_bridge_packet() 19 nf_log_bridge_packet(struct net *net, u_int8_t pf, unsigned int hooknum, const struct sk_buff *skb, const struct net_device *in, const struct net_device *out, const struct nf_loginfo *loginfo, const char *prefix) nf_log_bridge_packet() argument
|
H A D | ebt_nflog.c | 35 par->out, &li, "%s", info->prefix); ebt_nflog_tg() 45 info->prefix[EBT_NFLOG_PREFIX_SIZE - 1] = '\0'; ebt_nflog_tg_check()
|
H A D | ebt_log.c | 35 info->prefix[EBT_LOG_PREFIX_SIZE - 1] = '\0'; ebt_log_tg_check() 78 const char *prefix) ebt_log_packet() 88 '0' + loginfo->u.log.level, prefix, ebt_log_packet() 195 par->in, par->out, &li, "%s", info->prefix); ebt_log_tg() 198 par->out, &li, info->prefix); ebt_log_tg() 75 ebt_log_packet(struct net *net, u_int8_t pf, unsigned int hooknum, const struct sk_buff *skb, const struct net_device *in, const struct net_device *out, const struct nf_loginfo *loginfo, const char *prefix) ebt_log_packet() argument
|
/linux-4.4.14/net/netfilter/ |
H A D | nft_log.c | 26 char *prefix; member in struct:nft_log 36 pkt->out, &priv->loginfo, "%s", priv->prefix); nft_log_eval() 59 priv->prefix = kmalloc(nla_len(nla) + 1, GFP_KERNEL); nft_log_init() 60 if (priv->prefix == NULL) nft_log_init() 62 nla_strlcpy(priv->prefix, nla, nla_len(nla) + 1); nft_log_init() 64 priv->prefix = (char *)nft_log_null_prefix; nft_log_init() 122 if (priv->prefix != nft_log_null_prefix) nft_log_destroy() 123 kfree(priv->prefix); nft_log_destroy() 138 if (priv->prefix != nft_log_null_prefix) nft_log_dump() 139 if (nla_put_string(skb, NFTA_LOG_PREFIX, priv->prefix)) nft_log_dump()
|
H A D | xt_LOG.c | 43 &li, "%s", loginfo->prefix); log_tg() 59 if (loginfo->prefix[sizeof(loginfo->prefix)-1] != '\0') { log_tg_check() 60 pr_debug("prefix is not null-terminated\n"); log_tg_check()
|
H A D | xt_NFLOG.c | 37 par->out, &li, info->prefix); nflog_tg() 47 if (info->prefix[sizeof(info->prefix) - 1] != '\0') nflog_tg_check()
|
H A D | nf_log.c | 201 char prefix[NF_LOG_PREFIXLEN]; nf_log_packet() local 212 vsnprintf(prefix, sizeof(prefix), fmt, args); nf_log_packet() 214 logger->logfn(net, pf, hooknum, skb, in, out, loginfo, prefix); nf_log_packet() 229 char prefix[NF_LOG_PREFIXLEN]; nf_log_trace() local 236 vsnprintf(prefix, sizeof(prefix), fmt, args); nf_log_trace() 238 logger->logfn(net, pf, hooknum, skb, in, out, loginfo, prefix); nf_log_trace()
|
H A D | nf_log_common.c | 156 const struct nf_loginfo *loginfo, const char *prefix) nf_log_dump_packet_common() 159 '0' + loginfo->u.log.level, prefix, nf_log_dump_packet_common() 152 nf_log_dump_packet_common(struct nf_log_buf *m, u_int8_t pf, unsigned int hooknum, const struct sk_buff *skb, const struct net_device *in, const struct net_device *out, const struct nf_loginfo *loginfo, const char *prefix) nf_log_dump_packet_common() argument
|
/linux-4.4.14/drivers/iommu/ |
H A D | of_iommu.c | 34 * @prefix: prefix for property name if any 40 * This supports different formats flexibly. "prefix" can be 44 int of_get_dma_window(struct device_node *dn, const char *prefix, int index, of_get_dma_window() argument 54 if (!prefix) of_get_dma_window() 55 prefix = ""; of_get_dma_window() 57 snprintf(propname, sizeof(propname), "%sdma-window", prefix); of_get_dma_window() 58 snprintf(addrname, sizeof(addrname), "%s#dma-address-cells", prefix); of_get_dma_window() 59 snprintf(sizename, sizeof(sizename), "%s#dma-size-cells", prefix); of_get_dma_window()
|
/linux-4.4.14/drivers/clk/qcom/ |
H A D | lcc-msm8960.c | 202 #define CLK_AIF_OSR_DIV(prefix, _ns, _md, hr) \ 203 static struct clk_rcg prefix##_osr_src = { \ 227 .name = #prefix "_osr_src", \ 236 static const char * const lcc_##prefix##_parents[] = { \ 237 #prefix "_osr_src", \ 240 static struct clk_branch prefix##_osr_clk = { \ 248 .name = #prefix "_osr_clk", \ 249 .parent_names = lcc_##prefix##_parents, \ 257 static struct clk_regmap_div prefix##_div_clk = { \ 263 .name = #prefix "_div_clk", \ 264 .parent_names = lcc_##prefix##_parents, \ 271 static struct clk_branch prefix##_bit_div_clk = { \ 279 .name = #prefix "_bit_div_clk", \ 281 #prefix "_div_clk" \ 290 static struct clk_regmap_mux prefix##_bit_clk = { \ 296 .name = #prefix "_bit_clk", \ 298 #prefix "_bit_div_clk", \ 299 #prefix "_codec_clk", \
|
/linux-4.4.14/fs/hfsplus/ |
H A D | xattr.h | 26 const char *prefix, size_t prefixlen); 33 const char *prefix, size_t prefixlen);
|
H A D | xattr_trusted.c | 32 .prefix = XATTR_TRUSTED_PREFIX,
|
H A D | xattr_user.c | 32 .prefix = XATTR_USER_PREFIX,
|
H A D | xattr_security.c | 86 .prefix = XATTR_SECURITY_PREFIX,
|
/linux-4.4.14/include/linux/ |
H A D | of_iommu.h | 10 extern int of_get_dma_window(struct device_node *dn, const char *prefix, 20 static inline int of_get_dma_window(struct device_node *dn, const char *prefix, of_get_dma_window() argument
|
H A D | string.h | 142 * strstarts - does @str start with @prefix? 144 * @prefix: prefix to look for. 146 static inline bool strstarts(const char *str, const char *prefix) strstarts() argument 148 return strncmp(str, prefix, strlen(prefix)) == 0; strstarts()
|
H A D | compiler.h | 196 # define __UNIQUE_ID(prefix) __PASTE(__PASTE(__UNIQUE_ID_, prefix), __LINE__) 462 #define __compiletime_assert(condition, msg, prefix, suffix) \ 465 extern void prefix ## suffix(void) __compiletime_error(msg); \ 467 prefix ## suffix(); \ 471 #define _compiletime_assert(condition, msg, prefix, suffix) \ 472 __compiletime_assert(condition, msg, prefix, suffix)
|
H A D | export.h | 12 /* Some toolchains use a `_' prefix for all user symbols. */
|
H A D | idr.h | 31 int prefix; /* the ID prefix of this idr_layer */ member in struct:idr_layer 119 if (hint && (id & ~IDR_MASK) == hint->prefix) idr_find()
|
/linux-4.4.14/drivers/net/wireless/ti/wlcore/ |
H A D | debug.h | 92 #define wl1271_dump(level, prefix, buf, len) \ 95 print_hex_dump_debug(DRIVER_PREFIX prefix, \ 102 #define wl1271_dump_ascii(level, prefix, buf, len) \ 105 print_hex_dump_debug(DRIVER_PREFIX prefix, \
|
H A D | debugfs.h | 63 #define DEBUGFS_ADD_PREFIX(prefix, name, parent) \ 66 wl, &prefix## _## name## _ops); \
|
/linux-4.4.14/include/uapi/linux/netfilter_ipv4/ |
H A D | ipt_LOG.h | 18 char prefix[30]; member in struct:ipt_log_info
|
/linux-4.4.14/include/uapi/linux/netfilter_ipv6/ |
H A D | ip6t_LOG.h | 18 char prefix[30]; member in struct:ip6t_log_info
|
/linux-4.4.14/arch/sh/include/asm/ |
H A D | io_generic.h | 11 #error "Don't include this header without a valid system prefix"
|
/linux-4.4.14/tools/perf/util/ |
H A D | strbuf.c | 4 int prefixcmp(const char *str, const char *prefix) prefixcmp() argument 6 for (; ; str++, prefix++) prefixcmp() 7 if (!*prefix) prefixcmp() 9 else if (*str != *prefix) prefixcmp() 10 return (unsigned char)*prefix - (unsigned char)*str; prefixcmp()
|
H A D | help.c | 119 const char *prefix) list_commands_in_dir() 129 if (!prefix) list_commands_in_dir() 130 prefix = "perf-"; list_commands_in_dir() 131 prefix_len = strlen(prefix); list_commands_in_dir() 139 if (prefixcmp(de->d_name, prefix)) list_commands_in_dir() 157 void load_command_list(const char *prefix, load_command_list() argument 165 list_commands_in_dir(main_cmds, exec_path, prefix); load_command_list() 178 list_commands_in_dir(other_cmds, path, prefix); load_command_list() 335 const char *prefix __maybe_unused) cmd_version() 117 list_commands_in_dir(struct cmdnames *cmds, const char *path, const char *prefix) list_commands_in_dir() argument
|
H A D | help.h | 19 void load_command_list(const char *prefix,
|
H A D | usage.c | 12 static void report(const char *prefix, const char *err, va_list params) report() argument 16 fprintf(stderr, " %s%s\n", prefix, msg); report()
|
H A D | exec_cmd.c | 14 static const char *prefix = PREFIX; system_path() local 20 strbuf_addf(&d, "%s/%s", prefix, path); system_path()
|
H A D | util.h | 150 extern int prefixcmp(const char *str, const char *prefix); 153 static inline const char *skip_prefix(const char *str, const char *prefix) skip_prefix() argument 155 size_t len = strlen(prefix); skip_prefix() 156 return strncmp(str, prefix, len) ? NULL : str + len; skip_prefix()
|
/linux-4.4.14/arch/s390/kvm/ |
H A D | diag.c | 26 unsigned long prefix = kvm_s390_get_prefix(vcpu); diag_release_pages() local 40 * fast path (no prefix swap page involved) diag_release_pages() 42 if (end <= prefix || start >= prefix + 2 * PAGE_SIZE) { diag_release_pages() 47 * so lets split this into before prefix, prefix, after diag_release_pages() 48 * prefix and let gmap_discard make some of these calls diag_release_pages() 51 gmap_discard(vcpu->arch.gmap, start, prefix); diag_release_pages() 52 if (start <= prefix) diag_release_pages() 54 if (end > prefix + 4096) diag_release_pages() 56 gmap_discard(vcpu->arch.gmap, prefix + 2 * PAGE_SIZE, end); diag_release_pages()
|
H A D | kvm-s390.h | 70 return vcpu->arch.sie_block->prefix << GUEST_PREFIX_SHIFT; kvm_s390_get_prefix() 73 static inline void kvm_s390_set_prefix(struct kvm_vcpu *vcpu, u32 prefix) kvm_s390_set_prefix() argument 75 VCPU_EVENT(vcpu, 3, "set prefix of cpu %03u to 0x%x", vcpu->vcpu_id, kvm_s390_set_prefix() 76 prefix); kvm_s390_set_prefix() 77 vcpu->arch.sie_block->prefix = prefix >> GUEST_PREFIX_SHIFT; kvm_s390_set_prefix()
|
H A D | gaccess.h | 28 * address @gra of a virtual guest cpu by applying its prefix. 33 unsigned long prefix = kvm_s390_get_prefix(vcpu); kvm_s390_real_to_abs() local 36 gra += prefix; kvm_s390_real_to_abs() 37 else if (gra >= prefix && gra < prefix + 2 * PAGE_SIZE) kvm_s390_real_to_abs() 38 gra -= prefix; kvm_s390_real_to_abs() 74 * prefix pages, so that these pages can be accessed directly via the
|
/linux-4.4.14/drivers/acpi/acpica/ |
H A D | acapps.h | 72 #define ACPI_COMMON_HEADER(utility_name, prefix) \ 74 prefix, ACPICA_NAME, \ 75 prefix, utility_name, ((u32) ACPI_CA_VERSION), ACPI_WIDTH, \ 76 prefix, ACPICA_COPYRIGHT, \ 77 prefix 116 char *filename, char *prefix, char **out_filename); 166 char *ad_generate_filename(char *prefix, char *table_id);
|
H A D | exnames.c | 69 * string is long enough, and set up prefix if any. 273 * Examine first character of name for root or parent prefix operators acpi_ex_get_name_string() 310 /* Not a prefix character */ acpi_ex_get_name_string() 315 /* Examine first character of name for name segment prefix operator */ acpi_ex_get_name_string() 332 /* Indicate that we processed a prefix */ acpi_ex_get_name_string() 364 /* Indicate that we processed a prefix */ acpi_ex_get_name_string() 418 /* Ran out of segments after processing a prefix */ acpi_ex_get_name_string()
|
H A D | utxfmutex.c | 61 * PARAMETERS: handle - Mutex or prefix handle (optional) 121 * PARAMETERS: handle - Mutex or prefix handle (optional) 158 * PARAMETERS: handle - Mutex or prefix handle (optional)
|
H A D | nsaccess.c | 317 /* Get the prefix scope. A null scope means use the root scope */ acpi_ns_lookup() 321 "Null scope prefix, using root node (%p)\n", acpi_ns_lookup() 373 * optional scope prefix followed by a name segment part. acpi_ns_lookup() 375 * If present, the scope prefix is either a Root Prefix (in acpi_ns_lookup() 398 "Searching relative to prefix scope [%4.4s] (%p)\n", acpi_ns_lookup() 404 * the parent node for each prefix instance. acpi_ns_lookup() 415 * Point past this prefix to the name segment acpi_ns_lookup() 454 * Examine the name prefix opcode, if any, to determine the number of acpi_ns_lookup() 506 * Not a Null name, no Dual or Multi prefix, hence there is acpi_ns_lookup()
|
/linux-4.4.14/drivers/video/fbdev/omap2/dss/ |
H A D | omapdss-boot-init.c | 35 static const char prefix[] __initconst = "omapdss,"; 79 strcpy(dst, prefix); omapdss_prefix_strcpy() 80 dst += strlen(prefix); omapdss_prefix_strcpy() 107 if (strncmp(prefix, prop->value, strlen(prefix)) == 0) omapdss_omapify_node() 112 new_len = prop->length + strlen(prefix) * num_strs; omapdss_omapify_node()
|
/linux-4.4.14/arch/s390/mm/ |
H A D | maccess.c | 113 unsigned long cr0, flags, prefix; memcpy_absolute() local 118 prefix = store_prefix(); memcpy_absolute() 119 if (prefix) { memcpy_absolute() 123 set_prefix(prefix); memcpy_absolute() 159 * Check if physical address is within prefix or zero page 180 * For swapped prefix pages a new buffer is returned that contains a copy of
|
/linux-4.4.14/drivers/s390/net/ |
H A D | smsgiucv.c | 35 const char *prefix; member in struct:smsg_callback 95 if (strncmp(buffer + 8, cb->prefix, cb->len) == 0) { smsg_message_pending() 104 int smsg_register_callback(const char *prefix, smsg_register_callback() argument 112 cb->prefix = prefix; smsg_register_callback() 113 cb->len = strlen(prefix); smsg_register_callback() 121 void smsg_unregister_callback(const char *prefix, smsg_unregister_callback() argument 131 strcmp(tmp->prefix, prefix) == 0) { smsg_unregister_callback()
|
H A D | smsgiucv_app.c | 5 * "APP" prefix. Incoming messages are delivered to user space 27 /* prefix used for SMSG registration */ 88 /* setting up environment: sender, prefix name, and message text */ smsg_app_event_alloc() 129 /* get start of message text (skip prefix and leading blanks) */ smsg_app_callback()
|
/linux-4.4.14/drivers/net/can/softing/ |
H A D | softing_platform.h | 7 /* softing firmware directory prefix */
|
/linux-4.4.14/fs/squashfs/ |
H A D | xattr.c | 137 int type, prefix, name_size; squashfs_xattr_get() local 146 prefix = type & SQUASHFS_XATTR_PREFIX_MASK; squashfs_xattr_get() 148 if (prefix == name_index && name_size == name_len) squashfs_xattr_get() 157 if (prefix == name_index && name_size == name_len && squashfs_xattr_get() 220 int len = strlen(handler->prefix); squashfs_xattr_handler_list() 223 memcpy(list, handler->prefix, len); squashfs_xattr_handler_list() 242 .prefix = XATTR_USER_PREFIX, 263 .prefix = XATTR_TRUSTED_PREFIX, 273 .prefix = XATTR_SECURITY_PREFIX,
|
/linux-4.4.14/include/linux/ceph/ |
H A D | ceph_debug.h | 9 * wrap pr_debug to include a filename:lineno prefix on each line.
|
/linux-4.4.14/arch/powerpc/boot/ |
H A D | stdlib.c | 15 /* Not currently supported: leading whitespace, sign, 0x prefix, zero base */ strtoull()
|
H A D | wrapper | 18 # -C prefix specify command prefix for cross-building tools 45 # cross-compilation prefix 61 echo ' [-d devtree] [-s tree.dts] [-c] [-C cross-prefix]' >&2
|
/linux-4.4.14/tools/iio/ |
H A D | lsiio.c | 31 static inline int check_prefix(const char *str, const char *prefix) check_prefix() argument 33 return strlen(str) > strlen(prefix) && check_prefix() 34 strncmp(str, prefix, strlen(prefix)) == 0; check_prefix()
|
/linux-4.4.14/tools/lib/lockdep/ |
H A D | Makefile | 17 # Allow setting CC and AR and LD, or setting CROSS_COMPILE as a prefix. 31 prefix ?= /usr/local macro 33 libdir = $(prefix)/$(libdir_relative) 35 bindir = $(prefix)/$(bindir_relative)
|
/linux-4.4.14/drivers/media/common/b2c2/ |
H A D | flexcop-misc.c | 68 const char *prefix, const char *suffix) flexcop_device_name() 71 prefix, flexcop_device_names[fc->dev_type], flexcop_device_name() 67 flexcop_device_name(struct flexcop_device *fc, const char *prefix, const char *suffix) flexcop_device_name() argument
|
H A D | flexcop-common.h | 24 #warning please define a log prefix for your file, using a default one 172 const char *prefix, const char *suffix);
|
/linux-4.4.14/arch/um/drivers/ |
H A D | chan_user.h | 46 #define __channel_help(fn, prefix) \ 47 __uml_help(fn, prefix "[0-9]*=<channel description>\n" \
|
/linux-4.4.14/net/wimax/ |
H A D | debugfs.c | 31 #define __debugfs_register(prefix, name, parent) \ 33 result = d_level_register_debugfs(prefix, name, parent); \
|
/linux-4.4.14/include/uapi/linux/ |
H A D | if_addr.h | 9 __u8 ifa_prefixlen; /* The prefix length */ 17 * IFA_ADDRESS is prefix address, rather than local interface address.
|
H A D | if_tunnel.h | 90 struct in6_addr prefix; member in struct:ip_tunnel_6rd
|
H A D | ipv6_route.h | 22 #define RTF_PREFIX_RT 0x00080000 /* A prefix only route - RA */
|
H A D | atmbr2684.h | 100 __be32 prefix; /* network byte order */ member in struct:br2684_filter
|
/linux-4.4.14/arch/powerpc/include/asm/ |
H A D | ftrace.h | 70 * prefix from the symbol name and the sys prefix from the system call name and arch_syscall_match_sym_name()
|
H A D | bitops.h | 57 #define DEFINE_BITOP(fn, op, prefix) \ 64 prefix \ 102 #define DEFINE_TESTOP(fn, op, prefix, postfix, eh) \ 110 prefix \
|
/linux-4.4.14/arch/s390/kernel/ |
H A D | swsusp.S | 39 /* Store prefix register on stack */ 42 /* Save prefix register contents for lowcore copy */ 52 mvc 0x318(4,%r1),__SF_EMPTY(%r15) /* move prefix to lowcore */ 76 /* Set prefix page to zero */ 100 /* Restore prefix register and return */ 125 /* Set prefix page to zero */ 241 /* Save prefix register */ 253 /* Restore prefix register */
|
H A D | base.S | 91 larl %r4,.Lprefix # Save prefix register 93 larl %r4,.Lprefix_zero # Set prefix register to 0 114 larl %r4,.Lprefix # Restore prefix register
|
/linux-4.4.14/tools/lib/bpf/ |
H A D | Makefile | 21 # Allow setting CC and AR, or setting CROSS_COMPILE as a prefix. 41 prefix ?= /usr/local macro 42 libdir = $(prefix)/$(libdir_relative) 43 man_dir = $(prefix)/share/man 76 export prefix libdir src obj
|
/linux-4.4.14/drivers/staging/lustre/lustre/libcfs/linux/ |
H A D | linux-tracefile.c | 241 char *prefix = "Lustre", *ptype = NULL; cfs_print_to_console() local 244 prefix = dbghdr_to_err_string(hdr); cfs_print_to_console() 247 prefix = dbghdr_to_err_string(hdr); cfs_print_to_console() 250 prefix = dbghdr_to_info_string(hdr); cfs_print_to_console() 253 prefix = dbghdr_to_info_string(hdr); cfs_print_to_console() 258 printk("%s%s: %.*s", ptype, prefix, len, buf); cfs_print_to_console() 260 printk("%s%s: %d:%d:(%s:%d:%s()) %.*s", ptype, prefix, cfs_print_to_console()
|
/linux-4.4.14/drivers/net/wireless/ath/ath6kl/ |
H A D | trace.h | 299 TP_PROTO(const char *msg, const char *prefix, 302 TP_ARGS(msg, prefix, buf, buf_len), 306 __string(prefix, prefix) 313 __assign_str(prefix, prefix); 319 "%s/%s\n", __get_str(prefix), __get_str(msg)
|
H A D | debug.h | 68 const char *msg, const char *prefix, 92 const char *msg, const char *prefix, ath6kl_dbg_dump() 91 ath6kl_dbg_dump(enum ATH6K_DEBUG_MASK mask, const char *msg, const char *prefix, const void *buf, size_t len) ath6kl_dbg_dump() argument
|
/linux-4.4.14/arch/x86/include/asm/ |
H A D | insn.h | 39 * prefixes.bytes[3]: last prefix 41 struct insn_field rex_prefix; /* REX prefix */ 42 struct insn_field vex_prefix; /* VEX prefix */ 159 /* Get the last prefix id from last prefix or VEX prefix */ insn_last_prefix_id() 163 return insn_vex_p_bits(insn); /* VEX_p is a SIMD prefix id */ insn_last_prefix_id()
|
H A D | arch_hweight.h | 5 /* popcnt %edi, %eax -- redundant REX prefix for alignment */
|
H A D | inat.h | 46 /* x86-64 REX prefix */ 49 #define INAT_PFX_VEX2 13 /* 2-bytes VEX prefix */ 50 #define INAT_PFX_VEX3 14 /* 3-bytes VEX prefix */ 64 /* Legacy prefix */
|
H A D | local.h | 124 /* Always has a lock prefix */ 154 * because they dont use a lock prefix.
|
H A D | cmpxchg_32.h | 19 * cmpxchg8b must be used with the lock prefix here to allow the
|
/linux-4.4.14/tools/perf/util/intel-pt-decoder/ |
H A D | insn.h | 39 * prefixes.bytes[3]: last prefix 41 struct insn_field rex_prefix; /* REX prefix */ 42 struct insn_field vex_prefix; /* VEX prefix */ 159 /* Get the last prefix id from last prefix or VEX prefix */ insn_last_prefix_id() 163 return insn_vex_p_bits(insn); /* VEX_p is a SIMD prefix id */ insn_last_prefix_id()
|
H A D | inat.h | 46 /* x86-64 REX prefix */ 49 #define INAT_PFX_VEX2 13 /* 2-bytes VEX prefix */ 50 #define INAT_PFX_VEX3 14 /* 3-bytes VEX prefix */ 64 /* Legacy prefix */
|
H A D | insn.c | 75 * insn_get_prefixes - scan x86 instruction prefix bytes 97 /* Skip if same prefix */ insn_get_prefixes() 122 /* Set the last prefix */ insn_get_prefixes() 125 /* Swap the last prefix */ insn_get_prefixes() 134 /* Decode REX prefix */ insn_get_prefixes() 149 /* Decode VEX prefix */ insn_get_prefixes() 199 * If necessary, first collects any preceding (prefix) bytes. 218 /* Check if there is VEX prefix or not */ insn_get_opcode() 359 * address size = 2 (0x67 prefix in 32-bit mode) insn_get_displacement()
|
H A D | gen-insn-attr-x86.awk | 76 # accepts VEX prefix 79 # All opcodes with (v) superscript supports *only* VEX prefix 313 # check REX prefix 330 semantic_error("Unknown prefix: " opcode) 335 # check if last prefix
|
/linux-4.4.14/drivers/staging/lustre/lustre/fid/ |
H A D | fid_request.c | 395 const char *prefix) seq_client_init() 400 LASSERT(prefix != NULL); seq_client_init() 417 "cli-%s", prefix); seq_client_init() 429 char *prefix; client_fid_init() local 436 prefix = kzalloc(MAX_OBD_NAME + 5, GFP_NOFS); client_fid_init() 437 if (!prefix) { client_fid_init() 442 snprintf(prefix, MAX_OBD_NAME + 5, "cli-%s", obd->obd_name); client_fid_init() 445 rc = seq_client_init(cli->cl_seq, exp, type, prefix); client_fid_init() 446 kfree(prefix); client_fid_init() 392 seq_client_init(struct lu_client_seq *seq, struct obd_export *exp, enum lu_cli_type type, const char *prefix) seq_client_init() argument
|
/linux-4.4.14/arch/tile/include/uapi/arch/ |
H A D | abi.h | 53 /** String prefix to use for printf(). */ 66 /** String prefix to use for printf(). */ 84 /** String prefix to use for printf(). */
|
/linux-4.4.14/arch/m68k/lib/ |
H A D | mulsi3.S | 55 /* Use the right prefix for global labels. */ 59 /* Use the right prefix for registers. */ 63 /* Use the right prefix for immediate values. */
|
H A D | divsi3.S | 55 /* Use the right prefix for global labels. */ 59 /* Use the right prefix for registers. */ 63 /* Use the right prefix for immediate values. */
|
H A D | modsi3.S | 55 /* Use the right prefix for global labels. */ 59 /* Use the right prefix for registers. */ 63 /* Use the right prefix for immediate values. */
|
H A D | umodsi3.S | 55 /* Use the right prefix for global labels. */ 59 /* Use the right prefix for registers. */ 63 /* Use the right prefix for immediate values. */
|
H A D | udivsi3.S | 55 /* Use the right prefix for global labels. */ 59 /* Use the right prefix for registers. */ 63 /* Use the right prefix for immediate values. */
|
/linux-4.4.14/arch/ia64/kernel/ |
H A D | efi.c | 61 #define STUB_GET_TIME(prefix, adjust_arg) \ 63 prefix##_get_time (efi_time_t *tm, efi_time_cap_t *tc) \ 72 ret = efi_call_##prefix((efi_get_time_t *) __va(runtime->get_time), \ 78 #define STUB_SET_TIME(prefix, adjust_arg) \ 80 prefix##_set_time (efi_time_t *tm) \ 86 ret = efi_call_##prefix((efi_set_time_t *) __va(runtime->set_time), \ 92 #define STUB_GET_WAKEUP_TIME(prefix, adjust_arg) \ 94 prefix##_get_wakeup_time (efi_bool_t *enabled, efi_bool_t *pending, \ 101 ret = efi_call_##prefix( \ 108 #define STUB_SET_WAKEUP_TIME(prefix, adjust_arg) \ 110 prefix##_set_wakeup_time (efi_bool_t enabled, efi_time_t *tm) \ 119 ret = efi_call_##prefix( \ 126 #define STUB_GET_VARIABLE(prefix, adjust_arg) \ 128 prefix##_get_variable (efi_char16_t *name, efi_guid_t *vendor, u32 *attr, \ 138 ret = efi_call_##prefix( \ 146 #define STUB_GET_NEXT_VARIABLE(prefix, adjust_arg) \ 148 prefix##_get_next_variable (unsigned long *name_size, efi_char16_t *name, \ 155 ret = efi_call_##prefix( \ 162 #define STUB_SET_VARIABLE(prefix, adjust_arg) \ 164 prefix##_set_variable (efi_char16_t *name, efi_guid_t *vendor, \ 172 ret = efi_call_##prefix( \ 180 #define STUB_GET_NEXT_HIGH_MONO_COUNT(prefix, adjust_arg) \ 182 prefix##_get_next_high_mono_count (u32 *count) \ 188 ret = efi_call_##prefix((efi_get_next_high_mono_count_t *) \ 195 #define STUB_RESET_SYSTEM(prefix, adjust_arg) \ 197 prefix##_reset_system (int reset_type, efi_status_t status, \ 207 efi_call_##prefix( \
|
/linux-4.4.14/fs/ext4/ |
H A D | xattr_trusted.c | 57 .prefix = XATTR_TRUSTED_PREFIX,
|
H A D | xattr_security.c | 81 .prefix = XATTR_SECURITY_PREFIX,
|
H A D | xattr_user.c | 60 .prefix = XATTR_USER_PREFIX,
|
/linux-4.4.14/fs/jffs2/ |
H A D | xattr_trusted.c | 58 .prefix = XATTR_TRUSTED_PREFIX,
|
H A D | xattr_user.c | 55 .prefix = XATTR_USER_PREFIX,
|
H A D | security.c | 89 .prefix = XATTR_SECURITY_PREFIX,
|
/linux-4.4.14/fs/ext2/ |
H A D | xattr_trusted.c | 53 .prefix = XATTR_TRUSTED_PREFIX,
|
H A D | xattr_security.c | 73 .prefix = XATTR_SECURITY_PREFIX,
|
H A D | xattr_user.c | 60 .prefix = XATTR_USER_PREFIX,
|
/linux-4.4.14/fs/reiserfs/ |
H A D | xattr_trusted.c | 53 .prefix = XATTR_TRUSTED_PREFIX,
|
H A D | xattr_user.c | 49 .prefix = XATTR_USER_PREFIX,
|
/linux-4.4.14/tools/arch/powerpc/include/asm/ |
H A D | barrier.h | 21 * *mb() variants without smp_ prefix must order all types of memory
|
/linux-4.4.14/drivers/scsi/ |
H A D | sr.h | 59 #define sr_printk(prefix, cd, fmt, a...) \ 60 sdev_prefix_printk(prefix, (cd)->device, (cd)->cdi.name, fmt, ##a)
|
H A D | sd.h | 105 #define sd_printk(prefix, sdsk, fmt, a...) \ 107 sdev_prefix_printk(prefix, (sdsk)->device, \ 109 sdev_printk(prefix, (sdsk)->device, fmt, ##a) 111 #define sd_first_printk(prefix, sdsk, fmt, a...) \ 114 sd_printk(prefix, sdsk, fmt, ##a); \
|
H A D | 53c700.h | 25 #define DDEBUG(prefix, sdev, fmt, a...) \ 26 sdev_printk(prefix, sdev, fmt, ##a) 27 #define CDEBUG(prefix, scmd, fmt, a...) \ 28 scmd_printk(prefix, scmd, fmt, ##a) 31 #define DDEBUG(prefix, scmd, fmt, a...) do {} while (0) 32 #define CDEBUG(prefix, scmd, fmt, a...) do {} while (0)
|
H A D | script_asm.pl | 56 #$prefix; # (set by perl -s) 57 # define all arrays having this prefix so we 900 print OUTPUT "static u32 ".$prefix."SCRIPT[] = {\n"; 933 if (defined($prefix) && $prefix ne '') { 934 printf OUTPUT "#define A_".$i."_used ".$prefix."A_".$i."_used\n"; 961 printf OUTPUT "static u32 ".$prefix."LABELPATCHES[] __attribute((unused)) = {\n"; 969 "} ".$prefix."EXTERNAL_PATCHES[] __attribute((unused)) = {\n"; 977 printf OUTPUT "static u32 ".$prefix."INSTRUCTIONS __attribute((unused))\t= %d;\n", 979 printf OUTPUT "static u32 ".$prefix."PATCHES __attribute((unused))\t= %d;\n", 981 printf OUTPUT "static u32 ".$prefix."EXTERNAL_PATCHES_LEN __attribute((unused))\t= %d;\n",
|
/linux-4.4.14/drivers/misc/cb710/ |
H A D | debug.c | 20 static const char *const prefix[ARRAY_SIZE(allow)] = { variable 79 dev_dbg(dev, "%s 0x%02X %s\n", prefix[i], i << 4, msg); \
|
/linux-4.4.14/drivers/hwmon/ |
H A D | w83l785ts.c | 238 const char *prefix; w83l785ts_read_value() local 246 prefix = ""; w83l785ts_read_value() 249 prefix = "w83l785ts: "; w83l785ts_read_value() 261 prefix, value, reg); w83l785ts_read_value() 264 dev_dbg(dev, "%sRead failed, will retry in %d.\n", prefix, i); w83l785ts_read_value() 268 dev_err(dev, "%sCouldn't read value from register 0x%02x.\n", prefix, w83l785ts_read_value()
|
/linux-4.4.14/fs/xfs/ |
H A D | xfs_xattr.c | 107 .prefix = XATTR_USER_PREFIX, 114 .prefix = XATTR_TRUSTED_PREFIX, 121 .prefix = XATTR_SECURITY_PREFIX, 151 return xfs_xattr_security_handler.prefix; xfs_xattr_prefix() 153 return xfs_xattr_trusted_handler.prefix; xfs_xattr_prefix() 155 return xfs_xattr_user_handler.prefix; xfs_xattr_prefix()
|
/linux-4.4.14/tools/lib/traceevent/ |
H A D | Makefile | 23 # Allow setting CC and AR, or setting CROSS_COMPILE as a prefix. 45 prefix ?= /usr/local macro 46 libdir = $(prefix)/$(libdir_relative) 47 man_dir = $(prefix)/share/man 64 ifeq ($(prefix),$(HOME)) 95 export prefix libdir src obj
|
H A D | event-plugin.c | 265 * @prefix: The prefix string to add before listing the option name 270 * returned by traceevent_load_plugins(). Use @prefix and @suffix for formating: 271 * @prefix = " ", @suffix = "\n". 274 const char *prefix, const char *suffix, traceevent_print_plugins() 278 trace_seq_printf(s, "%s%s%s", prefix, list->name, suffix); traceevent_print_plugins() 273 traceevent_print_plugins(struct trace_seq *s, const char *prefix, const char *suffix, const struct plugin_list *list) traceevent_print_plugins() argument
|
/linux-4.4.14/drivers/scsi/aic7xxx/aicasm/ |
H A D | aicasm_symbol.c | 370 prefix, prefix, prefix); aic_print_reg_dump_types() 381 prefix, aic_print_reg_dump_start() 414 prefix, aic_print_reg_dump_end() 416 prefix, aic_print_reg_dump_end() 432 prefix, aic_print_reg_dump_end() 433 prefix, aic_print_reg_dump_end() 435 prefix, aic_print_reg_dump_end() 437 prefix, aic_print_reg_dump_end()
|
H A D | aicasm_gram.y | 68 char *prefix = stock_prefix; 238 | prefix 239 | program prefix 281 prefix: label 284 if (prefix != stock_prefix) 287 prefix = strdup($3); 288 if (prefix == NULL) 289 stop("Unable to record prefix", EX_SOFTWARE); 1963 const char prefix[] = " * "; 1967 newlen = strlen(verstring) + strlen(prefix); 1974 strcpy(&versions[oldlen], prefix); 1975 strcpy(&versions[oldlen + strlen(prefix)], verstring);
|
H A D | aicasm.c | 395 "typedef int %spatch_func_t (%s);\n", prefix, patch_arg_list); output_code() 408 prefix, output_code() 409 prefix, output_code() 411 prefix, output_code() 423 "} patches[] = {\n", prefix); output_code() 430 prefix, output_code()
|
/linux-4.4.14/tools/perf/Documentation/ |
H A D | Makefile | 37 # Make the path relative to DESTDIR, not prefix 39 prefix?=$(HOME) macro 41 bindir?=$(prefix)/bin 42 htmldir?=$(prefix)/share/doc/perf-doc 43 pdfdir?=$(prefix)/share/doc/perf-doc 44 mandir?=$(prefix)/share/man 58 infodir?=$(prefix)/share/info
|
/linux-4.4.14/arch/x86/lib/ |
H A D | insn.c | 75 * insn_get_prefixes - scan x86 instruction prefix bytes 97 /* Skip if same prefix */ insn_get_prefixes() 122 /* Set the last prefix */ insn_get_prefixes() 125 /* Swap the last prefix */ insn_get_prefixes() 134 /* Decode REX prefix */ insn_get_prefixes() 149 /* Decode VEX prefix */ insn_get_prefixes() 199 * If necessary, first collects any preceding (prefix) bytes. 218 /* Check if there is VEX prefix or not */ insn_get_opcode() 359 * address size = 2 (0x67 prefix in 32-bit mode) insn_get_displacement()
|
/linux-4.4.14/fs/affs/ |
H A D | super.c | 175 {Opt_prefix, "prefix=%s"}, 192 int *blocksize, char **prefix, char *volume, unsigned long *mount_opts) parse_options() 240 *prefix = match_strdup(&args[0]); parse_options() 241 if (!*prefix) parse_options() 528 char *prefix = NULL; affs_remount() local 541 &blocksize, &prefix, volume, affs_remount() 543 kfree(prefix); affs_remount() 558 if (prefix) { affs_remount() 560 sbi->s_prefix = prefix; affs_remount() 191 parse_options(char *options, kuid_t *uid, kgid_t *gid, int *mode, int *reserved, s32 *root, int *blocksize, char **prefix, char *volume, unsigned long *mount_opts) parse_options() argument
|
/linux-4.4.14/sound/soc/generic/ |
H A D | simple-card.c | 283 char *prefix, int idx) asoc_simple_card_parse_daifmt() 291 daifmt = snd_soc_of_parse_daifmt(node, prefix, asoc_simple_card_parse_daifmt() 295 if (strlen(prefix) && !bitclkmaster && !framemaster) { asoc_simple_card_parse_daifmt() 335 char *prefix = ""; asoc_simple_card_dai_link_of() local 341 prefix = "simple-audio-card,"; asoc_simple_card_dai_link_of() 343 snprintf(prop, sizeof(prop), "%scpu", prefix); asoc_simple_card_dai_link_of() 346 snprintf(prop, sizeof(prop), "%splat", prefix); asoc_simple_card_dai_link_of() 349 snprintf(prop, sizeof(prop), "%scodec", prefix); asoc_simple_card_dai_link_of() 359 codec, prefix, idx); asoc_simple_card_dai_link_of() 280 asoc_simple_card_parse_daifmt(struct device_node *node, struct simple_card_data *priv, struct device_node *codec, char *prefix, int idx) asoc_simple_card_parse_daifmt() argument
|
/linux-4.4.14/arch/x86/tools/ |
H A D | gen-insn-attr-x86.awk | 76 # accepts VEX prefix 79 # All opcodes with (v) superscript supports *only* VEX prefix 313 # check REX prefix 330 semantic_error("Unknown prefix: " opcode) 335 # check if last prefix
|
/linux-4.4.14/lib/ |
H A D | hexdump.c | 214 * @prefix_str: string to prefix each line with; 216 * @prefix_type: controls whether prefix of an offset, address, or none 226 * leading prefix. 279 * @prefix_str: string to prefix each line with; 281 * @prefix_type: controls whether prefix of an offset, address, or none
|
H A D | cpu_rmap.c | 114 static void debug_print_rmap(const struct cpu_rmap *rmap, const char *prefix) debug_print_rmap() argument 119 pr_info("cpu_rmap %p, %s:\n", rmap, prefix); debug_print_rmap() 129 debug_print_rmap(const struct cpu_rmap *rmap, const char *prefix) debug_print_rmap() argument
|
/linux-4.4.14/fs/9p/ |
H A D | acl.c | 231 return v9fs_xattr_get(dentry, handler->prefix, buffer, size); v9fs_xattr_get_acl() 262 return v9fs_xattr_set(dentry, handler->prefix, value, size, v9fs_xattr_set_acl() 322 retval = v9fs_xattr_set(dentry, handler->prefix, value, size, flags); v9fs_xattr_set_acl() 331 .prefix = POSIX_ACL_XATTR_ACCESS, 338 .prefix = POSIX_ACL_XATTR_DEFAULT,
|
H A D | xattr.c | 163 .prefix = XATTR_USER_PREFIX, 169 .prefix = XATTR_TRUSTED_PREFIX, 176 .prefix = XATTR_SECURITY_PREFIX,
|
/linux-4.4.14/drivers/firmware/ |
H A D | dmi-id.c | 74 const char *prefix; get_modalias() member in struct:mafield 99 for (f = fields; f->prefix && left > 0; f++) { get_modalias() 111 l = scnprintf(p, left, ":%s%s", f->prefix, t); get_modalias()
|
/linux-4.4.14/scripts/ |
H A D | config | 6 # If no prefix forced, use the default CONFIG_ 44 $myname uses 'CONFIG_' as the default symbol prefix. Set the environment 45 variable CONFIG_ to the prefix to use. Eg.: CONFIG_="FOO_" $myname ...
|
H A D | kallsyms.c | 75 "[--symbol-prefix=<prefix char>] " usage() 132 /* skip prefix char */ read_symbol() 227 /* skip prefix char */ symbol_valid() 664 /* sort by the number of prefix underscores */ compare_symbols() 697 else if (strncmp(argv[i], "--symbol-prefix=", 16) == 0) { main()
|
/linux-4.4.14/fs/ocfs2/cluster/ |
H A D | masklog.c | 73 const char *prefix = ""; __mlog_printk() local 81 prefix = "ERROR: "; __mlog_printk() 95 raw_smp_processor_id(), func, line, prefix, &vaf); __mlog_printk()
|
/linux-4.4.14/tools/perf/config/ |
H A D | Makefile | 667 # this is interpreted as relative to $(prefix) and "perf" at 671 # Make the path relative to DESTDIR, not to prefix 673 prefix ?= $(HOME) macro 676 bindir = $(abspath $(prefix)/$(bindir_relative)) 680 sharedir = $(prefix)/share 684 ifeq ($(prefix),/usr) 688 sysconfdir = $(prefix)/etc 698 libdir = $(prefix)/$(lib) 710 prefix_SQ = $(subst ','\'',$(prefix)) 718 perfexec_instdir = $(prefix)/$(perfexecdir) 719 STRACE_GROUPS_INSTDIR = $(prefix)/$(STRACE_GROUPS_DIR) 738 $(call print_var,prefix)
|
/linux-4.4.14/mm/kasan/ |
H A D | kasan.c | 190 unsigned int prefix = (unsigned long)start % 8; memory_is_zero() local 195 if (prefix) { memory_is_zero() 196 prefix = 8 - prefix; memory_is_zero() 197 ret = bytes_is_zero(start, prefix); memory_is_zero() 200 start += prefix; memory_is_zero()
|
/linux-4.4.14/drivers/acpi/ |
H A D | utils.c | 43 char prefix[80] = {'\0'}; acpi_util_eval_error() local 44 struct acpi_buffer buffer = {sizeof(prefix), prefix}; acpi_util_eval_error() 47 (char *) prefix, p, acpi_format_exception(s))); acpi_util_eval_error() 490 * acpi_handle_printk: Print message with ACPI prefix and object path 493 * a message with ACPI prefix and object path. This function acquires 518 * __acpi_handle_debug: pr_debug with ACPI prefix and object path 521 * prints a message with ACPI prefix and object path. This function
|
/linux-4.4.14/fs/cifs/ |
H A D | xattr.c | 38 /* BB need to add server (Samba e.g) support for security and trusted prefix */ 79 /* BB what if no namespace prefix? */ cifs_removexattr() 86 ea_name += XATTR_USER_PREFIX_LEN; /* skip past user. prefix */ cifs_removexattr() 154 ea_name += XATTR_USER_PREFIX_LEN; /* skip past user. prefix */ cifs_setxattr() 164 ea_name += XATTR_OS2_PREFIX_LEN; /* skip past os2. prefix */ cifs_setxattr() 221 /* BB what if no namespace prefix? */ cifs_setxattr() 281 ea_name += XATTR_USER_PREFIX_LEN; /* skip past user. prefix */ cifs_getxattr() 290 ea_name += XATTR_OS2_PREFIX_LEN; /* skip past os2. prefix */ cifs_getxattr()
|
/linux-4.4.14/drivers/firmware/efi/libstub/ |
H A D | Makefile | 58 STUBCOPY_FLAGS-$(CONFIG_ARM64) += --prefix-alloc-sections=.init \ 59 --prefix-symbols=__efistub_
|
/linux-4.4.14/net/ipv4/netfilter/ |
H A D | nf_log_arp.c | 85 const char *prefix) nf_log_arp_packet() 99 prefix); nf_log_arp_packet() 80 nf_log_arp_packet(struct net *net, u_int8_t pf, unsigned int hooknum, const struct sk_buff *skb, const struct net_device *in, const struct net_device *out, const struct nf_loginfo *loginfo, const char *prefix) nf_log_arp_packet() argument
|
/linux-4.4.14/tools/perf/tests/ |
H A D | fdarray.c | 17 static int fdarray__fprintf_prefix(struct fdarray *fda, const char *prefix, FILE *fp) fdarray__fprintf_prefix() argument 24 printed += fprintf(fp, "\n%s: ", prefix); fdarray__fprintf_prefix()
|
/linux-4.4.14/arch/unicore32/ |
H A D | Makefile | 15 CROSS_COMPILE := $(call cc-cross-prefix, unicore32-linux-)
|
/linux-4.4.14/arch/x86/mm/kmemcheck/ |
H A D | opcode.c | 50 /* REX prefix */ kmemcheck_opcode_decode()
|
/linux-4.4.14/arch/cris/include/arch-v10/arch/ |
H A D | bug.h | 20 unsigned short prefix; member in struct:bug_frame
|
/linux-4.4.14/net/batman-adv/ |
H A D | sysfs.h | 32 * BATADV_SYSFS_VLAN_SUBDIR_PREFIX - prefix of the subfolder that will be
|
/linux-4.4.14/scripts/dtc/ |
H A D | dtc.c | 33 static void fill_fullpaths(struct node *tree, const char *prefix) fill_fullpaths() argument 38 tree->fullpath = join_path(prefix, tree->name); fill_fullpaths() 100 "\n\tEnable/disable warnings (prefix with \"no-\")", 101 "\n\tEnable/disable errors (prefix with \"no-\")",
|
H A D | srcpos.c | 293 void srcpos_verror(struct srcpos *pos, const char *prefix, srcpos_verror() argument 300 fprintf(stderr, "%s: %s ", prefix, srcstr); srcpos_verror() 307 void srcpos_error(struct srcpos *pos, const char *prefix, srcpos_error() argument 313 srcpos_verror(pos, prefix, fmt, va); srcpos_error()
|
H A D | srcpos.h | 110 extern void srcpos_verror(struct srcpos *pos, const char *prefix, 113 extern void srcpos_error(struct srcpos *pos, const char *prefix,
|
/linux-4.4.14/include/media/ |
H A D | v4l2-dv-timings.h | 119 * @dev_prefix:device prefix for each log line. 120 * @prefix: additional prefix for each log line, may be NULL. 124 void v4l2_print_dv_timings(const char *dev_prefix, const char *prefix,
|
/linux-4.4.14/arch/mips/include/asm/mach-bcm47xx/ |
H A D | bcm47xx.h | 48 void bcm47xx_fill_sprom(struct ssb_sprom *sprom, const char *prefix,
|
/linux-4.4.14/arch/mips/include/asm/mach-cavium-octeon/ |
H A D | mangle-port.h | 48 * string I/O functions), hence the "__mem_" prefix.
|
/linux-4.4.14/arch/mips/include/asm/mach-generic/ |
H A D | mangle-port.h | 26 * string I/O functions), hence the "__mem_" prefix.
|
/linux-4.4.14/arch/s390/include/asm/ |
H A D | kexec.h | 48 * tod_cmp, tod_reg, control regs, and prefix
|
/linux-4.4.14/arch/sh/include/mach-common/mach/ |
H A D | mangle-port.h | 23 * string I/O functions), hence the "__mem_" prefix.
|
/linux-4.4.14/arch/arm64/kernel/ |
H A D | Makefile | 24 OBJCOPYFLAGS := --prefix-symbols=__efistub_
|
/linux-4.4.14/tools/thermal/tmon/ |
H A D | Makefile | 50 git archive --format=tar --prefix="$(TARGET)-$(VERSION)/" v$(VERSION) | \
|
/linux-4.4.14/drivers/net/wireless/ath/ath10k/ |
H A D | trace.h | 122 TP_PROTO(struct ath10k *ar, const char *msg, const char *prefix, 125 TP_ARGS(ar, msg, prefix, buf, buf_len), 131 __string(prefix, prefix) 140 __assign_str(prefix, prefix); 149 __get_str(prefix),
|
H A D | debug.h | 160 const char *msg, const char *prefix, 173 const char *msg, const char *prefix, ath10k_dbg_dump() 171 ath10k_dbg_dump(struct ath10k *ar, enum ath10k_debug_mask mask, const char *msg, const char *prefix, const void *buf, size_t len) ath10k_dbg_dump() argument
|
/linux-4.4.14/drivers/net/wireless/ath/carl9170/ |
H A D | debug.c | 282 struct sk_buff *skb, const char *prefix, char *buf, carl9170_debugfs_format_frame() 291 "pc:%.8x, to:%d ms\n", prefix, skb, txc->s.cookie, carl9170_debugfs_format_frame() 337 char prefix[32]; carl9170_debugfs_ampdu_state_read() local 339 snprintf(prefix, sizeof(prefix), "\t\t%3d :", fc); carl9170_debugfs_ampdu_state_read() 340 carl9170_debugfs_format_frame(ar, skb, prefix, buf, carl9170_debugfs_ampdu_state_read() 358 char prefix[16]; carl9170_debugfs_queue_dump() local 363 snprintf(prefix, sizeof(prefix), "%3d :", fc); skb_queue_walk() 364 carl9170_debugfs_format_frame(ar, skb, prefix, buf, skb_queue_walk() 281 carl9170_debugfs_format_frame(struct ar9170 *ar, struct sk_buff *skb, const char *prefix, char *buf, ssize_t *off, ssize_t bufsize) carl9170_debugfs_format_frame() argument
|
/linux-4.4.14/drivers/block/drbd/ |
H A D | drbd_vli.h | 83 * this particular encoding is chosen so that the prefix code 91 prefix data bits max val NÂș data bits 124 /* LEVEL: (total bits, prefix bits, prefix value), 197 * Code length is determined by some unique (e.g. unary) prefix.
|
/linux-4.4.14/sound/soc/sh/rcar/ |
H A D | rsrc-card.c | 25 const char *prefix; member in struct:rsrc_card_of_data 36 .prefix = "ak4642", 245 /* additional name prefix */ rsrc_card_parse_links() 248 priv->codec_conf.name_prefix = of_data->prefix; rsrc_card_parse_links() 253 "audio-prefix"); rsrc_card_parse_links()
|
/linux-4.4.14/sound/usb/bcd2000/ |
H A D | bcd2000.c | 77 static void bcd2000_dump_buffer(const char *prefix, const char *buf, int len) bcd2000_dump_buffer() argument 79 print_hex_dump(KERN_DEBUG, prefix, bcd2000_dump_buffer() 84 static void bcd2000_dump_buffer(const char *prefix, const char *buf, int len) {} bcd2000_dump_buffer() argument 146 /* copy command prefix bytes */ bcd2000_midi_send() 151 * get MIDI packet and leave space for command prefix bcd2000_midi_send()
|
/linux-4.4.14/drivers/s390/char/ |
H A D | zcore.c | 259 unsigned long prefix; zcore_add_lc() local 263 prefix = save_area->pref_reg; zcore_add_lc() 264 sa_start = prefix + sys_info.sa_base; zcore_add_lc() 265 sa_end = prefix + sys_info.sa_base + sys_info.sa_size; zcore_add_lc() 352 * expect register sets in the prefix pages of the cpus, zcore_read() 582 u32 prefix; zcore_header_init() local 596 prefix = dump_save_areas.areas[i]->sa.pref_reg; zcore_header_init() 598 if (!prefix) zcore_header_init() 600 hdr->lc_vec[hdr->cpu_cnt] = prefix; zcore_header_init()
|
/linux-4.4.14/fs/f2fs/ |
H A D | xattr.c | 50 prefix_len = strlen(handler->prefix); f2fs_xattr_generic_list() 53 memcpy(list, handler->prefix, prefix_len); f2fs_xattr_generic_list() 184 .prefix = XATTR_USER_PREFIX, 192 .prefix = XATTR_TRUSTED_PREFIX, 200 .prefix = F2FS_SYSTEM_ADVISE_PREFIX, 208 .prefix = XATTR_SECURITY_PREFIX,
|
/linux-4.4.14/drivers/gpu/drm/ttm/ |
H A D | ttm_bo_manager.c | 141 const char *prefix) ttm_bo_man_debug() 146 drm_mm_debug_table(&rman->mm, prefix); ttm_bo_man_debug() 140 ttm_bo_man_debug(struct ttm_mem_type_manager *man, const char *prefix) ttm_bo_man_debug() argument
|
/linux-4.4.14/drivers/gpu/drm/vmwgfx/ |
H A D | vmwgfx_gmrid_manager.c | 160 const char *prefix) vmw_gmrid_man_debug() 163 "id manager.\n", prefix); vmw_gmrid_man_debug() 159 vmw_gmrid_man_debug(struct ttm_mem_type_manager *man, const char *prefix) vmw_gmrid_man_debug() argument
|
/linux-4.4.14/fs/jfs/ |
H A D | jfs_metapage.h | 25 /* Common logsyncblk prefix (see jfs_logmgr.h) */ 31 /* End of logsyncblk prefix */
|
/linux-4.4.14/net/xfrm/ |
H A D | xfrm_hash.h | 61 pdw = prefixlen >> 5; /* num of whole u32 in prefix */ __xfrm6_pref_hash() 62 pbi = prefixlen & 0x1f; /* num of bits in incomplete u32 in prefix */ __xfrm6_pref_hash()
|
/linux-4.4.14/arch/powerpc/kernel/ |
H A D | cpu_setup_ppc970.S | 56 mtspr SPRN_HIOR,0 /* Clear interrupt prefix */ 165 /* Clear interrupt prefix */
|
/linux-4.4.14/arch/s390/include/uapi/asm/ |
H A D | kvm.h | 156 __u64 prefix; /* prefix register */ member in struct:kvm_sync_regs
|
/linux-4.4.14/drivers/gpio/ |
H A D | gpiolib.h | 119 /* With descriptor prefix */ 140 /* With chip prefix */
|
/linux-4.4.14/drivers/mtd/maps/ |
H A D | impa7.c | 27 #define MSG_PREFIX "impA7:" /* prefix for our printk()'s */
|
/linux-4.4.14/drivers/net/wireless/ti/wl1251/ |
H A D | wl1251.h | 75 #define wl1251_dump(level, prefix, buf, len) \ 78 print_hex_dump(KERN_DEBUG, DRIVER_PREFIX prefix, \ 85 #define wl1251_dump_ascii(level, prefix, buf, len) \ 88 print_hex_dump(KERN_DEBUG, DRIVER_PREFIX prefix, \
|
/linux-4.4.14/drivers/net/wireless/brcm80211/brcmfmac/ |
H A D | fwil.c | 299 const s8 *prefix = "bsscfg:"; brcmf_create_bsscfg() local 309 prefixlen = strlen(prefix); brcmf_create_bsscfg() 320 /* copy prefix, no null */ brcmf_create_bsscfg() 321 memcpy(p, prefix, prefixlen); brcmf_create_bsscfg()
|
H A D | firmware.c | 320 char prefix[BRCMF_FW_NVRAM_PCIEDEV_LEN]; brcmf_fw_strip_multi_v2() local 333 snprintf(prefix, sizeof(prefix), "pcie/%d/%d/", domain_nr, bus_nr); brcmf_fw_strip_multi_v2() 334 len = strlen(prefix); brcmf_fw_strip_multi_v2() 338 if (strncmp(&nvp->nvram[i], prefix, len) == 0) { brcmf_fw_strip_multi_v2()
|
/linux-4.4.14/drivers/gpu/drm/exynos/ |
H A D | exynos_hdmi.c | 588 static void hdmi_v13_regs_dump(struct hdmi_context *hdata, char *prefix) hdmi_v13_regs_dump() argument 591 DRM_DEBUG_KMS("%s:" #reg_id " = %08x\n", prefix, \ hdmi_v13_regs_dump() 593 DRM_DEBUG_KMS("%s: ---- CONTROL REGISTERS ----\n", prefix); hdmi_v13_regs_dump() 602 DRM_DEBUG_KMS("%s: ---- CORE REGISTERS ----\n", prefix); hdmi_v13_regs_dump() 615 DRM_DEBUG_KMS("%s: ---- CORE SYNC REGISTERS ----\n", prefix); hdmi_v13_regs_dump() 642 DRM_DEBUG_KMS("%s: ---- TG REGISTERS ----\n", prefix); hdmi_v13_regs_dump() 675 static void hdmi_v14_regs_dump(struct hdmi_context *hdata, char *prefix) hdmi_v14_regs_dump() argument 680 DRM_DEBUG_KMS("%s:" #reg_id " = %08x\n", prefix, \ hdmi_v14_regs_dump() 683 DRM_DEBUG_KMS("%s: ---- CONTROL REGISTERS ----\n", prefix); hdmi_v14_regs_dump() 697 DRM_DEBUG_KMS("%s: ---- CORE REGISTERS ----\n", prefix); hdmi_v14_regs_dump() 710 DRM_DEBUG_KMS("%s: ---- CORE SYNC REGISTERS ----\n", prefix); hdmi_v14_regs_dump() 790 DRM_DEBUG_KMS("%s: ---- TG REGISTERS ----\n", prefix); hdmi_v14_regs_dump() 826 DRM_DEBUG_KMS("%s: ---- PACKET REGISTERS ----\n", prefix); hdmi_v14_regs_dump() 842 static void hdmi_regs_dump(struct hdmi_context *hdata, char *prefix) hdmi_regs_dump() argument 845 hdmi_v13_regs_dump(hdata, prefix); hdmi_regs_dump() 847 hdmi_v14_regs_dump(hdata, prefix); hdmi_regs_dump()
|
/linux-4.4.14/arch/powerpc/platforms/embedded6xx/ |
H A D | storcenter.c | 103 /* Set exception prefix high - to the firmware */ storcenter_restart()
|
/linux-4.4.14/arch/arm64/include/asm/ |
H A D | fpsimd.h | 28 * Note that user_fpsimd forms a prefix of this structure, which is
|
/linux-4.4.14/Documentation/spi/ |
H A D | spidev_test.c | 52 static void hex_dump(const void *src, size_t length, size_t line_size, char *prefix) hex_dump() argument 59 printf("%s | ", prefix); hex_dump() 74 printf("%s | ", prefix); hex_dump()
|
/linux-4.4.14/net/netfilter/ipset/ |
H A D | ip_set_hash_ip.c | 37 /* Type specific function prefix */ 185 hash_ip6_netmask(union nf_inet_addr *ip, u8 prefix) hash_ip6_netmask() argument 187 ip6_netmask(ip, prefix); hash_ip6_netmask()
|
/linux-4.4.14/drivers/media/common/ |
H A D | cx2341x.c | 1184 void cx2341x_log_status(const struct cx2341x_mpeg_params *p, const char *prefix) cx2341x_log_status() argument 1190 prefix, cx2341x_log_status() 1196 prefix, cx2341x_log_status() 1201 prefix, cx2341x_log_status() 1206 prefix, cx2341x_log_status() 1216 prefix, cx2341x_log_status() 1221 prefix, p->video_temporal_decimation); cx2341x_log_status() 1225 prefix, cx2341x_log_status() 1243 prefix, cx2341x_log_status() 1253 prefix, cx2341x_log_status() 1259 prefix, cx2341x_log_status()
|
/linux-4.4.14/drivers/gpu/drm/radeon/ |
H A D | evergreen_cs.c | 191 const char *prefix) evergreen_surface_check_linear() 202 const char *prefix) evergreen_surface_check_linear_aligned() 213 if (prefix) { evergreen_surface_check_linear_aligned() 215 __func__, __LINE__, prefix, surf->nbx, palign); evergreen_surface_check_linear_aligned() 224 const char *prefix) evergreen_surface_check_1d() 236 if (prefix) { evergreen_surface_check_1d() 238 __func__, __LINE__, prefix, surf->nbx, palign, evergreen_surface_check_1d() 244 if (prefix) { evergreen_surface_check_1d() 246 __func__, __LINE__, prefix, surf->nby); evergreen_surface_check_1d() 255 const char *prefix) evergreen_surface_check_2d() 279 if (prefix) { evergreen_surface_check_2d() 281 __func__, __LINE__, prefix, surf->nbx, palign); evergreen_surface_check_2d() 286 if (prefix) { evergreen_surface_check_2d() 288 __func__, __LINE__, prefix, surf->nby, halign); evergreen_surface_check_2d() 298 const char *prefix) evergreen_surface_check() 305 return evergreen_surface_check_linear(p, surf, prefix); evergreen_surface_check() 307 return evergreen_surface_check_linear_aligned(p, surf, prefix); evergreen_surface_check() 309 return evergreen_surface_check_1d(p, surf, prefix); evergreen_surface_check() 311 return evergreen_surface_check_2d(p, surf, prefix); evergreen_surface_check() 314 __func__, __LINE__, prefix, surf->mode); evergreen_surface_check() 322 const char *prefix) evergreen_surface_value_conv_check() 333 __func__, __LINE__, prefix, surf->mode); evergreen_surface_value_conv_check() 344 __func__, __LINE__, prefix, surf->nbanks); evergreen_surface_value_conv_check() 354 __func__, __LINE__, prefix, surf->bankw); evergreen_surface_value_conv_check() 364 __func__, __LINE__, prefix, surf->bankh); evergreen_surface_value_conv_check() 374 __func__, __LINE__, prefix, surf->mtilea); evergreen_surface_value_conv_check() 387 __func__, __LINE__, prefix, surf->tsplit); evergreen_surface_value_conv_check() 189 evergreen_surface_check_linear(struct radeon_cs_parser *p, struct eg_surface *surf, const char *prefix) evergreen_surface_check_linear() argument 200 evergreen_surface_check_linear_aligned(struct radeon_cs_parser *p, struct eg_surface *surf, const char *prefix) evergreen_surface_check_linear_aligned() argument 222 evergreen_surface_check_1d(struct radeon_cs_parser *p, struct eg_surface *surf, const char *prefix) evergreen_surface_check_1d() argument 253 evergreen_surface_check_2d(struct radeon_cs_parser *p, struct eg_surface *surf, const char *prefix) evergreen_surface_check_2d() argument 296 evergreen_surface_check(struct radeon_cs_parser *p, struct eg_surface *surf, const char *prefix) evergreen_surface_check() argument 320 evergreen_surface_value_conv_check(struct radeon_cs_parser *p, struct eg_surface *surf, const char *prefix) evergreen_surface_value_conv_check() argument
|
/linux-4.4.14/drivers/net/ppp/ |
H A D | bsd_comp.c | 120 unsigned short prefix; /* preceding code */ member in struct:bsd_dict::__anon7949::__anon7950 126 unsigned short prefix; /* preceding code */ 206 #define BSD_HASH(prefix,suffix,hshift) ((((unsigned long)(suffix))<<(hshift)) \ 207 ^ (unsigned long)(prefix)) 208 #define BSD_KEY(prefix,suffix) ((((unsigned long)(suffix)) << 16) \ 209 + (unsigned long)(prefix)) 670 continue; /* found (prefix,suffix) */ bsd_compress() 691 ent = dictp->codem1 + 1; /* finally found (prefix,suffix) */ bsd_compress() 695 OUTPUT(ent); /* output the prefix */ bsd_compress() 1026 finchar = dictp->f.hs.prefix; bsd_decompress()
|
/linux-4.4.14/fs/ |
H A D | xattr.c | 679 * prefix with the generic xattr API, a filesystem should create a 680 * null-terminated array of struct xattr_handler (one for each prefix) and 692 * Find the xattr_handler with the matching prefix. 703 const char *n = strcmp_prefix(*name, handler->prefix); for_each_xattr_handler() 713 * Find the handler for the prefix and dispatch its get() operation. 758 * Find the handler for the prefix and dispatch its set() operation. 774 * Find the handler for the prefix and dispatch its set() operation to remove 800 * the attribute name after skipping the handler's prefix: for example, "foo" 801 * is passed to the get operation of a handler with prefix "user." to get 811 size_t prefix_len = strlen(handler->prefix); xattr_full_name()
|
/linux-4.4.14/drivers/nfc/ |
H A D | trf7970a.c | 656 unsigned int len, u8 *prefix, unsigned int prefix_len) trf7970a_transmit() 670 t[0].tx_buf = prefix; trf7970a_transmit() 718 u8 prefix; trf7970a_fill_fifo() local 740 prefix = TRF7970A_CMD_BIT_CONTINUOUS | TRF7970A_FIFO_IO_REGISTER; trf7970a_fill_fifo() 742 ret = trf7970a_transmit(trf, skb, len, &prefix, sizeof(prefix)); trf7970a_fill_fifo() 1460 u8 prefix[5]; trf7970a_send_cmd() local 1526 prefix[0] = TRF7970A_CMD_BIT_CTRL | trf7970a_send_cmd() 1528 prefix[1] = TRF7970A_CMD_BIT_CTRL | trf7970a_send_cmd() 1530 prefix[2] = TRF7970A_CMD_BIT_CONTINUOUS | TRF7970A_TX_LENGTH_BYTE1; trf7970a_send_cmd() 1533 prefix[3] = 0x00; trf7970a_send_cmd() 1534 prefix[4] = 0x0f; /* 7 bits */ trf7970a_send_cmd() 1536 prefix[3] = (len & 0xf00) >> 4; trf7970a_send_cmd() 1537 prefix[3] |= ((len & 0xf0) >> 4); trf7970a_send_cmd() 1538 prefix[4] = ((len & 0x0f) << 4); trf7970a_send_cmd() 1548 ret = trf7970a_transmit(trf, skb, len, prefix, sizeof(prefix)); trf7970a_send_cmd() 655 trf7970a_transmit(struct trf7970a *trf, struct sk_buff *skb, unsigned int len, u8 *prefix, unsigned int prefix_len) trf7970a_transmit() argument
|
/linux-4.4.14/arch/x86/math-emu/ |
H A D | fpu_entry.c | 173 ("FPU emulator: Unknown prefix byte 0x%02x, probably due to\n" math_emulate() 185 FPU_EIP++; /* We have fetched the prefix and first code bytes. */ math_emulate() 544 /* Support for prefix bytes is not yet complete. To properly handle 545 all prefix bytes, further changes are needed in the emulator code 591 /* lock is not a valid prefix for FPU instructions, valid_prefix() 615 /* Not a valid sequence of prefix bytes followed by valid_prefix()
|
/linux-4.4.14/kernel/trace/ |
H A D | trace_output.c | 185 const char *prefix = ""; trace_print_array_seq() local 194 trace_seq_printf(p, "%s0x%x", prefix, trace_print_array_seq() 198 trace_seq_printf(p, "%s0x%x", prefix, trace_print_array_seq() 202 trace_seq_printf(p, "%s0x%x", prefix, trace_print_array_seq() 206 trace_seq_printf(p, "%s0x%llx", prefix, trace_print_array_seq() 214 prefix = ","; trace_print_array_seq()
|