/Linux-v5.15/arch/mips/cavium-octeon/executive/ |
D | octeon-model.c | 65 const char *suffix; in octeon_model_get_string_buffer() local 93 /* Make a guess at the suffix */ in octeon_model_get_string_buffer() 100 suffix = "CP"; in octeon_model_get_string_buffer() 102 suffix = "SCP"; in octeon_model_get_string_buffer() 104 suffix = "EXP"; in octeon_model_get_string_buffer() 106 suffix = "NSP"; in octeon_model_get_string_buffer() 269 if ((num_cores == 4) && l2d_fus3 && !strncmp(suffix, "CP", 2)) in octeon_model_get_string_buffer() 297 suffix = "SP"; in octeon_model_get_string_buffer() 299 suffix = "SSP"; in octeon_model_get_string_buffer() 302 suffix = "CP"; in octeon_model_get_string_buffer() [all …]
|
/Linux-v5.15/tools/testing/selftests/bpf/ |
D | with_tunnels.sh | 6 readonly SUFFIX="test_$(mktemp -u XXXX)" 10 ip link add "ipip_${SUFFIX}" type ipip ${CONFIG} 11 ip link add "gre_${SUFFIX}" type gre ${CONFIG} 12 ip link add "sit_${SUFFIX}" type sit ${CONFIG} 17 ip link set "ipip_${SUFFIX}" up 18 ip link set "gre_${SUFFIX}" up 19 ip link set "sit_${SUFFIX}" up 24 ip tunnel del "ipip_${SUFFIX}" 25 ip tunnel del "gre_${SUFFIX}" 26 ip tunnel del "sit_${SUFFIX}"
|
/Linux-v5.15/drivers/hid/ |
D | hid-retrode.c | 23 const char *suffix; in retrode_input_configured() local 29 suffix = "SNES Mouse"; in retrode_input_configured() 33 suffix = "SNES / N64"; in retrode_input_configured() 38 suffix = "Mega Drive"; in retrode_input_configured() 43 suffix = "Unknown"; in retrode_input_configured() 49 suffix, number); in retrode_input_configured() 52 "%s %s", CONTROLLER_NAME_BASE, suffix); in retrode_input_configured()
|
D | hid-uclogic-core.c | 108 const char *suffix = NULL; in uclogic_input_configured() local 129 suffix = "Keyboard"; in uclogic_input_configured() 132 suffix = "Mouse"; in uclogic_input_configured() 135 suffix = "Pad"; in uclogic_input_configured() 138 suffix = "Pen"; in uclogic_input_configured() 141 suffix = "Consumer Control"; in uclogic_input_configured() 144 suffix = "System Control"; in uclogic_input_configured() 148 if (suffix) { in uclogic_input_configured() 149 len = strlen(hdev->name) + 2 + strlen(suffix); in uclogic_input_configured() 152 snprintf(name, len, "%s %s", hdev->name, suffix); in uclogic_input_configured()
|
/Linux-v5.15/kernel/ |
D | crash_core.c | 157 * That function parses "suffix" crashkernel command lines like 165 const char *suffix) in parse_crashkernel_suffix() argument 175 /* check with suffix */ in parse_crashkernel_suffix() 176 if (strncmp(cur, suffix, strlen(suffix))) { in parse_crashkernel_suffix() 180 cur += strlen(suffix); in parse_crashkernel_suffix() 191 const char *suffix) in get_last_crashkernel() argument 204 if (!suffix) { in get_last_crashkernel() 207 /* skip the one with any known suffix */ in get_last_crashkernel() 216 q = end_p - strlen(suffix); in get_last_crashkernel() 217 if (!strncmp(q, suffix, strlen(suffix))) in get_last_crashkernel() [all …]
|
/Linux-v5.15/arch/sh/boot/ |
D | Makefile | 22 suffix-y := bin 23 suffix-$(CONFIG_KERNEL_GZIP) := gz 24 suffix-$(CONFIG_KERNEL_BZIP2) := bz2 25 suffix-$(CONFIG_KERNEL_LZMA) := lzma 26 suffix-$(CONFIG_KERNEL_XZ) := xz 27 suffix-$(CONFIG_KERNEL_LZO) := lzo 109 $(obj)/uImage: $(obj)/uImage.$(suffix-y) 115 KERNEL_MEMORY suffix-y
|
/Linux-v5.15/arch/s390/boot/compressed/ |
D | Makefile | 63 suffix-$(CONFIG_KERNEL_GZIP) := .gz 64 suffix-$(CONFIG_KERNEL_BZIP2) := .bz2 65 suffix-$(CONFIG_KERNEL_LZ4) := .lz4 66 suffix-$(CONFIG_KERNEL_LZMA) := .lzma 67 suffix-$(CONFIG_KERNEL_LZO) := .lzo 68 suffix-$(CONFIG_KERNEL_XZ) := .xz 69 suffix-$(CONFIG_KERNEL_ZSTD) := .zst 87 $(obj)/piggy.o: $(obj)/vmlinux.bin$(suffix-y) FORCE
|
/Linux-v5.15/arch/h8300/boot/compressed/ |
D | Makefile | 31 suffix-$(CONFIG_KERNEL_GZIP) := gzip 32 suffix-$(CONFIG_KERNEL_LZO) := lzo 34 $(obj)/vmlinux.bin.$(suffix-y): $(obj)/vmlinux.bin FORCE 35 $(call if_changed,$(suffix-y)) 40 $(obj)/piggy.o: $(obj)/vmlinux.scr $(obj)/vmlinux.bin.$(suffix-y) FORCE
|
/Linux-v5.15/arch/parisc/boot/compressed/ |
D | Makefile | 66 suffix-$(CONFIG_KERNEL_GZIP) := gz 67 suffix-$(CONFIG_KERNEL_BZIP2) := bz2 68 suffix-$(CONFIG_KERNEL_LZ4) := lz4 69 suffix-$(CONFIG_KERNEL_LZMA) := lzma 70 suffix-$(CONFIG_KERNEL_LZO) := lzo 71 suffix-$(CONFIG_KERNEL_XZ) := xz 87 $(obj)/piggy.o: $(obj)/vmlinux.scr $(obj)/vmlinux.bin.$(suffix-y) FORCE
|
/Linux-v5.15/tools/lib/traceevent/ |
D | event-plugin.c | 425 * @suffix: The suffix string ot append after the option name 429 * returned by tep_load_plugins(). Use @prefix and @suffix for formating: 430 * @prefix = " ", @suffix = "\n". 433 const char *prefix, const char *suffix, in tep_print_plugins() argument 437 trace_seq_printf(s, "%s%s%s", prefix, list->name, suffix); in tep_print_plugins() 509 load_plugins_dir(struct tep_handle *tep, const char *suffix, in load_plugins_dir() argument 540 /* Only load plugins that end in suffix */ in load_plugins_dir() 541 if (strcmp(name + (strlen(name) - strlen(suffix)), suffix) != 0) in load_plugins_dir() 553 * @suffix: filter only plugin files with given suffix 566 void tep_load_plugins_hook(struct tep_handle *tep, const char *suffix, in tep_load_plugins_hook() argument [all …]
|
/Linux-v5.15/arch/powerpc/mm/ |
D | maccess.c | 17 unsigned int val, suffix; in copy_inst_from_kernel_nofault() local 24 err = copy_from_kernel_nofault(&suffix, src + 1, sizeof(suffix)); in copy_inst_from_kernel_nofault() 25 *inst = ppc_inst_prefix(val, suffix); in copy_inst_from_kernel_nofault()
|
/Linux-v5.15/arch/arm/kernel/ |
D | entry-ftrace.S | 39 .macro __mcount suffix 51 bne ftrace_graph_caller\suffix 57 bne ftrace_graph_caller\suffix 145 .macro __ftrace_caller suffix 158 .globl ftrace_call\suffix 159 ftrace_call\suffix: 163 .globl ftrace_graph_call\suffix 164 ftrace_graph_call\suffix:
|
/Linux-v5.15/tools/iio/ |
D | iio_utils.h | 53 static inline int iioutils_check_suffix(const char *str, const char *suffix) in iioutils_check_suffix() argument 55 return strlen(str) >= strlen(suffix) && in iioutils_check_suffix() 56 strncmp(str+strlen(str)-strlen(suffix), in iioutils_check_suffix() 57 suffix, strlen(suffix)) == 0; in iioutils_check_suffix()
|
/Linux-v5.15/arch/x86/boot/compressed/ |
D | Makefile | 138 suffix-$(CONFIG_KERNEL_GZIP) := gz 139 suffix-$(CONFIG_KERNEL_BZIP2) := bz2 140 suffix-$(CONFIG_KERNEL_LZMA) := lzma 141 suffix-$(CONFIG_KERNEL_XZ) := xz 142 suffix-$(CONFIG_KERNEL_LZO) := lzo 143 suffix-$(CONFIG_KERNEL_LZ4) := lz4 144 suffix-$(CONFIG_KERNEL_ZSTD) := zst 150 $(obj)/piggy.S: $(obj)/vmlinux.bin.$(suffix-y) $(obj)/mkpiggy FORCE
|
/Linux-v5.15/drivers/net/ethernet/mellanox/mlx5/core/ |
D | dev.c | 235 const char *suffix; member 239 [MLX5_INTERFACE_PROTOCOL_VNET] = { .suffix = "vnet", 242 [MLX5_INTERFACE_PROTOCOL_IB] = { .suffix = "rdma", 245 [MLX5_INTERFACE_PROTOCOL_ETH] = { .suffix = "eth", 248 [MLX5_INTERFACE_PROTOCOL_ETH_REP] = { .suffix = "eth-rep", 250 [MLX5_INTERFACE_PROTOCOL_IB_REP] = { .suffix = "rdma-rep", 252 [MLX5_INTERFACE_PROTOCOL_MPIB] = { .suffix = "multiport", 298 const char *suffix = mlx5_adev_devices[idx].suffix; in add_adev() local 309 adev->name = suffix; in add_adev() 386 i, mlx5_adev_devices[i].suffix); in mlx5_attach_device() [all …]
|
/Linux-v5.15/scripts/ |
D | Makefile.modinst | 21 suffix-y := 22 suffix-$(CONFIG_MODULE_COMPRESS_GZIP) := .gz 23 suffix-$(CONFIG_MODULE_COMPRESS_XZ) := .xz 24 suffix-$(CONFIG_MODULE_COMPRESS_ZSTD) := .zst 26 modules := $(patsubst $(extmod_prefix)%, $(dst)/%$(suffix-y), $(modules))
|
/Linux-v5.15/kernel/irq/ |
D | timings.c | 65 * suffix array, log interval and exponential moving average 67 * 1. Suffix array 69 * Suffix array is an array of all the suffixes of a string. It is 74 * Usually, the suffix array is sorted but for our purpose it is 79 * The suffix array will build a suite of intervals of different 132 * Compute the suffix array of the indexes 134 * For each suffix: 135 * If the suffix is reverse-found 3 times 136 * Return suffix 140 * However we can not have endless suffix array to be build, it won't [all …]
|
/Linux-v5.15/tools/include/linux/ |
D | compiler.h | 12 # define __compiletime_assert(condition, msg, prefix, suffix) \ argument 14 extern void prefix ## suffix(void) __compiletime_error(msg); \ 16 prefix ## suffix(); \ 19 # define __compiletime_assert(condition, msg, prefix, suffix) do { } while (0) argument 22 #define _compiletime_assert(condition, msg, prefix, suffix) \ argument 23 __compiletime_assert(condition, msg, prefix, suffix)
|
/Linux-v5.15/include/linux/ |
D | atomic.h | 15 * - Fully ordered: The default implementation, no suffix required. 16 * - Acquire: Provides ACQUIRE semantics, _acquire suffix. 17 * - Release: Provides RELEASE semantics, _release suffix. 18 * - Relaxed: No ordering guarantees, _relaxed suffix.
|
/Linux-v5.15/arch/mips/boot/ |
D | Makefile | 26 suffix-y := bin 27 suffix-$(CONFIG_KERNEL_BZIP2) := bz2 28 suffix-$(CONFIG_KERNEL_GZIP) := gz 29 suffix-$(CONFIG_KERNEL_LZMA) := lzma 30 suffix-$(CONFIG_KERNEL_LZO) := lzo 100 $(obj)/uImage: $(obj)/uImage.$(suffix-y)
|
/Linux-v5.15/arch/x86/include/asm/ |
D | rmwcc.h | 62 #define GEN_UNARY_SUFFIXED_RMWcc(op, suffix, var, cc, clobbers...) \ argument 63 __GEN_RMWcc(op " %[var]\n\t" suffix, var, cc, \ 66 #define GEN_BINARY_SUFFIXED_RMWcc(op, suffix, var, cc, vcon, _val, clobbers...)\ argument 67 __GEN_RMWcc(op " %[val], %[var]\n\t" suffix, var, cc, \
|
/Linux-v5.15/fs/afs/ |
D | super.c | 228 const char *cellname, *suffix, *name = param->string; in afs_parse_source() local 270 /* the volume type is further affected by a possible suffix */ in afs_parse_source() 271 suffix = strrchr(ctx->volname, '.'); in afs_parse_source() 272 if (suffix) { in afs_parse_source() 273 if (strcmp(suffix, ".readonly") == 0) { in afs_parse_source() 276 } else if (strcmp(suffix, ".backup") == 0) { in afs_parse_source() 279 } else if (suffix[1] == 0) { in afs_parse_source() 281 suffix = NULL; in afs_parse_source() 285 ctx->volnamesz = suffix ? in afs_parse_source() 286 suffix - ctx->volname : strlen(ctx->volname); in afs_parse_source() [all …]
|
/Linux-v5.15/arch/alpha/kernel/ |
D | pci-sysfs.c | 157 char *suffix, struct bin_attribute *res_attr, in pci_create_one_attr() argument 162 sprintf(name, "resource%d%s", num, suffix); in pci_create_one_attr() 179 char *suffix, *attr_name; in pci_create_attr() local 181 suffix = ""; /* Assume bwx machine, normal resourceN files. */ in pci_create_attr() 189 suffix = "_dense"; in pci_create_attr() 198 suffix = "_sparse"; in pci_create_attr() 213 retval = pci_create_one_attr(pdev, num, attr_name, suffix, attr, in pci_create_attr()
|
/Linux-v5.15/drivers/net/phy/ |
D | phy_led_triggers.c | 61 size_t size, const char *suffix) in phy_led_trigger_format_name() argument 64 phy->mdio.bus->id, phy->mdio.addr, suffix); in phy_led_trigger_format_name() 70 const char *suffix) in phy_led_trigger_register() argument 73 phy_led_trigger_format_name(phy, plt->name, sizeof(plt->name), suffix); in phy_led_trigger_register()
|
/Linux-v5.15/Documentation/filesystems/ |
D | adfs.rst | 43 ftsuffix=n When ftsuffix=0, no file type suffix will be applied. 44 When ftsuffix=1, a hexadecimal suffix corresponding to 95 RISC OS file type suffix 102 for use with NFS) such that a hexadecimal suffix of the form ,xyz
|