Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit fda151d9 authored by Alexey Dobriyan's avatar Alexey Dobriyan Committed by Jens Axboe
Browse files

[PATCH] blktrace_api.h: endian annotations



Signed-off-by: default avatarAlexey Dobriyan <adobriyan@gmail.com>
Signed-off-by: default avatarAndrew Morton <akpm@osdl.org>
Signed-off-by: default avatarJens Axboe <axboe@suse.de>
parent a038e253
Loading
Loading
Loading
Loading
+3 −3
Original line number Diff line number Diff line
@@ -90,9 +90,9 @@ struct blk_io_trace {
 * The remap event
 */
struct blk_io_trace_remap {
	u32 device;
	__be32 device;
	u32 __pad;
	u64 sector;
	__be64 sector;
};

enum {
@@ -224,7 +224,7 @@ static inline void blk_add_trace_pdu_int(struct request_queue *q, u32 what,
					 struct bio *bio, unsigned int pdu)
{
	struct blk_trace *bt = q->blk_trace;
	u64 rpdu = cpu_to_be64(pdu);
	__be64 rpdu = cpu_to_be64(pdu);

	if (likely(!bt))
		return;