* bcache-tools: minor change for bcache-register
@ 2013-08-26 9:14 Rolf Fokkens
[not found] ` <521B1C5E.2090007-6w2rdlBuEQTpMFipWq+H6g@public.gmane.org>
0 siblings, 1 reply; 14+ messages in thread
From: Rolf Fokkens @ 2013-08-26 9:14 UTC (permalink / raw)
To: linux-bcache-u79uwXL29TY76Z2rM5mHXA
Hi!
bcache-register is called from the provided udev rules in bcache-tools.
During boot it seams like some devices are registered multiple times,
which results in messages during boot. To suppress these messages I
redirect them to /dev/null in the following patch:
--- bcache-tools-20130820/bcache-register.register 2013-08-20
22:03:46.000000000 +0200
+++ bcache-tools-20130820/bcache-register 2013-08-25
21:31:11.707823194 +0200
@@ -1,4 +1,9 @@
#!/bin/sh
-modprobe -qba bcache
-test -f /sys/fs/bcache/register && echo "$1" > /sys/fs/bcache/register
+#
+# Utility script to be called from udev, so it's not monkey proof at
all. It's
+# sole purpose is to load the bcache kernel module whenever a bcache
device is
+# detected.
+#
+/usr/sbin/modprobe -qba bcache
+test -f /sys/fs/bcache/register && echo "$1" > /sys/fs/bcache/register
2>/dev/null
I can imagine there's a more elegant solution, suggestions are welcome.
Rolf
^ permalink raw reply [flat|nested] 14+ messages in thread
* Re: bcache-tools: minor change for bcache-register
[not found] ` <521B1C5E.2090007-6w2rdlBuEQTpMFipWq+H6g@public.gmane.org>
@ 2013-08-26 16:17 ` Darrick J. Wong
2013-08-26 16:31 ` Gabriel de Perthuis
2013-08-26 21:41 ` bcache-tools: minor change for bcache-register Kent Overstreet
1 sibling, 1 reply; 14+ messages in thread
From: Darrick J. Wong @ 2013-08-26 16:17 UTC (permalink / raw)
To: Rolf Fokkens; +Cc: linux-bcache-u79uwXL29TY76Z2rM5mHXA
On Mon, Aug 26, 2013 at 11:14:06AM +0200, Rolf Fokkens wrote:
> Hi!
>
> bcache-register is called from the provided udev rules in
> bcache-tools. During boot it seams like some devices are registered
> multiple times, which results in messages during boot. To suppress
> these messages I redirect them to /dev/null in the following patch:
>
> --- bcache-tools-20130820/bcache-register.register 2013-08-20
> 22:03:46.000000000 +0200
> +++ bcache-tools-20130820/bcache-register 2013-08-25
> 21:31:11.707823194 +0200
> @@ -1,4 +1,9 @@
> #!/bin/sh
> -modprobe -qba bcache
> -test -f /sys/fs/bcache/register && echo "$1" > /sys/fs/bcache/register
> +#
> +# Utility script to be called from udev, so it's not monkey proof
> at all. It's
> +# sole purpose is to load the bcache kernel module whenever a
> bcache device is
> +# detected.
> +#
> +/usr/sbin/modprobe -qba bcache
> +test -f /sys/fs/bcache/register && echo "$1" >
> /sys/fs/bcache/register 2>/dev/null
>
> I can imagine there's a more elegant solution, suggestions are welcome.
/sys/fs/bcache/register_quiet
--D
>
> Rolf
>
> --
> To unsubscribe from this list: send the line "unsubscribe linux-bcache" in
> the body of a message to majordomo-u79uwXL29TY76Z2rM5mHXA@public.gmane.org
> More majordomo info at http://vger.kernel.org/majordomo-info.html
^ permalink raw reply [flat|nested] 14+ messages in thread
* Re: bcache-tools: minor change for bcache-register
2013-08-26 16:17 ` Darrick J. Wong
@ 2013-08-26 16:31 ` Gabriel de Perthuis
2013-08-26 16:54 ` [PATCH] bcache: Downgrade "device already registered" to pr_debug Gabriel de Perthuis
2013-08-26 21:48 ` bcache-tools: minor change for bcache-register Kent Overstreet
0 siblings, 2 replies; 14+ messages in thread
From: Gabriel de Perthuis @ 2013-08-26 16:31 UTC (permalink / raw)
To: linux-bcache-u79uwXL29TY76Z2rM5mHXA
On Mon, 26 Aug 2013 09:17:58 -0700, Darrick J. Wong wrote:
> On Mon, Aug 26, 2013 at 11:14:06AM +0200, Rolf Fokkens wrote:
>> /sys/fs/bcache/register 2>/dev/null
>>
>> I can imagine there's a more elegant solution, suggestions are welcome.
>
> /sys/fs/bcache/register_quiet
Good point: the messages come from the kernel.
register_quiet would make legitimate errors harder to debug however.
I'll just send a patch to change "device already registered"
to a low-priority pr_debug message rather than something that
looks like an error.
^ permalink raw reply [flat|nested] 14+ messages in thread
* [PATCH] bcache: Downgrade "device already registered" to pr_debug
2013-08-26 16:31 ` Gabriel de Perthuis
@ 2013-08-26 16:54 ` Gabriel de Perthuis
2013-08-26 21:48 ` bcache-tools: minor change for bcache-register Kent Overstreet
1 sibling, 0 replies; 14+ messages in thread
From: Gabriel de Perthuis @ 2013-08-26 16:54 UTC (permalink / raw)
To: Kent Overstreet, linux-bcache-u79uwXL29TY76Z2rM5mHXA,
linux-kernel-u79uwXL29TY76Z2rM5mHXA
Cc: Gabriel de Perthuis
People tended to see:
(info) bcache: register_bcache() error opening /dev/blah: device already registered
as more problematic than it really is. Change it to:
(debug) bcache: register_bcache() device /dev/blah is already registered
and don't return -EINVAL in this case.
Signed-off-by: Gabriel de Perthuis <g2p.code-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org>
---
drivers/md/bcache/super.c | 13 ++++++++-----
1 file changed, 8 insertions(+), 5 deletions(-)
diff --git a/drivers/md/bcache/super.c b/drivers/md/bcache/super.c
index a41c681..b09e973 100644
--- a/drivers/md/bcache/super.c
+++ b/drivers/md/bcache/super.c
@@ -1894,21 +1894,24 @@ static ssize_t register_bcache(struct kobject *k, struct kobj_attribute *attr,
if (!(path = kstrndup(buffer, size, GFP_KERNEL)) ||
!(sb = kmalloc(sizeof(struct cache_sb), GFP_KERNEL)))
goto err;
- err = "failed to open device";
bdev = blkdev_get_by_path(strim(path),
FMODE_READ|FMODE_WRITE|FMODE_EXCL,
sb);
if (IS_ERR(bdev)) {
if (bdev == ERR_PTR(-EBUSY)) {
bdev = lookup_bdev(strim(path));
- if (!IS_ERR(bdev) && bch_is_open(bdev))
- err = "device already registered";
- else
- err = "device busy";
+ if (!IS_ERR(bdev) && bch_is_open(bdev)) {
+ pr_debug("device %s is already registered",
+ path);
+ goto out;
+ }
+ err = "device busy";
+ } else {
+ err = "failed to open device";
}
goto err;
}
err = "failed to set blocksize";
--
1.8.4.rc0.5.g48765cc
^ permalink raw reply related [flat|nested] 14+ messages in thread
* Re: bcache-tools: minor change for bcache-register
[not found] ` <521B1C5E.2090007-6w2rdlBuEQTpMFipWq+H6g@public.gmane.org>
2013-08-26 16:17 ` Darrick J. Wong
@ 2013-08-26 21:41 ` Kent Overstreet
2013-08-27 6:58 ` Rolf Fokkens
1 sibling, 1 reply; 14+ messages in thread
From: Kent Overstreet @ 2013-08-26 21:41 UTC (permalink / raw)
To: Rolf Fokkens; +Cc: linux-bcache-u79uwXL29TY76Z2rM5mHXA
On Mon, Aug 26, 2013 at 11:14:06AM +0200, Rolf Fokkens wrote:
> Hi!
>
> bcache-register is called from the provided udev rules in
> bcache-tools. During boot it seams like some devices are registered
> multiple times, which results in messages during boot. To suppress
> these messages I redirect them to /dev/null in the following patch:
>
> --- bcache-tools-20130820/bcache-register.register 2013-08-20
> 22:03:46.000000000 +0200
> +++ bcache-tools-20130820/bcache-register 2013-08-25
> 21:31:11.707823194 +0200
> @@ -1,4 +1,9 @@
> #!/bin/sh
> -modprobe -qba bcache
> -test -f /sys/fs/bcache/register && echo "$1" > /sys/fs/bcache/register
> +#
> +# Utility script to be called from udev, so it's not monkey proof
> at all. It's
> +# sole purpose is to load the bcache kernel module whenever a
> bcache device is
> +# detected.
> +#
> +/usr/sbin/modprobe -qba bcache
> +test -f /sys/fs/bcache/register && echo "$1" >
> /sys/fs/bcache/register 2>/dev/null
>
> I can imagine there's a more elegant solution, suggestions are welcome.
Just use /sys/fs/bcache/register_quiet instead of register.
I'll change it to do that.
^ permalink raw reply [flat|nested] 14+ messages in thread
* Re: bcache-tools: minor change for bcache-register
2013-08-26 16:31 ` Gabriel de Perthuis
2013-08-26 16:54 ` [PATCH] bcache: Downgrade "device already registered" to pr_debug Gabriel de Perthuis
@ 2013-08-26 21:48 ` Kent Overstreet
2013-08-26 22:16 ` Gabriel de Perthuis
1 sibling, 1 reply; 14+ messages in thread
From: Kent Overstreet @ 2013-08-26 21:48 UTC (permalink / raw)
To: Gabriel de Perthuis; +Cc: linux-bcache-u79uwXL29TY76Z2rM5mHXA
On Mon, Aug 26, 2013 at 04:31:25PM +0000, Gabriel de Perthuis wrote:
> On Mon, 26 Aug 2013 09:17:58 -0700, Darrick J. Wong wrote:
> > On Mon, Aug 26, 2013 at 11:14:06AM +0200, Rolf Fokkens wrote:
> >> /sys/fs/bcache/register 2>/dev/null
> >>
> >> I can imagine there's a more elegant solution, suggestions are welcome.
> >
> > /sys/fs/bcache/register_quiet
>
> Good point: the messages come from the kernel.
>
> register_quiet would make legitimate errors harder to debug however.
>
> I'll just send a patch to change "device already registered"
> to a low-priority pr_debug message rather than something that
> looks like an error.
register_quiet isn't supposed to suppress legit errors - if it does
that's a bug
^ permalink raw reply [flat|nested] 14+ messages in thread
* Re: bcache-tools: minor change for bcache-register
2013-08-26 21:48 ` bcache-tools: minor change for bcache-register Kent Overstreet
@ 2013-08-26 22:16 ` Gabriel de Perthuis
[not found] ` <521BD3C0.9070209-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org>
0 siblings, 1 reply; 14+ messages in thread
From: Gabriel de Perthuis @ 2013-08-26 22:16 UTC (permalink / raw)
To: Kent Overstreet; +Cc: linux-bcache-u79uwXL29TY76Z2rM5mHXA
>> I'll just send a patch to change "device already registered"
>> to a low-priority pr_debug message rather than something that
>> looks like an error.
>
> register_quiet isn't supposed to suppress legit errors - if it does
> that's a bug
It does suppress all the err = "…" messages in register_bcache from super.c;
I don't know how often they come up in practice. From the read_super call
on, errors get reported by the called functions.
^ permalink raw reply [flat|nested] 14+ messages in thread
* [PATCH] bcache: register_quiet should still report errors
[not found] ` <521BD3C0.9070209-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org>
@ 2013-08-26 22:31 ` Gabriel de Perthuis
[not found] ` <1377556306-29938-1-git-send-email-g2p.code-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org>
0 siblings, 1 reply; 14+ messages in thread
From: Gabriel de Perthuis @ 2013-08-26 22:31 UTC (permalink / raw)
To: linux-bcache-u79uwXL29TY76Z2rM5mHXA,
linux-kernel-u79uwXL29TY76Z2rM5mHXA, Kent Overstreet
Cc: Gabriel de Perthuis
register_quiet should still report all errors except
"device already registered".
Before this some potential errors would be silenced.
Signed-off-by: Gabriel de Perthuis <g2p.code-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org>
---
drivers/md/bcache/super.c | 10 ++++++----
1 file changed, 6 insertions(+), 4 deletions(-)
diff --git a/drivers/md/bcache/super.c b/drivers/md/bcache/super.c
index a41c681..c3a3dc8 100644
--- a/drivers/md/bcache/super.c
+++ b/drivers/md/bcache/super.c
@@ -1901,14 +1901,17 @@ static ssize_t register_bcache(struct kobject *k, struct kobj_attribute *attr,
FMODE_READ|FMODE_WRITE|FMODE_EXCL,
sb);
if (IS_ERR(bdev)) {
if (bdev == ERR_PTR(-EBUSY)) {
bdev = lookup_bdev(strim(path));
- if (!IS_ERR(bdev) && bch_is_open(bdev))
+ if (!IS_ERR(bdev) && bch_is_open(bdev)) {
+ if (attr == &ksysfs_register_quiet)
+ goto out;
err = "device already registered";
- else
+ } else {
err = "device busy";
+ }
}
goto err;
}
err = "failed to set blocksize";
@@ -1942,12 +1945,11 @@ out:
return ret;
err_close:
blkdev_put(bdev, FMODE_READ|FMODE_WRITE|FMODE_EXCL);
err:
- if (attr != &ksysfs_register_quiet)
- pr_info("error opening %s: %s", path, err);
+ pr_info("error opening %s: %s", path, err);
ret = -EINVAL;
goto out;
}
static int bcache_reboot(struct notifier_block *n, unsigned long code, void *x)
--
1.8.4.rc0.5.g48765cc
^ permalink raw reply related [flat|nested] 14+ messages in thread
* Re: [PATCH] bcache: register_quiet should still report errors
[not found] ` <1377556306-29938-1-git-send-email-g2p.code-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org>
@ 2013-08-26 22:37 ` Gabriel de Perthuis
0 siblings, 0 replies; 14+ messages in thread
From: Gabriel de Perthuis @ 2013-08-26 22:37 UTC (permalink / raw)
To: Kent Overstreet
Cc: linux-bcache-u79uwXL29TY76Z2rM5mHXA,
linux-kernel-u79uwXL29TY76Z2rM5mHXA
> register_quiet should still report all errors except
> "device already registered".
>
> Before this some potential errors would be silenced.
This can replace my other patch in this thread.
Switching /lib/udev/bcache-register to register_quiet
without this kernel patch will suppress the aforementioned errors,
but they probably aren't too common so we can live with it.
^ permalink raw reply [flat|nested] 14+ messages in thread
* Re: bcache-tools: minor change for bcache-register
2013-08-26 21:41 ` bcache-tools: minor change for bcache-register Kent Overstreet
@ 2013-08-27 6:58 ` Rolf Fokkens
[not found] ` <521C4E2B.8090008-6w2rdlBuEQTpMFipWq+H6g@public.gmane.org>
0 siblings, 1 reply; 14+ messages in thread
From: Rolf Fokkens @ 2013-08-27 6:58 UTC (permalink / raw)
To: Kent Overstreet; +Cc: linux-bcache-u79uwXL29TY76Z2rM5mHXA
Would you consider another change as well:
--- bcache-tools-20130827.orig/bcache-register 2013-08-26
23:46:19.000000000 +0200
+++ bcache-tools-20130827/bcache-register 2013-08-27
08:55:48.060477014 +0200
@@ -1,4 +1,4 @@
#!/bin/sh
-modprobe -qba bcache
+/sbin/modprobe -qba bcache
test -f /sys/fs/bcache/register_quiet && echo "$1" >
/sys/fs/bcache/register_quiet
/sbin is not in the $PATH for utilities started from udev. For Fedora it
isn't anyway, but it won't harm other distro's neither.
On 08/26/2013 11:41 PM, Kent Overstreet wrote:
> On Mon, Aug 26, 2013 at 11:14:06AM +0200, Rolf Fokkens wrote:
>> Hi!
>>
>> bcache-register is called from the provided udev rules in
>> bcache-tools. During boot it seams like some devices are registered
>> multiple times, which results in messages during boot. To suppress
>> these messages I redirect them to /dev/null in the following patch:
>>
>> --- bcache-tools-20130820/bcache-register.register 2013-08-20
>> 22:03:46.000000000 +0200
>> +++ bcache-tools-20130820/bcache-register 2013-08-25
>> 21:31:11.707823194 +0200
>> @@ -1,4 +1,9 @@
>> #!/bin/sh
>> -modprobe -qba bcache
>> -test -f /sys/fs/bcache/register && echo "$1" > /sys/fs/bcache/register
>> +#
>> +# Utility script to be called from udev, so it's not monkey proof
>> at all. It's
>> +# sole purpose is to load the bcache kernel module whenever a
>> bcache device is
>> +# detected.
>> +#
>> +/usr/sbin/modprobe -qba bcache
>> +test -f /sys/fs/bcache/register && echo "$1" >
>> /sys/fs/bcache/register 2>/dev/null
>>
>> I can imagine there's a more elegant solution, suggestions are welcome.
> Just use /sys/fs/bcache/register_quiet instead of register.
>
> I'll change it to do that.
^ permalink raw reply [flat|nested] 14+ messages in thread
* Re: bcache-tools: minor change for bcache-register
[not found] ` <521C4E2B.8090008-6w2rdlBuEQTpMFipWq+H6g@public.gmane.org>
@ 2013-08-27 10:00 ` Alex Pyrgiotis
2013-08-27 11:45 ` Gabriel de Perthuis
0 siblings, 1 reply; 14+ messages in thread
From: Alex Pyrgiotis @ 2013-08-27 10:00 UTC (permalink / raw)
To: Rolf Fokkens; +Cc: Kent Overstreet, linux-bcache-u79uwXL29TY76Z2rM5mHXA
On 08/27/2013 09:58 AM, Rolf Fokkens wrote:
> Would you consider another change as well:
>
> --- bcache-tools-20130827.orig/bcache-register 2013-08-26
> 23:46:19.000000000 +0200
> +++ bcache-tools-20130827/bcache-register 2013-08-27
> 08:55:48.060477014 +0200
> @@ -1,4 +1,4 @@
> #!/bin/sh
> -modprobe -qba bcache
> +/sbin/modprobe -qba bcache
> test -f /sys/fs/bcache/register_quiet && echo "$1" >
> /sys/fs/bcache/register_quiet
>
> /sbin is not in the $PATH for utilities started from udev. For Fedora it
> isn't anyway, but it won't harm other distro's neither.
>
Hi all,
Pardon the interrupt, but this is not the case for Arch Linux:
https://www.archlinux.org/news/binaries-move-to-usrbin-requiring-update-intervention/
In my opinion, if modprobe *has* to be called with the exact path name,
it would probably be clearer to use `which modprobe` and then call the
result.
Just my two cents...
--
Alex | apyrgio-Sqt7GMbKoOQ@public.gmane.org
^ permalink raw reply [flat|nested] 14+ messages in thread
* Re: bcache-tools: minor change for bcache-register
2013-08-27 10:00 ` Alex Pyrgiotis
@ 2013-08-27 11:45 ` Gabriel de Perthuis
2013-08-27 12:02 ` Rolf Fokkens
0 siblings, 1 reply; 14+ messages in thread
From: Gabriel de Perthuis @ 2013-08-27 11:45 UTC (permalink / raw)
To: linux-bcache-u79uwXL29TY76Z2rM5mHXA
On Tue, 27 Aug 2013 13:00:24 +0300, Alex Pyrgiotis wrote:
> On 08/27/2013 09:58 AM, Rolf Fokkens wrote:
>> -modprobe -qba bcache
>> +/sbin/modprobe -qba bcache
>> test -f /sys/fs/bcache/register_quiet && echo "$1" >
>> /sys/fs/bcache/register_quiet
>>
>> /sbin is not in the $PATH for utilities started from udev. For Fedora it
>> isn't anyway, but it won't harm other distro's neither.
>>
>
> Hi all,
>
> Pardon the interrupt, but this is not the case for Arch Linux:
> https://www.archlinux.org/news/binaries-move-to-usrbin-requiring-update-intervention/
>
> In my opinion, if modprobe *has* to be called with the exact path name,
> it would probably be clearer to use `which modprobe` and then call the
> result.
IME the exact path name is unnecessary.
Rolf, your best shot at contributing is to bring up problems that have
actually been encountered on Fedora. Changes need to come as a side
effect of discussions, not the other way around.
^ permalink raw reply [flat|nested] 14+ messages in thread
* Re: bcache-tools: minor change for bcache-register
2013-08-27 11:45 ` Gabriel de Perthuis
@ 2013-08-27 12:02 ` Rolf Fokkens
[not found] ` <521C9560.2020603-6w2rdlBuEQTpMFipWq+H6g@public.gmane.org>
0 siblings, 1 reply; 14+ messages in thread
From: Rolf Fokkens @ 2013-08-27 12:02 UTC (permalink / raw)
To: Gabriel de Perthuis; +Cc: linux-bcache-u79uwXL29TY76Z2rM5mHXA
Gabriel, I might have been unclear about this, but this __IS__ a problem
on Fedora. Without a full path for modprobe (/sbin/modprobe or
/usr/sbin/modprobe) in bcache-register, udev does not create the
/dev/bcache* devices. So at the moment I fix it in the package.
If this is however Fedora specific I'll have the fix it in the package
of course. But it's hard for me to tell, and /sbin/modprobe seemed like
a cross-distro solution to me.
On 08/27/2013 01:45 PM, Gabriel de Perthuis wrote:
> On Tue, 27 Aug 2013 13:00:24 +0300, Alex Pyrgiotis wrote:
>> On 08/27/2013 09:58 AM, Rolf Fokkens wrote:
>>> -modprobe -qba bcache
>>> +/sbin/modprobe -qba bcache
>>> test -f /sys/fs/bcache/register_quiet && echo "$1" >
>>> /sys/fs/bcache/register_quiet
>>>
>>> /sbin is not in the $PATH for utilities started from udev. For Fedora it
>>> isn't anyway, but it won't harm other distro's neither.
>>>
>> Hi all,
>>
>> Pardon the interrupt, but this is not the case for Arch Linux:
>> https://www.archlinux.org/news/binaries-move-to-usrbin-requiring-update-intervention/
>>
>> In my opinion, if modprobe *has* to be called with the exact path name,
>> it would probably be clearer to use `which modprobe` and then call the
>> result.
> IME the exact path name is unnecessary.
> Rolf, your best shot at contributing is to bring up problems that have
> actually been encountered on Fedora. Changes need to come as a side
> effect of discussions, not the other way around.
>
> --
> To unsubscribe from this list: send the line "unsubscribe linux-bcache" in
> the body of a message to majordomo-u79uwXL29TY76Z2rM5mHXA@public.gmane.org
> More majordomo info at http://vger.kernel.org/majordomo-info.html
^ permalink raw reply [flat|nested] 14+ messages in thread
* Re: bcache-tools: minor change for bcache-register
[not found] ` <521C9560.2020603-6w2rdlBuEQTpMFipWq+H6g@public.gmane.org>
@ 2013-08-27 12:11 ` Gabriel de Perthuis
0 siblings, 0 replies; 14+ messages in thread
From: Gabriel de Perthuis @ 2013-08-27 12:11 UTC (permalink / raw)
To: Rolf Fokkens; +Cc: linux-bcache-u79uwXL29TY76Z2rM5mHXA
> Gabriel, I might have been unclear about this, but this __IS__ a
> problem on Fedora. Without a full path for modprobe (/sbin/modprobe
> or /usr/sbin/modprobe) in bcache-register, udev does not create the
> /dev/bcache* devices. So at the moment I fix it in the package.
>
> If this is however Fedora specific I'll have the fix it in the
> package of course. But it's hard for me to tell, and /sbin/modprobe
> seemed like a cross-distro solution to me.
Oh, sorry. Apparently it's not possible to pick the same path due to
Arch/Ubuntu differences, and it's not possible to use PATH due to Fedora.
I'm fine with your solution since we haven't hard from an Arch packager
(the AUR package is lagging way behind).
^ permalink raw reply [flat|nested] 14+ messages in thread
end of thread, other threads:[~2013-08-27 12:11 UTC | newest]
Thread overview: 14+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-08-26 9:14 bcache-tools: minor change for bcache-register Rolf Fokkens
[not found] ` <521B1C5E.2090007-6w2rdlBuEQTpMFipWq+H6g@public.gmane.org>
2013-08-26 16:17 ` Darrick J. Wong
2013-08-26 16:31 ` Gabriel de Perthuis
2013-08-26 16:54 ` [PATCH] bcache: Downgrade "device already registered" to pr_debug Gabriel de Perthuis
2013-08-26 21:48 ` bcache-tools: minor change for bcache-register Kent Overstreet
2013-08-26 22:16 ` Gabriel de Perthuis
[not found] ` <521BD3C0.9070209-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org>
2013-08-26 22:31 ` [PATCH] bcache: register_quiet should still report errors Gabriel de Perthuis
[not found] ` <1377556306-29938-1-git-send-email-g2p.code-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org>
2013-08-26 22:37 ` Gabriel de Perthuis
2013-08-26 21:41 ` bcache-tools: minor change for bcache-register Kent Overstreet
2013-08-27 6:58 ` Rolf Fokkens
[not found] ` <521C4E2B.8090008-6w2rdlBuEQTpMFipWq+H6g@public.gmane.org>
2013-08-27 10:00 ` Alex Pyrgiotis
2013-08-27 11:45 ` Gabriel de Perthuis
2013-08-27 12:02 ` Rolf Fokkens
[not found] ` <521C9560.2020603-6w2rdlBuEQTpMFipWq+H6g@public.gmane.org>
2013-08-27 12:11 ` Gabriel de Perthuis
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox