public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
From: Joe Perches <joe@perches.com>
To: xfs-masters <xfs-masters@oss.sgi.com>
Cc: LKML <linux-kernel@vger.kernel.org>
Subject: [PATCH] fs/xfs - Use #include "xfs.h" not <xfs.h>
Date: Wed, 26 Mar 2008 11:05:02 -0700	[thread overview]
Message-ID: <1206554702.4845.236.camel@localhost> (raw)

No need to use angle bracket includes

Signed-off-by: Joe Perches <joe@perches.com>
---
 fs/xfs/linux-2.6/xfs_linux.h |   46 +++++++++++++++++++++---------------------
 fs/xfs/support/debug.c       |    2 +-
 fs/xfs/support/ktrace.c      |    2 +-
 fs/xfs/support/uuid.c        |    2 +-
 fs/xfs/xfs.h                 |    2 +-
 5 files changed, 27 insertions(+), 27 deletions(-)

diff --git a/fs/xfs/linux-2.6/xfs_linux.h b/fs/xfs/linux-2.6/xfs_linux.h
index 3ca39c4..2d6cd84 100644
--- a/fs/xfs/linux-2.6/xfs_linux.h
+++ b/fs/xfs/linux-2.6/xfs_linux.h
@@ -38,19 +38,19 @@
 # define XFS_BIG_INUMS	0
 #endif
 
-#include <xfs_types.h>
-#include <xfs_arch.h>
+#include "xfs_types.h"
+#include "xfs_arch.h"
 
-#include <kmem.h>
-#include <mrlock.h>
-#include <sv.h>
-#include <mutex.h>
-#include <sema.h>
-#include <time.h>
+#include "kmem.h"
+#include "mrlock.h"
+#include "sv.h"
+#include "mutex.h"
+#include "sema.h"
+#include "time.h"
 
-#include <support/ktrace.h>
-#include <support/debug.h>
-#include <support/uuid.h>
+#include "support/ktrace.h"
+#include "support/debug.h"
+#include "support/uuid.h"
 
 #include <linux/mm.h>
 #include <linux/kernel.h>
@@ -83,18 +83,18 @@
 #include <asm/byteorder.h>
 #include <asm/unaligned.h>
 
-#include <xfs_vfs.h>
-#include <xfs_cred.h>
-#include <xfs_vnode.h>
-#include <xfs_stats.h>
-#include <xfs_sysctl.h>
-#include <xfs_iops.h>
-#include <xfs_aops.h>
-#include <xfs_super.h>
-#include <xfs_globals.h>
-#include <xfs_fs_subr.h>
-#include <xfs_lrw.h>
-#include <xfs_buf.h>
+#include "xfs_vfs.h"
+#include "xfs_cred.h"
+#include "xfs_vnode.h"
+#include "xfs_stats.h"
+#include "xfs_sysctl.h"
+#include "xfs_iops.h"
+#include "xfs_aops.h"
+#include "xfs_super.h"
+#include "xfs_globals.h"
+#include "xfs_fs_subr.h"
+#include "xfs_lrw.h"
+#include "xfs_buf.h"
 
 /*
  * Feature macros (disable/enable)
diff --git a/fs/xfs/support/debug.c b/fs/xfs/support/debug.c
index c27abef..4253b79 100644
--- a/fs/xfs/support/debug.c
+++ b/fs/xfs/support/debug.c
@@ -15,7 +15,7 @@
  * along with this program; if not, write the Free Software Foundation,
  * Inc.,  51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
  */
-#include <xfs.h>
+#include "xfs.h"
 #include "debug.h"
 
 static char		message[1024];	/* keep it off the stack */
diff --git a/fs/xfs/support/ktrace.c b/fs/xfs/support/ktrace.c
index 129067c..4f4789d 100644
--- a/fs/xfs/support/ktrace.c
+++ b/fs/xfs/support/ktrace.c
@@ -15,7 +15,7 @@
  * along with this program; if not, write the Free Software Foundation,
  * Inc.,  51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
  */
-#include <xfs.h>
+#include "xfs.h"
 
 static kmem_zone_t *ktrace_hdr_zone;
 static kmem_zone_t *ktrace_ent_zone;
diff --git a/fs/xfs/support/uuid.c b/fs/xfs/support/uuid.c
index 493a6ec..7547e12 100644
--- a/fs/xfs/support/uuid.c
+++ b/fs/xfs/support/uuid.c
@@ -15,7 +15,7 @@
  * along with this program; if not, write the Free Software Foundation,
  * Inc.,  51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
  */
-#include <xfs.h>
+#include "xfs.h"
 
 static mutex_t	uuid_monitor;
 static int	uuid_table_size;
diff --git a/fs/xfs/xfs.h b/fs/xfs/xfs.h
index 540e4c9..ec24787 100644
--- a/fs/xfs/xfs.h
+++ b/fs/xfs/xfs.h
@@ -41,5 +41,5 @@
 #define XFS_FILESTREAMS_TRACE 1
 #endif
 
-#include <linux-2.6/xfs_linux.h>
+#include "linux-2.6/xfs_linux.h"
 #endif	/* __XFS_H__ */



                 reply	other threads:[~2008-03-26 18:05 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=1206554702.4845.236.camel@localhost \
    --to=joe@perches.com \
    --cc=linux-kernel@vger.kernel.org \
    --cc=xfs-masters@oss.sgi.com \
    /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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox