* [GIT PULL] VME Subsystem patches for 4.14-rc4
@ 2017-10-13 21:09 Martyn Welch
2017-10-14 12:08 ` Greg Kroah-Hartman
2017-10-20 13:25 ` Greg Kroah-Hartman
0 siblings, 2 replies; 4+ messages in thread
From: Martyn Welch @ 2017-10-13 21:09 UTC (permalink / raw)
To: Greg Kroah-Hartman
Cc: Linux Driver Project Developer List, LKML, Martyn Welch
The following changes since commit 8a5776a5f49812d29fe4b2d0a2d71675c3facf3f:
Linux 4.14-rc4 (2017-10-08 20:53:29 -0700)
are available in the git repository at:
https://gitlab.collabora.com/martyn/linux.git tags/vme-next-4.14-rc4
for you to fetch changes up to a75dc630086a6b83d780a7b27d03c4c0abdf0807:
vme: tsi148: Adjust 14 checks for null pointers (2017-10-13 21:32:04 +0100)
----------------------------------------------------------------
VME Subsystem changes for master v4.14-rc4:
- Corrections across the VME subsystem to better align with the preferred
kernel coding style.
----------------------------------------------------------------
Markus Elfring (14):
vme: Delete 11 error messages for a failed memory allocation
vme: Improve 11 size determinations
vme: Move an assignment in vme_new_dma_list()
vme: Adjust 48 checks for null pointers
vme: Return directly in two functions
vme: fake: Delete an error message for a failed memory allocation in fake_init()
vme: fake: Improve five size determinations in fake_init()
vme: fake: Adjust 11 checks for null pointers
vme: ca91cx42: Delete eight error messages for a failed memory allocation
vme: ca91cx42: Improve 12 size determinations
vme: ca91cx42: Adjust 14 checks for null pointers
vme: tsi148: Delete nine error messages for a failed memory allocation
vme: tsi148: Improve 17 size determinations
vme: tsi148: Adjust 14 checks for null pointers
drivers/vme/bridges/vme_ca91cx42.c | 73 +++++---------
drivers/vme/bridges/vme_fake.c | 35 +++----
drivers/vme/bridges/vme_tsi148.c | 83 ++++++----------
drivers/vme/vme.c | 194 ++++++++++++++++---------------------
4 files changed, 157 insertions(+), 228 deletions(-)
^ permalink raw reply [flat|nested] 4+ messages in thread* Re: [GIT PULL] VME Subsystem patches for 4.14-rc4
2017-10-13 21:09 [GIT PULL] VME Subsystem patches for 4.14-rc4 Martyn Welch
@ 2017-10-14 12:08 ` Greg Kroah-Hartman
2017-10-14 13:05 ` Martyn Welch
2017-10-20 13:25 ` Greg Kroah-Hartman
1 sibling, 1 reply; 4+ messages in thread
From: Greg Kroah-Hartman @ 2017-10-14 12:08 UTC (permalink / raw)
To: Martyn Welch; +Cc: Linux Driver Project Developer List, LKML
On Fri, Oct 13, 2017 at 10:09:19PM +0100, Martyn Welch wrote:
> The following changes since commit 8a5776a5f49812d29fe4b2d0a2d71675c3facf3f:
>
> Linux 4.14-rc4 (2017-10-08 20:53:29 -0700)
>
> are available in the git repository at:
>
> https://gitlab.collabora.com/martyn/linux.git tags/vme-next-4.14-rc4
>
> for you to fetch changes up to a75dc630086a6b83d780a7b27d03c4c0abdf0807:
>
> vme: tsi148: Adjust 14 checks for null pointers (2017-10-13 21:32:04 +0100)
>
> ----------------------------------------------------------------
> VME Subsystem changes for master v4.14-rc4:
>
> - Corrections across the VME subsystem to better align with the preferred
> kernel coding style.
>
> ----------------------------------------------------------------
> Markus Elfring (14):
> vme: Delete 11 error messages for a failed memory allocation
> vme: Improve 11 size determinations
> vme: Move an assignment in vme_new_dma_list()
> vme: Adjust 48 checks for null pointers
> vme: Return directly in two functions
> vme: fake: Delete an error message for a failed memory allocation in fake_init()
> vme: fake: Improve five size determinations in fake_init()
> vme: fake: Adjust 11 checks for null pointers
> vme: ca91cx42: Delete eight error messages for a failed memory allocation
> vme: ca91cx42: Improve 12 size determinations
> vme: ca91cx42: Adjust 14 checks for null pointers
> vme: tsi148: Delete nine error messages for a failed memory allocation
> vme: tsi148: Improve 17 size determinations
> vme: tsi148: Adjust 14 checks for null pointers
>
> drivers/vme/bridges/vme_ca91cx42.c | 73 +++++---------
> drivers/vme/bridges/vme_fake.c | 35 +++----
> drivers/vme/bridges/vme_tsi148.c | 83 ++++++----------
> drivers/vme/vme.c | 194 ++++++++++++++++---------------------
> 4 files changed, 157 insertions(+), 228 deletions(-)
None of these are bugfixes for 4.14-final, right? They should all be
delayed until 4.15-rc1?
thanks,
greg k-h
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [GIT PULL] VME Subsystem patches for 4.14-rc4
2017-10-14 12:08 ` Greg Kroah-Hartman
@ 2017-10-14 13:05 ` Martyn Welch
0 siblings, 0 replies; 4+ messages in thread
From: Martyn Welch @ 2017-10-14 13:05 UTC (permalink / raw)
To: Greg Kroah-Hartman; +Cc: Linux Driver Project Developer List, LKML
On Sat, 2017-10-14 at 14:08 +0200, Greg Kroah-Hartman wrote:
> On Fri, Oct 13, 2017 at 10:09:19PM +0100, Martyn Welch wrote:
> > The following changes since commit 8a5776a5f49812d29fe4b2d0a2d71675c3facf3f:
> >
> > Linux 4.14-rc4 (2017-10-08 20:53:29 -0700)
> >
> > are available in the git repository at:
> >
> > https://gitlab.collabora.com/martyn/linux.git tags/vme-next-4.14-rc4
> >
> > for you to fetch changes up to a75dc630086a6b83d780a7b27d03c4c0abdf0807:
> >
> > vme: tsi148: Adjust 14 checks for null pointers (2017-10-13 21:32:04 +0100)
> >
> > ----------------------------------------------------------------
> > VME Subsystem changes for master v4.14-rc4:
> >
> > - Corrections across the VME subsystem to better align with the preferred
> > kernel coding style.
> >
> > ----------------------------------------------------------------
> > Markus Elfring (14):
> > vme: Delete 11 error messages for a failed memory allocation
> > vme: Improve 11 size determinations
> > vme: Move an assignment in vme_new_dma_list()
> > vme: Adjust 48 checks for null pointers
> > vme: Return directly in two functions
> > vme: fake: Delete an error message for a failed memory allocation in fake_init()
> > vme: fake: Improve five size determinations in fake_init()
> > vme: fake: Adjust 11 checks for null pointers
> > vme: ca91cx42: Delete eight error messages for a failed memory allocation
> > vme: ca91cx42: Improve 12 size determinations
> > vme: ca91cx42: Adjust 14 checks for null pointers
> > vme: tsi148: Delete nine error messages for a failed memory allocation
> > vme: tsi148: Improve 17 size determinations
> > vme: tsi148: Adjust 14 checks for null pointers
> >
> > drivers/vme/bridges/vme_ca91cx42.c | 73 +++++---------
> > drivers/vme/bridges/vme_fake.c | 35 +++----
> > drivers/vme/bridges/vme_tsi148.c | 83 ++++++----------
> > drivers/vme/vme.c | 194 ++++++++++++++++---------------------
> > 4 files changed, 157 insertions(+), 228 deletions(-)
>
> None of these are bugfixes for 4.14-final, right? They should all be
> delayed until 4.15-rc1?
>
Yeah, 4.15-rc1.
Thanks
Martyn
> thanks,
>
> greg k-h
> _______________________________________________
> devel mailing list
> devel@linuxdriverproject.org
> http://driverdev.linuxdriverproject.org/mailman/listinfo/driverdev-devel
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [GIT PULL] VME Subsystem patches for 4.14-rc4
2017-10-13 21:09 [GIT PULL] VME Subsystem patches for 4.14-rc4 Martyn Welch
2017-10-14 12:08 ` Greg Kroah-Hartman
@ 2017-10-20 13:25 ` Greg Kroah-Hartman
1 sibling, 0 replies; 4+ messages in thread
From: Greg Kroah-Hartman @ 2017-10-20 13:25 UTC (permalink / raw)
To: Martyn Welch; +Cc: Linux Driver Project Developer List, LKML
On Fri, Oct 13, 2017 at 10:09:19PM +0100, Martyn Welch wrote:
> The following changes since commit 8a5776a5f49812d29fe4b2d0a2d71675c3facf3f:
>
> Linux 4.14-rc4 (2017-10-08 20:53:29 -0700)
>
> are available in the git repository at:
>
> https://gitlab.collabora.com/martyn/linux.git tags/vme-next-4.14-rc4
Pulled and pushed out now, thanks.
greg k-h
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2017-10-20 13:25 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2017-10-13 21:09 [GIT PULL] VME Subsystem patches for 4.14-rc4 Martyn Welch
2017-10-14 12:08 ` Greg Kroah-Hartman
2017-10-14 13:05 ` Martyn Welch
2017-10-20 13:25 ` Greg Kroah-Hartman
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.