Re: [PATCH v2 3/3] flowcache: more "unsigned int"

2017-04-03 Thread David Miller
From: Alexey Dobriyan Date: Mon, 3 Apr 2017 00:53:15 +0300 > Make ->hash_count, ->low_watermark and ->high_watermark unsigned int > and propagate unsignedness to other variables. > > This change doesn't change code generation because these fields aren't > used in 64-bit

[PATCH v2 3/3] flowcache: more "unsigned int"

2017-04-02 Thread Alexey Dobriyan
Make ->hash_count, ->low_watermark and ->high_watermark unsigned int and propagate unsignedness to other variables. This change doesn't change code generation because these fields aren't used in 64-bit contexts but make it anyway: these fields can't be negative numbers. Signed-off-by: Alexey