[PATCH 22/23] drm/ttm: two minor struct reorgs to fill holes.
Dave Airlie
airlied at gmail.com
Wed Aug 26 01:44:27 UTC 2020
From: Dave Airlie <airlied at redhat.com>
These are just minor changes that fill some obvious holes.
Signed-off-by: Dave Airlie <airlied at redhat.com>
---
include/drm/ttm/ttm_placement.h | 2 +-
include/drm/ttm/ttm_tt.h | 2 +-
2 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/include/drm/ttm/ttm_placement.h b/include/drm/ttm/ttm_placement.h
index e88a8e39767b..ded0f42a143c 100644
--- a/include/drm/ttm/ttm_placement.h
+++ b/include/drm/ttm/ttm_placement.h
@@ -100,8 +100,8 @@ struct ttm_place {
*/
struct ttm_placement {
unsigned num_placement;
- const struct ttm_place *placement;
unsigned num_busy_placement;
+ const struct ttm_place *placement;
const struct ttm_place *busy_placement;
};
diff --git a/include/drm/ttm/ttm_tt.h b/include/drm/ttm/ttm_tt.h
index 3b87ce43864a..573254930a3f 100644
--- a/include/drm/ttm/ttm_tt.h
+++ b/include/drm/ttm/ttm_tt.h
@@ -68,9 +68,9 @@ enum ttm_caching_state {
struct ttm_tt {
struct page **pages;
uint32_t page_flags;
+ enum ttm_caching_state caching_state;
unsigned long num_pages;
struct file *swap_storage;
- enum ttm_caching_state caching_state;
};
static inline bool ttm_tt_is_populated(struct ttm_tt *tt)
--
2.27.0
More information about the dri-devel
mailing list