bcache: replace '%pF' by '%pS' in seq_printf()
'%pF' and '%pf' are deprecated vsprintf pointer extensions, this patch replace them by '%pS', which is suggested by checkpatch.pl. Signed-off-by: Coly Li <colyli@suse.de> Reviewed-by: Shenghui Wang <shhuiw@foxmail.com> Signed-off-by: Jens Axboe <axboe@kernel.dk>
This commit is contained in:
@@ -168,7 +168,7 @@ static int debug_seq_show(struct seq_file *f, void *data)
|
|||||||
list_for_each_entry(cl, &closure_list, all) {
|
list_for_each_entry(cl, &closure_list, all) {
|
||||||
int r = atomic_read(&cl->remaining);
|
int r = atomic_read(&cl->remaining);
|
||||||
|
|
||||||
seq_printf(f, "%p: %pF -> %pf p %p r %i ",
|
seq_printf(f, "%p: %pS -> %pS p %p r %i ",
|
||||||
cl, (void *) cl->ip, cl->fn, cl->parent,
|
cl, (void *) cl->ip, cl->fn, cl->parent,
|
||||||
r & CLOSURE_REMAINING_MASK);
|
r & CLOSURE_REMAINING_MASK);
|
||||||
|
|
||||||
@@ -178,7 +178,7 @@ static int debug_seq_show(struct seq_file *f, void *data)
|
|||||||
r & CLOSURE_RUNNING ? "R" : "");
|
r & CLOSURE_RUNNING ? "R" : "");
|
||||||
|
|
||||||
if (r & CLOSURE_WAITING)
|
if (r & CLOSURE_WAITING)
|
||||||
seq_printf(f, " W %pF\n",
|
seq_printf(f, " W %pS\n",
|
||||||
(void *) cl->waiting_on);
|
(void *) cl->waiting_on);
|
||||||
|
|
||||||
seq_printf(f, "\n");
|
seq_printf(f, "\n");
|
||||||
|
Reference in New Issue
Block a user