Re: [PATCH] btrfs-progs: fix find_mount_root() to handle duplicated mount point correctly

2014-09-17 Thread Omar Sandoval
What's the status on this patch? There have been at least a couple of bug reports that this fixes, including https://bugzilla.kernel.org/show_bug.cgi?id=83741. -- Omar -- To unsubscribe from this list: send the line "unsubscribe linux-btrfs" in the body of a message to majord...@vger.kernel.org Mo

Re: [PATCH] btrfs-progs: fix find_mount_root() to handle duplicated mount point correctly

2014-09-14 Thread Omar Sandoval
Reviewed-by: Omar Sandoval -- Omar -- To unsubscribe from this list: send the line "unsubscribe linux-btrfs" in the body of a message to majord...@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html

[PATCH] btrfs-progs: fix find_mount_root() to handle duplicated mount point correctly

2014-09-03 Thread Qu Wenruo
Original find_mount_root() will use the first mount point match and return it. It was OK until the following commit, which will also check the fstype: de22c28ef31d9721606ba059 btrfs-progs: Check fstype in find_mount_root() With fstype check, we should check the last match, not only the first one.