| /Linux-v6.6/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-v6.6/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-v6.6/tools/testing/selftests/bpf/prog_tests/ |
| D | rbtree.c | 115 #define BTF_FAIL_TEST(suffix) \ argument 116 void test_rbtree_btf_fail__##suffix(void) \ 118 struct rbtree_btf_fail__##suffix *skel; \ 120 skel = rbtree_btf_fail__##suffix##__open_and_load(); \ 122 "rbtree_btf_fail__" #suffix "__open_and_load unexpected success")) \ 123 rbtree_btf_fail__##suffix##__destroy(skel); \ 126 #define RUN_BTF_FAIL_TEST(suffix) \ argument 127 if (test__start_subtest("rbtree_btf_fail__" #suffix)) \ 128 test_rbtree_btf_fail__##suffix();
|
| /Linux-v6.6/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 | 88 const char *suffix = NULL; in uclogic_input_configured() local 110 /* Assign custom suffix, if any */ in uclogic_input_configured() 111 suffix = frame->suffix; in uclogic_input_configured() 121 if (!suffix) { in uclogic_input_configured() 126 suffix = "Keyboard"; in uclogic_input_configured() 129 suffix = "Mouse"; in uclogic_input_configured() 132 suffix = "Pad"; in uclogic_input_configured() 136 suffix = "Pen"; in uclogic_input_configured() 139 suffix = "Consumer Control"; in uclogic_input_configured() 142 suffix = "System Control"; in uclogic_input_configured() [all …]
|
| /Linux-v6.6/tools/rcu/ |
| D | extract-stall.sh | 29 suffix <= 0 { 35 suffix > 0 { 37 suffix--; 38 if (suffix <= 0) 42 suffix <= 0 && /detected stall/ { 46 suffix = trailing_lines;
|
| /Linux-v6.6/arch/parisc/boot/compressed/ |
| D | Makefile | 53 suffix-$(CONFIG_KERNEL_GZIP) := gz 54 suffix-$(CONFIG_KERNEL_BZIP2) := bz2 55 suffix-$(CONFIG_KERNEL_LZ4) := lz4 56 suffix-$(CONFIG_KERNEL_LZMA) := lzma 57 suffix-$(CONFIG_KERNEL_LZO) := lzo 58 suffix-$(CONFIG_KERNEL_XZ) := xz 74 $(obj)/piggy.o: $(obj)/vmlinux.scr $(obj)/vmlinux.bin.$(suffix-y) FORCE
|
| /Linux-v6.6/arch/arm/kernel/ |
| D | entry-ftrace.S | 36 .macro __mcount suffix 46 bne ftrace_graph_caller\suffix 51 bne ftrace_graph_caller\suffix 139 .macro __ftrace_caller suffix 151 .globl ftrace_call\suffix 152 ftrace_call\suffix: 156 .globl ftrace_graph_call\suffix 157 ftrace_graph_call\suffix:
|
| /Linux-v6.6/arch/powerpc/include/asm/ |
| D | atomic.h | 48 #define ATOMIC_OP(op, asm_op, suffix, sign, ...) \ argument 55 #asm_op "%I2" suffix " %0,%0,%2\n" \ 63 #define ATOMIC_OP_RETURN_RELAXED(op, asm_op, suffix, sign, ...) \ argument 70 #asm_op "%I2" suffix " %0,%0,%2\n" \ 80 #define ATOMIC_FETCH_OP_RELAXED(op, asm_op, suffix, sign, ...) \ argument 87 #asm_op "%I3" suffix " %1,%0,%3\n" \ 97 #define ATOMIC_OPS(op, asm_op, suffix, sign, ...) \ argument 98 ATOMIC_OP(op, asm_op, suffix, sign, ##__VA_ARGS__) \ 99 ATOMIC_OP_RETURN_RELAXED(op, asm_op, suffix, sign, ##__VA_ARGS__)\ 100 ATOMIC_FETCH_OP_RELAXED(op, asm_op, suffix, sign, ##__VA_ARGS__) [all …]
|
| D | inst.h | 62 #define ppc_inst_prefix(x, y) ((ppc_inst_t){ .val = (x), .suffix = (y) }) 66 return x.suffix; in ppc_inst_suffix() 144 unsigned int val, suffix; in __copy_inst_from_kernel_nofault() local 148 val = suffix = 0; in __copy_inst_from_kernel_nofault() 152 __get_kernel_nofault(&suffix, src + 1, u32, Efault); in __copy_inst_from_kernel_nofault() 153 *inst = ppc_inst_prefix(val, suffix); in __copy_inst_from_kernel_nofault()
|
| /Linux-v6.6/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-v6.6/arch/s390/boot/ |
| D | Makefile | 108 suffix-$(CONFIG_KERNEL_GZIP) := .gz 109 suffix-$(CONFIG_KERNEL_BZIP2) := .bz2 110 suffix-$(CONFIG_KERNEL_LZ4) := .lz4 111 suffix-$(CONFIG_KERNEL_LZMA) := .lzma 112 suffix-$(CONFIG_KERNEL_LZO) := .lzo 113 suffix-$(CONFIG_KERNEL_XZ) := .xz 114 suffix-$(CONFIG_KERNEL_ZSTD) := .zst 132 $(obj)/piggy.o: $(obj)/vmlinux.bin$(suffix-y) FORCE
|
| /Linux-v6.6/arch/x86/boot/compressed/ |
| D | Makefile | 152 suffix-$(CONFIG_KERNEL_GZIP) := gz 153 suffix-$(CONFIG_KERNEL_BZIP2) := bz2 154 suffix-$(CONFIG_KERNEL_LZMA) := lzma 155 suffix-$(CONFIG_KERNEL_XZ) := xz 156 suffix-$(CONFIG_KERNEL_LZO) := lzo 157 suffix-$(CONFIG_KERNEL_LZ4) := lz4 158 suffix-$(CONFIG_KERNEL_ZSTD) := zst 164 $(obj)/piggy.S: $(obj)/vmlinux.bin.$(suffix-y) $(obj)/mkpiggy FORCE
|
| /Linux-v6.6/drivers/net/ethernet/mellanox/mlx5/core/ |
| D | dev.c | 221 const char *suffix; member 225 [MLX5_INTERFACE_PROTOCOL_VNET] = { .suffix = "vnet", 228 [MLX5_INTERFACE_PROTOCOL_IB] = { .suffix = "rdma", 231 [MLX5_INTERFACE_PROTOCOL_ETH] = { .suffix = "eth", 234 [MLX5_INTERFACE_PROTOCOL_ETH_REP] = { .suffix = "eth-rep", 236 [MLX5_INTERFACE_PROTOCOL_IB_REP] = { .suffix = "rdma-rep", 238 [MLX5_INTERFACE_PROTOCOL_MPIB] = { .suffix = "multiport", 284 const char *suffix = mlx5_adev_devices[idx].suffix; in add_adev() local 295 adev->name = suffix; in add_adev() 381 i, mlx5_adev_devices[i].suffix); in mlx5_attach_device() [all …]
|
| /Linux-v6.6/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-v6.6/arch/x86/include/asm/ |
| D | rmwcc.h | 57 #define GEN_UNARY_SUFFIXED_RMWcc(op, suffix, var, cc, clobbers...) \ argument 58 __GEN_RMWcc(op " %[var]\n\t" suffix, var, cc, \ 61 #define GEN_BINARY_SUFFIXED_RMWcc(op, suffix, var, cc, vcon, _val, clobbers...)\ argument 62 __GEN_RMWcc(op " %[val], %[var]\n\t" suffix, var, cc, \
|
| /Linux-v6.6/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-v6.6/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-v6.6/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-v6.6/kernel/ |
| D | crash_core.c | 177 * That function parses "suffix" crashkernel command lines like 185 const char *suffix) in parse_crashkernel_suffix() argument 195 /* check with suffix */ in parse_crashkernel_suffix() 196 if (strncmp(cur, suffix, strlen(suffix))) { in parse_crashkernel_suffix() 200 cur += strlen(suffix); in parse_crashkernel_suffix() 211 const char *suffix) in get_last_crashkernel() argument 224 if (!suffix) { in get_last_crashkernel() 227 /* skip the one with any known suffix */ in get_last_crashkernel() 236 q = end_p - strlen(suffix); in get_last_crashkernel() 237 if (!strncmp(q, suffix, strlen(suffix))) in get_last_crashkernel() [all …]
|
| /Linux-v6.6/tools/net/ynl/ |
| D | ynl-gen-c.py | 1133 def write_func_prot(self, qual_ret, name, args=None, doc=None, suffix=''): argument 1145 oneline += f"{name}({', '.join(args)}){suffix}" 1173 self.p(v + ')' + suffix) 1284 suffix = f"_{ri.type_name}" 1287 suffix += f"{direction_to_suffix[direction]}" 1290 suffix += '_req_dump' 1294 suffix += f"{direction_to_suffix[direction]}" 1296 suffix += op_mode_to_wrapper[ri.op_mode] 1298 suffix += '_rsp' 1299 suffix += '_dump' if deref else '_list' [all …]
|
| /Linux-v6.6/scripts/ |
| D | Makefile.modinst | 53 suffix-y := 54 suffix-$(CONFIG_MODULE_COMPRESS_GZIP) := .gz 55 suffix-$(CONFIG_MODULE_COMPRESS_XZ) := .xz 56 suffix-$(CONFIG_MODULE_COMPRESS_ZSTD) := .zst 58 modules := $(patsubst $(extmod_prefix)%.o, $(dst)/%.ko$(suffix-y), $(modules))
|
| D | Makefile.package | 50 cmd_archive = git -C $(srctree) $(git-config-tar$(suffix $@)) archive \ 53 suffix-gzip := .gz 54 suffix-bzip2 := .bz2 55 suffix-lzma := .lzma 56 suffix-xz := .xz 113 debian-orig-suffix := \ 115 $(suffix-$(KDEB_SOURCE_COMPRESS)),.unsupported-deb-src-compress)) 126 debian-orig: private orig-name = $(source)_$(version).orig.tar$(debian-orig-suffix) 128 debian-orig: linux.tar$(debian-orig-suffix) debian 183 … cmd_tar = cd $<; tar cf ../$@ $(compress-tar$(suffix $@)) --owner=root --group=root --sort=name *
|
| /Linux-v6.6/fs/afs/ |
| D | super.c | 229 const char *cellname, *suffix, *name = param->string; in afs_parse_source() local 271 /* the volume type is further affected by a possible suffix */ in afs_parse_source() 272 suffix = strrchr(ctx->volname, '.'); in afs_parse_source() 273 if (suffix) { in afs_parse_source() 274 if (strcmp(suffix, ".readonly") == 0) { in afs_parse_source() 277 } else if (strcmp(suffix, ".backup") == 0) { in afs_parse_source() 280 } else if (suffix[1] == 0) { in afs_parse_source() 282 suffix = NULL; in afs_parse_source() 286 ctx->volnamesz = suffix ? in afs_parse_source() 287 suffix - ctx->volname : strlen(ctx->volname); in afs_parse_source() [all …]
|
| /Linux-v6.6/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()
|