The branch, batadv/net-next-copyright-update has been created at d5c48002359c636ac26f3146955164d87bf520aa (commit)
- Shortlog ------------------------------------------------------------ commit d5c48002359c636ac26f3146955164d87bf520aa Author: Sven Eckelmann sven@narfation.org Date: Wed Jan 20 20:50:35 2021 +0100
batman-adv: Fix names for kernel-doc blocks
kernel-doc can only correctly identify the documented function or struct when the name in the first kernel-doc line references it. But some of the kernel-doc blocks referenced a different function/struct then it actually documented.
Signed-off-by: Sven Eckelmann sven@narfation.org Signed-off-by: Simon Wunderlich sw@simonwunderlich.de
commit a3bff48927da2cbdd3a9845a03ce5a68663a5297 Author: Sven Eckelmann sven@narfation.org Date: Tue Dec 29 09:24:21 2020 +0100
batman-adv: Avoid sizeof on flexible structure
The batadv_dhcp_packet is used to read in parts of the DHCP packet and extract relevant information for the distributed arp table. But the structure contained the flexible member "options" which is no where used in the code.
A sizeof on this kind of type would return the size of everything except the flexible member. But sparse will detect this kind of sizeof and warn with
warning: using sizeof on a flexible structure
This can be avoided by dropping the unused flexible member.
Signed-off-by: Sven Eckelmann sven@narfation.org Signed-off-by: Simon Wunderlich sw@simonwunderlich.de
commit c603d4000dead251c75b48a82a3a88ea5e7f07c8 Author: Sven Eckelmann sven@narfation.org Date: Fri Jan 1 00:00:01 2021 +0100
batman-adv: Update copyright years for 2021
The batman-adv source code is using the year of publication (to net-next) as "last" year for the copyright statement. The whole source code mentioned in the MAINTAINERS "BATMAN ADVANCED" section is handled as a single entity regarding the publishing.
This avoids having outdated (in sense of year information - not copyright holder) publishing information inside several files.
Signed-off-by: Sven Eckelmann sven@narfation.org Signed-off-by: Simon Wunderlich sw@simonwunderlich.de
commit 03fd39ed5a15bb116a31d1d60cc7ed3a2b0e633c Author: Simon Wunderlich sw@simonwunderlich.de Date: Mon Dec 28 11:39:11 2020 +0100
batman-adv: Start new development cycle
This version will contain all the (major or even only minor) changes for Linux 5.12.
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
-----------------------------------------------------------------------