mirror of
https://github.com/torvalds/linux.git
synced 2024-11-16 00:52:01 +00:00
7633453978
This is the first patch in a series of 4, with which the page cache flushing of
parisc will gets fixed and enhanced. This even fixes the nasty "minifail" bug
(http://wiki.parisc-linux.org/TestCases?highlight=%28minifail%29) which
prevented parisc to stay an official debian port. Basically the flush in
copy_user_page together with the TLB patch from commit
7139bc1579
is what fixes the minifail bug.
This patch still uses the TMPALIAS approach. The new copy_user_page
implementation calls flush_dcache_page_asm to flush the user dcache page
(crucial for minifail fix) via a kernel TMPALIAS mapping. After that, it just
copies the page using the kernel mapping. It does a final flush if needed.
Generally it is hard to avoid doing some cache flushes using the kernel mapping
(e.g., copy_to_user_page and copy_from_user_page).
This patch depends on a subsequent change to pacache.S implementing
clear_page_asm and copy_page_asm. These are optimized routines to clear and
copy a page. The calls in clear_user_page and copy_user_page could be replaced
by calls to memset and memcpy, respectively. I tested prefetch optimizations
in clear_page_asm and copy_page_asm but didn't see any significant performance
improvement on rp3440. I'm not sure if these are routines are significantly
faster than memset and/or memcpy, but they are there for further performance
evaluation.
Signed-off-by: John David Anglin <dave.anglin@bell.net>
Signed-off-by: Helge Deller <deller@gmx.de>
163 lines
4.4 KiB
C
163 lines
4.4 KiB
C
/*
|
|
* Architecture-specific kernel symbols
|
|
*
|
|
* Copyright (C) 2000-2001 Richard Hirst <rhirst with parisc-linux.org>
|
|
* Copyright (C) 2001 Dave Kennedy
|
|
* Copyright (C) 2001 Paul Bame <bame at parisc-linux.org>
|
|
* Copyright (C) 2001-2003 Grant Grundler <grundler with parisc-linux.org>
|
|
* Copyright (C) 2002-2003 Matthew Wilcox <willy at parisc-linux.org>
|
|
* Copyright (C) 2002 Randolph Chung <tausq at parisc-linux.org>
|
|
* Copyright (C) 2002-2007 Helge Deller <deller with parisc-linux.org>
|
|
*
|
|
* This program is free software; you can redistribute it and/or modify
|
|
* it under the terms of the GNU General Public License as published by
|
|
* the Free Software Foundation; either version 2 of the License, or
|
|
* (at your option) any later version.
|
|
*
|
|
* This program is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
* GNU General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU General Public License
|
|
* along with this program; if not, write to the Free Software
|
|
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
|
*/
|
|
|
|
#include <linux/module.h>
|
|
#include <linux/kernel.h>
|
|
#include <linux/syscalls.h>
|
|
|
|
#include <linux/string.h>
|
|
EXPORT_SYMBOL(memset);
|
|
|
|
#include <linux/atomic.h>
|
|
EXPORT_SYMBOL(__xchg8);
|
|
EXPORT_SYMBOL(__xchg32);
|
|
EXPORT_SYMBOL(__cmpxchg_u32);
|
|
#ifdef CONFIG_SMP
|
|
EXPORT_SYMBOL(__atomic_hash);
|
|
#endif
|
|
#ifdef CONFIG_64BIT
|
|
EXPORT_SYMBOL(__xchg64);
|
|
EXPORT_SYMBOL(__cmpxchg_u64);
|
|
#endif
|
|
|
|
#include <asm/uaccess.h>
|
|
EXPORT_SYMBOL(lclear_user);
|
|
EXPORT_SYMBOL(lstrnlen_user);
|
|
|
|
/* Global fixups */
|
|
extern void fixup_get_user_skip_1(void);
|
|
extern void fixup_get_user_skip_2(void);
|
|
extern void fixup_put_user_skip_1(void);
|
|
extern void fixup_put_user_skip_2(void);
|
|
EXPORT_SYMBOL(fixup_get_user_skip_1);
|
|
EXPORT_SYMBOL(fixup_get_user_skip_2);
|
|
EXPORT_SYMBOL(fixup_put_user_skip_1);
|
|
EXPORT_SYMBOL(fixup_put_user_skip_2);
|
|
|
|
#ifndef CONFIG_64BIT
|
|
/* Needed so insmod can set dp value */
|
|
extern int $global$;
|
|
EXPORT_SYMBOL($global$);
|
|
#endif
|
|
|
|
#include <asm/io.h>
|
|
EXPORT_SYMBOL(memcpy_toio);
|
|
EXPORT_SYMBOL(memcpy_fromio);
|
|
EXPORT_SYMBOL(memset_io);
|
|
|
|
extern void $$divI(void);
|
|
extern void $$divU(void);
|
|
extern void $$remI(void);
|
|
extern void $$remU(void);
|
|
extern void $$mulI(void);
|
|
extern void $$divU_3(void);
|
|
extern void $$divU_5(void);
|
|
extern void $$divU_6(void);
|
|
extern void $$divU_9(void);
|
|
extern void $$divU_10(void);
|
|
extern void $$divU_12(void);
|
|
extern void $$divU_7(void);
|
|
extern void $$divU_14(void);
|
|
extern void $$divU_15(void);
|
|
extern void $$divI_3(void);
|
|
extern void $$divI_5(void);
|
|
extern void $$divI_6(void);
|
|
extern void $$divI_7(void);
|
|
extern void $$divI_9(void);
|
|
extern void $$divI_10(void);
|
|
extern void $$divI_12(void);
|
|
extern void $$divI_14(void);
|
|
extern void $$divI_15(void);
|
|
|
|
EXPORT_SYMBOL($$divI);
|
|
EXPORT_SYMBOL($$divU);
|
|
EXPORT_SYMBOL($$remI);
|
|
EXPORT_SYMBOL($$remU);
|
|
EXPORT_SYMBOL($$mulI);
|
|
EXPORT_SYMBOL($$divU_3);
|
|
EXPORT_SYMBOL($$divU_5);
|
|
EXPORT_SYMBOL($$divU_6);
|
|
EXPORT_SYMBOL($$divU_9);
|
|
EXPORT_SYMBOL($$divU_10);
|
|
EXPORT_SYMBOL($$divU_12);
|
|
EXPORT_SYMBOL($$divU_7);
|
|
EXPORT_SYMBOL($$divU_14);
|
|
EXPORT_SYMBOL($$divU_15);
|
|
EXPORT_SYMBOL($$divI_3);
|
|
EXPORT_SYMBOL($$divI_5);
|
|
EXPORT_SYMBOL($$divI_6);
|
|
EXPORT_SYMBOL($$divI_7);
|
|
EXPORT_SYMBOL($$divI_9);
|
|
EXPORT_SYMBOL($$divI_10);
|
|
EXPORT_SYMBOL($$divI_12);
|
|
EXPORT_SYMBOL($$divI_14);
|
|
EXPORT_SYMBOL($$divI_15);
|
|
|
|
extern void __ashrdi3(void);
|
|
extern void __ashldi3(void);
|
|
extern void __lshrdi3(void);
|
|
extern void __muldi3(void);
|
|
|
|
EXPORT_SYMBOL(__ashrdi3);
|
|
EXPORT_SYMBOL(__ashldi3);
|
|
EXPORT_SYMBOL(__lshrdi3);
|
|
EXPORT_SYMBOL(__muldi3);
|
|
|
|
asmlinkage void * __canonicalize_funcptr_for_compare(void *);
|
|
EXPORT_SYMBOL(__canonicalize_funcptr_for_compare);
|
|
|
|
#ifdef CONFIG_64BIT
|
|
extern void __divdi3(void);
|
|
extern void __udivdi3(void);
|
|
extern void __umoddi3(void);
|
|
extern void __moddi3(void);
|
|
|
|
EXPORT_SYMBOL(__divdi3);
|
|
EXPORT_SYMBOL(__udivdi3);
|
|
EXPORT_SYMBOL(__umoddi3);
|
|
EXPORT_SYMBOL(__moddi3);
|
|
#endif
|
|
|
|
#ifndef CONFIG_64BIT
|
|
extern void $$dyncall(void);
|
|
EXPORT_SYMBOL($$dyncall);
|
|
#endif
|
|
|
|
#ifdef CONFIG_DISCONTIGMEM
|
|
#include <asm/mmzone.h>
|
|
EXPORT_SYMBOL(node_data);
|
|
EXPORT_SYMBOL(pfnnid_map);
|
|
#endif
|
|
|
|
#ifdef CONFIG_FUNCTION_TRACER
|
|
extern void _mcount(void);
|
|
EXPORT_SYMBOL(_mcount);
|
|
#endif
|
|
|
|
/* from pacache.S -- needed for clear/copy_page */
|
|
EXPORT_SYMBOL(clear_page_asm);
|
|
EXPORT_SYMBOL(copy_page_asm);
|