From: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
To: Christophe Leroy <christophe.leroy@csgroup.eu>
Cc: "j.granados@samsung.com" <j.granados@samsung.com>,
"Jason A. Donenfeld" <Jason@zx2c4.com>,
Steve Wahl <steve.wahl@hpe.com>,
Clemens Ladisch <clemens@ladisch.de>,
"linux-hyperv@vger.kernel.org" <linux-hyperv@vger.kernel.org>,
"dri-devel@lists.freedesktop.org"
<dri-devel@lists.freedesktop.org>,
Phillip Potter <phil@philpotter.co.uk>,
Song Liu <song@kernel.org>, Eric Dumazet <edumazet@google.com>,
"K. Y. Srinivasan" <kys@microsoft.com>,
Jiri Slaby <jirislaby@kernel.org>,
Russ Weight <russell.h.weight@intel.com>,
Wei Liu <wei.liu@kernel.org>,
Stefano Stabellini <sstabellini@kernel.org>,
Corey Minyard <minyard@acm.org>,
Leon Romanovsky <leon@kernel.org>,
"linux-rdma@vger.kernel.org" <linux-rdma@vger.kernel.org>,
David Airlie <airlied@gmail.com>,
"Rafael J. Wysocki" <rafael@kernel.org>,
Dexuan Cui <decui@microsoft.com>,
"willy@infradead.org" <willy@infradead.org>,
Jason Gunthorpe <jgg@ziepe.ca>,
"linux-serial@vger.kernel.org" <linux-serial@vger.kernel.org>,
Doug Gilbert <dgilbert@interlog.com>,
Jakub Kicinski <kuba@kernel.org>, Paolo Abeni <pabeni@redhat.com>,
Haiyang Zhang <haiyangz@microsoft.com>,
Kees Cook <keescook@chromium.org>, Arnd Bergmann <arnd@arndb.de>,
"linux-kernel@vger.kernel.org" <linux-kernel@vger.kernel.org>,
"James E.J. Bottomley" <jejb@linux.ibm.com>,
"josh@joshtriplett.org" <josh@joshtriplett.org>,
"linux-raid@vger.kernel.org" <linux-raid@vger.kernel.org>,
Rodrigo Vivi <rodrigo.vivi@intel.com>,
"xen-devel@lists.xenproject.org" <xen-devel@lists.xenproject.org>,
"openipmi-developer@lists.sourceforge.net"
<openipmi-developer@lists.sourceforge.net>,
Juergen Gross <jgross@suse.com>, Theodore Ts'o <tytso@mit.edu>,
"linux-scsi@vger.kernel.org" <linux-scsi@vger.kernel.org>,
"Martin K. Petersen" <martin.petersen@oracle.com>,
"netdev@vger.kernel.org" <netdev@vger.kernel.org>,
David Ahern <dsahern@kernel.org>,
"linuxppc-dev@lists.ozlabs.org" <linuxppc-dev@lists.ozlabs.org>,
Robin Holt <robinmholt@gmail.com>,
"David S. Miller" <davem@davemloft.net>,
Oleksandr Tyshchenko <oleksandr_tyshchenko@epam.com>,
Luis Chamberlain <mcgrof@kernel.org>,
Daniel Vetter <daniel@ffwll.ch>,
"intel-gfx@lists.freedesktop.org"
<intel-gfx@lists.freedesktop.org>,
Sudip Mukherjee <sudipm.mukherjee@gmail.com>
Subject: Re: [Intel-gfx] [PATCH 04/15] tty: Remove now superfluous sentinel element from ctl_table array
Date: Mon, 2 Oct 2023 11:02:38 +0200 [thread overview]
Message-ID: <2023100252-plod-user-4504@gregkh> (raw)
In-Reply-To: <4d7bf39e-e7f9-f497-13aa-73718456a653@csgroup.eu>
On Mon, Oct 02, 2023 at 08:47:53AM +0000, Christophe Leroy wrote:
>
>
> Le 02/10/2023 à 10:17, Jiri Slaby a écrit :
> > On 28. 09. 23, 15:21, Joel Granados via B4 Relay wrote:
> >> From: Joel Granados <j.granados@samsung.com>
> >>
> >> This commit comes at the tail end of a greater effort to remove the
> >> empty elements at the end of the ctl_table arrays (sentinels) which
> >> will reduce the overall build time size of the kernel and run time
> >> memory bloat by ~64 bytes per sentinel (further information Link :
> >> https://lore.kernel.org/all/ZO5Yx5JFogGi%2FcBo@bombadil.infradead.org/)
> >>
> >> Remove sentinel from tty_table
> >>
> >> Signed-off-by: Joel Granados <j.granados@samsung.com>
> >> ---
> >> drivers/tty/tty_io.c | 3 +--
> >> 1 file changed, 1 insertion(+), 2 deletions(-)
> >>
> >> diff --git a/drivers/tty/tty_io.c b/drivers/tty/tty_io.c
> >> index 8a94e5a43c6d..2f925dc54a20 100644
> >> --- a/drivers/tty/tty_io.c
> >> +++ b/drivers/tty/tty_io.c
> >> @@ -3607,8 +3607,7 @@ static struct ctl_table tty_table[] = {
> >> .proc_handler = proc_dointvec,
> >> .extra1 = SYSCTL_ZERO,
> >> .extra2 = SYSCTL_ONE,
> >> - },
> >> - { }
> >> + }
> >
> > Why to remove the comma? One would need to add one when adding a new entry?
>
> Does it make any difference at all ?
>
> In one case you have:
>
> @xxxx
> something old,
> },
> + {
> + something new,
> + },
> }
>
> In the other case you have:
>
> @xxxx
> something old,
> + },
> + {
> + something new,
> }
> }
Because that way it is obvious you are only touching the "something new"
lines and never have to touch the "something old" ones.
It's just a long-standing tradition in Linux, don't have an extra
character if you don't need it :)
thanks,
greg k-h
WARNING: multiple messages have this Message-ID (diff)
From: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
To: Christophe Leroy <christophe.leroy@csgroup.eu>
Cc: Jiri Slaby <jirislaby@kernel.org>,
"j.granados@samsung.com" <j.granados@samsung.com>,
Luis Chamberlain <mcgrof@kernel.org>,
"willy@infradead.org" <willy@infradead.org>,
"josh@joshtriplett.org" <josh@joshtriplett.org>,
Kees Cook <keescook@chromium.org>,
Phillip Potter <phil@philpotter.co.uk>,
Clemens Ladisch <clemens@ladisch.de>,
Arnd Bergmann <arnd@arndb.de>, Juergen Gross <jgross@suse.com>,
Stefano Stabellini <sstabellini@kernel.org>,
Oleksandr Tyshchenko <oleksandr_tyshchenko@epam.com>,
"James E.J. Bottomley" <jejb@linux.ibm.com>,
"Martin K. Petersen" <martin.petersen@oracle.com>,
Doug Gilbert <dgilbert@interlog.com>,
Sudip Mukherjee <sudipm.mukherjee@gmail.com>,
Jason Gunthorpe <jgg@ziepe.ca>, Leon Romanovsky <leon@kernel.org>,
Corey Minyard <minyard@acm.org>, Theodore Ts'o <tytso@mit.edu>,
"Jason A. Donenfeld" <Jason@zx2c4.com>,
David Ahern <dsahern@kernel.org>,
"David S. Miller" <davem@davemloft.net>,
Eric Dumazet <edumazet@google.com>,
Jakub Kicinski <kuba@kernel.org>, Paolo Abeni <pabeni@redhat.com>,
Robin Holt <robinmholt@gmail.com>,
Steve Wahl <steve.wahl@hpe.com>,
Russ Weight <russell.h.weight@intel.com>,
"Rafael J. Wysocki" <rafael@kernel.org>,
Song Liu <song@kernel.org>,
"K. Y. Srinivasan" <kys@microsoft.com>,
Haiyang Zhang <haiyangz@microsoft.com>,
Wei Liu <wei.liu@kernel.org>, Dexuan Cui <decui@microsoft.com>,
Jani Nikula <jani.nikula@linux.intel.com>,
Joonas Lahtinen <joonas.lahtinen@linux.intel.com>,
Rodrigo Vivi <rodrigo.vivi@intel.com>,
Tvrtko Ursulin <tvrtko.ursulin@linux.intel.com>,
David Airlie <airlied@gmail.com>, Daniel Vetter <daniel@ffwll.ch>,
"linux-hyperv@vger.kernel.org" <linux-hyperv@vger.kernel.org>,
"linux-scsi@vger.kernel.org" <linux-scsi@vger.kernel.org>,
"linux-rdma@vger.kernel.org" <linux-rdma@vger.kernel.org>,
"netdev@vger.kernel.org" <netdev@vger.kernel.org>,
"intel-gfx@lists.freedesktop.org"
<intel-gfx@lists.freedesktop.org>,
"linux-kernel@vger.kernel.org" <linux-kernel@vger.kernel.org>,
"dri-devel@lists.freedesktop.org"
<dri-devel@lists.freedesktop.org>,
"linux-raid@vger.kernel.org" <linux-raid@vger.kernel.org>,
"linux-serial@vger.kernel.org" <linux-serial@vger.kernel.org>,
"xen-devel@lists.xenproject.org" <xen-devel@lists.xenproject.org>,
"openipmi-developer@lists.sourceforge.net"
<openipmi-developer@lists.sourceforge.net>,
"linuxppc-dev@lists.ozlabs.org" <linuxppc-dev@lists.ozlabs.org>
Subject: Re: [PATCH 04/15] tty: Remove now superfluous sentinel element from ctl_table array
Date: Mon, 2 Oct 2023 11:02:38 +0200 [thread overview]
Message-ID: <2023100252-plod-user-4504@gregkh> (raw)
In-Reply-To: <4d7bf39e-e7f9-f497-13aa-73718456a653@csgroup.eu>
On Mon, Oct 02, 2023 at 08:47:53AM +0000, Christophe Leroy wrote:
>
>
> Le 02/10/2023 à 10:17, Jiri Slaby a écrit :
> > On 28. 09. 23, 15:21, Joel Granados via B4 Relay wrote:
> >> From: Joel Granados <j.granados@samsung.com>
> >>
> >> This commit comes at the tail end of a greater effort to remove the
> >> empty elements at the end of the ctl_table arrays (sentinels) which
> >> will reduce the overall build time size of the kernel and run time
> >> memory bloat by ~64 bytes per sentinel (further information Link :
> >> https://lore.kernel.org/all/ZO5Yx5JFogGi%2FcBo@bombadil.infradead.org/)
> >>
> >> Remove sentinel from tty_table
> >>
> >> Signed-off-by: Joel Granados <j.granados@samsung.com>
> >> ---
> >> drivers/tty/tty_io.c | 3 +--
> >> 1 file changed, 1 insertion(+), 2 deletions(-)
> >>
> >> diff --git a/drivers/tty/tty_io.c b/drivers/tty/tty_io.c
> >> index 8a94e5a43c6d..2f925dc54a20 100644
> >> --- a/drivers/tty/tty_io.c
> >> +++ b/drivers/tty/tty_io.c
> >> @@ -3607,8 +3607,7 @@ static struct ctl_table tty_table[] = {
> >> .proc_handler = proc_dointvec,
> >> .extra1 = SYSCTL_ZERO,
> >> .extra2 = SYSCTL_ONE,
> >> - },
> >> - { }
> >> + }
> >
> > Why to remove the comma? One would need to add one when adding a new entry?
>
> Does it make any difference at all ?
>
> In one case you have:
>
> @xxxx
> something old,
> },
> + {
> + something new,
> + },
> }
>
> In the other case you have:
>
> @xxxx
> something old,
> + },
> + {
> + something new,
> }
> }
Because that way it is obvious you are only touching the "something new"
lines and never have to touch the "something old" ones.
It's just a long-standing tradition in Linux, don't have an extra
character if you don't need it :)
thanks,
greg k-h
WARNING: multiple messages have this Message-ID (diff)
From: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
To: Christophe Leroy <christophe.leroy@csgroup.eu>
Cc: "j.granados@samsung.com" <j.granados@samsung.com>,
"Jason A. Donenfeld" <Jason@zx2c4.com>,
Steve Wahl <steve.wahl@hpe.com>,
Joonas Lahtinen <joonas.lahtinen@linux.intel.com>,
Clemens Ladisch <clemens@ladisch.de>,
"linux-hyperv@vger.kernel.org" <linux-hyperv@vger.kernel.org>,
"dri-devel@lists.freedesktop.org"
<dri-devel@lists.freedesktop.org>,
Phillip Potter <phil@philpotter.co.uk>,
Song Liu <song@kernel.org>, Eric Dumazet <edumazet@google.com>,
"K. Y. Srinivasan" <kys@microsoft.com>,
Jiri Slaby <jirislaby@kernel.org>,
Russ Weight <russell.h.weight@intel.com>,
Wei Liu <wei.liu@kernel.org>,
Stefano Stabellini <sstabellini@kernel.org>,
Corey Minyard <minyard@acm.org>,
Leon Romanovsky <leon@kernel.org>,
"linux-rdma@vger.kernel.org" <linux-rdma@vger.kernel.org>,
David Airlie <airlied@gmail.com>,
"Rafael J. Wysocki" <rafael@kernel.org>,
Dexuan Cui <decui@microsoft.com>,
"willy@infradead.org" <willy@infradead.org>,
Jason Gunthorpe <jgg@ziepe.ca>,
"linux-serial@vger.kernel.org" <linux-se rial@vger.kernel.org>,
Doug Gilbert <dgilbert@interlog.com>,
Jakub Kicinski <kuba@kernel.org>, Paolo Abeni <pabeni@redhat.com>,
Haiyang Zhang <haiyangz@microsoft.com>,
Kees Cook <keescook@chromium.org>, Arnd Bergmann <arnd@arndb.de>,
"linux-kernel@vger.kernel.org" <linux-kernel@vger.kernel.org>,
"James E.J. Bottomley" <jejb@linux.ibm.com>,
"josh@joshtriplett.org" <josh@joshtriplett.org>,
Jani Nikula <jani.nikula@linux.intel.com>,
"linux-raid@vger.kernel.org" <linux-raid@vger.kernel.org>,
Rodrigo Vivi <rodrigo.vivi@intel.com>,
"xen-devel@lists.xenproject.org" <xen-devel@lists.xenproject.org>,
"openipmi-developer@lists.sourceforge.net"
<openipmi-developer@lists.sourceforge.net>,
Juergen Gross <jgross@suse.com>,
Tvrtko Ursulin <tvrtko.ursulin@linux.intel.com>,
Theodore Ts'o <tytso@mit.edu>,
"linux-scsi@vger.kernel.org" <linux-scsi@vger.kernel.org>,
"Martin K. Petersen" <martin.petersen@oracle.com>,
"netdev@vger.kernel.org" <netdev@vger.kernel.org>,
David Ahern <dsahern@kernel.org>,
"li nuxppc-dev@lists.ozlabs.org" <linuxppc-dev@lists.ozlabs.org>,
Robin Holt <robinmholt@gmail.com>,
"David S. Miller" <davem@davemloft.net>,
Oleksandr Tyshchenko <oleksandr_tyshchenko@epam.com>,
Luis Chamberlain <mcgrof@kernel.org>,
Daniel Vetter <daniel@ffwll.ch>,
"intel-gfx@lists.freedesktop.org"
<intel-gfx@lists.freedesktop.org>,
Sudip Mukherjee <sudipm.mukherjee@gmail.com>
Subject: Re: [PATCH 04/15] tty: Remove now superfluous sentinel element from ctl_table array
Date: Mon, 2 Oct 2023 11:02:38 +0200 [thread overview]
Message-ID: <2023100252-plod-user-4504@gregkh> (raw)
In-Reply-To: <4d7bf39e-e7f9-f497-13aa-73718456a653@csgroup.eu>
On Mon, Oct 02, 2023 at 08:47:53AM +0000, Christophe Leroy wrote:
>
>
> Le 02/10/2023 à 10:17, Jiri Slaby a écrit :
> > On 28. 09. 23, 15:21, Joel Granados via B4 Relay wrote:
> >> From: Joel Granados <j.granados@samsung.com>
> >>
> >> This commit comes at the tail end of a greater effort to remove the
> >> empty elements at the end of the ctl_table arrays (sentinels) which
> >> will reduce the overall build time size of the kernel and run time
> >> memory bloat by ~64 bytes per sentinel (further information Link :
> >> https://lore.kernel.org/all/ZO5Yx5JFogGi%2FcBo@bombadil.infradead.org/)
> >>
> >> Remove sentinel from tty_table
> >>
> >> Signed-off-by: Joel Granados <j.granados@samsung.com>
> >> ---
> >> drivers/tty/tty_io.c | 3 +--
> >> 1 file changed, 1 insertion(+), 2 deletions(-)
> >>
> >> diff --git a/drivers/tty/tty_io.c b/drivers/tty/tty_io.c
> >> index 8a94e5a43c6d..2f925dc54a20 100644
> >> --- a/drivers/tty/tty_io.c
> >> +++ b/drivers/tty/tty_io.c
> >> @@ -3607,8 +3607,7 @@ static struct ctl_table tty_table[] = {
> >> .proc_handler = proc_dointvec,
> >> .extra1 = SYSCTL_ZERO,
> >> .extra2 = SYSCTL_ONE,
> >> - },
> >> - { }
> >> + }
> >
> > Why to remove the comma? One would need to add one when adding a new entry?
>
> Does it make any difference at all ?
>
> In one case you have:
>
> @xxxx
> something old,
> },
> + {
> + something new,
> + },
> }
>
> In the other case you have:
>
> @xxxx
> something old,
> + },
> + {
> + something new,
> }
> }
Because that way it is obvious you are only touching the "something new"
lines and never have to touch the "something old" ones.
It's just a long-standing tradition in Linux, don't have an extra
character if you don't need it :)
thanks,
greg k-h
WARNING: multiple messages have this Message-ID (diff)
From: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
To: Christophe Leroy <christophe.leroy@csgroup.eu>
Cc: "j.granados@samsung.com" <j.granados@samsung.com>,
"Jason A. Donenfeld" <Jason@zx2c4.com>,
Steve Wahl <steve.wahl@hpe.com>,
Clemens Ladisch <clemens@ladisch.de>,
"linux-hyperv@vger.kernel.org" <linux-hyperv@vger.kernel.org>,
"dri-devel@lists.freedesktop.org"
<dri-devel@lists.freedesktop.org>,
Phillip Potter <phil@philpotter.co.uk>,
Song Liu <song@kernel.org>, Eric Dumazet <edumazet@google.com>,
"K. Y. Srinivasan" <kys@microsoft.com>,
Jiri Slaby <jirislaby@kernel.org>,
Russ Weight <russell.h.weight@intel.com>,
Wei Liu <wei.liu@kernel.org>,
Stefano Stabellini <sstabellini@kernel.org>,
Corey Minyard <minyard@acm.org>,
Leon Romanovsky <leon@kernel.org>,
"linux-rdma@vger.kernel.org" <linux-rdma@vger.kernel.org>,
"Rafael J. Wysocki" <rafael@kernel.org>,
Dexuan Cui <decui@microsoft.com>,
"willy@infradead.org" <willy@infradead.org>,
Jason Gunthorpe <jgg@ziepe.ca>,
"linux-serial@vger.kernel.org" <linux-serial@vger.kernel.org>,
Doug Gilbert <dgilbert@interlog.com>,
Jakub Kicinski <kuba@kernel.org>, Paolo Abeni <pabeni@redhat.com>,
Haiyang Zhang <haiyangz@microsoft.com>,
Kees Cook <keescook@chromium.org>, Arnd Bergmann <arnd@arndb.de>,
"linux-kernel@vger.kernel.org" <linux-kernel@vger.kernel.org>,
"James E.J. Bottomley" <jejb@linux.ibm.com>,
"josh@joshtriplett.org" <josh@joshtriplett.org>,
"linux-raid@vger.kernel.org" <linux-raid@vger.kernel.org>,
Rodrigo Vivi <rodrigo.vivi@intel.com>,
"xen-devel@lists.xenproject.org" <xen-devel@lists.xenproject.org>,
"openipmi-developer@lists.sourceforge.net"
<openipmi-developer@lists.sourceforge.net>,
Juergen Gross <jgross@suse.com>,
Tvrtko Ursulin <tvrtko.ursulin@linux.intel.com>,
Theodore Ts'o <tytso@mit.edu>,
"linux-scsi@vger.kernel.org" <linux-scsi@vger.kernel.org>,
"Martin K. Petersen" <martin.petersen@oracle.com>,
"netdev@vger.kernel.org" <netdev@vger.kernel.org>,
David Ahern <dsahern@kernel.org>,
"linuxppc-dev@lists.ozlabs.org" <linuxppc-dev@lists.ozlabs.org>,
Robin Holt <robinmholt@gmail.com>,
"David S. Miller" <davem@davemloft.net>,
Oleksandr Tyshchenko <oleksandr_tyshchenko@epam.com>,
Luis Chamberlain <mcgrof@kernel.org>,
"intel-gfx@lists.freedesktop.org"
<intel-gfx@lists.freedesktop.org>,
Sudip Mukherjee <sudipm.mukherjee@gmail.com>
Subject: Re: [PATCH 04/15] tty: Remove now superfluous sentinel element from ctl_table array
Date: Mon, 2 Oct 2023 11:02:38 +0200 [thread overview]
Message-ID: <2023100252-plod-user-4504@gregkh> (raw)
In-Reply-To: <4d7bf39e-e7f9-f497-13aa-73718456a653@csgroup.eu>
On Mon, Oct 02, 2023 at 08:47:53AM +0000, Christophe Leroy wrote:
>
>
> Le 02/10/2023 à 10:17, Jiri Slaby a écrit :
> > On 28. 09. 23, 15:21, Joel Granados via B4 Relay wrote:
> >> From: Joel Granados <j.granados@samsung.com>
> >>
> >> This commit comes at the tail end of a greater effort to remove the
> >> empty elements at the end of the ctl_table arrays (sentinels) which
> >> will reduce the overall build time size of the kernel and run time
> >> memory bloat by ~64 bytes per sentinel (further information Link :
> >> https://lore.kernel.org/all/ZO5Yx5JFogGi%2FcBo@bombadil.infradead.org/)
> >>
> >> Remove sentinel from tty_table
> >>
> >> Signed-off-by: Joel Granados <j.granados@samsung.com>
> >> ---
> >> drivers/tty/tty_io.c | 3 +--
> >> 1 file changed, 1 insertion(+), 2 deletions(-)
> >>
> >> diff --git a/drivers/tty/tty_io.c b/drivers/tty/tty_io.c
> >> index 8a94e5a43c6d..2f925dc54a20 100644
> >> --- a/drivers/tty/tty_io.c
> >> +++ b/drivers/tty/tty_io.c
> >> @@ -3607,8 +3607,7 @@ static struct ctl_table tty_table[] = {
> >> .proc_handler = proc_dointvec,
> >> .extra1 = SYSCTL_ZERO,
> >> .extra2 = SYSCTL_ONE,
> >> - },
> >> - { }
> >> + }
> >
> > Why to remove the comma? One would need to add one when adding a new entry?
>
> Does it make any difference at all ?
>
> In one case you have:
>
> @xxxx
> something old,
> },
> + {
> + something new,
> + },
> }
>
> In the other case you have:
>
> @xxxx
> something old,
> + },
> + {
> + something new,
> }
> }
Because that way it is obvious you are only touching the "something new"
lines and never have to touch the "something old" ones.
It's just a long-standing tradition in Linux, don't have an extra
character if you don't need it :)
thanks,
greg k-h
next prev parent reply other threads:[~2023-10-02 9:02 UTC|newest]
Thread overview: 126+ messages / expand[flat|nested] mbox.gz Atom feed top
2023-09-28 13:21 [PATCH 00/15] sysctl: Remove sentinel elements from drivers Joel Granados
2023-09-28 13:21 ` Joel Granados via B4 Relay
2023-09-28 13:21 ` Joel Granados via B4 Relay
2023-09-28 13:21 ` [Intel-gfx] " Joel Granados via B4 Relay
[not found] ` <20230928-jag-sysctl_remove_empty_elem_drive>
2023-09-28 13:21 ` [PATCH 01/15] cdrom: Remove now superfluous sentinel element from ctl_table array Joel Granados
2023-09-28 13:21 ` Joel Granados via B4 Relay
2023-09-28 13:21 ` Joel Granados via B4 Relay
2023-09-28 13:21 ` [Intel-gfx] " Joel Granados via B4 Relay
2023-09-28 13:36 ` Greg Kroah-Hartman
2023-09-28 13:36 ` Greg Kroah-Hartman
2023-09-28 13:36 ` Greg Kroah-Hartman
2023-09-28 13:36 ` Greg Kroah-Hartman
2023-09-29 12:17 ` [Intel-gfx] " Joel Granados
2023-09-29 12:17 ` Joel Granados
2023-09-29 12:17 ` Joel Granados
2023-09-29 12:17 ` Joel Granados
2023-09-30 16:52 ` [Intel-gfx] " Phillip Potter
2023-09-30 16:52 ` Phillip Potter
2023-09-30 16:52 ` Phillip Potter
2023-09-30 16:52 ` Phillip Potter
2023-10-02 7:39 ` [Intel-gfx] " Joel Granados
2023-10-02 7:39 ` Joel Granados
2023-10-02 7:39 ` Joel Granados
2023-10-02 7:39 ` Joel Granados
2023-09-28 13:21 ` [PATCH 02/15] hpet: " Joel Granados
2023-09-28 13:21 ` Joel Granados via B4 Relay
2023-09-28 13:21 ` Joel Granados via B4 Relay
2023-09-28 13:21 ` [Intel-gfx] " Joel Granados via B4 Relay
2023-09-28 13:21 ` [PATCH 03/15] xen: " Joel Granados
2023-09-28 13:21 ` Joel Granados via B4 Relay
2023-09-28 13:21 ` Joel Granados via B4 Relay
2023-09-28 13:21 ` [Intel-gfx] " Joel Granados via B4 Relay
2023-09-28 13:33 ` Juergen Gross
2023-09-28 13:21 ` [PATCH 04/15] tty: " Joel Granados
2023-09-28 13:21 ` Joel Granados via B4 Relay
2023-09-28 13:21 ` Joel Granados via B4 Relay
2023-09-28 13:21 ` [Intel-gfx] " Joel Granados via B4 Relay
2023-10-02 8:17 ` Jiri Slaby
2023-10-02 8:17 ` Jiri Slaby
2023-10-02 8:17 ` Jiri Slaby
2023-10-02 8:47 ` [Intel-gfx] " Christophe Leroy
2023-10-02 8:47 ` Christophe Leroy
2023-10-02 9:02 ` Greg Kroah-Hartman [this message]
2023-10-02 9:02 ` Greg Kroah-Hartman
2023-10-02 9:02 ` Greg Kroah-Hartman
2023-10-02 9:02 ` Greg Kroah-Hartman
2023-09-28 13:21 ` [PATCH 05/15] scsi: " Joel Granados
2023-09-28 13:21 ` Joel Granados via B4 Relay
2023-09-28 13:21 ` Joel Granados via B4 Relay
2023-09-28 13:21 ` [Intel-gfx] " Joel Granados via B4 Relay
2023-09-28 13:21 ` [PATCH 06/15] parport: Remove the " Joel Granados
2023-09-28 13:21 ` Joel Granados via B4 Relay
2023-09-28 13:21 ` Joel Granados via B4 Relay
2023-09-28 13:21 ` [Intel-gfx] " Joel Granados via B4 Relay
2023-09-28 13:21 ` [PATCH 07/15] macintosh: " Joel Granados
2023-09-28 13:21 ` Joel Granados via B4 Relay
2023-09-28 13:21 ` Joel Granados via B4 Relay
2023-09-28 13:21 ` [Intel-gfx] " Joel Granados via B4 Relay
2023-09-28 13:21 ` [PATCH 08/15] infiniband: " Joel Granados
2023-09-28 13:21 ` Joel Granados via B4 Relay
2023-09-28 13:21 ` Joel Granados via B4 Relay
2023-09-28 13:21 ` [Intel-gfx] " Joel Granados via B4 Relay
2023-09-28 13:21 ` [PATCH 09/15] char-misc: " Joel Granados
2023-09-28 13:21 ` Joel Granados via B4 Relay
2023-09-28 13:21 ` Joel Granados via B4 Relay
2023-09-28 13:21 ` [Intel-gfx] " Joel Granados via B4 Relay
2023-09-28 13:21 ` [Intel-gfx] [PATCH 10/15] vrf: " Joel Granados via B4 Relay
2023-09-28 13:21 ` Joel Granados via B4 Relay
2023-09-28 13:21 ` Joel Granados via B4 Relay
2023-09-28 13:21 ` Joel Granados
2023-09-28 13:21 ` [Intel-gfx] [PATCH 11/15] sgi-xp: " Joel Granados via B4 Relay
2023-09-28 13:21 ` Joel Granados via B4 Relay
2023-09-28 13:21 ` Joel Granados via B4 Relay
2023-09-28 13:21 ` Joel Granados
2023-09-28 13:21 ` [Intel-gfx] [PATCH 12/15] fw loader: " Joel Granados via B4 Relay
2023-09-28 13:21 ` Joel Granados via B4 Relay
2023-09-28 13:21 ` Joel Granados via B4 Relay
2023-09-28 13:21 ` Joel Granados
2023-09-28 13:21 ` [PATCH 13/15] raid: Remove " Joel Granados
2023-09-28 13:21 ` [Intel-gfx] " Joel Granados via B4 Relay
2023-09-28 13:21 ` Joel Granados via B4 Relay
2023-09-28 13:21 ` Joel Granados via B4 Relay
2023-09-28 13:21 ` [Intel-gfx] [PATCH 14/15] hyper-v/azure: " Joel Granados via B4 Relay
2023-09-28 13:21 ` Joel Granados via B4 Relay
2023-09-28 13:21 ` Joel Granados via B4 Relay
2023-09-28 13:21 ` Joel Granados
2023-09-28 13:21 ` [PATCH 15/15] intel drm: " Joel Granados
2023-09-28 13:21 ` [Intel-gfx] " Joel Granados via B4 Relay
2023-09-28 13:21 ` Joel Granados via B4 Relay
2023-09-28 13:21 ` Joel Granados via B4 Relay
[not found] ` <65157da7.5d0a0220.13b5e.9e95SMTPIN_ADDED_BROKEN@mx.google.com>
2023-09-28 15:20 ` [Intel-gfx] [PATCH 13/15] raid: " Song Liu
2023-09-28 15:20 ` Song Liu
2023-09-28 15:20 ` Song Liu
2023-09-28 15:20 ` Song Liu
[not found] ` <65157da8.050a0220.fb263.fdb1SMTPIN_ADDED_BROKEN@mx.google.com>
2023-09-28 15:26 ` [Intel-gfx] [PATCH 14/15] hyper-v/azure: " Wei Liu
2023-09-28 15:26 ` Wei Liu
2023-09-28 15:26 ` Wei Liu
2023-09-28 15:26 ` Wei Liu
2023-09-29 12:15 ` [Intel-gfx] " Joel Granados
2023-09-29 12:15 ` Joel Granados
2023-09-29 12:15 ` Joel Granados
2023-09-29 12:15 ` Joel Granados
2023-09-29 14:03 ` [Intel-gfx] " Joel Granados
2023-09-29 14:03 ` Joel Granados
2023-09-29 14:03 ` Joel Granados
2023-09-29 14:03 ` Joel Granados
2023-09-28 16:10 ` [Intel-gfx] ✓ Fi.CI.BAT: success for sysctl: Remove sentinel elements from drivers Patchwork
2023-09-28 16:31 ` [Intel-gfx] [PATCH 00/15] " Christophe Leroy
2023-09-28 16:31 ` Christophe Leroy
2023-10-02 8:47 ` [Intel-gfx] " Joel Granados
2023-10-02 8:47 ` Joel Granados
2023-10-02 8:47 ` Joel Granados
2023-10-02 8:47 ` Joel Granados
2023-10-02 9:02 ` [Intel-gfx] " Christophe Leroy
2023-10-02 9:02 ` Christophe Leroy
2023-10-02 9:02 ` Christophe Leroy
2023-10-02 9:02 ` Christophe Leroy
[not found] ` <=?utf-8?q?=3C20230928-jag-sysctl=5Fremove=5Fempty=5Felem=5Fdrive?=>
2023-09-28 17:51 ` [Intel-gfx] [PATCH 11/15] sgi-xp: Remove the now superfluous sentinel element from ctl_table array Steve Wahl
2023-09-28 17:51 ` Steve Wahl
2023-09-28 17:51 ` Steve Wahl
2023-09-28 17:51 ` Steve Wahl
2023-09-29 12:14 ` [Intel-gfx] " Joel Granados
2023-09-29 12:14 ` Joel Granados
2023-09-29 12:14 ` Joel Granados
2023-09-29 12:14 ` Joel Granados
2023-09-29 1:42 ` [Intel-gfx] ✓ Fi.CI.IGT: success for sysctl: Remove sentinel elements from drivers Patchwork
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=2023100252-plod-user-4504@gregkh \
--to=gregkh@linuxfoundation.org \
--cc=Jason@zx2c4.com \
--cc=airlied@gmail.com \
--cc=arnd@arndb.de \
--cc=christophe.leroy@csgroup.eu \
--cc=clemens@ladisch.de \
--cc=daniel@ffwll.ch \
--cc=davem@davemloft.net \
--cc=decui@microsoft.com \
--cc=dgilbert@interlog.com \
--cc=dri-devel@lists.freedesktop.org \
--cc=dsahern@kernel.org \
--cc=edumazet@google.com \
--cc=haiyangz@microsoft.com \
--cc=intel-gfx@lists.freedesktop.org \
--cc=j.granados@samsung.com \
--cc=jejb@linux.ibm.com \
--cc=jgg@ziepe.ca \
--cc=jgross@suse.com \
--cc=jirislaby@kernel.org \
--cc=josh@joshtriplett.org \
--cc=keescook@chromium.org \
--cc=kuba@kernel.org \
--cc=kys@microsoft.com \
--cc=leon@kernel.org \
--cc=linux-hyperv@vger.kernel.org \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-raid@vger.kernel.org \
--cc=linux-rdma@vger.kernel.org \
--cc=linux-scsi@vger.kernel.org \
--cc=linux-serial@vger.kernel.org \
--cc=linuxppc-dev@lists.ozlabs.org \
--cc=martin.petersen@oracle.com \
--cc=mcgrof@kernel.org \
--cc=minyard@acm.org \
--cc=netdev@vger.kernel.org \
--cc=oleksandr_tyshchenko@epam.com \
--cc=openipmi-developer@lists.sourceforge.net \
--cc=pabeni@redhat.com \
--cc=phil@philpotter.co.uk \
--cc=rafael@kernel.org \
--cc=robinmholt@gmail.com \
--cc=rodrigo.vivi@intel.com \
--cc=russell.h.weight@intel.com \
--cc=song@kernel.org \
--cc=sstabellini@kernel.org \
--cc=steve.wahl@hpe.com \
--cc=sudipm.mukherjee@gmail.com \
--cc=tytso@mit.edu \
--cc=wei.liu@kernel.org \
--cc=willy@infradead.org \
--cc=xen-devel@lists.xenproject.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 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.