From 4d27d42967a582183788580d03d8394e60379207 Mon Sep 17 00:00:00 2001 From: Jens Axboe Date: Fri, 11 Dec 2015 15:13:41 -0700 Subject: [PATCH] server: comment sk_entry struct and remove hole Signed-off-by: Jens Axboe --- server.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/server.c b/server.c index b0ff1dcc..a5415bac 100644 --- a/server.c +++ b/server.c @@ -40,13 +40,13 @@ enum { }; struct sk_entry { - struct flist_head list; - int opcode; + struct flist_head list; /* link on sk_out->list */ + int flags; /* SK_F_* */ + int opcode; /* Actual command fields */ void *buf; off_t size; uint64_t *tagptr; - int flags; - struct flist_head next; + struct flist_head next; /* Other sk_entry's, if linked command */ }; struct sk_out { -- 2.25.1