block: unalign call_single_data in struct request

A previous change blindly added massive alignment to the
call_single_data structure in struct request. This ballooned it in size
from 296 to 320 bytes on my setup, for no valid reason at all.

Use the unaligned struct __call_single_data variant instead.

Fixes: 966a967116e69 ("smp: Avoid using two cache lines for struct call_single_data")
Cc: stable@vger.kernel.org # v4.14
Signed-off-by: Jens Axboe <axboe@kernel.dk>

+1 -1
+1 -1
include/linux/blkdev.h
··· 135 135 struct request { 136 136 struct list_head queuelist; 137 137 union { 138 - call_single_data_t csd; 138 + struct __call_single_data csd; 139 139 u64 fifo_time; 140 140 }; 141 141