Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
L
linux
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
nexedi
linux
Commits
43de50d2
Commit
43de50d2
authored
Jul 09, 2004
by
Hideaki Yoshifuji
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
[NET] use seq_puts() where appropriate.
Signed-off-by:
Hideaki YOSHIFUJI
<
yoshfuji@linux-ipv6.org
>
parent
6ceb3e04
Changes
4
Show whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
11 additions
and
11 deletions
+11
-11
net/ipv4/igmp.c
net/ipv4/igmp.c
+2
-2
net/ipv4/proc.c
net/ipv4/proc.c
+1
-1
net/ipv6/ip6_flowlabel.c
net/ipv6/ip6_flowlabel.c
+2
-2
net/ipv6/tcp_ipv6.c
net/ipv6/tcp_ipv6.c
+6
-6
No files found.
net/ipv4/igmp.c
View file @
43de50d2
...
...
@@ -2217,7 +2217,7 @@ 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_p
rintf
(
seq
,
seq_p
uts
(
seq
,
"Idx
\t
Device : Count Querier
\t
Group Users Timer
\t
Reporter
\n
"
);
else
{
struct
ip_mc_list
*
im
=
(
struct
ip_mc_list
*
)
v
;
...
...
net/ipv4/proc.c
View file @
43de50d2
...
...
@@ -256,7 +256,7 @@ static int snmp_seq_show(struct seq_file *seq, void *v)
{
int
i
;
seq_p
rintf
(
seq
,
"Ip: Forwarding DefaultTTL"
);
seq_p
uts
(
seq
,
"Ip: Forwarding DefaultTTL"
);
for
(
i
=
0
;
snmp4_ipstats_list
[
i
].
name
!=
NULL
;
i
++
)
seq_printf
(
seq
,
" %s"
,
snmp4_ipstats_list
[
i
].
name
);
...
...
net/ipv6/ip6_flowlabel.c
View file @
43de50d2
...
...
@@ -645,7 +645,7 @@ 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_p
rintf
(
seq
,
"Label S Owner Users Linger Expires "
seq_p
uts
(
seq
,
"Label S Owner Users Linger Expires "
"Dst Opt
\n
"
);
else
ip6fl_fl_seq_show
(
seq
,
v
);
...
...
net/ipv6/tcp_ipv6.c
View file @
43de50d2
...
...
@@ -2017,7 +2017,7 @@ static int tcp6_seq_show(struct seq_file *seq, void *v)
struct
tcp_iter_state
*
st
;
if
(
v
==
SEQ_START_TOKEN
)
{
seq_p
rintf
(
seq
,
seq_p
uts
(
seq
,
" sl "
"local_address "
"remote_address "
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment