Re: [PATCH] riscv: remove unused variable in ftrace

2018-12-06 Thread Steven Rostedt
On Thu, 6 Dec 2018 11:20:31 -0800
Olof Johansson  wrote:

> On Thu, Dec 6, 2018 at 2:26 AM David Abdurachmanov
>  wrote:
> >
> > Noticed while building kernel-4.20.0-0.rc5.git2.1.fc30 for
> > Fedora 30/RISCV.
> >
> > [..]
> > BUILDSTDERR: arch/riscv/kernel/ftrace.c: In function 
> > 'prepare_ftrace_return':
> > BUILDSTDERR: arch/riscv/kernel/ftrace.c:135:6: warning: unused variable 
> > 'err' [-Wunused-variable]
> > BUILDSTDERR:   int err;
> > BUILDSTDERR:   ^~~

Bah. I could have sworn I checked for all the error messages when I did
my cross-compiling of the architectures. I fixed this issue in other
places, not sure how I missed riscv.

Thanks for fixing it.

Acked-by: Steven Rostedt (VMware) 

-- Steve

 
> > [..]
> >
> > Signed-off-by: David Abdurachmanov   
> 
> Please add a:
> Fixes: e949b6db51dc1 ("riscv/function_graph: Simplify with
> function_graph_enter()")
> Reviewed-by: Olof Johansson 



Re: [PATCH] riscv: remove unused variable in ftrace

2018-12-06 Thread Steven Rostedt
On Thu, 6 Dec 2018 11:20:31 -0800
Olof Johansson  wrote:

> On Thu, Dec 6, 2018 at 2:26 AM David Abdurachmanov
>  wrote:
> >
> > Noticed while building kernel-4.20.0-0.rc5.git2.1.fc30 for
> > Fedora 30/RISCV.
> >
> > [..]
> > BUILDSTDERR: arch/riscv/kernel/ftrace.c: In function 
> > 'prepare_ftrace_return':
> > BUILDSTDERR: arch/riscv/kernel/ftrace.c:135:6: warning: unused variable 
> > 'err' [-Wunused-variable]
> > BUILDSTDERR:   int err;
> > BUILDSTDERR:   ^~~

Bah. I could have sworn I checked for all the error messages when I did
my cross-compiling of the architectures. I fixed this issue in other
places, not sure how I missed riscv.

Thanks for fixing it.

Acked-by: Steven Rostedt (VMware) 

-- Steve

 
> > [..]
> >
> > Signed-off-by: David Abdurachmanov   
> 
> Please add a:
> Fixes: e949b6db51dc1 ("riscv/function_graph: Simplify with
> function_graph_enter()")
> Reviewed-by: Olof Johansson 



Re: [PATCH] riscv: remove unused variable in ftrace

2018-12-06 Thread Olof Johansson
On Thu, Dec 6, 2018 at 2:26 AM David Abdurachmanov
 wrote:
>
> Noticed while building kernel-4.20.0-0.rc5.git2.1.fc30 for
> Fedora 30/RISCV.
>
> [..]
> BUILDSTDERR: arch/riscv/kernel/ftrace.c: In function 'prepare_ftrace_return':
> BUILDSTDERR: arch/riscv/kernel/ftrace.c:135:6: warning: unused variable 'err' 
> [-Wunused-variable]
> BUILDSTDERR:   int err;
> BUILDSTDERR:   ^~~
> [..]
>
> Signed-off-by: David Abdurachmanov 

Please add a:
Fixes: e949b6db51dc1 ("riscv/function_graph: Simplify with
function_graph_enter()")
Reviewed-by: Olof Johansson 


Re: [PATCH] riscv: remove unused variable in ftrace

2018-12-06 Thread Olof Johansson
On Thu, Dec 6, 2018 at 2:26 AM David Abdurachmanov
 wrote:
>
> Noticed while building kernel-4.20.0-0.rc5.git2.1.fc30 for
> Fedora 30/RISCV.
>
> [..]
> BUILDSTDERR: arch/riscv/kernel/ftrace.c: In function 'prepare_ftrace_return':
> BUILDSTDERR: arch/riscv/kernel/ftrace.c:135:6: warning: unused variable 'err' 
> [-Wunused-variable]
> BUILDSTDERR:   int err;
> BUILDSTDERR:   ^~~
> [..]
>
> Signed-off-by: David Abdurachmanov 

Please add a:
Fixes: e949b6db51dc1 ("riscv/function_graph: Simplify with
function_graph_enter()")
Reviewed-by: Olof Johansson 


[PATCH] riscv: remove unused variable in ftrace

2018-12-06 Thread David Abdurachmanov
Noticed while building kernel-4.20.0-0.rc5.git2.1.fc30 for
Fedora 30/RISCV.

[..]
BUILDSTDERR: arch/riscv/kernel/ftrace.c: In function 'prepare_ftrace_return':
BUILDSTDERR: arch/riscv/kernel/ftrace.c:135:6: warning: unused variable 'err' 
[-Wunused-variable]
BUILDSTDERR:   int err;
BUILDSTDERR:   ^~~
[..]

Signed-off-by: David Abdurachmanov 
---
 arch/riscv/kernel/ftrace.c | 1 -
 1 file changed, 1 deletion(-)

diff --git a/arch/riscv/kernel/ftrace.c b/arch/riscv/kernel/ftrace.c
index c433f6d3dd64..a840b7d074f7 100644
--- a/arch/riscv/kernel/ftrace.c
+++ b/arch/riscv/kernel/ftrace.c
@@ -132,7 +132,6 @@ void prepare_ftrace_return(unsigned long *parent, unsigned 
long self_addr,
 {
unsigned long return_hooker = (unsigned long)_to_handler;
unsigned long old;
-   int err;
 
if (unlikely(atomic_read(>tracing_graph_pause)))
return;
-- 
2.19.2



[PATCH] riscv: remove unused variable in ftrace

2018-12-06 Thread David Abdurachmanov
Noticed while building kernel-4.20.0-0.rc5.git2.1.fc30 for
Fedora 30/RISCV.

[..]
BUILDSTDERR: arch/riscv/kernel/ftrace.c: In function 'prepare_ftrace_return':
BUILDSTDERR: arch/riscv/kernel/ftrace.c:135:6: warning: unused variable 'err' 
[-Wunused-variable]
BUILDSTDERR:   int err;
BUILDSTDERR:   ^~~
[..]

Signed-off-by: David Abdurachmanov 
---
 arch/riscv/kernel/ftrace.c | 1 -
 1 file changed, 1 deletion(-)

diff --git a/arch/riscv/kernel/ftrace.c b/arch/riscv/kernel/ftrace.c
index c433f6d3dd64..a840b7d074f7 100644
--- a/arch/riscv/kernel/ftrace.c
+++ b/arch/riscv/kernel/ftrace.c
@@ -132,7 +132,6 @@ void prepare_ftrace_return(unsigned long *parent, unsigned 
long self_addr,
 {
unsigned long return_hooker = (unsigned long)_to_handler;
unsigned long old;
-   int err;
 
if (unlikely(atomic_read(>tracing_graph_pause)))
return;
-- 
2.19.2