Skip to content

Commit

Permalink
DECnet: Use container_of() for embedded struct
Browse files Browse the repository at this point in the history
Instead of a direct cross-type cast, use conatiner_of() to locate
the embedded structure, even in the face of future struct layout
randomization.

Signed-off-by: Kees Cook <[email protected]>
Signed-off-by: David S. Miller <[email protected]>
  • Loading branch information
kees authored and davem330 committed May 9, 2017
1 parent 32f1bc0 commit f92ceb0
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions net/decnet/dn_neigh.c
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,7 @@ struct neigh_table dn_neigh_table = {
static int dn_neigh_construct(struct neighbour *neigh)
{
struct net_device *dev = neigh->dev;
struct dn_neigh *dn = (struct dn_neigh *)neigh;
struct dn_neigh *dn = container_of(neigh, struct dn_neigh, n);
struct dn_dev *dn_db;
struct neigh_parms *parms;

Expand Down Expand Up @@ -339,7 +339,7 @@ int dn_to_neigh_output(struct net *net, struct sock *sk, struct sk_buff *skb)
struct dst_entry *dst = skb_dst(skb);
struct dn_route *rt = (struct dn_route *) dst;
struct neighbour *neigh = rt->n;
struct dn_neigh *dn = (struct dn_neigh *)neigh;
struct dn_neigh *dn = container_of(neigh, struct dn_neigh, n);
struct dn_dev *dn_db;
bool use_long;

Expand Down Expand Up @@ -391,7 +391,7 @@ int dn_neigh_router_hello(struct net *net, struct sock *sk, struct sk_buff *skb)

neigh = __neigh_lookup(&dn_neigh_table, &src, skb->dev, 1);

dn = (struct dn_neigh *)neigh;
dn = container_of(neigh, struct dn_neigh, n);

if (neigh) {
write_lock(&neigh->lock);
Expand Down Expand Up @@ -451,7 +451,7 @@ int dn_neigh_endnode_hello(struct net *net, struct sock *sk, struct sk_buff *skb

neigh = __neigh_lookup(&dn_neigh_table, &src, skb->dev, 1);

dn = (struct dn_neigh *)neigh;
dn = container_of(neigh, struct dn_neigh, n);

if (neigh) {
write_lock(&neigh->lock);
Expand Down Expand Up @@ -510,7 +510,7 @@ static void neigh_elist_cb(struct neighbour *neigh, void *_info)
if (neigh->dev != s->dev)
return;

dn = (struct dn_neigh *) neigh;
dn = container_of(neigh, struct dn_neigh, n);
if (!(dn->flags & (DN_NDFLAG_R1|DN_NDFLAG_R2)))
return;

Expand Down Expand Up @@ -549,7 +549,7 @@ int dn_neigh_elist(struct net_device *dev, unsigned char *ptr, int n)
static inline void dn_neigh_format_entry(struct seq_file *seq,
struct neighbour *n)
{
struct dn_neigh *dn = (struct dn_neigh *) n;
struct dn_neigh *dn = container_of(n, struct dn_neigh, n);
char buf[DN_ASCBUF_LEN];

read_lock(&n->lock);
Expand Down

0 comments on commit f92ceb0

Please sign in to comment.