* [PATCH] cdc-wdm: fix "out-of-sync" due to missing notifications
@ 2016-05-13 15:39 Bjørn Mork
2016-05-13 16:59 ` Bjørn Mork
0 siblings, 1 reply; 7+ messages in thread
From: Bjørn Mork @ 2016-05-13 15:39 UTC (permalink / raw)
To: Greg Kroah-Hartman; +Cc: Oliver Neukum, linux-usb, Bjørn Mork, stable
The driver enforces a strict one-to-one relationship between the
received RESPONSE_AVAILABLE notifications and messages read from
the device. At the same time, it will cancel the interrupt URB
when there is no client holding the character device open.
Many devices do not cope well with this behaviour. They maintain
a FIFO queue of messages, and send notifications on a best effort
basis. Messages are queued regardless of whether the notification
is successful or not. So if the driver loses a single notification,
which can easily happen when the interrupt URB is cancelled, then
the device and driver becomes out-of-sync. New messages end up
at the end of the queue, while the associated notification makes
the driver read only the first message from the queue.
This state is permanent from a user point of view. There is no
no way to flush the device queue without resetting the device or
using another driver.
The problem is easy to hit with current QMI and MBIM command line
tools, which typically close the character device after seeing
the reply they expect. Any pending unsolicited messages from the
device will then trigger the driver bug.
Fix by always reading all queued messages from the device when
the notification URB is first submitted. This is expected to
end with an -EPIPE status when there are no more pending
messages, so demote the printk associated with -EPIPE to debug
level.
Cc: <stable@vger.kernel.org>
Signed-off-by: Bjørn Mork <bjorn@mork.no>
---
Hello,
this fixes a long standing problem which has become increasingly
annoying with each new generation of MBIM and QMI modems. They
simply do not expect the strict notification scheme we try to
enforce.
For a while I've tried to convice users to force the /dev/cdc-wdmX
device open, using tricks like "cat >/dev/cdc-wdm0". But semantics
like that are of course not acceptable. Opening and closing the
char device should never cause the permanent host/device communcation
failure it currently does. To make this worse, the only reset tool
available to users is typically unplugging and replugging. And
even that can be difficult if it is a laptop internal modem.
Please backport this to stable as well. The problem hits common
OpenWrt tools like umbim really hard.
Bjørn
drivers/usb/class/cdc-wdm.c | 25 ++++++++++++++++++++++++-
1 file changed, 24 insertions(+), 1 deletion(-)
diff --git a/drivers/usb/class/cdc-wdm.c b/drivers/usb/class/cdc-wdm.c
index 61ea87917433..f70972be2ee9 100644
--- a/drivers/usb/class/cdc-wdm.c
+++ b/drivers/usb/class/cdc-wdm.c
@@ -178,7 +178,7 @@ static void wdm_in_callback(struct urb *urb)
"nonzero urb status received: -ESHUTDOWN");
goto skip_error;
case -EPIPE:
- dev_err(&desc->intf->dev,
+ dev_dbg(&desc->intf->dev,
"nonzero urb status received: -EPIPE\n");
break;
default:
@@ -200,6 +200,19 @@ static void wdm_in_callback(struct urb *urb)
desc->reslength = length;
}
}
+
+ /*
+ * If desc->resp_count is unset, then the urb was submitted
+ * without a prior notification. If the device returned any
+ * data, then this implies that it had messages queued without
+ * notifying us. Continue reading until that queue is flushed.
+ */
+ if (!desc->resp_count && length) {
+ dev_dbg(&desc->intf->dev, "got %d bytes without notification\n", length);
+ set_bit(WDM_RESPONDING, &desc->flags);
+ usb_submit_urb(desc->response, GFP_ATOMIC);
+ }
+
skip_error:
wake_up(&desc->wait);
@@ -647,6 +660,16 @@ static int wdm_open(struct inode *inode, struct file *file)
dev_err(&desc->intf->dev,
"Error submitting int urb - %d\n", rv);
rv = usb_translate_errors(rv);
+ } else {
+ /*
+ * Some devices keep pending messages queued
+ * without resending notifications. We must
+ * flush the message queue before we can
+ * assume a one-to-one relationship between
+ * notifications and messages in the queue
+ */
+ set_bit(WDM_RESPONDING, &desc->flags);
+ rv = usb_submit_urb(desc->response, GFP_KERNEL);
}
} else {
rv = 0;
--
2.1.4
^ permalink raw reply related [flat|nested] 7+ messages in thread
* Re: [PATCH] cdc-wdm: fix "out-of-sync" due to missing notifications
2016-05-13 15:39 [PATCH] cdc-wdm: fix "out-of-sync" due to missing notifications Bjørn Mork
@ 2016-05-13 16:59 ` Bjørn Mork
2016-05-17 9:13 ` Oliver Neukum
0 siblings, 1 reply; 7+ messages in thread
From: Bjørn Mork @ 2016-05-13 16:59 UTC (permalink / raw)
To: Greg Kroah-Hartman; +Cc: Oliver Neukum, linux-usb, stable
Bjørn Mork <bjorn@mork.no> writes:
> The driver enforces a strict one-to-one relationship between the
> received RESPONSE_AVAILABLE notifications and messages read from
> the device. At the same time, it will cancel the interrupt URB
> when there is no client holding the character device open.
Never mind. Forget it.
This patch breaks other devices again. The immediate and unconditional
reading make them barf. I guess it can be worked around by delaying the
flushing until at least one notification is received, but I obviously
have to test this theory thoroughly on all devices I have.
Bjørn
^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: [PATCH] cdc-wdm: fix "out-of-sync" due to missing notifications
2016-05-13 16:59 ` Bjørn Mork
@ 2016-05-17 9:13 ` Oliver Neukum
2016-05-17 19:24 ` Bjørn Mork
0 siblings, 1 reply; 7+ messages in thread
From: Oliver Neukum @ 2016-05-17 9:13 UTC (permalink / raw)
To: Bjørn Mork; +Cc: Greg Kroah-Hartman, linux-usb, stable
On Fri, 2016-05-13 at 18:59 +0200, Bjørn Mork wrote:
> Bjørn Mork <bjorn@mork.no> writes:
>
> > The driver enforces a strict one-to-one relationship between the
> > received RESPONSE_AVAILABLE notifications and messages read from
> > the device. At the same time, it will cancel the interrupt URB
> > when there is no client holding the character device open.
>
> Never mind. Forget it.
>
> This patch breaks other devices again. The immediate and unconditional
> reading make them barf. I guess it can be worked around by delaying the
> flushing until at least one notification is received, but I obviously
> have to test this theory thoroughly on all devices I have.
Hi,
I think the best approach would be to keep the interrupt URB always
active. I didn't do this to conserve bandwidth, but if it makes devices
work, it certainly would be the best option.
Regards
Oliver
^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: [PATCH] cdc-wdm: fix "out-of-sync" due to missing notifications
2016-05-17 9:13 ` Oliver Neukum
@ 2016-05-17 19:24 ` Bjørn Mork
2016-05-17 21:49 ` Oliver Neukum
0 siblings, 1 reply; 7+ messages in thread
From: Bjørn Mork @ 2016-05-17 19:24 UTC (permalink / raw)
To: Oliver Neukum; +Cc: Greg Kroah-Hartman, linux-usb, stable
Oliver Neukum <oneukum@suse.com> writes:
> On Fri, 2016-05-13 at 18:59 +0200, Bjørn Mork wrote:
>> Bjørn Mork <bjorn@mork.no> writes:
>>
>> > The driver enforces a strict one-to-one relationship between the
>> > received RESPONSE_AVAILABLE notifications and messages read from
>> > the device. At the same time, it will cancel the interrupt URB
>> > when there is no client holding the character device open.
>>
>> Never mind. Forget it.
>>
>> This patch breaks other devices again. The immediate and unconditional
>> reading make them barf. I guess it can be worked around by delaying the
>> flushing until at least one notification is received, but I obviously
>> have to test this theory thoroughly on all devices I have.
>
> Hi,
>
> I think the best approach would be to keep the interrupt URB always
> active. I didn't do this to conserve bandwidth, but if it makes devices
> work, it certainly would be the best option.
Yes, I considered that. But this implies purging the device message
queue without telling userspace that we did so. At least with the
current driver design, which is based on a single limited size
buffer. If the device queues a number of unsolictied messages between
two userspace requests, then we really want all those unsolicted
messages delivered to the userspace program on the second request.
And I do think the original bandwidth (and power) conservative approach
is worth keeping too. There is no point in waking up these devices
unless there actually is an interested userspace application.
FWIW, my initial analysis of the problem with the patch was too quick
imprecise. The problem is simply the -EPIPE status we inevitably will
hit when the queue is empty, as I should have anticipated. It will be
returned to userspace translated to -EIO. I am currently testing a
version taking care of that, and it seems to behave well so far. I'll
submit it as soon as I am absoltely sure that it works on all WDM, QMI
and MBIM devices I have. Might take some time, since I am running out
of mini-PCIe and m.2 adapters..
Bjørn
^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: [PATCH] cdc-wdm: fix "out-of-sync" due to missing notifications
2016-05-17 19:24 ` Bjørn Mork
@ 2016-05-17 21:49 ` Oliver Neukum
2016-05-17 23:39 ` Bjørn Mork
0 siblings, 1 reply; 7+ messages in thread
From: Oliver Neukum @ 2016-05-17 21:49 UTC (permalink / raw)
To: Bjørn Mork; +Cc: Greg Kroah-Hartman, linux-usb, stable
On Tue, 2016-05-17 at 21:24 +0200, Bjørn Mork wrote:
> Oliver Neukum <oneukum@suse.com> writes:
>
> > On Fri, 2016-05-13 at 18:59 +0200, Bjørn Mork wrote:
> >> Bjørn Mork <bjorn@mork.no> writes:
> >>
> >> > The driver enforces a strict one-to-one relationship between the
> >> > received RESPONSE_AVAILABLE notifications and messages read from
> >> > the device. At the same time, it will cancel the interrupt URB
> >> > when there is no client holding the character device open.
> >>
> >> Never mind. Forget it.
> >>
> >> This patch breaks other devices again. The immediate and unconditional
> >> reading make them barf. I guess it can be worked around by delaying the
> >> flushing until at least one notification is received, but I obviously
> >> have to test this theory thoroughly on all devices I have.
> >
> > Hi,
> >
> > I think the best approach would be to keep the interrupt URB always
> > active. I didn't do this to conserve bandwidth, but if it makes devices
> > work, it certainly would be the best option.
>
> Yes, I considered that. But this implies purging the device message
> queue without telling userspace that we did so. At least with the
> current driver design, which is based on a single limited size
> buffer. If the device queues a number of unsolictied messages between
> two userspace requests, then we really want all those unsolicted
> messages delivered to the userspace program on the second request.
You might argue that if user space wants the data it should open the
device.
> And I do think the original bandwidth (and power) conservative approach
> is worth keeping too. There is no point in waking up these devices
> unless there actually is an interested userspace application.
They can sleep just fine. I did not imply that runtime PM should
be disabled.
> FWIW, my initial analysis of the problem with the patch was too quick
> imprecise. The problem is simply the -EPIPE status we inevitably will
> hit when the queue is empty, as I should have anticipated. It will be
> returned to userspace translated to -EIO. I am currently testing a
> version taking care of that, and it seems to behave well so far. I'll
> submit it as soon as I am absoltely sure that it works on all WDM, QMI
> and MBIM devices I have. Might take some time, since I am running out
> of mini-PCIe and m.2 adapters..
That looks a bit risky. Firstly, if you get -EPIPE after a notification
it is an error and must be reported as such, so you need an additional
state. And what do you do after -EPIPE? Do you clean up the stall
or not? And the fun really starts if you get a notification while
you clean the stall.
And are you sure all devices can cope with an unsolicited request?
Regards
Oliver
^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: [PATCH] cdc-wdm: fix "out-of-sync" due to missing notifications
2016-05-17 21:49 ` Oliver Neukum
@ 2016-05-17 23:39 ` Bjørn Mork
2016-05-18 8:12 ` Oliver Neukum
0 siblings, 1 reply; 7+ messages in thread
From: Bjørn Mork @ 2016-05-17 23:39 UTC (permalink / raw)
To: Oliver Neukum; +Cc: Greg Kroah-Hartman, linux-usb, stable
Oliver Neukum <oneukum@suse.com> writes:
> On Tue, 2016-05-17 at 21:24 +0200, Bjørn Mork wrote:
>> Oliver Neukum <oneukum@suse.com> writes:
>>
>> > On Fri, 2016-05-13 at 18:59 +0200, Bjørn Mork wrote:
>> >> Bjørn Mork <bjorn@mork.no> writes:
>> >>
>> >> > The driver enforces a strict one-to-one relationship between the
>> >> > received RESPONSE_AVAILABLE notifications and messages read from
>> >> > the device. At the same time, it will cancel the interrupt URB
>> >> > when there is no client holding the character device open.
>> >>
>> >> Never mind. Forget it.
>> >>
>> >> This patch breaks other devices again. The immediate and unconditional
>> >> reading make them barf. I guess it can be worked around by delaying the
>> >> flushing until at least one notification is received, but I obviously
>> >> have to test this theory thoroughly on all devices I have.
>> >
>> > Hi,
>> >
>> > I think the best approach would be to keep the interrupt URB always
>> > active. I didn't do this to conserve bandwidth, but if it makes devices
>> > work, it certainly would be the best option.
>>
>> Yes, I considered that. But this implies purging the device message
>> queue without telling userspace that we did so. At least with the
>> current driver design, which is based on a single limited size
>> buffer. If the device queues a number of unsolictied messages between
>> two userspace requests, then we really want all those unsolicted
>> messages delivered to the userspace program on the second request.
>
> You might argue that if user space wants the data it should open the
> device.
Maybe. It's a variant of the current situation, where userspace must
not close the device while a session is in progress.
The issue here is that userspace (and the driver) knows nothing about
what kind of messages the device decides to send, or when. So how can
userspace know that it wants the data? It can't. It has to keep the
device open just in case there is something interesting happening.
This is not the kind of semantics I'd like to present to any userspace
developer. We present a character device as an abstraction of a
hardware device. I believe a reasonable assumption from a userspace
developer is that the driver forwards all messages it reads from the
hardware to the character device. So either we don't read from hardware
when the character device is closed, or we cache everything we read
until the character device is open.
>> And I do think the original bandwidth (and power) conservative approach
>> is worth keeping too. There is no point in waking up these devices
>> unless there actually is an interested userspace application.
>
> They can sleep just fine. I did not imply that runtime PM should
> be disabled.
Yes, which means that we cancel the URBs.. I haven't been able to
reproduce it yet, but I think we might occasionally miss a notification
during suspend/resume too. But this is timing sensitive, and device
timing sensitive, so it's difficult to trigger on purpose.
For now I've ignored it. But I wouldn't be surprised if we end up
having to do the same "flush queue" excercise on every resume too.
>> FWIW, my initial analysis of the problem with the patch was too quick
>> imprecise. The problem is simply the -EPIPE status we inevitably will
>> hit when the queue is empty, as I should have anticipated. It will be
>> returned to userspace translated to -EIO. I am currently testing a
>> version taking care of that, and it seems to behave well so far. I'll
>> submit it as soon as I am absoltely sure that it works on all WDM, QMI
>> and MBIM devices I have. Might take some time, since I am running out
>> of mini-PCIe and m.2 adapters..
>
> That looks a bit risky. Firstly, if you get -EPIPE after a notification
> it is an error and must be reported as such, so you need an additional
> state.
Yes, -EPIPE should be reported if it occurs later when polling after a
notification. But no additional state is needed. That info is already
available.
> And what do you do after -EPIPE? Do you clean up the stall
> or not? And the fun really starts if you get a notification while
> you clean the stall.
No cleanup necessary/possible AFAICS: This is endpoint 0.
> And are you sure all devices can cope with an unsolicited request?
Nope. I am not sure about anything when it comes to USB device firmware
;)
Broad testing is definitely necessary. But realistically: How can it
possibly fail in other ways than returning 0 data bytes or stalling?
Wait... Don't answer that. Yes, I know. Some device will do something
completely wild. I'm just not sure that it is worth caring about...
The CDC spec isn't exactly clear, but I don't see any restrictions on
the use of GetEncapsulatedResponse there. On the contrary. There are
several examples in the spec referring to the case where the device has
no data. There is nothing identifying this as an error.
AFAICS, the spec allows a strictly polling CDC WDM driver, sending
periodial GetEncapsulatedResponse requests. You don't need to use the
interrupt endpoint if you don't want to.
But the set of specs involved are confusing enough to ensure all sorts
of firmware assumptions. The GetEncapsulatedResponse request is defined
in USBCDC1.2 without any semantics at all. This is fixed in the
CDCWMC1.1 spec, which defines the WDM class among other things. It goes
into detail in section 7:
"The firmware shall interpret GetEncapsulatedResponse as a request to
read response bytes. The firmware shall send the next wLength bytes
from the response. The firmware shall allow the host to retrieve data
using any number of GetEncapsulatedResponse requests. The firmware
shall return a zero- length reply if there are no data bytes
available.
The firmware shall send ResponseAvailable notifications periodically,
using any appropriate algorithm, to inform the host that there is data
available in the reply buffer. The firmware is allowed to send
ResponseAvailable notifications even if there is no data available,
but this will obviously reduce overall performance."
and also
"The function shall not return STALL in response to
GetEncapsulatedResponse."
Unfortunately, the CDCMBIM spec refers only to the USBCDC1.2 definition
with the additional MBIM specific message size restrictions. It does
not define its own semantics and it does not refer to the CDCWMC1.1
either. Logically I don't think anyone intended these specs to define
GetEncapsulatedResponse inconsistently. But they didn't enforce
consistence. Anyone reading just the MBIM spec and it's references will
miss the important examples and clarifying comments in CDCWMC1.1.
And when it comes to QMI devices... Those are of course only loosely
modelled after CDC ECM, and only the Qualcomm gods know what's hidden in
there. Could be pretty much anything. They don't seem to care about
open specs.
Well, whatever. None of this matters. What matters is what's
implemented in the devices out there. So testing, testing and testing.
A summary of what we do know so far:
- Some devices have problems with our current assumption about
notifications (although CDCWMC1.1 support that assumption).
- Some devices will respond with a stall if they have no data bufferend
and receive GetEncapsulatedResponse (although they should not
according to CDCWMC1.1).
It remains to see if there are any devices which cannot cope with an
unexpected GetEncapsulatedResponse.
Bjørn
^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: [PATCH] cdc-wdm: fix "out-of-sync" due to missing notifications
2016-05-17 23:39 ` Bjørn Mork
@ 2016-05-18 8:12 ` Oliver Neukum
0 siblings, 0 replies; 7+ messages in thread
From: Oliver Neukum @ 2016-05-18 8:12 UTC (permalink / raw)
To: Bjørn Mork; +Cc: Greg Kroah-Hartman, linux-usb, stable
On Wed, 2016-05-18 at 01:39 +0200, Bjørn Mork wrote:
> Oliver Neukum <oneukum@suse.com> writes:
> > On Tue, 2016-05-17 at 21:24 +0200, Bjørn Mork wrote:
> >> Oliver Neukum <oneukum@suse.com> writes:
> >>
> >> > On Fri, 2016-05-13 at 18:59 +0200, Bjørn Mork wrote:
> >> >> Bjørn Mork <bjorn@mork.no> writes:
> >> >>
> >> >> > The driver enforces a strict one-to-one relationship between the
> >> >> > received RESPONSE_AVAILABLE notifications and messages read from
> >> >> > the device. At the same time, it will cancel the interrupt URB
> >> >> > when there is no client holding the character device open.
> >> >>
> >> >> Never mind. Forget it.
> >> >>
> >> >> This patch breaks other devices again. The immediate and unconditional
> >> >> reading make them barf. I guess it can be worked around by delaying the
> >> >> flushing until at least one notification is received, but I obviously
> >> >> have to test this theory thoroughly on all devices I have.
> >> >
> >> > Hi,
> >> >
> >> > I think the best approach would be to keep the interrupt URB always
> >> > active. I didn't do this to conserve bandwidth, but if it makes devices
> >> > work, it certainly would be the best option.
> >>
> >> Yes, I considered that. But this implies purging the device message
> >> queue without telling userspace that we did so. At least with the
> >> current driver design, which is based on a single limited size
> >> buffer. If the device queues a number of unsolictied messages between
> >> two userspace requests, then we really want all those unsolicted
> >> messages delivered to the userspace program on the second request.
> >
> > You might argue that if user space wants the data it should open the
> > device.
>
> Maybe. It's a variant of the current situation, where userspace must
> not close the device while a session is in progress.
>
> The issue here is that userspace (and the driver) knows nothing about
> what kind of messages the device decides to send, or when. So how can
> userspace know that it wants the data? It can't. It has to keep the
> device open just in case there is something interesting happening.
Data is produced. If it is not processed, it must eventually be dropped.
The only question is how soon.
>
> This is not the kind of semantics I'd like to present to any userspace
> developer. We present a character device as an abstraction of a
> hardware device. I believe a reasonable assumption from a userspace
> developer is that the driver forwards all messages it reads from the
> hardware to the character device. So either we don't read from hardware
> when the character device is closed, or we cache everything we read
> until the character device is open.
Well, no, we cannot meet such guarantee unless we have flow control.
Why would it matter whether the kernel or the device drop data?
>
> >> And I do think the original bandwidth (and power) conservative approach
> >> is worth keeping too. There is no point in waking up these devices
> >> unless there actually is an interested userspace application.
> >
> > They can sleep just fine. I did not imply that runtime PM should
> > be disabled.
>
> Yes, which means that we cancel the URBs.. I haven't been able to
> reproduce it yet, but I think we might occasionally miss a notification
> during suspend/resume too. But this is timing sensitive, and device
> timing sensitive, so it's difficult to trigger on purpose.
System or runtime resume? Possibly we should just request a response
when we resume.
> For now I've ignored it. But I wouldn't be surprised if we end up
> having to do the same "flush queue" excercise on every resume too.
Yes.
> >> FWIW, my initial analysis of the problem with the patch was too quick
> >> imprecise. The problem is simply the -EPIPE status we inevitably will
> >> hit when the queue is empty, as I should have anticipated. It will be
> >> returned to userspace translated to -EIO. I am currently testing a
> >> version taking care of that, and it seems to behave well so far. I'll
> >> submit it as soon as I am absoltely sure that it works on all WDM, QMI
> >> and MBIM devices I have. Might take some time, since I am running out
> >> of mini-PCIe and m.2 adapters..
> >
> > That looks a bit risky. Firstly, if you get -EPIPE after a notification
> > it is an error and must be reported as such, so you need an additional
> > state.
>
> Yes, -EPIPE should be reported if it occurs later when polling after a
> notification. But no additional state is needed. That info is already
> available.
>
> > And what do you do after -EPIPE? Do you clean up the stall
> > or not? And the fun really starts if you get a notification while
> > you clean the stall.
>
> No cleanup necessary/possible AFAICS: This is endpoint 0.
True. But they shouldn't stall in the first place.
This is a rathole.
>
> > And are you sure all devices can cope with an unsolicited request?
>
> Nope. I am not sure about anything when it comes to USB device firmware
> ;)
>
> Broad testing is definitely necessary. But realistically: How can it
> possibly fail in other ways than returning 0 data bytes or stalling?
>
> Wait... Don't answer that. Yes, I know. Some device will do something
> completely wild. I'm just not sure that it is worth caring about...
AS far as we can maintain a sensible behavior with a black list
I agree.
> The firmware shall send ResponseAvailable notifications periodically,
> using any appropriate algorithm, to inform the host that there is data
> available in the reply buffer. The firmware is allowed to send
> ResponseAvailable notifications even if there is no data available,
> but this will obviously reduce overall performance."
That was the original reason to depend on the noitifications.
> It remains to see if there are any devices which cannot cope with an
> unexpected GetEncapsulatedResponse.
As long as they can be somehow dealt with, I am open to all
suggestions.
Regards
Oliver
^ permalink raw reply [flat|nested] 7+ messages in thread
end of thread, other threads:[~2016-05-18 8:16 UTC | newest]
Thread overview: 7+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2016-05-13 15:39 [PATCH] cdc-wdm: fix "out-of-sync" due to missing notifications Bjørn Mork
2016-05-13 16:59 ` Bjørn Mork
2016-05-17 9:13 ` Oliver Neukum
2016-05-17 19:24 ` Bjørn Mork
2016-05-17 21:49 ` Oliver Neukum
2016-05-17 23:39 ` Bjørn Mork
2016-05-18 8:12 ` Oliver Neukum
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox