* Commit 9a11899 (USB: OHCI: add missing PCI PM callbacks to ohci-pci.c) breaks several builds @ 2013-08-26 3:30 Guenter Roeck 2013-08-26 4:02 ` Guenter Roeck 0 siblings, 1 reply; 12+ messages in thread From: Guenter Roeck @ 2013-08-26 3:30 UTC (permalink / raw) To: linux-kernel@vger.kernel.org Cc: Linus Torvalds, Greg Kroah-Hartman, Alan Stern, Steve Cotton Broken builds: mips:ath79_defconfig parisc:defconfig sparc32:defconfig sparc64:defconfig tile:defconfig Error log: drivers/usb/host/ohci-pci.c: In function 'ohci_pci_init': drivers/usb/host/ohci-pci.c:309:35: error: 'ohci_suspend' undeclared (first use in this function) drivers/usb/host/ohci-pci.c:309:35: note: each undeclared identifier is reported only once for each function it appears in drivers/usb/host/ohci-pci.c:310:34: error: 'ohci_resume' undeclared (first use in this function) make[3]: *** [drivers/usb/host/ohci-pci.o] Error 1 Guenter ^ permalink raw reply [flat|nested] 12+ messages in thread
* Re: Commit 9a11899 (USB: OHCI: add missing PCI PM callbacks to ohci-pci.c) breaks several builds 2013-08-26 3:30 Commit 9a11899 (USB: OHCI: add missing PCI PM callbacks to ohci-pci.c) breaks several builds Guenter Roeck @ 2013-08-26 4:02 ` Guenter Roeck 2013-08-26 4:26 ` Greg Kroah-Hartman 0 siblings, 1 reply; 12+ messages in thread From: Guenter Roeck @ 2013-08-26 4:02 UTC (permalink / raw) To: linux-kernel@vger.kernel.org Cc: Linus Torvalds, Greg Kroah-Hartman, Alan Stern, Steve Cotton On 08/25/2013 08:30 PM, Guenter Roeck wrote: > Broken builds: > mips:ath79_defconfig > parisc:defconfig > sparc32:defconfig > sparc64:defconfig > tile:defconfig > Add: powerpc:ppc64e_defconfig powerpc:cell_defconfig powerps:maple_defconfig That makes it 8 out of 82 builds, or roughly 10% of all builds. My qemu test build for powerpc (which has its own config file) fails as well :(. Guenter > Error log: > drivers/usb/host/ohci-pci.c: In function 'ohci_pci_init': > drivers/usb/host/ohci-pci.c:309:35: error: 'ohci_suspend' undeclared (first use in this function) > drivers/usb/host/ohci-pci.c:309:35: note: each undeclared identifier is reported only once for each function it appears in > drivers/usb/host/ohci-pci.c:310:34: error: 'ohci_resume' undeclared (first use in this function) > make[3]: *** [drivers/usb/host/ohci-pci.o] Error 1 > > Guenter ^ permalink raw reply [flat|nested] 12+ messages in thread
* Re: Commit 9a11899 (USB: OHCI: add missing PCI PM callbacks to ohci-pci.c) breaks several builds 2013-08-26 4:02 ` Guenter Roeck @ 2013-08-26 4:26 ` Greg Kroah-Hartman 2013-08-26 4:56 ` Guenter Roeck ` (2 more replies) 0 siblings, 3 replies; 12+ messages in thread From: Greg Kroah-Hartman @ 2013-08-26 4:26 UTC (permalink / raw) To: Guenter Roeck Cc: linux-kernel@vger.kernel.org, Linus Torvalds, Alan Stern, Steve Cotton On Sun, Aug 25, 2013 at 09:02:15PM -0700, Guenter Roeck wrote: > On 08/25/2013 08:30 PM, Guenter Roeck wrote: > > Broken builds: > > mips:ath79_defconfig > > parisc:defconfig > > sparc32:defconfig > > sparc64:defconfig > > tile:defconfig > > > Add: > powerpc:ppc64e_defconfig > powerpc:cell_defconfig > powerps:maple_defconfig > > That makes it 8 out of 82 builds, or roughly 10% of all builds. > > My qemu test build for powerpc (which has its own config file) fails as well :(. Ugh, I got no reports of this from linux-next or the 0-day build system, odd. Alan, can you send a follow-on patch to fix this? thanks, greg k-h ^ permalink raw reply [flat|nested] 12+ messages in thread
* Re: Commit 9a11899 (USB: OHCI: add missing PCI PM callbacks to ohci-pci.c) breaks several builds 2013-08-26 4:26 ` Greg Kroah-Hartman @ 2013-08-26 4:56 ` Guenter Roeck 2013-08-26 14:47 ` Alan Stern 2013-08-26 14:53 ` [PATCH] USB: OHCI: fix build error related to ohci_suspend/resume Alan Stern 2 siblings, 0 replies; 12+ messages in thread From: Guenter Roeck @ 2013-08-26 4:56 UTC (permalink / raw) To: Greg Kroah-Hartman Cc: linux-kernel@vger.kernel.org, Linus Torvalds, Alan Stern, Steve Cotton On 08/25/2013 09:26 PM, Greg Kroah-Hartman wrote: > On Sun, Aug 25, 2013 at 09:02:15PM -0700, Guenter Roeck wrote: >> On 08/25/2013 08:30 PM, Guenter Roeck wrote: >>> Broken builds: >>> mips:ath79_defconfig >>> parisc:defconfig >>> sparc32:defconfig >>> sparc64:defconfig >>> tile:defconfig >>> >> Add: >> powerpc:ppc64e_defconfig >> powerpc:cell_defconfig >> powerps:maple_defconfig >> >> That makes it 8 out of 82 builds, or roughly 10% of all builds. >> >> My qemu test build for powerpc (which has its own config file) fails as well :(. > > Ugh, I got no reports of this from linux-next or the 0-day build system, > odd. > Maybe the build system isn't as comprehensive as mine, or it just takes a bit longer. My system caught it because you updated linux-stable to 3.11-rc7, which triggers all builds. The functions are only declared if CONFIG_PM is defined, yet are called unconditionally. This means the patch breaks in all configurations where CONFIG_PM is undefined and CONFIG_USB_OHCI_HCD_PCI is defined. Add this to the agenda at the kernel summit: We need more automated test coverage. It is a bit scary that my little pc-based server farm catches problems like this faster than everything else out there. And it isn't even the kind of problem I am looking for, but rather a side effect of the builds I am running. Guenter ^ permalink raw reply [flat|nested] 12+ messages in thread
* Re: Commit 9a11899 (USB: OHCI: add missing PCI PM callbacks to ohci-pci.c) breaks several builds 2013-08-26 4:26 ` Greg Kroah-Hartman 2013-08-26 4:56 ` Guenter Roeck @ 2013-08-26 14:47 ` Alan Stern 2013-08-26 14:53 ` [PATCH] USB: OHCI: fix build error related to ohci_suspend/resume Alan Stern 2 siblings, 0 replies; 12+ messages in thread From: Alan Stern @ 2013-08-26 14:47 UTC (permalink / raw) To: Greg Kroah-Hartman Cc: Guenter Roeck, Meelis Roos, linux-kernel@vger.kernel.org, Linus Torvalds, Steve Cotton On Sun, 25 Aug 2013, Greg Kroah-Hartman wrote: > On Sun, Aug 25, 2013 at 09:02:15PM -0700, Guenter Roeck wrote: > > On 08/25/2013 08:30 PM, Guenter Roeck wrote: > > > Broken builds: > > > mips:ath79_defconfig > > > parisc:defconfig > > > sparc32:defconfig > > > sparc64:defconfig > > > tile:defconfig > > > > > Add: > > powerpc:ppc64e_defconfig > > powerpc:cell_defconfig > > powerps:maple_defconfig > > > > That makes it 8 out of 82 builds, or roughly 10% of all builds. > > > > My qemu test build for powerpc (which has its own config file) fails as well :(. > > Ugh, I got no reports of this from linux-next or the 0-day build system, > odd. > > Alan, can you send a follow-on patch to fix this? I seem to have a blind spot for this sort of thing. Oh well, follow-on patch coming up... Alan Stern ^ permalink raw reply [flat|nested] 12+ messages in thread
* [PATCH] USB: OHCI: fix build error related to ohci_suspend/resume 2013-08-26 4:26 ` Greg Kroah-Hartman 2013-08-26 4:56 ` Guenter Roeck 2013-08-26 14:47 ` Alan Stern @ 2013-08-26 14:53 ` Alan Stern 2013-08-26 15:38 ` Greg Kroah-Hartman 2 siblings, 1 reply; 12+ messages in thread From: Alan Stern @ 2013-08-26 14:53 UTC (permalink / raw) To: Greg Kroah-Hartman Cc: Guenter Roeck, Meelis Roos, linux-kernel@vger.kernel.org, Linus Torvalds, Steve Cotton, USB list Commit 9a11899c5e69 (USB: OHCI: add missing PCI PM callbacks to ohci-pci.c) added missing ohci_suspend and ohci_resume callback pointers, but forgot that these callbacks are declared and defined only when CONFIG_PM is enabled. This patch adds a preprocessor conditional to avoid build errors when PM is disabled. Signed-off-by: Alan Stern <stern@rowland.harvard.edu> --- [as1702] drivers/usb/host/ohci-pci.c | 2 ++ 1 file changed, 2 insertions(+) Index: usb-3.11/drivers/usb/host/ohci-pci.c =================================================================== --- usb-3.11.orig/drivers/usb/host/ohci-pci.c +++ usb-3.11/drivers/usb/host/ohci-pci.c @@ -305,9 +305,11 @@ static int __init ohci_pci_init(void) ohci_init_driver(&ohci_pci_hc_driver, &pci_overrides); +#ifdef CONFIG_PM /* Entries for the PCI suspend/resume callbacks are special */ ohci_pci_hc_driver.pci_suspend = ohci_suspend; ohci_pci_hc_driver.pci_resume = ohci_resume; +#endif return pci_register_driver(&ohci_pci_driver); } ^ permalink raw reply [flat|nested] 12+ messages in thread
* Re: [PATCH] USB: OHCI: fix build error related to ohci_suspend/resume 2013-08-26 14:53 ` [PATCH] USB: OHCI: fix build error related to ohci_suspend/resume Alan Stern @ 2013-08-26 15:38 ` Greg Kroah-Hartman 2013-08-26 16:06 ` Guenter Roeck 0 siblings, 1 reply; 12+ messages in thread From: Greg Kroah-Hartman @ 2013-08-26 15:38 UTC (permalink / raw) To: Alan Stern Cc: Guenter Roeck, Meelis Roos, linux-kernel@vger.kernel.org, Linus Torvalds, Steve Cotton, USB list On Mon, Aug 26, 2013 at 10:53:53AM -0400, Alan Stern wrote: > Commit 9a11899c5e69 (USB: OHCI: add missing PCI PM callbacks to > ohci-pci.c) added missing ohci_suspend and ohci_resume callback > pointers, but forgot that these callbacks are declared and defined > only when CONFIG_PM is enabled. > > This patch adds a preprocessor conditional to avoid build errors when > PM is disabled. > > Signed-off-by: Alan Stern <stern@rowland.harvard.edu> > > --- Guenter and Meelis, does the patch below fix the problem for you? thanks, greg k-h ^ permalink raw reply [flat|nested] 12+ messages in thread
* Re: [PATCH] USB: OHCI: fix build error related to ohci_suspend/resume 2013-08-26 15:38 ` Greg Kroah-Hartman @ 2013-08-26 16:06 ` Guenter Roeck 2013-08-26 16:50 ` Greg Kroah-Hartman 0 siblings, 1 reply; 12+ messages in thread From: Guenter Roeck @ 2013-08-26 16:06 UTC (permalink / raw) To: Greg Kroah-Hartman Cc: Alan Stern, Meelis Roos, linux-kernel@vger.kernel.org, Linus Torvalds, Steve Cotton, USB list On Mon, Aug 26, 2013 at 08:38:40AM -0700, Greg Kroah-Hartman wrote: > On Mon, Aug 26, 2013 at 10:53:53AM -0400, Alan Stern wrote: > > Commit 9a11899c5e69 (USB: OHCI: add missing PCI PM callbacks to > > ohci-pci.c) added missing ohci_suspend and ohci_resume callback > > pointers, but forgot that these callbacks are declared and defined > > only when CONFIG_PM is enabled. > > > > This patch adds a preprocessor conditional to avoid build errors when > > PM is disabled. > > > > Signed-off-by: Alan Stern <stern@rowland.harvard.edu> > > > > --- > > Guenter and Meelis, does the patch below fix the problem for you? > Tested-by: Guenter Roeck <linux@roeck-us.net> Previously failing builds: mips:ath79_defconfig powerpc:ppc64e_defconfig powerpc:cell_defconfig powerpc:maple_defconfig parisc:defconfig tile:defconfig sparc32:defconfig sparc64:defconfig as well as the powerpc qemu test (with the config file used by the yocto project) All builds pass with the patch applied, as does the qemu test. Guenter ^ permalink raw reply [flat|nested] 12+ messages in thread
* Re: [PATCH] USB: OHCI: fix build error related to ohci_suspend/resume 2013-08-26 16:06 ` Guenter Roeck @ 2013-08-26 16:50 ` Greg Kroah-Hartman 2013-08-26 17:19 ` Guenter Roeck 0 siblings, 1 reply; 12+ messages in thread From: Greg Kroah-Hartman @ 2013-08-26 16:50 UTC (permalink / raw) To: Guenter Roeck Cc: Alan Stern, Meelis Roos, linux-kernel@vger.kernel.org, Linus Torvalds, Steve Cotton, USB list On Mon, Aug 26, 2013 at 09:06:27AM -0700, Guenter Roeck wrote: > On Mon, Aug 26, 2013 at 08:38:40AM -0700, Greg Kroah-Hartman wrote: > > On Mon, Aug 26, 2013 at 10:53:53AM -0400, Alan Stern wrote: > > > Commit 9a11899c5e69 (USB: OHCI: add missing PCI PM callbacks to > > > ohci-pci.c) added missing ohci_suspend and ohci_resume callback > > > pointers, but forgot that these callbacks are declared and defined > > > only when CONFIG_PM is enabled. > > > > > > This patch adds a preprocessor conditional to avoid build errors when > > > PM is disabled. > > > > > > Signed-off-by: Alan Stern <stern@rowland.harvard.edu> > > > > > > --- > > > > Guenter and Meelis, does the patch below fix the problem for you? > > > Tested-by: Guenter Roeck <linux@roeck-us.net> > > Previously failing builds: > mips:ath79_defconfig > powerpc:ppc64e_defconfig > powerpc:cell_defconfig > powerpc:maple_defconfig > parisc:defconfig > tile:defconfig > sparc32:defconfig > sparc64:defconfig > > as well as the powerpc qemu test (with the config file used > by the yocto project) > > All builds pass with the patch applied, as does the qemu test. Thanks for testing, I'll queue it up later today (at an airport right now, about to board a flight), and send it to Linus later tonight if no one else has any problems with it. thanks, greg k-h ^ permalink raw reply [flat|nested] 12+ messages in thread
* Re: [PATCH] USB: OHCI: fix build error related to ohci_suspend/resume 2013-08-26 16:50 ` Greg Kroah-Hartman @ 2013-08-26 17:19 ` Guenter Roeck 2013-08-26 22:14 ` Greg Kroah-Hartman 0 siblings, 1 reply; 12+ messages in thread From: Guenter Roeck @ 2013-08-26 17:19 UTC (permalink / raw) To: Greg Kroah-Hartman Cc: Alan Stern, Meelis Roos, linux-kernel@vger.kernel.org, Linus Torvalds, Steve Cotton, USB list On Mon, Aug 26, 2013 at 09:50:22AM -0700, Greg Kroah-Hartman wrote: > On Mon, Aug 26, 2013 at 09:06:27AM -0700, Guenter Roeck wrote: > > On Mon, Aug 26, 2013 at 08:38:40AM -0700, Greg Kroah-Hartman wrote: > > > On Mon, Aug 26, 2013 at 10:53:53AM -0400, Alan Stern wrote: > > > > Commit 9a11899c5e69 (USB: OHCI: add missing PCI PM callbacks to > > > > ohci-pci.c) added missing ohci_suspend and ohci_resume callback > > > > pointers, but forgot that these callbacks are declared and defined > > > > only when CONFIG_PM is enabled. > > > > > > > > This patch adds a preprocessor conditional to avoid build errors when > > > > PM is disabled. > > > > > > > > Signed-off-by: Alan Stern <stern@rowland.harvard.edu> > > > > > > > > --- > > > > > > Guenter and Meelis, does the patch below fix the problem for you? > > > > > Tested-by: Guenter Roeck <linux@roeck-us.net> > > > > Previously failing builds: > > mips:ath79_defconfig > > powerpc:ppc64e_defconfig > > powerpc:cell_defconfig > > powerpc:maple_defconfig > > parisc:defconfig > > tile:defconfig > > sparc32:defconfig > > sparc64:defconfig > > > > as well as the powerpc qemu test (with the config file used > > by the yocto project) > > > > All builds pass with the patch applied, as does the qemu test. > > Thanks for testing, I'll queue it up later today (at an airport right > now, about to board a flight), and send it to Linus later tonight if no > one else has any problems with it. > To simplify this kind of testing, I added a 'testing' branch to the list of branches I am auto-building. Right now it runs a complete test cycle with the patch applied on top of v3.11-rc7. This should ensure that the patch doesn't break any previously passing builds. You should see the results in the 'testing' column of the stable queue build table on http://server.roeck-us.net:8010/builders when you get out of the plane. Guenter ^ permalink raw reply [flat|nested] 12+ messages in thread
* Re: [PATCH] USB: OHCI: fix build error related to ohci_suspend/resume 2013-08-26 17:19 ` Guenter Roeck @ 2013-08-26 22:14 ` Greg Kroah-Hartman 2013-08-26 22:23 ` Guenter Roeck 0 siblings, 1 reply; 12+ messages in thread From: Greg Kroah-Hartman @ 2013-08-26 22:14 UTC (permalink / raw) To: Guenter Roeck Cc: Alan Stern, Meelis Roos, linux-kernel@vger.kernel.org, Linus Torvalds, Steve Cotton, USB list On Mon, Aug 26, 2013 at 10:19:03AM -0700, Guenter Roeck wrote: > On Mon, Aug 26, 2013 at 09:50:22AM -0700, Greg Kroah-Hartman wrote: > > On Mon, Aug 26, 2013 at 09:06:27AM -0700, Guenter Roeck wrote: > > > On Mon, Aug 26, 2013 at 08:38:40AM -0700, Greg Kroah-Hartman wrote: > > > > On Mon, Aug 26, 2013 at 10:53:53AM -0400, Alan Stern wrote: > > > > > Commit 9a11899c5e69 (USB: OHCI: add missing PCI PM callbacks to > > > > > ohci-pci.c) added missing ohci_suspend and ohci_resume callback > > > > > pointers, but forgot that these callbacks are declared and defined > > > > > only when CONFIG_PM is enabled. > > > > > > > > > > This patch adds a preprocessor conditional to avoid build errors when > > > > > PM is disabled. > > > > > > > > > > Signed-off-by: Alan Stern <stern@rowland.harvard.edu> > > > > > > > > > > --- > > > > > > > > Guenter and Meelis, does the patch below fix the problem for you? > > > > > > > Tested-by: Guenter Roeck <linux@roeck-us.net> > > > > > > Previously failing builds: > > > mips:ath79_defconfig > > > powerpc:ppc64e_defconfig > > > powerpc:cell_defconfig > > > powerpc:maple_defconfig > > > parisc:defconfig > > > tile:defconfig > > > sparc32:defconfig > > > sparc64:defconfig > > > > > > as well as the powerpc qemu test (with the config file used > > > by the yocto project) > > > > > > All builds pass with the patch applied, as does the qemu test. > > > > Thanks for testing, I'll queue it up later today (at an airport right > > now, about to board a flight), and send it to Linus later tonight if no > > one else has any problems with it. > > > To simplify this kind of testing, I added a 'testing' branch to the list of > branches I am auto-building. Right now it runs a complete test cycle with the > patch applied on top of v3.11-rc7. This should ensure that the patch doesn't > break any previously passing builds. You should see the results in the 'testing' > column of the stable queue build table on http://server.roeck-us.net:8010/builders > when you get out of the plane. Thanks, all looks good, except for xtensa, which says I broke something, but I can't understand what, as I don't see any networking patches in my tree at the moment. Any ideas? thanks, greg k-h ^ permalink raw reply [flat|nested] 12+ messages in thread
* Re: [PATCH] USB: OHCI: fix build error related to ohci_suspend/resume 2013-08-26 22:14 ` Greg Kroah-Hartman @ 2013-08-26 22:23 ` Guenter Roeck 0 siblings, 0 replies; 12+ messages in thread From: Guenter Roeck @ 2013-08-26 22:23 UTC (permalink / raw) To: Greg Kroah-Hartman Cc: Alan Stern, Meelis Roos, linux-kernel@vger.kernel.org, Linus Torvalds, Steve Cotton, USB list On Mon, Aug 26, 2013 at 03:14:14PM -0700, Greg Kroah-Hartman wrote: > On Mon, Aug 26, 2013 at 10:19:03AM -0700, Guenter Roeck wrote: > > On Mon, Aug 26, 2013 at 09:50:22AM -0700, Greg Kroah-Hartman wrote: > > > On Mon, Aug 26, 2013 at 09:06:27AM -0700, Guenter Roeck wrote: > > > > On Mon, Aug 26, 2013 at 08:38:40AM -0700, Greg Kroah-Hartman wrote: > > > > > On Mon, Aug 26, 2013 at 10:53:53AM -0400, Alan Stern wrote: > > > > > > Commit 9a11899c5e69 (USB: OHCI: add missing PCI PM callbacks to > > > > > > ohci-pci.c) added missing ohci_suspend and ohci_resume callback > > > > > > pointers, but forgot that these callbacks are declared and defined > > > > > > only when CONFIG_PM is enabled. > > > > > > > > > > > > This patch adds a preprocessor conditional to avoid build errors when > > > > > > PM is disabled. > > > > > > > > > > > > Signed-off-by: Alan Stern <stern@rowland.harvard.edu> > > > > > > > > > > > > --- > > > > > > > > > > Guenter and Meelis, does the patch below fix the problem for you? > > > > > > > > > Tested-by: Guenter Roeck <linux@roeck-us.net> > > > > > > > > Previously failing builds: > > > > mips:ath79_defconfig > > > > powerpc:ppc64e_defconfig > > > > powerpc:cell_defconfig > > > > powerpc:maple_defconfig > > > > parisc:defconfig > > > > tile:defconfig > > > > sparc32:defconfig > > > > sparc64:defconfig > > > > > > > > as well as the powerpc qemu test (with the config file used > > > > by the yocto project) > > > > > > > > All builds pass with the patch applied, as does the qemu test. > > > > > > Thanks for testing, I'll queue it up later today (at an airport right > > > now, about to board a flight), and send it to Linus later tonight if no > > > one else has any problems with it. > > > > > To simplify this kind of testing, I added a 'testing' branch to the list of > > branches I am auto-building. Right now it runs a complete test cycle with the > > patch applied on top of v3.11-rc7. This should ensure that the patch doesn't > > break any previously passing builds. You should see the results in the 'testing' > > column of the stable queue build table on http://server.roeck-us.net:8010/builders > > when you get out of the plane. > > Thanks, all looks good, except for xtensa, which says I broke something, > but I can't understand what, as I don't see any networking patches in my > tree at the moment. > That has been broken in Linus' tree for a while - at least since I started running my test builds. I don't understand xtensa good enough to know how to fix it. I have seen similar problems before, though, so I suspect it has something to do with the architecture and not with the affected file itself. I submitted a patch to fix the broken arm:allmodconfig build. Hopefully it should find its way into Linus' tree in the near future. Guenter ^ permalink raw reply [flat|nested] 12+ messages in thread
end of thread, other threads:[~2013-08-26 22:23 UTC | newest] Thread overview: 12+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2013-08-26 3:30 Commit 9a11899 (USB: OHCI: add missing PCI PM callbacks to ohci-pci.c) breaks several builds Guenter Roeck 2013-08-26 4:02 ` Guenter Roeck 2013-08-26 4:26 ` Greg Kroah-Hartman 2013-08-26 4:56 ` Guenter Roeck 2013-08-26 14:47 ` Alan Stern 2013-08-26 14:53 ` [PATCH] USB: OHCI: fix build error related to ohci_suspend/resume Alan Stern 2013-08-26 15:38 ` Greg Kroah-Hartman 2013-08-26 16:06 ` Guenter Roeck 2013-08-26 16:50 ` Greg Kroah-Hartman 2013-08-26 17:19 ` Guenter Roeck 2013-08-26 22:14 ` Greg Kroah-Hartman 2013-08-26 22:23 ` Guenter Roeck
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox