linux-mm.kvack.org archive mirror
 help / color / mirror / Atom feed
From: Matthew Wilcox <matthew.r.wilcox@intel.com>
To: linux-fsdevel@vger.kernel.org, linux-mm@kvack.org,
	linux-kernel@vger.kernel.org
Cc: Matthew Wilcox <matthew.r.wilcox@intel.com>, willy@linux.intel.com
Subject: [PATCH v9 05/22] Introduce IS_DAX(inode)
Date: Fri,  1 Aug 2014 09:27:21 -0400	[thread overview]
Message-ID: <d5d9388fd9eb1391831be284d86edf670c1eef1e.1406897885.git.willy@linux.intel.com> (raw)
In-Reply-To: <cover.1406897885.git.willy@linux.intel.com>
In-Reply-To: <cover.1406897885.git.willy@linux.intel.com>

Use an inode flag to tag inodes which should avoid using the page cache.
Convert ext2 to use it instead of mapping_is_xip().

Signed-off-by: Matthew Wilcox <matthew.r.wilcox@intel.com>
Reviewed-by: Jan Kara <jack@suse.cz>
---
 fs/ext2/inode.c    | 9 ++++++---
 fs/ext2/xip.h      | 2 --
 include/linux/fs.h | 6 ++++++
 3 files changed, 12 insertions(+), 5 deletions(-)

diff --git a/fs/ext2/inode.c b/fs/ext2/inode.c
index 36d35c3..0cb0448 100644
--- a/fs/ext2/inode.c
+++ b/fs/ext2/inode.c
@@ -731,7 +731,7 @@ static int ext2_get_blocks(struct inode *inode,
 		goto cleanup;
 	}
 
-	if (ext2_use_xip(inode->i_sb)) {
+	if (IS_DAX(inode)) {
 		/*
 		 * we need to clear the block
 		 */
@@ -1201,7 +1201,7 @@ static int ext2_setsize(struct inode *inode, loff_t newsize)
 
 	inode_dio_wait(inode);
 
-	if (mapping_is_xip(inode->i_mapping))
+	if (IS_DAX(inode))
 		error = xip_truncate_page(inode->i_mapping, newsize);
 	else if (test_opt(inode->i_sb, NOBH))
 		error = nobh_truncate_page(inode->i_mapping,
@@ -1273,7 +1273,8 @@ void ext2_set_inode_flags(struct inode *inode)
 {
 	unsigned int flags = EXT2_I(inode)->i_flags;
 
-	inode->i_flags &= ~(S_SYNC|S_APPEND|S_IMMUTABLE|S_NOATIME|S_DIRSYNC);
+	inode->i_flags &= ~(S_SYNC | S_APPEND | S_IMMUTABLE | S_NOATIME |
+				S_DIRSYNC | S_DAX);
 	if (flags & EXT2_SYNC_FL)
 		inode->i_flags |= S_SYNC;
 	if (flags & EXT2_APPEND_FL)
@@ -1284,6 +1285,8 @@ void ext2_set_inode_flags(struct inode *inode)
 		inode->i_flags |= S_NOATIME;
 	if (flags & EXT2_DIRSYNC_FL)
 		inode->i_flags |= S_DIRSYNC;
+	if (test_opt(inode->i_sb, XIP))
+		inode->i_flags |= S_DAX;
 }
 
 /* Propagate flags from i_flags to EXT2_I(inode)->i_flags */
diff --git a/fs/ext2/xip.h b/fs/ext2/xip.h
index 18b34d2..29be737 100644
--- a/fs/ext2/xip.h
+++ b/fs/ext2/xip.h
@@ -16,9 +16,7 @@ static inline int ext2_use_xip (struct super_block *sb)
 }
 int ext2_get_xip_mem(struct address_space *, pgoff_t, int,
 				void **, unsigned long *);
-#define mapping_is_xip(map) unlikely(map->a_ops->get_xip_mem)
 #else
-#define mapping_is_xip(map)			0
 #define ext2_xip_verify_sb(sb)			do { } while (0)
 #define ext2_use_xip(sb)			0
 #define ext2_clear_xip_target(inode, chain)	0
diff --git a/include/linux/fs.h b/include/linux/fs.h
index e11d60c..a94e5d7 100644
--- a/include/linux/fs.h
+++ b/include/linux/fs.h
@@ -1579,6 +1579,7 @@ struct super_operations {
 #define S_IMA		1024	/* Inode has an associated IMA struct */
 #define S_AUTOMOUNT	2048	/* Automount/referral quasi-directory */
 #define S_NOSEC		4096	/* no suid or xattr security attributes */
+#define S_DAX		8192	/* Direct Access, avoiding the page cache */
 
 /*
  * Note that nosuid etc flags are inode-specific: setting some file-system
@@ -1616,6 +1617,11 @@ struct super_operations {
 #define IS_IMA(inode)		((inode)->i_flags & S_IMA)
 #define IS_AUTOMOUNT(inode)	((inode)->i_flags & S_AUTOMOUNT)
 #define IS_NOSEC(inode)		((inode)->i_flags & S_NOSEC)
+#ifdef CONFIG_FS_XIP
+#define IS_DAX(inode)		((inode)->i_flags & S_DAX)
+#else
+#define IS_DAX(inode)		0
+#endif
 
 /*
  * Inode state bits.  Protected by inode->i_lock
-- 
2.0.1

--
To unsubscribe, send a message with 'unsubscribe linux-mm' in
the body to majordomo@kvack.org.  For more info on Linux MM,
see: http://www.linux-mm.org/ .
Don't email: <a href=mailto:"dont@kvack.org"> email@kvack.org </a>

  parent reply	other threads:[~2014-08-01 13:27 UTC|newest]

Thread overview: 23+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2014-08-01 13:27 [PATCH v9 00/22] Support ext4 on NV-DIMMs Matthew Wilcox
2014-08-01 13:27 ` [PATCH v9 01/22] axonram: Fix bug in direct_access Matthew Wilcox
2014-08-01 13:27 ` [PATCH v9 02/22] Change direct_access calling convention Matthew Wilcox
2014-08-01 13:27 ` [PATCH v9 03/22] Fix XIP fault vs truncate race Matthew Wilcox
2014-08-01 13:27 ` [PATCH v9 04/22] Allow page fault handlers to perform the COW Matthew Wilcox
2014-08-01 13:27 ` Matthew Wilcox [this message]
2014-08-01 13:27 ` [PATCH v9 06/22] Add copy_to_iter(), copy_from_iter() and iov_iter_zero() Matthew Wilcox
2014-08-01 13:27 ` [PATCH v9 07/22] Replace XIP read and write with DAX I/O Matthew Wilcox
2014-08-01 13:27 ` [PATCH v9 08/22] Replace ext2_clear_xip_target with dax_clear_blocks Matthew Wilcox
2014-08-01 13:27 ` [PATCH v9 09/22] Replace the XIP page fault handler with the DAX page fault handler Matthew Wilcox
2014-08-01 13:27 ` [PATCH v9 10/22] Replace xip_truncate_page with dax_truncate_page Matthew Wilcox
2014-08-01 13:27 ` [PATCH v9 11/22] Replace XIP documentation with DAX documentation Matthew Wilcox
2014-08-01 13:27 ` [PATCH v9 12/22] Remove get_xip_mem Matthew Wilcox
2014-08-01 13:27 ` [PATCH v9 13/22] ext2: Remove ext2_xip_verify_sb() Matthew Wilcox
2014-08-01 13:27 ` [PATCH v9 14/22] ext2: Remove ext2_use_xip Matthew Wilcox
2014-08-01 13:27 ` [PATCH v9 15/22] ext2: Remove xip.c and xip.h Matthew Wilcox
2014-08-01 13:27 ` [PATCH v9 16/22] Remove CONFIG_EXT2_FS_XIP and rename CONFIG_FS_XIP to CONFIG_FS_DAX Matthew Wilcox
2014-08-01 13:27 ` [PATCH v9 17/22] ext2: Remove ext2_aops_xip Matthew Wilcox
2014-08-01 13:27 ` [PATCH v9 18/22] Get rid of most mentions of XIP in ext2 Matthew Wilcox
2014-08-01 13:27 ` [PATCH v9 19/22] xip: Add xip_zero_page_range Matthew Wilcox
2014-08-01 13:27 ` [PATCH v9 20/22] ext4: Avoid lock inversion between i_mmap_mutex and transaction start Matthew Wilcox
2014-08-01 13:27 ` [PATCH v9 21/22] ext4: Add DAX functionality Matthew Wilcox
2014-08-01 13:27 ` [PATCH v9 22/22] brd: Rename XIP to DAX Matthew Wilcox

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=d5d9388fd9eb1391831be284d86edf670c1eef1e.1406897885.git.willy@linux.intel.com \
    --to=matthew.r.wilcox@intel.com \
    --cc=linux-fsdevel@vger.kernel.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=linux-mm@kvack.org \
    --cc=willy@linux.intel.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