[<prev] [next>] [thread-next>] [day] [month] [year] [list]
Message-ID: <4CF91A32.6080706@redhat.com>
Date: Fri, 03 Dec 2010 10:26:26 -0600
From: Eric Sandeen <sandeen@...hat.com>
To: ext4 development <linux-ext4@...r.kernel.org>,
"linux-fsdevel@...r.kernel.org" <linux-fsdevel@...r.kernel.org>
CC: Cezary Sliwa <sliwa@...e.cft.edu.pl>
Subject: [PATCH] ext2: include fs.h in ext2_fs.h
As reported by Cezary Sliwa in
https://bugzilla.kernel.org/show_bug.cgi?id=24282
ext2_fs.h references FS_DIRSYNC_FL etc, but does not
include <linux/fs.h> to define them. This seems ok
for kernelspace builds, but breaks userspace applications
which include ext2_fs.h.
Reported-by: Cezary Sliwa <sliwa@...e.cft.edu.pl>
Signed-off-by: Eric Sandeen <sandeen@...hat.com>
---
diff --git a/include/linux/ext2_fs.h b/include/linux/ext2_fs.h
index 2dfa707..91f90e4 100644
--- a/include/linux/ext2_fs.h
+++ b/include/linux/ext2_fs.h
@@ -16,6 +16,7 @@
#ifndef _LINUX_EXT2_FS_H
#define _LINUX_EXT2_FS_H
+#include <linux/fs.h>
#include <linux/types.h>
#include <linux/magic.h>
--
To unsubscribe from this list: send the line "unsubscribe linux-ext4" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Powered by blists - more mailing lists