Home
last modified time | relevance | path

Searched refs:uname (Results 1 – 25 of 372) sorted by relevance

12345678910>>...15

/openbmc/linux/include/linux/
H A Dpage-flags.h421 TESTPAGEFLAG(uname, lname, policy) \
422 SETPAGEFLAG(uname, lname, policy) \
423 CLEARPAGEFLAG(uname, lname, policy)
426 TESTPAGEFLAG(uname, lname, policy) \
427 __SETPAGEFLAG(uname, lname, policy) \
428 __CLEARPAGEFLAG(uname, lname, policy)
431 TESTSETFLAG(uname, lname, policy) \
432 TESTCLEARFLAG(uname, lname, policy)
481 #define PAGEFLAG_FALSE(uname, lname) TESTPAGEFLAG_FALSE(uname, lname) \ argument
482 SETPAGEFLAG_NOOP(uname, lname) CLEARPAGEFLAG_NOOP(uname, lname)
[all …]
H A Dof_fdt.h45 extern int of_scan_flat_dt(int (*it)(unsigned long node, const char *uname,
50 const char *uname,
54 const char *uname);
H A Dhugetlb.h646 #define TESTHPAGEFLAG(uname, flname) \ argument
652 static inline int HPage##uname(struct page *page) \
655 #define SETHPAGEFLAG(uname, flname) \ argument
664 #define CLEARHPAGEFLAG(uname, flname) \ argument
673 #define TESTHPAGEFLAG(uname, flname) \ argument
680 #define SETHPAGEFLAG(uname, flname) \ argument
687 #define CLEARHPAGEFLAG(uname, flname) \ argument
695 #define HPAGEFLAG(uname, flname) \ argument
696 TESTHPAGEFLAG(uname, flname) \
697 SETHPAGEFLAG(uname, flname) \
[all …]
/openbmc/linux/drivers/staging/vt6655/
H A Dtest1 KSP := /lib/modules/$(shell uname -r)/build \
2 /usr/src/linux-$(shell uname -r) \
3 /usr/src/linux-$(shell uname -r | sed 's/-.*//') \
4 # /usr/src/kernel-headers-$(shell uname -r) \
5 # /usr/src/kernel-source-$(shell uname -r) \
6 # /usr/src/linux-$(shell uname -r | sed 's/\([0-9]*\.[0-9]*\)\..*/\1/') \
/openbmc/qemu/bsd-user/freebsd/
H A Dos-misc.h40 void *uname, *upath; in do_freebsd_shm_open2() local
51 uname = NULL; in do_freebsd_shm_open2()
53 uname = lock_user_string(nameptr); in do_freebsd_shm_open2()
54 if (uname == NULL) { in do_freebsd_shm_open2()
61 target_to_host_bitmask(shmflags, shmflag_flags_tbl), uname)); in do_freebsd_shm_open2()
66 if (uname != NULL) { in do_freebsd_shm_open2()
67 unlock_user(uname, nameptr, 0); in do_freebsd_shm_open2()
/openbmc/openbmc/poky/meta/recipes-devtools/git/git/
H A D0001-config.mak.uname-do-not-force-RHEL-7-specific-build-.patch4 Subject: [PATCH] config.mak.uname: do not force RHEL-7 specific build settings
13 config.mak.uname | 4 ----
16 diff --git a/config.mak.uname b/config.mak.uname
18 --- a/config.mak.uname
19 +++ b/config.mak.uname
/openbmc/openbmc/meta-openembedded/meta-oe/recipes-support/nss/nss/
H A D0001-nss-fix-support-cross-compiling.patch21 @@ -26,11 +26,11 @@ OS_ARCH := $(subst /,_,$(shell uname -s))
25 -OS_TEST := $(shell uname -m)
26 +OS_TEST ?= $(shell uname -m)
28 OS_RELEASE := $(shell uname -r)_$(OS_TEST)
30 - OS_RELEASE := $(shell uname -r)
31 + OS_RELEASE ?= $(shell uname -r)
/openbmc/u-boot/common/
H A Dimage-fit.c263 const char *uname; in fit_conf_print() local
278 if (!uname) in fit_conf_print()
285 if (uname) in fit_conf_print()
289 if (uname) in fit_conf_print()
304 if (uname) in fit_conf_print()
346 char *uname; in fit_print_contents() local
411 if (uname) in fit_print_contents()
1694 const char *uname; in fit_conf_get_prop_node_index() local
1699 if (uname == NULL) in fit_conf_get_prop_node_index()
2049 const char *uname; in boot_get_fdt_fit() local
[all …]
/openbmc/u-boot/cmd/
H A Dximg.c43 const char *uname = NULL; in do_imgextract() local
62 uname = argv[2]; in do_imgextract()
125 if (uname == NULL) { in do_imgextract()
131 "at %08lx ...\n", uname, addr); in do_imgextract()
140 noffset = fit_image_get_node(fit_hdr, uname); in do_imgextract()
142 printf("Can't find '%s' FIT subimage\n", uname); in do_imgextract()
/openbmc/linux/tools/perf/tests/shell/
H A Dtest_intel_pt.sh113 perf_record_no_decode -o "${perfdatafile}" -e intel_pt//u -C 0 -- taskset --cpu-list 1 uname
438 perf_record_no_decode -o "${perfdatafile}" -e intel_pt/mtc=0,tsc=0/u uname
459 perf_record_no_decode -o "${perfdatafile}" -e intel_pt/branch=0/u uname
482 perf_record_no_decode -o "${perfdatafile}" -e intel_pt/cyc/u uname
490 perf_record_no_decode -o "${perfdatafile}" -e intel_pt//u uname
525 if ! perf_record_no_decode -o "${perfdatafile}" -e intel_pt//k -m1,128 uname ; then
562 perf_record_no_bpf -o "${perfdatafile}" --aux-sample -e '{intel_pt//,cycles}:u' uname
585 if ! perf_record_no_decode -o "${perfdatafile}" -a -e intel_pt/pwr_evt/u uname ; then
602 perf_record_no_decode -o "${perfdatafile}" -e intel_pt/notnt/u uname
622 if ! perf_record_no_decode -o "${perfdatafile}" -e intel_pt/event/u uname ; then
[all …]
/openbmc/openbmc/poky/meta/recipes-bsp/v86d/v86d/
H A DSupport-for-cross-compilation.patch7 machine for Intel x86) where HOST_ARCH (uname -m) != TARGET_ARCH.
10 to `uname -m`.
26 - local m=`uname -m`
27 + local m="${TARGET_ARCH:-$(uname -m)}"
/openbmc/openbmc/meta-openembedded/meta-oe/recipes-devtools/php/php/
H A D0003-php-remove-host-specific-info-from-header-file.patch29 -UNAME=`uname -a | xargs`
30 +UNAME=`uname | xargs`
32 AC_DEFINE_UNQUOTED(PHP_UNAME,"$PHP_UNAME",[uname -a output])
33 PHP_OS=`uname | xargs`
/openbmc/linux/arch/powerpc/kernel/
H A Ddt_cpu_ftrs.c879 const char *uname, int i) in process_cpufeatures_node() argument
889 f->name = uname; in process_cpufeatures_node()
893 pr_warn("%s: missing isa property\n", uname); in process_cpufeatures_node()
940 pr_warn("%s: unwanted hfscr_bit_nr\n", uname); in process_cpufeatures_node()
946 pr_warn("%s: missing hfscr_bit_nr\n", uname); in process_cpufeatures_node()
959 pr_warn("%s: unwanted fscr_bit_nr\n", uname); in process_cpufeatures_node()
965 pr_warn("%s: missing fscr_bit_nr\n", uname); in process_cpufeatures_node()
1036 const char *uname, in scan_cpufeatures_subnodes() argument
1041 process_cpufeatures_node(node, uname, *count); in scan_cpufeatures_subnodes()
1049 const char *uname, in count_cpufeatures_subnodes() argument
[all …]
/openbmc/openbmc/poky/meta/recipes-bsp/pciutils/pciutils/
H A Dconfigure.patch8 * allows us to optionally pass target information to configure rather than using uname
57 - sys=`uname -s`
58 - rel=`uname -r`
59 + sys=${3:-`uname -s`}
68 - cpu=`uname -m | sed 's/^i.86-AT386/i386/;s/^i.86$/i386/;s/^sun4u$/sparc64/;s/^i86pc$/i386/;s/^Be…
69 + cpu=${4:-`uname -m | sed 's/^i.86-AT386/i386/;s/^i.86$/i386/;s/^sun4u$/sparc64/;s/^i86pc$/i386/;…
/openbmc/linux/arch/powerpc/platforms/pseries/
H A Dfirmware.c154 static int __init probe_fw_features(unsigned long node, const char *uname, int in probe_fw_features() argument
165 if (!strcmp(uname, "rtas") || !strcmp(uname, "rtas@0")) { in probe_fw_features()
176 if (!strcmp(uname, "chosen")) { in probe_fw_features()
/openbmc/linux/drivers/of/
H A Dof_reserved_mem.c61 void __init fdt_reserved_mem_save_node(unsigned long node, const char *uname, in fdt_reserved_mem_save_node() argument
72 rmem->name = uname; in fdt_reserved_mem_save_node()
136 const char *uname, phys_addr_t *res_base, phys_addr_t *res_size) in __reserved_mem_alloc_size() argument
151 pr_err("invalid size property in '%s' node.\n", uname); in __reserved_mem_alloc_size()
160 uname); in __reserved_mem_alloc_size()
180 uname); in __reserved_mem_alloc_size()
195 uname, &base, in __reserved_mem_alloc_size()
207 uname, &base, (unsigned long)(size / SZ_1M)); in __reserved_mem_alloc_size()
212 uname, (unsigned long)(size / SZ_1M)); in __reserved_mem_alloc_size()
/openbmc/openbmc-tools/bbdbg/
H A Dbbdbg32 …BDBG_PATH}/tmp/sysroots-components/$(uname -m)/libsolv-native/usr/lib:${BBDBG_PATH}/tmp/sysroots-c…
33 BBDBG_OPKG=${BBDBG_PATH}/tmp/sysroots-components/$(uname -m)/opkg-native/usr/bin/opkg
/openbmc/linux/fs/9p/
H A Dv9fs.c113 if (strcmp(v9ses->uname, V9FS_DEFUSER) != 0) in v9fs_show_options()
114 seq_printf(m, ",uname=%s", v9ses->uname); in v9fs_show_options()
254 kfree(v9ses->uname); in v9fs_parse_options()
255 v9ses->uname = match_strdup(&args[0]); in v9fs_parse_options()
256 if (!v9ses->uname) { in v9fs_parse_options()
397 v9ses->uname = kstrdup(V9FS_DEFUSER, GFP_KERNEL); in v9fs_session_init()
398 if (!v9ses->uname) in v9fs_session_init()
459 fid = p9_client_attach(v9ses->clnt, NULL, v9ses->uname, INVALID_UID, in v9fs_session_init()
492 kfree(v9ses->uname); in v9fs_session_init()
514 kfree(v9ses->uname); in v9fs_session_close()
H A Dfid.c174 const unsigned char **wnames, *uname; in v9fs_fid_lookup_with_uid() local
210 uname = NULL; in v9fs_fid_lookup_with_uid()
212 uname = v9ses->uname; in v9fs_fid_lookup_with_uid()
214 fid = p9_client_attach(v9ses->clnt, NULL, uname, uid, in v9fs_fid_lookup_with_uid()
/openbmc/linux/tools/testing/crypto/chacha20-s390/
H A DMakefile10 make -C /lib/modules/$(shell uname -r)/build/ M=$(PWD) modules
12 make -C /lib/modules/$(shell uname -r)/build/ M=$(PWD) clean
/openbmc/linux/fs/fat/
H A Dnamei_vfat.c328 wchar_t *uname, int ulen, in vfat_create_shortname() argument
345 ext_start = end = &uname[ulen]; in vfat_create_shortname()
346 while (--ext_start >= uname) { in vfat_create_shortname()
356 if (ext_start == uname - 1) { in vfat_create_shortname()
365 name_start = &uname[0]; in vfat_create_shortname()
372 sz = ext_start - uname; in vfat_create_shortname()
590 wchar_t *uname; in vfat_build_slots() local
598 uname = __getname(); in vfat_build_slots()
599 if (!uname) in vfat_build_slots()
607 err = vfat_is_used_badchars(uname, ulen); in vfat_build_slots()
[all …]
/openbmc/openbmc/meta-openembedded/meta-oe/recipes-extended/redis/redis/
H A Doe-use-libc-malloc.patch31 -uname_S := $(shell sh -c 'uname -s 2>/dev/null || echo not')
32 +# use fake uname option to force use of generic libc
34 uname_M := $(shell sh -c 'uname -m 2>/dev/null || echo not')
/openbmc/openbmc/meta-openembedded/meta-oe/recipes-extended/redis/redis-7.2.4/
H A Doe-use-libc-malloc.patch31 -uname_S := $(shell sh -c 'uname -s 2>/dev/null || echo not')
32 +# use fake uname option to force use of generic libc
34 uname_M := $(shell sh -c 'uname -m 2>/dev/null || echo not')
/openbmc/linux/tools/perf/Documentation/
H A Dperf.data-directory-format.txt34 $ sudo perf record --kcore uname
61uname 15316 2060795.480924: 588287 cycles: ffffffffa303a56d page_counter_try_charge+0x6d (vml…
62uname 15316 2060795.481067: 2261945 cycles: ffffffffa301438f kmem_cache_free+0x4f (vmlinux)
63uname 15316 2060795.481643: 2172167 cycles: 7f1a48c393c0 _IO_un_link+0x0 (/lib/x86_64-linu…
/openbmc/openbmc/meta-openembedded/meta-oe/recipes-support/gradm/gradm/
H A D0001-make-Define-SBINDIR-flag.patch22 …LIBS := $(shell if [ "`uname -m`" != "sparc64" -a "`uname -m`" != "x86_64" ]; then echo "-lfl" ; e…
26 …#OPT_FLAGS := $(shell if [ "`uname -m`" != "sparc64" ] && [ "`uname -m`" != "x86_64" ]; then echo …

12345678910>>...15