* [jlayton:kdevops 4/27] fs/namei.c:4173:38: error: 'LEASE_BREAK_DIR_CREATE' undeclared
@ 2026-04-07 4:03 kernel test robot
0 siblings, 0 replies; only message in thread
From: kernel test robot @ 2026-04-07 4:03 UTC (permalink / raw)
To: Jeff Layton; +Cc: oe-kbuild-all
tree: https://git.kernel.org/pub/scm/linux/kernel/git/jlayton/linux.git kdevops
head: 4c7561ebe642f97bf42406cdbbda294c0b7b4a63
commit: 6c5b0d9e45361e997bfb76a078bc1013a04ac0b3 [4/27] filelock: add support for ignoring deleg breaks for dir change events
config: openrisc-randconfig-r071-20260407 (https://download.01.org/0day-ci/archive/20260407/202604071004.twcZfiIB-lkp@intel.com/config)
compiler: or1k-linux-gcc (GCC) 11.5.0
smatch: v0.5.0-9004-gb810ac53
reproduce (this is a W=1 build): (https://download.01.org/0day-ci/archive/20260407/202604071004.twcZfiIB-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/202604071004.twcZfiIB-lkp@intel.com/
All errors (new ones prefixed by >>):
fs/namei.c: In function 'vfs_create':
>> fs/namei.c:4173:38: error: 'LEASE_BREAK_DIR_CREATE' undeclared (first use in this function)
4173 | error = try_break_deleg(dir, LEASE_BREAK_DIR_CREATE, di);
| ^~~~~~~~~~~~~~~~~~~~~~
fs/namei.c:4173:38: note: each undeclared identifier is reported only once for each function it appears in
fs/namei.c: In function 'lookup_open':
fs/namei.c:4472:52: error: 'LEASE_BREAK_DIR_CREATE' undeclared (first use in this function)
4472 | error = try_break_deleg(dir_inode, LEASE_BREAK_DIR_CREATE, delegated_inode);
| ^~~~~~~~~~~~~~~~~~~~~~
fs/namei.c: In function 'vfs_mknod':
fs/namei.c:5088:38: error: 'LEASE_BREAK_DIR_CREATE' undeclared (first use in this function)
5088 | error = try_break_deleg(dir, LEASE_BREAK_DIR_CREATE, delegated_inode);
| ^~~~~~~~~~~~~~~~~~~~~~
fs/namei.c: In function 'vfs_mkdir':
fs/namei.c:5229:38: error: 'LEASE_BREAK_DIR_CREATE' undeclared (first use in this function)
5229 | error = try_break_deleg(dir, LEASE_BREAK_DIR_CREATE, delegated_inode);
| ^~~~~~~~~~~~~~~~~~~~~~
fs/namei.c: In function 'vfs_rmdir':
>> fs/namei.c:5334:38: error: 'LEASE_BREAK_DIR_DELETE' undeclared (first use in this function)
5334 | error = try_break_deleg(dir, LEASE_BREAK_DIR_DELETE, delegated_inode);
| ^~~~~~~~~~~~~~~~~~~~~~
fs/namei.c: In function 'vfs_unlink':
fs/namei.c:5464:54: error: 'LEASE_BREAK_DIR_DELETE' undeclared (first use in this function)
5464 | error = try_break_deleg(dir, LEASE_BREAK_DIR_DELETE, delegated_inode);
| ^~~~~~~~~~~~~~~~~~~~~~
fs/namei.c: In function 'vfs_symlink':
fs/namei.c:5611:38: error: 'LEASE_BREAK_DIR_CREATE' undeclared (first use in this function)
5611 | error = try_break_deleg(dir, LEASE_BREAK_DIR_CREATE, delegated_inode);
| ^~~~~~~~~~~~~~~~~~~~~~
fs/namei.c: In function 'vfs_link':
fs/namei.c:5742:46: error: 'LEASE_BREAK_DIR_CREATE' undeclared (first use in this function)
5742 | error = try_break_deleg(dir, LEASE_BREAK_DIR_CREATE, delegated_inode);
| ^~~~~~~~~~~~~~~~~~~~~~
fs/namei.c: In function 'vfs_rename':
>> fs/namei.c:6009:54: error: 'LEASE_BREAK_DIR_RENAME' undeclared (first use in this function)
6009 | old_dir == new_dir ? LEASE_BREAK_DIR_RENAME :
| ^~~~~~~~~~~~~~~~~~~~~~
fs/namei.c:6010:54: error: 'LEASE_BREAK_DIR_DELETE' undeclared (first use in this function)
6010 | LEASE_BREAK_DIR_DELETE,
| ^~~~~~~~~~~~~~~~~~~~~~
fs/namei.c:6015:50: error: 'LEASE_BREAK_DIR_CREATE' undeclared (first use in this function)
6015 | error = try_break_deleg(new_dir, LEASE_BREAK_DIR_CREATE, delegated_inode);
| ^~~~~~~~~~~~~~~~~~~~~~
vim +/LEASE_BREAK_DIR_CREATE +4173 fs/namei.c
4140
4141 /**
4142 * vfs_create - create new file
4143 * @idmap: idmap of the mount the inode was found from
4144 * @dentry: dentry of the child file
4145 * @mode: mode of the child file
4146 * @di: returns parent inode, if the inode is delegated.
4147 *
4148 * Create a new file.
4149 *
4150 * If the inode has been found through an idmapped mount the idmap of
4151 * the vfsmount must be passed through @idmap. This function will then take
4152 * care to map the inode according to @idmap before checking permissions.
4153 * On non-idmapped mounts or if permission checking is to be performed on the
4154 * raw inode simply pass @nop_mnt_idmap.
4155 */
4156 int vfs_create(struct mnt_idmap *idmap, struct dentry *dentry, umode_t mode,
4157 struct delegated_inode *di)
4158 {
4159 struct inode *dir = d_inode(dentry->d_parent);
4160 int error;
4161
4162 error = may_create_dentry(idmap, dir, dentry);
4163 if (error)
4164 return error;
4165
4166 if (!dir->i_op->create)
4167 return -EACCES; /* shouldn't it be ENOSYS? */
4168
4169 mode = vfs_prepare_mode(idmap, dir, mode, S_IALLUGO, S_IFREG);
4170 error = security_inode_create(dir, dentry, mode);
4171 if (error)
4172 return error;
> 4173 error = try_break_deleg(dir, LEASE_BREAK_DIR_CREATE, di);
4174 if (error)
4175 return error;
4176 error = dir->i_op->create(idmap, dir, dentry, mode, true);
4177 if (!error)
4178 fsnotify_create(dir, dentry);
4179 return error;
4180 }
4181 EXPORT_SYMBOL(vfs_create);
4182
--
0-DAY CI Kernel Test Service
https://github.com/intel/lkp-tests/wiki
^ permalink raw reply [flat|nested] only message in thread
only message in thread, other threads:[~2026-04-07 4:03 UTC | newest]
Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2026-04-07 4:03 [jlayton:kdevops 4/27] fs/namei.c:4173:38: error: 'LEASE_BREAK_DIR_CREATE' undeclared kernel test robot
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.