Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id ; Sun, 29 Sep 2002 22:04:34 -0400 Received: (majordomo@vger.kernel.org) by vger.kernel.org id ; Sun, 29 Sep 2002 22:04:34 -0400 Received: from louise.pinerecords.com ([212.71.160.16]:65284 "EHLO louise.pinerecords.com") by vger.kernel.org with ESMTP id ; Sun, 29 Sep 2002 22:04:27 -0400 Date: Mon, 30 Sep 2002 04:09:42 +0200 From: Tomas Szepe To: Pete Zaitcev Cc: "David S. Miller" , linux-kernel@vger.kernel.org Subject: Re: sparc32 sunrpc.o Message-ID: <20020930020942.GE8884@louise.pinerecords.com> References: <20020926.142910.124086325.davem@redhat.com> <20020928122817.GV27082@louise.pinerecords.com> <20020928161316.GA4323@louise.pinerecords.com> <20020928.232350.33317317.davem@redhat.com> <20020929102238.GD4323@louise.pinerecords.com> <20020929195612.A3218@devserv.devel.redhat.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20020929195612.A3218@devserv.devel.redhat.com> Sender: linux-kernel-owner@vger.kernel.org X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 8583 Lines: 317 Hi, > > +++ linux-2.4.20-pre8/arch/sparc/mm/Makefile 2002-09-29 11:45:33.000000000 +0200 > > @@ -11,7 +11,7 @@ > > $(CC) $(AFLAGS) -ansi -c -o $*.o $< > > > > O_TARGET := mm.o > > -obj-y := fault.o init.o loadmmu.o generic.o extable.o btfixup.o > > +obj-y := fault.o init.o loadmmu.o generic.o extable.o highmem.o btfixup.o > > Why is this not obj-$(CONFIG_HIGHMEM) ? My bad. I took the liberty of fixing up the formatting of the makefile when I was at changing this. > > +/* in mm/memory.c */ > > +extern struct page *highmem_start_page; > > + > > I would not do this. I would try to include > into arch/sparc/mm/highmem.c (instead of as you did). Ok. linux/highmem.h initially looked suspicious to me. Also if this extern isn't put in asm-sparc/highmem.h, linux/highmem.h has to be included everywhere instead (which is not really a problem I think). > Also, now that you moved a bunch of implementation out of inlines, > try to trim the #include list at the top of . > For instance, asm/vaddrs.h is a suspect. Indeed! And linux/init.h and asm/pgtable.h aren't needed either. > The rest of the patch is sane, as far as I can tell. I do not > have a ready to run 2.4 sparc box, sorry. Please ask sparclinux@vger > people to test, especially Uzi. Will do. Hopefully aurora people will have a go with the patch too. v3 as per your comments follows. T. diff -urN 2.4.20-pre8.vanilla/arch/sparc/kernel/sparc_ksyms.c linux-2.4.20-pre8/arch/sparc/kernel/sparc_ksyms.c --- 2.4.20-pre8.vanilla/arch/sparc/kernel/sparc_ksyms.c 2002-08-03 06:12:08.000000000 +0200 +++ linux-2.4.20-pre8/arch/sparc/kernel/sparc_ksyms.c 2002-09-30 03:44:37.000000000 +0200 @@ -46,6 +46,9 @@ #include #include #endif +#ifdef CONFIG_HIGHMEM +#include +#endif #include #include @@ -204,6 +207,12 @@ EXPORT_SYMBOL(pci_dma_sync_single); #endif +/* in arch/sparc/mm/highmem.c */ +#ifdef CONFIG_HIGHMEM +EXPORT_SYMBOL(kmap_atomic); +EXPORT_SYMBOL(kunmap_atomic); +#endif + /* Solaris/SunOS binary compatibility */ EXPORT_SYMBOL(svr4_setcontext); EXPORT_SYMBOL(svr4_getcontext); diff -urN 2.4.20-pre8.vanilla/arch/sparc/mm/Makefile linux-2.4.20-pre8/arch/sparc/mm/Makefile --- 2.4.20-pre8.vanilla/arch/sparc/mm/Makefile 2000-12-29 23:07:21.000000000 +0100 +++ linux-2.4.20-pre8/arch/sparc/mm/Makefile 2002-09-30 03:23:25.000000000 +0200 @@ -10,19 +10,24 @@ .S.o: $(CC) $(AFLAGS) -ansi -c -o $*.o $< -O_TARGET := mm.o -obj-y := fault.o init.o loadmmu.o generic.o extable.o btfixup.o +O_TARGET := mm.o +obj-y := fault.o init.o loadmmu.o generic.o extable.o btfixup.o ifeq ($(CONFIG_SUN4),y) -obj-y += nosrmmu.o +obj-y += nosrmmu.o else -obj-y += srmmu.o iommu.o io-unit.o hypersparc.o viking.o tsunami.o swift.o +obj-y += srmmu.o iommu.o io-unit.o hypersparc.o viking.o \ + tsunami.o swift.o +endif + +ifdef CONFIG_HIGHMEM +obj-y += highmem.o endif ifdef CONFIG_SMP -obj-y += nosun4c.o +obj-y += nosun4c.o else -obj-y += sun4c.o +obj-y += sun4c.o endif include $(TOPDIR)/Rules.make diff -urN 2.4.20-pre8.vanilla/arch/sparc/mm/highmem.c linux-2.4.20-pre8/arch/sparc/mm/highmem.c --- 2.4.20-pre8.vanilla/arch/sparc/mm/highmem.c 1970-01-01 01:00:00.000000000 +0100 +++ linux-2.4.20-pre8/arch/sparc/mm/highmem.c 2002-09-30 03:27:54.000000000 +0200 @@ -0,0 +1,84 @@ +/* + * highmem.c: virtual kernel memory mappings for high memory + * + * Provides kernel-static versions of atomic kmap functions originally + * found as inlines in include/asm-sparc/highmem.h. These became + * needed as kmap_atomic() and kunmap_atomic() started getting + * called from within modules. + * -- Tomas Szepe , September 2002 + */ + +#include +#include +#include + +/* + * The use of kmap_atomic/kunmap_atomic is discouraged -- kmap()/kunmap() + * gives a more generic (and caching) interface. But kmap_atomic() can + * be used in IRQ contexts, so in some (very limited) cases we need it. + */ +void *kmap_atomic(struct page *page, enum km_type type) +{ + unsigned long idx; + unsigned long vaddr; + + if (page < highmem_start_page) + return page_address(page); + + idx = type + KM_TYPE_NR * smp_processor_id(); + vaddr = fix_kmap_begin + idx * PAGE_SIZE; + +/* XXX Fix - Anton */ +#if 0 + __flush_cache_one(vaddr); +#else + flush_cache_all(); +#endif + +#if HIGHMEM_DEBUG + if (!pte_none(*(kmap_pte + idx))) + BUG(); +#endif + set_pte(kmap_pte + idx, mk_pte(page, kmap_prot)); +/* XXX Fix - Anton */ +#if 0 + __flush_tlb_one(vaddr); +#else + flush_tlb_all(); +#endif + + return (void *) vaddr; +} + +void kunmap_atomic(void *kvaddr, enum km_type type) +{ + unsigned long vaddr = (unsigned long) kvaddr; + unsigned long idx = type + KM_TYPE_NR * smp_processor_id(); + + if (vaddr < fix_kmap_begin) /* FIXME */ + return; + + if (vaddr != fix_kmap_begin + idx * PAGE_SIZE) + BUG(); + +/* XXX Fix - Anton */ +#if 0 + __flush_cache_one(vaddr); +#else + flush_cache_all(); +#endif + +#ifdef HIGHMEM_DEBUG + /* + * Force other mappings to oops if they try to access + * this pte without first remapping it. + */ + pte_clear(kmap_pte + idx); +/* XXX Fix - Anton */ +#if 0 + __flush_tlb_one(vaddr); +#else + flush_tlb_all(); +#endif +#endif +} diff -urN 2.4.20-pre8.vanilla/include/asm-sparc/highmem.h linux-2.4.20-pre8/include/asm-sparc/highmem.h --- 2.4.20-pre8.vanilla/include/asm-sparc/highmem.h 2002-09-30 03:32:26.000000000 +0200 +++ linux-2.4.20-pre8/include/asm-sparc/highmem.h 2002-09-30 03:56:59.000000000 +0200 @@ -20,15 +20,16 @@ #ifdef __KERNEL__ -#include #include -#include #include -#include /* undef for production */ #define HIGHMEM_DEBUG 1 +/* in mm/highmem.c */ +extern void *kmap_high(struct page *page); +extern void kunmap_high(struct page *page); + /* declarations for highmem.c */ extern unsigned long highstart_pfn, highend_pfn; @@ -51,12 +52,13 @@ */ #define LAST_PKMAP 1024 -#define LAST_PKMAP_MASK (LAST_PKMAP - 1) -#define PKMAP_NR(virt) ((virt - pkmap_base) >> PAGE_SHIFT) -#define PKMAP_ADDR(nr) (pkmap_base + ((nr) << PAGE_SHIFT)) - -extern void *kmap_high(struct page *page); -extern void kunmap_high(struct page *page); +#define LAST_PKMAP_MASK (LAST_PKMAP - 1) +#define PKMAP_NR(virt) ((virt - pkmap_base) >> PAGE_SHIFT) +#define PKMAP_ADDR(nr) (pkmap_base + ((nr) << PAGE_SHIFT)) + +/* in arch/sparc/mm/highmem.c */ +void *kmap_atomic(struct page *page, enum km_type type); +void kunmap_atomic(void *kvaddr, enum km_type type); static inline void *kmap(struct page *page) { @@ -76,78 +78,6 @@ kunmap_high(page); } -/* - * The use of kmap_atomic/kunmap_atomic is discouraged - kmap/kunmap - * gives a more generic (and caching) interface. But kmap_atomic can - * be used in IRQ contexts, so in some (very limited) cases we need - * it. - */ -static inline void *kmap_atomic(struct page *page, enum km_type type) -{ - unsigned long idx; - unsigned long vaddr; - - if (page < highmem_start_page) - return page_address(page); - - idx = type + KM_TYPE_NR*smp_processor_id(); - vaddr = fix_kmap_begin + idx * PAGE_SIZE; - -/* XXX Fix - Anton */ -#if 0 - __flush_cache_one(vaddr); -#else - flush_cache_all(); -#endif - -#if HIGHMEM_DEBUG - if (!pte_none(*(kmap_pte+idx))) - BUG(); -#endif - set_pte(kmap_pte+idx, mk_pte(page, kmap_prot)); -/* XXX Fix - Anton */ -#if 0 - __flush_tlb_one(vaddr); -#else - flush_tlb_all(); -#endif - - return (void*) vaddr; -} - -static inline void kunmap_atomic(void *kvaddr, enum km_type type) -{ - unsigned long vaddr = (unsigned long) kvaddr; - unsigned long idx = type + KM_TYPE_NR*smp_processor_id(); - - if (vaddr < fix_kmap_begin) // FIXME - return; - - if (vaddr != fix_kmap_begin + idx * PAGE_SIZE) - BUG(); - -/* XXX Fix - Anton */ -#if 0 - __flush_cache_one(vaddr); -#else - flush_cache_all(); -#endif - -#ifdef HIGHMEM_DEBUG - /* - * force other mappings to Oops if they'll try to access - * this pte without first remap it - */ - pte_clear(kmap_pte+idx); -/* XXX Fix - Anton */ -#if 0 - __flush_tlb_one(vaddr); -#else - flush_tlb_all(); -#endif -#endif -} - #endif /* __KERNEL__ */ #endif /* _ASM_HIGHMEM_H */ - To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/