Home
last modified time | relevance | path

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

123456789

/openbmc/linux/drivers/clk/sunxi-ng/
H A Dccu_nm.c31 unsigned long rate, struct _ccu_nm *nm) in ccu_nm_find_best() argument
37 for (_n = nm->min_n; _n <= nm->max_n; _n++) { in ccu_nm_find_best()
38 for (_m = nm->min_m; _m <= nm->max_m; _m++) { in ccu_nm_find_best()
50 nm->n = best_n; in ccu_nm_find_best()
51 nm->m = best_m; in ccu_nm_find_best()
58 struct ccu_nm *nm = hw_to_ccu_nm(hw); in ccu_nm_disable() local
60 return ccu_gate_helper_disable(&nm->common, nm->enable); in ccu_nm_disable()
65 struct ccu_nm *nm = hw_to_ccu_nm(hw); in ccu_nm_enable() local
67 return ccu_gate_helper_enable(&nm->common, nm->enable); in ccu_nm_enable()
72 struct ccu_nm *nm = hw_to_ccu_nm(hw); in ccu_nm_is_enabled() local
[all …]
/openbmc/linux/drivers/ntb/test/
H A Dntb_msi_test.c28 struct ntb_msit_ctx *nm; member
33 struct ntb_msit_ctx *nm; member
46 struct ntb_msit_ctx *nm = isr_ctx->nm; in ntb_msit_isr() local
48 dev_dbg(&nm->ntb->dev, "Interrupt Occurred: %d", in ntb_msit_isr()
58 struct ntb_msit_ctx *nm = container_of(work, struct ntb_msit_ctx, in ntb_msit_setup_work() local
65 ret = ntb_msi_setup_mws(nm->ntb); in ntb_msit_setup_work()
67 dev_err(&nm->ntb->dev, "Unable to setup MSI windows: %d\n", in ntb_msit_setup_work()
73 nm->isr_ctx[i].irq_idx = i; in ntb_msit_setup_work()
74 nm->isr_ctx[i].nm = nm; in ntb_msit_setup_work()
76 if (!nm->isr_ctx[i].irq_num) { in ntb_msit_setup_work()
[all …]
/openbmc/openbmc/meta-openembedded/meta-networking/recipes-connectivity/networkmanager/networkmanager-fortisslvpn/
H A D0001-fix-ppp-2.5.0-build.patch15 src/nm-fortisslvpn-pppd-compat.h | 93 +++++++++++++++++++
16 src/nm-fortisslvpn-pppd-plugin.c | 24 ++---
17 ...-status.h => nm-fortisslvpn-pppd-status.h} | 0
18 src/nm-fortisslvpn-service.c | 2 +-
20 create mode 100644 src/nm-fortisslvpn-pppd-compat.h
21 rename src/{nm-ppp-status.h => nm-fortisslvpn-pppd-status.h} (100%)
27 @@ -81,7 +81,7 @@ libexec_PROGRAMS += src/nm-fortisslvpn-service
29 shared/nm-utils/nm-shared-utils.c \
30 shared/nm-utils/nm-shared-utils.h \
31 - src/nm-ppp-status.h \
[all …]
/openbmc/linux/fs/ubifs/
H A Dxattr.c82 const struct fscrypt_name *nm, const void *value, int size) in create_xattr() argument
102 names_len = host_ui->xattr_names + host_ui->xattr_cnt + fname_len(nm) + 1; in create_xattr()
139 host_ui->xattr_size += CALC_DENT_SIZE(fname_len(nm)); in create_xattr()
141 host_ui->xattr_names += fname_len(nm); in create_xattr()
149 if (strcmp(fname_name(nm), UBIFS_XATTR_NAME_ENCRYPTION_CONTEXT) == 0) in create_xattr()
152 err = ubifs_jnl_update(c, host, nm, inode, 0, 1); in create_xattr()
165 host_ui->xattr_size -= CALC_DENT_SIZE(fname_len(nm)); in create_xattr()
167 host_ui->xattr_names -= fname_len(nm); in create_xattr()
268 struct fscrypt_name nm = { .disk_name = FSTR_INIT((char *)name, strlen(name))}; in ubifs_xattr_set() local
279 if (fname_len(&nm) > UBIFS_MAX_NLEN) in ubifs_xattr_set()
[all …]
H A Ddir.c184 const struct fscrypt_name *nm) in dbg_check_name() argument
188 if (le16_to_cpu(dent->nlen) != fname_len(nm)) in dbg_check_name()
190 if (memcmp(dent->name, fname_name(nm), fname_len(nm))) in dbg_check_name()
203 struct fscrypt_name nm; in ubifs_lookup() local
207 err = fscrypt_prepare_lookup(dir, dentry, &nm); in ubifs_lookup()
214 if (fname_len(&nm) > UBIFS_MAX_NLEN) { in ubifs_lookup()
225 if (fname_name(&nm) == NULL) { in ubifs_lookup()
226 if (nm.hash & ~UBIFS_S_KEY_HASH_MASK) in ubifs_lookup()
228 dent_key_init_hash(c, &key, dir->i_ino, nm.hash); in ubifs_lookup()
229 err = ubifs_tnc_lookup_dh(c, &key, dent, nm.minor_hash); in ubifs_lookup()
[all …]
H A Dkey.h148 const struct fscrypt_name *nm) in dent_key_init() argument
150 uint32_t hash = c->key_hash(fname_name(nm), fname_len(nm)); in dent_key_init()
183 const struct fscrypt_name *nm) in dent_key_init_flash() argument
186 uint32_t hash = c->key_hash(fname_name(nm), fname_len(nm)); in dent_key_init_flash()
217 const struct fscrypt_name *nm) in xent_key_init() argument
219 uint32_t hash = c->key_hash(fname_name(nm), fname_len(nm)); in xent_key_init()
234 ino_t inum, const struct fscrypt_name *nm) in xent_key_init_flash() argument
237 uint32_t hash = c->key_hash(fname_name(nm), fname_len(nm)); in xent_key_init_flash()
H A Dtnc.c569 const struct fscrypt_name *nm) in matches_name() argument
592 err = memcmp(dent->name, fname_name(nm), min_t(int, nlen, fname_len(nm))); in matches_name()
594 if (nlen == fname_len(nm)) in matches_name()
596 else if (nlen < fname_len(nm)) in matches_name()
739 const struct fscrypt_name *nm) in resolve_collision() argument
743 err = matches_name(c, &(*zn)->zbranch[*n], nm); in resolve_collision()
804 err = matches_name(c, &(*zn)->zbranch[*n], nm); in resolve_collision()
826 err = matches_name(c, &znode->zbranch[nn], nm); in resolve_collision()
857 const struct fscrypt_name *nm) in fallible_matches_name() argument
885 err = memcmp(dent->name, fname_name(nm), min_t(int, nlen, fname_len(nm))); in fallible_matches_name()
[all …]
/openbmc/linux/Documentation/hwmon/
H A Dcoretemp.rst11 - 0xe (Pentium M DC), 0xf (Core 2 DC 65nm),
12 - 0x16 (Core 2 SC 65nm), 0x17 (Penryn 45nm),
70 22nm Core i5/i7 Processors
81 32nm Core i3/i5/i7 Processors
88 32nm Core i7 Extreme Processors
91 32nm Celeron Processors
95 32nm Atom Processors
103 45nm Xeon Processors 5400 Quad-Core
109 45nm Xeon Processors 5200 Dual-Core
116 45nm Atom Processors
[all …]
/openbmc/openbmc/meta-openembedded/meta-oe/recipes-connectivity/krb5/krb5/
H A Dcrosscompile_nm.patch2 defaulting to using 'nm'
20 -open NM, "nm -Dg --defined-only $libfile |" || die "can't run nm on $libfile: $!";
22 + $nm = $ENV{'NM'};
24 + $nm = "nm";
26 +open NM, "$nm -Dg --defined-only $libfile |" || die "can't run nm on $libfile: $!";
/openbmc/linux/security/selinux/ss/
H A Dmls.c39 char *nm; in mls_compute_context_len() local
59 nm = sym_name(p, SYM_CATS, prev); in mls_compute_context_len()
60 len += strlen(nm) + 1; in mls_compute_context_len()
62 nm = sym_name(p, SYM_CATS, i); in mls_compute_context_len()
63 len += strlen(nm) + 1; in mls_compute_context_len()
69 nm = sym_name(p, SYM_CATS, prev); in mls_compute_context_len()
70 len += strlen(nm) + 1; in mls_compute_context_len()
93 char *scontextp, *nm; in mls_sid_to_context() local
123 nm = sym_name(p, SYM_CATS, prev); in mls_sid_to_context()
124 strcpy(scontextp, nm); in mls_sid_to_context()
[all …]
/openbmc/u-boot/fs/ubifs/
H A Dkey.h142 const struct qstr *nm) in dent_key_init() argument
144 uint32_t hash = c->key_hash(nm->name, nm->len); in dent_key_init()
176 ino_t inum, const struct qstr *nm) in dent_key_init_flash() argument
179 uint32_t hash = c->key_hash(nm->name, nm->len); in dent_key_init_flash()
210 const struct qstr *nm) in xent_key_init() argument
212 uint32_t hash = c->key_hash(nm->name, nm->len); in xent_key_init()
227 ino_t inum, const struct qstr *nm) in xent_key_init_flash() argument
230 uint32_t hash = c->key_hash(nm->name, nm->len); in xent_key_init_flash()
H A Dubifs.c303 struct qstr nm; in ubifs_printdir() local
321 nm.name = NULL; in ubifs_printdir()
322 dent = ubifs_tnc_next_ent(c, &key, &nm); in ubifs_printdir()
340 nm.name = NULL; in ubifs_printdir()
341 dent = ubifs_tnc_next_ent(c, &key, &nm); in ubifs_printdir()
358 nm.len = le16_to_cpu(dent->nlen); in ubifs_printdir()
359 over = filldir(c, (char *)dent->name, nm.len, in ubifs_printdir()
366 nm.name = (char *)dent->name; in ubifs_printdir()
367 dent = ubifs_tnc_next_ent(c, &key, &nm); in ubifs_printdir()
395 struct qstr nm; in ubifs_finddir() local
[all …]
H A Dtnc.c517 const struct qstr *nm) in matches_name() argument
540 err = memcmp(dent->name, nm->name, min_t(int, nlen, nm->len)); in matches_name()
542 if (nlen == nm->len) in matches_name()
544 else if (nlen < nm->len) in matches_name()
687 const struct qstr *nm) in resolve_collision() argument
691 err = matches_name(c, &(*zn)->zbranch[*n], nm); in resolve_collision()
752 err = matches_name(c, &(*zn)->zbranch[*n], nm); in resolve_collision()
774 err = matches_name(c, &znode->zbranch[nn], nm); in resolve_collision()
805 const struct qstr *nm) in fallible_matches_name() argument
833 err = memcmp(dent->name, nm->name, min_t(int, nlen, nm->len)); in fallible_matches_name()
[all …]
/openbmc/linux/drivers/scsi/fcoe/
H A Dfcoe_transport.c564 struct fcoe_netdev_mapping *nm = NULL, *tmp; in fcoe_transport_detach() local
576 list_for_each_entry_safe(nm, tmp, &fcoe_netdevs, list) { in fcoe_transport_detach()
577 if (nm->ft == ft) { in fcoe_transport_detach()
580 ft->name, nm->netdev->name); in fcoe_transport_detach()
581 list_del(&nm->list); in fcoe_transport_detach()
582 kfree(nm); in fcoe_transport_detach()
639 struct fcoe_netdev_mapping *nm; in fcoe_add_netdev_mapping() local
641 nm = kmalloc(sizeof(*nm), GFP_KERNEL); in fcoe_add_netdev_mapping()
642 if (!nm) { in fcoe_add_netdev_mapping()
647 nm->netdev = netdev; in fcoe_add_netdev_mapping()
[all …]
/openbmc/linux/drivers/gpu/drm/msm/
H A DKconfig110 bool "Enable DSI 28nm PHY driver in MSM DRM"
114 Choose this option if the 28nm DSI PHY is used on the platform.
117 bool "Enable DSI 20nm PHY driver in MSM DRM"
121 Choose this option if the 20nm DSI PHY is used on the platform.
124 bool "Enable DSI 28nm 8960 PHY driver in MSM DRM"
128 Choose this option if the 28nm DSI PHY 8960 variant is used on the
132 bool "Enable DSI 14nm PHY driver in MSM DRM (used by MSM8996/APQ8096)"
139 bool "Enable DSI 10nm PHY driver in MSM DRM (used by SDM845)"
146 bool "Enable DSI 7nm/5nm/4nm PHY driver in MSM DRM"
/openbmc/linux/arch/powerpc/tools/
H A Dunrel_branch_check.sh10 nm="$2"
15 end_intr=0x$($nm -p "$vmlinux" |
24 sim=0x$($nm -p "$vmlinux" |
/openbmc/qemu/scripts/
H A Dundefsym.py32 nm = args[1]
34 pc = subprocess.run([nm, "-P", "-g", staticlib], stdout=subprocess.PIPE)
40 pc = subprocess.run([nm, "-P", "-g"] + shared_modules, stdout=subprocess.PIPE)
/openbmc/openbmc/meta-openembedded/meta-networking/files/
H A Dstatic-passwd-meta-networking14 nm-openconnect:x:652:nogroup::/:/bin/nologin
16 nm-fortisslvpn:x:654:nogroup::/:/bin/nologin
17 nm-openvpn:x:655:nogroup::/:/bin/nologin
/openbmc/linux/scripts/
H A Drecordmcount.pl124 $ld, $nm, $rm, $mv, $is_module, $inputfile) = @ARGV;
155 $nm = 'nm' if (!$nm);
405 open (IN, "$nm $inputfile|") || die "error running $nm";
H A Drelocs_check.sh9 nm="$2"
16 undef_weak_symbols=$($nm "$vmlinux" | awk '$1 ~ /w/ { print $2 }')
/openbmc/linux/arch/arc/kernel/
H A Dtroubleshoot.c93 char *nm = "?"; in show_faulting_vma() local
96 nm = file_path(vma->vm_file, buf, ARC_PATH_MAX-1); in show_faulting_vma()
97 if (IS_ERR(nm)) in show_faulting_vma()
98 nm = "?"; in show_faulting_vma()
103 nm, vma->vm_start, vma->vm_end); in show_faulting_vma()
/openbmc/openbmc/meta-openembedded/meta-networking/recipes-support/strongswan/
H A Dstrongswan_6.0.0.bb46 PACKAGECONFIG[nm] = "--enable-nm,--disable-nm,networkmanager,${PN}-nm"
114 PACKAGES =+ "${PN}-nm ${PN}-nm-dbg"
115 FILES:${PN}-nm = "${libexecdir}/ipsec/charon-nm ${datadir}/dbus-1/system.d/nm-strongswan-service.co…
116 FILES:${PN}-nm-dbg = "${libexecdir}/ipsec/.debug/charon-nm"
/openbmc/linux/arch/x86/entry/vdso/
H A Dcheckundef.sh2 nm="$1"
4 $nm "$file" | grep '^ *U' > /dev/null 2>&1
/openbmc/linux/arch/x86/um/vdso/
H A Dcheckundef.sh3 nm="$1"
5 $nm "$file" | grep '^ *U' > /dev/null 2>&1
/openbmc/intel-ipmi-oem/src/
H A Dstoragecommands.cpp1202 NMDiscoveryRecord nm = {}; in getNMDiscoverySDR() local
1203 nm.header.record_id_lsb = recordId; in getNMDiscoverySDR()
1204 nm.header.record_id_msb = recordId >> 8; in getNMDiscoverySDR()
1205 nm.header.sdr_version = ipmiSdrVersion; in getNMDiscoverySDR()
1206 nm.header.record_type = 0xC0; in getNMDiscoverySDR()
1207 nm.header.record_length = 0xB; in getNMDiscoverySDR()
1208 nm.oemID0 = 0x57; in getNMDiscoverySDR()
1209 nm.oemID1 = 0x1; in getNMDiscoverySDR()
1210 nm.oemID2 = 0x0; in getNMDiscoverySDR()
1211 nm.subType = 0x0D; in getNMDiscoverySDR()
[all …]

123456789