linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
From: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
To: linux-kernel@vger.kernel.org
Cc: Greg Kroah-Hartman <gregkh@linuxfoundation.org>,
	Aditya Pakki <pakki001@umn.edu>,
	Alexandre Belloni <alexandre.belloni@bootlin.com>,
	"David S . Miller" <davem@davemloft.net>,
	Jacek Anaszewski <jacek.anaszewski@gmail.com>,
	Kalle Valo <kvalo@codeaurora.org>, Kangjie Lu <kjlu@umn.edu>,
	Mark Brown <broonie@kernel.org>, Qiushi Wu <wu000273@umn.edu>,
	Wenwen Wang <wang6495@umn.edu>
Subject: [PATCH 0/7] Second set of revertion of all of the umn.edu commits
Date: Thu, 29 Apr 2021 15:08:04 +0200	[thread overview]
Message-ID: <20210429130811.3353369-1-gregkh@linuxfoundation.org> (raw)

Like the first set of 190 patches submitted here:
	https://lore.kernel.org/r/20210421130105.1226686-1-gregkh@linuxfoundation.org

I am working through all of the patches submitted by umn.edu email
addresses.  The remaining 79 set of patches that did not automatically
revert with git were looked at, and these are the remaining ones where a
revert was actually possible.  The other 72 commits did not need to be
listed at the moment as they fell into other categories (were already
fixed, applied to files not in the tree anymore, modified such that they
were no longer relevant, etc.)

The full report of all of this audit is currently being worked on by me
and other members of the LF Technical Advisarory Board, and will be
published when completed.

This remaining set of patches is to provide a public review of them, and
to determine if they are valid or not.  If the commit was valid, I'll
drop it from my list of reverts, if the commit was not correct, I'll
keep the revert and provide a "correct" fix for the issue as well.

The final set of "reverts of bad + correct patches" will be posted to
lkml and maintainers when all of this is completed.  Hopefully sometime
next week, but I'm not promising anything :)

Maintainers, if you could take a look at these and see if the original
was a valid commit or not, that would be most appreciated.  I'll be also
doing a review of them as well.

Thanks all for your help with this unexpected extra work...

greg k-h

Greg Kroah-Hartman (7):
  Revert "rocker: fix incorrect error handling in dma_rings_init"
  Revert "rtc: mc13xxx: fix a double-unlock issue"
  Revert "orinoco: avoid assertion in case of NULL pointer"
  Revert "ethtool: fix a potential missing-check bug"
  Revert "regulator: tps65910: fix a missing check of return value"
  Revert "leds: lp5523: fix a missing check of return value of
    lp55xx_read"
  Revert "serial: max310x: pass return value of spi_register_driver"

 drivers/leds/leds-lp5523.c                          | 4 +---
 drivers/net/ethernet/rocker/rocker_main.c           | 4 ++--
 drivers/net/wireless/intersil/orinoco/orinoco_usb.c | 3 +--
 drivers/regulator/tps65910-regulator.c              | 4 +---
 drivers/rtc/rtc-mc13xxx.c                           | 4 +---
 drivers/tty/serial/max310x.c                        | 4 ++--
 net/ethtool/ioctl.c                                 | 5 -----
 7 files changed, 8 insertions(+), 20 deletions(-)

-- 
2.31.1


             reply	other threads:[~2021-04-29 13:08 UTC|newest]

Thread overview: 19+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2021-04-29 13:08 Greg Kroah-Hartman [this message]
2021-04-29 13:08 ` [PATCH 1/7] Revert "rocker: fix incorrect error handling in dma_rings_init" Greg Kroah-Hartman
2021-04-29 13:54   ` Greg Kroah-Hartman
2021-04-29 19:30   ` Pavel Machek
2021-04-29 13:08 ` [PATCH 2/7] Revert "rtc: mc13xxx: fix a double-unlock issue" Greg Kroah-Hartman
2021-04-29 13:52   ` Greg Kroah-Hartman
2021-04-29 13:08 ` [PATCH 3/7] Revert "orinoco: avoid assertion in case of NULL pointer" Greg Kroah-Hartman
2021-04-29 13:50   ` Greg Kroah-Hartman
2021-04-29 13:08 ` [PATCH 4/7] Revert "ethtool: fix a potential missing-check bug" Greg Kroah-Hartman
2021-04-29 13:48   ` Greg Kroah-Hartman
2021-04-29 13:08 ` [PATCH 5/7] Revert "regulator: tps65910: fix a missing check of return value" Greg Kroah-Hartman
2021-04-29 13:47   ` Greg Kroah-Hartman
2021-04-29 13:08 ` [PATCH 6/7] Revert "leds: lp5523: fix a missing check of return value of lp55xx_read" Greg Kroah-Hartman
2021-04-29 13:44   ` Greg Kroah-Hartman
2021-04-29 14:12     ` Greg Kroah-Hartman
2021-04-29 13:08 ` [PATCH 7/7] Revert "serial: max310x: pass return value of spi_register_driver" Greg Kroah-Hartman
2021-04-29 13:41   ` Greg Kroah-Hartman
2021-04-29 14:12     ` Greg Kroah-Hartman
2021-04-29 19:28 ` [PATCH 0/7] Second set of revertion of all of the umn.edu commits Pavel Machek

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=20210429130811.3353369-1-gregkh@linuxfoundation.org \
    --to=gregkh@linuxfoundation.org \
    --cc=alexandre.belloni@bootlin.com \
    --cc=broonie@kernel.org \
    --cc=davem@davemloft.net \
    --cc=jacek.anaszewski@gmail.com \
    --cc=kjlu@umn.edu \
    --cc=kvalo@codeaurora.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=pakki001@umn.edu \
    --cc=wang6495@umn.edu \
    --cc=wu000273@umn.edu \
    /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;
as well as URLs for NNTP newsgroup(s).