Home
last modified time | relevance | path

Searched full:alias (Results 1 – 25 of 658) sorted by relevance

12345678910>>...27

/Linux-v6.1/scripts/mod/
Dfile2alias.c1 /* Simple code to turn various tables in an ELF file into alias definitions.
59 int (*do_entry)(const char *filename, void *symval, char *alias);
62 /* Size of alias provided to do_entry functions */
173 char alias[500]; in do_usb_entry() local
186 strcpy(alias, "usb:"); in do_usb_entry()
187 ADD(alias, "v", match_flags&USB_DEVICE_ID_MATCH_VENDOR, in do_usb_entry()
189 ADD(alias, "p", match_flags&USB_DEVICE_ID_MATCH_PRODUCT, in do_usb_entry()
192 strcat(alias, "d"); in do_usb_entry()
194 sprintf(alias + strlen(alias), "%0*X", in do_usb_entry()
197 sprintf(alias + strlen(alias), "%X", range_lo); in do_usb_entry()
[all …]
/Linux-v6.1/drivers/clk/samsung/
Dclk-s3c64xx.c311 ALIAS(FOUT_APLL, NULL, "fout_apll"),
312 ALIAS(FOUT_MPLL, NULL, "fout_mpll"),
313 ALIAS(FOUT_EPLL, NULL, "fout_epll"),
314 ALIAS(MOUT_EPLL, NULL, "mout_epll"),
315 ALIAS(DOUT_MPLL, NULL, "dout_mpll"),
316 ALIAS(HCLKX2, NULL, "hclk2"),
317 ALIAS(HCLK, NULL, "hclk"),
318 ALIAS(PCLK, NULL, "pclk"),
319 ALIAS(PCLK, NULL, "clk_uart_baud2"),
320 ALIAS(ARMCLK, NULL, "armclk"),
[all …]
Dclk-s3c2443.c146 ALIAS(MSYSCLK, NULL, "msysclk"),
147 ALIAS(ARMCLK, NULL, "armclk"),
148 ALIAS(MPLL, NULL, "mpll"),
149 ALIAS(EPLL, NULL, "epll"),
150 ALIAS(HCLK, NULL, "hclk"),
151 ALIAS(HCLK_SSMC, NULL, "nand"),
152 ALIAS(PCLK_UART0, "s3c2440-uart.0", "uart"),
153 ALIAS(PCLK_UART1, "s3c2440-uart.1", "uart"),
154 ALIAS(PCLK_UART2, "s3c2440-uart.2", "uart"),
155 ALIAS(PCLK_UART3, "s3c2440-uart.3", "uart"),
[all …]
Dclk-s3c2410.c97 ALIAS(PCLK_I2C, "s3c2410-i2c.0", "i2c"),
98 ALIAS(PCLK_ADC, NULL, "adc"),
99 ALIAS(PCLK_RTC, NULL, "rtc"),
100 ALIAS(PCLK_PWM, NULL, "timers"),
101 ALIAS(HCLK_LCD, NULL, "lcd"),
102 ALIAS(HCLK_USBD, NULL, "usb-device"),
103 ALIAS(HCLK_USBH, NULL, "usb-host"),
104 ALIAS(UCLK, NULL, "usb-bus-host"),
105 ALIAS(UCLK, NULL, "usb-bus-gadget"),
106 ALIAS(ARMCLK, NULL, "armclk"),
[all …]
Dclk-s3c2412.c137 ALIAS(PCLK_UART0, "s3c2412-uart.0", "uart"),
138 ALIAS(PCLK_UART1, "s3c2412-uart.1", "uart"),
139 ALIAS(PCLK_UART2, "s3c2412-uart.2", "uart"),
140 ALIAS(PCLK_UART0, "s3c2412-uart.0", "clk_uart_baud2"),
141 ALIAS(PCLK_UART1, "s3c2412-uart.1", "clk_uart_baud2"),
142 ALIAS(PCLK_UART2, "s3c2412-uart.2", "clk_uart_baud2"),
143 ALIAS(SCLK_UART, NULL, "clk_uart_baud3"),
144 ALIAS(PCLK_I2C, "s3c2410-i2c.0", "i2c"),
145 ALIAS(PCLK_ADC, NULL, "adc"),
146 ALIAS(PCLK_RTC, NULL, "rtc"),
[all …]
/Linux-v6.1/tools/perf/util/include/linux/
Dlinkage.h59 #define SYM_ALIAS(alias, name, sym_type, linkage) \ argument
60 linkage(alias) ASM_NL \
61 .set alias, name ASM_NL \
62 .type alias sym_type ASM_NL \
63 .set .L__sym_size_##alias, .L__sym_size_##name ASM_NL \
64 .size alias, .L__sym_size_##alias
95 * SYM_FUNC_ALIAS -- define a global alias for an existing function
98 #define SYM_FUNC_ALIAS(alias, name) \ argument
99 SYM_ALIAS(alias, name, SYM_T_FUNC, SYM_L_GLOBAL)
103 * SYM_FUNC_ALIAS_LOCAL -- define a local alias for an existing function
[all …]
/Linux-v6.1/tools/perf/util/
Dpmu.c147 static int perf_pmu__parse_scale(struct perf_pmu_alias *alias, char *dir, char *name) in perf_pmu__parse_scale() argument
173 ret = perf_pmu__convert_scale(scale, NULL, &alias->scale); in perf_pmu__parse_scale()
179 static int perf_pmu__parse_unit(struct perf_pmu_alias *alias, char *dir, char *name) in perf_pmu__parse_unit() argument
191 sret = read(fd, alias->unit, UNIT_MAX_LEN); in perf_pmu__parse_unit()
197 if (alias->unit[sret - 1] == '\n') in perf_pmu__parse_unit()
198 alias->unit[sret - 1] = '\0'; in perf_pmu__parse_unit()
200 alias->unit[sret] = '\0'; in perf_pmu__parse_unit()
205 alias->unit[0] = '\0'; in perf_pmu__parse_unit()
210 perf_pmu__parse_per_pkg(struct perf_pmu_alias *alias, char *dir, char *name) in perf_pmu__parse_per_pkg() argument
223 alias->per_pkg = true; in perf_pmu__parse_per_pkg()
[all …]
Dprint-events.c43 .alias = "",
47 .alias = "",
51 .alias = "",
383 (syms->alias && strglobmatch(syms->alias, event_glob)))) in print_tool_event()
391 if (syms->alias && strlen(syms->alias)) in print_tool_event()
392 snprintf(name, MAX_NAME_LEN, "%s OR %s", syms->symbol, syms->alias); in print_tool_event()
435 (syms->alias && strglobmatch(syms->alias, event_glob)))) in print_symbol_events()
446 if (!name_only && strlen(syms->alias)) in print_symbol_events()
447 snprintf(name, MAX_NAME_LEN, "%s OR %s", syms->symbol, syms->alias); in print_symbol_events()
/Linux-v6.1/Documentation/networking/
Dalias.rst12 An alias is formed by adding a colon and a string when running ifconfig.
16 Alias creation
19 Alias creation is done by 'magic' interface naming: eg. to create a
20 200.1.1.1 alias for eth0 ...
24 ~~ -> request alias #0 creation (if not yet exists) for eth0
30 Alias deletion
33 The alias is removed by shutting the alias down::
36 ~~~~~~~~~~ -> will delete alias
39 Alias (re-)configuring
/Linux-v6.1/include/linux/
Dlinkage.h33 #define SYSCALL_ALIAS(alias, name) asm( \ argument
34 ".globl " __stringify(alias) "\n\t" \
35 ".set " __stringify(alias) "," \
174 #define SYM_ALIAS(alias, name, linkage) \ argument
175 linkage(alias) ASM_NL \
176 .set alias, name ASM_NL
194 * ALIAS -- does not generate debug info -- the aliased function will
257 * SYM_FUNC_ALIAS -- define a global alias for an existing function
260 #define SYM_FUNC_ALIAS(alias, name) \ argument
261 SYM_ALIAS(alias, name, SYM_L_GLOBAL)
[all …]
/Linux-v6.1/tools/perf/arch/x86/util/
Dpmu.c18 #define TEMPLATE_ALIAS "%s/bus/event_source/devices/%s/alias"
22 char *alias; member
46 zfree(&pmu_alias->alias); in pmu_alias__delete()
50 static struct pmu_alias *pmu_alias__new(char *name, char *alias) in pmu_alias__new() argument
59 pmu_alias->alias = strdup(alias); in pmu_alias__new()
60 if (!pmu_alias->alias) in pmu_alias__new()
135 if (!strcmp(name, pmu_alias->alias)) in __pmu_find_real_name()
159 return pmu_alias->alias; in __pmu_find_alias_name()
/Linux-v6.1/arch/x86/entry/vdso/
Dvclock_gettime.c26 __attribute__((weak, alias("__vdso_gettimeofday")));
33 __kernel_old_time_t time(__kernel_old_time_t *t) __attribute__((weak, alias("__vdso_time")));
47 __attribute__((weak, alias("__vdso_clock_gettime")));
55 __attribute__((weak, alias("__vdso_clock_getres")));
68 __attribute__((weak, alias("__vdso_clock_gettime")));
76 __attribute__((weak, alias("__vdso_clock_gettime64")));
84 __attribute__((weak, alias("__vdso_clock_getres")));
/Linux-v6.1/arch/powerpc/include/asm/
Dlinkage.h11 #define SYSCALL_ALIAS(alias, name) \ argument
12 asm ("\t.globl " #alias "\n\t.set " #alias ", " #name "\n" \
13 "\t.globl ." #alias "\n\t.set ." #alias ", ." #name)
/Linux-v6.1/tools/perf/tests/
Dpmu-events.c30 * be set in the alias.
372 static int compare_alias_to_test_event(struct perf_pmu_alias *alias, in compare_alias_to_test_event() argument
378 /* An alias was found, ensure everything is in order */ in compare_alias_to_test_event()
379 if (!is_same(alias->name, event->name)) { in compare_alias_to_test_event()
381 pmu_name, alias->name, event->name); in compare_alias_to_test_event()
385 if (!is_same(alias->desc, event->desc)) { in compare_alias_to_test_event()
387 pmu_name, alias->desc, event->desc); in compare_alias_to_test_event()
391 if (!is_same(alias->long_desc, test_event->alias_long_desc)) { in compare_alias_to_test_event()
393 pmu_name, alias->long_desc, in compare_alias_to_test_event()
398 if (!is_same(alias->topic, event->topic)) { in compare_alias_to_test_event()
[all …]
/Linux-v6.1/fs/afs/
Ddir_silly.c239 struct dentry *alias; in afs_silly_iput() local
248 alias = d_alloc_parallel(dentry->d_parent, &dentry->d_name, &wq); in afs_silly_iput()
249 if (IS_ERR(alias)) { in afs_silly_iput()
254 if (!d_in_lookup(alias)) { in afs_silly_iput()
259 spin_lock(&alias->d_lock); in afs_silly_iput()
260 if (d_really_is_positive(alias) && in afs_silly_iput()
261 !(alias->d_flags & DCACHE_NFSFS_RENAMED)) { in afs_silly_iput()
262 alias->d_flags |= DCACHE_NFSFS_RENAMED; in afs_silly_iput()
265 spin_unlock(&alias->d_lock); in afs_silly_iput()
267 dput(alias); in afs_silly_iput()
[all …]
/Linux-v6.1/drivers/of/
Dof_private.h14 * struct alias_prop - Alias property in 'aliases' node
16 * @alias: Alias property name
17 * @np: Pointer to device_node that the alias stands for
18 * @id: Index value from end of alias name
19 * @stem: Alias string without the index
21 * The structure represents one alias property of 'aliases' node as
26 const char *alias; member
/Linux-v6.1/Documentation/ABI/testing/
Dsysfs-bus-event_source-devices-uncore1 What: /sys/bus/event_source/devices/uncore_*/alias
5 Description: Read-only. An attribute to describe the alias name of
6 the uncore PMU if an alias exists on some platforms.
12 $ cat /sys/devices/uncore_cha_2/alias
/Linux-v6.1/arch/parisc/include/asm/
Dfixmap.h21 * The c3750 with PA8700 processor returns an alias value of 11. This
22 * indicates that it has an alias boundary of 4 MB. It also supports
25 * Machines with PA8800/PA8900 processors return an alias value of 0.
26 * This indicates the alias boundary is unknown and may be larger than
29 * Here we assume the maximum alias boundary is 4 MB.
/Linux-v6.1/arch/xtensa/mm/
Dcache.c143 unsigned long alias = !(DCACHE_ALIAS_EQ(temp, phys)); in flush_dcache_page() local
153 if (!alias && !mapping) in flush_dcache_page()
162 if (alias) in flush_dcache_page()
190 * alias versions of the cache flush functions.
196 /* Note that we have to use the 'alias' address to avoid multi-hit */ in local_flush_cache_page()
265 unsigned long alias = !(DCACHE_ALIAS_EQ(vaddr, phys)); in copy_to_user_page() local
269 if (alias) { in copy_to_user_page()
285 if (alias) { in copy_to_user_page()
305 unsigned long alias = !(DCACHE_ALIAS_EQ(vaddr, phys)); in copy_from_user_page() local
312 if (alias) { in copy_from_user_page()
/Linux-v6.1/arch/ia64/uv/kernel/
Dsetup.c27 unsigned long alias; member
40 union uvh_si_alias0_overlay_config_u alias; in get_lowmem_redirect() local
45 alias.v = uv_read_local_mmr(redir_addrs[i].alias); in get_lowmem_redirect()
46 if (alias.s.base == 0) { in get_lowmem_redirect()
47 *size = (1UL << alias.s.m_alias); in get_lowmem_redirect()
/Linux-v6.1/fs/ocfs2/
Ddcache.c146 * Walk the inode alias list, and find a dentry which has a given
147 * parent. ocfs2_dentry_attach_lock() wants to find _any_ alias as it
215 struct dentry *alias; in ocfs2_dentry_attach_lock() local
245 alias = ocfs2_find_local_alias(inode, parent_blkno, 0); in ocfs2_dentry_attach_lock()
246 if (alias) { in ocfs2_dentry_attach_lock()
248 * Great, an alias exists, which means we must have a in ocfs2_dentry_attach_lock()
250 * the alias and add it to the list. in ocfs2_dentry_attach_lock()
258 dl = alias->d_fsdata; in ocfs2_dentry_attach_lock()
297 if (unlikely(dentry->d_fsdata && !alias)) { in ocfs2_dentry_attach_lock()
329 if (ret < 0 && !alias) { in ocfs2_dentry_attach_lock()
[all …]
/Linux-v6.1/drivers/clk/hisilicon/
Dclk.c172 if (clks[i].alias) in hisi_clk_register_mux()
173 clk_register_clkdev(clk, clks[i].alias, NULL); in hisi_clk_register_mux()
234 if (clks[i].alias) in hisi_clk_register_divider()
235 clk_register_clkdev(clk, clks[i].alias, NULL); in hisi_clk_register_divider()
271 if (clks[i].alias) in hisi_clk_register_gate()
272 clk_register_clkdev(clk, clks[i].alias, NULL); in hisi_clk_register_gate()
308 if (clks[i].alias) in hisi_clk_register_gate_sep()
309 clk_register_clkdev(clk, clks[i].alias, NULL); in hisi_clk_register_gate_sep()
338 if (clks[i].alias) in hi6220_clk_register_divider()
339 clk_register_clkdev(clk, clks[i].alias, NULL); in hi6220_clk_register_divider()
/Linux-v6.1/arch/x86/um/vdso/
Dum_vdso.c26 __attribute__((weak, alias("__vdso_clock_gettime")));
38 __attribute__((weak, alias("__vdso_gettimeofday")));
50 __kernel_old_time_t time(__kernel_old_time_t *t) __attribute__((weak, alias("__vdso_time")));
68 __attribute__((weak, alias("__vdso_getcpu")));
/Linux-v6.1/fs/nfs/
Dunlink.c124 struct dentry *alias; in nfs_call_unlink() local
127 alias = d_alloc_parallel(dentry->d_parent, &data->args.name, &data->wq); in nfs_call_unlink()
128 if (IS_ERR(alias)) { in nfs_call_unlink()
132 if (!d_in_lookup(alias)) { in nfs_call_unlink()
140 spin_lock(&alias->d_lock); in nfs_call_unlink()
141 if (d_really_is_positive(alias) && in nfs_call_unlink()
142 !(alias->d_flags & DCACHE_NFSFS_RENAMED)) { in nfs_call_unlink()
143 devname_garbage = alias->d_fsdata; in nfs_call_unlink()
144 alias->d_fsdata = data; in nfs_call_unlink()
145 alias->d_flags |= DCACHE_NFSFS_RENAMED; in nfs_call_unlink()
[all …]
/Linux-v6.1/arch/alpha/include/asm/
Dlinkage.h6 #define SYSCALL_ALIAS(alias, name) \ argument
7 asm ( #alias " = " #name "\n\t.globl " #alias)

12345678910>>...27