linux-6.19-rc8/kernel/liveupdate/kexec_handover.c:1089: Possible 32/64 bit mixup ?

From: David Binderman

Date: Thu Feb 05 2026 - 04:26:02 EST


Hello there,

Source code analyser cppcheck says:

linux-6.19-rc8/kernel/liveupdate/kexec_handover.c:1089:15: style: int result is assigned to long variable. If the variable is long to avoid loss of information, then you have loss of information. [truncLongCastAssignment]

Source code is

contig_pages = (1 << order);

I admit the error message is hard to understand, but AFAIK
if local variable order remains under 30 or so, then there is no problem.

However, if it goes above 32, then there will be loss of data.
Expression 1 << order is type int.

Suggest add some code or comment to document the expected range
of local variable order. If it ever goes above 32, suggest new code

contig_pages = 1UL << order;

Regards

David Binderman