From mboxrd@z Thu Jan 1 00:00:00 1970 From: Jaegeuk Kim Subject: RE: [PATCH 02/16 v2] f2fs: add on-disk layout Date: Tue, 23 Oct 2012 16:08:40 +0900 Message-ID: <009401cdb0ed$3af5afd0$b0e10f70$%kim@samsung.com> References: <001001cdb0c5$2ac96520$805c2f60$%kim@samsung.com> <001201cdb0c5$bdf728f0$39e57ad0$%kim@samsung.com> Mime-Version: 1.0 Content-Type: text/plain; charset=windows-1252 Content-Transfer-Encoding: 7bit Cc: linux-fsdevel@vger.kernel.org, linux-kernel@vger.kernel.org, gregkh@linuxfoundation.org, viro@zeniv.linux.org.uk, arnd@arndb.de, tytso@mit.edu, chur.lee@samsung.com, cm224.lee@samsung.com, jooyoung.hwang@samsung.com To: 'Marco Stornelli' Return-path: In-reply-to: Content-language: ko Sender: linux-kernel-owner@vger.kernel.org List-Id: linux-fsdevel.vger.kernel.org > 2012/10/23 Jaegeuk Kim : > > This adds a header file describing the on-disk layout of f2fs. > > > > Signed-off-by: Changman Lee > > Signed-off-by: Chul Lee > > Signed-off-by: Jaegeuk Kim > > --- > > include/linux/f2fs_fs.h | 362 +++++++++++++++++++++++++++++++++++++++++++++++ > > 1 file changed, 362 insertions(+) > > create mode 100644 include/linux/f2fs_fs.h > > > > diff --git a/include/linux/f2fs_fs.h b/include/linux/f2fs_fs.h > > new file mode 100644 > > index 0000000..bd9c217 > > --- /dev/null > > +++ b/include/linux/f2fs_fs.h > > @@ -0,0 +1,362 @@ > > +/** > > + * include/linux/f2fs_fs.h > > Is this file used by user space? Currently, no. But, later, I'll use this file in format and fsck tools. > > > + * > > + * Copyright (c) 2012 Samsung Electronics Co., Ltd. > > + * http://www.samsung.com/ > > + * > > + * This program is free software; you can redistribute it and/or modify > > + * it under the terms of the GNU General Public License version 2 as > > + * published by the Free Software Foundation. > > + */ > > +#ifndef _LINUX_F2FS_FS_H > > +#define _LINUX_F2FS_FS_H > > + > > +#include > > +#include > > + > > +#define F2FS_SUPER_MAGIC 0xF2F52010 > > In magic.h please. Ok, thank you. > > Marco --- Jaegeuk Kim Samsung