Re: reiserfs patch for 2.4.0-final

2001-01-05 Thread Admin Mailing Lists


thanx everybody

-Tony
.-._.-._.-._.-._.-._.-._.-._.-._.-._.-._.-._.-._.-._.-._.-._.-._.-._.-.
Anthony J. Biacco   Network Administrator/Engineer
[EMAIL PROTECTED]   Intergrafix Internet Services

"Dream as if you'll live forever, live as if you'll die today"
http://www.asteroid-b612.orghttp://www.intergrafix.net
.-._.-._.-._.-._.-._.-._.-._.-._.-._.-._.-._.-._.-._.-._.-._.-._.-._.-.

On Fri, 5 Jan 2001, Alan Cox wrote:

> > Is ext2 upgradable to reiserfs or ext3?
> 
> You can live up and downgrade between ext2 and ext3. For ext2->reiser and back
> you need to backup/restore or use a new partition currently - unless someone
> has tools I've not seen
> 
> 

-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to [EMAIL PROTECTED]
Please read the FAQ at http://www.tux.org/lkml/



Re: reiserfs patch for 2.4.0-final

2001-01-05 Thread Alan Cox

> Is ext2 upgradable to reiserfs or ext3?

You can live up and downgrade between ext2 and ext3. For ext2->reiser and back
you need to backup/restore or use a new partition currently - unless someone
has tools I've not seen

-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to [EMAIL PROTECTED]
Please read the FAQ at http://www.tux.org/lkml/



Re: reiserfs patch for 2.4.0-final

2001-01-05 Thread Rik van Riel

On Fri, 5 Jan 2001, Admin Mailing Lists wrote:

> Is ext2 upgradable to reiserfs or ext3?

> If so, is it transparent..or like a umount, convert, mount..or
> do you like have to import to a whole new partition?

ext2 is upgradable to ext3; after you have created a journal
on the filesystem (either by hand or using tune2fs) you can
remount the filesystem as ext3.   If it turns out you don't
like ext3, you can even go back to ext2 by unmounting the ext3
fs and remounting it ext2.

Going to reiserfs will require a reformat of your partition,
because the format is completely different.

regards,

Rik
--
Virtual memory is like a game you can't win;
However, without VM there's truly nothing to loose...

http://www.surriel.com/
http://www.conectiva.com/   http://distro.conectiva.com.br/

-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to [EMAIL PROTECTED]
Please read the FAQ at http://www.tux.org/lkml/



Re: reiserfs patch for 2.4.0-final

2001-01-05 Thread Admin Mailing Lists


Is ext2 upgradable to reiserfs or ext3?
If so, is it transparent..or like a umount, convert, mount..or do you like
have to import to a whole new partition?
Pointers to any docs of this sort would work for an answer

Thanx,

-Tony
.-._.-._.-._.-._.-._.-._.-._.-._.-._.-._.-._.-._.-._.-._.-._.-._.-._.-.
Anthony J. Biacco   Network Administrator/Engineer
[EMAIL PROTECTED]   Intergrafix Internet Services

"Dream as if you'll live forever, live as if you'll die today"
http://www.asteroid-b612.orghttp://www.intergrafix.net
.-._.-._.-._.-._.-._.-._.-._.-._.-._.-._.-._.-._.-._.-._.-._.-._.-._.-.

On Fri, 5 Jan 2001, Rik van Riel wrote:

> On Fri, 5 Jan 2001, Chris Evans wrote:
> > On Fri, 5 Jan 2001, Chris Mason wrote:
> > 
> > > > Could someone create one single patch for the 2.4.0 ?
> > > >
> > > I put all the code into CVS, and Yura is making the official patch now.
> > 
> > Since 2.4.0 final should fix a few i/o performance issues
> > (particuarly under heavy write loads), a quick few ext2 vs.
> > reiserfs benchmarks would make very interesting reading ;-)
> 
> An easy way to gain a performance edge on ext2 would
> be to do proper write clustering in the reiserfs
> ->writepage() function...  
> 
> regards,
> 
> Rik
> --
> Virtual memory is like a game you can't win;
> However, without VM there's truly nothing to loose...
> 
>   http://www.surriel.com/
> http://www.conectiva.com/ http://distro.conectiva.com.br/
> 
> -
> To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
> the body of a message to [EMAIL PROTECTED]
> Please read the FAQ at http://www.tux.org/lkml/
> 

-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to [EMAIL PROTECTED]
Please read the FAQ at http://www.tux.org/lkml/



Re: reiserfs patch for 2.4.0-final

2001-01-05 Thread Chris Mason



On Friday, January 05, 2001 02:54:53 PM -0200 Rik van Riel
<[EMAIL PROTECTED]> wrote:

> On Fri, 5 Jan 2001, Chris Evans wrote:
>> On Fri, 5 Jan 2001, Chris Mason wrote:
>> 
>> > > Could someone create one single patch for the 2.4.0 ?
>> > > 
>> > I put all the code into CVS, and Yura is making the official patch now.
>> 
>> Since 2.4.0 final should fix a few i/o performance issues
>> (particuarly under heavy write loads), a quick few ext2 vs.
>> reiserfs benchmarks would make very interesting reading ;-)
> 
> An easy way to gain a performance edge on ext2 would
> be to do proper write clustering in the reiserfs
> ->writepage() function...  
> 

;-)

The current 2.4 code has lots of room for tuning, since I've been trying to
keep it clean/stable for now (and our dbench numbers show it).  The first
optimization is tuning for reiserfs_get_block, I think writepage clustering
will be easier (and more beneficial) if we work out the buffer.c changes
I've been posting.

I also want to change the log block allocation a bit, so the log blocks are
allocated as the transaction progresses, instead of all at the end.  I
think that will make us much more VM friendly, and let me get rid of the
inode writing kludges.  It'll be a busy weekend ;-)

-chris

-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to [EMAIL PROTECTED]
Please read the FAQ at http://www.tux.org/lkml/



Re: reiserfs patch for 2.4.0-final

2001-01-05 Thread Rik van Riel

On Fri, 5 Jan 2001, Chris Evans wrote:
> On Fri, 5 Jan 2001, Chris Mason wrote:
> 
> > > Could someone create one single patch for the 2.4.0 ?
> > >
> > I put all the code into CVS, and Yura is making the official patch now.
> 
> Since 2.4.0 final should fix a few i/o performance issues
> (particuarly under heavy write loads), a quick few ext2 vs.
> reiserfs benchmarks would make very interesting reading ;-)

An easy way to gain a performance edge on ext2 would
be to do proper write clustering in the reiserfs
->writepage() function...  

regards,

Rik
--
Virtual memory is like a game you can't win;
However, without VM there's truly nothing to loose...

http://www.surriel.com/
http://www.conectiva.com/   http://distro.conectiva.com.br/

-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to [EMAIL PROTECTED]
Please read the FAQ at http://www.tux.org/lkml/



Re: reiserfs patch for 2.4.0-final

2001-01-05 Thread Chris Evans


On Fri, 5 Jan 2001, Chris Mason wrote:

> > Could someone create one single patch for the 2.4.0 ?
> >
> I put all the code into CVS, and Yura is making the official patch now.

Since 2.4.0 final should fix a few i/o performance issues (particuarly
under heavy write loads), a quick few ext2 vs. reiserfs benchmarks would
make very interesting reading ;-)

Cheers
Chris

-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to [EMAIL PROTECTED]
Please read the FAQ at http://www.tux.org/lkml/



Re: reiserfs patch for 2.4.0-final

2001-01-05 Thread Chris Mason



On Friday, January 05, 2001 02:04:08 PM +0100 Claas Langbehn
<[EMAIL PROTECTED]> wrote:

> On Thu, Jan 04, 2001 at 04:52:49PM -0500, Chris Mason wrote:
>> This patch is meant to be applied on top of the reiserfs
>> 3.6.23 patch to get everything working in the new prerelease
>> kernels.  The order is:
>> 
>> untar linux-2.4.0-prerelease.tar.bz2
>> apply linux-2.4.0-test12-reiserfs-3.6.23.gz
>> apply this patch
>> apply the fs/super.c patch to make sure fsync_dev is called
>> when unmounting /.  This was already sent to l-k, I'll send
>> to the reiserfs list as well.
> 
> Is this still correct for the final 2.4.0-kernel ?
> 
Yes

> Could someone create one single patch for the 2.4.0 ?
> 
I put all the code into CVS, and Yura is making the official patch now.

-chris





-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to [EMAIL PROTECTED]
Please read the FAQ at http://www.tux.org/lkml/



reiserfs patch for 2.4.0-final

2001-01-05 Thread Claas Langbehn

On Thu, Jan 04, 2001 at 04:52:49PM -0500, Chris Mason wrote:
> This patch is meant to be applied on top of the reiserfs
> 3.6.23 patch to get everything working in the new prerelease
> kernels.  The order is:
> 
> untar linux-2.4.0-prerelease.tar.bz2
> apply linux-2.4.0-test12-reiserfs-3.6.23.gz
> apply this patch
> apply the fs/super.c patch to make sure fsync_dev is called
> when unmounting /.  This was already sent to l-k, I'll send
> to the reiserfs list as well.

Is this still correct for the final 2.4.0-kernel ?

Could someone create one single patch for the 2.4.0 ?

Bye,
Claas
-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to [EMAIL PROTECTED]
Please read the FAQ at http://www.tux.org/lkml/