From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.6 (2021-04-09) on gnuweeb.org X-Spam-Level: X-Spam-Status: No, score=-3.5 required=5.0 tests=DKIMWL_WL_HIGH,DKIM_SIGNED, DKIM_VALID,DKIM_VALID_AU,DKIM_VALID_EF,RCVD_IN_DNSWL_MED,SPF_HELO_NONE, SPF_PASS,URIBL_BLOCKED autolearn=ham autolearn_force=no version=3.4.6 Received: from mga06.intel.com (mga06b.intel.com [134.134.136.31]) by gnuweeb.org (Postfix) with ESMTPS id 6E785801D5 for ; Fri, 1 Jul 2022 21:20:07 +0000 (UTC) Authentication-Results: gnuweeb.org; dkim=pass (2048-bit key; unprotected) header.d=intel.com header.i=@intel.com header.a=rsa-sha256 header.s=Intel header.b=O45H9ywx; dkim-atps=neutral DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=intel.com; i=@intel.com; q=dns/txt; s=Intel; t=1656710407; x=1688246407; h=date:from:to:cc:subject:message-id:mime-version; bh=G51rN2Ly8koZD0jeCP8ohnowQi6b7WtE4rZfP1DqCZk=; b=O45H9ywxkR7ekQA+rHisHJDmqteatY0kdT9ZGNN0WYWeNQEjQ1w0iwo/ 3ucxAGvQ2RYfMeqowzdJPOqMNMsUubbFjtb23PGQc2VycwVoDSkQCsn1Z PLSyf+RZXm/qIeim9VnOT1+ApB/ca7f7W6dzJHGxpXXU2x1kdZZ+sVk33 mc0ECH/+gjAHO/h4Vt851K0UBiQ6dJsLrSqEnkA827rAMZA2r6/z8hqrK 2tbf3seZF3IToB1tnkGJM+w6S//2ILnLM6J7zm9KoM0gBHHyMy0nmOgAF mUJodauHWItVWQHMYonZ9bxSO8DxEuH+kc49y+APb9WLJgkhX/R+BDjxo w==; X-IronPort-AV: E=McAfee;i="6400,9594,10395"; a="344430748" X-IronPort-AV: E=Sophos;i="5.92,238,1650956400"; d="scan'208";a="344430748" Received: from fmsmga007.fm.intel.com ([10.253.24.52]) by orsmga104.jf.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 01 Jul 2022 14:20:06 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.92,238,1650956400"; d="scan'208";a="596401751" Received: from lkp-server01.sh.intel.com (HELO 68b931ab7ac1) ([10.239.97.150]) by fmsmga007.fm.intel.com with ESMTP; 01 Jul 2022 14:20:05 -0700 Received: from kbuild by 68b931ab7ac1 with local (Exim 4.95) (envelope-from ) id 1o7O3Y-000EMY-LV; Fri, 01 Jul 2022 21:20:04 +0000 Date: Sat, 2 Jul 2022 05:20:02 +0800 From: kernel test robot To: Jeff Layton Cc: kbuild-all@lists.01.org, GNU/Weeb Mailing List , linux-kernel@vger.kernel.org, David Howells Subject: [ammarfaizi2-block:dhowells/linux-fs/netfs-linked-list 59/61] fs/netfs/buffered_write.c:815:9: warning: no previous prototype for 'netfs_file_write_iter_locked' Message-ID: <202207020533.Xwgp2EJ9-lkp@intel.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline List-Id: tree: https://github.com/ammarfaizi2/linux-block dhowells/linux-fs/netfs-linked-list head: ce4670495468b797b0c5927fcb661bc0da48b9ab commit: e237ecdc44f74b59d00230cc4e6e8067a4bed176 [59/61] netfs: add new buffered/direct exclusive locking scheme config: csky-randconfig-r031-20220629 (https://download.01.org/0day-ci/archive/20220702/202207020533.Xwgp2EJ9-lkp@intel.com/config) compiler: csky-linux-gcc (GCC) 11.3.0 reproduce (this is a W=1 build): wget https://raw.githubusercontent.com/intel/lkp-tests/master/sbin/make.cross -O ~/bin/make.cross chmod +x ~/bin/make.cross # https://github.com/ammarfaizi2/linux-block/commit/e237ecdc44f74b59d00230cc4e6e8067a4bed176 git remote add ammarfaizi2-block https://github.com/ammarfaizi2/linux-block git fetch --no-tags ammarfaizi2-block dhowells/linux-fs/netfs-linked-list git checkout e237ecdc44f74b59d00230cc4e6e8067a4bed176 # save the config file mkdir build_dir && cp config build_dir/.config COMPILER_INSTALL_PATH=$HOME/0day COMPILER=gcc-11.3.0 make.cross W=1 O=build_dir ARCH=csky SHELL=/bin/bash fs/netfs/ If you fix the issue, kindly add following tag where applicable Reported-by: kernel test robot All warnings (new ones prefixed by >>): >> fs/netfs/buffered_write.c:815:9: warning: no previous prototype for 'netfs_file_write_iter_locked' [-Wmissing-prototypes] 815 | ssize_t netfs_file_write_iter_locked(struct kiocb *iocb, struct iov_iter *from) | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~ vim +/netfs_file_write_iter_locked +815 fs/netfs/buffered_write.c 801 802 /** 803 * netfs_file_write_iter_locked - write data to a file 804 * @iocb: IO state structure 805 * @from: iov_iter with data to write 806 * 807 * This is a wrapper around __generic_file_write_iter() to be used by most 808 * filesystems that want to deal with the locking themselves. It takes care 809 * of syncing the file in case of O_SYNC. 810 * Return: 811 * * negative error code if no data has been written at all of 812 * vfs_fsync_range() failed for a synchronous write 813 * * number of bytes written, even for truncated writes 814 */ > 815 ssize_t netfs_file_write_iter_locked(struct kiocb *iocb, struct iov_iter *from) 816 { 817 struct file *file = iocb->ki_filp; 818 struct inode *inode = file->f_mapping->host; 819 struct netfs_inode *ctx = netfs_inode(inode); 820 ssize_t ret; 821 822 _enter("%llx,%zx,%llx", iocb->ki_pos, iov_iter_count(from), i_size_read(inode)); 823 824 ret = generic_write_checks(iocb, from); 825 if (ret <= 0) 826 return ret; 827 828 trace_netfs_write_iter(iocb, from); 829 830 /* We can write back this queue in page reclaim */ 831 current->backing_dev_info = inode_to_bdi(inode); 832 ret = file_remove_privs(file); 833 if (ret) 834 goto error; 835 836 ret = file_update_time(file); 837 if (ret) 838 goto error; 839 840 ret = netfs_flush_conflicting_writes(ctx, file, iocb->ki_pos, 841 iov_iter_count(from), NULL); 842 if (ret < 0 && ret != -EAGAIN) 843 goto error; 844 845 if (iocb->ki_flags & IOCB_DIRECT) 846 ret = netfs_direct_write_iter(iocb, from); 847 else 848 ret = netfs_perform_write(iocb, from); 849 850 error: 851 /* TODO: Wait for DSYNC region here. */ 852 current->backing_dev_info = NULL; 853 return ret; 854 } 855 EXPORT_SYMBOL(netfs_file_write_iter_locked); 856 -- 0-DAY CI Kernel Test Service https://01.org/lkp