Re: [PATCH 14/33] vfs: Implement a filesystem superblock creation/configuration context [ver #11]

From: David Howells
Date: Tue Sep 18 2018 - 11:28:43 EST


Sergey Senozhatsky <sergey.senozhatsky.work@xxxxxxxxx> wrote:

> > + err = security_fs_context_validate(fc);
> > + if (err)
> > + return err;
>
> goto err_fc?

Fixed thanks.

> > + } else {
> > + err = security_sb_remount(sb, data, data_size);
> > + if (err)
> > + return err;
> > + }
>
> goto err_fc?

This no longer exists. I need to repost my patchset. I was hoping to fix the
mqueue bug there first, though, but maybe I should just post anyway.

David