mdassemble - fix new compile-time problems.

Signed-off-by: NeilBrown <neilb@suse.de>
This commit is contained in:
NeilBrown 2013-05-13 17:05:16 +10:00
parent e6fc80a895
commit 5a23a06ea4
3 changed files with 7 additions and 3 deletions

View File

@ -48,7 +48,7 @@ int create_mddev(char *dev, char *name, int autof/*unused*/, int trustworthy,
return open_mddev(dev, 0);
}
#endif
int map_update(struct map_ent **mpp, int devnum, char *metadata,
int map_update(struct map_ent **mpp, char *devnm, char *metadata,
int *uuid, char *path)
{
return 0;
@ -57,6 +57,9 @@ struct map_ent *map_by_name(struct map_ent **mpp, char *name)
{
return NULL;
}
int map_lock(struct map_ent **melp){return 0;}
void map_unlock(struct map_ent **melp){}
struct map_ent *map_by_uuid(struct map_ent **map, int uuid[4]){return NULL;}
int rv;
int mdfd = -1;

View File

@ -1012,12 +1012,13 @@ static int update_super1(struct supertype *st, struct mdinfo *info,
long bm_sectors = 0;
long space;
#ifndef MDASSEMBLE
if (sb->feature_map & __cpu_to_le32(MD_FEATURE_BITMAP_OFFSET)) {
struct bitmap_super_s *bsb;
bsb = (struct bitmap_super_s *)(((char*)sb)+MAX_SB_SIZE);
bm_sectors = bitmap_sectors(bsb);
}
#endif
if (sb_offset < data_offset) {
/* 1.1 or 1.2. Put bbl just before data
*/

2
util.c
View File

@ -777,7 +777,6 @@ int get_data_disks(int level, int layout, int raid_disks)
return data_disks;
}
#if !defined(MDASSEMBLE) || defined(MDASSEMBLE) && defined(MDASSEMBLE_AUTO)
int devnm2devid(char *devnm)
{
@ -815,6 +814,7 @@ int devnm2devid(char *devnm)
return 0;
}
#if !defined(MDASSEMBLE) || defined(MDASSEMBLE) && defined(MDASSEMBLE_AUTO)
char *get_md_name(char *devnm)
{
/* find /dev/md%d or /dev/md/%d or make a device /dev/.tmp.md%d */