/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 …]
|
H A D | perf_metric_validation.py | 100 def get_bounds(self, lb, ub, error, alias={}, ridx: int = 0) -> list: argument 120 elif bound in alias: 121 vall = self.get_value(alias[ub], ridx) 206 def evaluate_formula(self, formula: str, alias: dict, ridx: int = 0): 211 @param alias: the dict has alias to metric name mapping 223 s = alias[formula[b:i]] if i + \ 224 1 < len(formula) else alias[formula[b:]] 257 @param rule: dict with metric name(+alias), formula, and required upper and lower bounds. 259 alias = dict() 261 alias[m['Alias']] = m['Name'] [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/drivers/clk/samsung/ |
H A 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 …]
|
/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/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/drivers/i2c/ |
H A D | i2c-atr.c | 24 * struct i2c_atr_alias_pair - Holds the alias assigned to a client. 27 * @alias: I2C alias address assigned by the driver. 34 u16 alias; member 170 msgs[i].addr = c2a->alias; in i2c_atr_map_msgs() 234 return i2c_smbus_xfer(parent, c2a->alias, flags, read_write, command, in i2c_atr_smbus_xfer() 285 dev_err(atr->dev, "failed to find a free alias\n"); in i2c_atr_reserve_alias() 296 static void i2c_atr_release_alias(struct i2c_atr *atr, u16 alias) in i2c_atr_release_alias() argument 303 if (atr->aliases[idx] == alias) { in i2c_atr_release_alias() 313 dev_warn(atr->dev, "Unable to find mapped alias\n"); in i2c_atr_release_alias() 322 u16 alias; in i2c_atr_attach_client() local [all …]
|
/linux/include/linux/ |
H A D | linkage.h | 33 #define SYSCALL_ALIAS(alias, name) asm( \ argument 34 ".globl " __stringify(alias) "\n\t" \ 35 ".set " __stringify(alias) "," \ 174 #define SYM_ALIAS(alias, name, linkage) \ 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) \ 261 SYM_ALIAS(alias, name, SYM_L_GLOBAL) [all …]
|
H A D | i2c-atr.h | 24 * bus, with the alias assigned to it. The driver must 25 * configure the hardware to use the alias. 28 * alias. 34 const struct i2c_client *client, u16 alias); 78 * driver to assign an alias to the device.
|
/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/fs/afs/ |
H A D | dir_silly.c | 239 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/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/tools/perf/tests/ |
H A D | pmu-events.c | 32 * be set in the alias. 365 static int compare_alias_to_test_event(struct pmu_event_info *alias, in compare_alias_to_test_event() argument 371 /* An alias was found, ensure everything is in order */ in compare_alias_to_test_event() 372 if (!is_same(alias->name, event->name)) { in compare_alias_to_test_event() 374 pmu_name, alias->name, event->name); in compare_alias_to_test_event() 378 if (!is_same(alias->desc, event->desc)) { in compare_alias_to_test_event() 380 pmu_name, alias->desc, event->desc); in compare_alias_to_test_event() 384 if (!is_same(alias->long_desc, test_event->alias_long_desc)) { in compare_alias_to_test_event() 386 pmu_name, alias->long_desc, in compare_alias_to_test_event() 391 if (!is_same(alias->topic, event->topic)) { in compare_alias_to_test_event() [all …]
|
/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()
|
/linux/fs/nfs/ |
H A D | unlink.c | 124 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 !nfs_compare_fh(NFS_FH(inode), NFS_FH(d_inode(alias))) && in nfs_call_unlink() 143 !(alias->d_flags & DCACHE_NFSFS_RENAMED)) { in nfs_call_unlink() 144 devname_garbage = alias->d_fsdata; in nfs_call_unlink() 145 alias->d_fsdata = data; in nfs_call_unlink() [all …]
|
/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/tools/perf/pmu-events/arch/x86/sierraforest/ |
H A D | pipeline.json | 148 …"BriefDescription": "Counts the number of unhalted core clock cycles [This event is alias to CPU_C… 178 …"BriefDescription": "Counts the number of unhalted core clock cycles [This event is alias to CPU_C… 200 …to be store forward blocked, but subsequently is shown not to be blocked based on 4K alias check.", 256 …equires LBRs to be enabled and configured in IA32_LBR_CTL. [This event is alias to LBR_INSERTS.ANY… 264 … is stalled due to a mispredicted jump or a machine clear. [This event is alias to TOPDOWN_BAD_SPE… 268 …se they were younger than the mispredict or machine clear. [This event is alias to TOPDOWN_BAD_SPE… 272 … is stalled due to a mispredicted jump or a machine clear. [This event is alias to TOPDOWN_BAD_SPE… 276 …se they were younger than the mispredict or machine clear. [This event is alias to TOPDOWN_BAD_SPE… 312 …ber of retirement slots not consumed due to backend stalls [This event is alias to TOPDOWN_BE_BOUN… 327 …ber of retirement slots not consumed due to backend stalls [This event is alias to TOPDOWN_BE_BOUN… [all …]
|
/linux/tools/perf/pmu-events/arch/x86/grandridge/ |
H A D | pipeline.json | 148 …"BriefDescription": "Counts the number of unhalted core clock cycles [This event is alias to CPU_C… 178 …"BriefDescription": "Counts the number of unhalted core clock cycles [This event is alias to CPU_C… 200 …to be store forward blocked, but subsequently is shown not to be blocked based on 4K alias check.", 256 …equires LBRs to be enabled and configured in IA32_LBR_CTL. [This event is alias to LBR_INSERTS.ANY… 264 … is stalled due to a mispredicted jump or a machine clear. [This event is alias to TOPDOWN_BAD_SPE… 268 …se they were younger than the mispredict or machine clear. [This event is alias to TOPDOWN_BAD_SPE… 272 … is stalled due to a mispredicted jump or a machine clear. [This event is alias to TOPDOWN_BAD_SPE… 276 …se they were younger than the mispredict or machine clear. [This event is alias to TOPDOWN_BAD_SPE… 312 …ber of retirement slots not consumed due to backend stalls [This event is alias to TOPDOWN_BE_BOUN… 327 …ber of retirement slots not consumed due to backend stalls [This event is alias to TOPDOWN_BE_BOUN… [all …]
|
/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/alpha/include/asm/ |
H A D | linkage.h | 6 #define SYSCALL_ALIAS(alias, name) \ argument 7 asm ( #alias " = " #name "\n\t.globl " #alias)
|