All of lore.kernel.org
 help / color / mirror / Atom feed
* [GIT PULL] fsi changes for v6.1
@ 2022-09-28  2:54 Joel Stanley
  2022-09-28  7:26 ` Greg KH
  0 siblings, 1 reply; 3+ messages in thread
From: Joel Stanley @ 2022-09-28  2:54 UTC (permalink / raw)
  To: Greg KH
  Cc: linux-fsi, Linux Kernel Mailing List, Guenter Roeck, Eddie James,
	Andrew Jeffery

Hello Greg,

Here are some FSI updates for v6.1. The hwmon changes have been acked
by the maintainer.

The following changes since commit 568035b01cfb107af8d2e4bd2fb9aea22cf5b868:

  Linux 6.0-rc1 (2022-08-14 15:50:18 -0700)

are available in the Git repository at:

  git://git.kernel.org/pub/scm/linux/kernel/git/joel/fsi.git tags/fsi-for-v6.1

for you to fetch changes up to 992a78d616f19144c14fd35011e4a5f5e506584f:

  fsi: core: Check error number after calling ida_simple_get
(2022-09-28 12:07:56 +0930)

----------------------------------------------------------------
FSI changes for v6.1

 * Fix a OCC hwmon userspace compatibility regression that was
   introduced in v5.19

 * Device tree bindings for the OCC

 * A bunch of janitor type fixes

----------------------------------------------------------------
Eddie James (7):
      fsi: occ: Fix checksum failure mode
      hwmon (occ): Retry for checksum failure
      fsi: occ: Prevent use after free
      dt-bindings: hwmon: Add IBM OCC bindings
      fsi: occ: Support probing the hwmon child device from dts node
      hwmon: (occ) Check for device property for setting OCC active during probe
      hwmon (occ): Fix response length in checksum retry

Jiasheng Jiang (1):
      fsi: core: Check error number after calling ida_simple_get

Joel Stanley (1):
      fsi: sbefifo: Add detailed debugging information

Luo Xueqin (1):
      fsi: Fix typo in comment

Lv Ruyi (1):
      fsi: master-ast-cf: Fix missing of_node_put in fsi_master_acf_probe

Tom Rix (1):
      fsi: cleanup extern usage in function definition

 drivers/fsi/fsi-master.h                           |  2 +-
 drivers/fsi/fsi-core.c                             | 11 ++--
 drivers/fsi/fsi-master-ast-cf.c                    |  2 +
 drivers/fsi/fsi-occ.c                              | 66 ++++++++++++++++++----
 drivers/fsi/fsi-sbefifo.c                          | 15 +++--
 drivers/hwmon/occ/common.c                         | 11 +++-
 drivers/hwmon/occ/p9_sbe.c                         | 26 +++++++--
 .../devicetree/bindings/hwmon/ibm,occ-hwmon.yaml   | 39 +++++++++++++
 8 files changed, 143 insertions(+), 29 deletions(-)
 create mode 100644 Documentation/devicetree/bindings/hwmon/ibm,occ-hwmon.yaml

^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: [GIT PULL] fsi changes for v6.1
  2022-09-28  2:54 [GIT PULL] fsi changes for v6.1 Joel Stanley
@ 2022-09-28  7:26 ` Greg KH
  2022-09-28 11:42   ` Joel Stanley
  0 siblings, 1 reply; 3+ messages in thread
From: Greg KH @ 2022-09-28  7:26 UTC (permalink / raw)
  To: Joel Stanley
  Cc: linux-fsi, Linux Kernel Mailing List, Guenter Roeck, Eddie James,
	Andrew Jeffery

On Wed, Sep 28, 2022 at 02:54:58AM +0000, Joel Stanley wrote:
> Hello Greg,
> 
> Here are some FSI updates for v6.1. The hwmon changes have been acked
> by the maintainer.
> 
> The following changes since commit 568035b01cfb107af8d2e4bd2fb9aea22cf5b868:
> 
>   Linux 6.0-rc1 (2022-08-14 15:50:18 -0700)
> 
> are available in the Git repository at:
> 
>   git://git.kernel.org/pub/scm/linux/kernel/git/joel/fsi.git tags/fsi-for-v6.1

One of the commits in here is wrong, I get the following error:

Commit: bb70829cf3c3 ("hwmon (occ): Fix response length in checksum retry")
	Fixes tag: Fixes: c27b98ca0edb ("hwmon (occ): Retry for checksum failure")
	Has these problem(s):
		- Target SHA1 does not exist

linux-next should have also warned you about this :(

thanks,

greg k-h

^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: [GIT PULL] fsi changes for v6.1
  2022-09-28  7:26 ` Greg KH
@ 2022-09-28 11:42   ` Joel Stanley
  0 siblings, 0 replies; 3+ messages in thread
From: Joel Stanley @ 2022-09-28 11:42 UTC (permalink / raw)
  To: Greg KH
  Cc: linux-fsi, Linux Kernel Mailing List, Guenter Roeck, Eddie James,
	Andrew Jeffery

On Wed, 28 Sept 2022 at 07:27, Greg KH <gregkh@linuxfoundation.org> wrote:
>
> On Wed, Sep 28, 2022 at 02:54:58AM +0000, Joel Stanley wrote:
> > Hello Greg,
> >
> > Here are some FSI updates for v6.1. The hwmon changes have been acked
> > by the maintainer.
> >
> > The following changes since commit 568035b01cfb107af8d2e4bd2fb9aea22cf5b868:
> >
> >   Linux 6.0-rc1 (2022-08-14 15:50:18 -0700)
> >
> > are available in the Git repository at:
> >
> >   git://git.kernel.org/pub/scm/linux/kernel/git/joel/fsi.git tags/fsi-for-v6.1
>
> One of the commits in here is wrong, I get the following error:
>
> Commit: bb70829cf3c3 ("hwmon (occ): Fix response length in checksum retry")
>         Fixes tag: Fixes: c27b98ca0edb ("hwmon (occ): Retry for checksum failure")
>         Has these problem(s):
>                 - Target SHA1 does not exist

Thanks for pointing that out. I'll send a new tag for you to pull.

Cheers,

Joel

^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2022-09-28 11:42 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-09-28  2:54 [GIT PULL] fsi changes for v6.1 Joel Stanley
2022-09-28  7:26 ` Greg KH
2022-09-28 11:42   ` Joel Stanley

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.