summaryrefslogtreecommitdiffstats
path: root/drivers/staging/gasket
diff options
context:
space:
mode:
authorNick Ewalt2018-10-15 06:59:21 +0200
committerGreg Kroah-Hartman2018-10-15 16:30:37 +0200
commit53f8a81d465b10aabaf6e0ffc99e7ea2c25bef5a (patch)
tree3186cad8b919f63b034d9d8454b230eddad274fa /drivers/staging/gasket
parentstaging: gasket: page_table: remove unnecessary PTE status set to free (diff)
downloadkernel-qcow2-linux-53f8a81d465b10aabaf6e0ffc99e7ea2c25bef5a.tar.gz
kernel-qcow2-linux-53f8a81d465b10aabaf6e0ffc99e7ea2c25bef5a.tar.xz
kernel-qcow2-linux-53f8a81d465b10aabaf6e0ffc99e7ea2c25bef5a.zip
staging: gasket: page_table: rearrange gasket_page_table_entry
Rearrange gasket_page_table entry to reduce padding slop. Signed-off-by: Nick Ewalt <nicholasewalt@google.com> Signed-off-by: Todd Poynor <toddpoynor@google.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers/staging/gasket')
-rw-r--r--drivers/staging/gasket/gasket_page_table.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/drivers/staging/gasket/gasket_page_table.c b/drivers/staging/gasket/gasket_page_table.c
index d2e115d2dba3..9c2f8671216b 100644
--- a/drivers/staging/gasket/gasket_page_table.c
+++ b/drivers/staging/gasket/gasket_page_table.c
@@ -103,12 +103,6 @@ struct gasket_page_table_entry {
/* The status of this entry/slot: free or in use. */
enum pte_status status;
- /* Address of the page in DMA space. */
- dma_addr_t dma_addr;
-
- /* Linux page descriptor for the page described by this structure. */
- struct page *page;
-
/*
* Index for alignment into host vaddrs.
* When a user specifies a host address for a mapping, that address may
@@ -119,6 +113,12 @@ struct gasket_page_table_entry {
*/
int offset;
+ /* Address of the page in DMA space. */
+ dma_addr_t dma_addr;
+
+ /* Linux page descriptor for the page described by this structure. */
+ struct page *page;
+
/*
* If this is an extended and first-level entry, sublevel points
* to the second-level entries underneath this entry.