Displaying 2 results from an estimated 2 matches for "bmap_tradit".
2009 Dec 14
1
Applied the generic path searching to ISOLINUX
Hi all,
I just applied the generic path searching to ISOLINUX, and you can
check it here:
http://git.zytor.com/?p=users/liu/gsoc09_liu.git
since commit 4bb194f14a43674cced3a8c35d5e625e59db32dc.
hpa, for now, all the fs code have been converted to new-style
interface and I have done my best to make all the fs C code be clean
and readable. Well, it would be great if you take a minute to
2013 Mar 02
0
[GIT-PULL] ext4 inline data support
...ndex ef2bf64..a65b320 100644
--- a/core/fs/ext2/bmap.c
+++ b/core/fs/ext2/bmap.c
@@ -10,6 +10,7 @@
#include <fs.h>
#include <disk.h>
#include <cache.h>
+#include "assert.h"
#include "ext2_fs.h"
static const struct ext4_extent_header *
@@ -178,7 +179,6 @@ bmap_traditional(struct inode *inode, block_t block, size_t *nblocks)
return 0;
}
-
/**
* Map the logical block to physic block where the file data stores.
* In EXT4, there are two ways to handle the map process, extents and indirect.
@@ -203,7 +203,6 @@ block_t ext2_bmap(struct inode *inode, bloc...