From: Tomohiro Kusumi Date: Sun, 13 Dec 2015 10:30:49 +0000 (+0900) Subject: sbin/hammer: Rename sbin/hammer/cmd_pseudofs.c to cmd_pfs.c X-Git-Tag: v4.6.0rc~1191 X-Git-Url: https://gitweb.dragonflybsd.org/~tuxillo/dragonfly.git/commitdiff_plain/4daef0dd1dceadb61e85f04b633f9a13977cc34a sbin/hammer: Rename sbin/hammer/cmd_pseudofs.c to cmd_pfs.c The kernel side of PFS code that implements ioctl is called sys/vfs/hammer/hammer_pfs.c, and all hammer pfs commands are pfs-xxx. It's more natural to have cmd_pfs.c. (HAMMER2 has sbin/hammer2/cmd_pfs.c) The names of functions remain pseudofs since that's the way functions are named in the kernel too. --- diff --git a/sbin/hammer/Makefile b/sbin/hammer/Makefile index e7e3b782b5..fa6ecb396f 100644 --- a/sbin/hammer/Makefile +++ b/sbin/hammer/Makefile @@ -3,7 +3,7 @@ SRCS= hammer.c ondisk.c blockmap.c cache.c misc.c cycle.c \ cmd_show.c cmd_softprune.c cmd_history.c \ cmd_blockmap.c cmd_reblock.c cmd_rebalance.c \ cmd_synctid.c cmd_stats.c cmd_remote.c \ - cmd_pseudofs.c cmd_snapshot.c cmd_mirror.c \ + cmd_pfs.c cmd_snapshot.c cmd_mirror.c \ cmd_cleanup.c cmd_info.c cmd_version.c cmd_volume.c \ cmd_config.c cmd_recover.c cmd_dedup.c cmd_abort.c MAN= hammer.8 diff --git a/sbin/hammer/cmd_pseudofs.c b/sbin/hammer/cmd_pfs.c similarity index 100% rename from sbin/hammer/cmd_pseudofs.c rename to sbin/hammer/cmd_pfs.c