search for: archparam

Displaying 6 results from an estimated 6 matches for "archparam".

2020 Nov 03
0
[patch V3 18/37] highmem: Get rid of kmap_types.h
...ITH_KM_FENCE -#endif - -#include <asm-generic/kmap_types.h> - -#undef __WITH_KM_FENCE - -#endif --- a/arch/um/include/asm/fixmap.h +++ b/arch/um/include/asm/fixmap.h @@ -3,7 +3,6 @@ #define __UM_FIXMAP_H #include <asm/processor.h> -#include <asm/kmap_types.h> #include <asm/archparam.h> #include <asm/page.h> #include <linux/threads.h> --- a/arch/um/include/asm/kmap_types.h +++ /dev/null @@ -1,13 +0,0 @@ -/* SPDX-License-Identifier: GPL-2.0 */ -/* - * Copyright (C) 2002 Jeff Dike (jdike at karaya.com) - */ - -#ifndef __UM_KMAP_TYPES_H -#define __UM_KMAP_TYPES_H...
2007 Aug 19
1
[PATCH 1/5] um/... convert #include "linux/..." to #include <linux/...>
...nclude/asm-x86_64/desc.h diff --git a/include/asm-um/hw_irq.h b/include/asm-um/hw_irq.h index 1cf84cf..efdffa4 100644 --- a/include/asm-um/hw_irq.h +++ b/include/asm-um/hw_irq.h @@ -1,7 +1,7 @@ #ifndef _ASM_UM_HW_IRQ_H #define _ASM_UM_HW_IRQ_H -#include "asm/irq.h" -#include "asm/archparam.h" +#include <asm/irq.h> +#include <asm/archparam.h> #endif diff --git a/include/asm-um/ide.h b/include/asm-um/ide.h index 3d1cceb..ac4f3cc 100644 --- a/include/asm-um/ide.h +++ b/include/asm-um/ide.h @@ -1,6 +1,6 @@ #ifndef __UM_IDE_H #define __UM_IDE_H -#include "asm/...
2007 Aug 19
1
[PATCH 1/5] um/... convert #include "linux/..." to #include <linux/...>
...nclude/asm-x86_64/desc.h diff --git a/include/asm-um/hw_irq.h b/include/asm-um/hw_irq.h index 1cf84cf..efdffa4 100644 --- a/include/asm-um/hw_irq.h +++ b/include/asm-um/hw_irq.h @@ -1,7 +1,7 @@ #ifndef _ASM_UM_HW_IRQ_H #define _ASM_UM_HW_IRQ_H -#include "asm/irq.h" -#include "asm/archparam.h" +#include <asm/irq.h> +#include <asm/archparam.h> #endif diff --git a/include/asm-um/ide.h b/include/asm-um/ide.h index 3d1cceb..ac4f3cc 100644 --- a/include/asm-um/ide.h +++ b/include/asm-um/ide.h @@ -1,6 +1,6 @@ #ifndef __UM_IDE_H #define __UM_IDE_H -#include "asm/...
2020 Nov 03
45
[patch V3 00/37] mm/highmem: Preemptible variant of kmap_atomic & friends
Following up to the discussion in: https://lore.kernel.org/r/20200914204209.256266093 at linutronix.de and the second version of this: https://lore.kernel.org/r/20201029221806.189523375 at linutronix.de this series provides a preemptible variant of kmap_atomic & related interfaces. This is achieved by: - Removing the RT dependency from migrate_disable/enable() - Consolidating all
2020 Nov 03
45
[patch V3 00/37] mm/highmem: Preemptible variant of kmap_atomic & friends
Following up to the discussion in: https://lore.kernel.org/r/20200914204209.256266093 at linutronix.de and the second version of this: https://lore.kernel.org/r/20201029221806.189523375 at linutronix.de this series provides a preemptible variant of kmap_atomic & related interfaces. This is achieved by: - Removing the RT dependency from migrate_disable/enable() - Consolidating all
2020 Nov 03
45
[patch V3 00/37] mm/highmem: Preemptible variant of kmap_atomic & friends
Following up to the discussion in: https://lore.kernel.org/r/20200914204209.256266093 at linutronix.de and the second version of this: https://lore.kernel.org/r/20201029221806.189523375 at linutronix.de this series provides a preemptible variant of kmap_atomic & related interfaces. This is achieved by: - Removing the RT dependency from migrate_disable/enable() - Consolidating all