
hulk inclusion category: bugfix bugzilla: https://gitee.com/openeuler/kernel/issues/IB6YDK -------------------------------- The scsi device flag no_start_on_resume was removed in commit 9e6075e112ee ("scsi: Remove scsi device no_start_on_resume flag"). Fix the kabi broken in struct scsi_device. Fixes: 9e6075e112ee ("scsi: Remove scsi device no_start_on_resume flag") Signed-off-by: Zheng Qixing <zhengqixing@huawei.com> --- include/scsi/scsi_device.h | 1 + 1 file changed, 1 insertion(+) diff --git a/include/scsi/scsi_device.h b/include/scsi/scsi_device.h index d4dcb9bccf7c..fed8c6022362 100644 --- a/include/scsi/scsi_device.h +++ b/include/scsi/scsi_device.h @@ -217,6 +217,7 @@ struct scsi_device { unsigned use_192_bytes_for_3f:1; /* ask for 192 bytes from page 0x3f */ unsigned no_start_on_add:1; /* do not issue start on add */ unsigned allow_restart:1; /* issue START_UNIT in error handler */ + KABI_DEPRECATE(unsigned, no_start_on_resume:1) /* Do not issue START_STOP_UNIT on resume */ unsigned start_stop_pwr_cond:1; /* Set power cond. in START_STOP_UNIT */ unsigned no_uld_attach:1; /* disable connecting to upper level drivers */ unsigned select_no_atn:1; -- 2.39.2