* [Cluster-devel] [PATCH] mkfs.gfs2: Some minor cleanups
@ 2011-11-07 14:05 Andrew Price
2011-11-07 14:11 ` Steven Whitehouse
0 siblings, 1 reply; 2+ messages in thread
From: Andrew Price @ 2011-11-07 14:05 UTC (permalink / raw)
To: cluster-devel.redhat.com
- The -K option isn't currently parsed, add it to the getopt option
string.
- Variable 'input' is defined but not used, remove it.
- Add back reporting of the current device contents.
- Don't call the discard blocks ioctl on regular files.
Signed-off-by: Andrew Price <anprice@redhat.com>
---
gfs2/mkfs/main_mkfs.c | 10 ++++++----
1 files changed, 6 insertions(+), 4 deletions(-)
diff --git a/gfs2/mkfs/main_mkfs.c b/gfs2/mkfs/main_mkfs.c
index 6de1d12..eeff47b 100644
--- a/gfs2/mkfs/main_mkfs.c
+++ b/gfs2/mkfs/main_mkfs.c
@@ -109,7 +109,7 @@ static void decode_arguments(int argc, char *argv[], struct gfs2_sbd *sdp)
sdp->orig_fssize = 0;
while (cont) {
- optchar = getopt(argc, argv, "-b:c:DhJ:j:Op:qr:t:u:VX");
+ optchar = getopt(argc, argv, "-b:c:DhJ:j:KOp:qr:t:u:VX");
switch (optchar) {
case 'b':
@@ -325,7 +325,6 @@ static void are_you_sure(void)
static void verify_bsize(struct gfs2_sbd *sdp)
{
unsigned int x;
- char input[32];
/* Block sizes must be a power of two from 512 to 65536 */
@@ -561,8 +560,11 @@ void main_mkfs(int argc, char *argv[])
exit(EXIT_FAILURE);
}
- if (!sdp->override)
+ if (!sdp->override) {
+ printf( _("This will destroy any data on %s.\n"), sdp->device_name);
+ check_dev_content(sdp->device_name);
are_you_sure();
+ }
if (!S_ISREG(st_buf.st_mode) && device_topology(sdp)) {
perror(_("Device topology error\n"));
@@ -621,7 +623,7 @@ void main_mkfs(int argc, char *argv[])
exit(EXIT_FAILURE);
}
- if (discard)
+ if (!S_ISREG(st_buf.st_mode) && discard)
discard_blocks(sdp);
/* Compute the resource group layouts */
--
1.7.6.4
^ permalink raw reply related [flat|nested] 2+ messages in thread* [Cluster-devel] [PATCH] mkfs.gfs2: Some minor cleanups
2011-11-07 14:05 [Cluster-devel] [PATCH] mkfs.gfs2: Some minor cleanups Andrew Price
@ 2011-11-07 14:11 ` Steven Whitehouse
0 siblings, 0 replies; 2+ messages in thread
From: Steven Whitehouse @ 2011-11-07 14:11 UTC (permalink / raw)
To: cluster-devel.redhat.com
Hi,
Looks good to me,
Steve.
On Mon, 2011-11-07 at 14:05 +0000, Andrew Price wrote:
> - The -K option isn't currently parsed, add it to the getopt option
> string.
> - Variable 'input' is defined but not used, remove it.
> - Add back reporting of the current device contents.
> - Don't call the discard blocks ioctl on regular files.
>
> Signed-off-by: Andrew Price <anprice@redhat.com>
> ---
> gfs2/mkfs/main_mkfs.c | 10 ++++++----
> 1 files changed, 6 insertions(+), 4 deletions(-)
>
> diff --git a/gfs2/mkfs/main_mkfs.c b/gfs2/mkfs/main_mkfs.c
> index 6de1d12..eeff47b 100644
> --- a/gfs2/mkfs/main_mkfs.c
> +++ b/gfs2/mkfs/main_mkfs.c
> @@ -109,7 +109,7 @@ static void decode_arguments(int argc, char *argv[], struct gfs2_sbd *sdp)
> sdp->orig_fssize = 0;
>
> while (cont) {
> - optchar = getopt(argc, argv, "-b:c:DhJ:j:Op:qr:t:u:VX");
> + optchar = getopt(argc, argv, "-b:c:DhJ:j:KOp:qr:t:u:VX");
>
> switch (optchar) {
> case 'b':
> @@ -325,7 +325,6 @@ static void are_you_sure(void)
> static void verify_bsize(struct gfs2_sbd *sdp)
> {
> unsigned int x;
> - char input[32];
>
> /* Block sizes must be a power of two from 512 to 65536 */
>
> @@ -561,8 +560,11 @@ void main_mkfs(int argc, char *argv[])
> exit(EXIT_FAILURE);
> }
>
> - if (!sdp->override)
> + if (!sdp->override) {
> + printf( _("This will destroy any data on %s.\n"), sdp->device_name);
> + check_dev_content(sdp->device_name);
> are_you_sure();
> + }
>
> if (!S_ISREG(st_buf.st_mode) && device_topology(sdp)) {
> perror(_("Device topology error\n"));
> @@ -621,7 +623,7 @@ void main_mkfs(int argc, char *argv[])
> exit(EXIT_FAILURE);
> }
>
> - if (discard)
> + if (!S_ISREG(st_buf.st_mode) && discard)
> discard_blocks(sdp);
>
> /* Compute the resource group layouts */
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2011-11-07 14:11 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2011-11-07 14:05 [Cluster-devel] [PATCH] mkfs.gfs2: Some minor cleanups Andrew Price
2011-11-07 14:11 ` Steven Whitehouse
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).