mirror of
https://github.com/FEX-Emu/linux.git
synced 2024-12-28 12:25:31 +00:00
dlm: Replace six seq_puts() calls by seq_putc()
Six single characters (line breaks) should be put into a sequence. Thus use the corresponding function "seq_putc". This issue was detected by using the Coccinelle software. Signed-off-by: Markus Elfring <elfring@users.sourceforge.net> Signed-off-by: David Teigland <teigland@redhat.com>
This commit is contained in:
parent
8e1743748b
commit
653996ca8d
@ -68,7 +68,7 @@ static void print_format1_lock(struct seq_file *s, struct dlm_lkb *lkb,
|
|||||||
if (lkb->lkb_wait_type)
|
if (lkb->lkb_wait_type)
|
||||||
seq_printf(s, " wait_type: %d", lkb->lkb_wait_type);
|
seq_printf(s, " wait_type: %d", lkb->lkb_wait_type);
|
||||||
|
|
||||||
seq_puts(s, "\n");
|
seq_putc(s, '\n');
|
||||||
}
|
}
|
||||||
|
|
||||||
static void print_format1(struct dlm_rsb *res, struct seq_file *s)
|
static void print_format1(struct dlm_rsb *res, struct seq_file *s)
|
||||||
@ -111,7 +111,7 @@ static void print_format1(struct dlm_rsb *res, struct seq_file *s)
|
|||||||
}
|
}
|
||||||
if (rsb_flag(res, RSB_VALNOTVALID))
|
if (rsb_flag(res, RSB_VALNOTVALID))
|
||||||
seq_puts(s, " (INVALID)");
|
seq_puts(s, " (INVALID)");
|
||||||
seq_puts(s, "\n");
|
seq_putc(s, '\n');
|
||||||
if (seq_has_overflowed(s))
|
if (seq_has_overflowed(s))
|
||||||
goto out;
|
goto out;
|
||||||
}
|
}
|
||||||
@ -156,7 +156,7 @@ static void print_format1(struct dlm_rsb *res, struct seq_file *s)
|
|||||||
lkb->lkb_id, print_lockmode(lkb->lkb_rqmode));
|
lkb->lkb_id, print_lockmode(lkb->lkb_rqmode));
|
||||||
if (lkb->lkb_wait_type)
|
if (lkb->lkb_wait_type)
|
||||||
seq_printf(s, " wait_type: %d", lkb->lkb_wait_type);
|
seq_printf(s, " wait_type: %d", lkb->lkb_wait_type);
|
||||||
seq_puts(s, "\n");
|
seq_putc(s, '\n');
|
||||||
if (seq_has_overflowed(s))
|
if (seq_has_overflowed(s))
|
||||||
goto out;
|
goto out;
|
||||||
}
|
}
|
||||||
@ -287,7 +287,7 @@ static void print_format3(struct dlm_rsb *r, struct seq_file *s)
|
|||||||
else
|
else
|
||||||
seq_printf(s, " %02x", (unsigned char)r->res_name[i]);
|
seq_printf(s, " %02x", (unsigned char)r->res_name[i]);
|
||||||
}
|
}
|
||||||
seq_puts(s, "\n");
|
seq_putc(s, '\n');
|
||||||
if (seq_has_overflowed(s))
|
if (seq_has_overflowed(s))
|
||||||
goto out;
|
goto out;
|
||||||
|
|
||||||
@ -298,7 +298,7 @@ static void print_format3(struct dlm_rsb *r, struct seq_file *s)
|
|||||||
|
|
||||||
for (i = 0; i < lvblen; i++)
|
for (i = 0; i < lvblen; i++)
|
||||||
seq_printf(s, " %02x", (unsigned char)r->res_lvbptr[i]);
|
seq_printf(s, " %02x", (unsigned char)r->res_lvbptr[i]);
|
||||||
seq_puts(s, "\n");
|
seq_putc(s, '\n');
|
||||||
if (seq_has_overflowed(s))
|
if (seq_has_overflowed(s))
|
||||||
goto out;
|
goto out;
|
||||||
|
|
||||||
@ -361,8 +361,7 @@ static void print_format4(struct dlm_rsb *r, struct seq_file *s)
|
|||||||
else
|
else
|
||||||
seq_printf(s, " %02x", (unsigned char)r->res_name[i]);
|
seq_printf(s, " %02x", (unsigned char)r->res_name[i]);
|
||||||
}
|
}
|
||||||
seq_puts(s, "\n");
|
seq_putc(s, '\n');
|
||||||
|
|
||||||
unlock_rsb(r);
|
unlock_rsb(r);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user