tipc: Update obsolete references to multicast link
authorAllan Stephens <allan.stephens@windriver.com>
Thu, 7 Apr 2011 14:22:31 +0000 (10:22 -0400)
committerPaul Gortmaker <paul.gortmaker@windriver.com>
Thu, 1 Sep 2011 15:16:35 +0000 (11:16 -0400)
Updates TIPC's broadcast link in a couple of places that were missed
during the transition from its former name ("multicast-link") to its
current name ("broadcast-link"). These changes are essentially cosmetic
and do not affect the overall operation of TIPC.

Signed-off-by: Allan Stephens <allan.stephens@windriver.com>
Signed-off-by: Paul Gortmaker <paul.gortmaker@windriver.com>
net/tipc/bcast.c

index 759b318b5ffba8a1bb21d0f18c3bf298f7e56300..411c54b152f0bf8ed3999fb059fc3b77b3ef9543 100644 (file)
@@ -764,7 +764,7 @@ int tipc_bclink_init(void)
        bcbearer = kzalloc(sizeof(*bcbearer), GFP_ATOMIC);
        bclink = kzalloc(sizeof(*bclink), GFP_ATOMIC);
        if (!bcbearer || !bclink) {
-               warn("Multicast link creation failed, no memory\n");
+               warn("Broadcast link creation failed, no memory\n");
                kfree(bcbearer);
                bcbearer = NULL;
                kfree(bclink);
@@ -775,7 +775,7 @@ int tipc_bclink_init(void)
        INIT_LIST_HEAD(&bcbearer->bearer.cong_links);
        bcbearer->bearer.media = &bcbearer->media;
        bcbearer->media.send_msg = tipc_bcbearer_send;
-       sprintf(bcbearer->media.name, "tipc-multicast");
+       sprintf(bcbearer->media.name, "tipc-broadcast");
 
        bcl = &bclink->link;
        INIT_LIST_HEAD(&bcl->waiting_ports);
This page took 0.036705 seconds and 5 git commands to generate.