linux-security-module.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] security/Kconfig: Remove pagetable-isolation.txt reference
@ 2018-01-12 21:58 W. Trevor King
  2018-01-12 23:06 ` James Morris
  0 siblings, 1 reply; 5+ messages in thread
From: W. Trevor King @ 2018-01-12 21:58 UTC (permalink / raw)
  To: linux-security-module

The reference landed with the config option in 385ce0ea (x86/mm/pti:
Add Kconfig, 2017-12-04), but the referenced file was never committed.

Signed-off-by: W. Trevor King <wking@tremily.us>
---
 security/Kconfig | 2 --
 1 file changed, 2 deletions(-)

diff --git a/security/Kconfig b/security/Kconfig
index 3d4debd0257e..6c02b69581c8 100644
--- a/security/Kconfig
+++ b/security/Kconfig
@@ -63,8 +63,6 @@ config PAGE_TABLE_ISOLATION
 	  ensuring that the majority of kernel addresses are not mapped
 	  into userspace.
 
-	  See Documentation/x86/pagetable-isolation.txt for more details.
-
 config SECURITY_INFINIBAND
 	bool "Infiniband Security Hooks"
 	depends on SECURITY && INFINIBAND
-- 
2.13.6

--
To unsubscribe from this list: send the line "unsubscribe linux-security-module" in
the body of a message to majordomo at vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html

^ permalink raw reply related	[flat|nested] 5+ messages in thread

* [PATCH] security/Kconfig: Remove pagetable-isolation.txt reference
  2018-01-12 21:58 [PATCH] security/Kconfig: Remove pagetable-isolation.txt reference W. Trevor King
@ 2018-01-12 23:06 ` James Morris
  2018-01-12 23:10   ` Dave Hansen
  0 siblings, 1 reply; 5+ messages in thread
From: James Morris @ 2018-01-12 23:06 UTC (permalink / raw)
  To: linux-security-module

On Fri, 12 Jan 2018, W. Trevor King wrote:

> The reference landed with the config option in 385ce0ea (x86/mm/pti:
> Add Kconfig, 2017-12-04), but the referenced file was never committed.
> 
> Signed-off-by: W. Trevor King <wking@tremily.us>


Acked-by: James Morris <james.l.morris@oracle.com>


-- 
James Morris
<james.l.morris@oracle.com>

--
To unsubscribe from this list: send the line "unsubscribe linux-security-module" in
the body of a message to majordomo at vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html

^ permalink raw reply	[flat|nested] 5+ messages in thread

* [PATCH] security/Kconfig: Remove pagetable-isolation.txt reference
  2018-01-12 23:06 ` James Morris
@ 2018-01-12 23:10   ` Dave Hansen
  2018-01-12 23:24     ` [PATCH] security/Kconfig: Replace pagetable-isolation.txt reference with pti.txt W. Trevor King
  0 siblings, 1 reply; 5+ messages in thread
From: Dave Hansen @ 2018-01-12 23:10 UTC (permalink / raw)
  To: linux-security-module

On 01/12/2018 03:06 PM, James Morris wrote:
> On Fri, 12 Jan 2018, W. Trevor King wrote:
> 
>> The reference landed with the config option in 385ce0ea (x86/mm/pti:
>> Add Kconfig, 2017-12-04), but the referenced file was never committed.
>>
>> Signed-off-by: W. Trevor King <wking@tremily.us>
> 
> Acked-by: James Morris <james.l.morris@oracle.com>

There is a new file in -tip:

https://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git/commit/?h=x86/pti&id=01c9b17bf673b05bb401b76ec763e9730ccf1376

If you're going to patch this, please send an update to -tip that corrects the filename.
--
To unsubscribe from this list: send the line "unsubscribe linux-security-module" in
the body of a message to majordomo at vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html

^ permalink raw reply	[flat|nested] 5+ messages in thread

* [PATCH] security/Kconfig: Replace pagetable-isolation.txt reference with pti.txt
  2018-01-12 23:10   ` Dave Hansen
@ 2018-01-12 23:24     ` W. Trevor King
  2018-01-13  1:19       ` Dave Hansen
  0 siblings, 1 reply; 5+ messages in thread
From: W. Trevor King @ 2018-01-12 23:24 UTC (permalink / raw)
  To: linux-security-module

The reference landed with the config option in 385ce0ea (x86/mm/pti:
Add Kconfig, 2017-12-04), but the referenced file was not committed
then.  It eventually landed in 01c9b17b (x86/Documentation: Add PTI
description, 2018-01-05) as pti.txt.

Signed-off-by: W. Trevor King <wking@tremily.us>
---
On Fri, Jan 12, 2018 at 03:10:53PM -0800, Dave Hansen wrote:
> There is a new file in -tip:
>
> https://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git/commit/?h=x86/pti&id=01c9b17bf673b05bb401b76ec763e9730ccf1376
>
> If you're going to patch this, please send an update to -tip that
> corrects the filename.

Here you go :).

Cheers,
Trevor

 security/Kconfig | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/security/Kconfig b/security/Kconfig
index 3d4debd0257e..b0cb9a5f9448 100644
--- a/security/Kconfig
+++ b/security/Kconfig
@@ -63,7 +63,7 @@ config PAGE_TABLE_ISOLATION
 	  ensuring that the majority of kernel addresses are not mapped
 	  into userspace.
 
-	  See Documentation/x86/pagetable-isolation.txt for more details.
+	  See Documentation/x86/pti.txt for more details.
 
 config SECURITY_INFINIBAND
 	bool "Infiniband Security Hooks"
-- 
2.13.6

--
To unsubscribe from this list: send the line "unsubscribe linux-security-module" in
the body of a message to majordomo at vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html

^ permalink raw reply related	[flat|nested] 5+ messages in thread

* [PATCH] security/Kconfig: Replace pagetable-isolation.txt reference with pti.txt
  2018-01-12 23:24     ` [PATCH] security/Kconfig: Replace pagetable-isolation.txt reference with pti.txt W. Trevor King
@ 2018-01-13  1:19       ` Dave Hansen
  0 siblings, 0 replies; 5+ messages in thread
From: Dave Hansen @ 2018-01-13  1:19 UTC (permalink / raw)
  To: linux-security-module

On 01/12/2018 03:24 PM, W. Trevor King wrote:
> The reference landed with the config option in 385ce0ea (x86/mm/pti:
> Add Kconfig, 2017-12-04), but the referenced file was not committed
> then.  It eventually landed in 01c9b17b (x86/Documentation: Add PTI
> description, 2018-01-05) as pti.txt.
> 
> Signed-off-by: W. Trevor King <wking@tremily.us>
> ---
> On Fri, Jan 12, 2018 at 03:10:53PM -0800, Dave Hansen wrote:
>> There is a new file in -tip:
>>
>> https://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git/commit/?h=x86/pti&id=01c9b17bf673b05bb401b76ec763e9730ccf1376
>>
>> If you're going to patch this, please send an update to -tip that
>> corrects the filename.
> 
> Here you go :).

Feel free to add my Acked-by.  And please send to x86 at kernel.org.  They
need to put this in after the addition of the documentation.

--
To unsubscribe from this list: send the line "unsubscribe linux-security-module" in
the body of a message to majordomo at vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html

^ permalink raw reply	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2018-01-13  1:19 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2018-01-12 21:58 [PATCH] security/Kconfig: Remove pagetable-isolation.txt reference W. Trevor King
2018-01-12 23:06 ` James Morris
2018-01-12 23:10   ` Dave Hansen
2018-01-12 23:24     ` [PATCH] security/Kconfig: Replace pagetable-isolation.txt reference with pti.txt W. Trevor King
2018-01-13  1:19       ` Dave Hansen

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).