Skip to content

redhat/configs: Enable CONFIG_DEVICE_PRIVATE on aarch64

Bugzilla: https://bugzilla.redhat.com/show_bug.cgi?id=2231407

Peter Robinson reported that the default of CONFIG_DEVICE_PRIVATE would have been "y": With common/generic/CONFIG_HSA_AMD_SVM=y (that depends on CONFIG_DEVICE_PRIVATE -- which ends up depending on CONFIG_ZONE_DEVICE) and rhel/generic/CONFIG_ZONE_DEVICE=y (that depends on CONFIG_MEMORY_HOTREMOVE), it would turn CONFIG_DEVICE_PRIVATE on as default.

However, when enabling CONFIG_MEMORY_HOTREMOVE to work around the error:

Found unset config items, please set them to an appropriate value
CONFIG_DEVICE_PRIVATE=n"

We ended up setting "# CONFIG_DEVICE_PRIVATE is not set" instead, which was the wrong fix for the error.

Let's fix that by setting "CONFIG_DEVICE_PRIVATE=y" instead.

Signed-off-by: David Hildenbrand david@redhat.com

Merge request reports