• Joe Perches's avatar
    ipv6.h: reassembly: replace calculated magic number with multiplication · 9874c41c
    Joe Perches authored
    On Tue, 2010-02-16 at 16:47 +0100, Patrick McHardy wrote:
    > Joe Perches wrote:
    > >> @@ -246,6 +246,8 @@ extern int ipv6_opt_accepted(struct sock *sk, struct sk_buff *skb);
    > >>  int ip6_frag_nqueues(struct net *net);
    > >>  int ip6_frag_mem(struct net *net);
    > >>
    > >> +#define IPV6_FRAG_HIGH_THRESH	262144		/* == 256*1024 */
    > >> +#define IPV6_FRAG_LOW_THRESH	196608		/* == 192*1024 */
    > >>  #define IPV6_FRAG_TIMEOUT	(60*HZ)		/* 60 seconds */
    > >
    > > 196608 isn't a number I want to remember.
    > > Is this better as:
    > >
    > > #define IPV6_FRAG_HIGH_THRESH	(256 * 1024)	/* 262144 */
    > > #define IPV6_FRAG_LOW_THRESH	(192 * 1024)	/* 196608 */
    >
    > Please send a patch, I'll apply it once these patches are in Dave's
    > tree.
    Signed-off-by: default avatarJoe Perches <joe@perches.com>
    Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
    9874c41c
ipv6.h 17.9 KB