Home
last modified time | relevance | path

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

12345678910>>...14

/linux-6.8/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.8/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.8/tools/testing/selftests/bpf/prog_tests/
Drbtree.c115 #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-6.8/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.8/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.8/arch/parisc/boot/compressed/
DMakefile53 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-6.8/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.8/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.8/arch/powerpc/include/asm/
Datomic.h48 #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 …]
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.8/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.8/arch/s390/boot/
DMakefile108 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-6.8/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.8/arch/x86/boot/compressed/
DMakefile152 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-6.8/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.8/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.8/tools/net/ynl/
Dynl-gen-c.py1310 def write_func_prot(self, qual_ret, name, args=None, doc=None, suffix=''): argument
1322 oneline += f"{name}({', '.join(args)}){suffix}"
1350 self.p(v + ')' + suffix)
1474 suffix = f"_{ri.type_name}"
1477 suffix += f"{direction_to_suffix[direction]}"
1480 suffix += '_req_dump'
1484 suffix += f"{direction_to_suffix[direction]}"
1486 suffix += op_mode_to_wrapper[ri.op_mode]
1488 suffix += '_rsp'
1489 suffix += '_dump' if deref else '_list'
[all …]
/linux-6.8/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.8/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.8/arch/loongarch/include/asm/
Datomic.h45 #define ATOMIC_OP_RETURN(op, I, asm_op, c_op, mb, suffix) \ argument
46 static inline int arch_atomic_##op##_return##suffix(int i, atomic_t *v) \
59 #define ATOMIC_FETCH_OP(op, I, asm_op, mb, suffix) \ argument
60 static inline int arch_atomic_fetch_##op##suffix(int i, atomic_t *v) \
205 #define ATOMIC64_OP_RETURN(op, I, asm_op, c_op, mb, suffix) \ argument
206 static inline long arch_atomic64_##op##_return##suffix(long i, atomic64_t *v) \
218 #define ATOMIC64_FETCH_OP(op, I, asm_op, mb, suffix) \ argument
219 static inline long arch_atomic64_fetch_##op##suffix(long i, atomic64_t *v) \
/linux-6.8/scripts/
DMakefile.package29 cmd_archive = git -C $(srctree) $(git-config-tar$(suffix $@)) archive \
32 suffix-gzip := .gz
33 suffix-bzip2 := .bz2
34 suffix-lzma := .lzma
35 suffix-xz := .xz
90 debian-orig-suffix := \
92 $(suffix-$(KDEB_SOURCE_COMPRESS)),.unsupported-deb-src-compress))
103 debian-orig: private orig-name = $(source)_$(version).orig.tar$(debian-orig-suffix)
105 debian-orig: linux.tar$(debian-orig-suffix) debian
157 … cmd_tar = cd $<; tar cf ../$@ $(compress-tar$(suffix $@)) --owner=root --group=root --sort=name *
DMakefile.modinst53 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))
/linux-6.8/tools/include/linux/
Dcompiler.h12 # 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-6.8/kernel/
Dcrash_core.c194 * That function parses "suffix" crashkernel command lines like
202 const char *suffix) in parse_crashkernel_suffix() argument
212 /* check with suffix */ in parse_crashkernel_suffix()
213 if (strncmp(cur, suffix, strlen(suffix))) { in parse_crashkernel_suffix()
217 cur += strlen(suffix); in parse_crashkernel_suffix()
228 const char *suffix) in get_last_crashkernel() argument
241 if (!suffix) { in get_last_crashkernel()
244 /* skip the one with any known suffix */ in get_last_crashkernel()
253 q = end_p - strlen(suffix); in get_last_crashkernel()
254 if (!strncmp(q, suffix, strlen(suffix))) in get_last_crashkernel()
[all …]

12345678910>>...14