Simple change, looks fine to me. Reviewed-by: Laurence Oberman <[email protected]>
Laurence Oberman Principal Software Maintenance Engineer Red Hat Global Support Services ----- Original Message ----- From: "Denys Vlasenko" <[email protected]> To: "James Bottomley" <[email protected]> Cc: "Denys Vlasenko" <[email protected]>, "Hiral Patel" <[email protected]>, "Suma Ramars" <[email protected]>, "Brian Uchino" <[email protected]>, [email protected], [email protected] Sent: Friday, April 8, 2016 2:58:43 PM Subject: [PATCH] drivers/scsi/fnic/fnic_scsi.c: Deinline fnic_queue_abort_io_req, save 1792 bytes This function compiles to 511 bytes of machine code. Abort commands are not time-critical at all. Signed-off-by: Denys Vlasenko <[email protected]> CC: James Bottomley <[email protected]> CC: Hiral Patel <[email protected]> CC: Suma Ramars <[email protected]> CC: Brian Uchino <[email protected]> CC: [email protected] CC: [email protected] --- drivers/scsi/fnic/fnic_scsi.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/scsi/fnic/fnic_scsi.c b/drivers/scsi/fnic/fnic_scsi.c index 266b909..0a3edee 100644 --- a/drivers/scsi/fnic/fnic_scsi.c +++ b/drivers/scsi/fnic/fnic_scsi.c @@ -1435,7 +1435,7 @@ wq_copy_cleanup_scsi_cmd: } } -static inline int fnic_queue_abort_io_req(struct fnic *fnic, int tag, +static int fnic_queue_abort_io_req(struct fnic *fnic, int tag, u32 task_req, u8 *fc_lun, struct fnic_io_req *io_req) { -- 2.1.0 -- To unsubscribe from this list: send the line "unsubscribe linux-scsi" in the body of a message to [email protected] More majordomo info at http://vger.kernel.org/majordomo-info.html

