Now that 'include/linux/mm.h' includes 'include/linux/swap.h', the global
remove_mapping() definition clashes with the arch/um one.

Rename the arch/um one.

Signed-off-by: Peter Zijlstra <[EMAIL PROTECTED]>
Acked-by: Jeff Dike <[EMAIL PROTECTED]>
---
 arch/um/kernel/physmem.c |    6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

Index: linux-2.6/arch/um/kernel/physmem.c
===================================================================
--- linux-2.6.orig/arch/um/kernel/physmem.c
+++ linux-2.6/arch/um/kernel/physmem.c
@@ -160,7 +160,7 @@ int physmem_subst_mapping(void *virt, in
 
 static int physmem_fd = -1;
 
-static void remove_mapping(struct phys_desc *desc)
+static void um_remove_mapping(struct phys_desc *desc)
 {
        void *virt = desc->virt;
        int err;
@@ -184,7 +184,7 @@ int physmem_remove_mapping(void *virt)
        if(desc == NULL)
                return(0);
 
-       remove_mapping(desc);
+       um_remove_mapping(desc);
        return(1);
 }
 
@@ -205,7 +205,7 @@ void physmem_forget_descriptor(int fd)
                page = list_entry(ele, struct phys_desc, list);
                offset = page->offset;
                addr = page->virt;
-               remove_mapping(page);
+               um_remove_mapping(page);
                err = os_seek_file(fd, offset);
                if(err)
                        panic("physmem_forget_descriptor - failed to seek "

--
-
To unsubscribe from this list: send the line "unsubscribe netdev" in
the body of a message to [EMAIL PROTECTED]
More majordomo info at  http://vger.kernel.org/majordomo-info.html

Reply via email to