On Thu, Aug 17, 2023 at 01:20:55PM -0300, Guilherme G. Piccoli wrote: > On 17/08/2023 12:41, Josef Bacik wrote: > >> [...] > >> + pr_info("BTRFS: virtual fsid (%pU) set for SINGLE_DEV device %s (real fsid %pU)\n", > >> + disk_super->fsid, path, disk_super->metadata_uuid); > > > > I think just > > > > btrfs_info(NULL, "virtual fsid....") > > > > is fine here. > > > > So just for my full understanding, do you think we shouldn't show the > real fsid here, but keep showing the virtual one, right? Or you prefer > we literally show "virtual fsid...."? Oh no sorry, just swap pr_info for btrfs_info, and keep the rest the same, so btrfs_info("virtual fsid (%pU) set for SINGLE_DEV device %s (real fsid %pU)\n", disk_super->fsid, path, disk_super->metadata_uuid); thanks, Josef