mirror of
https://github.com/torvalds/linux.git
synced 2024-12-19 09:32:32 +00:00
bfd431cb2c
Pre 5.11 kernels don't support 'contextid1' and 'contextid2' so
validation would be skipped. By adding an additional check for
'contextid', old kernels will still have validation done even though
contextid would either be contextid1 or contextid2.
Additionally now that it's possible to override options, an existing bug
in the validation is revealed. 'val' is overwritten by the contextid1
validation, and re-used for contextid2 validation causing it to always
fail. '!val || val != 0x4' is the same as 'val != 0x4' because 0 is also
!= 4, so that expression can be simplified and the temp variable not
overwritten.
Fixes:
|
||
---|---|---|
.. | ||
annotate | ||
include | ||
tests | ||
util | ||
Build | ||
Makefile |