[<prev] [next>] [thread-next>] [day] [month] [year] [list]
Message-ID: <20210311094349.5q76vsxuqk3riwyq@kewl-virtual-machine>
Date: Thu, 11 Mar 2021 15:13:49 +0530
From: Shubhankar Kuranagatti <shubhankarvk@...il.com>
To: davem@...emloft.net
Cc: kuba@...nel.org, ast@...nel.org, daniel@...earbox.net,
andrii@...nel.org, kafai@...com, songliubraving@...com, yhs@...com,
john.fastabend@...il.com, kpsingh@...nel.org,
netdev@...r.kernel.org, bpf@...r.kernel.org,
linux-kernel@...r.kernel.org, bkkarthik@...u.pes.edu
Subject: [PATCH] net: core: bpf_sk_storage.c: Fix bare usage of unsigned
Changed bare usage of unsigned to unsigned int
Signed-off-by: Shubhankar Kuranagatti <shubhankarvk@...il.com>
---
net/core/bpf_sk_storage.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/net/core/bpf_sk_storage.c b/net/core/bpf_sk_storage.c
index 4edd033e899c..d99753f88a70 100644
--- a/net/core/bpf_sk_storage.c
+++ b/net/core/bpf_sk_storage.c
@@ -723,7 +723,7 @@ EXPORT_SYMBOL_GPL(bpf_sk_storage_diag_put);
struct bpf_iter_seq_sk_storage_map_info {
struct bpf_map *map;
unsigned int bucket_id;
- unsigned skip_elems;
+ unsigned int skip_elems;
};
static struct bpf_local_storage_elem *
--
2.17.1
Powered by blists - more mailing lists