/linux-4.1.27/fs/ubifs/ |
D | xattr.c | 101 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() 257 static int check_namespace(const struct qstr *nm) in check_namespace() argument 261 if (nm->len > UBIFS_MAX_NLEN) in check_namespace() 264 if (!strncmp(nm->name, XATTR_TRUSTED_PREFIX, in check_namespace() 266 if (nm->name[sizeof(XATTR_TRUSTED_PREFIX) - 1] == '\0') in check_namespace() [all …]
|
D | key.h | 154 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()
|
D | tnc.c | 523 const struct qstr *nm) in matches_name() argument 546 err = memcmp(dent->name, nm->name, min_t(int, nlen, nm->len)); in matches_name() 548 if (nlen == nm->len) in matches_name() 550 else if (nlen < nm->len) in matches_name() 693 const struct qstr *nm) in resolve_collision() argument 697 err = matches_name(c, &(*zn)->zbranch[*n], nm); in resolve_collision() 758 err = matches_name(c, &(*zn)->zbranch[*n], nm); in resolve_collision() 780 err = matches_name(c, &znode->zbranch[nn], nm); in resolve_collision() 811 const struct qstr *nm) in fallible_matches_name() argument 839 err = memcmp(dent->name, nm->name, min_t(int, nlen, nm->len)); in fallible_matches_name() [all …]
|
D | journal.c | 542 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 …]
|
D | dir.c | 173 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 …]
|
D | replay.c | 64 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()
|
D | ubifs.h | 1541 const struct qstr *nm, const struct inode *inode, 1554 const struct inode *inode, const struct qstr *nm); 1589 void *node, const struct qstr *nm); 1597 int lnum, int offs, int len, const struct qstr *nm); 1600 const struct qstr *nm); 1606 const struct qstr *nm);
|
D | debug.c | 236 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.1.27/scripts/dtc/ |
D | checks.c | 61 #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 …]
|
D | data.c | 25 struct marker *m, *nm; in data_free() local 29 nm = m->next; in data_free() 32 m = nm; in data_free()
|
/linux-4.1.27/Documentation/hwmon/ |
D | coretemp | 7 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 …]
|
D | lm95234 | 26 beta compensation technology allows sensing of 90 nm or 65 nm process
|
/linux-4.1.27/security/selinux/ss/ |
D | mls.c | 38 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.1.27/drivers/scsi/fcoe/ |
D | fcoe_transport.c | 549 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.1.27/Documentation/devicetree/bindings/bus/ |
D | brcm,gisb-arb.txt | 6 "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.1.27/scripts/ |
D | recordmcount.pl | 123 $ld, $nm, $rm, $mv, $is_module, $inputfile) = @ARGV; 146 $nm = 'nm' if (!$nm); 414 open (IN, "$nm $inputfile|") || die "error running $nm";
|
D | namespace.pl | 69 my $nm = ($ENV{'NM'} || "nm") . " -p"; 259 open (my $nmdata, "$nm $basename|") 260 or die "$nm $fullname failed $!\n";
|
D | decode_stacktrace.sh | 32 local base_addr=$(nm "$vmlinux" | grep -i ' t ' | awk "/ $name\$/ {print \$1}" | head -n1)
|
/linux-4.1.27/arch/x86/vdso/ |
D | checkundef.sh | 2 nm="$1" 4 $nm "$file" | grep '^ *U' > /dev/null 2>&1
|
/linux-4.1.27/arch/x86/um/vdso/ |
D | checkundef.sh | 2 nm="$1" 4 $nm "$file" | grep '^ *U' > /dev/null 2>&1
|
/linux-4.1.27/tools/perf/util/ |
D | build-id.c | 166 char nm[PATH_MAX]; in __dsos__write_buildid_table() local 181 machine__mmap_name(machine, nm, sizeof(nm)); in __dsos__write_buildid_table() 182 name = nm; in __dsos__write_buildid_table() 183 name_len = strlen(nm) + 1; in __dsos__write_buildid_table() 467 char nm[PATH_MAX]; in dso__cache_build_id() local 471 machine__mmap_name(machine, nm, sizeof(nm)); in dso__cache_build_id() 472 name = nm; in dso__cache_build_id()
|
/linux-4.1.27/arch/arc/include/asm/ |
D | linkage.h | 17 .macro ARCFP_DATA nm 23 .global \nm
|
/linux-4.1.27/include/linux/ |
D | transport_class.h | 28 #define DECLARE_TRANSPORT_CLASS(cls, nm, su, rm, cfg) \ argument 31 .name = nm, \
|
/linux-4.1.27/drivers/md/ |
D | md.h | 566 char nm[20]; in sysfs_link_rdev() local 568 sprintf(nm, "rd%d", rdev->raid_disk); in sysfs_link_rdev() 569 return sysfs_create_link(&mddev->kobj, &rdev->kobj, nm); in sysfs_link_rdev() 576 char nm[20]; in sysfs_unlink_rdev() local 578 sprintf(nm, "rd%d", rdev->raid_disk); in sysfs_unlink_rdev() 579 sysfs_remove_link(&mddev->kobj, nm); in sysfs_unlink_rdev()
|
/linux-4.1.27/Documentation/devicetree/bindings/arm/bcm/ |
D | brcm,brcmstb.txt | 82 The string property "brcm,brcmstb-reboot" for 40nm/28nm chips with 83 the new SYS_CTRL interface, or "brcm,bcm7038-reboot" for 65nm
|
/linux-4.1.27/arch/parisc/ |
D | nm | 6 ${CROSS_COMPILE}nm $* | grep -v '.LC*[0-9]*$'
|
D | Makefile | 24 NM = sh $(srctree)/arch/parisc/nm
|
/linux-4.1.27/arch/arc/kernel/ |
D | troubleshoot.c | 87 char *nm = buf; in show_faulting_vma() local 103 nm = d_path(path, buf, PAGE_SIZE - 1); in show_faulting_vma() 112 nm, vma->vm_start, vma->vm_end); in show_faulting_vma()
|
/linux-4.1.27/drivers/phy/ |
D | Makefile | 41 obj-$(CONFIG_PHY_QCOM_UFS) += phy-qcom-ufs-qmp-20nm.o 42 obj-$(CONFIG_PHY_QCOM_UFS) += phy-qcom-ufs-qmp-14nm.o
|
/linux-4.1.27/include/drm/ |
D | drm_modes.h | 83 #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.1.27/drivers/net/wireless/ath/ath9k/ |
D | htc_drv_debug.c | 402 #define AMKSTR(nm) #nm "_BE", #nm "_BK", #nm "_VI", #nm "_VO" argument
|
D | debug.c | 1178 #define AMKSTR(nm) #nm "_BE", #nm "_BK", #nm "_VI", #nm "_VO" argument
|
/linux-4.1.27/Documentation/arm/sti/ |
D | stih407-overview.txt | 12 - ARM Cortex-A9 1.5 GHz dual core CPU (28nm)
|
D | stih418-overview.txt | 12 - ARM Cortex-A9 1.5 GHz quad core CPU (28nm)
|
/linux-4.1.27/arch/sparc/kernel/ |
D | ioport.c | 682 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.1.27/drivers/mtd/ubi/ |
D | debug.c | 206 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.1.27/drivers/iommu/ |
D | amd_iommu_types.h | 734 #define DECLARE_STATS_COUNTER(nm) \ argument 735 static struct __iommu_counter nm = { \ 736 .name = #nm, \
|
/linux-4.1.27/arch/powerpc/boot/ |
D | wrapper | 404 base=0x`${CROSS}nm "$ofile" | grep ' _start$' | cut -d' ' -f1` 446 system_reset_overlay=0x`${CROSS}nm "$ofile" \ 450 system_reset_kernel=0x`${CROSS}nm "$ofile" \
|
/linux-4.1.27/block/ |
D | blk-sysfs.c | 235 unsigned long nm; in queue_nomerges_store() local 236 ssize_t ret = queue_var_store(&nm, page, count); in queue_nomerges_store() 244 if (nm == 2) in queue_nomerges_store() 246 else if (nm) in queue_nomerges_store()
|
/linux-4.1.27/include/linux/mtd/ |
D | nand.h | 749 #define LEGACY_ID_NAND(nm, devid, chipsz, erasesz, opts) \ argument 750 { .name = (nm), {{ .dev_id = (devid) }}, .pagesize = 512, \ 763 #define EXTENDED_ID_NAND(nm, devid, chipsz, opts) \ argument 764 { .name = (nm), {{ .dev_id = (devid) }}, .chipsize = (chipsz), \
|
/linux-4.1.27/Documentation/devicetree/bindings/usb/ |
D | msm-hsusb.txt | 22 "qcom,usb-otg-ci" for chipsets with ChipIdea 45nm PHY 23 "qcom,usb-otg-snps" for chipsets with Synopsys 28nm PHY
|
/linux-4.1.27/mm/ |
D | mempolicy.c | 1471 unsigned long __user *nm = NULL; in COMPAT_SYSCALL_DEFINE5() local 1479 nm = compat_alloc_user_space(alloc_size); in COMPAT_SYSCALL_DEFINE5() 1481 err = sys_get_mempolicy(policy, nm, nr_bits+1, addr, flags); in COMPAT_SYSCALL_DEFINE5() 1486 err = copy_from_user(bm, nm, copy_size); in COMPAT_SYSCALL_DEFINE5() 1499 unsigned long __user *nm = NULL; in COMPAT_SYSCALL_DEFINE3() local 1508 nm = compat_alloc_user_space(alloc_size); in COMPAT_SYSCALL_DEFINE3() 1509 err |= copy_to_user(nm, bm, alloc_size); in COMPAT_SYSCALL_DEFINE3() 1515 return sys_set_mempolicy(mode, nm, nr_bits+1); in COMPAT_SYSCALL_DEFINE3() 1523 unsigned long __user *nm = NULL; in COMPAT_SYSCALL_DEFINE6() local 1532 nm = compat_alloc_user_space(alloc_size); in COMPAT_SYSCALL_DEFINE6() [all …]
|
/linux-4.1.27/Documentation/ABI/testing/ |
D | sysfs-class-devfreq | 68 Contact: Nishanth Menon <nm@ti.com> 77 Contact: Nishanth Menon <nm@ti.com>
|
/linux-4.1.27/sound/pci/asihpi/ |
D | hpioctl.c | 340 int idx, nm, low_latency_mode = 0, irq_supported = 0; in asihpi_adapter_probe() local 370 nm = HPI_MAX_ADAPTER_MEM_SPACES; in asihpi_adapter_probe() 372 for (idx = 0; idx < nm; idx++) { in asihpi_adapter_probe()
|
/linux-4.1.27/drivers/pinctrl/ |
D | pinctrl-zynq.c | 365 #define DEFINE_ZYNQ_PINCTRL_GRP(nm) \ argument 367 .name = #nm "_grp", \ 368 .pins = nm ## _pins, \ 369 .npins = ARRAY_SIZE(nm ## _pins), \
|
/linux-4.1.27/drivers/usb/dwc3/ |
D | debugfs.c | 36 #define dump_register(nm) \ argument 38 .name = __stringify(nm), \ 39 .offset = DWC3_ ##nm - DWC3_GLOBALS_REGS_START, \
|
/linux-4.1.27/arch/arm/plat-omap/ |
D | Kconfig | 31 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.1.27/arch/mips/boot/dts/brcm/ |
D | bcm7360.dtsi | 136 compatible = "brcm,40nm-ephy",
|
D | bcm7358.dtsi | 136 compatible = "brcm,40nm-ephy",
|
D | bcm7362.dtsi | 142 compatible = "brcm,40nm-ephy",
|
D | bcm7420.dtsi | 142 compatible = "brcm,65nm-ephy",
|
D | bcm7425.dtsi | 143 compatible = "brcm,40nm-ephy",
|
D | bcm7346.dtsi | 142 compatible = "brcm,40nm-ephy",
|
/linux-4.1.27/drivers/net/phy/ |
D | Kconfig | 85 40nm and 65nm generation of BCM7xxx Set Top Box SoCs.
|
/linux-4.1.27/arch/ia64/ |
D | Makefile | 16 NM := $(CROSS_COMPILE)nm -B
|
/linux-4.1.27/arch/arm/boot/compressed/ |
D | Makefile | 160 bad_syms=$$($(CROSS_COMPILE)nm $@ | sed -n 's/^.\{8\} [bc] \(.*\)/\1/p') && \
|
/linux-4.1.27/drivers/gpu/drm/radeon/ |
D | radeon_i2c.c | 240 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.1.27/Documentation/devicetree/bindings/net/ |
D | brcm,bcmgenet.txt | 71 compatible = "brcm,28nm-gphy", "ethernet-phy-ieee802.3-c22";
|
/linux-4.1.27/drivers/gpu/drm/msm/dsi/ |
D | dsi_phy.c | 315 dsi_phy_func_init(28nm); in msm_dsi_phy_init()
|
/linux-4.1.27/arch/sh/boards/ |
D | Kconfig | 167 SH7786-65nm board.
|
/linux-4.1.27/Documentation/networking/ |
D | ixgb.txt | 56 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.1.27/arch/microblaze/boot/dts/ |
D | system.dts | 122 xlnx,use-ext-nm-brk = <0x1>;
|
/linux-4.1.27/drivers/scsi/qla2xxx/ |
D | tcm_qla2xxx.c | 126 static int tcm_qla2xxx_npiv_extract_wwn(const char *ns, u64 *nm) in tcm_qla2xxx_npiv_extract_wwn() argument 149 *nm = wwn_to_u64(wwn); in tcm_qla2xxx_npiv_extract_wwn()
|
/linux-4.1.27/drivers/media/usb/uvc/ |
D | uvc_ctrl.c | 2195 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.1.27/drivers/staging/lustre/lustre/include/ |
D | obd_class.h | 78 struct lprocfs_vars *, const char *nm, 80 int class_unregister_type(const char *nm);
|
/linux-4.1.27/Documentation/power/ |
D | opp.txt | 4 (C) 2009-2010 Nishanth Menon <nm@ti.com>, Texas Instruments Incorporated
|
/linux-4.1.27/net/iucv/ |
D | af_iucv.c | 382 static struct sock *__iucv_get_sock_by_name(char *nm) in __iucv_get_sock_by_name() argument 387 if (!memcmp(&iucv_sk(sk)->src_name, nm, 8)) in __iucv_get_sock_by_name()
|
/linux-4.1.27/ |
D | Makefile | 358 NM = $(CROSS_COMPILE)nm
|
D | README | 373 nm vmlinux | sort | less
|
D | MAINTAINERS | 9106 M: Nishanth Menon <nm@ti.com>
|
/linux-4.1.27/drivers/scsi/ |
D | scsi_transport_fc.c | 1818 fc_parse_wwn(const char *ns, u64 *nm) in fc_parse_wwn() argument 1840 *nm = wwn_to_u64(wwn); in fc_parse_wwn()
|