All of lore.kernel.org
 help / color / mirror / Atom feed
diff for duplicates of <20090312141612.GB3859@helight>

diff --git a/a/1.txt b/N1/1.txt
index 06d7125..fa6904e 100644
--- a/a/1.txt
+++ b/N1/1.txt
@@ -50,9 +50,3 @@ index fbf24d1..a6fe71f 100644
  
 -- 
 1.5.6.5
-
---
-To unsubscribe, send a message with 'unsubscribe linux-mm' in
-the body to majordomo@kvack.org.  For more info on Linux MM,
-see: http://www.linux-mm.org/ .
-Don't email: <a href=mailto:"dont@kvack.org"> email@kvack.org </a>
diff --git a/a/content_digest b/N1/content_digest
index 882c06d..42d0e9c 100644
--- a/a/content_digest
+++ b/N1/content_digest
@@ -58,12 +58,6 @@
  " }\n"
  " \n"
  "-- \n"
- "1.5.6.5\n"
- "\n"
- "--\n"
- "To unsubscribe, send a message with 'unsubscribe linux-mm' in\n"
- "the body to majordomo@kvack.org.  For more info on Linux MM,\n"
- "see: http://www.linux-mm.org/ .\n"
- "Don't email: <a href=mailto:\"dont@kvack.org\"> email@kvack.org </a>"
+ 1.5.6.5
 
-65a83c05dea48fafd1d9e8cf3fc0386604489c160de4ab187ccf5ffe07c71d39
+84c2792ea772c28a96bc602d872c2a77b07f89a44592b0049838864d832bde1f

diff --git a/a/1.txt b/N2/1.txt
index 06d7125..2fe2c6a 100644
--- a/a/1.txt
+++ b/N2/1.txt
@@ -5,54 +5,3 @@ make the e->rule.xxx shorter in kernel/auditfilter.c
 Zhenwen Xu - Open and Free
 Home Page:	http://zhwen.org
 My Studio:	http://dim4.cn
-
->From 99692dc640b278f1cb1a15646ce42f22e89c0f77 Mon Sep 17 00:00:00 2001
-From: Zhenwen Xu <Helight.Xu@gmail.com>
-Date: Thu, 12 Mar 2009 22:04:59 +0800
-Subject: [PATCH] make the e->rule.xxx shorter in kernel/auditfilter.c
-
-
-Signed-off-by: Zhenwen Xu <Helight.Xu@gmail.com>
----
- kernel/auditfilter.c |   16 ++++++++--------
- 1 files changed, 8 insertions(+), 8 deletions(-)
-
-diff --git a/kernel/auditfilter.c b/kernel/auditfilter.c
-index fbf24d1..a6fe71f 100644
---- a/kernel/auditfilter.c
-+++ b/kernel/auditfilter.c
-@@ -135,18 +135,18 @@ static void audit_remove_watch(struct audit_watch *watch)
- static inline void audit_free_rule(struct audit_entry *e)
- {
- 	int i;
--
-+	struct audit_krule *erule = &e->rule;
- 	/* some rules don't have associated watches */
--	if (e->rule.watch)
--		audit_put_watch(e->rule.watch);
--	if (e->rule.fields)
--		for (i = 0; i < e->rule.field_count; i++) {
--			struct audit_field *f = &e->rule.fields[i];
-+	if (erule->watch)
-+		audit_put_watch(erule->watch);
-+	if (erule->fields)
-+		for (i = 0; i < erule->field_count; i++) {
-+			struct audit_field *f = &erule->fields[i];
- 			kfree(f->lsm_str);
- 			security_audit_rule_free(f->lsm_rule);
- 		}
--	kfree(e->rule.fields);
--	kfree(e->rule.filterkey);
-+	kfree(erule->fields);
-+	kfree(erule->filterkey);
- 	kfree(e);
- }
- 
--- 
-1.5.6.5
-
---
-To unsubscribe, send a message with 'unsubscribe linux-mm' in
-the body to majordomo@kvack.org.  For more info on Linux MM,
-see: http://www.linux-mm.org/ .
-Don't email: <a href=mailto:"dont@kvack.org"> email@kvack.org </a>
diff --git a/a/content_digest b/N2/content_digest
index 882c06d..c5b25e6 100644
--- a/a/content_digest
+++ b/N2/content_digest
@@ -13,57 +13,6 @@
  "---------------------------------\n"
  "Zhenwen Xu - Open and Free\n"
  "Home Page:\thttp://zhwen.org\n"
- "My Studio:\thttp://dim4.cn\n"
- "\n"
- ">From 99692dc640b278f1cb1a15646ce42f22e89c0f77 Mon Sep 17 00:00:00 2001\n"
- "From: Zhenwen Xu <Helight.Xu@gmail.com>\n"
- "Date: Thu, 12 Mar 2009 22:04:59 +0800\n"
- "Subject: [PATCH] make the e->rule.xxx shorter in kernel/auditfilter.c\n"
- "\n"
- "\n"
- "Signed-off-by: Zhenwen Xu <Helight.Xu@gmail.com>\n"
- "---\n"
- " kernel/auditfilter.c |   16 ++++++++--------\n"
- " 1 files changed, 8 insertions(+), 8 deletions(-)\n"
- "\n"
- "diff --git a/kernel/auditfilter.c b/kernel/auditfilter.c\n"
- "index fbf24d1..a6fe71f 100644\n"
- "--- a/kernel/auditfilter.c\n"
- "+++ b/kernel/auditfilter.c\n"
- "@@ -135,18 +135,18 @@ static void audit_remove_watch(struct audit_watch *watch)\n"
- " static inline void audit_free_rule(struct audit_entry *e)\n"
- " {\n"
- " \tint i;\n"
- "-\n"
- "+\tstruct audit_krule *erule = &e->rule;\n"
- " \t/* some rules don't have associated watches */\n"
- "-\tif (e->rule.watch)\n"
- "-\t\taudit_put_watch(e->rule.watch);\n"
- "-\tif (e->rule.fields)\n"
- "-\t\tfor (i = 0; i < e->rule.field_count; i++) {\n"
- "-\t\t\tstruct audit_field *f = &e->rule.fields[i];\n"
- "+\tif (erule->watch)\n"
- "+\t\taudit_put_watch(erule->watch);\n"
- "+\tif (erule->fields)\n"
- "+\t\tfor (i = 0; i < erule->field_count; i++) {\n"
- "+\t\t\tstruct audit_field *f = &erule->fields[i];\n"
- " \t\t\tkfree(f->lsm_str);\n"
- " \t\t\tsecurity_audit_rule_free(f->lsm_rule);\n"
- " \t\t}\n"
- "-\tkfree(e->rule.fields);\n"
- "-\tkfree(e->rule.filterkey);\n"
- "+\tkfree(erule->fields);\n"
- "+\tkfree(erule->filterkey);\n"
- " \tkfree(e);\n"
- " }\n"
- " \n"
- "-- \n"
- "1.5.6.5\n"
- "\n"
- "--\n"
- "To unsubscribe, send a message with 'unsubscribe linux-mm' in\n"
- "the body to majordomo@kvack.org.  For more info on Linux MM,\n"
- "see: http://www.linux-mm.org/ .\n"
- "Don't email: <a href=mailto:\"dont@kvack.org\"> email@kvack.org </a>"
+ "My Studio:\thttp://dim4.cn"
 
-65a83c05dea48fafd1d9e8cf3fc0386604489c160de4ab187ccf5ffe07c71d39
+64451d782925269b7f1675f37d384474b71e27e0e7b3da48f1934412f29134c1

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.