# HG changeset patch
# User Keir Fraser <keir.fraser@xxxxxxxxxx>
# Date 1216130638 -3600
# Node ID 4b882c41c9b90124346402ddb790208f7a9ebcf5
# Parent bd6d194199e5d21958cfd217505134022fc98267
tools: Make functions static which should not be exported.
Signed-off-by: Christoph Egger <Christoph.Egger@xxxxxxx>
---
tools/libfsimage/ext2fs/fsys_ext2fs.c | 6 +++---
tools/libfsimage/fat/fsys_fat.c | 6 +++---
tools/libfsimage/iso9660/fsys_iso9660.c | 6 +++---
tools/libfsimage/reiserfs/fsys_reiserfs.c | 6 +++---
tools/libfsimage/ufs/fsys_ufs.c | 6 +++---
tools/libfsimage/zfs/fsys_zfs.c | 6 +++---
tools/misc/xenperf.c | 4 ++--
tools/python/xen/lowlevel/acm/acm.c | 2 +-
8 files changed, 21 insertions(+), 21 deletions(-)
diff -r bd6d194199e5 -r 4b882c41c9b9 tools/libfsimage/ext2fs/fsys_ext2fs.c
--- a/tools/libfsimage/ext2fs/fsys_ext2fs.c Tue Jul 15 14:04:02 2008 +0100
+++ b/tools/libfsimage/ext2fs/fsys_ext2fs.c Tue Jul 15 15:03:58 2008 +0100
@@ -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 l
}
/* 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 *ff
* 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 -r bd6d194199e5 -r 4b882c41c9b9 tools/libfsimage/fat/fsys_fat.c
--- a/tools/libfsimage/fat/fsys_fat.c Tue Jul 15 14:04:02 2008 +0100
+++ b/tools/libfsimage/fat/fsys_fat.c Tue Jul 15 15:03:58 2008 +0100
@@ -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 *
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, in
return errnum ? 0 : ret;
}
-int
+static int
fat_dir (fsi_file_t *ffi, char *dirname)
{
char *rest, ch, dir_buf[FAT_DIRENTRY_LENGTH];
diff -r bd6d194199e5 -r 4b882c41c9b9 tools/libfsimage/iso9660/fsys_iso9660.c
--- a/tools/libfsimage/iso9660/fsys_iso9660.c Tue Jul 15 14:04:02 2008 +0100
+++ b/tools/libfsimage/iso9660/fsys_iso9660.c Tue Jul 15 15:03:58 2008 +0100
@@ -101,7 +101,7 @@ iso9660_devread (fsi_file_t *ffi, int se
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 ch
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 *dirn
return 1;
}
-int
+static int
iso9660_read (fsi_file_t *ffi, char *buf, int len)
{
int sector, blkoffset, size, ret;
diff -r bd6d194199e5 -r 4b882c41c9b9 tools/libfsimage/reiserfs/fsys_reiserfs.c
--- a/tools/libfsimage/reiserfs/fsys_reiserfs.c Tue Jul 15 14:04:02 2008 +0100
+++ b/tools/libfsimage/reiserfs/fsys_reiserfs.c Tue Jul 15 15:03:58 2008 +0100
@@ -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_
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 *bu
* 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 -r bd6d194199e5 -r 4b882c41c9b9 tools/libfsimage/ufs/fsys_ufs.c
--- a/tools/libfsimage/ufs/fsys_ufs.c Tue Jul 15 14:04:02 2008 +0100
+++ b/tools/libfsimage/ufs/fsys_ufs.c Tue Jul 15 15:03:58 2008 +0100
@@ -44,7 +44,7 @@ static grub_daddr32_t sbmap(fsi_file_t *
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 *o
* 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 -r bd6d194199e5 -r 4b882c41c9b9 tools/libfsimage/zfs/fsys_zfs.c
--- a/tools/libfsimage/zfs/fsys_zfs.c Tue Jul 15 14:04:02 2008 +0100
+++ b/tools/libfsimage/zfs/fsys_zfs.c Tue Jul 15 15:03:58 2008 +0100
@@ -1199,7 +1199,7 @@ check_pool_label(fsi_file_t *ffi, int la
* 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 *o
* 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;
diff -r bd6d194199e5 -r 4b882c41c9b9 tools/misc/xenperf.c
--- a/tools/misc/xenperf.c Tue Jul 15 14:04:02 2008 +0100
+++ b/tools/misc/xenperf.c Tue Jul 15 15:03:58 2008 +0100
@@ -68,7 +68,7 @@ const char *hypercall_name_table[64] =
};
#undef X
-int lock_pages(void *addr, size_t len)
+static int lock_pages(void *addr, size_t len)
{
int e = 0;
#ifndef __sun__
@@ -77,7 +77,7 @@ int lock_pages(void *addr, size_t len)
return (e);
}
-void unlock_pages(void *addr, size_t len)
+static void unlock_pages(void *addr, size_t len)
{
#ifndef __sun__
munlock(addr, len);
diff -r bd6d194199e5 -r 4b882c41c9b9 tools/python/xen/lowlevel/acm/acm.c
--- a/tools/python/xen/lowlevel/acm/acm.c Tue Jul 15 14:04:02 2008 +0100
+++ b/tools/python/xen/lowlevel/acm/acm.c Tue Jul 15 15:03:58 2008 +0100
@@ -40,7 +40,7 @@ static PyObject *acm_error_obj;
static PyObject *acm_error_obj;
/* generic shared function */
-void * __getssid(int domid, uint32_t *buflen)
+static void *__getssid(int domid, uint32_t *buflen)
{
struct acm_getssid getssid;
int xc_handle;
_______________________________________________
Xen-changelog mailing list
Xen-changelog@xxxxxxxxxxxxxxxxxxx
http://lists.xensource.com/xen-changelog
|