2023-07-19 00:03:19

by Sean Christopherson

[permalink] [raw]
Subject: [RFC PATCH v11 11/29] security: Export security_inode_init_security_anon() for use by KVM

Signed-off-by: Sean Christopherson <[email protected]>
---
security/security.c | 1 +
1 file changed, 1 insertion(+)

diff --git a/security/security.c b/security/security.c
index b720424ca37d..7fc78f0f3622 100644
--- a/security/security.c
+++ b/security/security.c
@@ -1654,6 +1654,7 @@ int security_inode_init_security_anon(struct inode *inode,
return call_int_hook(inode_init_security_anon, 0, inode, name,
context_inode);
}
+EXPORT_SYMBOL_GPL(security_inode_init_security_anon);

#ifdef CONFIG_SECURITY_PATH
/**
--
2.41.0.255.g8b1d071c50-goog



2023-07-19 02:34:07

by Paul Moore

[permalink] [raw]
Subject: Re: [RFC PATCH v11 11/29] security: Export security_inode_init_security_anon() for use by KVM

On Tue, Jul 18, 2023 at 7:48 PM Sean Christopherson <[email protected]> wrote:
>
> Signed-off-by: Sean Christopherson <[email protected]>
> ---
> security/security.c | 1 +
> 1 file changed, 1 insertion(+)

Acked-by: Paul Moore <[email protected]>

> diff --git a/security/security.c b/security/security.c
> index b720424ca37d..7fc78f0f3622 100644
> --- a/security/security.c
> +++ b/security/security.c
> @@ -1654,6 +1654,7 @@ int security_inode_init_security_anon(struct inode *inode,
> return call_int_hook(inode_init_security_anon, 0, inode, name,
> context_inode);
> }
> +EXPORT_SYMBOL_GPL(security_inode_init_security_anon);
>
> #ifdef CONFIG_SECURITY_PATH
> /**
> --
> 2.41.0.255.g8b1d071c50-goog

--
paul-moore.com

2023-07-31 11:31:12

by Vlastimil Babka

[permalink] [raw]
Subject: Re: [RFC PATCH v11 11/29] security: Export security_inode_init_security_anon() for use by KVM

On 7/19/23 01:44, Sean Christopherson wrote:
> Signed-off-by: Sean Christopherson <[email protected]>

Process wise this will probably be frowned upon when done separately, so I'd
fold it in the patch using the export, seems to be the next one.

> ---
> security/security.c | 1 +
> 1 file changed, 1 insertion(+)
>
> diff --git a/security/security.c b/security/security.c
> index b720424ca37d..7fc78f0f3622 100644
> --- a/security/security.c
> +++ b/security/security.c
> @@ -1654,6 +1654,7 @@ int security_inode_init_security_anon(struct inode *inode,
> return call_int_hook(inode_init_security_anon, 0, inode, name,
> context_inode);
> }
> +EXPORT_SYMBOL_GPL(security_inode_init_security_anon);
>
> #ifdef CONFIG_SECURITY_PATH
> /**