From: fabbione@sourceware.org <fabbione@sourceware.org>
To: cluster-devel.redhat.com
Subject: [Cluster-devel] Cluster Project branch, master, updated. gfs-kernel_0_1_22-174-gf187911
Date: 16 Apr 2008 04:15:24 -0000 [thread overview]
Message-ID: <20080416041524.17705.qmail@sourceware.org> (raw)
This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "Cluster Project".
http://sources.redhat.com/git/gitweb.cgi?p=cluster.git;a=commitdiff;h=f1879119019bea3029f852a7248101c397777dbd
The branch, master has been updated
via f1879119019bea3029f852a7248101c397777dbd (commit)
from 4ecbd5d63ff454ed232661a644194ae858ea1830 (commit)
Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.
- Log -----------------------------------------------------------------
commit f1879119019bea3029f852a7248101c397777dbd
Author: Fabio M. Di Nitto <fabbione@fabbione.net>
Date: Wed Apr 16 06:11:42 2008 +0200
Revert "gfs2_tool: Fix build warnings in misc.c bz 441636"
This reverts commit d2a926d2122c23e6175a62326b5e2b421b842a93.
-----------------------------------------------------------------------
Summary of changes:
gfs2/tool/misc.c | 28 +++++++++++++++++-----------
1 files changed, 17 insertions(+), 11 deletions(-)
diff --git a/gfs2/tool/misc.c b/gfs2/tool/misc.c
index 10ad239..0a39f8b 100644
--- a/gfs2/tool/misc.c
+++ b/gfs2/tool/misc.c
@@ -29,7 +29,7 @@
#define __user
#include <linux/gfs2_ondisk.h>
#include <sys/mount.h>
-#include <linux/ext3_fs.h>
+#include <linux/fs.h>
#include "libgfs2.h"
#include "gfs2_tool.h"
@@ -198,12 +198,16 @@ print_flags(struct gfs2_dinode *di)
{
if (di->di_flags) {
printf("Flags:\n");
+ if (di->di_flags & GFS2_DIF_SYSTEM)
+ printf(" system\n");
if (di->di_flags & GFS2_DIF_JDATA)
printf(" jdata\n");
if (di->di_flags & GFS2_DIF_EXHASH)
printf(" exhash\n");
if (di->di_flags & GFS2_DIF_EA_INDIRECT)
printf(" ea_indirect\n");
+ if (di->di_flags & GFS2_DIF_DIRECTIO)
+ printf(" directio\n");
if (di->di_flags & GFS2_DIF_IMMUTABLE)
printf(" immutable\n");
if (di->di_flags & GFS2_DIF_APPENDONLY)
@@ -224,18 +228,20 @@ print_flags(struct gfs2_dinode *di)
static unsigned int
get_flag_from_name(char *name)
{
- if (strncmp(name, "jdata", 5) == 0)
- return EXT3_JOURNAL_DATA_FL;
- else if (strncmp(name, "exhash", 6) == 0)
- return EXT3_INDEX_FL;
+ if (strncmp(name, "system", 6) == 0)
+ return GFS2_DIF_SYSTEM;
+ else if (strncmp(name, "jdata", 5) == 0)
+ return FS_JOURNAL_DATA_FL;
+ else if (strncmp(name, "directio", 8) == 0)
+ return FS_DIRECTIO_FL;
else if (strncmp(name, "immutable", 9) == 0)
- return EXT3_IMMUTABLE_FL;
+ return FS_IMMUTABLE_FL;
else if (strncmp(name, "appendonly", 10) == 0)
- return EXT3_APPEND_FL;
+ return FS_APPEND_FL;
else if (strncmp(name, "noatime", 7) == 0)
- return EXT3_NOATIME_FL;
+ return FS_NOATIME_FL;
else if (strncmp(name, "sync", 4) == 0)
- return EXT3_SYNC_FL;
+ return FS_SYNC_FL;
else
return 0;
}
@@ -270,13 +276,13 @@ set_flag(int argc, char **argv)
if (fd < 0)
die("can't open %s: %s\n", argv[optind], strerror(errno));
/* first get the existing flags on the file */
- error = ioctl(fd, EXT3_IOC_GETFLAGS, &newflags);
+ error = ioctl(fd, FS_IOC_GETFLAGS, &newflags);
if (error)
die("can't get flags on %s: %s\n",
argv[optind], strerror(errno));
newflags = set ? newflags | flag : newflags & ~flag;
/* new flags */
- error = ioctl(fd, EXT3_IOC_SETFLAGS, &newflags);
+ error = ioctl(fd, FS_IOC_SETFLAGS, &newflags);
if (error)
die("can't set flags on %s: %s\n",
argv[optind], strerror(errno));
hooks/post-receive
--
Cluster Project
reply other threads:[~2008-04-16 4:15 UTC|newest]
Thread overview: [no followups] expand[flat|nested] mbox.gz Atom feed
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20080416041524.17705.qmail@sourceware.org \
--to=fabbione@sourceware.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.