Re: Incomplete file listing with reiserfs partition

2008-01-26 Thread Bean
Committed. -- Bean ___ Grub-devel mailing list Grub-devel@gnu.org http://lists.gnu.org/mailman/listinfo/grub-devel

Re: Incomplete file listing with reiserfs partition

2008-01-24 Thread Yoshinori K. Okuji
On Thursday 24 January 2008 20:57, Bean wrote: > this is the patch, it can list all files. > > the main problem of the original code is that it assume that the next > offset will be current offset + 1, this is not true. the offset is a > hash value. it can be extracted when going through the B+ tre

Re: Incomplete file listing with reiserfs partition

2008-01-24 Thread Antoine Cellerier
On Fri, Jan 25, 2008, Bean wrote: > this is the patch, it can list all files. > > the main problem of the original code is that it assume that the next > offset will be current offset + 1, this is not true. the offset is a > hash value. it can be extracted when going through the B+ tree. > >

Re: Incomplete file listing with reiserfs partition

2008-01-24 Thread Bean
this is the patch, it can list all files. the main problem of the original code is that it assume that the next offset will be current offset + 1, this is not true. the offset is a hash value. it can be extracted when going through the B+ tree. * fs/reiserfs.c (grub_fshelp_node): New membe

Re: Incomplete file listing with reiserfs partition

2008-01-24 Thread Bean
On Jan 25, 2008 12:11 AM, Marco Gerards <[EMAIL PROTECTED]> wrote: this is the patch, it can list all files. the main problem of the original code is that it assume that the next offset will be current offset + 1, this is not true. the offset is a hash value. it can be extracted when going throug

Re: Incomplete file listing with reiserfs partition

2008-01-24 Thread Marco Gerards
Bean <[EMAIL PROTECTED]> writes: > On Jan 24, 2008 2:30 AM, Antoine Cellerier <[EMAIL PROTECTED]> wrote: >> Hello, >> >> I've been trying to use grub2 with a reiserfs partition and noticed that >> it couldn't find all my files and folders. nyu and marco_g on IRC >> suggested that I send a small te

Re: Incomplete file listing with reiserfs partition

2008-01-24 Thread Bean
On Jan 24, 2008 2:30 AM, Antoine Cellerier <[EMAIL PROTECTED]> wrote: > Hello, > > I've been trying to use grub2 with a reiserfs partition and noticed that > it couldn't find all my files and folders. nyu and marco_g on IRC > suggested that I send a small test case. So here it comes. > > The attach