From: Neil Brown Date: Sat, 12 Jul 2008 10:27:39 +0000 (+1000) Subject: Make super super0.c function static. X-Git-Tag: mdadm-3.0-devel1~142 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=ec9688ca701adbe8b0dda032d6993c695f24091f;p=thirdparty%2Fmdadm.git Make super super0.c function static. So only 'super0' is externally visible. --- diff --git a/super0.c b/super0.c index 1e06375e..dc8af8fc 100644 --- a/super0.c +++ b/super0.c @@ -53,7 +53,7 @@ static unsigned long calc_sb0_csum(mdp_super_t *super) } -void super0_swap_endian(struct mdp_superblock_s *sb) +static void super0_swap_endian(struct mdp_superblock_s *sb) { /* as super0 superblocks are host-endian, it is sometimes * useful to be able to swap the endianness @@ -957,7 +957,7 @@ static int add_internal_bitmap0(struct supertype *st, int *chunkp, } -void locate_bitmap0(struct supertype *st, int fd) +static void locate_bitmap0(struct supertype *st, int fd) { unsigned long long dsize; unsigned long long offset; @@ -977,7 +977,7 @@ void locate_bitmap0(struct supertype *st, int fd) lseek64(fd, offset, 0); } -int write_bitmap0(struct supertype *st, int fd) +static int write_bitmap0(struct supertype *st, int fd) { unsigned long long dsize; unsigned long long offset;