virtio_fs: add informative log for new tag discovery

Enhance the device probing process by adding a log message when a new
virtio-fs tag is successfully discovered. This improvement provides
better visibility into the initialization of virtio-fs devices.

Signed-off-by: Max Gurtovoy <mgurtovoy@nvidia.com>
Message-Id: <20241006184324.8497-1-mgurtovoy@nvidia.com>
Signed-off-by: Michael S. Tsirkin <mst@redhat.com>
This commit is contained in:
Max Gurtovoy
2024-10-06 21:43:24 +03:00
committed by Michael S. Tsirkin
parent a49c26f761
commit 22d984f1b9
+1
View File
@@ -521,6 +521,7 @@ static int virtio_fs_read_tag(struct virtio_device *vdev, struct virtio_fs *fs)
return -EINVAL;
}
dev_info(&vdev->dev, "discovered new tag: %s\n", fs->tag);
return 0;
}