From: Wolfram Sang <wsa@kernel.org>
To: Joe Perches <joe@perches.com>
Cc: LKML <linux-kernel@vger.kernel.org>,
Jiri Kosina <trivial@kernel.org>,
Kees Cook <kees.cook@canonical.com>,
Nick Desaulniers <ndesaulniers@google.com>,
linux-arm-kernel@lists.infradead.org,
kvmarm@lists.cs.columbia.edu, linux-mips@vger.kernel.org,
linux-s390@vger.kernel.org, linux-crypto@vger.kernel.org,
linux-ide@vger.kernel.org,
linux-atm-general@lists.sourceforge.net, netdev@vger.kernel.org,
intel-gfx@lists.freedesktop.org, dri-devel@lists.freedesktop.org,
nouveau@lists.freedesktop.org, linux-input@vger.kernel.org,
linux-i2c@vger.kernel.org, linux-rdma@vger.kernel.org,
iommu@lists.linux-foundation.org, dm-devel@redhat.com,
linux-media@vger.kernel.org, linux-mmc@vger.kernel.org,
linux-mtd@lists.infradead.org, intel-wired-lan@lists.osuosl.org,
oss-drivers@netronome.com, linux-usb@vger.kernel.org,
linux-wireless@vger.kernel.org,
linux-mediatek@lists.infradead.org,
linux-nvme@lists.infradead.org, linux-pm@vger.kernel.org,
linux-rtc@vger.kernel.org, linux-scsi@vger.kernel.org,
storagedev@microchip.com, sparclinux@vger.kernel.org,
linux-serial@vger.kernel.org, linuxppc-dev@lists.ozlabs.org,
linux-parisc@vger.kernel.org, linux-fbdev@vger.kernel.org,
linux-afs@lists.infradead.org, ceph-devel@vger.kernel.org,
linux-nfs@vger.kernel.org, bpf@vger.kernel.org,
dccp@vger.kernel.org, netfilter-devel@vger.kernel.org,
coreteam@netfilter.org, linux-sctp@vger.kernel.org,
alsa-devel <alsa-devel@alsa-project.org>
Subject: Re: [trivial PATCH] treewide: Convert switch/case fallthrough; to break;
Date: Thu, 10 Sep 2020 08:53:12 +0200 [thread overview]
Message-ID: <20200910065312.GH1031@ninjato> (raw)
In-Reply-To: <e6387578c75736d61b2fe70d9783d91329a97eb4.camel@perches.com>
[-- Attachment #1: Type: text/plain, Size: 767 bytes --]
> diff --git a/drivers/i2c/busses/i2c-i801.c b/drivers/i2c/busses/i2c-i801.c
> index e32ef3f01fe8..b13b1cbcac29 100644
> --- a/drivers/i2c/busses/i2c-i801.c
> +++ b/drivers/i2c/busses/i2c-i801.c
> @@ -1785,7 +1785,7 @@ static int i801_probe(struct pci_dev *dev, const struct pci_device_id *id)
> fallthrough;
> case PCI_DEVICE_ID_INTEL_82801CA_3:
> priv->features |= FEATURE_HOST_NOTIFY;
> - fallthrough;
> + break;
> case PCI_DEVICE_ID_INTEL_82801BA_2:
> case PCI_DEVICE_ID_INTEL_82801AB_3:
> case PCI_DEVICE_ID_INTEL_82801AA_3:
I am not the maintainer (Jean is) but I suggest to drop this hunk. The
code is more complex with multiple 'fallthrough', so this change alone
actually makes the code inconsistent. A rework would need a seperate
patch.
[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 833 bytes --]
WARNING: multiple messages have this Message-ID (diff)
From: Wolfram Sang <wsa@kernel.org>
To: dccp@vger.kernel.org
Subject: Re: [trivial PATCH] treewide: Convert switch/case fallthrough; to break;
Date: Thu, 10 Sep 2020 06:53:12 +0000 [thread overview]
Message-ID: <20200910065312.GH1031@ninjato> (raw)
In-Reply-To: <e6387578c75736d61b2fe70d9783d91329a97eb4.camel@perches.com>
[-- Attachment #1: Type: text/plain, Size: 767 bytes --]
> diff --git a/drivers/i2c/busses/i2c-i801.c b/drivers/i2c/busses/i2c-i801.c
> index e32ef3f01fe8..b13b1cbcac29 100644
> --- a/drivers/i2c/busses/i2c-i801.c
> +++ b/drivers/i2c/busses/i2c-i801.c
> @@ -1785,7 +1785,7 @@ static int i801_probe(struct pci_dev *dev, const struct pci_device_id *id)
> fallthrough;
> case PCI_DEVICE_ID_INTEL_82801CA_3:
> priv->features |= FEATURE_HOST_NOTIFY;
> - fallthrough;
> + break;
> case PCI_DEVICE_ID_INTEL_82801BA_2:
> case PCI_DEVICE_ID_INTEL_82801AB_3:
> case PCI_DEVICE_ID_INTEL_82801AA_3:
I am not the maintainer (Jean is) but I suggest to drop this hunk. The
code is more complex with multiple 'fallthrough', so this change alone
actually makes the code inconsistent. A rework would need a seperate
patch.
[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 833 bytes --]
WARNING: multiple messages have this Message-ID (diff)
From: Wolfram Sang <wsa@kernel.org>
To: Joe Perches <joe@perches.com>
Cc: LKML <linux-kernel@vger.kernel.org>,
Jiri Kosina <trivial@kernel.org>,
Kees Cook <kees.cook@canonical.com>,
Nick Desaulniers <ndesaulniers@google.com>,
linux-arm-kernel@lists.infradead.org,
kvmarm@lists.cs.columbia.edu, linux-mips@vger.kernel.org,
linux-s390@vger.kernel.org, linux-crypto@vger.kernel.org,
linux-ide@vger.kernel.org,
linux-atm-general@lists.sourceforge.net, netdev@vger.kernel.org,
intel-gfx@lists.freedesktop.org, dri-devel@lists.freedesktop.org,
nouveau@lists.freedesktop.org, linux-input@vger.kernel.org,
linux-i2c@vger.kernel.org, linux-rdma@vger.kernel.org,
iommu@lists.linux-foundation.org, dm-devel@redhat.com,
linux-media@vger.kernel.org, linux-mmc@vger.kernel.org,
linux-mtd@lists.infradead.org, intel-wired-lan@lists.osuosl.org,
oss-drivers@netronome.comli
Subject: Re: [trivial PATCH] treewide: Convert switch/case fallthrough; to break;
Date: Thu, 10 Sep 2020 08:53:12 +0200 [thread overview]
Message-ID: <20200910065312.GH1031@ninjato> (raw)
In-Reply-To: <e6387578c75736d61b2fe70d9783d91329a97eb4.camel@perches.com>
[-- Attachment #1: Type: text/plain, Size: 767 bytes --]
> diff --git a/drivers/i2c/busses/i2c-i801.c b/drivers/i2c/busses/i2c-i801.c
> index e32ef3f01fe8..b13b1cbcac29 100644
> --- a/drivers/i2c/busses/i2c-i801.c
> +++ b/drivers/i2c/busses/i2c-i801.c
> @@ -1785,7 +1785,7 @@ static int i801_probe(struct pci_dev *dev, const struct pci_device_id *id)
> fallthrough;
> case PCI_DEVICE_ID_INTEL_82801CA_3:
> priv->features |= FEATURE_HOST_NOTIFY;
> - fallthrough;
> + break;
> case PCI_DEVICE_ID_INTEL_82801BA_2:
> case PCI_DEVICE_ID_INTEL_82801AB_3:
> case PCI_DEVICE_ID_INTEL_82801AA_3:
I am not the maintainer (Jean is) but I suggest to drop this hunk. The
code is more complex with multiple 'fallthrough', so this change alone
actually makes the code inconsistent. A rework would need a seperate
patch.
[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 833 bytes --]
WARNING: multiple messages have this Message-ID (diff)
From: Wolfram Sang <wsa@kernel.org>
To: intel-wired-lan@osuosl.org
Subject: [Intel-wired-lan] [trivial PATCH] treewide: Convert switch/case fallthrough; to break;
Date: Thu, 10 Sep 2020 08:53:12 +0200 [thread overview]
Message-ID: <20200910065312.GH1031@ninjato> (raw)
In-Reply-To: <e6387578c75736d61b2fe70d9783d91329a97eb4.camel@perches.com>
> diff --git a/drivers/i2c/busses/i2c-i801.c b/drivers/i2c/busses/i2c-i801.c
> index e32ef3f01fe8..b13b1cbcac29 100644
> --- a/drivers/i2c/busses/i2c-i801.c
> +++ b/drivers/i2c/busses/i2c-i801.c
> @@ -1785,7 +1785,7 @@ static int i801_probe(struct pci_dev *dev, const struct pci_device_id *id)
> fallthrough;
> case PCI_DEVICE_ID_INTEL_82801CA_3:
> priv->features |= FEATURE_HOST_NOTIFY;
> - fallthrough;
> + break;
> case PCI_DEVICE_ID_INTEL_82801BA_2:
> case PCI_DEVICE_ID_INTEL_82801AB_3:
> case PCI_DEVICE_ID_INTEL_82801AA_3:
I am not the maintainer (Jean is) but I suggest to drop this hunk. The
code is more complex with multiple 'fallthrough', so this change alone
actually makes the code inconsistent. A rework would need a seperate
patch.
-------------- next part --------------
A non-text attachment was scrubbed...
Name: signature.asc
Type: application/pgp-signature
Size: 833 bytes
Desc: not available
URL: <http://lists.osuosl.org/pipermail/intel-wired-lan/attachments/20200910/4bdcedb4/attachment-0001.asc>
WARNING: multiple messages have this Message-ID (diff)
From: Wolfram Sang <wsa@kernel.org>
To: Joe Perches <joe@perches.com>
Cc: linux-wireless@vger.kernel.org, linux-fbdev@vger.kernel.org,
oss-drivers@netronome.com, nouveau@lists.freedesktop.org,
alsa-devel <alsa-devel@alsa-project.org>,
dri-devel@lists.freedesktop.org, linux-mips@vger.kernel.org,
linux-ide@vger.kernel.org, dm-devel@redhat.com,
linux-mtd@lists.infradead.org, linux-i2c@vger.kernel.org,
sparclinux@vger.kernel.org, kvmarm@lists.cs.columbia.edu,
linux-rtc@vger.kernel.org, linux-s390@vger.kernel.org,
linux-scsi@vger.kernel.org, dccp@vger.kernel.org,
linux-rdma@vger.kernel.org,
linux-atm-general@lists.sourceforge.net,
linux-afs@lists.infradead.org, coreteam@netfilter.org,
intel-wired-lan@lists.osuosl.org, linux-serial@vger.kernel.org,
linux-input@vger.kernel.org, linux-mmc@vger.kernel.org,
Kees Cook <kees.cook@canonical.com>,
linux-media@vger.kernel.org, linux-pm@vger.kernel.org,
intel-gfx@lists.freedesktop.org, linux-sctp@vger.kernel.org,
linux-mediatek@lists.infradead.org,
linux-nvme@lists.infradead.org, storagedev@microchip.com,
ceph-devel@vger.kernel.org, linux-arm-kernel@lists.infradead.org,
linux-nfs@vger.kernel.org, Jiri Kosina <trivial@kernel.org>,
linux-parisc@vger.kernel.org, netdev@vger.kernel.org,
linux-usb@vger.kernel.org,
Nick Desaulniers <ndesaulniers@google.com>,
LKML <linux-kernel@vger.kernel.org>,
iommu@lists.linux-foundation.org,
netfilter-devel@vger.kernel.org, linux-crypto@vger.kernel.org,
bpf@vger.kernel.org, linuxppc-dev@lists.ozlabs.org
Subject: Re: [Intel-gfx] [trivial PATCH] treewide: Convert switch/case fallthrough; to break;
Date: Thu, 10 Sep 2020 08:53:12 +0200 [thread overview]
Message-ID: <20200910065312.GH1031@ninjato> (raw)
In-Reply-To: <e6387578c75736d61b2fe70d9783d91329a97eb4.camel@perches.com>
[-- Attachment #1.1: Type: text/plain, Size: 767 bytes --]
> diff --git a/drivers/i2c/busses/i2c-i801.c b/drivers/i2c/busses/i2c-i801.c
> index e32ef3f01fe8..b13b1cbcac29 100644
> --- a/drivers/i2c/busses/i2c-i801.c
> +++ b/drivers/i2c/busses/i2c-i801.c
> @@ -1785,7 +1785,7 @@ static int i801_probe(struct pci_dev *dev, const struct pci_device_id *id)
> fallthrough;
> case PCI_DEVICE_ID_INTEL_82801CA_3:
> priv->features |= FEATURE_HOST_NOTIFY;
> - fallthrough;
> + break;
> case PCI_DEVICE_ID_INTEL_82801BA_2:
> case PCI_DEVICE_ID_INTEL_82801AB_3:
> case PCI_DEVICE_ID_INTEL_82801AA_3:
I am not the maintainer (Jean is) but I suggest to drop this hunk. The
code is more complex with multiple 'fallthrough', so this change alone
actually makes the code inconsistent. A rework would need a seperate
patch.
[-- Attachment #1.2: signature.asc --]
[-- Type: application/pgp-signature, Size: 833 bytes --]
[-- Attachment #2: Type: text/plain, Size: 160 bytes --]
_______________________________________________
Intel-gfx mailing list
Intel-gfx@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/intel-gfx
WARNING: multiple messages have this Message-ID (diff)
From: Wolfram Sang <wsa@kernel.org>
To: Joe Perches <joe@perches.com>
Cc: linux-wireless@vger.kernel.org, linux-fbdev@vger.kernel.org,
oss-drivers@netronome.com, nouveau@lists.freedesktop.org,
alsa-devel <alsa-devel@alsa-project.org>,
dri-devel@lists.freedesktop.org, linux-mips@vger.kernel.org,
linux-ide@vger.kernel.org, dm-devel@redhat.com,
linux-mtd@lists.infradead.org, linux-i2c@vger.kernel.org,
sparclinux@vger.kernel.org, kvmarm@lists.cs.columbia.edu,
linux-rtc@vger.kernel.org, linux-s390@vger.kernel.org,
linux-scsi@vger.kernel.org, dccp@vger.kernel.org,
linux-rdma@vger.kernel.org,
linux-atm-general@lists.sourceforge.net,
linux-afs@lists.infradead.org, coreteam@netfilter.org,
intel-wired-lan@lists.osuosl.org, linux-serial@vger.kernel.org,
linux-input@vger.kernel.org, linux-mmc@vger.kernel.org,
Kees Cook <kees.cook@canonical.com>,
linux-media@vger.kernel.org, linux-pm@vger.kernel.org,
intel-gfx@lists.freedesktop.org, linux-sctp@vger.kernel.org,
linux-mediatek@lists.infradead.org,
linux-nvme@lists.infradead.org, storagedev@microchip.com,
ceph-devel@vger.kernel.org, linux-arm-kernel@lists.infradead.org,
linux-nfs@vger.kernel.org, Jiri Kosina <trivial@kernel.org>,
linux-parisc@vger.kernel.org, netdev@vger.kernel.org,
linux-usb@vger.kernel.org,
Nick Desaulniers <ndesaulniers@google.com>,
LKML <linux-kernel@vger.kernel.org>,
iommu@lists.linux-foundation.org,
netfilter-devel@vger.kernel.org, linux-crypto@vger.kernel.org,
bpf@vger.kernel.org, linuxppc-dev@lists.ozlabs.org
Subject: Re: [trivial PATCH] treewide: Convert switch/case fallthrough; to break;
Date: Thu, 10 Sep 2020 08:53:12 +0200 [thread overview]
Message-ID: <20200910065312.GH1031@ninjato> (raw)
In-Reply-To: <e6387578c75736d61b2fe70d9783d91329a97eb4.camel@perches.com>
[-- Attachment #1.1: Type: text/plain, Size: 767 bytes --]
> diff --git a/drivers/i2c/busses/i2c-i801.c b/drivers/i2c/busses/i2c-i801.c
> index e32ef3f01fe8..b13b1cbcac29 100644
> --- a/drivers/i2c/busses/i2c-i801.c
> +++ b/drivers/i2c/busses/i2c-i801.c
> @@ -1785,7 +1785,7 @@ static int i801_probe(struct pci_dev *dev, const struct pci_device_id *id)
> fallthrough;
> case PCI_DEVICE_ID_INTEL_82801CA_3:
> priv->features |= FEATURE_HOST_NOTIFY;
> - fallthrough;
> + break;
> case PCI_DEVICE_ID_INTEL_82801BA_2:
> case PCI_DEVICE_ID_INTEL_82801AB_3:
> case PCI_DEVICE_ID_INTEL_82801AA_3:
I am not the maintainer (Jean is) but I suggest to drop this hunk. The
code is more complex with multiple 'fallthrough', so this change alone
actually makes the code inconsistent. A rework would need a seperate
patch.
[-- Attachment #1.2: signature.asc --]
[-- Type: application/pgp-signature, Size: 833 bytes --]
[-- Attachment #2: Type: text/plain, Size: 151 bytes --]
_______________________________________________
kvmarm mailing list
kvmarm@lists.cs.columbia.edu
https://lists.cs.columbia.edu/mailman/listinfo/kvmarm
WARNING: multiple messages have this Message-ID (diff)
From: Wolfram Sang <wsa@kernel.org>
To: Joe Perches <joe@perches.com>
Cc: LKML <linux-kernel@vger.kernel.org>,
Jiri Kosina <trivial@kernel.org>,
Kees Cook <kees.cook@canonical.com>,
Nick Desaulniers <ndesaulniers@google.com>,
linux-arm-kernel@lists.infradead.org,
kvmarm@lists.cs.columbia.edu, linux-mips@vger.kernel.org,
linux-s390@vger.kernel.org, linux-crypto@vger.kernel.org,
linux-ide@vger.kernel.org,
linux-atm-general@lists.sourceforge.net, netdev@vger.kernel.org,
intel-gfx@lists.freedesktop.org, dri-devel@lists.freedesktop.org,
nouveau@lists.freedesktop.org, linux-input@vger.kernel.org,
linux-i2c@vger.kernel.org, linux-rdma@vger.kernel.org,
iommu@lists.linux-foundation.org, dm-devel@redhat.com,
linux-media@vger.kernel.org, linux-mmc@vger.kernel.org,
linux-mtd@lists.infradead.org, intel-wired-lan@lists.osuosl.org,
oss-drivers@netronome.com, linux-usb@vger.kernel.org,
linux-wireless@vger.kernel.org,
linux-mediatek@lists.infradead.org,
linux-nvme@lists.infradead.org, linux-pm@vger.kernel.org,
linux-rtc@vger.kernel.org, linux-scsi@vger.kernel.org,
storagedev@microchip.com, sparclinux@vger.kernel.org,
linux-serial@vger.kernel.org, linuxppc-dev@lists.ozlabs.org,
linux-parisc@vger.kernel.org, linux-fbdev@vger.kernel.org,
linux-afs@lists.infradead.org, ceph-devel@vger.kernel.org,
linux-nfs@vger.kernel.org, bpf@vger.kernel.org,
dccp@vger.kernel.org, netfilter-devel@vger.kernel.org,
coreteam@netfilter.org, linux-sctp@vger.kernel.org,
alsa-devel <alsa-devel@alsa-project.org>
Subject: Re: [trivial PATCH] treewide: Convert switch/case fallthrough; to break;
Date: Thu, 10 Sep 2020 06:53:12 +0000 [thread overview]
Message-ID: <20200910065312.GH1031@ninjato> (raw)
In-Reply-To: <e6387578c75736d61b2fe70d9783d91329a97eb4.camel@perches.com>
[-- Attachment #1: Type: text/plain, Size: 767 bytes --]
> diff --git a/drivers/i2c/busses/i2c-i801.c b/drivers/i2c/busses/i2c-i801.c
> index e32ef3f01fe8..b13b1cbcac29 100644
> --- a/drivers/i2c/busses/i2c-i801.c
> +++ b/drivers/i2c/busses/i2c-i801.c
> @@ -1785,7 +1785,7 @@ static int i801_probe(struct pci_dev *dev, const struct pci_device_id *id)
> fallthrough;
> case PCI_DEVICE_ID_INTEL_82801CA_3:
> priv->features |= FEATURE_HOST_NOTIFY;
> - fallthrough;
> + break;
> case PCI_DEVICE_ID_INTEL_82801BA_2:
> case PCI_DEVICE_ID_INTEL_82801AB_3:
> case PCI_DEVICE_ID_INTEL_82801AA_3:
I am not the maintainer (Jean is) but I suggest to drop this hunk. The
code is more complex with multiple 'fallthrough', so this change alone
actually makes the code inconsistent. A rework would need a seperate
patch.
[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 833 bytes --]
WARNING: multiple messages have this Message-ID (diff)
From: Wolfram Sang <wsa@kernel.org>
To: Joe Perches <joe@perches.com>
Cc: linux-wireless@vger.kernel.org, linux-fbdev@vger.kernel.org,
oss-drivers@netronome.com, nouveau@lists.freedesktop.org,
alsa-devel <alsa-devel@alsa-project.org>,
dri-devel@lists.freedesktop.org, linux-mips@vger.kernel.org,
linux-ide@vger.kernel.org, dm-devel@redhat.com,
linux-mtd@lists.infradead.org, linux-i2c@vger.kernel.org,
sparclinux@vger.kernel.org, kvmarm@lists.cs.columbia.edu,
linux-rtc@vger.kernel.org, linux-s390@vger.kernel.org,
linux-scsi@vger.kernel.org, dccp@vger.kernel.org,
linux-rdma@vger.kernel.org,
linux-atm-general@lists.sourceforge.net,
linux-afs@lists.infradead.org, coreteam@netfilter.org,
intel-wired-lan@lists.osuosl.org, linux-serial@vger.kernel.org,
linux-input@vger.kernel.org, linux-mmc@vger.kernel.org,
Kees Cook <kees.cook@canonical.com>,
linux-media@vger.kernel.org, linux-pm@vger.kernel.org,
intel-gfx@lists.freedesktop.org, linux-sctp@vger.kernel.org,
linux-mediatek@lists.infradead.org,
linux-nvme@lists.infradead.org, storagedev@microchip.com,
ceph-devel@vger.kernel.org, linux-arm-kernel@lists.infradead.org,
linux-nfs@vger.kernel.org, Jiri Kosina <trivial@kernel.org>,
linux-parisc@vger.kernel.org, netdev@vger.kernel.org,
linux-usb@vger.kernel.org,
Nick Desaulniers <ndesaulniers@google.com>,
LKML <linux-kernel@vger.kernel.org>,
iommu@lists.linux-foundation.org,
netfilter-devel@vger.kernel.org, linux-crypto@vger.kernel.org,
bpf@vger.kernel.org, linuxppc-dev@lists.ozlabs.org
Subject: Re: [trivial PATCH] treewide: Convert switch/case fallthrough; to break;
Date: Thu, 10 Sep 2020 08:53:12 +0200 [thread overview]
Message-ID: <20200910065312.GH1031@ninjato> (raw)
In-Reply-To: <e6387578c75736d61b2fe70d9783d91329a97eb4.camel@perches.com>
[-- Attachment #1.1: Type: text/plain, Size: 767 bytes --]
> diff --git a/drivers/i2c/busses/i2c-i801.c b/drivers/i2c/busses/i2c-i801.c
> index e32ef3f01fe8..b13b1cbcac29 100644
> --- a/drivers/i2c/busses/i2c-i801.c
> +++ b/drivers/i2c/busses/i2c-i801.c
> @@ -1785,7 +1785,7 @@ static int i801_probe(struct pci_dev *dev, const struct pci_device_id *id)
> fallthrough;
> case PCI_DEVICE_ID_INTEL_82801CA_3:
> priv->features |= FEATURE_HOST_NOTIFY;
> - fallthrough;
> + break;
> case PCI_DEVICE_ID_INTEL_82801BA_2:
> case PCI_DEVICE_ID_INTEL_82801AB_3:
> case PCI_DEVICE_ID_INTEL_82801AA_3:
I am not the maintainer (Jean is) but I suggest to drop this hunk. The
code is more complex with multiple 'fallthrough', so this change alone
actually makes the code inconsistent. A rework would need a seperate
patch.
[-- Attachment #1.2: signature.asc --]
[-- Type: application/pgp-signature, Size: 833 bytes --]
[-- Attachment #2: Type: text/plain, Size: 156 bytes --]
_______________________________________________
iommu mailing list
iommu@lists.linux-foundation.org
https://lists.linuxfoundation.org/mailman/listinfo/iommu
WARNING: multiple messages have this Message-ID (diff)
From: Wolfram Sang <wsa@kernel.org>
To: Joe Perches <joe@perches.com>
Cc: linux-wireless@vger.kernel.org, linux-fbdev@vger.kernel.org,
oss-drivers@netronome.com, nouveau@lists.freedesktop.org,
alsa-devel <alsa-devel@alsa-project.org>,
dri-devel@lists.freedesktop.org, linux-mips@vger.kernel.org,
linux-ide@vger.kernel.org, dm-devel@redhat.com,
linux-mtd@lists.infradead.org, linux-i2c@vger.kernel.org,
sparclinux@vger.kernel.org, kvmarm@lists.cs.columbia.edu,
linux-rtc@vger.kernel.org, linux-s390@vger.kernel.org,
linux-scsi@vger.kernel.org, dccp@vger.kernel.org,
linux-rdma@vger.kernel.org,
linux-atm-general@lists.sourceforge.net,
linux-afs@lists.infradead.org, coreteam@netfilter.org,
intel-wired-lan@lists.osuosl.org, linux-serial@vger.kernel.org,
linux-input@vger.kernel.org, linux-mmc@vger.kernel.org,
Kees Cook <kees.cook@canonical.com>,
linux-media@vger.kernel.org, linux-pm@vger.kernel.org,
intel-gfx@lists.freedesktop.org, linux-sctp@vger.kernel.org,
linux-mediatek@lists.infradead.org,
linux-nvme@lists.infradead.org, storagedev@microchip.com,
ceph-devel@vger.kernel.org, linux-arm-kernel@lists.infradead.org,
linux-nfs@vger.kernel.org, Jiri Kosina <trivial@kernel.org>,
linux-parisc@vger.kernel.org, netdev@vger.kernel.org,
linux-usb@vger.kernel.org,
Nick Desaulniers <ndesaulniers@google.com>,
LKML <linux-kernel@vger.kernel.org>,
iommu@lists.linux-foundation.org,
netfilter-devel@vger.kernel.org, linux-crypto@vger.kernel.org,
bpf@vger.kernel.org, linuxppc-dev@lists.ozlabs.org
Subject: Re: [trivial PATCH] treewide: Convert switch/case fallthrough; to break;
Date: Thu, 10 Sep 2020 08:53:12 +0200 [thread overview]
Message-ID: <20200910065312.GH1031@ninjato> (raw)
In-Reply-To: <e6387578c75736d61b2fe70d9783d91329a97eb4.camel@perches.com>
[-- Attachment #1.1: Type: text/plain, Size: 767 bytes --]
> diff --git a/drivers/i2c/busses/i2c-i801.c b/drivers/i2c/busses/i2c-i801.c
> index e32ef3f01fe8..b13b1cbcac29 100644
> --- a/drivers/i2c/busses/i2c-i801.c
> +++ b/drivers/i2c/busses/i2c-i801.c
> @@ -1785,7 +1785,7 @@ static int i801_probe(struct pci_dev *dev, const struct pci_device_id *id)
> fallthrough;
> case PCI_DEVICE_ID_INTEL_82801CA_3:
> priv->features |= FEATURE_HOST_NOTIFY;
> - fallthrough;
> + break;
> case PCI_DEVICE_ID_INTEL_82801BA_2:
> case PCI_DEVICE_ID_INTEL_82801AB_3:
> case PCI_DEVICE_ID_INTEL_82801AA_3:
I am not the maintainer (Jean is) but I suggest to drop this hunk. The
code is more complex with multiple 'fallthrough', so this change alone
actually makes the code inconsistent. A rework would need a seperate
patch.
[-- Attachment #1.2: signature.asc --]
[-- Type: application/pgp-signature, Size: 833 bytes --]
[-- Attachment #2: Type: text/plain, Size: 170 bytes --]
_______________________________________________
Linux-mediatek mailing list
Linux-mediatek@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/linux-mediatek
WARNING: multiple messages have this Message-ID (diff)
From: Wolfram Sang <wsa@kernel.org>
To: Joe Perches <joe@perches.com>
Cc: linux-wireless@vger.kernel.org, linux-fbdev@vger.kernel.org,
oss-drivers@netronome.com, nouveau@lists.freedesktop.org,
alsa-devel <alsa-devel@alsa-project.org>,
dri-devel@lists.freedesktop.org, linux-mips@vger.kernel.org,
linux-ide@vger.kernel.org, dm-devel@redhat.com,
linux-mtd@lists.infradead.org, linux-i2c@vger.kernel.org,
sparclinux@vger.kernel.org, kvmarm@lists.cs.columbia.edu,
linux-rtc@vger.kernel.org, linux-s390@vger.kernel.org,
linux-scsi@vger.kernel.org, dccp@vger.kernel.org,
linux-rdma@vger.kernel.org,
linux-atm-general@lists.sourceforge.net,
linux-afs@lists.infradead.org, coreteam@netfilter.org,
intel-wired-lan@lists.osuosl.org, linux-serial@vger.kernel.org,
linux-input@vger.kernel.org, linux-mmc@vger.kernel.org,
Kees Cook <kees.cook@canonical.com>,
linux-media@vger.kernel.org, linux-pm@vger.kernel.org,
intel-gfx@lists.freedesktop.org, linux-sctp@vger.kernel.org,
linux-mediatek@lists.infradead.org,
linux-nvme@lists.infradead.org, storagedev@microchip.com,
ceph-devel@vger.kernel.org, linux-arm-kernel@lists.infradead.org,
linux-nfs@vger.kernel.org, Jiri Kosina <trivial@kernel.org>,
linux-parisc@vger.kernel.org, netdev@vger.kernel.org,
linux-usb@vger.kernel.org,
Nick Desaulniers <ndesaulniers@google.com>,
LKML <linux-kernel@vger.kernel.org>,
iommu@lists.linux-foundation.org,
netfilter-devel@vger.kernel.org, linux-crypto@vger.kernel.org,
bpf@vger.kernel.org, linuxppc-dev@lists.ozlabs.org
Subject: Re: [trivial PATCH] treewide: Convert switch/case fallthrough; to break;
Date: Thu, 10 Sep 2020 08:53:12 +0200 [thread overview]
Message-ID: <20200910065312.GH1031@ninjato> (raw)
In-Reply-To: <e6387578c75736d61b2fe70d9783d91329a97eb4.camel@perches.com>
[-- Attachment #1.1: Type: text/plain, Size: 767 bytes --]
> diff --git a/drivers/i2c/busses/i2c-i801.c b/drivers/i2c/busses/i2c-i801.c
> index e32ef3f01fe8..b13b1cbcac29 100644
> --- a/drivers/i2c/busses/i2c-i801.c
> +++ b/drivers/i2c/busses/i2c-i801.c
> @@ -1785,7 +1785,7 @@ static int i801_probe(struct pci_dev *dev, const struct pci_device_id *id)
> fallthrough;
> case PCI_DEVICE_ID_INTEL_82801CA_3:
> priv->features |= FEATURE_HOST_NOTIFY;
> - fallthrough;
> + break;
> case PCI_DEVICE_ID_INTEL_82801BA_2:
> case PCI_DEVICE_ID_INTEL_82801AB_3:
> case PCI_DEVICE_ID_INTEL_82801AA_3:
I am not the maintainer (Jean is) but I suggest to drop this hunk. The
code is more complex with multiple 'fallthrough', so this change alone
actually makes the code inconsistent. A rework would need a seperate
patch.
[-- Attachment #1.2: signature.asc --]
[-- Type: application/pgp-signature, Size: 833 bytes --]
[-- Attachment #2: Type: text/plain, Size: 144 bytes --]
______________________________________________________
Linux MTD discussion mailing list
http://lists.infradead.org/mailman/listinfo/linux-mtd/
WARNING: multiple messages have this Message-ID (diff)
From: Wolfram Sang <wsa@kernel.org>
To: Joe Perches <joe@perches.com>
Cc: linux-wireless@vger.kernel.org, linux-fbdev@vger.kernel.org,
oss-drivers@netronome.com, nouveau@lists.freedesktop.org,
alsa-devel <alsa-devel@alsa-project.org>,
dri-devel@lists.freedesktop.org, linux-mips@vger.kernel.org,
linux-ide@vger.kernel.org, dm-devel@redhat.com,
linux-mtd@lists.infradead.org, linux-i2c@vger.kernel.org,
sparclinux@vger.kernel.org, kvmarm@lists.cs.columbia.edu,
linux-rtc@vger.kernel.org, linux-s390@vger.kernel.org,
linux-scsi@vger.kernel.org, dccp@vger.kernel.org,
linux-rdma@vger.kernel.org,
linux-atm-general@lists.sourceforge.net,
linux-afs@lists.infradead.org, coreteam@netfilter.org,
intel-wired-lan@lists.osuosl.org, linux-serial@vger.kernel.org,
linux-input@vger.kernel.org, linux-mmc@vger.kernel.org,
Kees Cook <kees.cook@canonical.com>,
linux-media@vger.kernel.org, linux-pm@vger.kernel.org,
intel-gfx@lists.freedesktop.org, linux-sctp@vger.kernel.org,
linux-mediatek@lists.infradead.org,
linux-nvme@lists.infradead.org, storagedev@microchip.com,
ceph-devel@vger.kernel.org, linux-arm-kernel@lists.infradead.org,
linux-nfs@vger.kernel.org, Jiri Kosina <trivial@kernel.org>,
linux-parisc@vger.kernel.org, netdev@vger.kernel.org,
linux-usb@vger.kernel.org,
Nick Desaulniers <ndesaulniers@google.com>,
LKML <linux-kernel@vger.kernel.org>,
iommu@lists.linux-foundation.org,
netfilter-devel@vger.kernel.org, linux-crypto@vger.kernel.org,
bpf@vger.kernel.org, linuxppc-dev@lists.ozlabs.org
Subject: Re: [trivial PATCH] treewide: Convert switch/case fallthrough; to break;
Date: Thu, 10 Sep 2020 08:53:12 +0200 [thread overview]
Message-ID: <20200910065312.GH1031@ninjato> (raw)
In-Reply-To: <e6387578c75736d61b2fe70d9783d91329a97eb4.camel@perches.com>
[-- Attachment #1: Type: text/plain, Size: 767 bytes --]
> diff --git a/drivers/i2c/busses/i2c-i801.c b/drivers/i2c/busses/i2c-i801.c
> index e32ef3f01fe8..b13b1cbcac29 100644
> --- a/drivers/i2c/busses/i2c-i801.c
> +++ b/drivers/i2c/busses/i2c-i801.c
> @@ -1785,7 +1785,7 @@ static int i801_probe(struct pci_dev *dev, const struct pci_device_id *id)
> fallthrough;
> case PCI_DEVICE_ID_INTEL_82801CA_3:
> priv->features |= FEATURE_HOST_NOTIFY;
> - fallthrough;
> + break;
> case PCI_DEVICE_ID_INTEL_82801BA_2:
> case PCI_DEVICE_ID_INTEL_82801AB_3:
> case PCI_DEVICE_ID_INTEL_82801AA_3:
I am not the maintainer (Jean is) but I suggest to drop this hunk. The
code is more complex with multiple 'fallthrough', so this change alone
actually makes the code inconsistent. A rework would need a seperate
patch.
[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 833 bytes --]
WARNING: multiple messages have this Message-ID (diff)
From: Wolfram Sang <wsa@kernel.org>
To: Joe Perches <joe@perches.com>
Cc: linux-wireless@vger.kernel.org, linux-fbdev@vger.kernel.org,
oss-drivers@netronome.com, nouveau@lists.freedesktop.org,
alsa-devel <alsa-devel@alsa-project.org>,
dri-devel@lists.freedesktop.org, linux-mips@vger.kernel.org,
linux-ide@vger.kernel.org, dm-devel@redhat.com,
linux-mtd@lists.infradead.org, linux-i2c@vger.kernel.org,
sparclinux@vger.kernel.org, kvmarm@lists.cs.columbia.edu,
linux-rtc@vger.kernel.org, linux-s390@vger.kernel.org,
linux-scsi@vger.kernel.org, dccp@vger.kernel.org,
linux-rdma@vger.kernel.org,
linux-atm-general@lists.sourceforge.net,
linux-afs@lists.infradead.org, coreteam@netfilter.org,
intel-wired-lan@lists.osuosl.org, linux-serial@vger.kernel.org,
linux-input@vger.kernel.org, linux-mmc@vger.kernel.org,
Kees Cook <kees.cook@canonical.com>,
linux-media@vger.kernel.org, linux-pm@vger.kernel.org,
intel-gfx@lists.freedesktop.org, linux-sctp@vger.kernel.org,
linux-mediatek@lists.infradead.org,
linux-nvme@lists.infradead.org, storagedev@microchip.com,
ceph-devel@vger.kernel.org, linux-arm-kernel@lists.infradead.org,
linux-nfs@vger.kernel.org, Jiri Kosina <trivial@kernel.org>,
linux-parisc@vger.kernel.org, netdev@vger.kernel.org,
linux-usb@vger.kernel.org,
Nick Desaulniers <ndesaulniers@google.com>,
LKML <linux-kernel@vger.kernel.org>,
iommu@lists.linux-foundation.org,
netfilter-devel@vger.kernel.org, linux-crypto@vger.kernel.org,
bpf@vger.kernel.org, linuxppc-dev@lists.ozlabs.org
Subject: Re: [trivial PATCH] treewide: Convert switch/case fallthrough; to break;
Date: Thu, 10 Sep 2020 08:53:12 +0200 [thread overview]
Message-ID: <20200910065312.GH1031@ninjato> (raw)
In-Reply-To: <e6387578c75736d61b2fe70d9783d91329a97eb4.camel@perches.com>
[-- Attachment #1.1: Type: text/plain, Size: 767 bytes --]
> diff --git a/drivers/i2c/busses/i2c-i801.c b/drivers/i2c/busses/i2c-i801.c
> index e32ef3f01fe8..b13b1cbcac29 100644
> --- a/drivers/i2c/busses/i2c-i801.c
> +++ b/drivers/i2c/busses/i2c-i801.c
> @@ -1785,7 +1785,7 @@ static int i801_probe(struct pci_dev *dev, const struct pci_device_id *id)
> fallthrough;
> case PCI_DEVICE_ID_INTEL_82801CA_3:
> priv->features |= FEATURE_HOST_NOTIFY;
> - fallthrough;
> + break;
> case PCI_DEVICE_ID_INTEL_82801BA_2:
> case PCI_DEVICE_ID_INTEL_82801AB_3:
> case PCI_DEVICE_ID_INTEL_82801AA_3:
I am not the maintainer (Jean is) but I suggest to drop this hunk. The
code is more complex with multiple 'fallthrough', so this change alone
actually makes the code inconsistent. A rework would need a seperate
patch.
[-- Attachment #1.2: signature.asc --]
[-- Type: application/pgp-signature, Size: 833 bytes --]
[-- Attachment #2: Type: text/plain, Size: 176 bytes --]
_______________________________________________
linux-arm-kernel mailing list
linux-arm-kernel@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/linux-arm-kernel
WARNING: multiple messages have this Message-ID (diff)
From: Wolfram Sang <wsa@kernel.org>
To: Joe Perches <joe@perches.com>
Cc: linux-wireless@vger.kernel.org, linux-fbdev@vger.kernel.org,
oss-drivers@netronome.com, nouveau@lists.freedesktop.org,
alsa-devel <alsa-devel@alsa-project.org>,
dri-devel@lists.freedesktop.org, linux-mips@vger.kernel.org,
linux-ide@vger.kernel.org, dm-devel@redhat.com,
linux-mtd@lists.infradead.org, linux-i2c@vger.kernel.org,
sparclinux@vger.kernel.org, kvmarm@lists.cs.columbia.edu,
linux-rtc@vger.kernel.org, linux-s390@vger.kernel.org,
linux-scsi@vger.kernel.org, dccp@vger.kernel.org,
linux-rdma@vger.kernel.org,
linux-atm-general@lists.sourceforge.net,
linux-afs@lists.infradead.org, coreteam@netfilter.org,
intel-wired-lan@lists.osuosl.org, linux-serial@vger.kernel.org,
linux-input@vger.kernel.org, linux-mmc@vger.kernel.org,
Kees Cook <kees.cook@canonical.com>,
linux-media@vger.kernel.org, linux-pm@vger.kernel.org,
intel-gfx@lists.freedesktop.org, linux-sctp@vger.kernel.org,
linux-mediatek@lists.infradead.org,
linux-nvme@lists.infradead.org, storagedev@microchip.com,
ceph-devel@vger.kernel.org, linux-arm-kernel@lists.infradead.org,
linux-nfs@vger.kernel.org, Jiri Kosina <trivial@kernel.org>,
linux-parisc@vger.kernel.org, netdev@vger.kernel.org,
linux-usb@vger.kernel.org,
Nick Desaulniers <ndesaulniers@google.com>,
LKML <linux-kernel@vger.kernel.org>,
iommu@lists.linux-foundation.org,
netfilter-devel@vger.kernel.org, linux-crypto@vger.kernel.org,
bpf@vger.kernel.org, linuxppc-dev@lists.ozlabs.org
Subject: Re: [trivial PATCH] treewide: Convert switch/case fallthrough; to break;
Date: Thu, 10 Sep 2020 08:53:12 +0200 [thread overview]
Message-ID: <20200910065312.GH1031@ninjato> (raw)
In-Reply-To: <e6387578c75736d61b2fe70d9783d91329a97eb4.camel@perches.com>
[-- Attachment #1.1: Type: text/plain, Size: 767 bytes --]
> diff --git a/drivers/i2c/busses/i2c-i801.c b/drivers/i2c/busses/i2c-i801.c
> index e32ef3f01fe8..b13b1cbcac29 100644
> --- a/drivers/i2c/busses/i2c-i801.c
> +++ b/drivers/i2c/busses/i2c-i801.c
> @@ -1785,7 +1785,7 @@ static int i801_probe(struct pci_dev *dev, const struct pci_device_id *id)
> fallthrough;
> case PCI_DEVICE_ID_INTEL_82801CA_3:
> priv->features |= FEATURE_HOST_NOTIFY;
> - fallthrough;
> + break;
> case PCI_DEVICE_ID_INTEL_82801BA_2:
> case PCI_DEVICE_ID_INTEL_82801AB_3:
> case PCI_DEVICE_ID_INTEL_82801AA_3:
I am not the maintainer (Jean is) but I suggest to drop this hunk. The
code is more complex with multiple 'fallthrough', so this change alone
actually makes the code inconsistent. A rework would need a seperate
patch.
[-- Attachment #1.2: signature.asc --]
[-- Type: application/pgp-signature, Size: 833 bytes --]
[-- Attachment #2: Type: text/plain, Size: 160 bytes --]
_______________________________________________
dri-devel mailing list
dri-devel@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/dri-devel
next prev parent reply other threads:[~2020-09-10 6:53 UTC|newest]
Thread overview: 261+ messages / expand[flat|nested] mbox.gz Atom feed top
2020-09-09 20:06 [trivial PATCH] treewide: Convert switch/case fallthrough; to break; Joe Perches
2020-09-09 20:06 ` Joe Perches
2020-09-09 20:06 ` Joe Perches
2020-09-09 20:06 ` Joe Perches
2020-09-09 20:06 ` Joe Perches
2020-09-09 20:06 ` Joe Perches
2020-09-09 20:06 ` Joe Perches
2020-09-09 20:06 ` Joe Perches
2020-09-09 20:06 ` Joe Perches
2020-09-09 20:06 ` [Intel-gfx] " Joe Perches
2020-09-09 20:06 ` [Intel-wired-lan] " Joe Perches
2020-09-09 20:06 ` Joe Perches
2020-09-09 20:06 ` Joe Perches
2020-09-09 20:29 ` [Intel-gfx] ✗ Fi.CI.BUILD: failure for " Patchwork
2020-09-09 20:38 ` [trivial PATCH] " Gustavo A. R. Silva
2020-09-09 20:38 ` Gustavo A. R. Silva
2020-09-09 20:38 ` Gustavo A. R. Silva
2020-09-09 20:38 ` Gustavo A. R. Silva
2020-09-09 20:38 ` Gustavo A. R. Silva
2020-09-09 20:38 ` Gustavo A. R. Silva
2020-09-09 20:38 ` Gustavo A. R. Silva
2020-09-09 20:38 ` Gustavo A. R. Silva
2020-09-09 20:38 ` Gustavo A. R. Silva
2020-09-09 20:38 ` [Intel-gfx] " Gustavo A. R. Silva
2020-09-09 20:38 ` [Intel-wired-lan] " Gustavo A. R. Silva
2020-09-09 20:38 ` Gustavo A. R. Silva
2020-09-09 20:38 ` Gustavo A. R. Silva
2020-09-09 20:55 ` Keith Busch
2020-09-09 20:55 ` Keith Busch
2020-09-09 20:55 ` Keith Busch
2020-09-09 20:55 ` Keith Busch
2020-09-09 20:55 ` Keith Busch
2020-09-09 20:55 ` Keith Busch
2020-09-09 20:55 ` Keith Busch
2020-09-09 20:55 ` Keith Busch
2020-09-09 20:55 ` Keith Busch
2020-09-09 20:55 ` [Intel-gfx] " Keith Busch
2020-09-09 20:55 ` [Intel-wired-lan] " Keith Busch
2020-09-09 20:55 ` Keith Busch
2020-09-09 20:55 ` Keith Busch
2020-09-09 21:09 ` Joe Perches
2020-09-09 22:35 ` Herbert Xu
2020-09-10 0:20 ` Joe Perches
2020-09-17 19:40 ` Jacob Keller
2020-09-17 19:40 ` Jacob Keller
2020-09-17 19:40 ` Jacob Keller
2020-09-17 19:40 ` Jacob Keller
2020-09-17 19:40 ` Jacob Keller
2020-09-17 19:40 ` Jacob Keller
2020-09-17 19:40 ` Jacob Keller
2020-09-17 19:40 ` Jacob Keller
2020-09-17 19:40 ` [Intel-gfx] " Jacob Keller
2020-09-17 19:40 ` [Intel-wired-lan] " Jacob Keller
2020-09-17 19:40 ` Jacob Keller
2020-09-17 19:40 ` Jacob Keller
2020-09-17 19:40 ` Jacob Keller
2020-09-09 22:36 ` Jason Gunthorpe
2020-09-09 22:36 ` Jason Gunthorpe
2020-09-09 22:36 ` Jason Gunthorpe
2020-09-09 22:36 ` Jason Gunthorpe
2020-09-09 22:36 ` Jason Gunthorpe
2020-09-09 22:36 ` Jason Gunthorpe
2020-09-09 22:36 ` Jason Gunthorpe
2020-09-09 22:36 ` Jason Gunthorpe
2020-09-09 22:36 ` Jason Gunthorpe
2020-09-09 22:36 ` [Intel-wired-lan] " Jason Gunthorpe
2020-09-09 22:36 ` Jason Gunthorpe
2020-09-09 22:36 ` Jason Gunthorpe
2020-09-09 22:47 ` Joe Perches
2020-09-09 22:47 ` Joe Perches
2020-09-09 22:47 ` Joe Perches
2020-09-09 22:47 ` Joe Perches
2020-09-09 22:47 ` Joe Perches
2020-09-09 22:47 ` Joe Perches
2020-09-09 22:47 ` Joe Perches
2020-09-09 22:47 ` Joe Perches
2020-09-09 22:47 ` Joe Perches
2020-09-09 22:47 ` [Intel-gfx] " Joe Perches
2020-09-09 22:47 ` [Intel-wired-lan] " Joe Perches
2020-09-09 22:47 ` Joe Perches
2020-09-09 22:47 ` Joe Perches
2020-09-10 6:28 ` Mauro Carvalho Chehab
2020-09-10 6:28 ` Mauro Carvalho Chehab
2020-09-10 6:28 ` Mauro Carvalho Chehab
2020-09-10 6:28 ` Mauro Carvalho Chehab
2020-09-10 6:28 ` Mauro Carvalho Chehab
2020-09-10 6:28 ` Mauro Carvalho Chehab
2020-09-10 6:28 ` Mauro Carvalho Chehab
2020-09-10 6:28 ` Mauro Carvalho Chehab
2020-09-10 6:28 ` Mauro Carvalho Chehab
2020-09-10 6:28 ` [Intel-gfx] " Mauro Carvalho Chehab
2020-09-10 6:28 ` [Intel-wired-lan] " Mauro Carvalho Chehab
2020-09-10 6:28 ` Mauro Carvalho Chehab
2020-09-10 6:28 ` Mauro Carvalho Chehab
2020-09-10 6:53 ` Wolfram Sang [this message]
2020-09-10 6:53 ` Wolfram Sang
2020-09-10 6:53 ` Wolfram Sang
2020-09-10 6:53 ` Wolfram Sang
2020-09-10 6:53 ` Wolfram Sang
2020-09-10 6:53 ` Wolfram Sang
2020-09-10 6:53 ` Wolfram Sang
2020-09-10 6:53 ` Wolfram Sang
2020-09-10 6:53 ` Wolfram Sang
2020-09-10 6:53 ` [Intel-gfx] " Wolfram Sang
2020-09-10 6:53 ` [Intel-wired-lan] " Wolfram Sang
2020-09-10 6:53 ` Wolfram Sang
2020-09-10 6:53 ` Wolfram Sang
2020-09-10 8:24 ` Nicolas.Ferre
2020-09-10 8:24 ` Nicolas.Ferre
2020-09-10 8:24 ` Nicolas.Ferre
2020-09-10 8:24 ` Nicolas.Ferre
2020-09-10 8:24 ` Nicolas.Ferre
2020-09-10 8:24 ` Nicolas.Ferre--- via iommu
2020-09-10 8:24 ` Nicolas.Ferre
2020-09-10 8:24 ` Nicolas.Ferre
2020-09-10 8:24 ` [Intel-gfx] " Nicolas.Ferre
2020-09-10 8:24 ` [Intel-wired-lan] " Nicolas.Ferre
2020-09-10 8:24 ` Nicolas.Ferre--- via iommu
2020-09-10 8:24 ` Nicolas.Ferre
2020-09-10 8:47 ` Felipe Balbi
2020-09-10 8:47 ` Felipe Balbi
2020-09-10 8:47 ` Felipe Balbi
2020-09-10 8:47 ` Felipe Balbi
2020-09-10 8:47 ` Felipe Balbi
2020-09-10 8:47 ` Felipe Balbi
2020-09-10 8:47 ` Felipe Balbi
2020-09-10 8:47 ` Felipe Balbi
2020-09-10 8:47 ` Felipe Balbi
2020-09-10 8:47 ` [Intel-gfx] " Felipe Balbi
2020-09-10 8:47 ` [Intel-wired-lan] " Felipe Balbi
2020-09-10 8:47 ` Felipe Balbi
2020-09-10 8:47 ` Felipe Balbi
2020-09-10 9:18 ` Steffen Maier
2020-09-10 9:18 ` Steffen Maier
2020-09-10 9:18 ` Steffen Maier
2020-09-10 9:18 ` Steffen Maier
2020-09-10 9:18 ` Steffen Maier
2020-09-10 9:18 ` Steffen Maier
2020-09-10 9:18 ` Steffen Maier
2020-09-10 9:18 ` Steffen Maier
2020-09-10 9:18 ` Steffen Maier
2020-09-10 9:18 ` [Intel-gfx] " Steffen Maier
2020-09-10 9:18 ` [Intel-wired-lan] " Steffen Maier
2020-09-10 9:18 ` Steffen Maier
2020-09-10 9:18 ` Steffen Maier
2020-09-10 9:24 ` Ilya Dryomov
2020-09-10 9:24 ` Ilya Dryomov
2020-09-10 9:24 ` Ilya Dryomov
2020-09-10 9:24 ` Ilya Dryomov
2020-09-10 9:24 ` Ilya Dryomov
2020-09-10 9:24 ` Ilya Dryomov
2020-09-10 9:24 ` Ilya Dryomov
2020-09-10 9:24 ` Ilya Dryomov
2020-09-10 9:24 ` Ilya Dryomov
2020-09-10 9:24 ` [Intel-gfx] " Ilya Dryomov
2020-09-10 9:24 ` [Intel-wired-lan] " Ilya Dryomov
2020-09-10 9:24 ` Ilya Dryomov
2020-09-10 9:24 ` Ilya Dryomov
2020-09-10 10:16 ` Matthias Brugger
2020-09-10 10:16 ` Matthias Brugger
2020-09-10 10:16 ` Matthias Brugger
2020-09-10 10:16 ` Matthias Brugger
2020-09-10 10:16 ` Matthias Brugger
2020-09-10 10:16 ` Matthias Brugger
2020-09-10 10:16 ` Matthias Brugger
2020-09-10 10:16 ` Matthias Brugger
2020-09-10 10:16 ` Matthias Brugger
2020-09-10 10:16 ` [Intel-gfx] " Matthias Brugger
2020-09-10 10:16 ` [Intel-wired-lan] " Matthias Brugger
2020-09-10 10:16 ` Matthias Brugger
2020-09-10 10:16 ` Matthias Brugger
2020-09-10 14:21 ` Robin Murphy
2020-09-10 14:21 ` Robin Murphy
2020-09-10 14:21 ` Robin Murphy
2020-09-10 14:21 ` Robin Murphy
2020-09-10 14:21 ` Robin Murphy
2020-09-10 14:21 ` Robin Murphy
2020-09-10 14:21 ` Robin Murphy
2020-09-10 14:21 ` Robin Murphy
2020-09-10 14:21 ` Robin Murphy
2020-09-10 14:21 ` [Intel-gfx] " Robin Murphy
2020-09-10 14:21 ` [Intel-wired-lan] " Robin Murphy
2020-09-10 14:21 ` Robin Murphy
2020-09-10 14:21 ` Robin Murphy
2020-09-11 4:19 ` Joe Perches
2020-09-11 4:19 ` Joe Perches
2020-09-11 4:19 ` Joe Perches
2020-09-11 4:19 ` Joe Perches
2020-09-11 4:19 ` Joe Perches
2020-09-11 4:19 ` Joe Perches
2020-09-11 4:19 ` Joe Perches
2020-09-11 4:19 ` Joe Perches
2020-09-11 4:19 ` Joe Perches
2020-09-11 4:19 ` [Intel-gfx] " Joe Perches
2020-09-11 4:19 ` [Intel-wired-lan] " Joe Perches
2020-09-11 4:19 ` Joe Perches
2020-09-11 4:19 ` Joe Perches
2020-09-15 9:06 ` [Intel-gfx] " Jani Nikula
2020-09-15 9:06 ` Jani Nikula
2020-09-15 9:06 ` Jani Nikula
2020-09-15 9:06 ` Jani Nikula
2020-09-15 9:06 ` Jani Nikula
2020-09-15 9:06 ` Jani Nikula
2020-09-15 9:06 ` Jani Nikula
2020-09-15 9:06 ` Jani Nikula
2020-09-15 9:06 ` Jani Nikula
2020-09-15 9:06 ` Jani Nikula
2020-09-15 9:06 ` [Intel-wired-lan] " Jani Nikula
2020-09-15 9:06 ` Jani Nikula
2020-09-15 9:06 ` Jani Nikula
2020-09-15 9:19 ` Miquel Raynal
2020-09-15 9:19 ` Miquel Raynal
2020-09-15 9:19 ` Miquel Raynal
2020-09-15 9:19 ` Miquel Raynal
2020-09-15 9:19 ` Miquel Raynal
2020-09-15 9:19 ` Miquel Raynal
2020-09-15 9:19 ` Miquel Raynal
2020-09-15 9:19 ` Miquel Raynal
2020-09-15 9:19 ` Miquel Raynal
2020-09-15 9:19 ` Miquel Raynal
2020-09-15 9:19 ` Miquel Raynal
2020-09-15 9:19 ` Miquel Raynal
2020-09-15 9:19 ` Miquel Raynal
2020-09-15 9:19 ` Miquel Raynal
2020-09-15 9:19 ` Miquel Raynal
2020-09-15 9:19 ` Miquel Raynal
2020-09-15 9:19 ` Miquel Raynal
2020-09-15 9:19 ` Miquel Raynal
2020-09-15 9:19 ` Miquel Raynal
2020-09-15 9:19 ` Miquel Raynal
2020-09-15 9:19 ` Miquel Raynal
2020-09-15 9:19 ` [Intel-gfx] " Miquel Raynal
2020-09-15 9:19 ` [Intel-wired-lan] " Miquel Raynal
2020-09-15 9:19 ` Miquel Raynal
2020-09-15 9:19 ` Miquel Raynal
2020-09-15 9:19 ` Miquel Raynal
2020-09-15 9:19 ` Miquel Raynal
2020-09-15 9:19 ` Miquel Raynal
[not found] ` <e6387578c75736d61b2fe70d9783d91329a97eb4.camel-6d6DIl74uiNBDgjK7y7TUQ@public.gmane.org>
2020-09-15 9:19 ` Miquel Raynal
2020-09-15 9:19 ` Miquel Raynal
2020-09-15 9:19 ` Miquel Raynal
2020-09-15 9:19 ` Miquel Raynal
2020-09-15 9:19 ` Miquel Raynal
2020-09-15 9:19 ` Miquel Raynal
2020-09-15 9:19 ` Miquel Raynal
2020-09-15 9:19 ` Miquel Raynal
2020-09-15 9:19 ` Miquel Raynal
2020-09-15 9:19 ` Miquel Raynal
2020-09-17 8:03 ` [oss-drivers] " Simon Horman
2020-09-17 8:03 ` Simon Horman
2020-09-17 8:03 ` Simon Horman
2020-09-17 8:03 ` Simon Horman
2020-09-17 8:03 ` Simon Horman
2020-09-17 8:03 ` Simon Horman
2020-09-17 8:03 ` Simon Horman
2020-09-17 8:03 ` Simon Horman
2020-09-17 8:03 ` [Intel-gfx] " Simon Horman
2020-09-17 8:03 ` [Intel-wired-lan] " Simon Horman
2020-09-17 8:03 ` Simon Horman
2020-09-17 8:03 ` Simon Horman
2020-09-17 8:03 ` Simon Horman
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=20200910065312.GH1031@ninjato \
--to=wsa@kernel.org \
--cc=alsa-devel@alsa-project.org \
--cc=bpf@vger.kernel.org \
--cc=ceph-devel@vger.kernel.org \
--cc=coreteam@netfilter.org \
--cc=dccp@vger.kernel.org \
--cc=dm-devel@redhat.com \
--cc=dri-devel@lists.freedesktop.org \
--cc=intel-gfx@lists.freedesktop.org \
--cc=intel-wired-lan@lists.osuosl.org \
--cc=iommu@lists.linux-foundation.org \
--cc=joe@perches.com \
--cc=kees.cook@canonical.com \
--cc=kvmarm@lists.cs.columbia.edu \
--cc=linux-afs@lists.infradead.org \
--cc=linux-arm-kernel@lists.infradead.org \
--cc=linux-atm-general@lists.sourceforge.net \
--cc=linux-crypto@vger.kernel.org \
--cc=linux-fbdev@vger.kernel.org \
--cc=linux-i2c@vger.kernel.org \
--cc=linux-ide@vger.kernel.org \
--cc=linux-input@vger.kernel.org \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-media@vger.kernel.org \
--cc=linux-mediatek@lists.infradead.org \
--cc=linux-mips@vger.kernel.org \
--cc=linux-mmc@vger.kernel.org \
--cc=linux-mtd@lists.infradead.org \
--cc=linux-nfs@vger.kernel.org \
--cc=linux-nvme@lists.infradead.org \
--cc=linux-parisc@vger.kernel.org \
--cc=linux-pm@vger.kernel.org \
--cc=linux-rdma@vger.kernel.org \
--cc=linux-rtc@vger.kernel.org \
--cc=linux-s390@vger.kernel.org \
--cc=linux-scsi@vger.kernel.org \
--cc=linux-sctp@vger.kernel.org \
--cc=linux-serial@vger.kernel.org \
--cc=linux-usb@vger.kernel.org \
--cc=linux-wireless@vger.kernel.org \
--cc=linuxppc-dev@lists.ozlabs.org \
--cc=ndesaulniers@google.com \
--cc=netdev@vger.kernel.org \
--cc=netfilter-devel@vger.kernel.org \
--cc=nouveau@lists.freedesktop.org \
--cc=oss-drivers@netronome.com \
--cc=sparclinux@vger.kernel.org \
--cc=storagedev@microchip.com \
--cc=trivial@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 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.