From: Kim Nordlund Date: Wed, 27 Sep 2006 23:19:53 +0000 (-0700) Subject: [PKT_SCHED] cls_basic: Use unsigned int when generating handle X-Git-Url: https://git.karo-electronics.de/?a=commitdiff_plain;h=658270a0a49612a0e3fdc01c2e8c0e1a6d47cbf4;p=mv-sheeva.git [PKT_SCHED] cls_basic: Use unsigned int when generating handle Prevents filters from being added if the first generated handle already exists. Signed-off-by: Kim Nordlund Signed-off-by: Thomas Graf --- diff --git a/net/sched/cls_basic.c b/net/sched/cls_basic.c index 86cac49a053..09fda68c8b3 100644 --- a/net/sched/cls_basic.c +++ b/net/sched/cls_basic.c @@ -194,7 +194,7 @@ static int basic_change(struct tcf_proto *tp, unsigned long base, u32 handle, if (handle) f->handle = handle; else { - int i = 0x80000000; + unsigned int i = 0x80000000; do { if (++head->hgenerator == 0x7FFFFFFF) head->hgenerator = 1;