search for: kexec_segment

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

2020 Jul 08
2
[PATCH] Add syscall wrappers required by libkeyutils
...b/usr/klibc/SYSCALLS.def index 461d9bf6..67056a2c 100644 --- a/usr/klibc/SYSCALLS.def +++ b/usr/klibc/SYSCALLS.def @@ -274,6 +274,9 @@ int reboot::__reboot(int, int, int, void *); int syslog::klogctl(int, char *, int); int sysinfo(struct sysinfo *); long kexec_load(void *, unsigned long, struct kexec_segment *, unsigned long); +int add_key(const char *, const char *, const void *, size_t, int); +int request_key(const char *, const char *, const char *, int); +long keyctl::__keyctl(int, unsigned long, unsigned long, unsigned long, unsigned long); /* * Low-level I/O (generally architecture-specific)...
2020 Jul 25
0
[PATCH] Add syscall wrappers required by libkeyutils
...x 461d9bf6..67056a2c 100644 > --- a/usr/klibc/SYSCALLS.def > +++ b/usr/klibc/SYSCALLS.def > @@ -274,6 +274,9 @@ int reboot::__reboot(int, int, int, void *); > int syslog::klogctl(int, char *, int); > int sysinfo(struct sysinfo *); > long kexec_load(void *, unsigned long, struct kexec_segment *, unsigned long); > +int add_key(const char *, const char *, const void *, size_t, int); > +int request_key(const char *, const char *, const char *, int); > +long keyctl::__keyctl(int, unsigned long, unsigned long, unsigned long, unsigned long); > > /* > * Low-level I/O (ge...
2011 Jul 26
0
[PATCH] add support for kexec_load()
...c 100644 --- a/usr/klibc/SYSCALLS.def +++ b/usr/klibc/SYSCALLS.def @@ -248,6 +248,7 @@ long delete_module(const char *, unsigned int); int reboot::__reboot(int, int, int, void *); int syslog::klogctl(int, char *, int); int sysinfo(struct sysinfo *); +long kexec_load(void *, unsigned long, struct kexec_segment *, unsigned long); /* * Low-level I/O (generally architecture-specific); -- 1.7.5.4
2012 Dec 27
30
[PATCH v3 00/11] xen: Initial kexec/kdump implementation
Hi, This set of patches contains initial kexec/kdump implementation for Xen v3. Currently only dom0 is supported, however, almost all infrustructure required for domU support is ready. Jan Beulich suggested to merge Xen x86 assembler code with baremetal x86 code. This could simplify and reduce a bit size of kernel code. However, this solution requires some changes in baremetal x86 code. First of
2012 Dec 27
30
[PATCH v3 00/11] xen: Initial kexec/kdump implementation
Hi, This set of patches contains initial kexec/kdump implementation for Xen v3. Currently only dom0 is supported, however, almost all infrustructure required for domU support is ready. Jan Beulich suggested to merge Xen x86 assembler code with baremetal x86 code. This could simplify and reduce a bit size of kernel code. However, this solution requires some changes in baremetal x86 code. First of
2012 Dec 27
30
[PATCH v3 00/11] xen: Initial kexec/kdump implementation
Hi, This set of patches contains initial kexec/kdump implementation for Xen v3. Currently only dom0 is supported, however, almost all infrustructure required for domU support is ready. Jan Beulich suggested to merge Xen x86 assembler code with baremetal x86 code. This could simplify and reduce a bit size of kernel code. However, this solution requires some changes in baremetal x86 code. First of
2016 Apr 13
0
[PATCH 1/1] x32 support
...t); +<64,x32> off_t lseek(int, off_t, int); +#ifndef __x86_64__ <32> int _llseek::__llseek(int, unsigned long, unsigned long, off_t *, int); +#endif int dup(int); <?> int dup2(int, int); int dup3(int, int, int); @@ -275,8 +277,8 @@ long kexec_load(void *, unsigned long, struct kexec_segment *, unsigned long); /* * Low-level I/O (generally architecture-specific); */ -<i386,x86_64> int iopl(int); -<i386,x86_64> int ioperm(unsigned long, unsigned long, int); +<i386,x86_64,x32> int iopl(int); +<i386,x86_64,x32> int ioperm(unsigned long, unsigned long, int); &...
2013 Aug 21
0
Build problems: klibc with Linux 3.10.7
...n 0 TYPE off_t: size 8, sign 1 TYPE off_t *: size 4, sign 0 TYPE pid_t: size 4, sign 1 TYPE sigset_t *: size 4, sign 0 TYPE size_t: size 4, sign 0 TYPE socklen_t: size 4, sign 1 TYPE socklen_t *: size 4, sign 0 TYPE struct dirent *: size 4, sign 0 TYPE struct itimerval *: size 4, sign 0 TYPE struct kexec_segment *: size 4, sign 0 TYPE struct msghdr *: size 4, sign 0 TYPE struct pollfd *: size 4, sign 0 TYPE struct rusage *: size 4, sign 0 TYPE struct sigaction *: size 4, sign 0 TYPE struct sockaddr *: size 4, sign 0 TYPE struct stat *: size 4, sign 0 TYPE struct statfs *: size 4, sign 0 TYPE struct sysinfo...
2013 Aug 21
5
Build problems: klibc with Linux 3.10.7
On Tue, Aug 20, 2013 at 07:44:39AM +0200, leroy christophe wrote: > > > Find attached two patches I have in order to build klibc 2.0.2 > against kernel 3.8.13 > We had to introduce those patches when going from kernel 3.6 to kernel 3.7 > Hope it helps. > those patches are wrong and again very brittle. just use the way it is described in `make help': A) cd ~/src/linux