e153146
From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
e153146
From: Peter Jones <pjones@redhat.com>
e153146
Date: Thu, 11 Jul 2019 18:03:25 +0200
e153146
Subject: [PATCH] Attempt to fix up all the places -Wsign-compare=error finds.
e153146
e153146
Signed-off-by: Peter Jones <pjones@redhat.com>
e153146
---
8a74d28
 grub-core/kern/emu/misc.c         |  2 +-
8a74d28
 grub-core/lib/reed_solomon.c      |  4 ++--
8a74d28
 grub-core/osdep/linux/blocklist.c |  2 +-
8a74d28
 grub-core/osdep/linux/getroot.c   |  2 +-
8a74d28
 grub-core/osdep/linux/hostdisk.c  |  2 +-
8a74d28
 util/grub-fstest.c                |  2 +-
8a74d28
 util/grub-menulst2cfg.c           |  2 +-
8a74d28
 util/grub-mkfont.c                | 13 +++++++------
8a74d28
 util/grub-probe.c                 |  2 +-
8a74d28
 util/setup.c                      |  2 +-
3d407d2
 10 files changed, 17 insertions(+), 16 deletions(-)
e153146
e153146
diff --git a/grub-core/kern/emu/misc.c b/grub-core/kern/emu/misc.c
ed1787d
index 0ff13bcaf8..d278c2921f 100644
e153146
--- a/grub-core/kern/emu/misc.c
e153146
+++ b/grub-core/kern/emu/misc.c
ed1787d
@@ -185,7 +185,7 @@ grub_util_get_image_size (const char *path)
e153146
   sz = ftello (f);
e153146
   if (sz < 0)
e153146
     grub_util_error (_("cannot open `%s': %s"), path, strerror (errno));
e153146
-  if (sz != (size_t) sz)
e153146
+  if (sz > (off_t)(GRUB_SIZE_MAX >> 1))
e153146
     grub_util_error (_("file `%s' is too big"), path);
e153146
   ret = (size_t) sz;
e153146
 
e153146
diff --git a/grub-core/lib/reed_solomon.c b/grub-core/lib/reed_solomon.c
e622855
index 467305b46a..79037c093f 100644
e153146
--- a/grub-core/lib/reed_solomon.c
e153146
+++ b/grub-core/lib/reed_solomon.c
46968b6
@@ -157,7 +157,7 @@ static void
e153146
 rs_encode (gf_single_t *data, grub_size_t s, grub_size_t rs)
e153146
 {
e153146
   gf_single_t *rs_polynomial;
e153146
-  int i, j;
e153146
+  unsigned int i, j;
e153146
   gf_single_t *m;
46968b6
   m = xcalloc (s + rs, sizeof (gf_single_t));
e153146
   grub_memcpy (m, data, s * sizeof (gf_single_t));
46968b6
@@ -324,7 +324,7 @@ static void
e153146
 encode_block (gf_single_t *ptr, grub_size_t s,
e153146
 	      gf_single_t *rptr, grub_size_t rs)
e153146
 {
e153146
-  int i, j;
e153146
+  unsigned int i, j;
e153146
   for (i = 0; i < SECTOR_SIZE; i++)
e153146
     {
e153146
       grub_size_t ds = (s + SECTOR_SIZE - 1 - i) / SECTOR_SIZE;
e153146
diff --git a/grub-core/osdep/linux/blocklist.c b/grub-core/osdep/linux/blocklist.c
e622855
index c77d6085cc..42a315031f 100644
e153146
--- a/grub-core/osdep/linux/blocklist.c
e153146
+++ b/grub-core/osdep/linux/blocklist.c
e153146
@@ -109,7 +109,7 @@ grub_install_get_blocklist (grub_device_t root_dev,
e153146
   else
e153146
     {
e153146
       struct fiemap *fie2;
e153146
-      int i;
e153146
+      unsigned int i;
e153146
       fie2 = xmalloc (sizeof (*fie2)
e153146
 		      + fie1.fm_mapped_extents
e153146
 		      * sizeof (fie1.fm_extents[1]));
e153146
diff --git a/grub-core/osdep/linux/getroot.c b/grub-core/osdep/linux/getroot.c
e622855
index 28790307e0..9f730b3518 100644
e153146
--- a/grub-core/osdep/linux/getroot.c
e153146
+++ b/grub-core/osdep/linux/getroot.c
e153146
@@ -236,7 +236,7 @@ grub_find_root_devices_from_btrfs (const char *dir)
e153146
 {
e153146
   int fd;
e153146
   struct btrfs_ioctl_fs_info_args fsi;
e153146
-  int i, j = 0;
e153146
+  unsigned int i, j = 0;
e153146
   char **ret;
e153146
 
e153146
   fd = open (dir, 0);
e153146
diff --git a/grub-core/osdep/linux/hostdisk.c b/grub-core/osdep/linux/hostdisk.c
e622855
index da62f924e3..7bc99ac1c1 100644
e153146
--- a/grub-core/osdep/linux/hostdisk.c
e153146
+++ b/grub-core/osdep/linux/hostdisk.c
e153146
@@ -83,7 +83,7 @@ grub_util_get_fd_size_os (grub_util_fd_t fd, const char *name, unsigned *log_sec
e153146
   if (sector_size & (sector_size - 1) || !sector_size)
e153146
     return -1;
e153146
   for (log_sector_size = 0;
e153146
-       (1 << log_sector_size) < sector_size;
e153146
+       (1U << log_sector_size) < sector_size;
e153146
        log_sector_size++);
e153146
 
e153146
   if (log_secsize)
e153146
diff --git a/util/grub-fstest.c b/util/grub-fstest.c
e622855
index 8386564200..bfcef852d8 100644
e153146
--- a/util/grub-fstest.c
e153146
+++ b/util/grub-fstest.c
e153146
@@ -323,7 +323,7 @@ cmd_cmp (char *src, char *dest)
e153146
   read_file (src, cmp_hook, ff);
e153146
 
e153146
   {
e153146
-    grub_uint64_t pre;
e153146
+    long long pre;
e153146
     pre = ftell (ff);
e153146
     fseek (ff, 0, SEEK_END);
e153146
     if (pre != ftell (ff))
e153146
diff --git a/util/grub-menulst2cfg.c b/util/grub-menulst2cfg.c
e622855
index a39f869394..358d604210 100644
e153146
--- a/util/grub-menulst2cfg.c
e153146
+++ b/util/grub-menulst2cfg.c
e153146
@@ -34,7 +34,7 @@ main (int argc, char **argv)
e153146
   char *buf = NULL;
e153146
   size_t bufsize = 0;
e153146
   char *suffix = xstrdup ("");
e153146
-  int suffixlen = 0;
e153146
+  size_t suffixlen = 0;
e153146
   const char *out_fname = 0;
e153146
 
e153146
   grub_util_host_init (&argc, &argv);
e153146
diff --git a/util/grub-mkfont.c b/util/grub-mkfont.c
e622855
index 0fe45a6103..3e09240b99 100644
e153146
--- a/util/grub-mkfont.c
e153146
+++ b/util/grub-mkfont.c
e153146
@@ -138,7 +138,8 @@ add_glyph (struct grub_font_info *font_info, FT_UInt glyph_idx, FT_Face face,
e153146
   int width, height;
e153146
   int cuttop, cutbottom, cutleft, cutright;
e153146
   grub_uint8_t *data;
e153146
-  int mask, i, j, bitmap_size;
e153146
+  int mask, i, bitmap_size;
e153146
+  unsigned int j;
e153146
   FT_GlyphSlot glyph;
e153146
   int flag = FT_LOAD_RENDER | FT_LOAD_MONOCHROME;
e153146
   FT_Error err;
e153146
@@ -183,7 +184,7 @@ add_glyph (struct grub_font_info *font_info, FT_UInt glyph_idx, FT_Face face,
e153146
     cuttop = cutbottom = cutleft = cutright = 0;
e153146
   else
e153146
     {
e153146
-      for (cuttop = 0; cuttop < glyph->bitmap.rows; cuttop++)
e153146
+      for (cuttop = 0; cuttop < (long)glyph->bitmap.rows; cuttop++)
e153146
 	{
e153146
 	  for (j = 0; j < glyph->bitmap.width; j++)
e153146
 	    if (glyph->bitmap.buffer[j / 8 + cuttop * glyph->bitmap.pitch]
e153146
@@ -203,10 +204,10 @@ add_glyph (struct grub_font_info *font_info, FT_UInt glyph_idx, FT_Face face,
e153146
 	    break;
e153146
 	}
e153146
       cutbottom = glyph->bitmap.rows - 1 - cutbottom;
e153146
-      if (cutbottom + cuttop >= glyph->bitmap.rows)
e153146
+      if (cutbottom + cuttop >= (long)glyph->bitmap.rows)
e153146
 	cutbottom = 0;
e153146
 
e153146
-      for (cutleft = 0; cutleft < glyph->bitmap.width; cutleft++)
e153146
+      for (cutleft = 0; cutleft < (long)glyph->bitmap.width; cutleft++)
e153146
 	{
e153146
 	  for (j = 0; j < glyph->bitmap.rows; j++)
e153146
 	    if (glyph->bitmap.buffer[cutleft / 8 + j * glyph->bitmap.pitch]
e153146
@@ -225,7 +226,7 @@ add_glyph (struct grub_font_info *font_info, FT_UInt glyph_idx, FT_Face face,
e153146
 	    break;
e153146
 	}
e153146
       cutright = glyph->bitmap.width - 1 - cutright;
e153146
-      if (cutright + cutleft >= glyph->bitmap.width)
e153146
+      if (cutright + cutleft >= (long)glyph->bitmap.width)
e153146
 	cutright = 0;
e153146
     }
e153146
 
e153146
@@ -262,7 +263,7 @@ add_glyph (struct grub_font_info *font_info, FT_UInt glyph_idx, FT_Face face,
e153146
 
e153146
   mask = 0;
e153146
   data = &glyph_info->bitmap[0] - 1;
e153146
-  for (j = cuttop; j < height + cuttop; j++)
e153146
+  for (j = cuttop; j < (long)height + cuttop; j++)
e153146
     for (i = cutleft; i < width + cutleft; i++)
e153146
       add_pixel (&data, &mask,
e153146
 		 glyph->bitmap.buffer[i / 8 + j * glyph->bitmap.pitch] &
e153146
diff --git a/util/grub-probe.c b/util/grub-probe.c
e622855
index c08e46bbb4..c6fac732b4 100644
e153146
--- a/util/grub-probe.c
e153146
+++ b/util/grub-probe.c
e153146
@@ -798,7 +798,7 @@ argp_parser (int key, char *arg, struct argp_state *state)
e153146
 
e153146
     case 't':
e153146
       {
e153146
-	int i;
e153146
+	unsigned int i;
e153146
 
e153146
 	for (i = PRINT_FS; i < ARRAY_SIZE (targets); i++)
e153146
 	  if (strcmp (arg, targets[i]) == 0)
e153146
diff --git a/util/setup.c b/util/setup.c
e622855
index da5f2c07f5..8b22bb8cca 100644
e153146
--- a/util/setup.c
e153146
+++ b/util/setup.c
46968b6
@@ -406,7 +406,7 @@ SETUP (const char *dir,
e153146
     int is_ldm;
e153146
     grub_err_t err;
e153146
     grub_disk_addr_t *sectors;
e153146
-    int i;
e153146
+    unsigned int i;
e153146
     grub_fs_t fs;
e153146
     unsigned int nsec, maxsec;
e153146