summaryrefslogtreecommitdiff
path: root/ipc
diff options
context:
space:
mode:
authorKonrad Lipinski <konrad.l@samsung.com>2016-12-09 17:38:32 +0100
committerSeung-Woo Kim <sw0312.kim@samsung.com>2016-12-14 13:53:42 +0900
commit0bc6b1c5f69bfc9da63e5efa16c7599008e132f6 (patch)
treef65f8143c0193aaa22fd4b2041dae65051cf93c9 /ipc
parent323cc4064a8ef9ce86a97b27fc184813b4d351ec (diff)
kdbus: link replies in fifo send order
As a consequence, timeouts are now issued in fifo order. Change-Id: Iacf4e922a37038fa42f95a9d058eeacd0ebce3ec Signed-off-by: Konrad Lipinski <konrad.l@samsung.com>
Diffstat (limited to 'ipc')
-rw-r--r--ipc/kdbus/reply.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/ipc/kdbus/reply.c b/ipc/kdbus/reply.c
index e6791d86ec92..07cb133cd8f1 100644
--- a/ipc/kdbus/reply.c
+++ b/ipc/kdbus/reply.c
@@ -117,7 +117,7 @@ void kdbus_reply_link(struct kdbus_reply *r)
if (WARN_ON(!list_empty(&r->entry)))
return;
- list_add(&r->entry, &r->reply_dst->reply_list);
+ list_add_tail(&r->entry, &r->reply_dst->reply_list);
kdbus_reply_ref(r);
}