linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] nfs: cover ->migratepage with CONFIG_MIGRATION
@ 2016-09-20  4:01 Chao Yu
  2016-09-20 12:51 ` kbuild test robot
  0 siblings, 1 reply; 3+ messages in thread
From: Chao Yu @ 2016-09-20  4:01 UTC (permalink / raw)
  To: trond.myklebust, anna.schumaker; +Cc: linux-nfs, linux-kernel, Chao Yu

It will be more clean to use CONFIG_MIGRATION to cover nfs' private
.migratepage in nfs_file_aops like we do in other part of nfs
operations.

Signed-off-by: Chao Yu <yuchao0@huawei.com>
---
 fs/nfs/file.c     | 2 ++
 fs/nfs/internal.h | 8 --------
 2 files changed, 2 insertions(+), 8 deletions(-)

diff --git a/fs/nfs/file.c b/fs/nfs/file.c
index 7d62097..6cfb83e 100644
--- a/fs/nfs/file.c
+++ b/fs/nfs/file.c
@@ -543,7 +543,9 @@ const struct address_space_operations nfs_file_aops = {
 	.invalidatepage = nfs_invalidate_page,
 	.releasepage = nfs_release_page,
 	.direct_IO = nfs_direct_IO,
+#ifdef CONFIG_MIGRATION
 	.migratepage = nfs_migrate_page,
+#endif
 	.launder_page = nfs_launder_page,
 	.is_dirty_writeback = nfs_check_dirty_writeback,
 	.error_remove_page = generic_error_remove_page,
diff --git a/fs/nfs/internal.h b/fs/nfs/internal.h
index 7ce5e02..0d508f7 100644
--- a/fs/nfs/internal.h
+++ b/fs/nfs/internal.h
@@ -532,14 +532,6 @@ void nfs_clear_pnfs_ds_commit_verifiers(struct pnfs_ds_commit_info *cinfo)
 }
 #endif
 
-
-#ifdef CONFIG_MIGRATION
-extern int nfs_migrate_page(struct address_space *,
-		struct page *, struct page *, enum migrate_mode);
-#else
-#define nfs_migrate_page NULL
-#endif
-
 static inline int
 nfs_write_verifier_cmp(const struct nfs_write_verifier *v1,
 		const struct nfs_write_verifier *v2)
-- 
2.8.2.311.gee88674

^ permalink raw reply related	[flat|nested] 3+ messages in thread

* Re: [PATCH] nfs: cover ->migratepage with CONFIG_MIGRATION
  2016-09-20 12:51 ` kbuild test robot
@ 2016-09-20  5:51   ` Chao Yu
  0 siblings, 0 replies; 3+ messages in thread
From: Chao Yu @ 2016-09-20  5:51 UTC (permalink / raw)
  To: kbuild test robot
  Cc: kbuild-all, trond.myklebust, anna.schumaker, linux-nfs, linux-kernel

On 2016/9/20 20:51, kbuild test robot wrote:
>>> fs/nfs/file.c:547:17: error: 'nfs_migrate_page' undeclared here (not in a function)
>      .migratepage = nfs_migrate_page,

Oops :(, sorry for my mistake, let me fix this.

Thanks,

^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: [PATCH] nfs: cover ->migratepage with CONFIG_MIGRATION
  2016-09-20  4:01 [PATCH] nfs: cover ->migratepage with CONFIG_MIGRATION Chao Yu
@ 2016-09-20 12:51 ` kbuild test robot
  2016-09-20  5:51   ` Chao Yu
  0 siblings, 1 reply; 3+ messages in thread
From: kbuild test robot @ 2016-09-20 12:51 UTC (permalink / raw)
  To: Chao Yu
  Cc: kbuild-all, trond.myklebust, anna.schumaker, linux-nfs,
	linux-kernel, Chao Yu

[-- Attachment #1: Type: text/plain, Size: 2229 bytes --]

Hi Chao,

[auto build test ERROR on nfs/linux-next]
[also build test ERROR on v4.8-rc7 next-20160919]
[if your patch is applied to the wrong git tree, please drop us a note to help improve the system]
[Suggest to use git(>=2.9.0) format-patch --base=<commit> (or --base=auto for convenience) to record what (public, well-known) commit your patch series was built on]
[Check https://git-scm.com/docs/git-format-patch for more information]

url:    https://github.com/0day-ci/linux/commits/Chao-Yu/nfs-cover-migratepage-with-CONFIG_MIGRATION/20160920-121006
base:   git://git.linux-nfs.org/projects/trondmy/linux-nfs.git linux-next
config: i386-randconfig-s1-09191616 (attached as .config)
compiler: gcc-6 (Debian 6.2.0-3) 6.2.0 20160901
reproduce:
        # save the attached .config to linux build tree
        make ARCH=i386 

All errors (new ones prefixed by >>):

>> fs/nfs/file.c:547:17: error: 'nfs_migrate_page' undeclared here (not in a function)
     .migratepage = nfs_migrate_page,
                    ^~~~~~~~~~~~~~~~

vim +/nfs_migrate_page +547 fs/nfs/file.c

4899f9c8 Nick Piggin     2007-10-16  541  	.write_begin = nfs_write_begin,
4899f9c8 Nick Piggin     2007-10-16  542  	.write_end = nfs_write_end,
cd52ed35 Trond Myklebust 2006-03-20  543  	.invalidatepage = nfs_invalidate_page,
cd52ed35 Trond Myklebust 2006-03-20  544  	.releasepage = nfs_release_page,
^1da177e Linus Torvalds  2005-04-16  545  	.direct_IO = nfs_direct_IO,
daa42d9f Chao Yu         2016-09-20  546  #ifdef CONFIG_MIGRATION
074cc1de Trond Myklebust 2009-08-10 @547  	.migratepage = nfs_migrate_page,
daa42d9f Chao Yu         2016-09-20  548  #endif
e3db7691 Trond Myklebust 2007-01-10  549  	.launder_page = nfs_launder_page,
f919b196 Mel Gorman      2013-07-03  550  	.is_dirty_writeback = nfs_check_dirty_writeback,

:::::: The code at line 547 was first introduced by commit
:::::: 074cc1deec5dee63fcd5d966b36fa4f3765b50fc NFS: Add a ->migratepage() aop for NFS

:::::: TO: Trond Myklebust <Trond.Myklebust@netapp.com>
:::::: CC: Trond Myklebust <Trond.Myklebust@netapp.com>

---
0-DAY kernel test infrastructure                Open Source Technology Center
https://lists.01.org/pipermail/kbuild-all                   Intel Corporation

[-- Attachment #2: .config.gz --]
[-- Type: application/gzip, Size: 26328 bytes --]

^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2016-09-20  5:52 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2016-09-20  4:01 [PATCH] nfs: cover ->migratepage with CONFIG_MIGRATION Chao Yu
2016-09-20 12:51 ` kbuild test robot
2016-09-20  5:51   ` Chao Yu

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).