Home
last modified time | relevance | path

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

/linux-4.4.14/include/linux/
Dpage-flags.h139 #define TESTPAGEFLAG(uname, lname) \ argument
140 static inline int Page##uname(const struct page *page) \
143 #define SETPAGEFLAG(uname, lname) \ argument
144 static inline void SetPage##uname(struct page *page) \
147 #define CLEARPAGEFLAG(uname, lname) \ argument
148 static inline void ClearPage##uname(struct page *page) \
151 #define __SETPAGEFLAG(uname, lname) \ argument
152 static inline void __SetPage##uname(struct page *page) \
155 #define __CLEARPAGEFLAG(uname, lname) \ argument
156 static inline void __ClearPage##uname(struct page *page) \
[all …]
Dof_fdt.h52 extern int of_scan_flat_dt(int (*it)(unsigned long node, const char *uname,
62 extern int early_init_dt_scan_chosen(unsigned long node, const char *uname,
64 extern int early_init_dt_scan_memory(unsigned long node, const char *uname,
75 extern int early_init_dt_scan_root(unsigned long node, const char *uname,
Dof_reserved_mem.h35 void fdt_reserved_mem_save_node(unsigned long node, const char *uname,
46 const char *uname, phys_addr_t base, phys_addr_t size) { } in fdt_reserved_mem_save_node() argument
/linux-4.4.14/drivers/staging/vt6655/
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/') \
/linux-4.4.14/arch/microblaze/kernel/
Dprom.c49 const char *uname, int depth, void *data) in early_init_dt_scan_chosen_serial() argument
54 pr_debug("%s: depth: %d, uname: %s\n", __func__, depth, uname); in early_init_dt_scan_chosen_serial()
56 if (depth == 1 && (strcmp(uname, "chosen") == 0 || in early_init_dt_scan_chosen_serial()
57 strcmp(uname, "chosen@0") == 0)) { in early_init_dt_scan_chosen_serial()
63 if (stdout && strstr(stdout, uname)) { in early_init_dt_scan_chosen_serial()
/linux-4.4.14/drivers/of/
Dof_reserved_mem.c72 void __init fdt_reserved_mem_save_node(unsigned long node, const char *uname, in fdt_reserved_mem_save_node() argument
83 rmem->name = uname; in fdt_reserved_mem_save_node()
96 const char *uname, phys_addr_t *res_base, phys_addr_t *res_size) in __reserved_mem_alloc_size() argument
112 uname); in __reserved_mem_alloc_size()
123 uname); in __reserved_mem_alloc_size()
138 uname); in __reserved_mem_alloc_size()
153 uname, &base, in __reserved_mem_alloc_size()
165 uname, &base, (unsigned long)size / SZ_1M); in __reserved_mem_alloc_size()
170 uname); in __reserved_mem_alloc_size()
Dfdt.c473 const char *uname) in __reserved_mem_reserve_reg() argument
487 uname); in __reserved_mem_reserve_reg()
500 uname, &base, (unsigned long)size / SZ_1M); in __reserved_mem_reserve_reg()
503 uname, &base, (unsigned long)size / SZ_1M); in __reserved_mem_reserve_reg()
507 fdt_reserved_mem_save_node(node, uname, base, size); in __reserved_mem_reserve_reg()
540 static int __init __fdt_scan_reserved_mem(unsigned long node, const char *uname, in __fdt_scan_reserved_mem() argument
547 if (!found && depth == 1 && strcmp(uname, "reserved-memory") == 0) { in __fdt_scan_reserved_mem()
568 err = __reserved_mem_reserve_reg(node, uname); in __fdt_scan_reserved_mem()
570 fdt_reserved_mem_save_node(node, uname, 0, 0); in __fdt_scan_reserved_mem()
627 const char *uname, int depth, in of_scan_flat_dt() argument
[all …]
/linux-4.4.14/fs/fat/
Dnamei_vfat.c314 wchar_t *uname, int ulen, in vfat_create_shortname() argument
331 ext_start = end = &uname[ulen]; in vfat_create_shortname()
332 while (--ext_start >= uname) { in vfat_create_shortname()
342 if (ext_start == uname - 1) { in vfat_create_shortname()
351 name_start = &uname[0]; in vfat_create_shortname()
358 sz = ext_start - uname; in vfat_create_shortname()
368 for (baselen = i = 0, p = base, ip = uname; i < sz; i++, ip++) { in vfat_create_shortname()
385 if ((chi < chl - 1) || (ip + 1) - uname < sz) in vfat_create_shortname()
589 wchar_t *uname; in vfat_build_slots() local
597 uname = __getname(); in vfat_build_slots()
[all …]
/linux-4.4.14/fs/9p/
Dfid.c120 char **wnames, *uname; in v9fs_fid_lookup_with_uid() local
153 uname = NULL; in v9fs_fid_lookup_with_uid()
155 uname = v9ses->uname; in v9fs_fid_lookup_with_uid()
157 fid = p9_client_attach(v9ses->clnt, NULL, uname, uid, in v9fs_fid_lookup_with_uid()
Dv9fs.c203 kfree(v9ses->uname); in v9fs_parse_options()
204 v9ses->uname = match_strdup(&args[0]); in v9fs_parse_options()
205 if (!v9ses->uname) { in v9fs_parse_options()
326 v9ses->uname = kstrdup(V9FS_DEFUSER, GFP_KERNEL); in v9fs_session_init()
327 if (!v9ses->uname) in v9fs_session_init()
392 fid = p9_client_attach(v9ses->clnt, NULL, v9ses->uname, INVALID_UID, in v9fs_session_init()
420 kfree(v9ses->uname); in v9fs_session_init()
444 kfree(v9ses->uname); in v9fs_session_close()
Dv9fs.h109 char *uname; /* user name to mount as */ member
Dvfs_inode.c1010 wstat.muid = v9ses->uname; in v9fs_vfs_rename()
/linux-4.4.14/scripts/kconfig/
Dstreamline_config.pl60 my $uname = `uname -r`;
61 chomp $uname;
73 "file" => "/boot/config-$uname",
77 "file" => "/boot/vmlinuz-$uname",
87 "file" => "/lib/modules/$uname/kernel/kernel/configs.ko",
Dsymbol.c55 uname(&uts); in sym_init()
/linux-4.4.14/tools/power/cpupower/debug/kernel/
DMakefile3 KDIR := /lib/modules/$(shell uname -r)/build
5 KMISC := /lib/modules/$(shell uname -r)/cpufrequtils/
/linux-4.4.14/fs/ntfs/
Ddir.c80 MFT_REF ntfs_lookup_inode_by_name(ntfs_inode *dir_ni, const ntfschar *uname, in ntfs_lookup_inode_by_name() argument
156 if (ntfs_are_names_equal(uname, uname_len, in ntfs_lookup_inode_by_name()
206 ntfs_are_names_equal(uname, uname_len, in ntfs_lookup_inode_by_name()
247 rc = ntfs_collate_names(uname, uname_len, in ntfs_lookup_inode_by_name()
266 rc = ntfs_collate_names(uname, uname_len, in ntfs_lookup_inode_by_name()
416 if (ntfs_are_names_equal(uname, uname_len, in ntfs_lookup_inode_by_name()
466 ntfs_are_names_equal(uname, uname_len, in ntfs_lookup_inode_by_name()
509 rc = ntfs_collate_names(uname, uname_len, in ntfs_lookup_inode_by_name()
528 rc = ntfs_collate_names(uname, uname_len, in ntfs_lookup_inode_by_name()
633 u64 ntfs_lookup_inode_by_name(ntfs_inode *dir_ni, const ntfschar *uname,
[all …]
Dnamei.c108 ntfschar *uname; in ntfs_lookup() local
118 &uname); in ntfs_lookup()
125 mref = ntfs_lookup_inode_by_name(NTFS_I(dir_ino), uname, uname_len, in ntfs_lookup()
127 kmem_cache_free(ntfs_name_cache, uname); in ntfs_lookup()
Ddir.h46 const ntfschar *uname, const int uname_len, ntfs_name **res);
/linux-4.4.14/arch/mips/ralink/
Dof.c59 const char *uname, int depth, void *data) in early_init_dt_find_memory() argument
61 if (depth == 1 && !strcmp(uname, "memory@0")) in early_init_dt_find_memory()
/linux-4.4.14/arch/nios2/kernel/
Dprom.c70 const char *uname, int depth, void *data) in early_init_dt_scan_serial() argument
76 if (strncmp(uname, "serial", 6) != 0) in early_init_dt_scan_serial()
/linux-4.4.14/arch/blackfin/kernel/
Ddebug-mmrs.c114 #define __CAN(uname, lname) __REGS(can, #uname, lname) argument
207 #define __DMA(uname, lname) __REGS(dma, #uname, lname) argument
248 #define __EPPI(uname, lname) __REGS(eppi, #uname, lname) argument
273 #define __GPTIMER(uname, lname) __REGS(gptimer, #uname, lname) argument
286 #define __GPTIMER_GROUP(uname, lname) __REGS(gptimer_group, #uname, lname) argument
314 #define __HMDMA(uname, lname) __REGS(hmdma, #uname, lname) argument
333 #define __PINT(uname, lname) __REGS(pint, #uname, lname) argument
356 #define __PORT(uname, lname) __REGS(gpio, #uname, lname) argument
397 #define __PPI(uname, lname) __REGS(ppi, #uname, lname) argument
413 #define __SPI(uname, lname) __REGS(spi, #uname, lname) argument
[all …]
/linux-4.4.14/arch/um/os-Linux/
Dutil.c51 uname(&host); in setup_machinename()
72 uname(&host); in setup_hostinfo()
/linux-4.4.14/arch/powerpc/kernel/
Dprom.c299 const char *uname, int depth, in early_init_dt_scan_cpus() argument
395 const char *uname, in early_init_dt_scan_chosen_ppc() argument
401 if (early_init_dt_scan_chosen(node, uname, depth, data) == 0) in early_init_dt_scan_chosen_ppc()
522 const char *uname, in early_init_dt_scan_memory_ppc() argument
526 strcmp(uname, "ibm,dynamic-reconfiguration-memory") == 0) in early_init_dt_scan_memory_ppc()
529 return early_init_dt_scan_memory(node, uname, depth, data); in early_init_dt_scan_memory_ppc()
Depapr_paravirt.c36 const char *uname, in early_init_dt_scan_epapr() argument
Drtas.c1173 const char *uname, int depth, void *data) in early_init_dt_scan_rtas() argument
1177 if (depth != 1 || strcmp(uname, "rtas") != 0) in early_init_dt_scan_rtas()
Dfadump.c56 const char *uname, int depth, void *data) in early_init_dt_scan_fw_dump() argument
63 if (depth != 1 || strcmp(uname, "rtas") != 0) in early_init_dt_scan_fw_dump()
/linux-4.4.14/arch/arm64/kernel/
Dacpi.c65 const char *uname, int depth, in dt_scan_depth1_nodes() argument
72 if (depth == 1 && (strcmp(uname, "chosen") != 0)) in dt_scan_depth1_nodes()
/linux-4.4.14/arch/arm/mach-exynos/
Dmfc.h13 int __init s5p_fdt_alloc_mfc_mem(unsigned long node, const char *uname,
Ds5p-dev-mfc.c63 int __init s5p_fdt_alloc_mfc_mem(unsigned long node, const char *uname, in s5p_fdt_alloc_mfc_mem() argument
Dexynos.c120 static int __init exynos_fdt_map_chipid(unsigned long node, const char *uname, in exynos_fdt_map_chipid() argument
/linux-4.4.14/tools/testing/selftests/zram/
Dzram.sh18 MODULE_PATH=/lib/modules/`uname -r`/kernel/drivers/block/zram/zram.ko
Dzram_lib.sh64 MODULE_PATH=/lib/modules/`uname -r`/kernel/drivers/block/zram/zram.ko
/linux-4.4.14/tools/testing/selftests/breakpoints/
DMakefile2 uname_M := $(shell uname -m 2>/dev/null || echo not)
/linux-4.4.14/arch/um/
DMakefile11 ifeq ($(shell uname -m),x86_64)
21 OS := $(shell uname -s)
/linux-4.4.14/tools/testing/selftests/ipc/
DMakefile1 uname_M := $(shell uname -m 2>/dev/null || echo not)
/linux-4.4.14/tools/perf/config/
DMakefile.arch2 ARCH := $(shell uname -m 2>/dev/null || echo not)
/linux-4.4.14/arch/powerpc/platforms/pseries/
Dsetup.c738 const char *uname, int depth, in pseries_probe_fw_features() argument
749 if (!strcmp(uname, "rtas") || !strcmp(uname, "rtas@0")) { in pseries_probe_fw_features()
760 if (!strcmp(uname, "chosen")) { in pseries_probe_fw_features()
/linux-4.4.14/arch/arm/mach-s5pv210/
Ds5pv210.c25 static int __init s5pv210_fdt_map_sys(unsigned long node, const char *uname, in s5pv210_fdt_map_sys() argument
/linux-4.4.14/arch/powerpc/platforms/powernv/
Dopal.c75 const char *uname, int depth, void *data) in early_init_dt_scan_opal() argument
80 if (depth != 1 || strcmp(uname, "ibm,opal") != 0) in early_init_dt_scan_opal()
124 const char *uname, int depth, void *data) in early_init_dt_scan_recoverable_ranges() argument
129 if (depth != 1 || strcmp(uname, "ibm,opal") != 0) in early_init_dt_scan_recoverable_ranges()
/linux-4.4.14/tools/testing/selftests/powerpc/
DMakefile4 ARCH ?= $(shell uname -m)
/linux-4.4.14/scripts/
Dver_linux11 uname -a
/linux-4.4.14/arch/tile/
DMakefile21 HOST_ARCH := $(shell uname -m)
/linux-4.4.14/tools/testing/selftests/x86/
DMakefile17 UNAME_M := $(shell uname -m)
/linux-4.4.14/tools/perf/scripts/python/Perf-Trace-Util/lib/Perf/Trace/
DUtil.py70 machine_id = machine_to_id[os.uname()[4]]
/linux-4.4.14/arch/powerpc/include/asm/
Dfadump.h206 const char *uname, int depth, void *data);
Dopal.h214 extern int early_init_dt_scan_opal(unsigned long node, const char *uname,
217 const char *uname, int depth, void *data);
Drtas.h369 const char *uname, int depth, void *data);
/linux-4.4.14/arch/arm/mach-shmobile/
Dsetup-rcar-gen2.c139 static int __init rcar_gen2_scan_mem(unsigned long node, const char *uname, in rcar_gen2_scan_mem() argument
/linux-4.4.14/arch/xtensa/
DMakefile25 COMPILE_ARCH = $(shell uname -m)
/linux-4.4.14/arch/arm/mach-mvebu/
Dboard-v7.c70 static int __init mvebu_scan_mem(unsigned long node, const char *uname, in mvebu_scan_mem() argument
/linux-4.4.14/arch/xtensa/kernel/
Dsetup.c197 static int __init xtensa_dt_io_area(unsigned long node, const char *uname, in xtensa_dt_io_area() argument
222 static int __init xtensa_dt_io_area(unsigned long node, const char *uname, in xtensa_dt_io_area() argument
/linux-4.4.14/tools/perf/arch/
Dcommon.c142 if (uname(&uts) < 0) in perf_env__lookup_binutils_path()
/linux-4.4.14/tools/power/cpupower/utils/
Dcpupower.c204 ret = uname(&uts); in main()
/linux-4.4.14/tools/power/cpupower/bench/
Dparse.c85 if (uname(&sysdata) == 0) { in prepare_output()
/linux-4.4.14/include/net/9p/
Dclient.h226 char *uname, kuid_t n_uname, char *aname);
/linux-4.4.14/Documentation/filesystems/
D9p.txt40 mount -t 9p `namespace`/acme /mnt/9 -o trans=unix,uname=$USER
64 uname=name user name to attempt mount as on the remote server. The
/linux-4.4.14/arch/powerpc/mm/
Dhash_utils_64.c273 const char *uname, int depth, in htab_dt_scan_seg_sizes() argument
328 const char *uname, int depth, in htab_dt_scan_page_sizes() argument
410 const char *uname, int depth, in htab_dt_scan_hugepage_blocks() argument
572 const char *uname, int depth, in htab_dt_scan_pftsize() argument
/linux-4.4.14/Documentation/kbuild/
Dmodules.txt79 $ make -C /lib/modules/`uname -r`/build M=$PWD
84 $ make -C /lib/modules/`uname -r`/build M=$PWD modules_install
193 KDIR ?= /lib/modules/`uname -r`/build
225 KDIR ?= /lib/modules/`uname -r`/build
253 KDIR ?= /lib/modules/`uname -r`/build
Dkbuild.txt217 UTS_VERSION definition (uname -v in the running kernel). The value has to
/linux-4.4.14/drivers/firmware/efi/
Defi.c520 static int __init fdt_find_uefi_params(unsigned long node, const char *uname, in fdt_find_uefi_params() argument
529 if (depth != 1 || strcmp(uname, "chosen") != 0) in fdt_find_uefi_params()
/linux-4.4.14/lib/raid6/test/
DMakefile15 ARCH := $(shell uname -m 2>/dev/null | sed -e /s/i.86/i386/)
/linux-4.4.14/Documentation/watchdog/
Dhpwdt.txt56 4. insmod /lib/modules/`uname -r`/kernel/drivers/char/watchdog/hpwdt.ko priority=1
/linux-4.4.14/arch/x86/
DMakefile5 ifeq ($(shell uname -m),x86_64)
/linux-4.4.14/tools/perf/Documentation/
Dintel-pt.txt264 $ perf record -e intel_pt/psb_period=15/u uname
316 $ perf record -e intel_pt/mtc_period=15/u uname
362 $ perf record -e intel_pt/cyc,cyc_thresh=15/u uname
439 perf record -e intel_pt//u uname
570 $ perf record -vv -e intel_pt//u uname
/linux-4.4.14/arch/powerpc/
DMakefile33 KBUILD_DEFCONFIG := $(shell uname -m)_defconfig
/linux-4.4.14/tools/perf/util/
Dutil.c677 if (uname(&utsname)) in fetch_kernel_version()
Dheader.c172 ret = uname(&uts); in write_hostname()
185 ret = uname(&uts); in write_osrelease()
198 ret = uname(&uts); in write_arch()
Dsymbol.c1889 if (uname(&uts) < 0) in vmlinux_path__init()
/linux-4.4.14/Documentation/isdn/
DREADME.sc144 edit the file "/etc/modules/'uname -f'/'uname -v'" and insert the driver name
DREADME.gigaset369 - kernel version (uname -r)
371 - hardware architecture (uname -m, ...)
/linux-4.4.14/arch/s390/kernel/
Dcompat_wrapper.c168 COMPAT_SYSCALL_WRAP2(memfd_create, const char __user *, uname, unsigned int, flags)
/linux-4.4.14/arch/x86/entry/syscalls/
Dsyscall_64.tbl72 63 common uname sys_newuname
Dsyscall_32.tbl131 122 i386 uname sys_newuname
/linux-4.4.14/net/9p/
Dclient.c1104 char *uname, kuid_t n_uname, char *aname) in p9_client_attach() argument
1113 afid ? afid->fid : -1, uname, aname); in p9_client_attach()
1123 afid ? afid->fid : P9_NOFID, uname, aname, n_uname); in p9_client_attach()
/linux-4.4.14/Documentation/laptops/
Dlaptop-mode.txt412 KLEVEL="$(uname -r |
422 echo "Unhandled kernel version: $KLEVEL ('uname -r' = '$(uname -r)')" >&2
/linux-4.4.14/Documentation/networking/
Ddl2k.txt47 4. cp dl2k.ko /lib/modules/`uname -r`/kernel/drivers/net
/linux-4.4.14/mm/
Dshmem.c2923 const char __user *, uname, in SYSCALL_DEFINE2() argument
2936 len = strnlen_user(uname, MFD_NAME_MAX_LEN + 1); in SYSCALL_DEFINE2()
2947 if (copy_from_user(&name[MFD_NAME_PREFIX_LEN], uname, len)) { in SYSCALL_DEFINE2()
/linux-4.4.14/tools/perf/
Dbuiltin-top.c149 int err = uname(&uts); in ui__warn_map_erange()
/linux-4.4.14/tools/hv/
Dhv_kvp_daemon.c464 uname(&uts_buf); in kvp_get_os_info()
/linux-4.4.14/
DMakefile224 SUBARCH := $(shell uname -m | sed -e s/i.86/x86/ -e s/x86_64/x86/ \
/linux-4.4.14/Documentation/powerpc/
Dhvcs.txt123 build a current modules.dep file in /lib/modules/`uname -r` and then
/linux-4.4.14/kernel/
Dsys.c1161 SYSCALL_DEFINE1(uname, struct old_utsname __user *, name) in SYSCALL_DEFINE1() argument
/linux-4.4.14/tools/testing/selftests/seccomp/
Dseccomp_bpf.c2181 ASSERT_EQ(0, uname(&utsbuf)); in TEST()
/linux-4.4.14/init/
DKconfig74 This will show up when you type uname, for example.
1185 uname() system call
/linux-4.4.14/Documentation/virtual/uml/
DUserModeLinux-HOWTO.txt340 virtual machine and dropping them into /lib/modules/`uname -r`.
2215 /lib/modules/`uname -r`/fs in the virtual machine, boot it up, and