On Thu, Oct 19, 2017 at 01:41:37PM +0800, Qu Wenruo wrote: > index d0657aaea0f5..12747547766f 100644 > --- a/Makefile > +++ b/Makefile > @@ -113,7 +113,7 @@ cmds_objects = cmds-subvolume.o cmds-filesystem.o cmds-device.o cmds-scrub.o \ > cmds-restore.o cmds-rescue.o chunk-recover.o super-recover.o \ > cmds-property.o cmds-fi-usage.o cmds-inspect-dump-tree.o \ > cmds-inspect-dump-super.o cmds-inspect-tree-stats.o cmds-fi-du.o \ > - mkfs/common.o > + mkfs/common.o mkfs/rootdir.o Adding this mkfs file to cmds_objects does not make sense, everything that cmds-* could need should be in mkfs/common.o, so I've removed it. > libbtrfs_objects = send-stream.o send-utils.o kernel-lib/rbtree.o btrfs-list.o \ > kernel-lib/crc32c.o messages.o \ > uuid-tree.o utils-lib.o rbtree-utils.o > --- /dev/null > +++ b/mkfs/rootdir.h > @@ -0,0 +1,30 @@ > +/* > + * This program is free software; you can redistribute it and/or > + * modify it under the terms of the GNU General Public > + * License v2 as published by the Free Software Foundation. > + * > + * This program is distributed in the hope that it will be useful, > + * but WITHOUT ANY WARRANTY; without even the implied warranty of > + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU > + * General Public License for more details. > + * > + * You should have received a copy of the GNU General Public > + * License along with this program. > + */ > + > +/* > + * Defines and functions declarations for users mkfs --rootdir > + */ > + > +#ifndef __BTRFS_MKDIR_ROOTDIR_H__ > +#define __BTRFS_MKDIR_ROOTDIR_H__ MKDIR -> MKFS, fixed -- To unsubscribe from this list: send the line "unsubscribe linux-btrfs" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html
