From mboxrd@z Thu Jan 1 00:00:00 1970 From: Chao Yu Subject: Re: [f2fs-dev] [PATCH] f2fs: include seq_file.h for sysfs.c Date: Mon, 17 Jul 2017 22:25:27 +0800 Message-ID: <8fe6971d-a71b-7641-de71-cd68adff2b74@kernel.org> References: <20170714010138.68665-1-jaegeuk@kernel.org> Mime-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit Return-path: In-Reply-To: <20170714010138.68665-1-jaegeuk@kernel.org> Content-Language: en-US Sender: linux-kernel-owner@vger.kernel.org To: Jaegeuk Kim , linux-kernel@vger.kernel.org, linux-fsdevel@vger.kernel.org, linux-f2fs-devel@lists.sourceforge.net Cc: Eric Biggers List-Id: linux-f2fs-devel.lists.sourceforge.net Hi Jaegeuk, On 2017/7/14 9:01, Jaegeuk Kim wrote: > This patch includes seq_file.h to avoid compile error. I didn't hit the error, I guess that's because we have included f2fs_fs.h in sysfs.c, the inclusion relation is like this: - sysfs.c - f2fs_fs.h - pagemap.h - fs.h - struct seq_file Thanks, > > Signed-off-by: Eric Biggers > Signed-off-by: Jaegeuk Kim > --- > fs/f2fs/sysfs.c | 1 + > 1 file changed, 1 insertion(+) > > diff --git a/fs/f2fs/sysfs.c b/fs/f2fs/sysfs.c > index 9adc202fcd6f..71191d89917d 100644 > --- a/fs/f2fs/sysfs.c > +++ b/fs/f2fs/sysfs.c > @@ -11,6 +11,7 @@ > */ > #include > #include > +#include > > #include "f2fs.h" > #include "segment.h" >