All of lore.kernel.org
 help / color / mirror / Atom feed
From: ira.weiny@intel.com
To: Alexander Viro <viro@zeniv.linux.org.uk>,
	Andrew Morton <akpm@linux-foundation.org>
Cc: Chris Mason <clm@fb.com>, Josef Bacik <josef@toxicpanda.com>,
	David Sterba <dsterba@suse.com>, Jaegeuk Kim <jaegeuk@kernel.org>,
	Chao Yu <chao@kernel.org>,
	linux-xfs@vger.kernel.org, linux-fsdevel@vger.kernel.org,
	Trond Myklebust <trond.myklebust@hammerspace.com>,
	Anna Schumaker <anna.schumaker@netapp.com>,
	linux-btrfs@vger.kernel.org, linux-kernel@vger.kernel.org,
	linux-f2fs-devel@lists.sourceforge.net,
	linux-nfs@vger.kernel.org, linux-mm@kvack.org,
	Ira Weiny <ira.weiny@intel.com>
Subject: [PATCH 0/2] Move swap functions out of address space operations
Date: Mon, 11 Nov 2019 16:34:50 -0800	[thread overview]
Message-ID: <20191112003452.4756-1-ira.weiny@intel.com> (raw)

From: Ira Weiny <ira.weiny@intel.com>

As suggested by Jan Kara, move swap_[de]activate to file_operations to simplify
address space operations for coming changes.

I'm not sure if this should go through Al Viro or Andrew Morton so I'm sending
it to both of you.  Sorry if this is a problem.  Let me know if there is
something else I should do.

Ira Weiny (2):
  fs: Clean up mapping variable
  fs: Move swap_[de]activate to file_operations

 fs/btrfs/inode.c    |   4 +-
 fs/f2fs/data.c      | 123 --------------------------------------------
 fs/f2fs/file.c      | 122 +++++++++++++++++++++++++++++++++++++++++++
 fs/iomap/swapfile.c |   3 +-
 fs/nfs/file.c       |   4 +-
 fs/xfs/xfs_aops.c   |  13 -----
 fs/xfs/xfs_file.c   |  12 +++++
 include/linux/fs.h  |  10 ++--
 mm/swapfile.c       |  12 ++---
 9 files changed, 149 insertions(+), 154 deletions(-)

-- 
2.20.1


WARNING: multiple messages have this Message-ID (diff)
From: ira.weiny@intel.com
To: Alexander Viro <viro@zeniv.linux.org.uk>,
	Andrew Morton <akpm@linux-foundation.org>
Cc: linux-nfs@vger.kernel.org, linux-kernel@vger.kernel.org,
	linux-mm@kvack.org, linux-fsdevel@vger.kernel.org,
	Josef Bacik <josef@toxicpanda.com>,
	Anna Schumaker <anna.schumaker@netapp.com>,
	linux-xfs@vger.kernel.org, Chris Mason <clm@fb.com>,
	David Sterba <dsterba@suse.com>, Jaegeuk Kim <jaegeuk@kernel.org>,
	linux-f2fs-devel@lists.sourceforge.net,
	Ira Weiny <ira.weiny@intel.com>,
	Trond Myklebust <trond.myklebust@hammerspace.com>,
	linux-btrfs@vger.kernel.org
Subject: [f2fs-dev] [PATCH 0/2] Move swap functions out of address space operations
Date: Mon, 11 Nov 2019 16:34:50 -0800	[thread overview]
Message-ID: <20191112003452.4756-1-ira.weiny@intel.com> (raw)

From: Ira Weiny <ira.weiny@intel.com>

As suggested by Jan Kara, move swap_[de]activate to file_operations to simplify
address space operations for coming changes.

I'm not sure if this should go through Al Viro or Andrew Morton so I'm sending
it to both of you.  Sorry if this is a problem.  Let me know if there is
something else I should do.

Ira Weiny (2):
  fs: Clean up mapping variable
  fs: Move swap_[de]activate to file_operations

 fs/btrfs/inode.c    |   4 +-
 fs/f2fs/data.c      | 123 --------------------------------------------
 fs/f2fs/file.c      | 122 +++++++++++++++++++++++++++++++++++++++++++
 fs/iomap/swapfile.c |   3 +-
 fs/nfs/file.c       |   4 +-
 fs/xfs/xfs_aops.c   |  13 -----
 fs/xfs/xfs_file.c   |  12 +++++
 include/linux/fs.h  |  10 ++--
 mm/swapfile.c       |  12 ++---
 9 files changed, 149 insertions(+), 154 deletions(-)

-- 
2.20.1



_______________________________________________
Linux-f2fs-devel mailing list
Linux-f2fs-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/linux-f2fs-devel

             reply	other threads:[~2019-11-12  0:35 UTC|newest]

Thread overview: 28+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2019-11-12  0:34 ira.weiny [this message]
2019-11-12  0:34 ` [f2fs-dev] [PATCH 0/2] Move swap functions out of address space operations ira.weiny
2019-11-12  0:34 ` [PATCH 1/2] fs: Clean up mapping variable ira.weiny
2019-11-12  0:34   ` [f2fs-dev] " ira.weiny
2019-11-12  1:20   ` Darrick J. Wong
2019-11-12  1:20     ` [f2fs-dev] " Darrick J. Wong
2019-11-12  0:34 ` [PATCH 2/2] fs: Move swap_[de]activate to file_operations ira.weiny
2019-11-12  0:34   ` [f2fs-dev] " ira.weiny
2019-11-12  0:43   ` Andrew Morton
2019-11-12  0:43     ` [f2fs-dev] " Andrew Morton
2019-11-12 12:00     ` Nikolay Borisov
2019-11-12 12:00       ` [f2fs-dev] " Nikolay Borisov
2019-11-12 13:33     ` Jan Kara
2019-11-12 13:33       ` [f2fs-dev] " Jan Kara
2019-11-12 17:05     ` Weiny, Ira
2019-11-12 17:05       ` [f2fs-dev] " Weiny, Ira
2019-11-12 17:05       ` Weiny, Ira
2019-11-12  1:20   ` Darrick J. Wong
2019-11-12  1:20     ` [f2fs-dev] " Darrick J. Wong
2019-11-12 23:52     ` Ira Weiny
2019-11-12 23:52       ` [f2fs-dev] " Ira Weiny
2019-11-12  6:55   ` Christoph Hellwig
2019-11-12  6:55     ` [f2fs-dev] " Christoph Hellwig
2019-11-12 13:30     ` Jan Kara
2019-11-12 13:30       ` [f2fs-dev] " Jan Kara
2019-11-12 17:09     ` Weiny, Ira
2019-11-12 17:09       ` [f2fs-dev] " Weiny, Ira
2019-11-12 17:09       ` Weiny, Ira

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=20191112003452.4756-1-ira.weiny@intel.com \
    --to=ira.weiny@intel.com \
    --cc=akpm@linux-foundation.org \
    --cc=anna.schumaker@netapp.com \
    --cc=chao@kernel.org \
    --cc=clm@fb.com \
    --cc=dsterba@suse.com \
    --cc=jaegeuk@kernel.org \
    --cc=josef@toxicpanda.com \
    --cc=linux-btrfs@vger.kernel.org \
    --cc=linux-f2fs-devel@lists.sourceforge.net \
    --cc=linux-fsdevel@vger.kernel.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=linux-mm@kvack.org \
    --cc=linux-nfs@vger.kernel.org \
    --cc=linux-xfs@vger.kernel.org \
    --cc=trond.myklebust@hammerspace.com \
    --cc=viro@zeniv.linux.org.uk \
    /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.