Home
last modified time | relevance | path

Searched full:suffix (Results 1 – 25 of 390) sorted by relevance

12345678910>>...16

/linux-6.14.4/arch/mips/cavium-octeon/executive/
Docteon-model.c65 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-6.14.4/tools/testing/selftests/bpf/
Dwith_tunnels.sh6 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-6.14.4/drivers/md/dm-vdo/
Dmessage-stats.c15 static void write_u64(char *prefix, u64 value, char *suffix, char **buf, in write_u64() argument
21 value, suffix == NULL ? "" : suffix); in write_u64()
26 static void write_u32(char *prefix, u32 value, char *suffix, char **buf, in write_u32() argument
32 value, suffix == NULL ? "" : suffix); in write_u32()
37 static void write_block_count_t(char *prefix, block_count_t value, char *suffix, in write_block_count_t() argument
43 value, suffix == NULL ? "" : suffix); in write_block_count_t()
48 static void write_string(char *prefix, char *value, char *suffix, char **buf, in write_string() argument
54 value, suffix == NULL ? "" : suffix); in write_string()
59 static void write_bool(char *prefix, bool value, char *suffix, char **buf, in write_bool() argument
65 value, suffix == NULL ? "" : suffix); in write_bool()
[all …]
/linux-6.14.4/drivers/hid/
Dhid-retrode.c23 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()
Dhid-uclogic-core.c88 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-6.14.4/tools/rcu/
Dextract-stall.sh29 suffix <= 0 {
35 suffix > 0 {
37 suffix--;
38 if (suffix <= 0)
42 suffix <= 0 && /detected stall/ {
46 suffix = trailing_lines;
/linux-6.14.4/tools/perf/tests/
Dpmu.c418 TEST_ASSERT_VAL("Strips uncore_cha suffix", in test__name_len()
423 TEST_ASSERT_VAL("Strips mrvl_ddr_pmu suffix", in test__name_len()
482 TEST_PMU_MATCH("Diff suffix hex_", "pmuname_2", false); in test__pmu_match()
483 TEST_PMU_MATCH("Sub suffix hex_", "pmuname_ab", true); in test__pmu_match()
484 TEST_PMU_MATCH("Same suffix hex_", "pmuname_ab23", true); in test__pmu_match()
485 TEST_PMU_MATCH("No suffix hex_", "pmuname", true); in test__pmu_match()
490 TEST_PMU_MATCH("Diff suffix", "pmuname2", false); in test__pmu_match()
491 TEST_PMU_MATCH("Sub suffix", "pmuname1", true); in test__pmu_match()
492 TEST_PMU_MATCH("Same suffix", "pmuname10", true); in test__pmu_match()
493 TEST_PMU_MATCH("No suffix", "pmuname", true); in test__pmu_match()
[all …]
/linux-6.14.4/tools/testing/selftests/bpf/prog_tests/
Drbtree.c162 #define BTF_FAIL_TEST(suffix) \ argument
163 void test_rbtree_btf_fail__##suffix(void) \
165 struct rbtree_btf_fail__##suffix *skel; \
167 skel = rbtree_btf_fail__##suffix##__open_and_load(); \
169 "rbtree_btf_fail__" #suffix "__open_and_load unexpected success")) \
170 rbtree_btf_fail__##suffix##__destroy(skel); \
173 #define RUN_BTF_FAIL_TEST(suffix) \ argument
174 if (test__start_subtest("rbtree_btf_fail__" #suffix)) \
175 test_rbtree_btf_fail__##suffix();
/linux-6.14.4/kernel/
Dcrash_reserve.c183 * That function parses "suffix" crashkernel command lines like
191 const char *suffix) in parse_crashkernel_suffix() argument
201 /* check with suffix */ in parse_crashkernel_suffix()
202 if (strncmp(cur, suffix, strlen(suffix))) { in parse_crashkernel_suffix()
206 cur += strlen(suffix); in parse_crashkernel_suffix()
217 const char *suffix) in get_last_crashkernel() argument
230 if (!suffix) { in get_last_crashkernel()
233 /* skip the one with any known suffix */ in get_last_crashkernel()
242 q = end_p - strlen(suffix); in get_last_crashkernel()
243 if (!strncmp(q, suffix, strlen(suffix))) in get_last_crashkernel()
[all …]
/linux-6.14.4/Documentation/ABI/testing/
Dsysfs-bus-event_source-devices9 PMU name without a suffix as is intel_bts,
10 uncore_imc_0 is a PMU name with a 0 numeric suffix,
12 suffix. The hex suffix must be more than two
17 suffix as instances of the same PMU for the sake of,
/linux-6.14.4/arch/parisc/boot/compressed/
DMakefile49 suffix-$(CONFIG_KERNEL_GZIP) := gz
50 suffix-$(CONFIG_KERNEL_BZIP2) := bz2
51 suffix-$(CONFIG_KERNEL_LZ4) := lz4
52 suffix-$(CONFIG_KERNEL_LZMA) := lzma
53 suffix-$(CONFIG_KERNEL_LZO) := lzo
54 suffix-$(CONFIG_KERNEL_XZ) := xz
70 $(obj)/piggy.o: $(obj)/vmlinux.scr $(obj)/vmlinux.bin.$(suffix-y) FORCE
/linux-6.14.4/arch/arm/kernel/
Dentry-ftrace.S36 .macro __mcount suffix argument
46 bne ftrace_graph_caller\suffix
51 bne ftrace_graph_caller\suffix
139 .macro __ftrace_caller suffix argument
151 .globl ftrace_call\suffix
152 ftrace_call\suffix:
156 .globl ftrace_graph_call\suffix
157 ftrace_graph_call\suffix:
/linux-6.14.4/drivers/net/ethernet/mellanox/mlx5/core/
Ddev.c234 const char *suffix; member
238 [MLX5_INTERFACE_PROTOCOL_VNET] = { .suffix = "vnet",
241 [MLX5_INTERFACE_PROTOCOL_IB] = { .suffix = "rdma",
244 [MLX5_INTERFACE_PROTOCOL_ETH] = { .suffix = "eth",
247 [MLX5_INTERFACE_PROTOCOL_ETH_REP] = { .suffix = "eth-rep",
249 [MLX5_INTERFACE_PROTOCOL_IB_REP] = { .suffix = "rdma-rep",
251 [MLX5_INTERFACE_PROTOCOL_MPIB] = { .suffix = "multiport",
253 [MLX5_INTERFACE_PROTOCOL_DPLL] = { .suffix = "dpll",
299 const char *suffix = mlx5_adev_devices[idx].suffix; in add_adev() local
310 adev->name = suffix; in add_adev()
[all …]
/linux-6.14.4/arch/powerpc/include/asm/
Datomic.h49 #define ATOMIC_OP(op, asm_op, suffix, sign, ...) \ argument
56 #asm_op "%I2" suffix " %0,%0,%2\n" \
64 #define ATOMIC_OP_RETURN_RELAXED(op, asm_op, suffix, sign, ...) \ argument
71 #asm_op "%I2" suffix " %0,%0,%2\n" \
81 #define ATOMIC_FETCH_OP_RELAXED(op, asm_op, suffix, sign, ...) \ argument
88 #asm_op "%I3" suffix " %1,%0,%3\n" \
98 #define ATOMIC_OPS(op, asm_op, suffix, sign, ...) \ argument
99 ATOMIC_OP(op, asm_op, suffix, sign, ##__VA_ARGS__) \
100 ATOMIC_OP_RETURN_RELAXED(op, asm_op, suffix, sign, ##__VA_ARGS__)\
101 ATOMIC_FETCH_OP_RELAXED(op, asm_op, suffix, sign, ##__VA_ARGS__)
[all …]
Dinst.h62 #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-6.14.4/tools/iio/
Diio_utils.h53 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-6.14.4/arch/s390/boot/
DMakefile104 suffix-$(CONFIG_KERNEL_GZIP) := .gz
105 suffix-$(CONFIG_KERNEL_BZIP2) := .bz2
106 suffix-$(CONFIG_KERNEL_LZ4) := .lz4
107 suffix-$(CONFIG_KERNEL_LZMA) := .lzma
108 suffix-$(CONFIG_KERNEL_LZO) := .lzo
109 suffix-$(CONFIG_KERNEL_XZ) := .xz
110 suffix-$(CONFIG_KERNEL_ZSTD) := .zst
128 $(obj)/piggy.o: $(obj)/vmlinux.bin$(suffix-y) FORCE
/linux-6.14.4/tools/net/ynl/pyynl/
Dynl_gen_c.py106 def get_limit_str(self, limit, default=None, suffix=''): argument
111 return str(value) + suffix
1338 def write_func_prot(self, qual_ret, name, args=None, doc=None, suffix=''): argument
1350 oneline += f"{name}({', '.join(args)}){suffix}"
1378 self.p(v + ')' + suffix)
1502 suffix = f"_{ri.type_name}"
1505 suffix += f"{direction_to_suffix[direction]}"
1508 suffix += '_req_dump'
1512 suffix += f"{direction_to_suffix[direction]}"
1514 suffix += op_mode_to_wrapper[ri.op_mode]
[all …]
/linux-6.14.4/scripts/atomic/
Dgen-atomic-fallback.sh228 local suffix="$1"; shift;
231 #define raw_${prefix}try_${cmpxchg}${suffix}(_ptr, _oldp, _new) \\
234 ___r = raw_${prefix}${cmpxchg}${suffix}((_ptr), ___o, (_new)); \\
280 local suffix="$1"; shift
282 printf "#define raw_${prefix}${cmpxchg}${suffix} arch_${prefix}${cmpxchg}${suffix}\n\n"
283 printf "#ifdef arch_${prefix}try_${cmpxchg}${suffix}\n"
284 printf "#define raw_${prefix}try_${cmpxchg}${suffix} arch_${prefix}try_${cmpxchg}${suffix}\n"
286 gen_try_cmpxchg_fallback "${prefix}" "${cmpxchg}" "${suffix}"
/linux-6.14.4/arch/x86/boot/compressed/
DMakefile142 suffix-$(CONFIG_KERNEL_GZIP) := gz
143 suffix-$(CONFIG_KERNEL_BZIP2) := bz2
144 suffix-$(CONFIG_KERNEL_LZMA) := lzma
145 suffix-$(CONFIG_KERNEL_XZ) := xz
146 suffix-$(CONFIG_KERNEL_LZO) := lzo
147 suffix-$(CONFIG_KERNEL_LZ4) := lz4
148 suffix-$(CONFIG_KERNEL_ZSTD) := zst
154 $(obj)/piggy.S: $(obj)/vmlinux.bin.$(suffix-y) $(obj)/mkpiggy FORCE
/linux-6.14.4/kernel/irq/
Dtimings.c65 * 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-6.14.4/arch/x86/include/asm/
Drmwcc.h57 #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-6.14.4/include/linux/
Datomic.h15 * - 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-6.14.4/arch/mips/boot/
DMakefile26 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-6.14.4/arch/loongarch/include/asm/
Datomic.h47 #define ATOMIC_OP_RETURN(op, I, asm_op, c_op, mb, suffix) \ argument
48 static inline int arch_atomic_##op##_return##suffix(int i, atomic_t *v) \
61 #define ATOMIC_FETCH_OP(op, I, asm_op, mb, suffix) \ argument
62 static inline int arch_atomic_fetch_##op##suffix(int i, atomic_t *v) \
207 #define ATOMIC64_OP_RETURN(op, I, asm_op, c_op, mb, suffix) \ argument
208 static inline long arch_atomic64_##op##_return##suffix(long i, atomic64_t *v) \
220 #define ATOMIC64_FETCH_OP(op, I, asm_op, mb, suffix) \ argument
221 static inline long arch_atomic64_fetch_##op##suffix(long i, atomic64_t *v) \

12345678910>>...16