diff options
author | Rob Gill <rrobgill@protonmail.com> | 2020-06-20 05:08:25 +0300 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2020-06-21 07:33:57 +0300 |
commit | 67c20de35a3cc2e2cd940f95ebd85ed0a765315a (patch) | |
tree | 003864b1a02e310bc13637ccd9dc2179e36e7688 /net/ipv6/fou6.c | |
parent | 0041cd5a50442db6e456b145892a0eaf2dff061f (diff) | |
download | linux-67c20de35a3cc2e2cd940f95ebd85ed0a765315a.tar.xz |
net: Add MODULE_DESCRIPTION entries to network modules
The user tool modinfo is used to get information on kernel modules, including a
description where it is available.
This patch adds a brief MODULE_DESCRIPTION to the following modules:
9p
drop_monitor
esp4_offload
esp6_offload
fou
fou6
ila
sch_fq
sch_fq_codel
sch_hhf
Signed-off-by: Rob Gill <rrobgill@protonmail.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/ipv6/fou6.c')
-rw-r--r-- | net/ipv6/fou6.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/net/ipv6/fou6.c b/net/ipv6/fou6.c index 091f94184dc1..430518ae26fa 100644 --- a/net/ipv6/fou6.c +++ b/net/ipv6/fou6.c @@ -224,3 +224,4 @@ module_init(fou6_init); module_exit(fou6_fini); MODULE_AUTHOR("Tom Herbert <therbert@google.com>"); MODULE_LICENSE("GPL"); +MODULE_DESCRIPTION("Foo over UDP (IPv6)"); |