public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
From: Honggang Li <honli@redhat.com>
To: roland@kernel.org, sean.hefty@intel.com,
	hal.rosenstock@gmail.com, davem@davemloft.net,
	alex.estrin@intel.com, dledford@redhat.com, edumazet@google.com,
	erezsh@mellanox.com, nicolas.dichtel@6wind.com,
	linux-rdma@vger.kernel.org, linux-kernel@vger.kernel.org
Cc: Honggang Li <honli@redhat.com>
Subject: [PATCH linux-next v2] infiniband/ipoib: fix possible NULL pointer dereference in ipoib_get_iflink
Date: Wed, 15 Apr 2015 00:26:50 +0800	[thread overview]
Message-ID: <1429028811-29888-1-git-send-email-honli@redhat.com> (raw)
In-Reply-To: <1429024817-21561-1-git-send-email-honli@redhat.com>

1) Droped ipvlan/macvlan/dsa patches.
2) Do not check the pointer returned by netdev_priv.
3) Add the FIX tag.

--------------------- console log ---------------
ipoib_get_iflink  dev = ffff88026eb1c000, priv = ffff88026eb1c7c0, priv->parent =           (null)
ipoib_get_iflink  dev = ffff88026eb1c000, priv = ffff88026eb1c7c0, priv->parent =           (null)
ipoib_get_iflink  dev = ffff880225c8a000, priv = ffff880225c8a7c0, priv->parent =           (null)
ipoib_get_iflink  dev = ffff880225c8a000, priv = ffff880225c8a7c0, priv->parent =           (null)
[  OK  ]
ipoib_get_iflink  dev = ffff88026eb1c000, priv = ffff88026eb1c7c0, priv->parent =           (null)
ipoib_get_iflink  dev = ffff88026eb1c000, priv = ffff88026eb1c7c0, priv->parent =           (null)
ipoib_get_iflink  dev = ffff880225c8a000, priv = ffff880225c8a7c0, priv->parent =           (null)
ipoib_get_iflink  dev = ffff880225c8a000, priv = ffff880225c8a7c0, priv->parent =           (null)
Shutting down interface cxgb4_1:  ipoib_get_iflink  dev = ffff88026eb1c000, priv = ffff88026eb1c7c0, priv->parent =           (null)
ipoib_get_iflink  dev = ffff88026eb1c000, priv = ffff88026eb1c7c0, priv->parent =           (null)
ipoib_get_iflink  dev = ffff880225c8a000, priv = ffff880225c8a7c0, priv->parent =           (null)
ipoib_get_iflink  dev = ffff880225c8a000, priv = ffff880225c8a7c0, priv->parent =           (null)
--------------------- console log ---------------

Honggang Li (1):
  infiniband/ipoib: fix possible NULL pointer dereference in
    ipoib_get_iflink

 drivers/infiniband/ulp/ipoib/ipoib_main.c | 5 ++++-
 1 file changed, 4 insertions(+), 1 deletion(-)

-- 
1.8.3.1


  parent reply	other threads:[~2015-04-14 16:27 UTC|newest]

Thread overview: 31+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2015-04-14 15:20 [PATCH linux-next 0/4] fix possile NULL pointer dereference in ndo_get_iflink callback functions Honggang Li
2015-04-14 15:20 ` [PATCH linux-next 1/4] infiniband/ipoib: fix possible NULL pointer dereference in ipoib_get_iflink Honggang Li
2015-04-14 15:34   ` Eric Dumazet
2015-04-14 15:44     ` Honggang LI
2015-04-14 15:49       ` Nicolas Dichtel
2015-04-14 15:53         ` Honggang LI
2015-04-14 16:14           ` Eric Dumazet
2015-04-14 16:01         ` Yann Droneaud
2015-04-14 16:44           ` Nicolas Dichtel
2015-04-14 16:30   ` Erez Shitrit
2015-04-14 16:46     ` Nicolas Dichtel
2015-04-14 20:41     ` Jason Gunthorpe
2015-04-15  5:24       ` Or Gerlitz
2015-04-15  6:17       ` Erez Shitrit
2015-04-15 16:06         ` Jason Gunthorpe
2015-04-16 11:27           ` Erez Shitrit
2015-04-15  5:16     ` Honggang LI
2015-04-15  6:57       ` Honggang LI
2015-04-14 15:20 ` [PATCH linux-next 2/4] ipvlan: fix possible NULL pointer dereference in ipvlan_get_iflink Honggang Li
2015-04-14 15:20 ` [PATCH linux-next 3/4] macvlan: fix possible NULL pointer dereference in macvlan_dev_get_iflink Honggang Li
2015-04-14 15:26   ` Patrick McHardy
2015-04-14 15:32     ` Honggang LI
2015-04-14 15:35       ` Patrick McHardy
2015-04-14 17:47       ` David Miller
2015-04-14 15:35     ` Nicolas Dichtel
2015-04-14 15:37       ` Andrew Lunn
2015-04-14 15:46         ` Honggang LI
2015-04-14 15:20 ` [PATCH linux-next 4/4] net/dsa: fix possible NULL pointer dereference in dsa_slave_get_iflink Honggang Li
2015-04-14 15:55   ` Guenter Roeck
2015-04-14 16:26 ` Honggang Li [this message]
2015-04-14 16:26   ` [PATCH] infiniband/ipoib: fix possible NULL pointer dereference in ipoib_get_iflink Honggang Li

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=1429028811-29888-1-git-send-email-honli@redhat.com \
    --to=honli@redhat.com \
    --cc=alex.estrin@intel.com \
    --cc=davem@davemloft.net \
    --cc=dledford@redhat.com \
    --cc=edumazet@google.com \
    --cc=erezsh@mellanox.com \
    --cc=hal.rosenstock@gmail.com \
    --cc=linux-kernel@vger.kernel.org \
    --cc=linux-rdma@vger.kernel.org \
    --cc=nicolas.dichtel@6wind.com \
    --cc=roland@kernel.org \
    --cc=sean.hefty@intel.com \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox