From 780d5585fdbf022bf3d8e0345d57da2d7d2ff2e7 Mon Sep 17 00:00:00 2001 From: Daniel Mack Date: Wed, 7 Jan 2015 20:41:08 +0100 Subject: [PATCH] =?utf8?q?kdbus.h:=20rename=20kdbus=5Freply=20=E2=86=92=20?= =?utf8?q?kdbus=5Fmsg=5Finfo=20(API=20break)?= MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit Rename struct kdbus_reply and call it kdbus_msg_info, as the old name didn't describe well what the struct is used for. Signed-off-by: Daniel Mack --- kdbus.h | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/kdbus.h b/kdbus.h index 495c1b6..e9d9c9f 100644 --- a/kdbus.h +++ b/kdbus.h @@ -463,12 +463,12 @@ struct kdbus_msg { } __attribute__((aligned(8))); /** - * struct kdbus_reply - reply container + * struct kdbus_msg_info - returned message container * @offset: Offset of kdbus_msg slice in pool * @msg_size: Copy of the kdbus_msg.size field * @return_flags: Command return flags, kernel → userspace */ -struct kdbus_reply { +struct kdbus_msg_info { __u64 offset; __u64 msg_size; __u64 return_flags; @@ -509,7 +509,7 @@ struct kdbus_cmd_send { __u64 kernel_msg_flags; __u64 return_flags; __u64 msg_address; - struct kdbus_reply reply; + struct kdbus_msg_info reply; struct kdbus_item items[0]; } __attribute__((aligned(8))); @@ -566,7 +566,7 @@ struct kdbus_cmd_recv { __u64 return_flags; __s64 priority; __u64 dropped_msgs; - struct kdbus_reply reply; + struct kdbus_msg_info reply; struct kdbus_item items[0]; } __attribute__((aligned(8))); -- 2.34.1