mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-11-25 03:30:53 +07:00
[PATCH] pr_debug: trident: use size_t length modifier in pr_debug format arguments
trident: use size_t length modifier in pr_debug format arguments Signed-off-by: Zach Brown <zach.brown@oracle.com> Signed-off-by: Andrew Morton <akpm@osdl.org> Signed-off-by: Linus Torvalds <torvalds@osdl.org>
This commit is contained in:
parent
8057de64fd
commit
c8c94b1139
@ -1862,7 +1862,7 @@ trident_read(struct file *file, char __user *buffer, size_t count, loff_t * ppos
|
||||
unsigned swptr;
|
||||
int cnt;
|
||||
|
||||
pr_debug("trident: trident_read called, count = %d\n", count);
|
||||
pr_debug("trident: trident_read called, count = %zd\n", count);
|
||||
|
||||
VALIDATE_STATE(state);
|
||||
|
||||
@ -1978,7 +1978,7 @@ trident_write(struct file *file, const char __user *buffer, size_t count, loff_t
|
||||
unsigned int copy_count;
|
||||
int lret; /* for lock_set_fmt */
|
||||
|
||||
pr_debug("trident: trident_write called, count = %d\n", count);
|
||||
pr_debug("trident: trident_write called, count = %zd\n", count);
|
||||
|
||||
VALIDATE_STATE(state);
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user