diff options
| author | Linus Torvalds <torvalds@linux-foundation.org> | 2009-03-26 19:04:22 -0400 |
|---|---|---|
| committer | Linus Torvalds <torvalds@linux-foundation.org> | 2009-03-26 19:04:22 -0400 |
| commit | 21cdbc1378e8aa96e1ed4a606dce1a8e7daf7fdf (patch) | |
| tree | 55b6c294b912ccdc3eede15960b0ece53a69d902 /arch/s390/kernel/bitmap.S | |
| parent | 86d9c070175de65890794fa227b68297da6206d8 (diff) | |
| parent | ef3500b2b2955af4fa6b0564b51c0c604e38c571 (diff) | |
Merge branch 'for-linus' of git://git390.marist.edu/pub/scm/linux-2.6
* 'for-linus' of git://git390.marist.edu/pub/scm/linux-2.6: (81 commits)
[S390] remove duplicated #includes
[S390] cpumask: use mm_cpumask() wrapper
[S390] cpumask: Use accessors code.
[S390] cpumask: prepare for iterators to only go to nr_cpu_ids/nr_cpumask_bits.
[S390] cpumask: remove cpu_coregroup_map
[S390] fix clock comparator save area usage
[S390] Add hwcap flag for the etf3 enhancement facility
[S390] Ensure that ipl panic notifier is called late.
[S390] fix dfp elf hwcap/facility bit detection
[S390] smp: perform initial cpu reset before starting a cpu
[S390] smp: fix memory leak on __cpu_up
[S390] ipl: Improve checking logic and remove switch defaults.
[S390] s390dbf: Remove needless check for NULL pointer.
[S390] s390dbf: Remove redundant initilizations.
[S390] use kzfree()
[S390] BUG to BUG_ON changes
[S390] zfcpdump: Prevent zcore from beeing built as a kernel module.
[S390] Use csum_partial in checksum.h
[S390] cleanup lowcore.h
[S390] eliminate ipl_device from lowcore
...
Diffstat (limited to 'arch/s390/kernel/bitmap.S')
| -rw-r--r-- | arch/s390/kernel/bitmap.S | 56 |
1 files changed, 0 insertions, 56 deletions
diff --git a/arch/s390/kernel/bitmap.S b/arch/s390/kernel/bitmap.S deleted file mode 100644 index dfb41f946e23..000000000000 --- a/arch/s390/kernel/bitmap.S +++ /dev/null | |||
| @@ -1,56 +0,0 @@ | |||
| 1 | /* | ||
| 2 | * arch/s390/kernel/bitmap.S | ||
| 3 | * Bitmaps for set_bit, clear_bit, test_and_set_bit, ... | ||
| 4 | * See include/asm-s390/{bitops.h|posix_types.h} for details | ||
| 5 | * | ||
| 6 | * S390 version | ||
| 7 | * Copyright (C) 1999 IBM Deutschland Entwicklung GmbH, IBM Corporation | ||
| 8 | * Author(s): Martin Schwidefsky (schwidefsky@de.ibm.com), | ||
| 9 | */ | ||
| 10 | |||
| 11 | .globl _oi_bitmap | ||
| 12 | _oi_bitmap: | ||
| 13 | .byte 0x01,0x02,0x04,0x08,0x10,0x20,0x40,0x80 | ||
| 14 | |||
| 15 | .globl _ni_bitmap | ||
| 16 | _ni_bitmap: | ||
| 17 | .byte 0xFE,0xFD,0xFB,0xF7,0xEF,0xDF,0xBF,0x7F | ||
| 18 | |||
| 19 | .globl _zb_findmap | ||
| 20 | _zb_findmap: | ||
| 21 | .byte 0,1,0,2,0,1,0,3,0,1,0,2,0,1,0,4 | ||
| 22 | .byte 0,1,0,2,0,1,0,3,0,1,0,2,0,1,0,5 | ||
| 23 | .byte 0,1,0,2,0,1,0,3,0,1,0,2,0,1,0,4 | ||
| 24 | .byte 0,1,0,2,0,1,0,3,0,1,0,2,0,1,0,6 | ||
| 25 | .byte 0,1,0,2,0,1,0,3,0,1,0,2,0,1,0,4 | ||
| 26 | .byte 0,1,0,2,0,1,0,3,0,1,0,2,0,1,0,5 | ||
| 27 | .byte 0,1,0,2,0,1,0,3,0,1,0,2,0,1,0,4 | ||
| 28 | .byte 0,1,0,2,0,1,0,3,0,1,0,2,0,1,0,7 | ||
| 29 | .byte 0,1,0,2,0,1,0,3,0,1,0,2,0,1,0,4 | ||
| 30 | .byte 0,1,0,2,0,1,0,3,0,1,0,2,0,1,0,5 | ||
| 31 | .byte 0,1,0,2,0,1,0,3,0,1,0,2,0,1,0,4 | ||
| 32 | .byte 0,1,0,2,0,1,0,3,0,1,0,2,0,1,0,6 | ||
| 33 | .byte 0,1,0,2,0,1,0,3,0,1,0,2,0,1,0,4 | ||
| 34 | .byte 0,1,0,2,0,1,0,3,0,1,0,2,0,1,0,5 | ||
| 35 | .byte 0,1,0,2,0,1,0,3,0,1,0,2,0,1,0,4 | ||
| 36 | .byte 0,1,0,2,0,1,0,3,0,1,0,2,0,1,0,8 | ||
| 37 | |||
| 38 | .globl _sb_findmap | ||
| 39 | _sb_findmap: | ||
| 40 | .byte 8,0,1,0,2,0,1,0,3,0,1,0,2,0,1,0 | ||
| 41 | .byte 4,0,1,0,2,0,1,0,3,0,1,0,2,0,1,0 | ||
| 42 | .byte 5,0,1,0,2,0,1,0,3,0,1,0,2,0,1,0 | ||
| 43 | .byte 4,0,1,0,2,0,1,0,3,0,1,0,2,0,1,0 | ||
| 44 | .byte 6,0,1,0,2,0,1,0,3,0,1,0,2,0,1,0 | ||
| 45 | .byte 4,0,1,0,2,0,1,0,3,0,1,0,2,0,1,0 | ||
| 46 | .byte 5,0,1,0,2,0,1,0,3,0,1,0,2,0,1,0 | ||
| 47 | .byte 4,0,1,0,2,0,1,0,3,0,1,0,2,0,1,0 | ||
| 48 | .byte 7,0,1,0,2,0,1,0,3,0,1,0,2,0,1,0 | ||
| 49 | .byte 4,0,1,0,2,0,1,0,3,0,1,0,2,0,1,0 | ||
| 50 | .byte 5,0,1,0,2,0,1,0,3,0,1,0,2,0,1,0 | ||
| 51 | .byte 4,0,1,0,2,0,1,0,3,0,1,0,2,0,1,0 | ||
| 52 | .byte 6,0,1,0,2,0,1,0,3,0,1,0,2,0,1,0 | ||
| 53 | .byte 4,0,1,0,2,0,1,0,3,0,1,0,2,0,1,0 | ||
| 54 | .byte 5,0,1,0,2,0,1,0,3,0,1,0,2,0,1,0 | ||
| 55 | .byte 4,0,1,0,2,0,1,0,3,0,1,0,2,0,1,0 | ||
| 56 | |||
