Message ID | 20210404142313.GA2471@bobwxc.top (mailing list archive) |
---|---|
State | Accepted |
Commit | 85d091a794f883ea19b421c38e158558f9b24b60 |
Delegated to: | Netdev Maintainers |
Headers | show |
Series | [net-next] tipc: Fix a kernel-doc warning in name_table.c | expand |
Context | Check | Description |
---|---|---|
netdev/cover_letter | success | Link |
netdev/fixes_present | success | Link |
netdev/patch_count | success | Link |
netdev/tree_selection | success | Clearly marked for net-next |
netdev/subject_prefix | success | Link |
netdev/cc_maintainers | fail | 3 blamed authors not CCed: hoang.h.le@dektech.com.au lucien.xin@gmail.com davem@davemloft.net; 5 maintainers not CCed: lucien.xin@gmail.com tipc-discussion@lists.sourceforge.net hoang.h.le@dektech.com.au davem@davemloft.net kuba@kernel.org |
netdev/source_inline | success | Was 0 now: 0 |
netdev/verify_signedoff | success | Link |
netdev/module_param | success | Was 0 now: 0 |
netdev/build_32bit | success | Errors and warnings before: 0 this patch: 0 |
netdev/kdoc | success | Errors and warnings before: 0 this patch: 0 |
netdev/verify_fixes | success | Link |
netdev/checkpatch | warning | WARNING: use relative pathname instead of absolute in changelog text |
netdev/build_allmodconfig_warn | success | Errors and warnings before: 0 this patch: 0 |
netdev/header_inline | success | Link |
Hello: This patch was applied to netdev/net-next.git (refs/heads/master): On Sun, 4 Apr 2021 22:23:15 +0800 you wrote: > Fix kernel-doc warning: > > Documentation/networking/tipc:66: /home/sfr/next/next/net/tipc/name_table.c > :558: WARNING: Unexpected indentation. > Documentation/networking/tipc:66: /home/sfr/next/next/net/tipc/name_table.c > :559: WARNING: Block quote ends without a blank line; unexpected unindent. > > [...] Here is the summary with links: - [net-next] tipc: Fix a kernel-doc warning in name_table.c https://git.kernel.org/netdev/net-next/c/85d091a794f8 You are awesome, thank you! -- Deet-doot-dot, I am a bot. https://korg.docs.kernel.org/patchwork/pwbot.html
diff --git a/net/tipc/name_table.c b/net/tipc/name_table.c index 6db9f9e7c0ac..b4017945d3e5 100644 --- a/net/tipc/name_table.c +++ b/net/tipc/name_table.c @@ -553,7 +553,9 @@ struct publication *tipc_nametbl_remove_publ(struct net *net, * * On entry, a non-zero 'sk->node' indicates the node where we want lookup to be * performed, which may not be this one. + * * On exit: + * * - If lookup is deferred to another node, leave 'sk->node' unchanged and * return 'true'. * - If lookup is successful, set the 'sk->node' and 'sk->ref' (== portid) which
Fix kernel-doc warning: Documentation/networking/tipc:66: /home/sfr/next/next/net/tipc/name_table.c :558: WARNING: Unexpected indentation. Documentation/networking/tipc:66: /home/sfr/next/next/net/tipc/name_table.c :559: WARNING: Block quote ends without a blank line; unexpected unindent. Due to blank line missing. Fixes: 908148bc5046 ("tipc: refactor tipc_sendmsg() and tipc_lookup_anycast()") Reported-by: Stephen Rothwell <sfr@canb.auug.org.au> Link: https://lore.kernel.org/netdev/20210318172255.63185609@canb.auug.org.au/ Signed-off-by: Wu XiangCheng <bobwxc@email.cn> --- net/tipc/name_table.c | 2 ++ 1 file changed, 2 insertions(+)