public inbox for linux-xfs@vger.kernel.org
 help / color / mirror / Atom feed
* write barrier over device mapper supported or not?
@ 2007-12-11 22:42 Martin Steigerwald
  2007-12-12  3:36 ` Eric Sandeen
  0 siblings, 1 reply; 4+ messages in thread
From: Martin Steigerwald @ 2007-12-11 22:42 UTC (permalink / raw)
  To: linux-xfs


Hello!

Are write barriers over device mapper supported or not?

On LVM2 xfs tells me:

Dec 11 23:00:09 shambala kernel: Filesystem "dm-0": Disabling barriers, 
not supported by the underlying device
Dec 11 23:00:09 shambala kernel: XFS mounting filesystem dm-0
Dec 11 23:00:09 shambala kernel: Ending clean XFS mount for filesystem: 
dm-0

But when I mount ext3 on LVM2 I get:

Dec 11 23:05:34 shambala kernel: kjournald starting.  Commit interval 5 
seconds
Dec 11 23:05:34 shambala kernel: EXT3 FS on dm-1, internal journal
Dec 11 23:05:34 shambala kernel: EXT3-fs: mounted filesystem with ordered 
data mode.

even when I explicetely specify "-o barrier=1" which should enable 
barriers on ext3.

As far as I understood from the changelogs as I wrote my Linux-Magazin I 
thought there should be device mapper support in the kernel, but I can 
not reproduce that finding anymore at the moment.

But back then I also looked at the ext3 / jbd sources and found that jbd 
issues a warning when barrier support is not available. However I do not 
find that one either.

And when I use reisferfs it also seems that write barriers are not 
available over LVM2:

Dec 11 23:34:58 shambala kernel: ReiserFS: dm-2: found reiserfs 
format "3.6" with standard journal
Dec 11 23:34:58 shambala kernel: ReiserFS: dm-2: using ordered data mode
Dec 11 23:34:58 shambala kernel: reiserfs: using flush barriers
Dec 11 23:34:58 shambala kernel: ReiserFS: dm-2: journal params: device 
dm-2, size 8192, journal first block 18, max trans len 1024, max batch 
900, max commit age 30, max trans age 30
Dec 11 23:34:58 shambala kernel: ReiserFS: dm-2: checking transaction log 
(dm-2)
Dec 11 23:35:01 shambala kernel: reiserfs: disabling flush barriers on 
dm-2
Dec 11 23:35:01 shambala kernel: ReiserFS: dm-2: Using r5 hash to sort 
names
Dec 11 23:35:01 shambala kernel: ReiserFS: dm-2: warning: 
Created .reiserfs_priv on dm-2 - reserved for xattr storage.

Hmmm... too bad... means I will likely not use LVM on my next laptop 
harddisk. I think I should file a kernel bug report about that. Anyone 
knows of any plans to support write barriers via device mapper? Well I 
guess I should ask on dm-devel or so if such a mailinglist exists.

Ciao,
-- 
Martin 'Helios' Steigerwald - http://www.Lichtvoll.de
GPG: 03B0 0D6C 0040 0710 4AFA  B82F 991B EAAC A599 84C7

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: write barrier over device mapper supported or not?
  2007-12-11 22:42 write barrier over device mapper supported or not? Martin Steigerwald
@ 2007-12-12  3:36 ` Eric Sandeen
  2007-12-12  8:26   ` Martin Steigerwald
  2007-12-12 22:05   ` Martin Steigerwald
  0 siblings, 2 replies; 4+ messages in thread
From: Eric Sandeen @ 2007-12-12  3:36 UTC (permalink / raw)
  To: Martin Steigerwald; +Cc: linux-xfs

Martin Steigerwald wrote:
> Hello!
> 
> Are write barriers over device mapper supported or not?

Nope.

see dm_request():

        /*
         * There is no use in forwarding any barrier request since we can't
         * guarantee it is (or can be) handled by the targets correctly.
         */
        if (unlikely(bio_barrier(bio))) {
                bio_endio(bio, -EOPNOTSUPP);
                return 0;
        }


> On LVM2 xfs tells me:
> 
> Dec 11 23:00:09 shambala kernel: Filesystem "dm-0": Disabling barriers, 
> not supported by the underlying device
> Dec 11 23:00:09 shambala kernel: XFS mounting filesystem dm-0
> Dec 11 23:00:09 shambala kernel: Ending clean XFS mount for filesystem: 
> dm-0
> 
> But when I mount ext3 on LVM2 I get:
> 
> Dec 11 23:05:34 shambala kernel: kjournald starting.  Commit interval 5 
> seconds
> Dec 11 23:05:34 shambala kernel: EXT3 FS on dm-1, internal journal
> Dec 11 23:05:34 shambala kernel: EXT3-fs: mounted filesystem with ordered 
> data mode.
> 
> even when I explicetely specify "-o barrier=1" which should enable 
> barriers on ext3.
> 
> As far as I understood from the changelogs as I wrote my Linux-Magazin I 
> thought there should be device mapper support in the kernel, but I can 
> not reproduce that finding anymore at the moment.
> 
> But back then I also looked at the ext3 / jbd sources and found that jbd 
> issues a warning when barrier support is not available. However I do not 
> find that one either.

in journal_write_commit_record() there is such a warning, but not in the
mount path:

                printk(KERN_WARNING
                        "JBD: barrier-based sync failed on %s - "
                        "disabling barriers\n",
                        bdevname(journal->j_dev, b));

and if I set barrier=1 on an lvm-root test box, I do get:

JBD: barrier-based sync failed on dm-0 - disabling barriers

-Eric

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: write barrier over device mapper supported or not?
  2007-12-12  3:36 ` Eric Sandeen
@ 2007-12-12  8:26   ` Martin Steigerwald
  2007-12-12 22:05   ` Martin Steigerwald
  1 sibling, 0 replies; 4+ messages in thread
From: Martin Steigerwald @ 2007-12-12  8:26 UTC (permalink / raw)
  To: linux-xfs

Am Mittwoch 12 Dezember 2007 schrieb Eric Sandeen:
> Martin Steigerwald wrote:
> > Hello!
> >
> > Are write barriers over device mapper supported or not?
>
> Nope.
>
> see dm_request():
>
>         /*
>          * There is no use in forwarding any barrier request since we
> can't * guarantee it is (or can be) handled by the targets correctly.
> */
>         if (unlikely(bio_barrier(bio))) {
>                 bio_endio(bio, -EOPNOTSUPP);
>                 return 0;
>         }

Thanks for your definitive answer.

What does that mean? What is the target in that case? If it is the libata 
PATA internal notebook drive it actually should support barriers and then 
I actually would like device mapper to support them too. Or is LVM2 the 
target and device mapper can't tell that LVM2 supports it?

I ask myself the question why write barrier if half the kernel does not 
handle it correctly and I am limited to plain partitions if I want to use 
it? Well I think I will just file a bug report at kernel.bugzilla.org 
about it.

Ciao,
-- 
Martin 'Helios' Steigerwald - http://www.Lichtvoll.de
GPG: 03B0 0D6C 0040 0710 4AFA  B82F 991B EAAC A599 84C7

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: write barrier over device mapper supported or not?
  2007-12-12  3:36 ` Eric Sandeen
  2007-12-12  8:26   ` Martin Steigerwald
@ 2007-12-12 22:05   ` Martin Steigerwald
  1 sibling, 0 replies; 4+ messages in thread
From: Martin Steigerwald @ 2007-12-12 22:05 UTC (permalink / raw)
  To: linux-xfs

Am Mittwoch 12 Dezember 2007 schrieb Eric Sandeen:
> Martin Steigerwald wrote:
> > Hello!
> >
> > Are write barriers over device mapper supported or not?
>
> Nope.

[...]

> > But back then I also looked at the ext3 / jbd sources and found that
> > jbd issues a warning when barrier support is not available. However I
> > do not find that one either.
>
> in journal_write_commit_record() there is such a warning, but not in
> the mount path:
>
>                 printk(KERN_WARNING
>                         "JBD: barrier-based sync failed on %s - "
>                         "disabling barriers\n",
>                         bdevname(journal->j_dev, b));
>
> and if I set barrier=1 on an lvm-root test box, I do get:
>
> JBD: barrier-based sync failed on dm-0 - disabling barriers

Yes, I get it after actually touching a file and waiting for the kjournald 
commit interval of 5 seconds to occur.

Well I reported a bug about it, lets see what happens:

http://bugzilla.kernel.org/show_bug.cgi?id=9554

One might consider it being a feature wish of course.

-- 
Martin 'Helios' Steigerwald - http://www.Lichtvoll.de
GPG: 03B0 0D6C 0040 0710 4AFA  B82F 991B EAAC A599 84C7

^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2007-12-12 22:06 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2007-12-11 22:42 write barrier over device mapper supported or not? Martin Steigerwald
2007-12-12  3:36 ` Eric Sandeen
2007-12-12  8:26   ` Martin Steigerwald
2007-12-12 22:05   ` Martin Steigerwald

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox