Gitweb:     
http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=6a04de6dbe1772d98fddf5099738d6f508e86e21
Commit:     6a04de6dbe1772d98fddf5099738d6f508e86e21
Parent:     c3724b129b5a1a1789a2dc5348685a236ae02479
Author:     Wu, Bryan <[EMAIL PROTECTED]>
AuthorDate: Wed Apr 11 23:28:47 2007 -0700
Committer:  Linus Torvalds <[EMAIL PROTECTED]>
CommitDate: Thu Apr 12 15:31:42 2007 -0700

    [PATCH] nommu: fix bug ip_conntrack does not work on nommu
    
    num_physpages is not exported out in mm/nommu.c, so the ip_conntrack module
    link will fail.
    
    Signed-off-by: Bryan Wu <[EMAIL PROTECTED]>
    Acked-By: David Howells <[EMAIL PROTECTED]>
    Signed-off-by: Andrew Morton <[EMAIL PROTECTED]>
    Signed-off-by: Linus Torvalds <[EMAIL PROTECTED]>
---
 mm/nommu.c |    1 +
 1 files changed, 1 insertions(+), 0 deletions(-)

diff --git a/mm/nommu.c b/mm/nommu.c
index cbbc137..1f60194 100644
--- a/mm/nommu.c
+++ b/mm/nommu.c
@@ -45,6 +45,7 @@ int heap_stack_gap = 0;
 
 EXPORT_SYMBOL(mem_map);
 EXPORT_SYMBOL(__vm_enough_memory);
+EXPORT_SYMBOL(num_physpages);
 
 /* list of shareable VMAs */
 struct rb_root nommu_vma_tree = RB_ROOT;
-
To unsubscribe from this list: send the line "unsubscribe git-commits-head" in
the body of a message to [EMAIL PROTECTED]
More majordomo info at  http://vger.kernel.org/majordomo-info.html

Reply via email to