diff options
| author | Kim Nordlund <[email protected]> | 2006-09-27 23:19:53 +0000 |
|---|---|---|
| committer | David S. Miller <[email protected]> | 2006-09-29 01:01:45 +0000 |
| commit | 658270a0a49612a0e3fdc01c2e8c0e1a6d47cbf4 (patch) | |
| tree | a0210099c1136df9c3fc7478bde9050cb310e192 /net/sched/cls_basic.c | |
| parent | [PPPOE]: Advertise PPPoE MTU (diff) | |
| download | kernel-658270a0a49612a0e3fdc01c2e8c0e1a6d47cbf4.tar.gz kernel-658270a0a49612a0e3fdc01c2e8c0e1a6d47cbf4.zip | |
[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 <[email protected]>
Signed-off-by: Thomas Graf <[email protected]>
Diffstat (limited to 'net/sched/cls_basic.c')
| -rw-r--r-- | net/sched/cls_basic.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/net/sched/cls_basic.c b/net/sched/cls_basic.c index 86cac49a0531..09fda68c8b39 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; |
