From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail.kernel.org ([198.145.29.99]:52032 "EHLO mail.kernel.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1726080AbeKOKQa (ORCPT ); Thu, 15 Nov 2018 05:16:30 -0500 From: Eric Biggers To: linux-fsdevel@vger.kernel.org, Alexander Viro Subject: [PATCH] fs/buffer.c: include fs/internal.h for missing prototypes Date: Wed, 14 Nov 2018 16:10:20 -0800 Message-Id: <20181115001020.47819-1-ebiggers@kernel.org> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Sender: linux-fsdevel-owner@vger.kernel.org List-ID: From: Eric Biggers __block_write_begin_int(), __generic_write_end(), and guard_bio_eod() are defined in fs/buffer.c and declared in fs/internal.h, but the declarations aren't included at the point of the definitions. Include the header to enforce that the definitions match the declarations. This addresses gcc warnings when -Wmissing-prototypes is enabled. Signed-off-by: Eric Biggers --- fs/buffer.c | 1 + 1 file changed, 1 insertion(+) diff --git a/fs/buffer.c b/fs/buffer.c index 1286c2b95498d..3581e42cf6cbb 100644 --- a/fs/buffer.c +++ b/fs/buffer.c @@ -46,6 +46,7 @@ #include #include #include +#include "internal.h" static int fsync_buffers_list(spinlock_t *lock, struct list_head *list); static int submit_bh_wbc(int op, int op_flags, struct buffer_head *bh, -- 2.19.1.930.g4563a0d9d0-goog