diff options
author | Linus Torvalds <torvalds@linux-foundation.org> | 2021-02-07 10:40:48 -0800 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2021-02-07 10:40:48 -0800 |
commit | ff92acb220c506f14aea384a07b130b87ac1489a (patch) | |
tree | fb0918c66140e7a0405dc123fc4cb922092bfd10 /kernel | |
parent | fc6c0ae53af40f4cd86a504a71778d924cef43df (diff) | |
parent | 9f5f8ec50165630cfc49897410b30997d4d677b5 (diff) | |
download | linux-ff92acb220c506f14aea384a07b130b87ac1489a.tar.gz |
Merge tag 'dma-mapping-5.11-2' of git://git.infradead.org/users/hch/dma-mapping
Pull dma-mapping fix from Christoph Hellwig:
"Fix a 32 vs 64-bit padding issue in the new benchmark code (Barry
Song)"
* tag 'dma-mapping-5.11-2' of git://git.infradead.org/users/hch/dma-mapping:
dma-mapping: benchmark: use u8 for reserved field in uAPI structure
Diffstat (limited to 'kernel')
-rw-r--r-- | kernel/dma/map_benchmark.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/kernel/dma/map_benchmark.c b/kernel/dma/map_benchmark.c index 1b1b8ff875cb..da95df381483 100644 --- a/kernel/dma/map_benchmark.c +++ b/kernel/dma/map_benchmark.c @@ -36,7 +36,7 @@ struct map_benchmark { __s32 node; /* which numa node this benchmark will run on */ __u32 dma_bits; /* DMA addressing capability */ __u32 dma_dir; /* DMA data direction */ - __u64 expansion[10]; /* For future use */ + __u8 expansion[84]; /* For future use */ }; struct map_benchmark_data { |