Re: [PATCH] scsi: libsas: remove the exporting of sas_wait_eh

2019-07-11 Thread Martin K. Petersen
Denis, > The function sas_wait_eh is declared static and marked > EXPORT_SYMBOL, which is at best an odd combination. Because the > function is not used outside of the drivers/scsi/libsas/sas_scsi_host.c > file it is defined in, this commit removes the EXPORT_SYMBOL() marking. Applied to

Re: [PATCH] scsi: libsas: remove the exporting of sas_wait_eh

2019-07-08 Thread Jason Yan
On 2019/7/9 0:43, Denis Efremov wrote: The function sas_wait_eh is declared static and marked EXPORT_SYMBOL, which is at best an odd combination. Because the function is not used outside of the drivers/scsi/libsas/sas_scsi_host.c file it is defined in, this commit removes the EXPORT_SYMBOL()

[PATCH] scsi: libsas: remove the exporting of sas_wait_eh

2019-07-08 Thread Denis Efremov
The function sas_wait_eh is declared static and marked EXPORT_SYMBOL, which is at best an odd combination. Because the function is not used outside of the drivers/scsi/libsas/sas_scsi_host.c file it is defined in, this commit removes the EXPORT_SYMBOL() marking. Signed-off-by: Denis Efremov ---