Commit 71df3fd8 authored by Chaitanya Kulkarni's avatar Chaitanya Kulkarni Committed by Jens Axboe

blktrace: fix endianness in get_pdu_int()

In function get_pdu_len() replace variable type from __u64 to
__be64. This fixes sparse warning.
Signed-off-by: default avatarChaitanya Kulkarni <chaitanya.kulkarni@wdc.com>
Signed-off-by: default avatarJens Axboe <axboe@kernel.dk>
parent 48bc3cd3
......@@ -1256,7 +1256,7 @@ static inline __u16 t_error(const struct trace_entry *ent)
static __u64 get_pdu_int(const struct trace_entry *ent, bool has_cg)
{
const __u64 *val = pdu_start(ent, has_cg);
const __be64 *val = pdu_start(ent, has_cg);
return be64_to_cpu(*val);
}
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment