lists.openwall.net   lists  /  announce  owl-users  owl-dev  john-users  john-dev  passwdqc-users  yescrypt  popa3d-users  /  oss-security  kernel-hardening  musl  sabotage  tlsify  passwords  /  crypt-dev  xvendor  /  Bugtraq  Full-Disclosure  linux-kernel  linux-netdev  linux-ext4  linux-hardening  linux-cve-announce  PHC 
Open Source and information security mailing list archives
 
Hash Suite: Windows password security audit tool. GUI, reports in PDF.
[<prev] [next>] [day] [month] [year] [list]
Date:	Thu, 4 Nov 2010 07:46:02 -0700 (PDT)
From:	André Luis Pereira dos Santos - BSRSoft 
	<andre@...soft.com.br>
To:	James Morris <jmorris@...ei.org>
Cc:	torvalds@...ux-foundation.org, linux-kernel@...r.kernel.org,
	linux-security-module@...r.kernel.org
Subject: [PATCH 1/1] security: Reordering the boot message security framework

From: Andre Luis Pereira dos Santos <andre@...soft.com.br>

Hi.
I did the reorganization of the boot message security framework so that it is not issued before the start in fact occur:

Signed-off-by: Andre Luis Pereira dos Santos <andre@...soft.com.br>
---

Signed-off-by: Andre Luis Pereira dos Santos <andre@...soft.com.br>
--- linux-2.6.36/security/security.c    2010-10-20 18:30:22.000000000 -0200
+++ linux-2.6.36-patched/security/security.c    2010-11-04 12:20:04.000000000 -0200
@@ -56,12 +56,13 @@ static void __init do_security_initcalls
  */
 int __init security_init(void)
 {
-       printk(KERN_INFO "Security Framework initialized\n");

        security_fixup_ops(&default_security_ops);
        security_ops = &default_security_ops;
        do_security_initcalls();

+       printk(KERN_INFO "Security Framework initialized\n");
+
        return 0;
 }


      
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/

Powered by blists - more mailing lists