Skip to content

Commit ff269e2

Browse files
committed
Merge tag 'net-next-6.7-followup' of git://git.kernel.org/pub/scm/linux/kernel/git/netdev/net-next
Pull more networking updates from Jakub Kicinski: - Support GRO decapsulation for IPsec ESP in UDP - Add a handful of MODULE_DESCRIPTION()s - Drop questionable alignment check in TCP AO to avoid build issue after changes in the crypto tree * tag 'net-next-6.7-followup' of git://git.kernel.org/pub/scm/linux/kernel/git/netdev/net-next: net: tcp: remove call to obsolete crypto_ahash_alignmask() net: fill in MODULE_DESCRIPTION()s under drivers/net/ net: fill in MODULE_DESCRIPTION()s under net/802* net: fill in MODULE_DESCRIPTION()s under net/core net: fill in MODULE_DESCRIPTION()s in kuba@'s modules xfrm: policy: fix layer 4 flowi decoding xfrm Fix use after free in __xfrm6_udp_encap_rcv. xfrm: policy: replace session decode with flow dissector xfrm: move mark and oif flowi decode into common code xfrm: pass struct net to xfrm_decode_session wrappers xfrm: Support GRO for IPv6 ESP in UDP encapsulation xfrm: Support GRO for IPv4 ESP in UDP encapsulation xfrm: Use the XFRM_GRO to indicate a GRO call on input xfrm: Annotate struct xfrm_sec_ctx with __counted_by xfrm: Remove unused function declarations
2 parents 05bf73a + f2fbb90 commit ff269e2

39 files changed

+361
-247
lines changed

drivers/net/amt.c

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3449,5 +3449,6 @@ static void __exit amt_fini(void)
34493449
module_exit(amt_fini);
34503450

34513451
MODULE_LICENSE("GPL");
3452+
MODULE_DESCRIPTION("Driver for Automatic Multicast Tunneling (AMT)");
34523453
MODULE_AUTHOR("Taehee Yoo <ap420073@gmail.com>");
34533454
MODULE_ALIAS_RTNL_LINK("amt");

drivers/net/dummy.c

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -202,4 +202,5 @@ static void __exit dummy_cleanup_module(void)
202202
module_init(dummy_init_module);
203203
module_exit(dummy_cleanup_module);
204204
MODULE_LICENSE("GPL");
205+
MODULE_DESCRIPTION("Dummy netdevice driver which discards all packets sent to it");
205206
MODULE_ALIAS_RTNL_LINK(DRV_NAME);

drivers/net/eql.c

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -607,4 +607,5 @@ static void __exit eql_cleanup_module(void)
607607

608608
module_init(eql_init_module);
609609
module_exit(eql_cleanup_module);
610+
MODULE_DESCRIPTION("Equalizer Load-balancer for serial network interfaces");
610611
MODULE_LICENSE("GPL");

drivers/net/ifb.c

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -454,5 +454,6 @@ static void __exit ifb_cleanup_module(void)
454454
module_init(ifb_init_module);
455455
module_exit(ifb_cleanup_module);
456456
MODULE_LICENSE("GPL");
457+
MODULE_DESCRIPTION("Intermediate Functional Block (ifb) netdevice driver for sharing of resources and ingress packet queuing");
457458
MODULE_AUTHOR("Jamal Hadi Salim");
458459
MODULE_ALIAS_RTNL_LINK("ifb");

drivers/net/macvtap.c

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -250,5 +250,6 @@ static void __exit macvtap_exit(void)
250250
module_exit(macvtap_exit);
251251

252252
MODULE_ALIAS_RTNL_LINK("macvtap");
253+
MODULE_DESCRIPTION("MAC-VLAN based tap driver");
253254
MODULE_AUTHOR("Arnd Bergmann <arnd@arndb.de>");
254255
MODULE_LICENSE("GPL");

drivers/net/netdevsim/netdev.c

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -470,4 +470,5 @@ static void __exit nsim_module_exit(void)
470470
module_init(nsim_module_init);
471471
module_exit(nsim_module_exit);
472472
MODULE_LICENSE("GPL");
473+
MODULE_DESCRIPTION("Simulated networking device for testing");
473474
MODULE_ALIAS_RTNL_LINK(DRV_NAME);

drivers/net/sungem_phy.c

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1194,4 +1194,5 @@ int sungem_phy_probe(struct mii_phy *phy, int mii_id)
11941194
}
11951195

11961196
EXPORT_SYMBOL(sungem_phy_probe);
1197+
MODULE_DESCRIPTION("PHY drivers for the sungem Ethernet MAC driver");
11971198
MODULE_LICENSE("GPL");

drivers/net/tap.c

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1399,6 +1399,7 @@ void tap_destroy_cdev(dev_t major, struct cdev *tap_cdev)
13991399
}
14001400
EXPORT_SYMBOL_GPL(tap_destroy_cdev);
14011401

1402+
MODULE_DESCRIPTION("Common library for drivers implementing the TAP interface");
14021403
MODULE_AUTHOR("Arnd Bergmann <arnd@arndb.de>");
14031404
MODULE_AUTHOR("Sainath Grandhi <sainath.grandhi@intel.com>");
14041405
MODULE_LICENSE("GPL");

drivers/net/wireless/mediatek/mt7601u/usb.c

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -365,6 +365,7 @@ static int mt7601u_resume(struct usb_interface *usb_intf)
365365

366366
MODULE_DEVICE_TABLE(usb, mt7601u_device_table);
367367
MODULE_FIRMWARE(MT7601U_FIRMWARE);
368+
MODULE_DESCRIPTION("MediaTek MT7601U USB Wireless LAN driver");
368369
MODULE_LICENSE("GPL");
369370

370371
static struct usb_driver mt7601u_driver = {

include/net/gro.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ struct napi_gro_cb {
4141
/* Number of segments aggregated. */
4242
u16 count;
4343

44-
/* Used in ipv6_gro_receive() and foo-over-udp */
44+
/* Used in ipv6_gro_receive() and foo-over-udp and esp-in-udp */
4545
u16 proto;
4646

4747
/* Used in napi_gro_cb::free */

0 commit comments

Comments
 (0)