/linux/tools/perf/tests/shell/lib/ |
H A D | perf_metric_validation_rules.json | 25 "Alias": "a" string 29 "Alias": "b" string 33 "Alias": "c" string 48 "Alias": "a" string 52 "Alias": "b" string 56 "Alias": "c" string 71 "Alias": "a" string 75 "Alias": "b" string 90 "Alias": "a" string 105 "Alias": "" string [all …]
|
/linux/scripts/mod/ |
H A D | file2alias.c | 1 /* Simple code to turn various tables in an ELF file into alias definitions. 187 char alias[500]; in do_usb_entry() local 200 strcpy(alias, "usb:"); in do_usb_entry() 201 ADD(alias, "v", match_flags&USB_DEVICE_ID_MATCH_VENDOR, in do_usb_entry() 203 ADD(alias, "p", match_flags&USB_DEVICE_ID_MATCH_PRODUCT, in do_usb_entry() 206 strcat(alias, "d"); in do_usb_entry() 208 sprintf(alias + strlen(alias), "%0*X", in do_usb_entry() 211 sprintf(alias + strlen(alias), "%X", range_lo); in do_usb_entry() 214 sprintf(alias + strlen(alias), in do_usb_entry() 219 sprintf(alias + strlen(alias), in do_usb_entry() [all …]
|
/linux/tools/perf/util/include/linux/ |
H A D | linkage.h | 59 #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/drivers/i2c/ |
H A D | i2c-atr.c | 25 * struct i2c_atr_alias_pair - Holds the alias assigned to a client address. 28 * @alias: I2C alias address assigned by the driver. 31 * @fixed: Alias pair cannot be replaced during dynamic address attachment. 34 * It marks addresses that have already been attached to an alias so 35 * that their alias pair is not evicted by a subsequent address in the same 43 u16 alias; member 49 * @shared: Indicates if this alias pool is shared by multiple channels 180 u16 alias, u16 addr) in i2c_atr_create_c2a() argument 191 c2a->alias = alias; in i2c_atr_create_c2a() 209 u16 alias; in i2c_atr_reserve_alias() local [all …]
|
/linux/Documentation/networking/ |
H A 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/Documentation/i2c/ |
H A D | i2c-address-translators.rst | 17 called the "alias" and is (potentially) different from the physical 23 - there is normally no need to select the child port; the alias used on the 31 an available alias. Maintaining an appropriate pool of available aliases 33 ATR maintains a table of currently assigned alias and uses it to modify 48 Alias table: 53 in the transaction and based on the alias table. 55 Alias table: 60 Client Alias 69 - ATR driver finds slave X is on bus B and has alias 0x20, rewrites 87 2. When the attach callback is called pick an appropriate alias, [all …]
|
/linux/arch/x86/entry/vdso/ |
H A D | vclock_gettime.c | 24 __attribute__((weak, alias("__vdso_gettimeofday"))); 31 __kernel_old_time_t time(__kernel_old_time_t *t) __attribute__((weak, alias("__vdso_time"))); 42 __attribute__((weak, alias("__vdso_clock_gettime"))); 50 __attribute__((weak, alias("__vdso_clock_getres"))); 60 __attribute__((weak, alias("__vdso_clock_gettime"))); 68 __attribute__((weak, alias("__vdso_clock_gettime64"))); 76 __attribute__((weak, alias("__vdso_clock_getres")));
|
/linux/arch/powerpc/include/asm/ |
H A 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/Documentation/ABI/testing/ |
H A D | sysfs-bus-event_source-devices-uncore | 1 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/drivers/of/ |
H A D | of_private.h | 15 * struct alias_prop - Alias property in 'aliases' node 17 * @alias: Alias property name 18 * @np: Pointer to device_node that the alias stands for 19 * @id: Index value from end of alias name 20 * @stem: Alias string without the index 22 * The structure represents one alias property of 'aliases' node as 27 const char *alias; member
|
/linux/fs/ocfs2/ |
H A D | dcache.c | 135 * Walk the inode alias list, and find a dentry which has a given 136 * parent. ocfs2_dentry_attach_lock() wants to find _any_ alias as it 204 struct dentry *alias; in ocfs2_dentry_attach_lock() local 234 alias = ocfs2_find_local_alias(inode, parent_blkno, 0); in ocfs2_dentry_attach_lock() 235 if (alias) { in ocfs2_dentry_attach_lock() 237 * Great, an alias exists, which means we must have a in ocfs2_dentry_attach_lock() 239 * the alias and add it to the list. in ocfs2_dentry_attach_lock() 247 dl = alias->d_fsdata; in ocfs2_dentry_attach_lock() 286 if (unlikely(dentry->d_fsdata && !alias)) { in ocfs2_dentry_attach_lock() 318 if (ret < 0 && !alias) { in ocfs2_dentry_attach_lock() [all …]
|
/linux/arch/parisc/include/asm/ |
H A D | fixmap.h | 21 * 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/include/linux/ |
H A D | i2c-atr.h | 39 * bus, with the alias assigned to it. The driver must 40 * configure the hardware to use the alias. 43 * alias. 49 u16 addr, u16 alias); 62 * @num_aliases: The number of aliases in this adapter's private alias pool. Set 63 * to zero if this adapter uses the ATR's global alias pool. 113 * driver to assign an alias to the device.
|
/linux/drivers/clk/hisilicon/ |
H A 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()
|
H A D | clk.h | 54 const char *alias; member 80 const char *alias; member 92 const char *alias; member 103 const char *alias; member
|
/linux/Documentation/devicetree/bindings/i2c/ |
H A D | i2c-atr.yaml | 17 called the "alias" and is (potentially) different from the physical 22 i2c-alias-pool: 25 I2C alias pool is a pool of I2C addresses on the main I2C bus that can be 28 remote peripheral is assigned an alias from the pool, and transactions to
|
/linux/arch/alpha/include/asm/ |
H A D | linkage.h | 6 #define SYSCALL_ALIAS(alias, name) \ argument 7 asm ( #alias " = " #name "\n\t.globl " #alias)
|
/linux/scripts/ |
H A 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/arch/mips/include/asm/ |
H A D | linkage.h | 10 #define SYSCALL_ALIAS(alias, name) \ argument 11 asm ( #alias " = " #name "\n\t.globl " #alias)
|
/linux/tools/perf/pmu-events/arch/x86/tigerlake/ |
H A D | uncore-interconnect.json | 54 "BriefDescription": "Each cycle count number of 'valid' coherent Data Read entries . Such entry is defined as valid when it is allocated till deallocation. Doesn't include prefetches [This event is alias to UNC_ARB_TRK_OCCUPANCY.RD]", 64 "BriefDescription": "Number of all coherent Data Read entries. Doesn't include prefetches [This event is alias to UNC_ARB_TRK_REQUESTS.RD]", 83 "BriefDescription": "Each cycle count number of 'valid' coherent Data Read entries . Such entry is defined as valid when it is allocated till deallocation. Doesn't include prefetches [This event is alias to UNC_ARB_REQ_TRK_OCCUPANCY.DRD]", 102 "BriefDescription": "Number of all coherent Data Read entries. Doesn't include prefetches [This event is alias to UNC_ARB_REQ_TRK_REQUEST.DRD]",
|
/linux/tools/perf/pmu-events/arch/x86/alderlake/ |
H A D | uncore-interconnect.json | 54 …is allocated till deallocation. Doesn't include prefetches [This event is alias to UNC_ARB_TRK_OCC… 64 …all coherent Data Read entries. Doesn't include prefetches [This event is alias to UNC_ARB_TRK_REQ… 83 …is allocated till deallocation. Doesn't include prefetches [This event is alias to UNC_ARB_REQ_TRK… 102 …all coherent Data Read entries. Doesn't include prefetches [This event is alias to UNC_ARB_REQ_TRK…
|
/linux/tools/perf/pmu-events/arch/x86/alderlaken/ |
H A D | uncore-interconnect.json | 54 …is allocated till deallocation. Doesn't include prefetches [This event is alias to UNC_ARB_TRK_OCC… 64 …all coherent Data Read entries. Doesn't include prefetches [This event is alias to UNC_ARB_TRK_REQ… 83 …is allocated till deallocation. Doesn't include prefetches [This event is alias to UNC_ARB_REQ_TRK… 102 …all coherent Data Read entries. Doesn't include prefetches [This event is alias to UNC_ARB_REQ_TRK…
|
/linux/tools/perf/util/ |
H A D | bpf-filter.l | 101 ins_lat { return sample_part(PBF_TERM_WEIGHT_STRUCT, 2); } /* alias for weight2 */ 102 p_stage_cyc { return sample_part(PBF_TERM_WEIGHT_STRUCT, 3); } /* alias for weight3 */ 103 retire_lat { return sample_part(PBF_TERM_WEIGHT_STRUCT, 3); } /* alias for weight3 */ 109 mem_lvl { return sample_part(PBF_TERM_DATA_SRC, 2); } /* alias for mem_lvlnum */ 164 fault { return constant(PERF_MEM_TLB_OS); } /* alias for os */
|
/linux/rust/macros/ |
H A D | module.rs | 100 alias: Option<Vec<String>>, field 115 "alias", in parse() 141 "alias" => info.alias = Some(expect_string_array(it)), in parse() 194 if let Some(aliases) = info.alias { in module() 195 for alias in aliases { in module() 196 modinfo.emit("alias", &alias); in module()
|
/linux/tools/perf/pmu-events/arch/x86/sierraforest/ |
H A D | floating-point.json | 20 … "BriefDescription": "This event is deprecated. [This event is alias to FP_FLOPS_RETIRED.FP64]", 29 …nt operations that produce 32 bit single precision results [This event is alias to FP_FLOPS_RETIRE… 37 …nt operations that produce 64 bit double precision results [This event is alias to FP_FLOPS_RETIRE… 45 … "BriefDescription": "This event is deprecated. [This event is alias to FP_FLOPS_RETIRED.FP32]",
|