All of lore.kernel.org
 help / color / mirror / Atom feed
From: kernel test robot <lkp@intel.com>
To: Lorenzo Stoakes <lorenzo.stoakes@oracle.com>
Cc: oe-kbuild-all@lists.linux.dev
Subject: Re: [PATCH 09/10] fs: convert most other generic_file_*mmap() users to .mmap_prepare()
Date: Tue, 17 Jun 2025 15:14:43 +0800	[thread overview]
Message-ID: <202506171549.9dcTuFoR-lkp@intel.com> (raw)
In-Reply-To: <08db85970d89b17a995d2cffae96fb4cc462377f.1750099179.git.lorenzo.stoakes@oracle.com>

Hi Lorenzo,

kernel test robot noticed the following build errors:

[auto build test ERROR on akpm-mm/mm-everything]
[also build test ERROR on cifs/for-next linus/master v6.16-rc2 next-20250616]
[cannot apply to brauner-vfs/vfs.all trondmy-nfs/linux-next ceph-client/testing ceph-client/for-linus]
[If your patch is applied to the wrong git tree, kindly drop us a note.
And when submitting patch, we suggest to use '--base' as documented in
https://git-scm.com/docs/git-format-patch#_base_tree_information]

url:    https://github.com/intel-lab-lkp/linux/commits/Lorenzo-Stoakes/mm-rename-call_mmap-mmap_prepare-to-vfs_mmap-mmap_prepare/20250617-033629
base:   https://git.kernel.org/pub/scm/linux/kernel/git/akpm/mm.git mm-everything
patch link:    https://lore.kernel.org/r/08db85970d89b17a995d2cffae96fb4cc462377f.1750099179.git.lorenzo.stoakes%40oracle.com
patch subject: [PATCH 09/10] fs: convert most other generic_file_*mmap() users to .mmap_prepare()
config: i386-buildonly-randconfig-004-20250617 (https://download.01.org/0day-ci/archive/20250617/202506171549.9dcTuFoR-lkp@intel.com/config)
compiler: gcc-12 (Debian 12.2.0-14) 12.2.0
reproduce (this is a W=1 build): (https://download.01.org/0day-ci/archive/20250617/202506171549.9dcTuFoR-lkp@intel.com/reproduce)

If you fix the issue in a separate patch/commit (i.e. not just a new version of
the same patch/commit), kindly add following tags
| Reported-by: kernel test robot <lkp@intel.com>
| Closes: https://lore.kernel.org/oe-kbuild-all/202506171549.9dcTuFoR-lkp@intel.com/

All errors (new ones prefixed by >>):

   fs/ubifs/file.c: In function 'ubifs_file_mmap_prepare':
>> fs/ubifs/file.c:1589:9: error: 'vma' undeclared (first use in this function); did you mean 'vmap'?
    1589 |         vma->vm_ops = &ubifs_file_vm_ops;
         |         ^~~
         |         vmap
   fs/ubifs/file.c:1589:9: note: each undeclared identifier is reported only once for each function it appears in


vim +1589 fs/ubifs/file.c

1e51764a3c2ac05 Artem Bityutskiy 2008-07-14  1581  
de03a8cfdadf57d Lorenzo Stoakes  2025-06-16  1582  static int ubifs_file_mmap_prepare(struct vm_area_desc *desc)
1e51764a3c2ac05 Artem Bityutskiy 2008-07-14  1583  {
1e51764a3c2ac05 Artem Bityutskiy 2008-07-14  1584  	int err;
1e51764a3c2ac05 Artem Bityutskiy 2008-07-14  1585  
de03a8cfdadf57d Lorenzo Stoakes  2025-06-16  1586  	err = generic_file_mmap_prepare(desc);
1e51764a3c2ac05 Artem Bityutskiy 2008-07-14  1587  	if (err)
1e51764a3c2ac05 Artem Bityutskiy 2008-07-14  1588  		return err;
1e51764a3c2ac05 Artem Bityutskiy 2008-07-14 @1589  	vma->vm_ops = &ubifs_file_vm_ops;
e3d73dead4988f3 Sascha Hauer     2019-03-26  1590  
e3d73dead4988f3 Sascha Hauer     2019-03-26  1591  	if (IS_ENABLED(CONFIG_UBIFS_ATIME_SUPPORT))
de03a8cfdadf57d Lorenzo Stoakes  2025-06-16  1592  		file_accessed(desc->file);
e3d73dead4988f3 Sascha Hauer     2019-03-26  1593  
1e51764a3c2ac05 Artem Bityutskiy 2008-07-14  1594  	return 0;
1e51764a3c2ac05 Artem Bityutskiy 2008-07-14  1595  }
1e51764a3c2ac05 Artem Bityutskiy 2008-07-14  1596  

-- 
0-DAY CI Kernel Test Service
https://github.com/intel/lkp-tests/wiki

  reply	other threads:[~2025-06-17  7:14 UTC|newest]

Thread overview: 161+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2025-06-16 19:33 [PATCH 00/10] convert the majority of file systems to mmap_prepare Lorenzo Stoakes
2025-06-16 19:33 ` Lorenzo Stoakes
2025-06-16 19:33 ` [f2fs-dev] " Lorenzo Stoakes via Linux-f2fs-devel
2025-06-16 19:33 ` [PATCH 01/10] mm: rename call_mmap/mmap_prepare to vfs_mmap/mmap_prepare Lorenzo Stoakes
2025-06-16 19:33   ` Lorenzo Stoakes
2025-06-16 19:33   ` [f2fs-dev] " Lorenzo Stoakes via Linux-f2fs-devel
2025-06-17  5:10   ` Christoph Hellwig
2025-06-17  5:10     ` Christoph Hellwig
2025-06-17  5:10     ` [f2fs-dev] " Christoph Hellwig
2025-06-17  5:29     ` Lorenzo Stoakes
2025-06-17  5:29       ` Lorenzo Stoakes
2025-06-17  5:29       ` [f2fs-dev] " Lorenzo Stoakes via Linux-f2fs-devel
2025-06-17 18:57   ` Vlastimil Babka
2025-06-17 18:57     ` Vlastimil Babka
2025-06-17 18:57     ` [f2fs-dev] " Vlastimil Babka
2025-06-16 19:33 ` [PATCH 02/10] mm/nommu: use file_has_valid_mmap_hooks() helper Lorenzo Stoakes
2025-06-16 19:33   ` Lorenzo Stoakes
2025-06-16 19:33   ` [f2fs-dev] " Lorenzo Stoakes via Linux-f2fs-devel
2025-06-17 10:05   ` Jan Kara
2025-06-17 10:05     ` Jan Kara
2025-06-17 10:05     ` [f2fs-dev] " Jan Kara
2025-06-17 18:58   ` Vlastimil Babka
2025-06-17 18:58     ` Vlastimil Babka
2025-06-17 18:58     ` [f2fs-dev] " Vlastimil Babka
2025-06-16 19:33 ` [PATCH 03/10] fs: consistently " Lorenzo Stoakes
2025-06-16 19:33   ` Lorenzo Stoakes
2025-06-16 19:33   ` [f2fs-dev] " Lorenzo Stoakes via Linux-f2fs-devel
2025-06-16 20:01   ` Kees Cook
2025-06-16 20:01     ` Kees Cook
2025-06-16 20:01     ` [f2fs-dev] " Kees Cook via Linux-f2fs-devel
2025-06-17  5:11   ` Christoph Hellwig
2025-06-17  5:11     ` Christoph Hellwig
2025-06-17  5:11     ` [f2fs-dev] " Christoph Hellwig
2025-06-17  5:25     ` Lorenzo Stoakes
2025-06-17  5:25       ` Lorenzo Stoakes
2025-06-17  5:25       ` [f2fs-dev] " Lorenzo Stoakes via Linux-f2fs-devel
2025-06-17  5:29       ` Christoph Hellwig
2025-06-17  5:29         ` Christoph Hellwig
2025-06-17  5:29         ` [f2fs-dev] " Christoph Hellwig
2025-06-17 10:08       ` Jan Kara
2025-06-17 10:08         ` Jan Kara
2025-06-17 10:08         ` [f2fs-dev] " Jan Kara
2025-06-17 11:48         ` Christian Brauner
2025-06-17 11:48           ` Christian Brauner
2025-06-17 11:48           ` [f2fs-dev] " Christian Brauner via Linux-f2fs-devel
2025-06-16 19:33 ` [PATCH 04/10] fs/dax: make it possible to check dev dax support without a VMA Lorenzo Stoakes
2025-06-16 19:33   ` Lorenzo Stoakes
2025-06-16 19:33   ` [f2fs-dev] " Lorenzo Stoakes via Linux-f2fs-devel
2025-06-16 20:26   ` Matthew Wilcox
2025-06-16 20:26     ` Matthew Wilcox
2025-06-16 20:26     ` [f2fs-dev] " Matthew Wilcox
2025-06-17 11:43     ` Christian Brauner
2025-06-17 11:43       ` Christian Brauner
2025-06-17 11:43       ` [f2fs-dev] " Christian Brauner via Linux-f2fs-devel
2025-06-16 19:33 ` [PATCH 05/10] fs/ext4: transition from deprecated .mmap hook to .mmap_prepare Lorenzo Stoakes
2025-06-16 19:33   ` Lorenzo Stoakes
2025-06-16 19:33   ` [f2fs-dev] " Lorenzo Stoakes via Linux-f2fs-devel
2025-06-17 10:11   ` Jan Kara
2025-06-17 10:11     ` Jan Kara
2025-06-17 10:11     ` [f2fs-dev] " Jan Kara
2025-06-16 19:33 ` [PATCH 06/10] fs/xfs: " Lorenzo Stoakes
2025-06-16 19:33   ` Lorenzo Stoakes
2025-06-16 19:33   ` [f2fs-dev] " Lorenzo Stoakes via Linux-f2fs-devel
2025-06-17  5:08   ` Christoph Hellwig
2025-06-17  5:08     ` Christoph Hellwig
2025-06-17  5:08     ` [f2fs-dev] " Christoph Hellwig
2025-06-17 11:45     ` Christian Brauner
2025-06-17 11:45       ` Christian Brauner
2025-06-17 11:45       ` [f2fs-dev] " Christian Brauner via Linux-f2fs-devel
2025-06-16 19:33 ` [PATCH 07/10] mm/filemap: introduce generic_file_*_mmap_prepare() helpers Lorenzo Stoakes
2025-06-16 19:33   ` Lorenzo Stoakes
2025-06-16 19:33   ` [f2fs-dev] " Lorenzo Stoakes via Linux-f2fs-devel
2025-06-17 10:12   ` Jan Kara
2025-06-17 10:12     ` Jan Kara
2025-06-17 10:12     ` [f2fs-dev] " Jan Kara
2025-06-17 19:00   ` Vlastimil Babka
2025-06-17 19:00     ` Vlastimil Babka
2025-06-17 19:00     ` [f2fs-dev] " Vlastimil Babka
2025-06-16 19:33 ` [PATCH 08/10] fs: convert simple use of generic_file_*_mmap() to .mmap_prepare() Lorenzo Stoakes
2025-06-16 19:33   ` Lorenzo Stoakes
2025-06-16 19:33   ` [f2fs-dev] " Lorenzo Stoakes via Linux-f2fs-devel
2025-06-16 23:26   ` Viacheslav Dubeyko
2025-06-16 23:26     ` Viacheslav Dubeyko
2025-06-16 23:26     ` [f2fs-dev] " Viacheslav Dubeyko via Linux-f2fs-devel
2025-06-16 23:26     ` Viacheslav Dubeyko
2025-06-17 10:14   ` Jan Kara
2025-06-17 10:14     ` Jan Kara
2025-06-17 10:14     ` [f2fs-dev] " Jan Kara
2025-06-17 14:07   ` Dave Kleikamp
2025-06-17 14:07     ` Dave Kleikamp
2025-06-17 14:07     ` [f2fs-dev] " Dave Kleikamp via Linux-f2fs-devel
2025-06-16 19:33 ` [PATCH 09/10] fs: convert most other generic_file_*mmap() users " Lorenzo Stoakes
2025-06-16 19:33   ` Lorenzo Stoakes
2025-06-16 19:33   ` [f2fs-dev] " Lorenzo Stoakes via Linux-f2fs-devel
2025-06-17  7:14   ` kernel test robot [this message]
2025-06-17  9:14     ` Lorenzo Stoakes
2025-06-17 10:23   ` Jan Kara
2025-06-17 10:23     ` Jan Kara
2025-06-17 10:23     ` [f2fs-dev] " Jan Kara
2025-06-17 11:54     ` Christian Brauner
2025-06-17 11:54       ` Christian Brauner
2025-06-17 11:54       ` [f2fs-dev] " Christian Brauner via Linux-f2fs-devel
2025-06-16 19:33 ` [PATCH 10/10] fs: replace mmap hook with .mmap_prepare for simple mappings Lorenzo Stoakes
2025-06-16 19:33   ` Lorenzo Stoakes
2025-06-16 19:33   ` [f2fs-dev] " Lorenzo Stoakes via Linux-f2fs-devel
2025-06-16 22:51   ` Damien Le Moal
2025-06-16 22:51     ` Damien Le Moal
2025-06-16 22:51     ` [f2fs-dev] " Damien Le Moal via Linux-f2fs-devel
2025-06-16 23:24   ` Viacheslav Dubeyko
2025-06-16 23:24     ` Viacheslav Dubeyko
2025-06-16 23:24     ` [f2fs-dev] " Viacheslav Dubeyko via Linux-f2fs-devel
2025-06-16 23:24     ` Viacheslav Dubeyko
2025-06-17 10:28   ` Jan Kara
2025-06-17 10:28     ` Jan Kara
2025-06-17 10:28     ` [f2fs-dev] " Jan Kara
2025-06-17 11:57     ` Christian Brauner
2025-06-17 11:57       ` Christian Brauner
2025-06-17 11:57       ` [f2fs-dev] " Christian Brauner via Linux-f2fs-devel
2025-06-18 17:06   ` David Sterba
2025-06-18 17:06     ` David Sterba
2025-06-18 17:06     ` [f2fs-dev] " David Sterba
2025-06-19 17:47   ` Ryusuke Konishi
2025-06-19 17:47     ` Ryusuke Konishi
2025-06-19 17:47     ` [f2fs-dev] " Ryusuke Konishi
2025-06-30 16:55   ` Mike Marshall
2025-06-30 17:04     ` Lorenzo Stoakes
2025-06-16 19:56 ` [PATCH 00/10] convert the majority of file systems to mmap_prepare Kent Overstreet
2025-06-16 19:56   ` Kent Overstreet
2025-06-16 19:56   ` [f2fs-dev] " Kent Overstreet
2025-06-16 20:41 ` Al Viro
2025-06-16 20:41   ` Al Viro
2025-06-16 20:41   ` [f2fs-dev] " Al Viro
2025-06-17 13:45   ` Jeff Layton
2025-06-17 13:45     ` Jeff Layton
2025-06-17 13:45     ` [f2fs-dev] " Jeff Layton via Linux-f2fs-devel
2025-06-17 13:46     ` Lorenzo Stoakes
2025-06-17 13:46       ` Lorenzo Stoakes
2025-06-17 13:46       ` [f2fs-dev] " Lorenzo Stoakes via Linux-f2fs-devel
2025-06-16 23:11 ` Andrew Morton
2025-06-16 23:11   ` Andrew Morton
2025-06-16 23:11   ` [f2fs-dev] " Andrew Morton
2025-06-17 11:31   ` Christian Brauner
2025-06-17 11:31     ` Christian Brauner
2025-06-17 11:31     ` [f2fs-dev] " Christian Brauner via Linux-f2fs-devel
2025-06-17 11:58 ` Christian Brauner
2025-06-17 11:58   ` Christian Brauner
2025-06-17 11:58   ` [f2fs-dev] " Christian Brauner via Linux-f2fs-devel
2025-06-17 14:05 ` David Howells
2025-06-17 14:05   ` David Howells
2025-06-17 14:05   ` [f2fs-dev] " David Howells via Linux-f2fs-devel
2025-06-17 14:17   ` Lorenzo Stoakes
2025-06-17 14:17     ` Lorenzo Stoakes
2025-06-17 14:17     ` [f2fs-dev] " Lorenzo Stoakes via Linux-f2fs-devel
2025-06-17 16:02 ` ✓ i915.CI.BAT: success for " Patchwork
2025-06-18  3:48 ` ✓ i915.CI.Full: " Patchwork
2025-08-01 14:00 ` [PATCH 00/10] " Jason Gunthorpe
2025-08-01 14:00   ` Jason Gunthorpe
2025-08-01 14:00   ` [f2fs-dev] " Jason Gunthorpe via Linux-f2fs-devel
2025-08-01 14:12   ` Lorenzo Stoakes
2025-08-01 14:23     ` David Hildenbrand
2025-08-01 16:29     ` Jason Gunthorpe

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=202506171549.9dcTuFoR-lkp@intel.com \
    --to=lkp@intel.com \
    --cc=lorenzo.stoakes@oracle.com \
    --cc=oe-kbuild-all@lists.linux.dev \
    /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.