mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-11-15 00:04:15 +08:00
scsi: advansys: Fix kernel pointer leak
[ Upstream commit d4996c6eac
]
Pointers should be printed with %p or %px rather than cast to 'unsigned
long' and printed with %lx.
Change %lx to %p to print the hashed pointer.
Link: https://lore.kernel.org/r/20210929122538.1158235-1-qtxuning1999@sjtu.edu.cn
Signed-off-by: Guo Zhi <qtxuning1999@sjtu.edu.cn>
Signed-off-by: Martin K. Petersen <martin.petersen@oracle.com>
Signed-off-by: Sasha Levin <sashal@kernel.org>
This commit is contained in:
parent
836d89d174
commit
f5a0ba4a9b
@ -3370,8 +3370,8 @@ static void asc_prt_adv_board_info(struct seq_file *m, struct Scsi_Host *shost)
|
||||
shost->host_no);
|
||||
|
||||
seq_printf(m,
|
||||
" iop_base 0x%lx, cable_detect: %X, err_code %u\n",
|
||||
(unsigned long)v->iop_base,
|
||||
" iop_base 0x%p, cable_detect: %X, err_code %u\n",
|
||||
v->iop_base,
|
||||
AdvReadWordRegister(iop_base,IOPW_SCSI_CFG1) & CABLE_DETECT,
|
||||
v->err_code);
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user