search for: unistd_32

Displaying 9 results from an estimated 9 matches for "unistd_32".

2013 Dec 09
2
Re: Question about setns recognising in libvirt autoconf
..., sys_setns) /usr/include/x86_64-linux-gnu/bits/syscall.h:#define SYS_setns __NR_setns /usr/include/x86_64-linux-gnu/asm/unistd_64.h:#define __NR_setns 308 /usr/include/x86_64-linux-gnu/asm/unistd_64.h:__SYSCALL(__NR_setns, sys_setns) /usr/include/x86_64-linux-gnu/asm/unistd_32.h:#define __NR_setns 346 ------------------ Best regards! GuanQiang 13:21:12
2019 Oct 01
1
VirtualBox extensions and the new kernel
...ake oldconfig && make prepare scripts/kconfig/conf --oldconfig Kconfig # # configuration written to .config # scripts/kconfig/conf --silentoldconfig Kconfig make[1]: *** No rule to make target `arch/x86/syscalls/syscall_32.tbl', needed by `arch/x86/syscalls/../include/generated/uapi/asm/unistd_32.h'. Stop. make: *** [archheaders] Error 2 Probably it is something that I misses, but what, I cannot figure out. I see the problem both in Centos 7.7 and 8 |< -- Med venlig hilsen Klaus Kolle Teknikumingeni?r, B.Sc.EE., e-mail : klaus at kolle.dk Master of IT...
2018 Dec 05
1
Problems compiling kernel module
...repare but I get this result: scripts/kconfig/conf --oldconfig Kconfig # # configuration written to .config # scripts/kconfig/conf --silentoldconfig Kconfig make[1]: *** No rule to make target `arch/x86/syscalls/syscall_32.tbl', needed by `arch/x86/syscalls/../include/generated/uapi/asm/unistd_32.h'. Stop. make: *** [archheaders] Error 2 What could be wrong? |< -- Med venlig hilsen Klaus Kolle Teknikumingeni?r, B.Sc.EE., e-mail : klaus at kolle.dk Master of IT www : www.kolle.dk Kollundvej 5 Telephone : +4586829682 / +45222...
2014 Jun 10
4
[LLVMdev] use of undeclared identifier '__NR_*' error while building clang
Hi guys, I am following this[1] tutorial to install clang. However, I have made a small change in the configure command, and I am running it with '--enable-optimized' option to avoid the debug build. I am getting the errors (given at the end) related to *undeclared identifiers '__NR_*'*. Can someone please provide some input about how to tackle this issue? On my other machine, I
2013 Dec 09
0
Re: Question about setns recognising in libvirt autoconf
..., sys_setns) /usr/include/x86_64-linux-gnu/bits/syscall.h:#define SYS_setns __NR_setns /usr/include/x86_64-linux-gnu/asm/unistd_64.h:#define __NR_setns 308 /usr/include/x86_64-linux-gnu/asm/unistd_64.h:__SYSCALL(__NR_setns, sys_setns) /usr/include/x86_64-linux-gnu/asm/unistd_32.h:#define __NR_setns 346 ------------------ Best regards! GuanQiang 13:21:12 ------------------ Best regards! GuanQiang 14:25:56
2013 Dec 09
2
Question about setns recognising in libvirt autoconf
Hi experts, When I test lxc container with lxc-enter-namespace command, It reported an error as following: root@debian:~/github/libvirt# vir lxc-enter-namespace lxc --noseclabel /bin/df -hl error: Cannot get namespaces for 3145: Function not implemented It seems that setns is not supported by my kernel. But from the following info, It seemed the reason is just libvirt/autoconf doesn't
2009 May 03
6
[RFC] The reflink(2) system call.
...at: git://oss.oracle.com/git/tma/linux-2.6.git refcount It will be reset atop the system call very soon. Please send any comments along. Joel Documentation/filesystems/reflink.txt | 129 ++++++++++++++++++++++++++++++++++ Documentation/filesystems/vfs.txt | 4 + arch/x86/include/asm/unistd_32.h | 1 arch/x86/kernel/syscall_table_32.S | 1 fs/namei.c | 96 +++++++++++++++++++++++++ include/linux/fs.h | 2 6 files changed, 233 insertions(+) -- "But then she looks me in the eye And says, 'We're going to la...
2008 Apr 05
11
[PATCH RFC 1/5] vringfd syscall
...g_fs_type = { + .name = "vringfs", + .get_sb = vringfs_get_sb, + .kill_sb = kill_anon_super, +}; + +static int init(void) +{ + register_filesystem(&vring_fs_type); + vring_mnt = kern_mount(&vring_fs_type); + return 0; +} + +module_init(init); diff -r 99132ad16999 include/asm-x86/unistd_32.h --- a/include/asm-x86/unistd_32.h Sat Apr 05 21:20:32 2008 +1100 +++ b/include/asm-x86/unistd_32.h Sat Apr 05 21:31:40 2008 +1100 @@ -332,6 +332,7 @@ #define __NR_fallocate 324 #define __NR_timerfd_settime 325 #define __NR_timerfd_gettime 326 +#define __NR_vringfd 327 #ifdef __KERNEL__...
2008 Apr 05
11
[PATCH RFC 1/5] vringfd syscall
...g_fs_type = { + .name = "vringfs", + .get_sb = vringfs_get_sb, + .kill_sb = kill_anon_super, +}; + +static int init(void) +{ + register_filesystem(&vring_fs_type); + vring_mnt = kern_mount(&vring_fs_type); + return 0; +} + +module_init(init); diff -r 99132ad16999 include/asm-x86/unistd_32.h --- a/include/asm-x86/unistd_32.h Sat Apr 05 21:20:32 2008 +1100 +++ b/include/asm-x86/unistd_32.h Sat Apr 05 21:31:40 2008 +1100 @@ -332,6 +332,7 @@ #define __NR_fallocate 324 #define __NR_timerfd_settime 325 #define __NR_timerfd_gettime 326 +#define __NR_vringfd 327 #ifdef __KERNEL__...