From: Gleb C. <lna...@ya...> - 2024-11-07 11:04:25
|
Commit: 2fea7e4 GitHub URL: https://github.com/SCST-project/scst/commit/2fea7e484f3ddff369503295ede5401f73c2dfc8 Author: Gleb Chesnokov Date: 2024-11-07T14:02:05+03:00 Log Message: ----------- qla2x00t-32gbit: Remove the unused 'del_list_entry' field in struct fc_port The 'del_list_entry' field in "struct fc_port" is unused. The field was introduced in commit 2d70c103fd2a ("[SCSI] qla2xxx: Add LLD target-mode infrastructure for >= 24xx series") in 2012-05 and the last user was removed in commit 726b85487067 ("qla2xxx: Add framework for async fabric discovery") in 2017-02. Remove this unused field. Signed-off-by: Christophe JAILLET <chr...@wa...> Link: https://lore.kernel.org/r/691...@wa... Signed-off-by: Martin K. Petersen <mar...@or...> [ commit e59f43fb6477 upstream ] Modified Paths: -------------- qla2x00t-32gbit/qla_def.h | 1 - 1 file changed, 1 deletion(-) =================================================================== diff --git a/qla2x00t-32gbit/qla_def.h b/qla2x00t-32gbit/qla_def.h index 09f4a6c..2707055 100644 --- a/qla2x00t-32gbit/qla_def.h +++ b/qla2x00t-32gbit/qla_def.h @@ -2681,7 +2681,6 @@ typedef struct fc_port { struct kref sess_kref; struct qla_tgt *tgt; unsigned long expires; - struct list_head del_list_entry; struct work_struct free_work; struct work_struct reg_work; uint64_t jiffies_at_registration; |