search for: gthelen

Displaying 20 results from an estimated 22 matches for "gthelen".

Did you mean: thelen
2018 Feb 26
3
[PATCH 1/4] include sys/types.h in more places
.../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 need to wrap...
2011 Dec 04
0
[GIT PULL] klibc minor fixes
...dd static to prototypes Nothing really exciting there yet. I should get my key signed next week, so soon can commit again. We should talk about new release procedure with kdup? Thank you -- maks P.S. patches follow below: commit acf09ea80536ac49a0001249956fef999b8d35af Author: Greg Thelen <gthelen at google.com> Date: Wed Nov 30 15:55:57 2011 -0800 [klibc] vsscanf: remove unused variables Removed unused local variable from vsscanf(). Signed-off-by: Greg Thelen <gthelen at google.com> "POSIX is quite explicit that the unsigned formats still accep...
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': $KLIBC/usr/k...
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/pipermail/klib...
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 'make --si...
2011 Mar 10
1
[PATCH] Remove .config directory dependency
...s 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 klibc -$(o...
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) newlen += 12...
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/dummypmap.c @@...
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 *buffer, con...
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 $LINUX/usr/inclu...
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 leads to alway...
2018 Jun 27
0
[PATCH] add more PHONY targets to $(PHONY)
...so has a $(PHONY) list of phony targets. But klibc does not add many .PHONY targets to $(PHONY). Changes in this patch: - add previously defined .PHONY targets to PHONY, so existing if_changed filtering applies to them as well - declare $(PHONY) targets as .PHONY Signed-off-by: Greg Thelen <gthelen at google.com> --- scripts/Kbuild.install | 10 +++++++--- scripts/Kbuild.klibc | 8 ++++++-- scripts/Makefile.clean | 8 ++++++-- 3 files changed, 19 insertions(+), 7 deletions(-) diff --git a/scripts/Kbuild.install b/scripts/Kbuild.install index 8af569777cc3..bafd42328ddb 100644 --- a/sc...
2013 Mar 18
0
[linux-linus test] 17325: regressions - trouble: broken/fail/pass
...gt; Greg KH <gregkh@linuxfoundation.org> Greg Kroah-Hartman <gregkh@linuxfoundation.org> Greg Kroah-Hartman <gregkh@suse.de> Greg Pearson <greg.pearson@hp.com> Greg Rose <gregory.v.rose@intel.com> Greg Suarez <gsuarez@smithmicro.com> Greg Thelen <gthelen@google.com> Greg Ungerer <gerg@snapgear.com> Greg Ungerer <gerg@uclinux.org> Greg Ungerer<gerg@uclinux.org> Gregor Jasny <gjasny@googlemail.com> Gregory CLEMENT <gregory.clement@free-electrons.com> Gregory Greenman <gregory.greenman@intel.com> Gu...
2013 Mar 29
0
[linux-linus test] 17454: regressions - FAIL
...gt; Greg KH <gregkh@linuxfoundation.org> Greg Kroah-Hartman <gregkh@linuxfoundation.org> Greg Kroah-Hartman <gregkh@suse.de> Greg Pearson <greg.pearson@hp.com> Greg Rose <gregory.v.rose@intel.com> Greg Suarez <gsuarez@smithmicro.com> Greg Thelen <gthelen@google.com> Greg Ungerer <gerg@snapgear.com> Greg Ungerer <gerg@uclinux.org> Greg Ungerer<gerg@uclinux.org> Gregor Jasny <gjasny@googlemail.com> Gregory CLEMENT <gregory.clement@free-electrons.com> Gregory Greenman <gregory.greenman@intel.com> Gu...
2013 Apr 10
0
[linux-linus test] 17612: regressions - FAIL
...gt; Greg KH <gregkh@linuxfoundation.org> Greg Kroah-Hartman <gregkh@linuxfoundation.org> Greg Kroah-Hartman <gregkh@suse.de> Greg Pearson <greg.pearson@hp.com> Greg Rose <gregory.v.rose@intel.com> Greg Suarez <gsuarez@smithmicro.com> Greg Thelen <gthelen@google.com> Greg Ungerer <gerg@snapgear.com> Greg Ungerer <gerg@uclinux.org> Greg Ungerer<gerg@uclinux.org> Gregor Jasny <gjasny@googlemail.com> Gregory CLEMENT <gregory.clement@free-electrons.com> Gregory Greenman <gregory.greenman@intel.com> Gu...
2013 May 05
0
[linux-linus test] 17901: regressions - FAIL
...gt; Greg KH <gregkh@linuxfoundation.org> Greg Kroah-Hartman <gregkh@linuxfoundation.org> Greg Kroah-Hartman <gregkh@suse.de> Greg Pearson <greg.pearson@hp.com> Greg Rose <gregory.v.rose@intel.com> Greg Suarez <gsuarez@smithmicro.com> Greg Thelen <gthelen@google.com> Greg Ungerer <gerg@snapgear.com> Greg Ungerer <gerg@uclinux.org> Greg Ungerer<gerg@uclinux.org> Gregor Jasny <gjasny@googlemail.com> Gregory CLEMENT <gregory.clement@free-electrons.com> Gregory Greenman <gregory.greenman@intel.com> Gr...
2013 May 07
0
[linux-linus test] 17916: regressions - FAIL
...gt; Greg KH <gregkh@linuxfoundation.org> Greg Kroah-Hartman <gregkh@linuxfoundation.org> Greg Kroah-Hartman <gregkh@suse.de> Greg Pearson <greg.pearson@hp.com> Greg Rose <gregory.v.rose@intel.com> Greg Suarez <gsuarez@smithmicro.com> Greg Thelen <gthelen@google.com> Greg Ungerer <gerg@snapgear.com> Greg Ungerer <gerg@uclinux.org> Greg Ungerer<gerg@uclinux.org> Gregor Jasny <gjasny@googlemail.com> Gregory CLEMENT <gregory.clement@free-electrons.com> Gregory Greenman <gregory.greenman@intel.com> Gr...
2013 Jun 16
0
[linux-linus test] 18150: regressions - FAIL
...gt; Greg KH <gregkh@linuxfoundation.org> Greg Kroah-Hartman <gregkh@linuxfoundation.org> Greg Kroah-Hartman <gregkh@suse.de> Greg Pearson <greg.pearson@hp.com> Greg Rose <gregory.v.rose@intel.com> Greg Suarez <gsuarez@smithmicro.com> Greg Thelen <gthelen@google.com> Greg Ungerer <gerg@snapgear.com> Greg Ungerer <gerg@uclinux.org> Greg Ungerer<gerg@uclinux.org> Gregor Jasny <gjasny@googlemail.com> Gregory CLEMENT <gregory.clement@free-electrons.com> Gregory Greenman <gregory.greenman@intel.com> Gr...
2013 Jun 23
0
[linux-linus test] 18181: regressions - trouble: broken/fail/pass
...gt; Greg KH <gregkh@linuxfoundation.org> Greg Kroah-Hartman <gregkh@linuxfoundation.org> Greg Kroah-Hartman <gregkh@suse.de> Greg Pearson <greg.pearson@hp.com> Greg Rose <gregory.v.rose@intel.com> Greg Suarez <gsuarez@smithmicro.com> Greg Thelen <gthelen@google.com> Greg Ungerer <gerg@snapgear.com> Greg Ungerer <gerg@uclinux.org> Greg Ungerer<gerg@uclinux.org> Gregor Jasny <gjasny@googlemail.com> Gregory CLEMENT <gregory.clement@free-electrons.com> Gregory Greenman <gregory.greenman@intel.com> Gr...
2013 Aug 29
0
[linux-linus test] 18805: regressions - FAIL
...man <gregkh@linuxfoundation.org> [staging] Greg Kroah-Hartman <gregkh@linuxfoundation.org> Greg Kroah-Hartman <gregkh@suse.de> Greg Pearson <greg.pearson@hp.com> Greg Rose <gregory.v.rose@intel.com> Greg Suarez <gsuarez@smithmicro.com> Greg Thelen <gthelen@google.com> Greg Ungerer <gerg@snapgear.com> Greg Ungerer <gerg@uclinux.org> Greg Ungerer<gerg@uclinux.org> Gregor Jasny <gjasny@googlemail.com> Gregory CLEMENT <gregory.clement@free-electrons.com> Gregory Fong <gregory.0xf0@gmail.com> Gregory Gr...