cachepc-linux

Fork of AMDESE/linux with modifications for CachePC side-channel attack
git clone https://git.sinitax.com/sinitax/cachepc-linux
Log | Files | Refs | README | LICENSE | sfeed.txt

drm_buddy_selftests.h (709B)


      1/* SPDX-License-Identifier: GPL-2.0 */
      2/* List each unit test as selftest(name, function)
      3 *
      4 * The name is used as both an enum and expanded as igt__name to create
      5 * a module parameter. It must be unique and legal for a C identifier.
      6 *
      7 * Tests are executed in order by igt/drm_buddy
      8 */
      9selftest(sanitycheck, igt_sanitycheck) /* keep first (selfcheck for igt) */
     10selftest(buddy_alloc_limit, igt_buddy_alloc_limit)
     11selftest(buddy_alloc_range, igt_buddy_alloc_range)
     12selftest(buddy_alloc_optimistic, igt_buddy_alloc_optimistic)
     13selftest(buddy_alloc_pessimistic, igt_buddy_alloc_pessimistic)
     14selftest(buddy_alloc_smoke, igt_buddy_alloc_smoke)
     15selftest(buddy_alloc_pathological, igt_buddy_alloc_pathological)