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=-1.2 required=5.0 tests=DKIMWL_WL_HIGH,DKIM_SIGNED, DKIM_VALID,DKIM_VALID_AU,DKIM_VALID_EF,SPF_HELO_NONE,SPF_PASS, URIBL_BLOCKED autolearn=ham autolearn_force=no version=3.4.6 Received: from mga18.intel.com (mga18.intel.com [134.134.136.126]) by gnuweeb.org (Postfix) with ESMTPS id C3F1E8097F for ; Mon, 15 Aug 2022 05:51:30 +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=JYHnxuPg; 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=1660542690; x=1692078690; h=date:from:to:cc:subject:message-id:mime-version; bh=EfNGeUkGmJU+rPehGLQgqVnjhsmnFQfLEjfnDweCli8=; b=JYHnxuPgXqQyZt1e0xMmSirLx0+yf8WRaG7VbxQahJPDkYG0n3/kr6VO PFD8wN36pTWuadQ7ZyH1b4MupEJ5rtwDY13WxObAoLiBJ3NWfU6RxM0IP 23YDV6AY+B1QTZPjhzAOdt1MOVa7x0EoTEsARQgBNV9WyNkD2ZYyB96PV lWVvv1DbybkUcRW8KOTTy6Qibczi9VByyyaxuKO2VeuoaWVWk+VBzLFbY qPNaPpLLJayO3yHxeucU9OwoYhcgB0hErW1pknE5poVLwQXC9MxecLcbo WhZp18g5CPC/+aRQzuYlf7+Sn7Oca5ElB0u8xxCarXPMKskWaMv16my2e Q==; X-IronPort-AV: E=McAfee;i="6400,9594,10439"; a="274950635" X-IronPort-AV: E=Sophos;i="5.93,237,1654585200"; d="scan'208";a="274950635" Received: from orsmga006.jf.intel.com ([10.7.209.51]) by orsmga106.jf.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 14 Aug 2022 22:51:30 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.93,237,1654585200"; d="scan'208";a="582769050" Received: from lkp-server02.sh.intel.com (HELO 3d2a4d02a2a9) ([10.239.97.151]) by orsmga006.jf.intel.com with ESMTP; 14 Aug 2022 22:51:29 -0700 Received: from kbuild by 3d2a4d02a2a9 with local (Exim 4.96) (envelope-from ) id 1oNT0a-0000pP-1U; Mon, 15 Aug 2022 05:51:28 +0000 Date: Mon, 15 Aug 2022 13:51:25 +0800 From: kernel test robot To: Ammar Faizi , GNU/Weeb Mailing List Cc: kbuild-all@lists.01.org Subject: [ammarfaizi2-block:google/android/kernel/common/android12-5.4 5163/9999] htmldocs: fs/inode.c:1609: WARNING: Inline emphasis start-string without end-string. Message-ID: <202208151300.CWWYXXgh-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 google/android/kernel/common/android12-5.4 head: 61c005f0f1663789612bbe039932620f51779526 commit: 7a42ec4d9dae843ce99a9ee771d13c67084f2435 [5163/9999] Revert "Revert "fs: Enable bmap() function to properly return errors"" reproduce: make htmldocs If you fix the issue, kindly add following tag where applicable Reported-by: kernel test robot All warnings (new ones prefixed by >>): >> fs/inode.c:1609: WARNING: Inline emphasis start-string without end-string. vim +1609 fs/inode.c 1602 1603 #ifdef CONFIG_BLOCK 1604 /** 1605 * bmap - find a block number in a file 1606 * @inode: inode owning the block number being requested 1607 * @block: pointer containing the block to find 1608 * > 1609 * Replaces the value in *block with the block number on the device holding 1610 * corresponding to the requested block number in the file. 1611 * That is, asked for block 4 of inode 1 the function will replace the 1612 * 4 in *block, with disk block relative to the disk start that holds that 1613 * block of the file. 1614 * 1615 * Returns -EINVAL in case of error, 0 otherwise. If mapping falls into a 1616 * hole, returns 0 and *block is also set to 0. 1617 */ 1618 int bmap(struct inode *inode, sector_t *block) 1619 { 1620 if (!inode->i_mapping->a_ops->bmap) 1621 return -EINVAL; 1622 1623 *block = inode->i_mapping->a_ops->bmap(inode->i_mapping, *block); 1624 return 0; 1625 } 1626 EXPORT_SYMBOL(bmap); 1627 #endif 1628 -- 0-DAY CI Kernel Test Service https://01.org/lkp