Hi Dave,
Here is a set of patches for net-2.6.17.
Please pull from:
git://tipc.cslab.ericsson.net/pub/git/tipc.git
Thanks
/Per
net/tipc/bcast.c | 58 +++++++++++++++++++------------
net/tipc/bearer.c | 20 +++++------
net/tipc/cluster.c | 20 +++++------
net/tipc/cluster.h | 2 +
net/tipc/config.c | 4 +-
net/tipc/dbg.c | 4 +-
net/tipc/discover.c | 8 ++--
net/tipc/eth_media.c | 4 +-
net/tipc/link.c | 89 +++++++++++++++++++++++-------------------------
net/tipc/name_distr.c | 6 ++-
net/tipc/name_table.c | 62 ++++++++++++++++++---------------
net/tipc/net.c | 7 ++--
net/tipc/node.c | 20 +++++------
net/tipc/node.h | 2 +
net/tipc/node_subscr.c | 2 +
net/tipc/port.c | 57 ++++++++++++++-----------------
net/tipc/ref.c | 8 ++--
net/tipc/ref.h | 4 +-
net/tipc/socket.c | 28 ++++++++-------
net/tipc/subscr.c | 30 ++++++++--------
net/tipc/user_reg.c | 4 +-
net/tipc/zone.c | 12 +++---
22 files changed, 230 insertions(+), 221 deletions(-)
commit 387f290cb34ad2d791ced01614ba7062cbcac879
Author: Per Liden <[EMAIL PROTECTED]>
Date: Thu Feb 9 12:46:56 2006 +0100
[TIPC] reduce stack usage
The node_map struct can be quite large (516 bytes) and allocating two of
them on the stack is not a good idea since we might only have a 4K stack
to start with.
Signed-off-by: Per Liden <[EMAIL PROTECTED]>
commit 8242fb4d3d516c4763b0861496e0e2b9bd89e37a
Author: Adrian Bunk <[EMAIL PROTECTED]>
Date: Tue Feb 7 10:53:21 2006 +0100
[2.6 patch] net/tipc/: possible cleanups
This patch contains the following possible cleanups:
- make needlessly global code static
- #if 0 the following unused global functions:
- name_table.c: tipc_nametbl_print()
- name_table.c: tipc_nametbl_dump()
- net.c: tipc_net_next_node()
Signed-off-by: Adrian Bunk <[EMAIL PROTECTED]>
Signed-off-by: Per Liden <[EMAIL PROTECTED]>
commit d71b81ce24e05e3f5d10ad7ffc8f777ce23421f2
Author: Per Liden <[EMAIL PROTECTED]>
Date: Fri Jan 20 15:02:21 2006 +0100
[TIPC] Remove unused functions
Signed-off-by: Per Liden <[EMAIL PROTECTED]>
commit 14bc3a94dccb30e61b93981b8897afcf46ebd0a9
Author: Sam Ravnborg <[EMAIL PROTECTED]>
Date: Fri Jan 20 08:52:44 2006 +0100
[PATCH] tipc: remove inlines from *.c
With reference to latest discussions on linux-kernel with respect to
inline here is a patch for tipc to remove all inlines as used in
the .c files. See also chapter 14 in Documentation/CodingStyle.
Before:
text data bss dec hex filename
102990 5292 1752 110034 1add2 tipc.o
Now:
text data bss dec hex filename
101190 5292 1752 108234 1a6ca tipc.o
This is a nice text size reduction which will improve icache usage.
In some cases bigger (> 4 lines) functions where declared inline
and used in many places, they are most probarly no longer inlined by gcc
resulting in the size reduction.
There are several one liners that no longer are declared inline, but gcc
should inline these just fine without the inline hint.
With this patch applied one warning is added about an unused static
function - that was hidded by utilising inline before.
The function in question were kept so this patch is solely a
inline removal patch.
Signed-off-by: Sam Ravnborg <[EMAIL PROTECTED]>
Signed-off-by: Per Liden <[EMAIL PROTECTED]>
commit 81f71f5283f5c531a134cad0c272eb1492007cd4
Author: Sam Ravnborg <[EMAIL PROTECTED]>
Date: Thu Jan 19 23:18:55 2006 +0100
[PATCH] tipc: fix simple sparse warnings
Tried to run the new tipc stack through sparse.
Following patch fixes all cases where 0 was used
as replacement of NULL.
Use NULL to document this is a pointer and to silence sparse.
This brough sparse warning count down with 127 to 24 warnings.
Signed-off-by: Sam Ravnborg <[EMAIL PROTECTED]>
Signed-off-by: Per Liden <[EMAIL PROTECTED]>
-
To unsubscribe from this list: send the line "unsubscribe netdev" in
the body of a message to [EMAIL PROTECTED]
More majordomo info at http://vger.kernel.org/majordomo-info.html