• Will Deacon's avatar
    iommu/io-pgtable: depend on !GENERIC_ATOMIC64 when using COMPILE_TEST with LPAE · c1004803
    Will Deacon authored
    The LPAE/ARMv8 page table format relies on the ability to read and write
    64-bit page table entries in an atomic fashion. With the move to a lockless
    implementation, we also need support for cmpxchg64 to resolve races when
    installing table entries concurrently.
    
    Unfortunately, not all architectures support cmpxchg64, so the code can
    fail to compiler when building for these architectures using COMPILE_TEST.
    Rather than disable COMPILE_TEST altogether, instead check that
    GENERIC_ATOMIC64 is not selected, which is a reasonable indication that
    the architecture has support for 64-bit cmpxchg.
    Reported-by: default avatarkbuild test robot <fengguang.wu@intel.com>
    Signed-off-by: default avatarWill Deacon <will.deacon@arm.com>
    c1004803
Kconfig 10.7 KB