Message ID | fdcac2a0-5036-f1c8-a926-00f10613dc96@bluematt.me (mailing list archive) |
---|---|
State | Superseded |
Delegated to: | Netdev Maintainers |
Headers | show |
Series | [RESEND,2,net] Reduce IP_FRAG_TIME fragment-reassembly timeout to 1s, from 30s | expand |
Context | Check | Description |
---|---|---|
netdev/apply | fail | Patch does not apply to net |
netdev/tree_selection | success | Clearly marked for net |
diff --git a/include/net/ip.h b/include/net/ip.h index 2d6b985d11cc..f1473ac5a27c 100644 --- a/include/net/ip.h +++ b/include/net/ip.h @@ -135,7 +135,7 @@ struct ip_ra_chain { #define IP_MF 0x2000 /* Flag: "More Fragments" */ #define IP_OFFSET 0x1FFF /* "Fragment Offset" part */ -#define IP_FRAG_TIME (30 * HZ) /* fragment lifetime */ +#define IP_FRAG_TIME (1 * HZ) /* fragment lifetime */ struct msghdr; struct net_device;