/* * High memory support for Xtensa architecture * * This file is subject to the terms and conditions of the GNU General * Public License. See the file "COPYING" in the main directory of * this archive for more details. * * Copyright (C) 2014 Cadence Design Systems Inc. */ #include <linux/export.h> #include <linux/highmem.h> #include <asm/tlbflush.h> static pte_t *kmap_pte; #if DCACHE_WAY_SIZE > PAGE_SIZE unsigned int last_pkmap_nr_arr[DCACHE_N_COLORS]; wait_queue_head_t pkmap_map_wait_arr[DCACHE_N_COLORS];
static void __init kmap_waitqueues_init(void) { unsigned int i; for (i = 0; i < ARRAY_SIZE(pkmap_map_wait_arr); ++i) init_waitqueue_head(pkmap_map_wait_arr + i); }Contributors
Person | Tokens | Prop | Commits | CommitProp |
Max Filippov | 36 | 100.00% | 1 | 100.00% |
Total | 36 | 100.00% | 1 | 100.00% |
Person | Tokens | Prop | Commits | CommitProp |
Max Filippov | 8 | 100.00% | 1 | 100.00% |
Total | 8 | 100.00% | 1 | 100.00% |
Person | Tokens | Prop | Commits | CommitProp |
Max Filippov | 29 | 100.00% | 1 | 100.00% |
Total | 29 | 100.00% | 1 | 100.00% |
Person | Tokens | Prop | Commits | CommitProp |
Max Filippov | 101 | 97.12% | 3 | 75.00% |
David Hildenbrand | 3 | 2.88% | 1 | 25.00% |
Total | 104 | 100.00% | 4 | 100.00% |
Person | Tokens | Prop | Commits | CommitProp |
Max Filippov | 83 | 96.51% | 3 | 75.00% |
David Hildenbrand | 3 | 3.49% | 1 | 25.00% |
Total | 86 | 100.00% | 4 | 100.00% |
Person | Tokens | Prop | Commits | CommitProp |
Max Filippov | 30 | 100.00% | 2 | 100.00% |
Total | 30 | 100.00% | 2 | 100.00% |
Person | Tokens | Prop | Commits | CommitProp |
Max Filippov | 334 | 98.24% | 4 | 80.00% |
David Hildenbrand | 6 | 1.76% | 1 | 20.00% |
Total | 340 | 100.00% | 5 | 100.00% |