Re: linux-next: build failure after merge of the staging tree

From: David Howells
Date: Mon Jul 30 2018 - 07:18:20 EST


Gao Xiang <gaoxiang25@xxxxxxxxxx> wrote:

> struct erofs_mount_private priv = {
> .dev_name = dev_name,
> .options = data
> };
> return mount_bdev(fs_type, flags, dev_name, &priv, erofs_fill_super);
>
>
> However, I have no idea if it is safe to do so in the future, so I also
> change it into a more stardard way.

Hopefully, in the near future, you won't do it like this at all, but rather
create an fs_context and then your filesystem would be able to munge that
directly before calling mount_bdev().

David