drm/ttm: Make sure BOs being swapped out are cacheable
authorMichel Dänzer <michel.daenzer@amd.com>
Wed, 25 Jan 2017 08:21:31 +0000 (17:21 +0900)
committerChristian König <christian.koenig@amd.com>
Fri, 27 Jan 2017 09:07:52 +0000 (10:07 +0100)
commit239ac65fa5ffab71adf66e642750f940e7241d99
treea81a90a3102d6f3bac0880086502ddc2b93dd990
parentba0c6d0087510b5db4d4b4f96f202bc893844c55
drm/ttm: Make sure BOs being swapped out are cacheable

The current caching state may not be tt_cached, even though the
placement contains TTM_PL_FLAG_CACHED, because placement can contain
multiple caching flags. Trying to swap out such a BO would trip up the

BUG_ON(ttm->caching_state != tt_cached);

in ttm_tt_swapout.

Cc: stable@vger.kernel.org
Signed-off-by: Michel Dänzer <michel.daenzer@amd.com>
Reviewed-by: Thomas Hellstrom <thellstrom@vmware.com>
Reviewed-by: Christian König <christian.koenig@amd.com>.
Reviewed-by: Sinclair Yeh <syeh@vmware.com>
Signed-off-by: Christian König <christian.koenig@amd.com>
drivers/gpu/drm/ttm/ttm_bo.c