netlabel: remove impossible return value in netlbl_bitmap_walk
authorZhengchao Shao <shaozhengchao@huawei.com>
Tue, 27 Feb 2024 09:36:04 +0000 (17:36 +0800)
committerJakub Kicinski <kuba@kernel.org>
Thu, 29 Feb 2024 03:37:34 +0000 (19:37 -0800)
Since commit 446fda4f2682 ("[NetLabel]: CIPSOv4 engine"), *bitmap_walk
function only returns -1. Nearly 18 years have passed, -2 scenes never
come up, so there's no need to consider it.

Signed-off-by: Zhengchao Shao <shaozhengchao@huawei.com>
Reviewed-by: Jiri Pirko <jiri@nvidia.com>
Acked-by: Paul Moore <paul@paul-moore.com>
Link: https://lore.kernel.org/r/20240227093604.3574241-1-shaozhengchao@huawei.com
Signed-off-by: Jakub Kicinski <kuba@kernel.org>
net/ipv4/cipso_ipv4.c
net/ipv6/calipso.c
net/netlabel/netlabel_kapi.c

index d048aa83329386b0bbe4c68d4dee2c86871f8efb..8b17d83e5fde4fb5c443486a8097ecb47eb07c6e 100644 (file)
@@ -864,11 +864,8 @@ static int cipso_v4_map_cat_rbm_ntoh(const struct cipso_v4_doi *doi_def,
                                              net_clen_bits,
                                              net_spot + 1,
                                              1);
-               if (net_spot < 0) {
-                       if (net_spot == -2)
-                               return -EFAULT;
+               if (net_spot < 0)
                        return 0;
-               }
 
                switch (doi_def->type) {
                case CIPSO_V4_MAP_PASS:
index 1578ed9e97d892eab85514a21ceff9a4aa79b22d..eb8ee1e9373a74ab03017f941b9c8ac724508ee6 100644 (file)
@@ -657,11 +657,8 @@ static int calipso_map_cat_ntoh(const struct calipso_doi *doi_def,
                                          net_clen_bits,
                                          spot + 1,
                                          1);
-               if (spot < 0) {
-                       if (spot == -2)
-                               return -EFAULT;
+               if (spot < 0)
                        return 0;
-               }
 
                ret_val = netlbl_catmap_setbit(&secattr->attr.mls.cat,
                                               spot,
index 7b844581ebeea6055c99d98ada2d571b8bae222d..1ba4f58e1d351d7e9c677a095c9a2a20707adedd 100644 (file)
@@ -876,7 +876,7 @@ int netlbl_catmap_setlong(struct netlbl_lsm_catmap **catmap,
  * Description:
  * Starting at @offset, walk the bitmap from left to right until either the
  * desired bit is found or we reach the end.  Return the bit offset, -1 if
- * not found, or -2 if error.
+ * not found.
  */
 int netlbl_bitmap_walk(const unsigned char *bitmap, u32 bitmap_len,
                       u32 offset, u8 state)