Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 39c978cd authored by Randy Dunlap's avatar Randy Dunlap Committed by Roland Dreier
Browse files

IB/iser: Fix sector_t format warning



Fix pr_err (printk) format warning:

    drivers/infiniband/ulp/iser/iser_verbs.c:1181:4: warning: format '%lx' expects argument of type 'long unsigned int', but argument 3 has type 'sector_t' [-Wformat]

Signed-off-by: default avatarRandy Dunlap <rdunlap@infradead.org>
Signed-off-by: default avatarRoland Dreier <roland@purestorage.com>
parent 6192d4e6
Loading
Loading
Loading
Loading
+3 −2
Original line number Diff line number Diff line
@@ -1178,9 +1178,10 @@ u8 iser_check_task_pi_status(struct iscsi_iser_task *iser_task,
			do_div(sector_off, sector_size + 8);
			*sector = scsi_get_lba(iser_task->sc) + sector_off;

			pr_err("PI error found type %d at sector %lx "
			pr_err("PI error found type %d at sector %llx "
			       "expected %x vs actual %x\n",
			       mr_status.sig_err.err_type, *sector,
			       mr_status.sig_err.err_type,
			       (unsigned long long)*sector,
			       mr_status.sig_err.expected,
			       mr_status.sig_err.actual);