]> git.openfabrics.org - ~shefty/rdma-dev.git/commitdiff
batman-adv: mark existing ogm variables as batman iv
authorMarek Lindner <lindner_marek@yahoo.de>
Tue, 7 Feb 2012 09:20:51 +0000 (17:20 +0800)
committerAntonio Quartulli <ordex@autistici.org>
Wed, 18 Apr 2012 07:54:01 +0000 (09:54 +0200)
The coming protocol changes also will have a part called "OGM". That
makes it necessary to introduce a distinction in the code base.

Signed-off-by: Marek Lindner <lindner_marek@yahoo.de>
Signed-off-by: Antonio Quartulli <ordex@autistici.org>
net/batman-adv/bat_iv_ogm.c
net/batman-adv/hard-interface.c
net/batman-adv/packet.h

index a2af2896769fb3128002e5676f46eedc3e6bf3df..98f71827c7b3f605fa667f953578df6ed5e4d2b2 100644 (file)
@@ -47,7 +47,7 @@ static int bat_iv_ogm_iface_enable(struct hard_iface *hard_iface)
                goto out;
 
        batman_ogm_packet = (struct batman_ogm_packet *)hard_iface->packet_buff;
-       batman_ogm_packet->header.packet_type = BAT_OGM;
+       batman_ogm_packet->header.packet_type = BAT_IV_OGM;
        batman_ogm_packet->header.version = COMPAT_VERSION;
        batman_ogm_packet->header.ttl = 2;
        batman_ogm_packet->flags = NO_FLAGS;
@@ -934,7 +934,7 @@ static void bat_iv_ogm_process(const struct ethhdr *ethhdr,
         * packet in an aggregation.  Here we expect that the padding
         * is always zero (or not 0x01)
         */
-       if (batman_ogm_packet->header.packet_type != BAT_OGM)
+       if (batman_ogm_packet->header.packet_type != BAT_IV_OGM)
                return;
 
        /* could be changed by schedule_own_packet() */
index 75a555b8587ebaf35d1062bb7883f94725808f4a..e8c5da379a805844da0d584e4918e91e16c12a8b 100644 (file)
@@ -604,7 +604,7 @@ static int batman_skb_recv(struct sk_buff *skb, struct net_device *dev,
 
        switch (batman_ogm_packet->header.packet_type) {
                /* batman originator packet */
-       case BAT_OGM:
+       case BAT_IV_OGM:
                ret = recv_bat_ogm_packet(skb, hard_iface);
                break;
 
index 59dec0a1979b1d35b4858e65680365accbe489bf..f54969c61a1e09d981c20f1c77846b725113f7ca 100644 (file)
@@ -25,7 +25,7 @@
 #define ETH_P_BATMAN  0x4305   /* unofficial/not registered Ethertype */
 
 enum bat_packettype {
-       BAT_OGM          = 0x01,
+       BAT_IV_OGM       = 0x01,
        BAT_ICMP         = 0x02,
        BAT_UNICAST      = 0x03,
        BAT_BCAST        = 0x04,
@@ -38,7 +38,7 @@ enum bat_packettype {
 /* this file is included by batctl which needs these defines */
 #define COMPAT_VERSION 14
 
-enum batman_flags {
+enum batman_iv_flags {
        PRIMARIES_FIRST_HOP = 1 << 4,
        VIS_SERVER          = 1 << 5,
        DIRECTLINK          = 1 << 6