[PATCH v2] staging: android: Remove ion device tree bindings from the TODO

2019-08-18 Thread Donald Yandt
s it. Signed-off-by: Donald Yandt --- Changes in v2: - Referenced previous commits and described the commit in greater detail. --- drivers/staging/android/TODO | 2 -- 1 file changed, 2 deletions(-) diff --git a/drivers/staging/android/TODO b/drivers/staging/android/TODO index fbf015cc6d62.

Re: [PATCH] staging: android: Remove ion device tree bindings from the TODO

2019-08-17 Thread Donald Yandt
On Sun, Aug 18, 2019 at 1:03 AM Greg KH wrote: > > On Sat, Aug 17, 2019 at 05:37:58PM -0400, Donald Yandt wrote: > > This patch removes the todo for the ion chunk and > > carveout device tree bindings. > > > > Signed-off-by: Donald Yandt > > --- > >

[PATCH] staging: android: Remove ion device tree bindings from the TODO

2019-08-17 Thread Donald Yandt
This patch removes the todo for the ion chunk and carveout device tree bindings. Signed-off-by: Donald Yandt --- drivers/staging/android/TODO | 2 -- 1 file changed, 2 deletions(-) diff --git a/drivers/staging/android/TODO b/drivers/staging/android/TODO index fbf015cc6..767dd98fd 100644 --- a

[tip:perf/core] perf machine: Return NULL instead of null-terminating /proc/version array

2019-05-30 Thread tip-bot for Donald Yandt
Commit-ID: 34b65affe18daad31fed83e50d1f3b817786a2b7 Gitweb: https://git.kernel.org/tip/34b65affe18daad31fed83e50d1f3b817786a2b7 Author: Donald Yandt AuthorDate: Tue, 28 May 2019 09:41:28 -0400 Committer: Arnaldo Carvalho de Melo CommitDate: Tue, 28 May 2019 18:37:44 -0300 perf machine

[PATCH resend] tools/perf/util/machine: Return NULL instead of null-terminating

2019-05-28 Thread Donald Yandt
Return NULL instead of null-terminating version char array when fgets fails due to end-of-file or error. Signed-off-by: Donald Yandt --- tools/perf/util/machine.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tools/perf/util/machine.c b/tools/perf/util/machine.c index

[PATCH perf/core] tools/perf/util/machine: Return NULL instead of null-terminating

2019-05-21 Thread Donald Yandt
Return NULL instead of null-terminating version char array when fgets fails due to end-of-file or error. Signed-off-by: Donald Yandt --- tools/perf/util/machine.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tools/perf/util/machine.c b/tools/perf/util/machine.c index

[tip:perf/core] perf machine: Null-terminate version char array upon fgets(/proc/version) error

2019-05-18 Thread tip-bot for Donald Yandt
Commit-ID: 30ba5b0e66c872faa416a458d32cc3956ecb548a Gitweb: https://git.kernel.org/tip/30ba5b0e66c872faa416a458d32cc3956ecb548a Author: Donald Yandt AuthorDate: Tue, 14 May 2019 07:01:00 -0400 Committer: Arnaldo Carvalho de Melo CommitDate: Wed, 15 May 2019 16:36:47 -0300 perf machine

Re: [PATCH 20/73] perf machine: Null-terminate version char array upon fgets(/proc/version) error

2019-05-17 Thread Donald Yandt
Thank you Arnaldo for signing my patch. I think we should use version 4 of my patch and return NULL instead of null-terminating for efficiency. Thanks, Donald > On May 17, 2019, at 3:35 PM, Arnaldo Carvalho de Melo wrote: > > From: Donald Yandt > > If fgets() fails d

[PATCH v4] tools/perf/util: null-terminate version char array upon error

2019-05-14 Thread Donald Yandt
rformance from host") Signed-off-by: Donald Yandt --- tools/perf/util/machine.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/tools/perf/util/machine.c b/tools/perf/util/machine.c index 3c520baa1..6fd877220 100644 --- a/tools/perf/util/machine.c +++ b/tools/perf/util/

[PATCH v3] tools/perf/util: null-terminate version char array upon error

2019-05-14 Thread Donald Yandt
If fgets fails due to any other error besides end-of-file, the version char array may not even be null-terminated. Signed-off-by: Donald Yandt Fixes: a1645ce12adb ("perf: 'perf kvm' tool for monitoring guest performance from host") --- tools/perf/util/machine.c | 3 ++

[PATCH v2] tools/perf/util: null-terminate version char array upon error

2019-05-14 Thread Donald Yandt
If fgets fails due to any other error besides end-of-file, the version char array may not even be null-terminated. Signed-off-by: Donald Yandt --- tools/perf/util/machine.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/tools/perf/util/machine.c b/tools/perf/util