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

Commit 920750ce authored by Daniel Wagner's avatar Daniel Wagner Committed by David S. Miller
Browse files

cgroup: net_cls: Fix local variable type decleration



The classid type used throughout the kernel is u32.

Signed-off-by: default avatarDaniel Wagner <daniel.wagner@bmw-carit.de>
Cc: "David S. Miller" <davem@davemloft.net>
Cc: Li Zefan <lizefan@huawei.com>
Cc: Tejun Heo <tj@kernel.org>
Cc: <netdev@vger.kernel.org>
Cc: <cgroups@vger.kernel.org>
Acked-by: default avatarNeil Horman <nhorman@tuxdriver.com>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent c658f19d
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -29,7 +29,7 @@ extern void sock_update_classid(struct sock *sk);
#if IS_BUILTIN(CONFIG_NET_CLS_CGROUP)
static inline u32 task_cls_classid(struct task_struct *p)
{
	int classid;
	u32 classid;

	if (in_interrupt())
		return 0;