Skip to content

Commit

Permalink
rocker: quiet sparce endianess warnings
Browse files Browse the repository at this point in the history
Signed-off-by: Scott Feldman <sfeldma@gmail.com>
Reviewed-by: Jonathan Toppins <jtoppins@cumulusnetworks.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
  • Loading branch information
Scott Feldman authored and David S. Miller committed Mar 7, 2015
1 parent 3ba67da commit 0f43deb
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions drivers/net/ethernet/rocker/rocker.c
Original file line number Diff line number Diff line change
Expand Up @@ -2737,7 +2737,8 @@ static struct rocker_neigh_tbl_entry *
{
struct rocker_neigh_tbl_entry *found;

hash_for_each_possible(rocker->neigh_tbl, found, entry, (u32)ip_addr)
hash_for_each_possible(rocker->neigh_tbl, found,
entry, be32_to_cpu(ip_addr))
if (found->ip_addr == ip_addr)
return found;

Expand All @@ -2749,7 +2750,8 @@ static void _rocker_neigh_add(struct rocker *rocker,
{
entry->index = rocker->neigh_tbl_next_index++;
entry->ref_count++;
hash_add(rocker->neigh_tbl, &entry->entry, (u32)entry->ip_addr);
hash_add(rocker->neigh_tbl, &entry->entry,
be32_to_cpu(entry->ip_addr));
}

static void _rocker_neigh_del(struct rocker *rocker,
Expand Down Expand Up @@ -2868,7 +2870,7 @@ static int rocker_port_ipv4_resolve(struct rocker_port *rocker_port,
__be32 ip_addr)
{
struct net_device *dev = rocker_port->dev;
struct neighbour *n = __ipv4_neigh_lookup(dev, (u32)ip_addr);
struct neighbour *n = __ipv4_neigh_lookup(dev, (__force u32)ip_addr);
int err = 0;

if (!n)
Expand Down

0 comments on commit 0f43deb

Please sign in to comment.