From: Jes Sorensen Date: Mon, 15 Aug 2016 20:16:05 +0000 (-0400) Subject: bitmap: Simplify code for bitmap_file_open() X-Git-Tag: mdadm-4.0~58 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=9ca0de6241d0b8a2f396f06746bee50b0a5096b6;p=thirdparty%2Fmdadm.git bitmap: Simplify code for bitmap_file_open() By switching to open+fstat rather than stat+open the code can be simplified and avoid duplicating the open handling. Signed-off-by: Jes Sorensen --- diff --git a/bitmap.c b/bitmap.c index 51dda8be..29c36a65 100644 --- a/bitmap.c +++ b/bitmap.c @@ -200,20 +200,24 @@ int bitmap_file_open(char *filename, struct supertype **stp, int node_num) struct stat stb; struct supertype *st = *stp; - if (stat(filename, &stb) < 0) { - pr_err("failed to find file %s: %s\n", - filename, strerror(errno)); + fd = open(filename, O_RDONLY|O_DIRECT); + if (fd < 0) { + pr_err("failed to open bitmap file %s: %s\n", + filename, strerror(errno)); return -1; } - if ((S_IFMT & stb.st_mode) == S_IFBLK) { - fd = open(filename, O_RDONLY|O_DIRECT); - if (fd < 0) { - pr_err("failed to open bitmap file %s: %s\n", - filename, strerror(errno)); - return -1; - } + + if (fstat(fd, &stb) < 0) { + pr_err("failed to determine bitmap file/device type: %s\n", + strerror(errno)); + close(fd); + return -1; + } + + if ((stb.st_mode & S_IFMT) == S_IFBLK) { /* block device, so we are probably after an internal bitmap */ - if (!st) st = guess_super(fd); + if (!st) + st = guess_super(fd); if (!st) { /* just look at device... */ lseek(fd, 0, 0); @@ -231,13 +235,6 @@ int bitmap_file_open(char *filename, struct supertype **stp, int node_num) } *stp = st; - } else { - fd = open(filename, O_RDONLY|O_DIRECT); - if (fd < 0) { - pr_err("failed to open bitmap file %s: %s\n", - filename, strerror(errno)); - return -1; - } } return fd;