[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-ID: <20220919141144.h2dw57cmjs2egwep@carbon.lan>
Date: Mon, 19 Sep 2022 16:11:44 +0200
From: Daniel Wagner <dwagner@...e.de>
To: Ren Zhijie <renzhijie2@...wei.com>
Cc: njavali@...vell.com, GR-QLogic-Storage-Upstream@...vell.com,
jejb@...ux.ibm.com, martin.petersen@...cle.com, aeasi@...vell.com,
himanshu.madhani@...cle.com, linux-scsi@...r.kernel.org,
linux-kernel@...r.kernel.org
Subject: Re: [PATCH v2 -next] scsi: qla2xxx: Fix build error
implicit-function-declaration
On Mon, Sep 19, 2022 at 09:34:04PM +0800, Ren Zhijie wrote:
> If CONFIG_TRACING is not set,
> make ARCH=x86_64 CROSS_COMPILE=x86_64-linux-gnu-,
> will be failed, like this:
>
> drivers/scsi/qla2xxx/qla_os.c: In function ‘qla_trace_init’:
> drivers/scsi/qla2xxx/qla_os.c:2854:18: error: implicit declaration of function ‘trace_array_get_by_name’; did you mean ‘trace_array_set_clr_event’? [-Werror=implicit-function-declaration]
> qla_trc_array = trace_array_get_by_name("qla2xxx");
> ^~~~~~~~~~~~~~~~~~~~~~~
> trace_array_set_clr_event
> drivers/scsi/qla2xxx/qla_os.c:2854:16: error: assignment makes pointer from integer without a cast [-Werror=int-conversion]
> qla_trc_array = trace_array_get_by_name("qla2xxx");
> ^
> drivers/scsi/qla2xxx/qla_os.c: In function ‘qla_trace_uninit’:
> drivers/scsi/qla2xxx/qla_os.c:2869:2: error: implicit declaration of function ‘trace_array_put’; did you mean ‘trace_seq_putc’? [-Werror=implicit-function-declaration]
> trace_array_put(qla_trc_array);
> ^~~~~~~~~~~~~~~
> trace_seq_putc
> cc1: all warnings being treated as errors
>
> To fix this error, wrap up all the relevant code with CONFIG_TRACING.
>
> Fixes: 8bfc149ba24c ("scsi: qla2xxx: Enhance driver tracing with separate tunable and more")
> Signed-off-by: Ren Zhijie <renzhijie2@...wei.com>
Reviewed-by: Daniel Wagner <dwagner@...e.de>
Powered by blists - more mailing lists