Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 658270a0 authored by Kim Nordlund's avatar Kim Nordlund Committed by David S. Miller
Browse files

[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: default avatarKim Nordlund <kim.nordlund@nokia.com>
Signed-off-by: default avatarThomas Graf <tgraf@suug.ch>
parent c9aa6895
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -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;