From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org X-Spam-Level: X-Spam-Status: No, score=-9.1 required=3.0 tests=DKIM_SIGNED,DKIM_VALID, DKIM_VALID_AU,INCLUDES_PATCH,MAILING_LIST_MULTI,SIGNED_OFF_BY,SPF_HELO_NONE, SPF_PASS,T_DKIMWL_WL_HIGH,USER_AGENT_GIT autolearn=ham autolearn_force=no version=3.4.0 Received: from mail.kernel.org (mail.kernel.org [198.145.29.99]) by smtp.lore.kernel.org (Postfix) with ESMTP id 5E555C28CC0 for ; Wed, 29 May 2019 21:21:05 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.kernel.org (Postfix) with ESMTP id 2EA52241F7 for ; Wed, 29 May 2019 21:21:05 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=default; t=1559164865; bh=EZsbpWPJYoAn6xYCicS/qMrHZDPRTvsGsB4LB5FMfBI=; h=From:To:Subject:Date:List-ID:From; b=ZrBql8KBOwF1vIbDhteJwsNI3oAW/Cvu7Rv0kdZcmo1pgHp+6R/B5OWJ9wafw84Cv Hzt+9gPazDwHIJAm6qffESORq0KzcYQ1OTWjl+OcTJVkpVfh2iDyaGBvjSo75OrHIL ezxlJf2OrzmmXfzRkpZhp9X5Q4tkf2NwqASEijIw= Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1726512AbfE2VVE (ORCPT ); Wed, 29 May 2019 17:21:04 -0400 Received: from mail.kernel.org ([198.145.29.99]:50528 "EHLO mail.kernel.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1726326AbfE2VVE (ORCPT ); Wed, 29 May 2019 17:21:04 -0400 Received: from ebiggers-linuxstation.mtv.corp.google.com (unknown [104.132.1.77]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by mail.kernel.org (Postfix) with ESMTPSA id ECD3F241F8; Wed, 29 May 2019 21:21:03 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=default; t=1559164864; bh=EZsbpWPJYoAn6xYCicS/qMrHZDPRTvsGsB4LB5FMfBI=; h=From:To:Subject:Date:From; b=sPyfeSwqQhffurBDkaxdQaqtfs/cQJaSHeonxLOFgXcZv+NfFMwcjAGdxKhOOMpdT Rpjr2cQUwuV4zxOpPEXtNRQKLVNgjz22P3KNwmrA236xTsVXDsZ2Qt8agPJ7kMeWS2 ZIll328Rdt440XHJ3AG+7/9lJ53rkoBgpkFinPC0= From: Eric Biggers To: linux-fsdevel@vger.kernel.org, Alexander Viro Subject: [PATCH] fs/direct-io.c: include fs/internal.h for missing prototype Date: Wed, 29 May 2019 14:21:00 -0700 Message-Id: <20190529212100.164185-1-ebiggers@kernel.org> X-Mailer: git-send-email 2.22.0.rc1.257.g3120a18244-goog MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Sender: linux-fsdevel-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-fsdevel@vger.kernel.org From: Eric Biggers Include fs/internal.h to address the following 'sparse' warning: fs/direct-io.c:622:5: warning: symbol 'sb_init_dio_done_wq' was not declared. Should it be static? Signed-off-by: Eric Biggers --- fs/direct-io.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/fs/direct-io.c b/fs/direct-io.c index ac7fb19b6ade5..601b402829239 100644 --- a/fs/direct-io.c +++ b/fs/direct-io.c @@ -39,6 +39,8 @@ #include #include +#include "internal.h" + /* * How many user pages to map in one call to get_user_pages(). This determines * the size of a structure in the slab cache -- 2.22.0.rc1.257.g3120a18244-goog