lkml.org 
[lkml]   [2022]   [Jun]   [9]   [last100]   RSS Feed
Views: [wrap][no wrap]   [headers]  [forward] 
 
Messages in this thread
/
From
SubjectRE: [EXTERNAL] [ammarfaizi2-block:stable/linux-stable-rc/queue/5.18 29/879] fs/cifs/connect.c:3435:14: warning: unused variable 'nodfs'
Date
This is harmless but the warning could be fixed by putting an ifdef around it as it has in mainline
#ifdef CONFIG_CIFS_DFS_UPCALL
bool nodfs = cifs_sb->mnt_cifs_flags & CIFS_MOUNT_NO_DFS;
#endif /* CIFS_DFS_UPCALL */


-----Original Message-----
From: kernel test robot <lkp@intel.com>
Sent: Wednesday, June 8, 2022 6:14 PM
To: Enzo Matsumiya (SUSE) <ematsumiya@suse.de>
Cc: kbuild-all@lists.01.org; GNU/Weeb Mailing List <gwml@vger.gnuweeb.org>; linux-kernel@vger.kernel.org; Sasha Levin <sashal@kernel.org>; pc <pc@cjr.nz>; Steven French <Steven.French@microsoft.com>; Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Subject: [EXTERNAL] [ammarfaizi2-block:stable/linux-stable-rc/queue/5.18 29/879] fs/cifs/connect.c:3435:14: warning: unused variable 'nodfs'

tree: https://nam06.safelinks.protection.outlook.com/?url=https%3A%2F%2Fgithub.com%2Fammarfaizi2%2Flinux-block&amp;data=05%7C01%7CSteven.French%40microsoft.com%7Cf194a361b31d41ce3c2408da49a4982e%7C72f988bf86f141af91ab2d7cd011db47%7C1%7C0%7C637903268538948079%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C3000%7C%7C%7C&amp;sdata=OZnPTVUJtqix0vvgtESHsrQ75l%2FmSmVVxyoEeiJXyg0%3D&amp;reserved=0 stable/linux-stable-rc/queue/5.18
head: 7383156f95c8c7f7bda72abd7fa4d1bc06e2a8cf
commit: 98dd3927170845f16f5120686a0b5c5f181a3b87 [29/879] cifs: don't call cifs_dfs_query_info_nonascii_quirk() if nodfs was set
config: i386-randconfig-a001 (https://nam06.safelinks.protection.outlook.com/?url=https%3A%2F%2Fdownload.01.org%2F0day-ci%2Farchive%2F20220609%2F202206090711.ZJTiUk4L-lkp%40intel.com%2Fconfig&amp;data=05%7C01%7CSteven.French%40microsoft.com%7Cf194a361b31d41ce3c2408da49a4982e%7C72f988bf86f141af91ab2d7cd011db47%7C1%7C0%7C637903268538948079%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C3000%7C%7C%7C&amp;sdata=%2B4snjNrlzx1nZsvHiLuu2o46PXM1iqWjxqkZiML5whk%3D&amp;reserved=0)
compiler: gcc-11 (Debian 11.3.0-3) 11.3.0 reproduce (this is a W=1 build):
# https://nam06.safelinks.protection.outlook.com/?url=https%3A%2F%2Fgithub.com%2Fammarfaizi2%2Flinux-block%2Fcommit%2F98dd3927170845f16f5120686a0b5c5f181a3b87&amp;data=05%7C01%7CSteven.French%40microsoft.com%7Cf194a361b31d41ce3c2408da49a4982e%7C72f988bf86f141af91ab2d7cd011db47%7C1%7C0%7C637903268538948079%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C3000%7C%7C%7C&amp;sdata=SsbQABrP7cEkQBU82%2BcC9NZDTs%2BxTrPbKkNRFRUgOLQ%3D&amp;reserved=0
git remote add ammarfaizi2-block https://nam06.safelinks.protection.outlook.com/?url=https%3A%2F%2Fgithub.com%2Fammarfaizi2%2Flinux-block&amp;data=05%7C01%7CSteven.French%40microsoft.com%7Cf194a361b31d41ce3c2408da49a4982e%7C72f988bf86f141af91ab2d7cd011db47%7C1%7C0%7C637903268538948079%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C3000%7C%7C%7C&amp;sdata=OZnPTVUJtqix0vvgtESHsrQ75l%2FmSmVVxyoEeiJXyg0%3D&amp;reserved=0
git fetch --no-tags ammarfaizi2-block stable/linux-stable-rc/queue/5.18
git checkout 98dd3927170845f16f5120686a0b5c5f181a3b87
# save the config file
mkdir build_dir && cp config build_dir/.config
make W=1 O=build_dir ARCH=i386 SHELL=/bin/bash fs/cifs/

If you fix the issue, kindly add following tag where applicable
Reported-by: kernel test robot <lkp@intel.com>

All warnings (new ones prefixed by >>):

fs/cifs/connect.c: In function 'is_path_remote':
>> fs/cifs/connect.c:3435:14: warning: unused variable 'nodfs'
>> [-Wunused-variable]
3435 | bool nodfs = cifs_sb->mnt_cifs_flags & CIFS_MOUNT_NO_DFS;
| ^~~~~


vim +/nodfs +3435 fs/cifs/connect.c

3421
3422 /*
3423 * Check if path is remote (e.g. a DFS share). Return -EREMOTE if it is,
3424 * otherwise 0.
3425 */
3426 static int is_path_remote(struct mount_ctx *mnt_ctx)
3427 {
3428 int rc;
3429 struct cifs_sb_info *cifs_sb = mnt_ctx->cifs_sb;
3430 struct TCP_Server_Info *server = mnt_ctx->server;
3431 unsigned int xid = mnt_ctx->xid;
3432 struct cifs_tcon *tcon = mnt_ctx->tcon;
3433 struct smb3_fs_context *ctx = mnt_ctx->fs_ctx;
3434 char *full_path;
> 3435 bool nodfs = cifs_sb->mnt_cifs_flags & CIFS_MOUNT_NO_DFS;
3436
3437 if (!server->ops->is_path_accessible)
3438 return -EOPNOTSUPP;
3439
3440 /*
3441 * cifs_build_path_to_root works only when we have a valid tcon
3442 */
3443 full_path = cifs_build_path_to_root(ctx, cifs_sb, tcon,
3444 tcon->Flags & SMB_SHARE_IS_IN_DFS);
3445 if (full_path == NULL)
3446 return -ENOMEM;
3447
3448 cifs_dbg(FYI, "%s: full_path: %s\n", __func__, full_path);
3449
3450 rc = server->ops->is_path_accessible(xid, tcon, cifs_sb,
3451 full_path);
3452 #ifdef CONFIG_CIFS_DFS_UPCALL
3453 if (nodfs) {
3454 if (rc == -EREMOTE)
3455 rc = -EOPNOTSUPP;
3456 goto out;
3457 }
3458
3459 /* path *might* exist with non-ASCII characters in DFS root
3460 * try again with full path (only if nodfs is not set) */
3461 if (rc == -ENOENT && is_tcon_dfs(tcon))
3462 rc = cifs_dfs_query_info_nonascii_quirk(xid, tcon, cifs_sb,
3463 full_path);
3464 #endif
3465 if (rc != 0 && rc != -EREMOTE)
3466 goto out;
3467
3468 if (rc != -EREMOTE) {
3469 rc = cifs_are_all_path_components_accessible(server, xid, tcon,
3470 cifs_sb, full_path, tcon->Flags & SMB_SHARE_IS_IN_DFS);
3471 if (rc != 0) {
3472 cifs_server_dbg(VFS, "cannot query dirs between root and final path, enabling CIFS_MOUNT_USE_PREFIX_PATH\n");
3473 cifs_sb->mnt_cifs_flags |= CIFS_MOUNT_USE_PREFIX_PATH;
3474 rc = 0;
3475 }
3476 }
3477
3478 out:
3479 kfree(full_path);
3480 return rc;
3481 }
3482

--
0-DAY CI Kernel Test Service
https://nam06.safelinks.protection.outlook.com/?url=https%3A%2F%2F01.org%2Flkp&amp;data=05%7C01%7CSteven.French%40microsoft.com%7Cf194a361b31d41ce3c2408da49a4982e%7C72f988bf86f141af91ab2d7cd011db47%7C1%7C0%7C637903268538948079%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C3000%7C%7C%7C&amp;sdata=WQc%2B%2FV2lybHc4YtQ936Z9nKU1W6piwYGjW8d%2FJgRc58%3D&amp;reserved=0

\
 
 \ /
  Last update: 2022-06-09 06:49    [W:0.311 / U:0.164 seconds]
©2003-2020 Jasper Spaans|hosted at Digital Ocean and TransIP|Read the blog|Advertise on this site