On Tue, Nov 07, 2023 at 03:16:50PM +0000, Johannes Thumshirn wrote: > On 06.11.23 23:09, Josef Bacik wrote: > > + if (btrfs_super_log_root(fs_info->super_copy) != 0) { > > + btrfs_warn(fs_info, > > + "mount required to replay tree-log, cannot remount read-write"); > > + return -EINVAL; > > + } > > I get that this is only a copy of the old code, but if you have to > re-spin the series: > > ret = btrfs_super_log_root(fs_info->super_copy); > if (ret) { > /* [...] */ > } This tells us the bytenr, it's not a return value. Thanks, Josef