All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH net-next 00/20] net simple kerneldoc fixes
@ 2020-07-12 23:14 Andrew Lunn
  2020-07-12 23:14 ` [PATCH net-next 01/20] net: 9p: " Andrew Lunn
                   ` (20 more replies)
  0 siblings, 21 replies; 26+ messages in thread
From: Andrew Lunn @ 2020-07-12 23:14 UTC (permalink / raw)
  To: David Miller; +Cc: netdev, Andrew Lunn

This is a collection of simple kerneldoc fixes. They are all low
hanging fruit, were not real understanding of the code was needed.

Andrew Lunn (20):
  net: 9p: kerneldoc fixes
  net: can: kerneldoc fixes
  net: core: kerneldoc fixes
  net: dccp: kerneldoc fixes
  net: decnet: kerneldoc fixes
  net: ipv4: kerneldoc fixes
  net: ipv6: kerneldoc fixes
  net: llc: kerneldoc fixes
  net: mac80211: kerneldoc fixes
  net: netfilter: kerneldoc fixes
  net: netlabel: kerneldoc fixes
  net: nfc: kerneldoc fixes
  net: openvswitch: kerneldoc fixes
  net: rxrpc: kerneldoc fixes
  net: sched: kerneldoc fixes
  net: socket: Move kerneldoc next to function it documents
  net: switchdev: kerneldoc fixes
  net: tipc: kerneldoc fixes
  net: wireless: kerneldoc fixes
  net: x25: kerneldoc fixes

 net/9p/client.c                     |  2 +-
 net/9p/trans_rdma.c                 |  7 ++++---
 net/can/af_can.c                    |  2 ++
 net/core/dev.c                      |  1 +
 net/dccp/ccids/lib/packet_history.c |  2 ++
 net/dccp/feat.c                     |  6 ++++++
 net/dccp/input.c                    |  1 +
 net/dccp/ipv4.c                     |  2 ++
 net/dccp/options.c                  |  4 ++++
 net/dccp/timer.c                    |  2 ++
 net/decnet/dn_route.c               |  2 ++
 net/ipv4/cipso_ipv4.c               |  6 ++++--
 net/ipv4/ipmr.c                     |  3 +++
 net/ipv4/tcp_input.c                |  1 -
 net/ipv4/tcp_output.c               |  2 ++
 net/ipv4/tcp_timer.c                |  2 +-
 net/ipv4/udp.c                      |  6 +++---
 net/ipv6/exthdrs.c                  |  1 -
 net/ipv6/ip6_output.c               |  6 ++++--
 net/ipv6/ip6_tunnel.c               | 10 ++++++----
 net/ipv6/udp.c                      |  3 +++
 net/llc/af_llc.c                    |  1 -
 net/llc/llc_conn.c                  |  7 ++++---
 net/llc/llc_input.c                 |  1 +
 net/llc/llc_pdu.c                   |  2 +-
 net/llc/llc_sap.c                   |  3 +++
 net/mac80211/mesh_pathtbl.c         |  4 +---
 net/netfilter/nf_conntrack_core.c   |  2 +-
 net/netfilter/nf_tables_api.c       |  8 ++++----
 net/netfilter/nft_set_pipapo.c      |  8 ++++----
 net/netlabel/netlabel_domainhash.c  |  2 +-
 net/nfc/core.c                      |  3 +--
 net/nfc/nci/core.c                  |  4 ++--
 net/openvswitch/flow_netlink.c      |  6 +++---
 net/openvswitch/vport.c             |  3 ++-
 net/rxrpc/af_rxrpc.c                |  2 +-
 net/sched/em_canid.c                |  1 +
 net/sched/ematch.c                  |  3 +--
 net/socket.c                        | 17 ++++++++---------
 net/switchdev/switchdev.c           |  3 +--
 net/tipc/bearer.c                   |  2 +-
 net/tipc/discover.c                 |  5 ++---
 net/tipc/link.c                     |  6 +++---
 net/tipc/msg.c                      |  2 +-
 net/tipc/node.c                     |  4 ++--
 net/tipc/socket.c                   |  8 +++-----
 net/tipc/udp_media.c                |  2 +-
 net/wireless/reg.c                  |  4 +++-
 net/wireless/wext-compat.c          |  1 -
 net/x25/x25_link.c                  |  2 +-
 net/x25/x25_route.c                 |  2 +-
 51 files changed, 111 insertions(+), 78 deletions(-)

-- 
2.27.0.rc2


^ permalink raw reply	[flat|nested] 26+ messages in thread

end of thread, other threads:[~2020-07-14  0:20 UTC | newest]

Thread overview: 26+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-07-12 23:14 [PATCH net-next 00/20] net simple kerneldoc fixes Andrew Lunn
2020-07-12 23:14 ` [PATCH net-next 01/20] net: 9p: " Andrew Lunn
2020-07-13  8:13   ` Dominique Martinet
2020-07-12 23:14 ` [PATCH net-next 02/20] net: can: " Andrew Lunn
2020-07-12 23:14 ` [PATCH net-next 03/20] net: core: " Andrew Lunn
2020-07-12 23:15 ` [PATCH net-next 04/20] net: dccp: " Andrew Lunn
2020-07-12 23:15 ` [PATCH net-next 05/20] net: decnet: " Andrew Lunn
2020-07-12 23:15 ` [PATCH net-next 06/20] net: ipv4: " Andrew Lunn
2020-07-13 16:38   ` Paul Moore
2020-07-12 23:15 ` [PATCH net-next 07/20] net: ipv6: " Andrew Lunn
2020-07-12 23:15 ` [PATCH net-next 08/20] net: llc: " Andrew Lunn
2020-07-12 23:15 ` [PATCH net-next 09/20] net: mac80211: " Andrew Lunn
2020-07-12 23:15 ` [PATCH net-next 10/20] net: netfilter: " Andrew Lunn
2020-07-12 23:15 ` [PATCH net-next 11/20] net: netlabel: " Andrew Lunn
2020-07-13 16:40   ` Paul Moore
2020-07-12 23:15 ` [PATCH net-next 12/20] net: nfc: " Andrew Lunn
2020-07-12 23:15 ` [PATCH net-next 13/20] net: openvswitch: " Andrew Lunn
2020-07-12 23:15 ` [PATCH net-next 14/20] net: rxrpc: " Andrew Lunn
2020-07-12 23:15 ` [PATCH net-next 15/20] net: sched: " Andrew Lunn
2020-07-12 23:15 ` [PATCH net-next 16/20] net: socket: Move kerneldoc next to function it documents Andrew Lunn
2020-07-12 23:15 ` [PATCH net-next 17/20] net: switchdev: kerneldoc fixes Andrew Lunn
2020-07-12 23:15 ` [PATCH net-next 18/20] net: tipc: " Andrew Lunn
2020-07-13 14:10   ` Jon Maloy
2020-07-12 23:15 ` [PATCH net-next 19/20] net: wireless: " Andrew Lunn
2020-07-12 23:15 ` [PATCH net-next 20/20] net: x25: " Andrew Lunn
2020-07-14  0:20 ` [PATCH net-next 00/20] net simple " David Miller

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.