Message ID | 20210820083300.32289-2-sw@simonwunderlich.de (mailing list archive) |
---|---|
State | Accepted |
Commit | 53972e43d4a702227caaadbf4e35f58e7bf4b470 |
Delegated to: | Netdev Maintainers |
Headers | show |
Series | [1/6] batman-adv: Start new development cycle | expand |
Context | Check | Description |
---|---|---|
netdev/cover_letter | success | Pull request |
netdev/fixes_present | success | Link |
netdev/patch_count | success | Link |
netdev/tree_selection | success | Guessed tree name to be net-next |
netdev/subject_prefix | warning | Target tree name not specified in the subject |
netdev/cc_maintainers | warning | 3 maintainers not CCed: sven@narfation.org mareklindner@neomailbox.ch a@unstable.cc |
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 | success | total: 0 errors, 0 warnings, 0 checks, 8 lines checked |
netdev/build_allmodconfig_warn | success | Errors and warnings before: 0 this patch: 0 |
netdev/header_inline | success | Link |
Hello: This series was applied to netdev/net-next.git (refs/heads/master): On Fri, 20 Aug 2021 10:32:55 +0200 you wrote: > This version will contain all the (major or even only minor) changes for > Linux 5.15. > > The version number isn't a semantic version number with major and minor > information. It is just encoding the year of the expected publishing as > Linux -rc1 and the number of published versions this year (starting at 0). > > [...] Here is the summary with links: - [1/6] batman-adv: Start new development cycle https://git.kernel.org/netdev/net-next/c/53972e43d4a7 - [2/6] batman-adv: Move IRC channel to hackint.org https://git.kernel.org/netdev/net-next/c/71d41c09f1fa - [3/6] batman-adv: Switch to kstrtox.h for kstrtou64 https://git.kernel.org/netdev/net-next/c/70eeb75d4c4d - [4/6] batman-adv: Check ptr for NULL before reducing its refcnt https://git.kernel.org/netdev/net-next/c/6340dcbd6194 - [5/6] batman-adv: Drop NULL check before dropping references https://git.kernel.org/netdev/net-next/c/79a0bffb835a - [6/6] batman-adv: bcast: remove remaining skb-copy calls https://git.kernel.org/netdev/net-next/c/808cfdfad579 You are awesome, thank you! -- Deet-doot-dot, I am a bot. https://korg.docs.kernel.org/patchwork/pwbot.html
diff --git a/net/batman-adv/main.h b/net/batman-adv/main.h index 014235fd4681..058b8f2eef65 100644 --- a/net/batman-adv/main.h +++ b/net/batman-adv/main.h @@ -13,7 +13,7 @@ #define BATADV_DRIVER_DEVICE "batman-adv" #ifndef BATADV_SOURCE_VERSION -#define BATADV_SOURCE_VERSION "2021.2" +#define BATADV_SOURCE_VERSION "2021.3" #endif /* B.A.T.M.A.N. parameters */
This version will contain all the (major or even only minor) changes for Linux 5.15. The version number isn't a semantic version number with major and minor information. It is just encoding the year of the expected publishing as Linux -rc1 and the number of published versions this year (starting at 0). Signed-off-by: Simon Wunderlich <sw@simonwunderlich.de> --- net/batman-adv/main.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)