public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
From: Greg KH <greg@kroah.com>
To: Ilia Mirkin <imirkin@alum.mit.edu>
Cc: Greg Kroah-Hartman <gregkh@suse.de>,
	devel@driverdev.osuosl.org, linux-kernel@vger.kernel.org
Subject: Re: [PATCH 07/24] staging: hv: Remove NULL check before kfree
Date: Mon, 14 Mar 2011 12:00:00 -0700	[thread overview]
Message-ID: <20110314190000.GA28040@kroah.com> (raw)
In-Reply-To: <1299994157-11191-8-git-send-email-imirkin@alum.mit.edu>

On Sun, Mar 13, 2011 at 12:29:00AM -0500, Ilia Mirkin wrote:
> This patch was generated by the following semantic patch:
> // <smpl>
> @@ expression E; @@
> - if (E != NULL) { kfree(E); }
> + kfree(E);
> 
> @@ expression E; @@
> - if (E != NULL) { kfree(E); E = NULL; }
> + kfree(E);
> + E = NULL;
> // </smpl>
> 
> Signed-off-by: Ilia Mirkin <imirkin@alum.mit.edu>
> ---
>  drivers/staging/hv/channel_mgmt.c |    3 +--
>  drivers/staging/hv/connection.c   |    4 +---
>  drivers/staging/hv/hv_mouse.c     |   12 ++++--------
>  3 files changed, 6 insertions(+), 13 deletions(-)

Let me sync up with the other hyperv patches in my queue before applying
this one, don't worry, it's not lost...

thanks,

greg k-h

  parent reply	other threads:[~2011-03-14 19:14 UTC|newest]

Thread overview: 35+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2011-02-22  8:53 [PATCH 1/2] staging: remove null checks before kfree Ilia Mirkin
2011-02-22  8:53 ` [PATCH 2/2] staging: remove null checks before kree(x); x = NULL; Ilia Mirkin
2011-02-22 14:54 ` [PATCH 1/2] staging: remove null checks before kfree Greg KH
2011-03-13  5:28   ` [PATCH 00/24] Remove NULL check " Ilia Mirkin
2011-03-13  5:28     ` [PATCH 01/24] staging: ath6kl: " Ilia Mirkin
2011-03-13  5:28       ` [PATCH 02/24] staging: bcm: " Ilia Mirkin
2011-03-13  5:28         ` [PATCH 03/24] staging: brcm80211: " Ilia Mirkin
2011-03-13  5:28           ` [PATCH 04/24] staging: comedi: " Ilia Mirkin
2011-03-13  5:28             ` [PATCH 05/24] staging: cx25821: " Ilia Mirkin
2011-03-13  5:28               ` [PATCH 06/24] staging: go7007: " Ilia Mirkin
2011-03-13  5:29                 ` [PATCH 07/24] staging: hv: " Ilia Mirkin
2011-03-13  5:29                   ` [PATCH 08/24] staging: keucr: " Ilia Mirkin
2011-03-13  5:29                     ` [PATCH 09/24] staging: line6: " Ilia Mirkin
2011-03-13  5:29                       ` [PATCH 10/24] staging: pohmelfs: " Ilia Mirkin
2011-03-13  5:29                         ` [PATCH 11/24] staging: rt2860: " Ilia Mirkin
2011-03-13  5:29                           ` [PATCH 12/24] staging: rtl8187se: " Ilia Mirkin
2011-03-13  5:29                             ` [PATCH 13/24] staging: rtl8192e: " Ilia Mirkin
2011-03-13  5:29                               ` [PATCH 14/24] staging: rtl8192u: " Ilia Mirkin
2011-03-13  5:29                                 ` [PATCH 15/24] staging: rtl8712: " Ilia Mirkin
2011-03-13  5:29                                   ` [PATCH 16/24] staging: serqt_usb2: " Ilia Mirkin
2011-03-13  5:29                                     ` [PATCH 17/24] staging: speakup: " Ilia Mirkin
2011-03-13  5:29                                       ` [PATCH 18/24] staging: tidspbridge: " Ilia Mirkin
2011-03-13  5:29                                         ` [PATCH 19/24] staging: usbip: " Ilia Mirkin
2011-03-13  5:29                                           ` [PATCH 20/24] staging: vme: " Ilia Mirkin
2011-03-13  5:29                                             ` [PATCH 21/24] staging: vt6655: " Ilia Mirkin
2011-03-13  5:29                                               ` [PATCH 22/24] staging: vt6656: " Ilia Mirkin
2011-03-13  5:29                                                 ` [PATCH 23/24] staging: winbond: " Ilia Mirkin
2011-03-13  5:29                                                   ` [PATCH 24/24] staging: wlan-ng: " Ilia Mirkin
2011-03-14 19:00                   ` Greg KH [this message]
2011-03-14 17:47       ` [PATCH 01/24] staging: ath6kl: " Luis R. Rodriguez
2011-02-24 16:08 ` [PATCH 1/2] staging: remove null checks " Steven Rostedt
2011-02-24 17:06   ` Greg KH
2011-02-24 17:25     ` Steven Rostedt
2011-02-24 19:08       ` Ilia Mirkin
2011-02-24 19:25         ` Steven Rostedt

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=20110314190000.GA28040@kroah.com \
    --to=greg@kroah.com \
    --cc=devel@driverdev.osuosl.org \
    --cc=gregkh@suse.de \
    --cc=imirkin@alum.mit.edu \
    --cc=linux-kernel@vger.kernel.org \
    /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