From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from out-182.mta0.migadu.com (out-182.mta0.migadu.com [91.218.175.182]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.subspace.kernel.org (Postfix) with ESMTPS id CF67F27FD76 for ; Wed, 7 Jan 2026 07:38:05 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=91.218.175.182 ARC-Seal:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1767771488; cv=none; b=V6x3m4UooHsyj9PhRJmstiQQ+LrhlmLXKOhKSgET8Av3JqolPWWyyoWfnW0nz5ZxuHFz224MoU9hHtEOtAInWoRRk//WVuCS96xlixmA12FP3Zm0+55eHBwRlv9QdhvPkbt0j7MFKFS3fEmGsQmWzpBYV8d3s1CRxDzI1sk8Jyw= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1767771488; c=relaxed/simple; bh=MTPMVvXUa/M3zwhmJUT8/ZdE1VwbpEWTUDMeXd/NEbw=; h=From:To:Cc:Subject:Date:Message-Id:MIME-Version; b=hX7fqmL27uaQXQQg0Dagm7/URa3STUXtUwneXk24ZMA+GX0xVsfqnffAPuGuemFrl/DGfob+Yb3K2l0QnPLsNMScGKzHGMOuRLxPGtfJdj3pEKj6O4s0mvg3958XkaHUslld7lrOTbL7TXFEBEGmxny3e51wmM+uKfV6tcnujpo= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dmarc=pass (p=none dis=none) header.from=linux.dev; spf=pass smtp.mailfrom=linux.dev; dkim=pass (1024-bit key) header.d=linux.dev header.i=@linux.dev header.b=Mht5kngv; arc=none smtp.client-ip=91.218.175.182 Authentication-Results: smtp.subspace.kernel.org; dmarc=pass (p=none dis=none) header.from=linux.dev Authentication-Results: smtp.subspace.kernel.org; spf=pass smtp.mailfrom=linux.dev Authentication-Results: smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linux.dev header.i=@linux.dev header.b="Mht5kngv" X-Report-Abuse: Please report any abuse attempt to abuse@migadu.com and include these headers. DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=linux.dev; s=key1; t=1767771483; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:cc:mime-version:mime-version: content-transfer-encoding:content-transfer-encoding; bh=GRPMgsrUQ7Ow/V2nUgNghG4HqhRTPmD+dsCI1mKYKuI=; b=Mht5kngvv+4m8Be1cYHXsLwlHCkS/F0NaZrSgQm2uUcvSvsSU9Cpowzscaar7Mvzk79XiP Vpjz1NnTsqezlG1c+618uUeQ0kidHrstBnto800CxGA/lgadeiHSN6C9G79H0KEdMBCE/p aBzeAL/9xeI/bETn5loaPR+U91KOl0o= From: sunliming@linux.dev To: almaz.alexandrovich@paragon-software.com Cc: ntfs3@lists.linux.dev, linux-kernel@vger.kernel.org, sunliming , kernel test robot Subject: [PATCH] fs/ntfs3: make ntfs_writeback_ops static Date: Wed, 7 Jan 2026 15:37:09 +0800 Message-Id: <20260107073709.106071-1-sunliming@linux.dev> Precedence: bulk X-Mailing-List: linux-kernel@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Migadu-Flow: FLOW_OUT From: sunliming Fix below sparse warnings: fs/ntfs3/inode.c:972:34: sparse: sparse: symbol 'ntfs_writeback_ops' was not declared. Should it be static? Reported-by: kernel test robot Closes: https://lore.kernel.org/oe-kbuild-all/202601061424.nbKLNwC5-lkp@intel.com/ Signed-off-by: sunliming --- fs/ntfs3/inode.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/fs/ntfs3/inode.c b/fs/ntfs3/inode.c index b969ad7c3258..636aa77e20e4 100644 --- a/fs/ntfs3/inode.c +++ b/fs/ntfs3/inode.c @@ -969,7 +969,7 @@ static ssize_t ntfs_writeback_range(struct iomap_writepage_ctx *wpc, } -const struct iomap_writeback_ops ntfs_writeback_ops = { +static const struct iomap_writeback_ops ntfs_writeback_ops = { .writeback_range = ntfs_writeback_range, .writeback_submit = iomap_ioend_writeback_submit, }; -- 2.25.1