Commit ab75fb2d authored by Joe Perches's avatar Joe Perches Committed by Greg Kroah-Hartman

staging: lustre: Convert remaining uses of "= seq_printf(...)"

The seq_printf return value, because it's frequently misused,
will eventually be converted to void.

See: commit 1f33c41c ("seq_file: Rename seq_overflow() to
     seq_has_overflowed() and make public")

Convert the remaining uses by hand.

Miscellanea:

o Convert fixed string output to seq_puts
Signed-off-by: default avatarJoe Perches <joe@perches.com>
Cc: Oleg Drokin <oleg.drokin@intel.com>
Cc: Andreas Dilger <andreas.dilger@intel.com>
Signed-off-by: default avatarAndrew Morton <akpm@linux-foundation.org>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent c0e134af
...@@ -59,7 +59,7 @@ static int ll_blksize_seq_show(struct seq_file *m, void *v) ...@@ -59,7 +59,7 @@ static int ll_blksize_seq_show(struct seq_file *m, void *v)
cfs_time_shift_64(-OBD_STATFS_CACHE_SECONDS), cfs_time_shift_64(-OBD_STATFS_CACHE_SECONDS),
OBD_STATFS_NODELAY); OBD_STATFS_NODELAY);
if (!rc) if (!rc)
rc = seq_printf(m, "%u\n", osfs.os_bsize); seq_printf(m, "%u\n", osfs.os_bsize);
return rc; return rc;
} }
...@@ -82,8 +82,9 @@ static int ll_kbytestotal_seq_show(struct seq_file *m, void *v) ...@@ -82,8 +82,9 @@ static int ll_kbytestotal_seq_show(struct seq_file *m, void *v)
while (blk_size >>= 1) while (blk_size >>= 1)
result <<= 1; result <<= 1;
rc = seq_printf(m, "%llu\n", result); seq_printf(m, "%llu\n", result);
} }
return rc; return rc;
} }
LPROC_SEQ_FOPS_RO(ll_kbytestotal); LPROC_SEQ_FOPS_RO(ll_kbytestotal);
...@@ -105,8 +106,9 @@ static int ll_kbytesfree_seq_show(struct seq_file *m, void *v) ...@@ -105,8 +106,9 @@ static int ll_kbytesfree_seq_show(struct seq_file *m, void *v)
while (blk_size >>= 1) while (blk_size >>= 1)
result <<= 1; result <<= 1;
rc = seq_printf(m, "%llu\n", result); seq_printf(m, "%llu\n", result);
} }
return rc; return rc;
} }
LPROC_SEQ_FOPS_RO(ll_kbytesfree); LPROC_SEQ_FOPS_RO(ll_kbytesfree);
...@@ -128,8 +130,9 @@ static int ll_kbytesavail_seq_show(struct seq_file *m, void *v) ...@@ -128,8 +130,9 @@ static int ll_kbytesavail_seq_show(struct seq_file *m, void *v)
while (blk_size >>= 1) while (blk_size >>= 1)
result <<= 1; result <<= 1;
rc = seq_printf(m, "%llu\n", result); seq_printf(m, "%llu\n", result);
} }
return rc; return rc;
} }
LPROC_SEQ_FOPS_RO(ll_kbytesavail); LPROC_SEQ_FOPS_RO(ll_kbytesavail);
...@@ -145,7 +148,8 @@ static int ll_filestotal_seq_show(struct seq_file *m, void *v) ...@@ -145,7 +148,8 @@ static int ll_filestotal_seq_show(struct seq_file *m, void *v)
cfs_time_shift_64(-OBD_STATFS_CACHE_SECONDS), cfs_time_shift_64(-OBD_STATFS_CACHE_SECONDS),
OBD_STATFS_NODELAY); OBD_STATFS_NODELAY);
if (!rc) if (!rc)
rc = seq_printf(m, "%llu\n", osfs.os_files); seq_printf(m, "%llu\n", osfs.os_files);
return rc; return rc;
} }
LPROC_SEQ_FOPS_RO(ll_filestotal); LPROC_SEQ_FOPS_RO(ll_filestotal);
...@@ -161,7 +165,8 @@ static int ll_filesfree_seq_show(struct seq_file *m, void *v) ...@@ -161,7 +165,8 @@ static int ll_filesfree_seq_show(struct seq_file *m, void *v)
cfs_time_shift_64(-OBD_STATFS_CACHE_SECONDS), cfs_time_shift_64(-OBD_STATFS_CACHE_SECONDS),
OBD_STATFS_NODELAY); OBD_STATFS_NODELAY);
if (!rc) if (!rc)
rc = seq_printf(m, "%llu\n", osfs.os_ffree); seq_printf(m, "%llu\n", osfs.os_ffree);
return rc; return rc;
} }
LPROC_SEQ_FOPS_RO(ll_filesfree); LPROC_SEQ_FOPS_RO(ll_filesfree);
...@@ -169,16 +174,15 @@ LPROC_SEQ_FOPS_RO(ll_filesfree); ...@@ -169,16 +174,15 @@ LPROC_SEQ_FOPS_RO(ll_filesfree);
static int ll_client_type_seq_show(struct seq_file *m, void *v) static int ll_client_type_seq_show(struct seq_file *m, void *v)
{ {
struct ll_sb_info *sbi = ll_s2sbi((struct super_block *)m->private); struct ll_sb_info *sbi = ll_s2sbi((struct super_block *)m->private);
int rc;
LASSERT(sbi != NULL); LASSERT(sbi != NULL);
if (sbi->ll_flags & LL_SBI_RMT_CLIENT) if (sbi->ll_flags & LL_SBI_RMT_CLIENT)
rc = seq_printf(m, "remote client\n"); seq_puts(m, "remote client\n");
else else
rc = seq_printf(m, "local client\n"); seq_puts(m, "local client\n");
return rc; return 0;
} }
LPROC_SEQ_FOPS_RO(ll_client_type); LPROC_SEQ_FOPS_RO(ll_client_type);
......
...@@ -465,7 +465,8 @@ int lprocfs_rd_blksize(struct seq_file *m, void *data) ...@@ -465,7 +465,8 @@ int lprocfs_rd_blksize(struct seq_file *m, void *data)
cfs_time_shift_64(-OBD_STATFS_CACHE_SECONDS), cfs_time_shift_64(-OBD_STATFS_CACHE_SECONDS),
OBD_STATFS_NODELAY); OBD_STATFS_NODELAY);
if (!rc) if (!rc)
rc = seq_printf(m, "%u\n", osfs.os_bsize); seq_printf(m, "%u\n", osfs.os_bsize);
return rc; return rc;
} }
EXPORT_SYMBOL(lprocfs_rd_blksize); EXPORT_SYMBOL(lprocfs_rd_blksize);
...@@ -484,8 +485,9 @@ int lprocfs_rd_kbytestotal(struct seq_file *m, void *data) ...@@ -484,8 +485,9 @@ int lprocfs_rd_kbytestotal(struct seq_file *m, void *data)
while (blk_size >>= 1) while (blk_size >>= 1)
result <<= 1; result <<= 1;
rc = seq_printf(m, "%llu\n", result); seq_printf(m, "%llu\n", result);
} }
return rc; return rc;
} }
EXPORT_SYMBOL(lprocfs_rd_kbytestotal); EXPORT_SYMBOL(lprocfs_rd_kbytestotal);
...@@ -504,8 +506,9 @@ int lprocfs_rd_kbytesfree(struct seq_file *m, void *data) ...@@ -504,8 +506,9 @@ int lprocfs_rd_kbytesfree(struct seq_file *m, void *data)
while (blk_size >>= 1) while (blk_size >>= 1)
result <<= 1; result <<= 1;
rc = seq_printf(m, "%llu\n", result); seq_printf(m, "%llu\n", result);
} }
return rc; return rc;
} }
EXPORT_SYMBOL(lprocfs_rd_kbytesfree); EXPORT_SYMBOL(lprocfs_rd_kbytesfree);
...@@ -524,8 +527,9 @@ int lprocfs_rd_kbytesavail(struct seq_file *m, void *data) ...@@ -524,8 +527,9 @@ int lprocfs_rd_kbytesavail(struct seq_file *m, void *data)
while (blk_size >>= 1) while (blk_size >>= 1)
result <<= 1; result <<= 1;
rc = seq_printf(m, "%llu\n", result); seq_printf(m, "%llu\n", result);
} }
return rc; return rc;
} }
EXPORT_SYMBOL(lprocfs_rd_kbytesavail); EXPORT_SYMBOL(lprocfs_rd_kbytesavail);
...@@ -538,7 +542,7 @@ int lprocfs_rd_filestotal(struct seq_file *m, void *data) ...@@ -538,7 +542,7 @@ int lprocfs_rd_filestotal(struct seq_file *m, void *data)
cfs_time_shift_64(-OBD_STATFS_CACHE_SECONDS), cfs_time_shift_64(-OBD_STATFS_CACHE_SECONDS),
OBD_STATFS_NODELAY); OBD_STATFS_NODELAY);
if (!rc) if (!rc)
rc = seq_printf(m, "%llu\n", osfs.os_files); seq_printf(m, "%llu\n", osfs.os_files);
return rc; return rc;
} }
...@@ -552,7 +556,8 @@ int lprocfs_rd_filesfree(struct seq_file *m, void *data) ...@@ -552,7 +556,8 @@ int lprocfs_rd_filesfree(struct seq_file *m, void *data)
cfs_time_shift_64(-OBD_STATFS_CACHE_SECONDS), cfs_time_shift_64(-OBD_STATFS_CACHE_SECONDS),
OBD_STATFS_NODELAY); OBD_STATFS_NODELAY);
if (!rc) if (!rc)
rc = seq_printf(m, "%llu\n", osfs.os_ffree); seq_printf(m, "%llu\n", osfs.os_ffree);
return rc; return rc;
} }
EXPORT_SYMBOL(lprocfs_rd_filesfree); EXPORT_SYMBOL(lprocfs_rd_filesfree);
...@@ -562,17 +567,18 @@ int lprocfs_rd_server_uuid(struct seq_file *m, void *data) ...@@ -562,17 +567,18 @@ int lprocfs_rd_server_uuid(struct seq_file *m, void *data)
struct obd_device *obd = data; struct obd_device *obd = data;
struct obd_import *imp; struct obd_import *imp;
char *imp_state_name = NULL; char *imp_state_name = NULL;
int rc = 0;
LASSERT(obd != NULL); LASSERT(obd != NULL);
LPROCFS_CLIMP_CHECK(obd); LPROCFS_CLIMP_CHECK(obd);
imp = obd->u.cli.cl_import; imp = obd->u.cli.cl_import;
imp_state_name = ptlrpc_import_state_name(imp->imp_state); imp_state_name = ptlrpc_import_state_name(imp->imp_state);
rc = seq_printf(m, "%s\t%s%s\n", obd2cli_tgt(obd), imp_state_name, seq_printf(m, "%s\t%s%s\n",
obd2cli_tgt(obd), imp_state_name,
imp->imp_deactive ? "\tDEACTIVATED" : ""); imp->imp_deactive ? "\tDEACTIVATED" : "");
LPROCFS_CLIMP_EXIT(obd); LPROCFS_CLIMP_EXIT(obd);
return rc;
return 0;
} }
EXPORT_SYMBOL(lprocfs_rd_server_uuid); EXPORT_SYMBOL(lprocfs_rd_server_uuid);
...@@ -580,19 +586,19 @@ int lprocfs_rd_conn_uuid(struct seq_file *m, void *data) ...@@ -580,19 +586,19 @@ int lprocfs_rd_conn_uuid(struct seq_file *m, void *data)
{ {
struct obd_device *obd = data; struct obd_device *obd = data;
struct ptlrpc_connection *conn; struct ptlrpc_connection *conn;
int rc = 0;
LASSERT(obd != NULL); LASSERT(obd != NULL);
LPROCFS_CLIMP_CHECK(obd); LPROCFS_CLIMP_CHECK(obd);
conn = obd->u.cli.cl_import->imp_connection; conn = obd->u.cli.cl_import->imp_connection;
if (conn && obd->u.cli.cl_import) if (conn && obd->u.cli.cl_import)
rc = seq_printf(m, "%s\n", conn->c_remote_uuid.uuid); seq_printf(m, "%s\n", conn->c_remote_uuid.uuid);
else else
rc = seq_printf(m, "%s\n", "<none>"); seq_puts(m, "<none>\n");
LPROCFS_CLIMP_EXIT(obd); LPROCFS_CLIMP_EXIT(obd);
return rc;
return 0;
} }
EXPORT_SYMBOL(lprocfs_rd_conn_uuid); EXPORT_SYMBOL(lprocfs_rd_conn_uuid);
...@@ -1207,41 +1213,33 @@ static int lprocfs_stats_seq_show(struct seq_file *p, void *v) ...@@ -1207,41 +1213,33 @@ static int lprocfs_stats_seq_show(struct seq_file *p, void *v)
struct lprocfs_counter_header *hdr; struct lprocfs_counter_header *hdr;
struct lprocfs_counter ctr; struct lprocfs_counter ctr;
int idx = *(loff_t *)v; int idx = *(loff_t *)v;
int rc = 0;
if (idx == 0) { if (idx == 0) {
struct timeval now; struct timeval now;
do_gettimeofday(&now); do_gettimeofday(&now);
rc = seq_printf(p, "%-25s %lu.%lu secs.usecs\n", seq_printf(p, "%-25s %lu.%lu secs.usecs\n",
"snapshot_time", now.tv_sec, (unsigned long)now.tv_usec); "snapshot_time",
if (rc < 0) now.tv_sec, (unsigned long)now.tv_usec);
return rc;
} }
hdr = &stats->ls_cnt_header[idx]; hdr = &stats->ls_cnt_header[idx];
lprocfs_stats_collect(stats, idx, &ctr); lprocfs_stats_collect(stats, idx, &ctr);
if (ctr.lc_count == 0) if (ctr.lc_count != 0) {
goto out; seq_printf(p, "%-25s %lld samples [%s]",
hdr->lc_name, ctr.lc_count, hdr->lc_units);
rc = seq_printf(p, "%-25s %lld samples [%s]", hdr->lc_name,
ctr.lc_count, hdr->lc_units);
if (rc < 0)
goto out;
if ((hdr->lc_config & LPROCFS_CNTR_AVGMINMAX) && (ctr.lc_count > 0)) { if ((hdr->lc_config & LPROCFS_CNTR_AVGMINMAX) &&
rc = seq_printf(p, " %lld %lld %lld", (ctr.lc_count > 0)) {
seq_printf(p, " %lld %lld %lld",
ctr.lc_min, ctr.lc_max, ctr.lc_sum); ctr.lc_min, ctr.lc_max, ctr.lc_sum);
if (rc < 0)
goto out;
if (hdr->lc_config & LPROCFS_CNTR_STDDEV) if (hdr->lc_config & LPROCFS_CNTR_STDDEV)
rc = seq_printf(p, " %lld", ctr.lc_sumsquare); seq_printf(p, " %lld", ctr.lc_sumsquare);
if (rc < 0)
goto out;
} }
rc = seq_printf(p, "\n"); seq_putc(p, '\n');
out: }
return (rc < 0) ? rc : 0;
return 0;
} }
static const struct seq_operations lprocfs_stats_seq_sops = { static const struct seq_operations lprocfs_stats_seq_sops = {
...@@ -2049,12 +2047,12 @@ int lprocfs_obd_rd_max_pages_per_rpc(struct seq_file *m, void *data) ...@@ -2049,12 +2047,12 @@ int lprocfs_obd_rd_max_pages_per_rpc(struct seq_file *m, void *data)
{ {
struct obd_device *dev = data; struct obd_device *dev = data;
struct client_obd *cli = &dev->u.cli; struct client_obd *cli = &dev->u.cli;
int rc;
client_obd_list_lock(&cli->cl_loi_list_lock); client_obd_list_lock(&cli->cl_loi_list_lock);
rc = seq_printf(m, "%d\n", cli->cl_max_pages_per_rpc); seq_printf(m, "%d\n", cli->cl_max_pages_per_rpc);
client_obd_list_unlock(&cli->cl_loi_list_lock); client_obd_list_unlock(&cli->cl_loi_list_lock);
return rc;
return 0;
} }
EXPORT_SYMBOL(lprocfs_obd_rd_max_pages_per_rpc); EXPORT_SYMBOL(lprocfs_obd_rd_max_pages_per_rpc);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment