]> git.ipfire.org Git - thirdparty/glibc.git/commit
Replace val with __val in TUNABLE_SET_VAL_IF_VALID_RANGE
authorH.J. Lu <hjl.tools@gmail.com>
Thu, 4 Jun 2020 19:53:28 +0000 (12:53 -0700)
committerH.J. Lu <hjl.tools@gmail.com>
Thu, 4 Jun 2020 21:01:14 +0000 (14:01 -0700)
commit9b7424215b10ae01d680ef91e10fc10f51227177
tree3372d08d1c178ffec2ede466213bb03a8bbc00d6
parent3f6e4fc4542b5b881906bf2f83eb4b8359b0dcd4
Replace val with __val in TUNABLE_SET_VAL_IF_VALID_RANGE

There are:

 #define TUNABLE_SET_VAL_IF_VALID_RANGE(__cur, __val, __type)                 \
({                                                                            \
  __type min = (__cur)->type.min;                                             \
  __type max = (__cur)->type.max;                                             \
                                                                              \
  if ((__type) (__val) >= min && (__type) (val) <= max)                       \
                                           ^^^ Should be __val
    {                                                                         \
      (__cur)->val.numval = val;                                              \
                            ^^^ Should be __val
      (__cur)->initialized = true;                                            \
    }                                                                         \
})

Luckily since all TUNABLE_SET_VAL_IF_VALID_RANGE usages are

TUNABLE_SET_VAL_IF_VALID_RANGE (cur, val, int64_t);

this didn't cause any issues.

Reviewed-by: Carlos O'Donell <carlos@redhat.com>
elf/dl-tunables.c