2024-02-21 21:26:09

by Seth Forshee

[permalink] [raw]
Subject: [PATCH v2 02/25] mnt_idmapping: include cred.h

mnt_idmapping.h uses declarations from cred.h, so it should include that
file directly.

Signed-off-by: Seth Forshee (DigitalOcean) <[email protected]>
---
include/linux/mnt_idmapping.h | 1 +
1 file changed, 1 insertion(+)

diff --git a/include/linux/mnt_idmapping.h b/include/linux/mnt_idmapping.h
index f463b9e1e258..6deba8d5481e 100644
--- a/include/linux/mnt_idmapping.h
+++ b/include/linux/mnt_idmapping.h
@@ -5,6 +5,7 @@
#include <linux/types.h>
#include <linux/uidgid.h>
#include <linux/vfsid.h>
+#include <linux/cred.h>

struct mnt_idmap;
struct user_namespace;

--
2.43.0



2024-02-22 14:13:09

by Christian Brauner

[permalink] [raw]
Subject: Re: [PATCH v2 02/25] mnt_idmapping: include cred.h

On Wed, Feb 21, 2024 at 03:24:33PM -0600, Seth Forshee (DigitalOcean) wrote:
> mnt_idmapping.h uses declarations from cred.h, so it should include that
> file directly.
>
> Signed-off-by: Seth Forshee (DigitalOcean) <[email protected]>
> ---

Looks good,
Reviewed-by: Christian Brauner <[email protected]>