search for: 1849,10

Displaying 3 results from an estimated 3 matches for "1849,10".

Did you mean: 1847,10
2013 Aug 26
0
[PATCH] bridge: separate querier and query timer into IGMP/IPv4 and MLD/IPv6 ones
...ed) + return; + + mod_timer(&br->ip6_multicast_query_timer, jiffies); +} +#endif + +void br_multicast_open(struct net_bridge *br) +{ + br_ip4_multicast_open(br); +#if IS_ENABLED(CONFIG_IPV6) + br_ip6_multicast_open(br); +#endif } void br_multicast_stop(struct net_bridge *br) @@ -1684,8 +1849,10 @@ void br_multicast_stop(struct net_bridge *br) int i; del_timer_sync(&br->multicast_router_timer); - del_timer_sync(&br->multicast_querier_timer); - del_timer_sync(&br->multicast_query_timer); + del_timer_sync(&br->ip4_multicast_querier_timer); + del_timer_syn...
2020 Jul 21
17
[PATCH 00/10] RFC: move logical block size checking to the block core
This patch series aims to move the logical block size checking to the block code. This was inspired by missing check for valid logical block size in virtio-blk which causes the kernel to crash in a weird way later on when it is invalid. I added blk_is_valid_logical_block_size which returns true iff the block size is one of supported sizes. I added this check to virtio-blk, and also converted
2020 Jul 21
17
[PATCH 00/10] RFC: move logical block size checking to the block core
This patch series aims to move the logical block size checking to the block code. This was inspired by missing check for valid logical block size in virtio-blk which causes the kernel to crash in a weird way later on when it is invalid. I added blk_is_valid_logical_block_size which returns true iff the block size is one of supported sizes. I added this check to virtio-blk, and also converted