You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Nov 17, 2021. It is now read-only.
I'm building a kernel with a set PKG_ABI as in a custom suffix to differentiate the package and the kernel entry from the standard system kernels. Unfortunately, this suffix string (sbz in my case) shows up in the following code where an integer is expected and it's interpreted as a variable that was never declared. This usually goes unnoticed because PKG_ABI is set to 0 if it's unset.
./drivers/hv/hv.c: In function ‘hv_init’:
<command-line>:0:9: error: ‘sbz’ undeclared (first use in this function)
./drivers/hv/hv.c:225:81: note: in expansion of macro ‘PKG_ABI’
hv_context.guestid = generate_guest_id(0x80 /*Canonical*/, LINUX_VERSION_CODE, PKG_ABI);
^
The text was updated successfully, but these errors were encountered:
Sign up for freeto subscribe to this conversation on GitHub.
Already have an account?
Sign in.
I'm building a kernel with a set
PKG_ABI
as in a custom suffix to differentiate the package and the kernel entry from the standard system kernels. Unfortunately, this suffix string (sbz
in my case) shows up in the following code where an integer is expected and it's interpreted as a variable that was never declared. This usually goes unnoticed becausePKG_ABI
is set to 0 if it's unset.The text was updated successfully, but these errors were encountered: