Home
last modified time | relevance | path

Searched refs:nm (Results 1 – 79 of 79) sorted by relevance

/linux-4.4.14/fs/ubifs/
Dxattr.c101 const struct qstr *nm, const void *value, int size) in create_xattr() argument
121 names_len = host_ui->xattr_names + host_ui->xattr_cnt + nm->len + 1; in create_xattr()
158 host_ui->xattr_size += CALC_DENT_SIZE(nm->len); in create_xattr()
160 host_ui->xattr_names += nm->len; in create_xattr()
162 err = ubifs_jnl_update(c, host, nm, inode, 0, 1); in create_xattr()
174 host_ui->xattr_size -= CALC_DENT_SIZE(nm->len); in create_xattr()
261 static int check_namespace(const struct qstr *nm) in check_namespace() argument
265 if (nm->len > UBIFS_MAX_NLEN) in check_namespace()
268 if (!strncmp(nm->name, XATTR_TRUSTED_PREFIX, in check_namespace()
270 if (nm->name[sizeof(XATTR_TRUSTED_PREFIX) - 1] == '\0') in check_namespace()
[all …]
Dkey.h154 const struct qstr *nm) in dent_key_init() argument
156 uint32_t hash = c->key_hash(nm->name, nm->len); in dent_key_init()
188 ino_t inum, const struct qstr *nm) in dent_key_init_flash() argument
191 uint32_t hash = c->key_hash(nm->name, nm->len); in dent_key_init_flash()
222 const struct qstr *nm) in xent_key_init() argument
224 uint32_t hash = c->key_hash(nm->name, nm->len); in xent_key_init()
239 ino_t inum, const struct qstr *nm) in xent_key_init_flash() argument
242 uint32_t hash = c->key_hash(nm->name, nm->len); in xent_key_init_flash()
Dtnc.c522 const struct qstr *nm) in matches_name() argument
545 err = memcmp(dent->name, nm->name, min_t(int, nlen, nm->len)); in matches_name()
547 if (nlen == nm->len) in matches_name()
549 else if (nlen < nm->len) in matches_name()
692 const struct qstr *nm) in resolve_collision() argument
696 err = matches_name(c, &(*zn)->zbranch[*n], nm); in resolve_collision()
757 err = matches_name(c, &(*zn)->zbranch[*n], nm); in resolve_collision()
779 err = matches_name(c, &znode->zbranch[nn], nm); in resolve_collision()
810 const struct qstr *nm) in fallible_matches_name() argument
838 err = memcmp(dent->name, nm->name, min_t(int, nlen, nm->len)); in fallible_matches_name()
[all …]
Djournal.c542 const struct qstr *nm, const struct inode *inode, in ubifs_jnl_update() argument
555 inode->i_ino, nm->len, nm->name, ui->data_len, dir->i_ino); in ubifs_jnl_update()
558 dlen = UBIFS_DENT_NODE_SZ + nm->len + 1; in ubifs_jnl_update()
590 dent_key_init(c, &dent_key, dir->i_ino, nm); in ubifs_jnl_update()
593 xent_key_init(c, &dent_key, dir->i_ino, nm); in ubifs_jnl_update()
599 dent->nlen = cpu_to_le16(nm->len); in ubifs_jnl_update()
600 memcpy(dent->name, nm->name, nm->len); in ubifs_jnl_update()
601 dent->name[nm->len] = '\0'; in ubifs_jnl_update()
632 err = ubifs_tnc_remove_nm(c, &dent_key, nm); in ubifs_jnl_update()
637 err = ubifs_tnc_add_nm(c, &dent_key, lnum, dent_offs, dlen, nm); in ubifs_jnl_update()
[all …]
Ddir.c173 const struct qstr *nm) in dbg_check_name() argument
177 if (le16_to_cpu(dent->nlen) != nm->len) in dbg_check_name()
179 if (memcmp(dent->name, nm->name, nm->len)) in dbg_check_name()
354 struct qstr nm; in ubifs_readdir() local
395 nm.name = NULL; in ubifs_readdir()
396 dent = ubifs_tnc_next_ent(c, &key, &nm); in ubifs_readdir()
413 nm.name = NULL; in ubifs_readdir()
414 dent = ubifs_tnc_next_ent(c, &key, &nm); in ubifs_readdir()
430 nm.len = le16_to_cpu(dent->nlen); in ubifs_readdir()
431 if (!dir_emit(ctx, dent->name, nm.len, in ubifs_readdir()
[all …]
Dreplay.c64 struct qstr nm; member
231 err = ubifs_tnc_remove_nm(c, &r->key, &r->nm); in apply_replay_entry()
234 r->len, &r->nm); in apply_replay_entry()
330 kfree(r->nm.name); in destroy_replay_list()
433 r->nm.len = nlen; in insert_dent()
436 r->nm.name = nbuf; in insert_dent()
Dubifs.h1540 const struct qstr *nm, const struct inode *inode,
1553 const struct inode *inode, const struct qstr *nm);
1588 void *node, const struct qstr *nm);
1596 int lnum, int offs, int len, const struct qstr *nm);
1599 const struct qstr *nm);
1605 const struct qstr *nm);
Ddebug.c236 struct qstr nm = { .name = NULL }; in ubifs_dump_inode() local
282 dent = ubifs_tnc_next_ent(c, &key, &nm); in ubifs_dump_inode()
292 nm.name = dent->name; in ubifs_dump_inode()
293 nm.len = le16_to_cpu(dent->nlen); in ubifs_dump_inode()
1110 struct qstr nm = { .name = NULL }; in dbg_check_dir() local
1123 dent = ubifs_tnc_next_ent(c, &key, &nm); in dbg_check_dir()
1131 nm.name = dent->name; in dbg_check_dir()
1132 nm.len = le16_to_cpu(dent->nlen); in dbg_check_dir()
1133 size += CALC_DENT_SIZE(nm.len); in dbg_check_dir()
/linux-4.4.14/scripts/dtc/
Dchecks.c61 #define CHECK_ENTRY(nm, tfn, nfn, pfn, d, w, e, ...) \ argument
62 static struct check *nm##_prereqs[] = { __VA_ARGS__ }; \
63 static struct check nm = { \
64 .name = #nm, \
72 .num_prereqs = ARRAY_SIZE(nm##_prereqs), \
73 .prereq = nm##_prereqs, \
75 #define WARNING(nm, tfn, nfn, pfn, d, ...) \ argument
76 CHECK_ENTRY(nm, tfn, nfn, pfn, d, true, false, __VA_ARGS__)
77 #define ERROR(nm, tfn, nfn, pfn, d, ...) \ argument
78 CHECK_ENTRY(nm, tfn, nfn, pfn, d, false, true, __VA_ARGS__)
[all …]
Ddata.c25 struct marker *m, *nm; in data_free() local
29 nm = m->next; in data_free()
32 m = nm; in data_free()
/linux-4.4.14/Documentation/hwmon/
Dcoretemp7 CPUID: family 0x6, models 0xe (Pentium M DC), 0xf (Core 2 DC 65nm),
8 0x16 (Core 2 SC 65nm), 0x17 (Penryn 45nm),
57 22nm Core i5/i7 Processors
68 32nm Core i3/i5/i7 Processors
75 32nm Core i7 Extreme Processors
78 32nm Celeron Processors
82 32nm Atom Processors
90 45nm Xeon Processors 5400 Quad-Core
96 45nm Xeon Processors 5200 Dual-Core
103 45nm Atom Processors
[all …]
Dlm9523426 beta compensation technology allows sensing of 90 nm or 65 nm process
/linux-4.4.14/security/selinux/ss/
Dmls.c38 char *nm; in mls_compute_context_len() local
58 nm = sym_name(&policydb, SYM_CATS, prev); in mls_compute_context_len()
59 len += strlen(nm) + 1; in mls_compute_context_len()
61 nm = sym_name(&policydb, SYM_CATS, i); in mls_compute_context_len()
62 len += strlen(nm) + 1; in mls_compute_context_len()
68 nm = sym_name(&policydb, SYM_CATS, prev); in mls_compute_context_len()
69 len += strlen(nm) + 1; in mls_compute_context_len()
91 char *scontextp, *nm; in mls_sid_to_context() local
121 nm = sym_name(&policydb, SYM_CATS, prev); in mls_sid_to_context()
122 strcpy(scontextp, nm); in mls_sid_to_context()
[all …]
/linux-4.4.14/drivers/scsi/fcoe/
Dfcoe_transport.c549 struct fcoe_netdev_mapping *nm = NULL, *tmp; in fcoe_transport_detach() local
561 list_for_each_entry_safe(nm, tmp, &fcoe_netdevs, list) { in fcoe_transport_detach()
562 if (nm->ft == ft) { in fcoe_transport_detach()
565 ft->name, nm->netdev->name); in fcoe_transport_detach()
566 list_del(&nm->list); in fcoe_transport_detach()
567 kfree(nm); in fcoe_transport_detach()
624 struct fcoe_netdev_mapping *nm; in fcoe_add_netdev_mapping() local
626 nm = kmalloc(sizeof(*nm), GFP_KERNEL); in fcoe_add_netdev_mapping()
627 if (!nm) { in fcoe_add_netdev_mapping()
632 nm->netdev = netdev; in fcoe_add_netdev_mapping()
[all …]
/linux-4.4.14/Documentation/devicetree/bindings/bus/
Dbrcm,gisb-arb.txt6 "brcm,gisb-arb" or "brcm,bcm7445-gisb-arb" for 28nm chips
7 "brcm,bcm7435-gisb-arb" for newer 40nm chips
8 "brcm,bcm7400-gisb-arb" for older 40nm chips and all 65nm chips
9 "brcm,bcm7038-gisb-arb" for 130nm chips
/linux-4.4.14/drivers/gpu/drm/msm/
DKconfig45 bool "Enable DSI 28nm PHY driver in MSM DRM"
49 Choose this option if the 28nm DSI PHY is used on the platform.
52 bool "Enable DSI 20nm PHY driver in MSM DRM"
56 Choose this option if the 20nm DSI PHY is used on the platform.
/linux-4.4.14/scripts/
Drecordmcount.pl123 $ld, $nm, $rm, $mv, $is_module, $inputfile) = @ARGV;
146 $nm = 'nm' if (!$nm);
414 open (IN, "$nm $inputfile|") || die "error running $nm";
Dnamespace.pl69 my $nm = ($ENV{'NM'} || "nm") . " -p";
259 open (my $nmdata, "$nm $basename|")
260 or die "$nm $fullname failed $!\n";
Ddecode_stacktrace.sh35 local base_addr=$(nm "$vmlinux" | grep -i ' t ' | awk "/ $name\$/ {print \$1}" | head -n1)
/linux-4.4.14/arch/x86/um/vdso/
Dcheckundef.sh2 nm="$1"
4 $nm "$file" | grep '^ *U' > /dev/null 2>&1
/linux-4.4.14/arch/x86/entry/vdso/
Dcheckundef.sh2 nm="$1"
4 $nm "$file" | grep '^ *U' > /dev/null 2>&1
/linux-4.4.14/tools/perf/util/
Dbuild-id.c201 char nm[PATH_MAX]; in machine__write_buildid_table() local
222 machine__mmap_name(machine, nm, sizeof(nm)); in machine__write_buildid_table()
223 name = nm; in machine__write_buildid_table()
224 name_len = strlen(nm) + 1; in machine__write_buildid_table()
482 char nm[PATH_MAX]; in dso__cache_build_id() local
486 machine__mmap_name(machine, nm, sizeof(nm)); in dso__cache_build_id()
487 name = nm; in dso__cache_build_id()
/linux-4.4.14/arch/arc/include/asm/
Dlinkage.h17 .macro ARCFP_DATA nm
23 .global \nm
/linux-4.4.14/drivers/phy/
DMakefile14 obj-$(CONFIG_PHY_PXA_28NM_USB2) += phy-pxa-28nm-usb2.o
15 obj-$(CONFIG_PHY_PXA_28NM_HSIC) += phy-pxa-28nm-hsic.o
45 obj-$(CONFIG_PHY_QCOM_UFS) += phy-qcom-ufs-qmp-20nm.o
46 obj-$(CONFIG_PHY_QCOM_UFS) += phy-qcom-ufs-qmp-14nm.o
DKconfig69 tristate "Marvell USB HSIC 28nm PHY Driver"
80 tristate "Marvell USB 2.0 28nm PHY Driver"
381 Enable this to support the SATA3 PHY on 28nm Broadcom STB SoCs.
/linux-4.4.14/include/linux/
Dtransport_class.h28 #define DECLARE_TRANSPORT_CLASS(cls, nm, su, rm, cfg) \ argument
31 .name = nm, \
/linux-4.4.14/Documentation/devicetree/bindings/ufs/
Dufs-qcom.txt10 - compatible : compatible list, contains "qcom,ufs-phy-qmp-20nm"
11 or "qcom,ufs-phy-qmp-14nm" according to the relevant phy in use.
34 compatible = "qcom,ufs-phy-qmp-20nm";
/linux-4.4.14/drivers/md/
Dmd.h568 char nm[20]; in sysfs_link_rdev() local
572 sprintf(nm, "rd%d", rdev->raid_disk); in sysfs_link_rdev()
573 return sysfs_create_link(&mddev->kobj, &rdev->kobj, nm); in sysfs_link_rdev()
580 char nm[20]; in sysfs_unlink_rdev() local
584 sprintf(nm, "rd%d", rdev->raid_disk); in sysfs_unlink_rdev()
585 sysfs_remove_link(&mddev->kobj, nm); in sysfs_unlink_rdev()
/linux-4.4.14/Documentation/devicetree/bindings/display/msm/
Ddsi.txt51 * "qcom,dsi-phy-28nm-hpm"
52 * "qcom,dsi-phy-28nm-lp"
53 * "qcom,dsi-phy-20nm"
135 compatible = "qcom,dsi-phy-28nm-hpm";
/linux-4.4.14/arch/parisc/
Dnm6 ${CROSS_COMPILE}nm $* | grep -v '.LC*[0-9]*$'
DMakefile24 NM = sh $(srctree)/arch/parisc/nm
/linux-4.4.14/drivers/media/platform/sti/c8sectpfe/
Dc8sectpfe-debugfs.c28 #define dump_register(nm ...) \ argument
30 .name = #nm, \
31 .offset = nm, \
/linux-4.4.14/arch/arc/kernel/
Dtroubleshoot.c87 char *nm = buf; in show_faulting_vma() local
102 nm = file_path(file, buf, PAGE_SIZE - 1); in show_faulting_vma()
111 nm, vma->vm_start, vma->vm_end); in show_faulting_vma()
/linux-4.4.14/drivers/net/wireless/ath/ath9k/
Dhtc_drv_debug.c402 #define AMKSTR(nm) #nm "_BE", #nm "_BK", #nm "_VI", #nm "_VO" argument
Ddebug.c1180 #define AMKSTR(nm) #nm "_BE", #nm "_BK", #nm "_VI", #nm "_VO" argument
/linux-4.4.14/Documentation/arm/sti/
Dstih418-overview.txt12 - ARM Cortex-A9 1.5 GHz quad core CPU (28nm)
Dstih407-overview.txt12 - ARM Cortex-A9 1.5 GHz dual core CPU (28nm)
/linux-4.4.14/include/drm/
Ddrm_modes.h83 #define DRM_MODE(nm, t, c, hd, hss, hse, ht, hsk, vd, vss, vse, vt, vs, f) \ argument
84 .name = nm, .status = 0, .type = (t), .clock = (c), \
/linux-4.4.14/arch/sparc/kernel/
Dioport.c682 const char *nm; in sparc_io_proc_show() local
685 if ((nm = r->name) == NULL) nm = "???"; in sparc_io_proc_show()
688 (unsigned long long)r->end, nm); in sparc_io_proc_show()
/linux-4.4.14/drivers/mtd/ubi/
Ddebug.c206 char nm[17]; in ubi_dump_mkvol_req() local
215 memcpy(nm, req->name, 16); in ubi_dump_mkvol_req()
216 nm[16] = 0; in ubi_dump_mkvol_req()
217 pr_err("\t1st 16 characters of name: %s\n", nm); in ubi_dump_mkvol_req()
/linux-4.4.14/drivers/iommu/
Damd_iommu_types.h719 #define DECLARE_STATS_COUNTER(nm) \ argument
720 static struct __iommu_counter nm = { \
721 .name = #nm, \
/linux-4.4.14/arch/powerpc/boot/
Dwrapper421 base=0x`${CROSS}nm "$ofile" | grep ' _start$' | cut -d' ' -f1`
463 system_reset_overlay=0x`${CROSS}nm "$ofile" \
467 system_reset_kernel=0x`${CROSS}nm "$ofile" \
/linux-4.4.14/include/linux/mtd/
Dnand.h748 #define LEGACY_ID_NAND(nm, devid, chipsz, erasesz, opts) \ argument
749 { .name = (nm), {{ .dev_id = (devid) }}, .pagesize = 512, \
762 #define EXTENDED_ID_NAND(nm, devid, chipsz, opts) \ argument
763 { .name = (nm), {{ .dev_id = (devid) }}, .chipsize = (chipsz), \
/linux-4.4.14/block/
Dblk-sysfs.c270 unsigned long nm; in queue_nomerges_store() local
271 ssize_t ret = queue_var_store(&nm, page, count); in queue_nomerges_store()
279 if (nm == 2) in queue_nomerges_store()
281 else if (nm) in queue_nomerges_store()
/linux-4.4.14/mm/
Dmempolicy.c1468 unsigned long __user *nm = NULL; in COMPAT_SYSCALL_DEFINE5() local
1476 nm = compat_alloc_user_space(alloc_size); in COMPAT_SYSCALL_DEFINE5()
1478 err = sys_get_mempolicy(policy, nm, nr_bits+1, addr, flags); in COMPAT_SYSCALL_DEFINE5()
1483 err = copy_from_user(bm, nm, copy_size); in COMPAT_SYSCALL_DEFINE5()
1496 unsigned long __user *nm = NULL; in COMPAT_SYSCALL_DEFINE3() local
1505 nm = compat_alloc_user_space(alloc_size); in COMPAT_SYSCALL_DEFINE3()
1506 err |= copy_to_user(nm, bm, alloc_size); in COMPAT_SYSCALL_DEFINE3()
1512 return sys_set_mempolicy(mode, nm, nr_bits+1); in COMPAT_SYSCALL_DEFINE3()
1520 unsigned long __user *nm = NULL; in COMPAT_SYSCALL_DEFINE6() local
1529 nm = compat_alloc_user_space(alloc_size); in COMPAT_SYSCALL_DEFINE6()
[all …]
/linux-4.4.14/Documentation/devicetree/bindings/arm/bcm/
Dbrcm,brcmstb.txt101 The string property "brcm,brcmstb-reboot" for 40nm/28nm chips with
102 the new SYS_CTRL interface, or "brcm,bcm7038-reboot" for 65nm
/linux-4.4.14/Documentation/devicetree/bindings/usb/
Dmsm-hsusb.txt22 "qcom,usb-otg-ci" for chipsets with ChipIdea 45nm PHY
23 "qcom,usb-otg-snps" for chipsets with Synopsys 28nm PHY
/linux-4.4.14/Documentation/ABI/testing/
Dsysfs-class-devfreq68 Contact: Nishanth Menon <nm@ti.com>
77 Contact: Nishanth Menon <nm@ti.com>
/linux-4.4.14/sound/pci/asihpi/
Dhpioctl.c341 int idx, nm, low_latency_mode = 0, irq_supported = 0; in asihpi_adapter_probe() local
371 nm = HPI_MAX_ADAPTER_MEM_SPACES; in asihpi_adapter_probe()
373 for (idx = 0; idx < nm; idx++) { in asihpi_adapter_probe()
/linux-4.4.14/drivers/pinctrl/
Dpinctrl-zynq.c389 #define DEFINE_ZYNQ_PINCTRL_GRP(nm) \ argument
391 .name = #nm "_grp", \
392 .pins = nm ## _pins, \
393 .npins = ARRAY_SIZE(nm ## _pins), \
/linux-4.4.14/drivers/usb/dwc3/
Ddebugfs.c36 #define dump_register(nm) \ argument
38 .name = __stringify(nm), \
39 .offset = DWC3_ ##nm - DWC3_GLOBALS_REGS_START, \
/linux-4.4.14/arch/arm/plat-omap/
DKconfig31 V1 is the 65nm version used in OMAP3430.
32 V2 is the update for the 45nm version of the IP used in OMAP3630
/linux-4.4.14/drivers/usb/dwc2/
Ddebugfs.c394 #define dump_register(nm) \ argument
396 .name = #nm, \
397 .offset = nm, \
/linux-4.4.14/arch/ia64/
DMakefile16 NM := $(CROSS_COMPILE)nm -B
/linux-4.4.14/tools/lib/traceevent/
DMakefile26 $(call allow-override,NM,$(CROSS_COMPILE)nm)
/linux-4.4.14/arch/mips/boot/dts/brcm/
Dbcm7420.dtsi142 compatible = "brcm,65nm-ephy",
Dbcm7435.dtsi157 compatible = "brcm,40nm-ephy",
Dbcm7358.dtsi220 compatible = "brcm,40nm-ephy",
Dbcm7360.dtsi220 compatible = "brcm,40nm-ephy",
Dbcm7425.dtsi143 compatible = "brcm,40nm-ephy",
Dbcm7362.dtsi216 compatible = "brcm,40nm-ephy",
Dbcm7346.dtsi236 compatible = "brcm,40nm-ephy",
/linux-4.4.14/drivers/net/phy/
DKconfig107 40nm and 65nm generation of BCM7xxx Set Top Box SoCs.
/linux-4.4.14/arch/arm/boot/compressed/
DMakefile158 bad_syms=$$($(CROSS_COMPILE)nm $@ | sed -n 's/^.\{8\} [bc] \(.*\)/\1/p') && \
/linux-4.4.14/drivers/gpu/drm/radeon/
Dradeon_i2c.c240 u32 nm; in radeon_get_i2c_prescale() local
258 nm = (sclk * 10) / (i2c_clock * 4); in radeon_get_i2c_prescale()
260 if ((nm / loop) < loop) in radeon_get_i2c_prescale()
/linux-4.4.14/Documentation/devicetree/bindings/net/
Dbrcm,bcmgenet.txt71 compatible = "brcm,28nm-gphy", "ethernet-phy-ieee802.3-c22";
/linux-4.4.14/drivers/staging/rdma/hfi1/
Ddebugfs.c680 #define DEBUGFS_OPS(nm, readroutine, writeroutine) \ argument
682 .name = nm, \
/linux-4.4.14/arch/sh/boards/
DKconfig167 SH7786-65nm board.
/linux-4.4.14/Documentation/networking/
Dixgb.txt56 82597EX Intel(R) PRO/10GbE LR/SR/CX4 10G Base-LR (1310 nm optical fiber)
57 Server Adapters 10G Base-SR (850 nm optical fiber)
/linux-4.4.14/arch/microblaze/boot/dts/
Dsystem.dts122 xlnx,use-ext-nm-brk = <0x1>;
/linux-4.4.14/drivers/scsi/qla2xxx/
Dtcm_qla2xxx.c121 static int tcm_qla2xxx_npiv_extract_wwn(const char *ns, u64 *nm) in tcm_qla2xxx_npiv_extract_wwn() argument
144 *nm = wwn_to_u64(wwn); in tcm_qla2xxx_npiv_extract_wwn()
/linux-4.4.14/drivers/staging/lustre/lustre/include/
Dobd_class.h76 const char *nm, struct lu_device_type *ldt);
77 int class_unregister_type(const char *nm);
/linux-4.4.14/drivers/media/usb/uvc/
Duvc_ctrl.c2195 struct uvc_control_mapping *mapping, *nm; in uvc_ctrl_cleanup_mappings() local
2197 list_for_each_entry_safe(mapping, nm, &ctrl->info.mappings, list) { in uvc_ctrl_cleanup_mappings()
/linux-4.4.14/Documentation/power/
Dopp.txt4 (C) 2009-2010 Nishanth Menon <nm@ti.com>, Texas Instruments Incorporated
/linux-4.4.14/net/iucv/
Daf_iucv.c381 static struct sock *__iucv_get_sock_by_name(char *nm) in __iucv_get_sock_by_name() argument
386 if (!memcmp(&iucv_sk(sk)->src_name, nm, 8)) in __iucv_get_sock_by_name()
/linux-4.4.14/
DREADME373 nm vmlinux | sort | less
DMakefile348 NM = $(CROSS_COMPILE)nm
DMAINTAINERS7912 M: Nishanth Menon <nm@ti.com>
9861 M: Nishanth Menon <nm@ti.com>
/linux-4.4.14/drivers/scsi/
Dscsi_transport_fc.c1818 fc_parse_wwn(const char *ns, u64 *nm) in fc_parse_wwn() argument
1840 *nm = wwn_to_u64(wwn); in fc_parse_wwn()