From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 19509 invoked by alias); 16 Apr 2008 20:40:32 -0000 Received: (qmail 19474 invoked by uid 9702); 16 Apr 2008 20:40:31 -0000 Date: Wed, 16 Apr 2008 20:40:00 -0000 Message-ID: <20080416204030.19453.qmail@sourceware.org> From: fabbione@sourceware.org To: cluster-cvs@sources.redhat.com, cluster-devel@redhat.com Subject: Cluster Project branch, master, updated. gfs-kernel_0_1_22-183-g2627512 X-Git-Refname: refs/heads/master X-Git-Reftype: branch X-Git-Oldrev: 36f955f67d2842b382fc93f9d0530a9dcedfd0af X-Git-Newrev: 2627512a870e654665b0d973a2171fbafbcbbf0d Mailing-List: contact cluster-cvs-help@sourceware.org; run by ezmlm Precedence: bulk List-Id: List-Subscribe: List-Post: List-Help: , Sender: cluster-cvs-owner@sourceware.org X-SW-Source: 2008-q2/txt/msg00129.txt.bz2 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=2627512a870e654665b0d973a2171fbafbcbbf0d The branch, master has been updated via 2627512a870e654665b0d973a2171fbafbcbbf0d (commit) from 36f955f67d2842b382fc93f9d0530a9dcedfd0af (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 2627512a870e654665b0d973a2171fbafbcbbf0d Author: Abhijith Das Date: Wed Apr 16 11:24:47 2008 -0500 gfs2_tool: Fix build warnings in misc.c bz 441636 gfs2_tool used to include both linux/fs.h and sys/mount.h that caused some symbols to be defined twice and hence caused some build warnings. This patch removes #include linux/fs.h and moves all the required definitions from there to a new local header file iflags.h. This patch also removes the SYSTEM and DIRECTIO flags as they are not used anymore. ----------------------------------------------------------------------- Summary of changes: gfs2/{mkfs/gfs2_mkfs.h => tool/iflags.h} | 41 +++--------------------------- gfs2/tool/misc.c | 16 +++-------- 2 files changed, 9 insertions(+), 48 deletions(-) copy gfs2/{mkfs/gfs2_mkfs.h => tool/iflags.h} (72%) diff --git a/gfs2/mkfs/gfs2_mkfs.h b/gfs2/tool/iflags.h similarity index 72% copy from gfs2/mkfs/gfs2_mkfs.h copy to gfs2/tool/iflags.h index 627c018..c577c4a 100644 --- a/gfs2/mkfs/gfs2_mkfs.h +++ b/gfs2/tool/iflags.h @@ -2,7 +2,7 @@ ******************************************************************************* ** ** Copyright (C) Sistina Software, Inc. 1997-2003 All rights reserved. -** Copyright (C) 2004 Red Hat, Inc. All rights reserved. +** Copyright (C) 2004-2008 Red Hat, Inc. All rights reserved. ** ** This copyrighted material is made available to anyone wishing to use, ** modify, copy, or redistribute it subject to the terms and conditions @@ -11,45 +11,13 @@ ******************************************************************************* ******************************************************************************/ -#ifndef __GFS2_MKFS_DOT_H__ -#define __GFS2_MKFS_DOT_H__ - -#include "linux_endian.h" -#include -#include "osi_list.h" -#include "copyright.cf" -#include "ondisk.h" - -#define SRANDOM do { srandom(time(NULL) ^ getpid()); } while (0) -#define RESRANDOM do { srandom(RANDOM(1000000000)); } while (0) - -/* main_grow */ -void main_grow(int argc, char *argv[]); - -/* main_jadd */ -void main_jadd(int argc, char *argv[]); - -/* main_mkfs */ -void main_mkfs(int argc, char *argv[]); - -/* main_shrink */ -void main_shrink(int argc, char *argv[]); - -/* - * The following inode IOCTL macros and inode flags - * are copied from linux/fs.h, because we have duplicate - * definition of symbols when we include both linux/fs.h and - * sys/mount.h in our program - */ +#ifndef __IFLAGS_DOT_H__ +#define __IFLAGS_DOT_H__ #define FS_IOC_GETFLAGS _IOR('f', 1, long) #define FS_IOC_SETFLAGS _IOW('f', 2, long) -#define FS_IOC_GETVERSION _IOR('v', 1, long) -#define FS_IOC_SETVERSION _IOW('v', 2, long) #define FS_IOC32_GETFLAGS _IOR('f', 1, int) #define FS_IOC32_SETFLAGS _IOW('f', 2, int) -#define FS_IOC32_GETVERSION _IOR('v', 1, int) -#define FS_IOC32_SETVERSION _IOW('v', 2, int) /* * Inode flags (FS_IOC_GETFLAGS / FS_IOC_SETFLAGS) @@ -82,5 +50,4 @@ void main_shrink(int argc, char *argv[]); #define FS_FL_USER_VISIBLE 0x0003DFFF /* User visible flags */ #define FS_FL_USER_MODIFIABLE 0x000380FF /* User modifiable flags */ - -#endif /* __GFS2_MKFS_DOT_H__ */ +#endif /* __IFLAGS_DOT_H__ */ diff --git a/gfs2/tool/misc.c b/gfs2/tool/misc.c index 0a39f8b..7053076 100644 --- a/gfs2/tool/misc.c +++ b/gfs2/tool/misc.c @@ -2,7 +2,7 @@ ******************************************************************************* ** ** Copyright (C) Sistina Software, Inc. 1997-2003 All rights reserved. -** Copyright (C) 2004 Red Hat, Inc. All rights reserved. +** Copyright (C) 2004-2008 Red Hat, Inc. All rights reserved. ** ** This copyrighted material is made available to anyone wishing to use, ** modify, copy, or redistribute it subject to the terms and conditions @@ -29,10 +29,10 @@ #define __user #include #include -#include #include "libgfs2.h" #include "gfs2_tool.h" +#include "iflags.h" #if GFS2_TOOL_FEATURE_IMPLEMENTED /** @@ -198,16 +198,12 @@ 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) @@ -228,12 +224,10 @@ print_flags(struct gfs2_dinode *di) static unsigned int get_flag_from_name(char *name) { - if (strncmp(name, "system", 6) == 0) - return GFS2_DIF_SYSTEM; - else if (strncmp(name, "jdata", 5) == 0) + 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, "exhash", 6) == 0) + return FS_INDEX_FL; else if (strncmp(name, "immutable", 9) == 0) return FS_IMMUTABLE_FL; else if (strncmp(name, "appendonly", 10) == 0) hooks/post-receive -- Cluster Project