staging/rdma/hfi1: diag.c correct sizeof parameter
authorIra Weiny <ira.weiny@intel.com>
Wed, 2 Dec 2015 05:43:32 +0000 (00:43 -0500)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Mon, 21 Dec 2015 21:53:37 +0000 (13:53 -0800)
sizeof should use the variable rather than the struct definition to ensure that
type changes are properly accounted for.

Signed-off-by: Ira Weiny <ira.weiny@intel.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/staging/rdma/hfi1/diag.c

index ed9cfcc..70a2614 100644 (file)
@@ -1482,7 +1482,7 @@ static struct snoop_packet *allocate_snoop_packet(u32 hdr_len,
 {
        struct snoop_packet *packet;
 
-       packet = kzalloc(sizeof(struct snoop_packet) + hdr_len + data_len
+       packet = kzalloc(sizeof(*packet) + hdr_len + data_len
                         + md_len,
                         GFP_ATOMIC | __GFP_NOWARN);
        if (likely(packet))