aboutsummaryrefslogtreecommitdiffstats
path: root/tools/libfsimage
diff options
context:
space:
mode:
authorKeir Fraser <keir.fraser@citrix.com>2008-07-15 15:03:58 +0100
committerKeir Fraser <keir.fraser@citrix.com>2008-07-15 15:03:58 +0100
commitc20060b5e01dadc59f501b92e2e4ad752e625a89 (patch)
tree131f3f88f68dc9a88ce440ae1fd8f112630901c7 /tools/libfsimage
parent032a69e5b7d9e23fbd2b1c1f9b2fd60118b6a5cb (diff)
downloadxen-c20060b5e01dadc59f501b92e2e4ad752e625a89.tar.gz
xen-c20060b5e01dadc59f501b92e2e4ad752e625a89.tar.bz2
xen-c20060b5e01dadc59f501b92e2e4ad752e625a89.zip
tools: Make functions static which should not be exported.
Signed-off-by: Christoph Egger <Christoph.Egger@amd.com>
Diffstat (limited to 'tools/libfsimage')
-rw-r--r--tools/libfsimage/ext2fs/fsys_ext2fs.c6
-rw-r--r--tools/libfsimage/fat/fsys_fat.c6
-rw-r--r--tools/libfsimage/iso9660/fsys_iso9660.c6
-rw-r--r--tools/libfsimage/reiserfs/fsys_reiserfs.c6
-rw-r--r--tools/libfsimage/ufs/fsys_ufs.c6
-rw-r--r--tools/libfsimage/zfs/fsys_zfs.c6
6 files changed, 18 insertions, 18 deletions
diff --git a/tools/libfsimage/ext2fs/fsys_ext2fs.c b/tools/libfsimage/ext2fs/fsys_ext2fs.c
index 5d186cb585..12fc8cafb8 100644
--- a/tools/libfsimage/ext2fs/fsys_ext2fs.c
+++ b/tools/libfsimage/ext2fs/fsys_ext2fs.c
@@ -281,7 +281,7 @@ struct ext2_dir_entry
#define S_ISDIR(m) (((m) & S_IFMT) == S_IFDIR)
/* check filesystem types and read superblock into memory buffer */
-int
+static int
ext2fs_mount (fsi_file_t *ffi, const char *options)
{
int retval = 1;
@@ -419,7 +419,7 @@ ext2fs_block_map (fsi_file_t *ffi, int logical_block)
}
/* preconditions: all preconds of ext2fs_block_map */
-int
+static int
ext2fs_read (fsi_file_t *ffi, char *buf, int len)
{
int logical_block;
@@ -526,7 +526,7 @@ int ext2_is_fast_symlink (fsi_file_t *ffi)
* inode of the file we were trying to look up
* side effects: messes up GROUP_DESC buffer area
*/
-int
+static int
ext2fs_dir (fsi_file_t *ffi, char *dirname)
{
int current_ino = EXT2_ROOT_INO; /* start at the root */
diff --git a/tools/libfsimage/fat/fsys_fat.c b/tools/libfsimage/fat/fsys_fat.c
index 819465a16b..d22d243334 100644
--- a/tools/libfsimage/fat/fsys_fat.c
+++ b/tools/libfsimage/fat/fsys_fat.c
@@ -54,7 +54,7 @@ struct fat_superblock
#define log2 grub_log2
-int
+static int
fat_mount (fsi_file_t *ffi, const char *options)
{
struct fat_bpb bpb;
@@ -179,7 +179,7 @@ fat_mount (fsi_file_t *ffi, const char *options)
return 1;
}
-int
+static int
fat_read (fsi_file_t *ffi, char *buf, int len)
{
int logical_clust;
@@ -273,7 +273,7 @@ fat_read (fsi_file_t *ffi, char *buf, int len)
return errnum ? 0 : ret;
}
-int
+static int
fat_dir (fsi_file_t *ffi, char *dirname)
{
char *rest, ch, dir_buf[FAT_DIRENTRY_LENGTH];
diff --git a/tools/libfsimage/iso9660/fsys_iso9660.c b/tools/libfsimage/iso9660/fsys_iso9660.c
index 20254ba4f5..b991cfce11 100644
--- a/tools/libfsimage/iso9660/fsys_iso9660.c
+++ b/tools/libfsimage/iso9660/fsys_iso9660.c
@@ -101,7 +101,7 @@ iso9660_devread (fsi_file_t *ffi, int sector, int byte_offset, int byte_len, cha
return devread(ffi, sector, byte_offset, byte_len, buf);
}
-int
+static int
iso9660_mount (fsi_file_t *ffi, const char *options)
{
unsigned int sector;
@@ -141,7 +141,7 @@ iso9660_mount (fsi_file_t *ffi, const char *options)
return 0;
}
-int
+static int
iso9660_dir (fsi_file_t *ffi, char *dirname)
{
struct iso_directory_record *idr;
@@ -413,7 +413,7 @@ iso9660_dir (fsi_file_t *ffi, char *dirname)
return 1;
}
-int
+static int
iso9660_read (fsi_file_t *ffi, char *buf, int len)
{
int sector, blkoffset, size, ret;
diff --git a/tools/libfsimage/reiserfs/fsys_reiserfs.c b/tools/libfsimage/reiserfs/fsys_reiserfs.c
index 9ec173bf6d..ce60961ae1 100644
--- a/tools/libfsimage/reiserfs/fsys_reiserfs.c
+++ b/tools/libfsimage/reiserfs/fsys_reiserfs.c
@@ -555,7 +555,7 @@ journal_init (fsi_file_t *ffi)
}
/* check filesystem types and read superblock into memory buffer */
-int
+static int
reiserfs_mount (fsi_file_t *ffi, const char *options)
{
struct reiserfs_super_block super;
@@ -872,7 +872,7 @@ search_stat (fsi_file_t *ffi, __u32 dir_id, __u32 objectid)
return 0;
}
-int
+static int
reiserfs_read (fsi_file_t *ffi, char *buf, int len)
{
unsigned int blocksize;
@@ -980,7 +980,7 @@ reiserfs_read (fsi_file_t *ffi, char *buf, int len)
* of the file we were trying to look up, filepos is 0 and filemax is
* the size of the file.
*/
-int
+static int
reiserfs_dir (fsi_file_t *ffi, char *dirname)
{
struct reiserfs_de_head *de_head;
diff --git a/tools/libfsimage/ufs/fsys_ufs.c b/tools/libfsimage/ufs/fsys_ufs.c
index 4d6db3689e..be51411257 100644
--- a/tools/libfsimage/ufs/fsys_ufs.c
+++ b/tools/libfsimage/ufs/fsys_ufs.c
@@ -44,7 +44,7 @@ static grub_ino_t dlook(fsi_file_t *, grub_ino_t, char *);
static grub_daddr32_t sbmap(fsi_file_t *, grub_daddr32_t);
/* read superblock and check fs magic */
-int
+static int
ufs_mount(fsi_file_t *ffi, const char *options)
{
if (/*! IS_PC_SLICE_TYPE_SOLARIS(current_slice) || */
@@ -62,7 +62,7 @@ ufs_mount(fsi_file_t *ffi, const char *options)
* The entry point should really be named ufs_open(char *pathname).
* For now, keep it consistent with the rest of fsys modules.
*/
-int
+static int
ufs_dir(fsi_file_t *ffi, char *dirname)
{
grub_ino_t inode = ROOTINO; /* start from root */
@@ -102,7 +102,7 @@ ufs_dir(fsi_file_t *ffi, char *dirname)
/*
* This is the high-level read function.
*/
-int
+static int
ufs_read(fsi_file_t *ffi, char *buf, int len)
{
int off, size, ret = 0, ok;
diff --git a/tools/libfsimage/zfs/fsys_zfs.c b/tools/libfsimage/zfs/fsys_zfs.c
index d6f9880bab..1409e3cde6 100644
--- a/tools/libfsimage/zfs/fsys_zfs.c
+++ b/tools/libfsimage/zfs/fsys_zfs.c
@@ -1199,7 +1199,7 @@ check_pool_label(fsi_file_t *ffi, int label, char *stack)
* 1 - success
* 0 - failure
*/
-int
+static int
zfs_mount(fsi_file_t *ffi, const char *options)
{
char *stack;
@@ -1284,7 +1284,7 @@ zfs_mount(fsi_file_t *ffi, const char *options)
* 1 - success
* 0 - failure
*/
-int
+static int
zfs_open(fsi_file_t *ffi, char *filename)
{
char *stack;
@@ -1377,7 +1377,7 @@ zfs_open(fsi_file_t *ffi, char *filename)
* len - the length successfully read in to the buffer
* 0 - failure
*/
-int
+static int
zfs_read(fsi_file_t *ffi, char *buf, int len)
{
char *stack;