Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 279135
b: refs/heads/master
c: 11f9990
h: refs/heads/master
i:
  279133: 3261f03
  279131: 0af269f
  279127: cbaf2f6
  279119: 5b9661e
  279103: 5a46b72
v: v3
  • Loading branch information
Paul Gortmaker committed Dec 30, 2011
1 parent b32cf8e commit ea4f70c
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 12 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: fead39098badacbfb5890de9a10e5b265788a524
refs/heads/master: 11f9990604637e08f163f919ab37d8834dff5583
22 changes: 11 additions & 11 deletions trunk/net/tipc/subscr.c
Original file line number Diff line number Diff line change
Expand Up @@ -40,14 +40,14 @@
#include "subscr.h"

/**
* struct subscriber - TIPC network topology subscriber
* struct tipc_subscriber - TIPC network topology subscriber
* @port_ref: object reference to server port connecting to subscriber
* @lock: pointer to spinlock controlling access to subscriber's server port
* @subscriber_list: adjacent subscribers in top. server's list of subscribers
* @subscription_list: list of subscription objects for this subscriber
*/

struct subscriber {
struct tipc_subscriber {
u32 port_ref;
spinlock_t *lock;
struct list_head subscriber_list;
Expand Down Expand Up @@ -224,7 +224,7 @@ static void subscr_del(struct tipc_subscription *sub)
* simply wait for it to be released, then claim it.)
*/

static void subscr_terminate(struct subscriber *subscriber)
static void subscr_terminate(struct tipc_subscriber *subscriber)
{
u32 port_ref;
struct tipc_subscription *sub;
Expand Down Expand Up @@ -278,7 +278,7 @@ static void subscr_terminate(struct subscriber *subscriber)
*/

static void subscr_cancel(struct tipc_subscr *s,
struct subscriber *subscriber)
struct tipc_subscriber *subscriber)
{
struct tipc_subscription *sub;
struct tipc_subscription *sub_temp;
Expand Down Expand Up @@ -315,7 +315,7 @@ static void subscr_cancel(struct tipc_subscr *s,
*/

static struct tipc_subscription *subscr_subscribe(struct tipc_subscr *s,
struct subscriber *subscriber)
struct tipc_subscriber *subscriber)
{
struct tipc_subscription *sub;
int swap;
Expand Down Expand Up @@ -393,7 +393,7 @@ static void subscr_conn_shutdown_event(void *usr_handle,
unsigned int size,
int reason)
{
struct subscriber *subscriber = usr_handle;
struct tipc_subscriber *subscriber = usr_handle;
spinlock_t *subscriber_lock;

if (tipc_port_lock(port_ref) == NULL)
Expand All @@ -416,7 +416,7 @@ static void subscr_conn_msg_event(void *usr_handle,
const unchar *data,
u32 size)
{
struct subscriber *subscriber = usr_handle;
struct tipc_subscriber *subscriber = usr_handle;
spinlock_t *subscriber_lock;
struct tipc_subscription *sub;

Expand Down Expand Up @@ -471,12 +471,12 @@ static void subscr_named_msg_event(void *usr_handle,
struct tipc_portid const *orig,
struct tipc_name_seq const *dest)
{
struct subscriber *subscriber;
struct tipc_subscriber *subscriber;
u32 server_port_ref;

/* Create subscriber object */

subscriber = kzalloc(sizeof(struct subscriber), GFP_ATOMIC);
subscriber = kzalloc(sizeof(struct tipc_subscriber), GFP_ATOMIC);
if (subscriber == NULL) {
warn("Subscriber rejected, no memory\n");
return;
Expand Down Expand Up @@ -568,8 +568,8 @@ int tipc_subscr_start(void)

void tipc_subscr_stop(void)
{
struct subscriber *subscriber;
struct subscriber *subscriber_temp;
struct tipc_subscriber *subscriber;
struct tipc_subscriber *subscriber_temp;
spinlock_t *subscriber_lock;

if (topsrv.setup_port) {
Expand Down

0 comments on commit ea4f70c

Please sign in to comment.