* Re: [PATCH v1 5/7] Make nfs4_server_supports_acls() global
[not found] <20260102232934.1560-6-rick.macklem@gmail.com>
@ 2026-01-03 14:37 ` kernel test robot
2026-01-03 16:04 ` Rick Macklem
2026-01-09 23:50 ` kernel test robot
1 sibling, 1 reply; 3+ messages in thread
From: kernel test robot @ 2026-01-03 14:37 UTC (permalink / raw)
To: rick.macklem, linux-nfs; +Cc: llvm, oe-kbuild-all, Rick Macklem
Hi,
kernel test robot noticed the following build errors:
[auto build test ERROR on trondmy-nfs/linux-next]
[also build test ERROR on linus/master v6.16-rc1 next-20251219]
[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/rick-macklem-gmail-com/Add-entries-to-the-predefined-client-operations-enum/20260103-073239
base: git://git.linux-nfs.org/projects/trondmy/linux-nfs.git linux-next
patch link: https://lore.kernel.org/r/20260102232934.1560-6-rick.macklem%40gmail.com
patch subject: [PATCH v1 5/7] Make nfs4_server_supports_acls() global
config: x86_64-kexec (https://download.01.org/0day-ci/archive/20260103/202601031506.MX594pma-lkp@intel.com/config)
compiler: clang version 20.1.8 (https://github.com/llvm/llvm-project 87f0227cb60147a26a1eeb4fb06e3b505e9c7261)
reproduce (this is a W=1 build): (https://download.01.org/0day-ci/archive/20260103/202601031506.MX594pma-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/202601031506.MX594pma-lkp@intel.com/
All errors (new ones prefixed by >>):
>> fs/nfs/nfs4proc.c:6083:36: error: use of undeclared identifier 'FATTR4_WORD2_POSIX_DEFAULT_ACL'
6083 | return server->attr_bitmask[2] & FATTR4_WORD2_POSIX_DEFAULT_ACL;
| ^
>> fs/nfs/nfs4proc.c:6085:36: error: use of undeclared identifier 'FATTR4_WORD2_POSIX_ACCESS_ACL'
6085 | return server->attr_bitmask[2] & FATTR4_WORD2_POSIX_ACCESS_ACL;
| ^
fs/nfs/nfs4proc.c:9630:12: warning: variable 'ptr' set but not used [-Wunused-but-set-variable]
9630 | unsigned *ptr;
| ^
1 warning and 2 errors generated.
vim +/FATTR4_WORD2_POSIX_DEFAULT_ACL +6083 fs/nfs/nfs4proc.c
6071
6072 bool nfs4_server_supports_acls(const struct nfs_server *server,
6073 enum nfs4_acl_type type)
6074 {
6075 switch (type) {
6076 default:
6077 return server->attr_bitmask[0] & FATTR4_WORD0_ACL;
6078 case NFS4ACL_DACL:
6079 return server->attr_bitmask[1] & FATTR4_WORD1_DACL;
6080 case NFS4ACL_SACL:
6081 return server->attr_bitmask[1] & FATTR4_WORD1_SACL;
6082 case NFS4ACL_POSIXDEFAULT:
> 6083 return server->attr_bitmask[2] & FATTR4_WORD2_POSIX_DEFAULT_ACL;
6084 case NFS4ACL_POSIXACCESS:
> 6085 return server->attr_bitmask[2] & FATTR4_WORD2_POSIX_ACCESS_ACL;
6086 }
6087 }
6088
--
0-DAY CI Kernel Test Service
https://github.com/intel/lkp-tests/wiki
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: [PATCH v1 5/7] Make nfs4_server_supports_acls() global
2026-01-03 14:37 ` [PATCH v1 5/7] Make nfs4_server_supports_acls() global kernel test robot
@ 2026-01-03 16:04 ` Rick Macklem
0 siblings, 0 replies; 3+ messages in thread
From: Rick Macklem @ 2026-01-03 16:04 UTC (permalink / raw)
To: kernel test robot; +Cc: linux-nfs, llvm, oe-kbuild-all, Rick Macklem
The reason this happens is that this patch series requires
the 0001 patch from the server series.
Should I repost with that patch including in this set as well?
rick
On Sat, Jan 3, 2026 at 6:37 AM kernel test robot <lkp@intel.com> wrote:
>
> Hi,
>
> kernel test robot noticed the following build errors:
>
> [auto build test ERROR on trondmy-nfs/linux-next]
> [also build test ERROR on linus/master v6.16-rc1 next-20251219]
> [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/rick-macklem-gmail-com/Add-entries-to-the-predefined-client-operations-enum/20260103-073239
> base: git://git.linux-nfs.org/projects/trondmy/linux-nfs.git linux-next
> patch link: https://lore.kernel.org/r/20260102232934.1560-6-rick.macklem%40gmail.com
> patch subject: [PATCH v1 5/7] Make nfs4_server_supports_acls() global
> config: x86_64-kexec (https://download.01.org/0day-ci/archive/20260103/202601031506.MX594pma-lkp@intel.com/config)
> compiler: clang version 20.1.8 (https://github.com/llvm/llvm-project 87f0227cb60147a26a1eeb4fb06e3b505e9c7261)
> reproduce (this is a W=1 build): (https://download.01.org/0day-ci/archive/20260103/202601031506.MX594pma-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/202601031506.MX594pma-lkp@intel.com/
>
> All errors (new ones prefixed by >>):
>
> >> fs/nfs/nfs4proc.c:6083:36: error: use of undeclared identifier 'FATTR4_WORD2_POSIX_DEFAULT_ACL'
> 6083 | return server->attr_bitmask[2] & FATTR4_WORD2_POSIX_DEFAULT_ACL;
> | ^
> >> fs/nfs/nfs4proc.c:6085:36: error: use of undeclared identifier 'FATTR4_WORD2_POSIX_ACCESS_ACL'
> 6085 | return server->attr_bitmask[2] & FATTR4_WORD2_POSIX_ACCESS_ACL;
> | ^
> fs/nfs/nfs4proc.c:9630:12: warning: variable 'ptr' set but not used [-Wunused-but-set-variable]
> 9630 | unsigned *ptr;
> | ^
> 1 warning and 2 errors generated.
>
>
> vim +/FATTR4_WORD2_POSIX_DEFAULT_ACL +6083 fs/nfs/nfs4proc.c
>
> 6071
> 6072 bool nfs4_server_supports_acls(const struct nfs_server *server,
> 6073 enum nfs4_acl_type type)
> 6074 {
> 6075 switch (type) {
> 6076 default:
> 6077 return server->attr_bitmask[0] & FATTR4_WORD0_ACL;
> 6078 case NFS4ACL_DACL:
> 6079 return server->attr_bitmask[1] & FATTR4_WORD1_DACL;
> 6080 case NFS4ACL_SACL:
> 6081 return server->attr_bitmask[1] & FATTR4_WORD1_SACL;
> 6082 case NFS4ACL_POSIXDEFAULT:
> > 6083 return server->attr_bitmask[2] & FATTR4_WORD2_POSIX_DEFAULT_ACL;
> 6084 case NFS4ACL_POSIXACCESS:
> > 6085 return server->attr_bitmask[2] & FATTR4_WORD2_POSIX_ACCESS_ACL;
> 6086 }
> 6087 }
> 6088
>
> --
> 0-DAY CI Kernel Test Service
> https://github.com/intel/lkp-tests/wiki
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: [PATCH v1 5/7] Make nfs4_server_supports_acls() global
[not found] <20260102232934.1560-6-rick.macklem@gmail.com>
2026-01-03 14:37 ` [PATCH v1 5/7] Make nfs4_server_supports_acls() global kernel test robot
@ 2026-01-09 23:50 ` kernel test robot
1 sibling, 0 replies; 3+ messages in thread
From: kernel test robot @ 2026-01-09 23:50 UTC (permalink / raw)
To: rick.macklem, linux-nfs; +Cc: llvm, oe-kbuild-all, Rick Macklem
Hi,
kernel test robot noticed the following build errors:
[auto build test ERROR on trondmy-nfs/linux-next]
[also build test ERROR on linus/master v6.19-rc4 next-20260109]
[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/rick-macklem-gmail-com/Add-entries-to-the-predefined-client-operations-enum/20260103-073239
base: git://git.linux-nfs.org/projects/trondmy/linux-nfs.git linux-next
patch link: https://lore.kernel.org/r/20260102232934.1560-6-rick.macklem%40gmail.com
patch subject: [PATCH v1 5/7] Make nfs4_server_supports_acls() global
config: hexagon-allmodconfig (https://download.01.org/0day-ci/archive/20260110/202601100751.PT89Ryd4-lkp@intel.com/config)
compiler: clang version 17.0.6 (https://github.com/llvm/llvm-project 6009708b4367171ccdbf4b5905cb6a803753fe18)
reproduce (this is a W=1 build): (https://download.01.org/0day-ci/archive/20260110/202601100751.PT89Ryd4-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/202601100751.PT89Ryd4-lkp@intel.com/
All errors (new ones prefixed by >>):
>> fs/nfs/nfs4proc.c:6083:36: error: use of undeclared identifier 'FATTR4_WORD2_POSIX_DEFAULT_ACL'
6083 | return server->attr_bitmask[2] & FATTR4_WORD2_POSIX_DEFAULT_ACL;
| ^
>> fs/nfs/nfs4proc.c:6085:36: error: use of undeclared identifier 'FATTR4_WORD2_POSIX_ACCESS_ACL'
6085 | return server->attr_bitmask[2] & FATTR4_WORD2_POSIX_ACCESS_ACL;
| ^
2 errors generated.
vim +/FATTR4_WORD2_POSIX_DEFAULT_ACL +6083 fs/nfs/nfs4proc.c
6071
6072 bool nfs4_server_supports_acls(const struct nfs_server *server,
6073 enum nfs4_acl_type type)
6074 {
6075 switch (type) {
6076 default:
6077 return server->attr_bitmask[0] & FATTR4_WORD0_ACL;
6078 case NFS4ACL_DACL:
6079 return server->attr_bitmask[1] & FATTR4_WORD1_DACL;
6080 case NFS4ACL_SACL:
6081 return server->attr_bitmask[1] & FATTR4_WORD1_SACL;
6082 case NFS4ACL_POSIXDEFAULT:
> 6083 return server->attr_bitmask[2] & FATTR4_WORD2_POSIX_DEFAULT_ACL;
6084 case NFS4ACL_POSIXACCESS:
> 6085 return server->attr_bitmask[2] & FATTR4_WORD2_POSIX_ACCESS_ACL;
6086 }
6087 }
6088
--
0-DAY CI Kernel Test Service
https://github.com/intel/lkp-tests/wiki
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2026-01-09 23:51 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
[not found] <20260102232934.1560-6-rick.macklem@gmail.com>
2026-01-03 14:37 ` [PATCH v1 5/7] Make nfs4_server_supports_acls() global kernel test robot
2026-01-03 16:04 ` Rick Macklem
2026-01-09 23:50 ` kernel test robot
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox