tipc: Combine port structure with tipc_port structure
authorAllan Stephens <Allan.Stephens@windriver.com>
Fri, 7 Jan 2011 16:43:40 +0000 (11:43 -0500)
committerPaul Gortmaker <paul.gortmaker@windriver.com>
Wed, 23 Feb 2011 23:04:27 +0000 (18:04 -0500)
commit23dd4cce387124ec3ea06ca30d17854ae4d9b772
tree3d33e41a44bec6cdc5ba67ead1c76903a46945dd
parentdee9f4bceb5fd9dbfcc1567148fccdbf16d6a38a
tipc: Combine port structure with tipc_port structure

Merge two distinct structures containing information about a TIPC port
into a single structure. The structures were previously kept separate
so that public information about a port could be made available to
applications using TIPC's native API, while the remaining information
was kept private for use by TIPC itself. However, now that the native
API has been removed there is no longer any need for this somewhat
confusing arrangement.

Since one of the structures was already embedded within the other, the
change largely involves replacing instances of "publ.foo" with "foo".
The changes do not otherwise alter the operation of TIPC ports.

Signed-off-by: Allan Stephens <Allan.Stephens@windriver.com>
Signed-off-by: Paul Gortmaker <paul.gortmaker@windriver.com>
net/tipc/link.c
net/tipc/link.h
net/tipc/port.c
net/tipc/port.h
net/tipc/subscr.c