aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--Documentation/tomoyo.txt10
-rw-r--r--MAINTAINERS2
-rw-r--r--security/tomoyo/common.c4
3 files changed, 8 insertions, 8 deletions
diff --git a/Documentation/tomoyo.txt b/Documentation/tomoyo.txt
index b3a232cae7f8..200a2d37cbc8 100644
--- a/Documentation/tomoyo.txt
+++ b/Documentation/tomoyo.txt
@@ -3,8 +3,8 @@
3TOMOYO is a name-based MAC extension (LSM module) for the Linux kernel. 3TOMOYO is a name-based MAC extension (LSM module) for the Linux kernel.
4 4
5LiveCD-based tutorials are available at 5LiveCD-based tutorials are available at
6http://tomoyo.sourceforge.jp/en/1.6.x/1st-step/ubuntu8.04-live/ 6http://tomoyo.sourceforge.jp/1.7/1st-step/ubuntu10.04-live/
7http://tomoyo.sourceforge.jp/en/1.6.x/1st-step/centos5-live/ . 7http://tomoyo.sourceforge.jp/1.7/1st-step/centos5-live/ .
8Though these tutorials use non-LSM version of TOMOYO, they are useful for you 8Though these tutorials use non-LSM version of TOMOYO, they are useful for you
9to know what TOMOYO is. 9to know what TOMOYO is.
10 10
@@ -13,12 +13,12 @@ to know what TOMOYO is.
13Build the kernel with CONFIG_SECURITY_TOMOYO=y and pass "security=tomoyo" on 13Build the kernel with CONFIG_SECURITY_TOMOYO=y and pass "security=tomoyo" on
14kernel's command line. 14kernel's command line.
15 15
16Please see http://tomoyo.sourceforge.jp/en/2.2.x/ for details. 16Please see http://tomoyo.sourceforge.jp/2.3/ for details.
17 17
18--- Where is documentation? --- 18--- Where is documentation? ---
19 19
20User <-> Kernel interface documentation is available at 20User <-> Kernel interface documentation is available at
21http://tomoyo.sourceforge.jp/en/2.2.x/policy-reference.html . 21http://tomoyo.sourceforge.jp/2.3/policy-reference.html .
22 22
23Materials we prepared for seminars and symposiums are available at 23Materials we prepared for seminars and symposiums are available at
24http://sourceforge.jp/projects/tomoyo/docs/?category_id=532&language_id=1 . 24http://sourceforge.jp/projects/tomoyo/docs/?category_id=532&language_id=1 .
@@ -50,6 +50,6 @@ multiple LSM modules at the same time. We feel sorry that you have to give up
50SELinux/SMACK/AppArmor etc. when you want to use TOMOYO. 50SELinux/SMACK/AppArmor etc. when you want to use TOMOYO.
51 51
52We hope that LSM becomes stackable in future. Meanwhile, you can use non-LSM 52We hope that LSM becomes stackable in future. Meanwhile, you can use non-LSM
53version of TOMOYO, available at http://tomoyo.sourceforge.jp/en/1.6.x/ . 53version of TOMOYO, available at http://tomoyo.sourceforge.jp/1.7/ .
54LSM version of TOMOYO is a subset of non-LSM version of TOMOYO. We are planning 54LSM version of TOMOYO is a subset of non-LSM version of TOMOYO. We are planning
55to port non-LSM version's functionalities to LSM versions. 55to port non-LSM version's functionalities to LSM versions.
diff --git a/MAINTAINERS b/MAINTAINERS
index 02f75fccac20..284431856461 100644
--- a/MAINTAINERS
+++ b/MAINTAINERS
@@ -5605,7 +5605,7 @@ L: tomoyo-users-en@lists.sourceforge.jp (subscribers-only, for developers and us
5605L: tomoyo-dev@lists.sourceforge.jp (subscribers-only, for developers in Japanese) 5605L: tomoyo-dev@lists.sourceforge.jp (subscribers-only, for developers in Japanese)
5606L: tomoyo-users@lists.sourceforge.jp (subscribers-only, for users in Japanese) 5606L: tomoyo-users@lists.sourceforge.jp (subscribers-only, for users in Japanese)
5607W: http://tomoyo.sourceforge.jp/ 5607W: http://tomoyo.sourceforge.jp/
5608T: quilt http://svn.sourceforge.jp/svnroot/tomoyo/trunk/2.2.x/tomoyo-lsm/patches/ 5608T: quilt http://svn.sourceforge.jp/svnroot/tomoyo/trunk/2.3.x/tomoyo-lsm/patches/
5609S: Maintained 5609S: Maintained
5610F: security/tomoyo/ 5610F: security/tomoyo/
5611 5611
diff --git a/security/tomoyo/common.c b/security/tomoyo/common.c
index bff63929e53d..ef43995119a4 100644
--- a/security/tomoyo/common.c
+++ b/security/tomoyo/common.c
@@ -1747,7 +1747,7 @@ static int tomoyo_write_answer(struct tomoyo_io_buffer *head)
1747static void tomoyo_read_version(struct tomoyo_io_buffer *head) 1747static void tomoyo_read_version(struct tomoyo_io_buffer *head)
1748{ 1748{
1749 if (!head->r.eof) { 1749 if (!head->r.eof) {
1750 tomoyo_io_printf(head, "2.3.0-pre"); 1750 tomoyo_io_printf(head, "2.3.0");
1751 head->r.eof = true; 1751 head->r.eof = true;
1752 } 1752 }
1753} 1753}
@@ -2054,6 +2054,6 @@ void tomoyo_check_profile(void)
2054 if (tomoyo_profile_version != 20090903) 2054 if (tomoyo_profile_version != 20090903)
2055 panic("Profile version %u is not supported.\n", 2055 panic("Profile version %u is not supported.\n",
2056 tomoyo_profile_version); 2056 tomoyo_profile_version);
2057 printk(KERN_INFO "TOMOYO: 2.3.0-pre 2010/06/03\n"); 2057 printk(KERN_INFO "TOMOYO: 2.3.0\n");
2058 printk(KERN_INFO "Mandatory Access Control activated.\n"); 2058 printk(KERN_INFO "Mandatory Access Control activated.\n");
2059} 2059}