aboutsummaryrefslogtreecommitdiffstats
path: root/mm/hugetlb.c
diff options
context:
space:
mode:
authorMike Kravetz <mike.kravetz@oracle.com>2022-12-16 14:45:07 -0800
committerAndrew Morton <akpm@linux-foundation.org>2023-01-18 17:12:42 -0800
commitc5094ec79cbe487983e3a96548a7eb1c1c82c727 (patch)
tree6c9893c00f6302cdb511c29f5bd7242dd5c2c30e /mm/hugetlb.c
parent6a6fe9ebd571a4092b7d5c1f11e4e1e15d296fa5 (diff)
downloadlinux-c5094ec79cbe487983e3a96548a7eb1c1c82c727.tar.gz
hugetlb: initialize variable to avoid compiler warning
With the gcc 'maybe-uninitialized' warning enabled, gcc will produce: mm/hugetlb.c:6896:20: warning: `chg' may be used uninitialized This is a false positive, but may be difficult for the compiler to determine. maybe-uninitialized is disabled by default, but this gets flagged as a 0-DAY build regression. Initialize the variable to silence the warning. Link: https://lkml.kernel.org/r/20221216224507.106789-1-mike.kravetz@oracle.com Signed-off-by: Mike Kravetz <mike.kravetz@oracle.com> Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Diffstat (limited to 'mm/hugetlb.c')
-rw-r--r--mm/hugetlb.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/mm/hugetlb.c b/mm/hugetlb.c
index 0e5441d6890ab..a82f410241671 100644
--- a/mm/hugetlb.c
+++ b/mm/hugetlb.c
@@ -6760,7 +6760,7 @@ bool hugetlb_reserve_pages(struct inode *inode,
struct vm_area_struct *vma,
vm_flags_t vm_flags)
{
- long chg, add = -1;
+ long chg = -1, add = -1;
struct hstate *h = hstate_inode(inode);
struct hugepage_subpool *spool = subpool_inode(inode);
struct resv_map *resv_map;