diff options
author | Brian Haley <brian.haley@hp.com> | 2008-09-02 10:08:08 -0400 |
---|---|---|
committer | Jeff Garzik <jgarzik@redhat.com> | 2008-09-03 10:03:07 -0400 |
commit | f14c4e4e3651b76ae09082fa66cda37e10ac2b43 (patch) | |
tree | c9441dc387517914b0434e880245f8d824895413 /drivers/net/bonding/bond_alb.c | |
parent | a816f75ac5caa79b08325e35317f964f03841d52 (diff) |
bonding: change some __constant_htons() to htons()
Resending since I didn't see any responses from the first try.
Change __constant_htons() to htons() in the bonding driver, it should
only be used for initializers.
-Brian
Signed-off-by: Brian Haley <brian.haley@hp.com>
Signed-off-by: Jeff Garzik <jgarzik@redhat.com>
Diffstat (limited to 'drivers/net/bonding/bond_alb.c')
-rw-r--r-- | drivers/net/bonding/bond_alb.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/net/bonding/bond_alb.c b/drivers/net/bonding/bond_alb.c index b211486a0ca3..3d39278a63e3 100644 --- a/drivers/net/bonding/bond_alb.c +++ b/drivers/net/bonding/bond_alb.c | |||
@@ -710,7 +710,7 @@ static struct slave *rlb_arp_xmit(struct sk_buff *skb, struct bonding *bond) | |||
710 | struct arp_pkt *arp = arp_pkt(skb); | 710 | struct arp_pkt *arp = arp_pkt(skb); |
711 | struct slave *tx_slave = NULL; | 711 | struct slave *tx_slave = NULL; |
712 | 712 | ||
713 | if (arp->op_code == __constant_htons(ARPOP_REPLY)) { | 713 | if (arp->op_code == htons(ARPOP_REPLY)) { |
714 | /* the arp must be sent on the selected | 714 | /* the arp must be sent on the selected |
715 | * rx channel | 715 | * rx channel |
716 | */ | 716 | */ |
@@ -719,7 +719,7 @@ static struct slave *rlb_arp_xmit(struct sk_buff *skb, struct bonding *bond) | |||
719 | memcpy(arp->mac_src,tx_slave->dev->dev_addr, ETH_ALEN); | 719 | memcpy(arp->mac_src,tx_slave->dev->dev_addr, ETH_ALEN); |
720 | } | 720 | } |
721 | dprintk("Server sent ARP Reply packet\n"); | 721 | dprintk("Server sent ARP Reply packet\n"); |
722 | } else if (arp->op_code == __constant_htons(ARPOP_REQUEST)) { | 722 | } else if (arp->op_code == htons(ARPOP_REQUEST)) { |
723 | /* Create an entry in the rx_hashtbl for this client as a | 723 | /* Create an entry in the rx_hashtbl for this client as a |
724 | * place holder. | 724 | * place holder. |
725 | * When the arp reply is received the entry will be updated | 725 | * When the arp reply is received the entry will be updated |