Message ID | 20210623060634.1909-1-kuniyu@amazon.co.jp (mailing list archive) |
---|---|
State | Accepted |
Commit | 10ed7ce42b13790ba85f8e10110d89a2bce58807 |
Delegated to: | Netdev Maintainers |
Headers | show |
Series | [net-next] net/tls: Remove the __TLS_DEC_STATS() macro. | 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 | success | CCed 6 of 6 maintainers |
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: 51 this patch: 51 |
netdev/kdoc | success | Errors and warnings before: 0 this patch: 0 |
netdev/verify_fixes | success | Link |
netdev/checkpatch | success | total: 0 errors, 0 warnings, 0 checks, 8 lines checked |
netdev/build_allmodconfig_warn | success | Errors and warnings before: 51 this patch: 51 |
netdev/header_inline | success | Link |
Hello: This patch was applied to netdev/net-next.git (refs/heads/master): On Wed, 23 Jun 2021 15:06:34 +0900 you wrote: > The commit d26b698dd3cd ("net/tls: add skeleton of MIB statistics") > introduced __TLS_DEC_STATS(), but it is not used and __SNMP_DEC_STATS() is > not defined also. Let's remove it. > > Signed-off-by: Kuniyuki Iwashima <kuniyu@amazon.co.jp> > --- > The commit d26b698dd3cd does not contain a bug, so I think Fixes tag is not > necessary and post this to net-next. But if the tag is needed, I'll respin > to the net tree with the tag, so please let me know. > > [...] Here is the summary with links: - [net-next] net/tls: Remove the __TLS_DEC_STATS() macro. https://git.kernel.org/netdev/net-next/c/10ed7ce42b13 You are awesome, thank you! -- Deet-doot-dot, I am a bot. https://korg.docs.kernel.org/patchwork/pwbot.html
diff --git a/include/net/tls.h b/include/net/tls.h index 8341a8d1e807..8d398a5de3ee 100644 --- a/include/net/tls.h +++ b/include/net/tls.h @@ -79,8 +79,6 @@ __SNMP_INC_STATS((net)->mib.tls_statistics, field) #define TLS_INC_STATS(net, field) \ SNMP_INC_STATS((net)->mib.tls_statistics, field) -#define __TLS_DEC_STATS(net, field) \ - __SNMP_DEC_STATS((net)->mib.tls_statistics, field) #define TLS_DEC_STATS(net, field) \ SNMP_DEC_STATS((net)->mib.tls_statistics, field)
The commit d26b698dd3cd ("net/tls: add skeleton of MIB statistics") introduced __TLS_DEC_STATS(), but it is not used and __SNMP_DEC_STATS() is not defined also. Let's remove it. Signed-off-by: Kuniyuki Iwashima <kuniyu@amazon.co.jp> --- The commit d26b698dd3cd does not contain a bug, so I think Fixes tag is not necessary and post this to net-next. But if the tag is needed, I'll respin to the net tree with the tag, so please let me know. --- include/net/tls.h | 2 -- 1 file changed, 2 deletions(-)