search for: thelen

Displaying 20 results from an estimated 38 matches for "thelen".

Did you mean: helen
2017 Dec 02
3
Compilation of syslinux against musl libc
Hello, I wanted to ask if there's a reason efi/wrapper.{h,c} use __uint*_t instead of including stdint.h and using the therein defined uint*_t types? This breaks compilation of the efi blobs on systems with the musl libc since that doesn't define __uint*_t types. -- Simon Thelen
2018 Feb 26
3
[PATCH 1/4] include sys/types.h in more places
...from $KLIBC/usr/klibc/../include/klibc/endian.h:10:0, from $KLIBC/usr/klibc/../include/endian.h:8, from $KLIBC/usr/klibc/pwrite.c:7: $KLIBC/usr/klibc/../include/klibc/compiler.h:144:0: note: this is the location of the previous definition Signed-off-by: Greg Thelen <gthelen at google.com> --- usr/klibc/pread.c | 1 + usr/klibc/pwrite.c | 1 + 2 files changed, 2 insertions(+) diff --git a/usr/klibc/pread.c b/usr/klibc/pread.c index 0d8c3b13f4fc..1ac30756c32d 100644 --- a/usr/klibc/pread.c +++ b/usr/klibc/pread.c @@ -4,6 +4,7 @@ * Some architectures...
2011 Mar 10
1
[PATCH] Remove .config directory dependency
...ctory. This would cause 'defconfig has changed, please remove or edit .config' build errors if $(KLIBCKERNELOBJ) directory was modified. This directory dependency is a false dependency that does not indicate that the target, $(objtree)/.config, needs to be regenerated. Signed-off-by: Greg Thelen <gthelen at google.com> --- Makefile | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/Makefile b/Makefile index 8e4dbb0..d2cd577 100644 --- a/Makefile +++ b/Makefile @@ -91,7 +91,7 @@ klibc := -f $(srctree)/scripts/Kbuild.klibc obj .PHONY: all klcc klibc all: klcc...
2011 Nov 30
1
[PATCH] [MEMALLOC] remove unused variable
Since commit 6ee30a14afac681adb1d62361ebcb0c9b6ba3153 ([klibc] [MEMALLOC] Add pushstackmark), the 'oldstackp' local variable has been unused. This change deletes the unused variable. Signed-off-by: Greg Thelen <gthelen at google.com> --- usr/dash/memalloc.c | 2 -- 1 files changed, 0 insertions(+), 2 deletions(-) diff --git a/usr/dash/memalloc.c b/usr/dash/memalloc.c index e75e609..406d0c8 100644 --- a/usr/dash/memalloc.c +++ b/usr/dash/memalloc.c @@ -213,13 +213,11 @@ growstackblock(void)...
2012 Jan 11
1
[PATCH] nfsmount: defeat dummypmap compiler warning
Without this patch gcc 4.6 warns: KLIBCCC usr/kinit/nfsmount/dummypmap.o usr/kinit/nfsmount/dummypmap.c: In function 'dummy_portmap': usr/kinit/nfsmount/dummypmap.c:191:13: warning: array subscript is below array bounds [-Warray-bounds] Signed-off-by: Greg Thelen <gthelen at google.com> --- usr/kinit/nfsmount/dummypmap.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/usr/kinit/nfsmount/dummypmap.c b/usr/kinit/nfsmount/dummypmap.c index 7c5b6bc..7c4da35 100644 --- a/usr/kinit/nfsmount/dummypmap.c +++ b/usr/kinit/nfsmount/dum...
2011 Nov 30
1
[PATCH] vsscanf: remove unused variables
Removed unused local variable from vsscanf(). Signed-off-by: Greg Thelen <gthelen at google.com> --- usr/klibc/vsscanf.c | 7 ------- 1 files changed, 0 insertions(+), 7 deletions(-) diff --git a/usr/klibc/vsscanf.c b/usr/klibc/vsscanf.c index 51e50f7..b8f068c 100644 --- a/usr/klibc/vsscanf.c +++ b/usr/klibc/vsscanf.c @@ -88,7 +88,6 @@ int vsscanf(const char...
2015 Jul 31
1
Dovecot sends "OK Logged in" with empty tag
...Side Note: Why does Dovecot send the updated capabilities before OK'ing the authentication? Seems strange to me as the client can't assume that the authentication proceeded successfully until it actually receives the OK so it has to assume that those capabilities are pre login. -- Simon Thelen -------------- next part -------------- # 20150721 (32d72cb26f9e+): /home/dovecot/etc/dovecot/dovecot.conf # OS: Linux 4.1.3-gentoo x86_64 Gentoo Base System release 2.2 auth_debug = yes auth_verbose = yes base_dir = /home/dovecot/var/run/dovecot/ mail_debug = yes mail_location = maildir:~/vmail n...
2011 Dec 04
0
[GIT PULL] klibc minor fixes
...usr/include/sys/file.h | 9 +++++++++ usr/include/sys/types.h | 4 ++++ usr/include/unistd.h | 1 - usr/kinit/ipconfig/main.c | 2 +- usr/klibc/vsscanf.c | 7 ------- 7 files changed, 29 insertions(+), 23 deletions(-) create mode 100644 usr/include/sys/file.h Greg Thelen (2): [klibc] ipconfig: check poll() return value [klibc] vsscanf: remove unused variables Maciej ?enczykowski (1): [klibc] include: [sys/types.h] -> linux/types.h and __aligned_u64 maximilian attems (3): [klibc] include: [sys/file.h] define flock(2) there [klibc]...
2019 Jan 18
0
[klibc:master] remove unused variables
Commit-ID: f00d99cb73813d94730900e46752612a9ce4fadb Gitweb: http://git.kernel.org/?p=libs/klibc/klibc.git;a=commit;h=f00d99cb73813d94730900e46752612a9ce4fadb Author: Greg Thelen <gthelen at google.com> AuthorDate: Sun, 25 Feb 2018 23:16:33 -0800 Committer: Ben Hutchings <ben at decadent.org.uk> CommitDate: Wed, 2 Jan 2019 03:08:04 +0000 [klibc] remove unused variables Fix compilation warnings: $KLIBC/usr/klibc/asprintf.c: In function 'asprintf':...
2019 Jan 18
0
[klibc:master] use more consistent quoting
Commit-ID: 6888a69d8735e508d62285c613fc521d418c30a1 Gitweb: http://git.kernel.org/?p=libs/klibc/klibc.git;a=commit;h=6888a69d8735e508d62285c613fc521d418c30a1 Author: Greg Thelen <gthelen at google.com> AuthorDate: Sun, 25 Feb 2018 23:16:34 -0800 Committer: Ben Hutchings <ben at decadent.org.uk> CommitDate: Wed, 2 Jan 2019 03:08:04 +0000 [klibc] use more consistent quoting Signed-off-by: Greg Thelen <gthelen at google.com> Link: https://www.zytor.com/pi...
2019 Jan 18
0
[klibc:master] remove some 'make -s' build spew
Commit-ID: 994adfcbd9bfcb45967b834c962db20b875fbd6c Gitweb: http://git.kernel.org/?p=libs/klibc/klibc.git;a=commit;h=994adfcbd9bfcb45967b834c962db20b875fbd6c Author: Greg Thelen <gthelen at google.com> AuthorDate: Sun, 25 Feb 2018 23:16:35 -0800 Committer: Ben Hutchings <ben at decadent.org.uk> CommitDate: Wed, 2 Jan 2019 03:08:04 +0000 [klibc] remove some 'make -s' build spew Use $(kecho) to remove 'GEN klcc/klibc.config' log message from ...
2019 Jan 18
0
[klibc:master] include sys/types.h in more places
Commit-ID: d015414c70bf8ec7464135e67557d6e7f2df662b Gitweb: http://git.kernel.org/?p=libs/klibc/klibc.git;a=commit;h=d015414c70bf8ec7464135e67557d6e7f2df662b Author: Greg Thelen <gthelen at google.com> AuthorDate: Sun, 25 Feb 2018 23:16:32 -0800 Committer: Ben Hutchings <ben at decadent.org.uk> CommitDate: Wed, 2 Jan 2019 03:08:04 +0000 [klibc] include sys/types.h in more places Include sys/types.h to avoid compilation warnings: In file included from $LIN...
2019 Jan 18
0
[klibc:master] add more PHONY targets to $(PHONY)
Commit-ID: edee9092e32482a06cc441cf47ae78b5e7c4a621 Gitweb: http://git.kernel.org/?p=libs/klibc/klibc.git;a=commit;h=edee9092e32482a06cc441cf47ae78b5e7c4a621 Author: Greg Thelen <gthelen at google.com> AuthorDate: Tue, 26 Jun 2018 22:38:32 -0700 Committer: Ben Hutchings <ben at decadent.org.uk> CommitDate: Wed, 2 Jan 2019 03:08:04 +0000 [klibc] add more PHONY targets to $(PHONY) make-3.81 excludes PHONY dependencies from $?, make 3.82+ includes them. This le...
2020 Sep 08
3
[PATCH] klcc: Remove the need for bash
Ben Hutchings <ben at decadent.org.uk> wrote: > On Sat, 2020-07-25 at 10:59 +0200, Olliver Schinagl wrote: >> Currently, in the entire klibc bash is only used to identify the path of >> the perl binary. It is doing so using the bash built-in 'type' function, >> which is POSIX compliant according to [0], but the option -c is not. >> >> By using
2006 May 26
3
FreeBSD boot loader on VT-x based Xen system
Folks -- I''m trying to run FreeBSD 6.0 on a VT-x based Xen system. I''m experiencing a problem where the boot loader is crashing before the FreeBSD kernel (proper) is loaded. The sequence of operations is that the VMX domain is constructed, the BIOS is executed, GRUB loads, I type the instructions to load FreeBSD (a boot loader) and that code begins to execute and then
2006 Oct 04
4
Can''t set break points with Linux guest in PAE mode
Folks -- One more time with the PAE request, this time I''ve brought up the Linux kernel w/ a very recent version of Xen. (Just yesterday I pulled and updated my hg tree.) I still can''t set breakpoints within the guest domain: # gdb vmlinux GNU gdb 6.4-debian <...> (gdb) target remote roti.lab.netapp.com:9999 Remote debugging using roti.lab.netapp.com:9999 [New
2020 Sep 08
0
[PATCH] klcc: Remove the need for bash
Greg Thelen dixit: >This doesn't work with older versions of make. ?make 4.2.1 seems common >now and does not support $(shell command). > >$ cat Makefile >$(info take1: $(shell command -v ls)) >$(info take2: $(shell bash -c 'type -p ls')) > >all: > @true > >...
2017 Dec 03
0
Compilation of syslinux against musl libc
...ed to ask if there's a reason efi/wrapper.{h,c} use __uint*_t > instead of including stdint.h and using the therein defined uint*_t > types? This breaks compilation of the efi blobs on systems with the musl > libc since that doesn't define __uint*_t types. > > -- > Simon Thelen FWIW... As a simple quick basic test, I took the efi32 binaries (syslinux.efi and ldlinux.e32, version 6.04-pre1) from alpinelinux (which uses musl) and put them in a FAT 1440KiB floppy image using the default UEFI path. While booting a VM with such floppy image in EFI mode, I arrive to the...
2006 Apr 03
2
Xen scheduling
Hi, Is there anyway GuestOS can prevent from being preempted by other domain? Are there any locks which allows this? If it can be done how does Xen safe guard against GuestOS crashes? Thanks Siva _______________________________________________ Xen-devel mailing list Xen-devel@lists.xensource.com http://lists.xensource.com/xen-devel
2001 Nov 08
1
401 server error Swat Access
Hi all, I've upgraded from 2.0.x to 2.2.2 on a Tru64 5.1 box. I try to start SWAT with root and roots password and get a : 401 Bad Authorization username or password incorrect With a non root account I can access, but not manage the server. What' wrong? Thanks in advance Roman