Re: [PATCH 9/14] [TIPC] Name publication events now delivered in chronological order
From: Per Liden <hidden>
Date: 2006-10-16 08:50:44
I'm fairly sure this is a problem on your side. I received patch 10/14 from the netdev list and the two list archives I checked also had it. /Per On Fri, 13 Oct 2006, Bill Fink wrote:
FYI, At least here, I received two copies of patch 9/14 and no copy of patch 10/14. -Bill On Fri, 13 Oct 2006 13:37:50 +0200, Per Liden wrote:quoted
From: Allan Stephens <redacted> This patch tivially re-orders the entries in TIPC's list of local publications so that applications will receive publication events in the order they were published. Signed-off-by: Allan Stephens <redacted> Signed-off-by: Per Liden <redacted> --- net/tipc/name_distr.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-)diff --git a/net/tipc/name_distr.c b/net/tipc/name_distr.c index f0b063b..03bd659 100644 --- a/net/tipc/name_distr.c +++ b/net/tipc/name_distr.c@@ -122,7 +122,7 @@ void tipc_named_publish(struct publicati struct sk_buff *buf; struct distr_item *item; - list_add(&publ->local_list, &publ_root); + list_add_tail(&publ->local_list, &publ_root); publ_cnt++; buf = named_prepare_buf(PUBLICATION, ITEM_SIZE, 0);-- 1.4.1