Searched refs:alias (Results 1 - 25 of 139) sorted by last modified time

123456

/linux-master/mm/
H A Dhugetlb.c3287 __attribute__ ((weak, alias("__alloc_bootmem_huge_page")));
H A Dshmem.c3811 /* Find any alias of inode, but prefer a hashed alias */
3814 struct dentry *alias = d_find_alias(inode); local
3816 return alias ?: d_find_any_alias(inode);
/linux-master/net/ipv4/
H A Dfib_frontend.c78 struct fib_table *tb, *alias = NULL; local
88 alias = fib_new_table(net, RT_TABLE_MAIN);
90 tb = fib_trie_table(id, alias);
/linux-master/net/core/
H A Ddev.c1249 * @alias: name up to IFALIASZ
1254 int dev_set_alias(struct net_device *dev, const char *alias, size_t len) argument
1266 memcpy(new_alias->ifalias, alias, len);
1293 const struct dev_ifalias *alias; local
1297 alias = rcu_dereference(dev->ifalias);
1298 if (alias)
1299 ret = snprintf(name, len, "%s", alias->ifalias);
/linux-master/fs/ceph/
H A Dmds_client.c4437 struct dentry *alias, *dn = NULL; local
4447 alias = hlist_entry(inode->i_dentry.first, struct dentry, d_u.d_alias);
4448 if (!IS_ROOT(alias))
4449 dn = dget(alias);
4453 hlist_for_each_entry(alias, &inode->i_dentry, d_u.d_alias) {
4454 spin_lock(&alias->d_lock);
4455 if (!d_unhashed(alias) &&
4456 (ceph_dentry(alias)->flags & CEPH_DENTRY_PRIMARY_LINK)) {
4457 dn = dget_dlock(alias);
4459 spin_unlock(&alias
[all...]
/linux-master/drivers/iommu/intel/
H A Diommu.c1967 u16 alias, void *opaque)
1974 PCI_BUS_NUM(alias), alias & 0xff);
3768 static int domain_context_clear_one_cb(struct pci_dev *pdev, u16 alias, void *opaque) argument
3772 domain_context_clear_one(info, PCI_BUS_NUM(alias), alias & 0xff);
1966 domain_context_mapping_cb(struct pci_dev *pdev, u16 alias, void *opaque) argument
/linux-master/drivers/iommu/amd/
H A Diommu.c222 static int clone_alias(struct pci_dev *pdev, u16 alias, void *data) argument
228 if (devid == alias)
235 amd_iommu_set_rlookup_table(iommu, alias);
237 memcpy(dev_table[alias].data,
239 sizeof(dev_table[alias].data));
253 * The IVRS alias stored in the alias table may not be
273 * Add the IVRS alias to the pci aliases if it is on the same
1400 static int device_flush_dte_alias(struct pci_dev *pdev, u16 alias, void *data) argument
1404 return iommu_flush_dte(iommu, alias);
1415 u16 alias; local
2914 set_remap_table_entry_alias(struct pci_dev *pdev, u16 alias, void *data) argument
2939 u16 alias; local
[all...]
H A Dinit.c644 * data structures, initialize the per PCI segment device/alias/rlookup table
717 * let all alias entries point to itself
1349 bool alias = false; local
1417 alias = false;
1454 alias = true;
1481 alias = false;
1492 if (alias) {
/linux-master/drivers/target/
H A Dtarget_core_configfs.c366 pr_err("Passed alias: %s exceeds "
665 pr_err("dev[%p]: Unable to change model alias"
2318 pr_err("alias count: %d exceeds"
2332 pr_debug("Target_Core_ConfigFS: %s/%s set alias: %s\n",
2452 * Any ALUA logical unit alias besides "NULL" means we will be
2673 CONFIGFS_ATTR(target_dev_, alias);
/linux-master/arch/riscv/include/asm/
H A Dsyscall_wrapper.h33 __diag_ignore(GCC, 8, "-Wattribute-alias", \
37 __attribute__((alias(__stringify(___se_##prefix##name)))); \
/linux-master/tools/objtool/
H A Dcheck.c459 if (func->embedded_insn || func->alias != func)
4227 if (sym->pfunc != sym || sym->alias != sym)
/linux-master/drivers/gpu/drm/i915/
H A Di915_vma.c156 GEM_BUG_ON(vm == &vm->gt->ggtt->alias->vm);
/linux-master/drivers/acpi/acpica/
H A Ddbnames.c773 u8 alias = TRUE; local
779 while (alias) {
794 alias = FALSE;
/linux-master/drivers/iommu/
H A Diommu.c1444 /* We alias them or they alias us */
1469 * DMA alias iterator callback, return the last seen device. Stop and return
1472 static int get_pci_alias_or_group(struct pci_dev *pdev, u16 alias, void *opaque) argument
1514 * Use standard PCI bus topology, isolation features, and DMA alias quirks
1529 * Find the upstream DMA alias for the device. A device must not
1531 * If we find an alias along the way that already belongs to a
1560 * Look for existing groups on device aliases. If we alias another
/linux-master/tools/objtool/include/objtool/
H A Delf.h60 struct symbol *pfunc, *cfunc, *alias; member in struct:symbol
/linux-master/fs/exfat/
H A Dnamei.c27 * If new entry was created in the parent, it could create the 8.3 alias (the
29 * matches the created 8.3 alias.
694 struct dentry *alias; local
717 alias = d_find_alias(inode);
720 * Checking "alias->d_parent == dentry->d_parent" to make sure
723 if (alias && alias->d_parent == dentry->d_parent &&
724 !exfat_d_anon_disconn(alias)) {
727 * Unhashed alias is able to exist because of revalidate()
730 * In such case, we reuse an alias instea
[all...]
/linux-master/drivers/base/
H A Dcpu.c576 __attribute__((weak, alias("cpu_show_not_affected")))
/linux-master/include/linux/
H A Dof.h369 extern int of_alias_from_compatible(const struct device_node *node, char *alias,
/linux-master/fs/nfs/
H A Dnfs4proc.c3094 struct dentry *alias; local
3096 alias = d_exact_alias(dentry, state->inode);
3097 if (!alias)
3098 alias = d_splice_alias(igrab(state->inode), dentry);
3100 if (alias) {
3102 ctx->dentry = dentry = alias;
/linux-master/fs/fuse/
H A Dreaddir.c159 struct dentry *alias; local
240 alias = d_splice_alias(inode, dentry);
242 if (alias) {
244 dentry = alias;
/linux-master/drivers/of/
H A Dof_private.h16 * @alias: Alias property name
17 * @np: Pointer to device_node that the alias stands for
18 * @id: Index value from end of alias name
21 * The structure represents one alias property of 'aliases' node as
26 const char *alias; member in struct:alias_prop
H A Dbase.c813 * node (an alias). In the case of an alias, the node
814 * matching the alias' value will be returned.
821 * * foo Valid alias
822 * * foo/bar Valid alias + relative path
840 /* The path could begin with an alias */
1077 * of_alias_from_compatible - Lookup appropriate alias for a device node
1080 * @alias: Pointer to buffer that alias value will be copied into
1081 * @len: Length of alias valu
1093 of_alias_from_compatible(const struct device_node *node, char *alias, int len) argument
[all...]
/linux-master/drivers/mtd/chips/
H A Dcfi_cmdset_0002.c759 struct mtd_info *cfi_cmdset_0006(struct map_info *map, int primary) __attribute__((alias("cfi_cmdset_0002")));
760 struct mtd_info *cfi_cmdset_0701(struct map_info *map, int primary) __attribute__((alias("cfi_cmdset_0002")));
/linux-master/drivers/clk/samsung/
H A Dclk.h36 * @alias: optional clock alias name to be assigned to this clock
41 const char *alias; member in struct:samsung_clock_alias
48 .alias = a, \
/linux-master/drivers/clk/
H A Dclkdev.c239 int clk_add_alias(const char *alias, const char *alias_dev_name, argument
248 l = clkdev_create(r, alias, alias_dev_name ? "%s" : NULL,

Completed in 493 milliseconds

123456