[PATCH] Corrections to affs and sfs

2008-11-22 Thread Krzysztof Smiechowicz
Hello, I would like to submit the following patch: * fs/affs.c: Return failure when directory iteration failed. * fs/sfs.c: Return failure when directory iteration failed. Correct order in which btree nodes are read. These changes are needed to boot AROS Research Operating System from SFS / FF

Re: [PATCH] Corrections to affs and sfs

2008-11-29 Thread Krzysztof Smiechowicz
Hello, Robert Millan pisze: Index: fs/sfs.c === --- fs/sfs.c(revision 1919) +++ fs/sfs.c(working copy) @@ -172,7 +172,8 @@ return grub_errno; } - for (i = 0; i < grub_be_to_cpu16 (tree->nodes); i++)

Re: [PATCH] Corrections to affs and sfs

2009-01-06 Thread Krzysztof Smiechowicz
Robert Millan pisze: Index: fs/sfs.c === --- fs/sfs.c(revision 1919) +++ fs/sfs.c(working copy) @@ -172,7 +172,8 @@ return grub_errno; } - for (i = 0; i < grub_be_to_cpu16 (tree->nodes); i++) +

Re: [PATCH] Corrections to affs and sfs

2009-02-11 Thread Krzysztof Smiechowicz
Hello, Any news about applying this patch? :) Hello, I'm resubmitting the updated patch. Changelog: 2009-02-11 Krzysztof Smiechowicz * fs/sfs.c (grub_sfs_read_extent) : Correction to traversing extent b-tree Index: fs/