aboutsummaryrefslogtreecommitdiffstats
path: root/net
diff options
context:
space:
mode:
authorHideaki Yoshifuji <yoshfuji@linux-ipv6.org>2004-07-09 01:50:01 +0900
committerHideaki Yoshifuji <yoshfuji@linux-ipv6.org>2004-07-09 01:50:01 +0900
commit43de50d251f9416c435787e011a9d5705086a2e1 (patch)
treeff805ecf3a42eb8cdda83c074d369488065c6267 /net
parent6ceb3e042ea84e2d17f17e648fb3029b51a70eb0 (diff)
downloadhistory-43de50d251f9416c435787e011a9d5705086a2e1.tar.gz
[NET] use seq_puts() where appropriate.
Signed-off-by: Hideaki YOSHIFUJI <yoshfuji@linux-ipv6.org>
Diffstat (limited to 'net')
-rw-r--r--net/ipv4/igmp.c4
-rw-r--r--net/ipv4/proc.c2
-rw-r--r--net/ipv6/ip6_flowlabel.c4
-rw-r--r--net/ipv6/tcp_ipv6.c12
4 files changed, 11 insertions, 11 deletions
diff --git a/net/ipv4/igmp.c b/net/ipv4/igmp.c
index d98038648150ac..01db76123d8862 100644
--- a/net/ipv4/igmp.c
+++ b/net/ipv4/igmp.c
@@ -2217,8 +2217,8 @@ static void igmp_mc_seq_stop(struct seq_file *seq, void *v)
static int igmp_mc_seq_show(struct seq_file *seq, void *v)
{
if (v == SEQ_START_TOKEN)
- seq_printf(seq,
- "Idx\tDevice : Count Querier\tGroup Users Timer\tReporter\n");
+ seq_puts(seq,
+ "Idx\tDevice : Count Querier\tGroup Users Timer\tReporter\n");
else {
struct ip_mc_list *im = (struct ip_mc_list *)v;
struct igmp_mc_iter_state *state = igmp_mc_seq_private(seq);
diff --git a/net/ipv4/proc.c b/net/ipv4/proc.c
index 3bce67dfca2c86..fca126a09670fe 100644
--- a/net/ipv4/proc.c
+++ b/net/ipv4/proc.c
@@ -256,7 +256,7 @@ static int snmp_seq_show(struct seq_file *seq, void *v)
{
int i;
- seq_printf(seq, "Ip: Forwarding DefaultTTL");
+ seq_puts(seq, "Ip: Forwarding DefaultTTL");
for (i = 0; snmp4_ipstats_list[i].name != NULL; i++)
seq_printf(seq, " %s", snmp4_ipstats_list[i].name);
diff --git a/net/ipv6/ip6_flowlabel.c b/net/ipv6/ip6_flowlabel.c
index 5c885fa7776f9f..2c5aab0894d268 100644
--- a/net/ipv6/ip6_flowlabel.c
+++ b/net/ipv6/ip6_flowlabel.c
@@ -645,8 +645,8 @@ static void ip6fl_fl_seq_show(struct seq_file *seq, struct ip6_flowlabel *fl)
static int ip6fl_seq_show(struct seq_file *seq, void *v)
{
if (v == SEQ_START_TOKEN)
- seq_printf(seq, "Label S Owner Users Linger Expires "
- "Dst Opt\n");
+ seq_puts(seq, "Label S Owner Users Linger Expires "
+ "Dst Opt\n");
else
ip6fl_fl_seq_show(seq, v);
return 0;
diff --git a/net/ipv6/tcp_ipv6.c b/net/ipv6/tcp_ipv6.c
index a623223f6ac9fb..5a19b3d7572055 100644
--- a/net/ipv6/tcp_ipv6.c
+++ b/net/ipv6/tcp_ipv6.c
@@ -2017,12 +2017,12 @@ static int tcp6_seq_show(struct seq_file *seq, void *v)
struct tcp_iter_state *st;
if (v == SEQ_START_TOKEN) {
- seq_printf(seq,
- " sl "
- "local_address "
- "remote_address "
- "st tx_queue rx_queue tr tm->when retrnsmt"
- " uid timeout inode\n");
+ seq_puts(seq,
+ " sl "
+ "local_address "
+ "remote_address "
+ "st tx_queue rx_queue tr tm->when retrnsmt"
+ " uid timeout inode\n");
goto out;
}
st = seq->private;