/linux-5.10/scripts/mod/ |
D | file2alias.c | 1 /* 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 */ 162 char alias[500]; in do_usb_entry() local 175 strcpy(alias, "usb:"); in do_usb_entry() 176 ADD(alias, "v", match_flags&USB_DEVICE_ID_MATCH_VENDOR, in do_usb_entry() 178 ADD(alias, "p", match_flags&USB_DEVICE_ID_MATCH_PRODUCT, in do_usb_entry() 181 strcat(alias, "d"); in do_usb_entry() 183 sprintf(alias + strlen(alias), "%0*X", in do_usb_entry() 186 sprintf(alias + strlen(alias), "%X", range_lo); in do_usb_entry() [all …]
|
/linux-5.10/drivers/clk/samsung/ |
D | clk-s3c64xx.c | 311 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 …]
|
D | clk-s3c2443.c | 146 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 …]
|
D | clk-s3c2410.c | 97 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 …]
|
D | clk-s3c2412.c | 137 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-5.10/tools/perf/util/ |
D | pmu.c | 143 static int perf_pmu__parse_scale(struct perf_pmu_alias *alias, char *dir, char *name) in perf_pmu__parse_scale() argument 169 ret = perf_pmu__convert_scale(scale, NULL, &alias->scale); in perf_pmu__parse_scale() 175 static int perf_pmu__parse_unit(struct perf_pmu_alias *alias, char *dir, char *name) in perf_pmu__parse_unit() argument 187 sret = read(fd, alias->unit, UNIT_MAX_LEN); in perf_pmu__parse_unit() 193 if (alias->unit[sret - 1] == '\n') in perf_pmu__parse_unit() 194 alias->unit[sret - 1] = '\0'; in perf_pmu__parse_unit() 196 alias->unit[sret] = '\0'; in perf_pmu__parse_unit() 201 alias->unit[0] = '\0'; in perf_pmu__parse_unit() 206 perf_pmu__parse_per_pkg(struct perf_pmu_alias *alias, char *dir, char *name) in perf_pmu__parse_per_pkg() argument 219 alias->per_pkg = true; in perf_pmu__parse_per_pkg() [all …]
|
/linux-5.10/Documentation/networking/ |
D | alias.rst | 12 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-5.10/arch/x86/entry/vdso/ |
D | vclock_gettime.c | 26 __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-5.10/arch/powerpc/include/asm/ |
D | linkage.h | 11 #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-5.10/fs/afs/ |
D | dir_silly.c | 236 struct dentry *alias; in afs_silly_iput() local 245 alias = d_alloc_parallel(dentry->d_parent, &dentry->d_name, &wq); in afs_silly_iput() 246 if (IS_ERR(alias)) { in afs_silly_iput() 251 if (!d_in_lookup(alias)) { in afs_silly_iput() 256 spin_lock(&alias->d_lock); in afs_silly_iput() 257 if (d_really_is_positive(alias) && in afs_silly_iput() 258 !(alias->d_flags & DCACHE_NFSFS_RENAMED)) { in afs_silly_iput() 259 alias->d_flags |= DCACHE_NFSFS_RENAMED; in afs_silly_iput() 262 spin_unlock(&alias->d_lock); in afs_silly_iput() 264 dput(alias); in afs_silly_iput() [all …]
|
/linux-5.10/drivers/of/ |
D | of_private.h | 12 * struct alias_prop - Alias property in 'aliases' node 14 * @alias: Alias property name 15 * @np: Pointer to device_node that the alias stands for 16 * @id: Index value from end of alias name 17 * @stem: Alias string without the index 19 * The structure represents one alias property of 'aliases' node as 24 const char *alias; member
|
/linux-5.10/tools/perf/tests/ |
D | pmu-events.c | 25 * be set in the alias. 258 struct perf_pmu_alias *alias; in find_alias() local 260 list_for_each_entry(alias, aliases, list) in find_alias() 261 if (!strcmp(test_event, alias->name)) in find_alias() 262 return alias; in find_alias() 299 struct perf_pmu_alias *alias = find_alias(te->name, &aliases); in __test__pmu_event_aliases() local 301 if (!alias) { in __test__pmu_event_aliases() 306 pr_debug3("testing aliases PMU %s: skip matching alias %s\n", in __test__pmu_event_aliases() 311 pr_debug2("testing aliases PMU %s: no alias, alias_table->name=%s\n", in __test__pmu_event_aliases() 317 if (!is_same(alias->desc, te->desc)) { in __test__pmu_event_aliases() [all …]
|
/linux-5.10/arch/ia64/uv/kernel/ |
D | setup.c | 27 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-5.10/arch/xtensa/mm/ |
D | cache.c | 148 unsigned long alias = !(DCACHE_ALIAS_EQ(temp, phys)); in flush_dcache_page() local 158 if (!alias && !mapping) in flush_dcache_page() 167 if (alias) in flush_dcache_page() 195 * alias versions of the cache flush functions. 201 /* Note that we have to use the 'alias' address to avoid multi-hit */ in local_flush_cache_page() 270 unsigned long alias = !(DCACHE_ALIAS_EQ(vaddr, phys)); in copy_to_user_page() local 274 if (alias) { in copy_to_user_page() 290 if (alias) { in copy_to_user_page() 310 unsigned long alias = !(DCACHE_ALIAS_EQ(vaddr, phys)); in copy_from_user_page() local 317 if (alias) { in copy_from_user_page()
|
/linux-5.10/fs/ocfs2/ |
D | dcache.c | 148 * Walk the inode alias list, and find a dentry which has a given 149 * parent. ocfs2_dentry_attach_lock() wants to find _any_ alias as it 217 struct dentry *alias; in ocfs2_dentry_attach_lock() local 247 alias = ocfs2_find_local_alias(inode, parent_blkno, 0); in ocfs2_dentry_attach_lock() 248 if (alias) { in ocfs2_dentry_attach_lock() 250 * Great, an alias exists, which means we must have a in ocfs2_dentry_attach_lock() 252 * the alias and add it to the list. in ocfs2_dentry_attach_lock() 260 dl = alias->d_fsdata; in ocfs2_dentry_attach_lock() 299 if (unlikely(dentry->d_fsdata && !alias)) { in ocfs2_dentry_attach_lock() 331 if (ret < 0 && !alias) { in ocfs2_dentry_attach_lock() [all …]
|
/linux-5.10/drivers/clk/hisilicon/ |
D | clk.c | 172 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-5.10/fs/nfs/ |
D | unlink.c | 120 struct dentry *alias; in nfs_call_unlink() local 123 alias = d_alloc_parallel(dentry->d_parent, &data->args.name, &data->wq); in nfs_call_unlink() 124 if (IS_ERR(alias)) { in nfs_call_unlink() 128 if (!d_in_lookup(alias)) { in nfs_call_unlink() 136 spin_lock(&alias->d_lock); in nfs_call_unlink() 137 if (d_really_is_positive(alias) && in nfs_call_unlink() 138 !(alias->d_flags & DCACHE_NFSFS_RENAMED)) { in nfs_call_unlink() 139 devname_garbage = alias->d_fsdata; in nfs_call_unlink() 140 alias->d_fsdata = data; in nfs_call_unlink() 141 alias->d_flags |= DCACHE_NFSFS_RENAMED; in nfs_call_unlink() [all …]
|
/linux-5.10/arch/s390/include/asm/ |
D | syscall_wrapper.h | 43 * To keep the naming coherent, re-define SYSCALL_DEFINE0 to create an alias 57 __attribute__((alias(__stringify(__s390x_sys_##sname)))); \ 70 __diag_ignore(GCC, 8, "-Wattribute-alias", \ 74 __attribute__((alias(__stringify(__se_compat_sys##name)))); \ 118 __diag_ignore(GCC, 8, "-Wattribute-alias", \ 121 __attribute__((alias(__stringify(__se_sys##name)))); \
|
/linux-5.10/arch/alpha/include/asm/ |
D | linkage.h | 6 #define SYSCALL_ALIAS(alias, name) \ argument 7 asm ( #alias " = " #name "\n\t.globl " #alias)
|
/linux-5.10/arch/x86/um/vdso/ |
D | um_vdso.c | 26 __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-5.10/arch/mips/include/asm/ |
D | linkage.h | 10 #define SYSCALL_ALIAS(alias, name) \ argument 11 asm ( #alias " = " #name "\n\t.globl " #alias)
|
/linux-5.10/arch/ia64/include/asm/ |
D | linkage.h | 16 #define SYSCALL_ALIAS(alias, name) \ argument 17 asm ( #alias "# = " #name "#\n\t.globl " #alias "#")
|
/linux-5.10/arch/ia64/lib/ |
D | copy_page_mck.S | 81 #define t5 t1 // alias! 82 #define t6 t2 // alias! 83 #define t7 t3 // alias! 84 #define t9 t5 // alias! 85 #define t10 t4 // alias! 86 #define t11 t7 // alias! 87 #define t12 t6 // alias! 88 #define t14 t10 // alias!
|
/linux-5.10/scripts/ |
D | dev-needs.sh | 206 alias detail=detail_device 220 alias detail=detail_compat 223 alias detail=detail_module 226 alias detail=detail_driver 229 alias detail=detail_fwnode 232 alias detail=detail_graphviz 235 alias detail=detail_tsort
|
/linux-5.10/Documentation/devicetree/bindings/serial/ |
D | qcom,msm-uartdm.txt | 37 The alias serialN will result in the UART being assigned port N. If any 38 serialN alias exists, then an alias must exist for each enabled UART. The 66 - serialN alias.
|