projects
/
openwrt
/
staging
/
blogic.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
a6b9810
)
ipconfig: convert to DEFINE_SHOW_ATTRIBUTE
author
Yangtao Li
<
[email protected]
>
Sat, 15 Dec 2018 07:19:53 +0000
(
02:19
-0500)
committer
David S. Miller
<
[email protected]
>
Sat, 15 Dec 2018 19:21:22 +0000
(11:21 -0800)
Use DEFINE_SHOW_ATTRIBUTE macro to simplify the code.
Signed-off-by: Yangtao Li <
[email protected]
>
Signed-off-by: David S. Miller <
[email protected]
>
net/ipv4/ipconfig.c
patch
|
blob
|
history
diff --git
a/net/ipv4/ipconfig.c
b/net/ipv4/ipconfig.c
index 55757764c38115f56a04d1f89e2dc57153ea3953..208a5b4419c67181d77c46c92d7e055a8a30f3c3 100644
(file)
--- a/
net/ipv4/ipconfig.c
+++ b/
net/ipv4/ipconfig.c
@@
-1361,18
+1361,7
@@
static int ntp_servers_seq_show(struct seq_file *seq, void *v)
}
return 0;
}
-
-static int ntp_servers_seq_open(struct inode *inode, struct file *file)
-{
- return single_open(file, ntp_servers_seq_show, NULL);
-}
-
-static const struct file_operations ntp_servers_seq_fops = {
- .open = ntp_servers_seq_open,
- .read = seq_read,
- .llseek = seq_lseek,
- .release = single_release,
-};
+DEFINE_SHOW_ATTRIBUTE(ntp_servers_seq);
#endif /* CONFIG_PROC_FS */
/*