[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-Id: <20111030.030745.1245988853394270780.davem@davemloft.net>
Date: Sun, 30 Oct 2011 03:07:45 -0400 (EDT)
From: David Miller <davem@...emloft.net>
To: lindner_marek@...oo.de
Cc: netdev@...r.kernel.org, b.a.t.m.a.n@...ts.open-mesh.org,
stable@...nel.org
Subject: Re: pull request: batman-adv 2011-10-29
From: Marek Lindner <lindner_marek@...oo.de>
Date: Sat, 29 Oct 2011 10:06:43 +0200
> git://git.open-mesh.org/linux-merge.git batman-adv/maint
Pulled, but long term you should shore up your datastructures to
handle that issue in patch #3.
Make a common header:
struct tt_entry_common {
u8 addr[ETH_ALEN];
struct hlist_node hash_entry;
};
Then use that at the beginning of both structures:
struct tt_local_entry {
struct tt_entry_common common;
unsigned long last_seen;
...
};
struct tt_global_entry {
struct tt_entry_comomn common;
struct orig_node *orig_node;
...
};
And &p->common is what gets passed into tt_response_fill_table().
--
To unsubscribe from this list: send the line "unsubscribe netdev" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Powered by blists - more mailing lists