-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
yaml --- r: 299238 b: refs/heads/master c: bfecc60 h: refs/heads/master v: v3
- Loading branch information
Linus Torvalds
committed
Apr 14, 2012
1 parent
bf4d2e4
commit 26f99ad
Showing
50 changed files
with
1,356 additions
and
816 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,2 @@ | ||
--- | ||
refs/heads/master: a7ca08038b990e2cbed324948664b2d8940fd782 | ||
refs/heads/master: bfecc60d8f6715ec6b38aa29c4f5a3570415dae0 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
What: /sys/block/rssd*/registers | ||
Date: March 2012 | ||
KernelVersion: 3.3 | ||
Contact: Asai Thambi S P <asamymuthupa@micron.com> | ||
Description: This is a read-only file. Dumps below driver information and | ||
hardware registers. | ||
- S ACTive | ||
- Command Issue | ||
- Allocated | ||
- Completed | ||
- PORT IRQ STAT | ||
- HOST IRQ STAT | ||
|
||
What: /sys/block/rssd*/status | ||
Date: April 2012 | ||
KernelVersion: 3.4 | ||
Contact: Asai Thambi S P <asamymuthupa@micron.com> | ||
Description: This is a read-only file. Indicates the status of the device. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
What: /sys/block/<device>/iosched/target_latency | ||
Date: March 2012 | ||
contact: Tao Ma <boyu.mt@taobao.com> | ||
Description: | ||
The /sys/block/<device>/iosched/target_latency only exists | ||
when the user sets cfq to /sys/block/<device>/scheduler. | ||
It contains an estimated latency time for the cfq. cfq will | ||
use it to calculate the time slice used for every task. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,71 @@ | ||
#ifndef _ALPHA_CMPXCHG_H | ||
#define _ALPHA_CMPXCHG_H | ||
|
||
/* | ||
* Atomic exchange routines. | ||
*/ | ||
|
||
#define __ASM__MB | ||
#define ____xchg(type, args...) __xchg ## type ## _local(args) | ||
#define ____cmpxchg(type, args...) __cmpxchg ## type ## _local(args) | ||
#include <asm/xchg.h> | ||
|
||
#define xchg_local(ptr, x) \ | ||
({ \ | ||
__typeof__(*(ptr)) _x_ = (x); \ | ||
(__typeof__(*(ptr))) __xchg_local((ptr), (unsigned long)_x_, \ | ||
sizeof(*(ptr))); \ | ||
}) | ||
|
||
#define cmpxchg_local(ptr, o, n) \ | ||
({ \ | ||
__typeof__(*(ptr)) _o_ = (o); \ | ||
__typeof__(*(ptr)) _n_ = (n); \ | ||
(__typeof__(*(ptr))) __cmpxchg_local((ptr), (unsigned long)_o_, \ | ||
(unsigned long)_n_, \ | ||
sizeof(*(ptr))); \ | ||
}) | ||
|
||
#define cmpxchg64_local(ptr, o, n) \ | ||
({ \ | ||
BUILD_BUG_ON(sizeof(*(ptr)) != 8); \ | ||
cmpxchg_local((ptr), (o), (n)); \ | ||
}) | ||
|
||
#ifdef CONFIG_SMP | ||
#undef __ASM__MB | ||
#define __ASM__MB "\tmb\n" | ||
#endif | ||
#undef ____xchg | ||
#undef ____cmpxchg | ||
#define ____xchg(type, args...) __xchg ##type(args) | ||
#define ____cmpxchg(type, args...) __cmpxchg ##type(args) | ||
#include <asm/xchg.h> | ||
|
||
#define xchg(ptr, x) \ | ||
({ \ | ||
__typeof__(*(ptr)) _x_ = (x); \ | ||
(__typeof__(*(ptr))) __xchg((ptr), (unsigned long)_x_, \ | ||
sizeof(*(ptr))); \ | ||
}) | ||
|
||
#define cmpxchg(ptr, o, n) \ | ||
({ \ | ||
__typeof__(*(ptr)) _o_ = (o); \ | ||
__typeof__(*(ptr)) _n_ = (n); \ | ||
(__typeof__(*(ptr))) __cmpxchg((ptr), (unsigned long)_o_, \ | ||
(unsigned long)_n_, sizeof(*(ptr)));\ | ||
}) | ||
|
||
#define cmpxchg64(ptr, o, n) \ | ||
({ \ | ||
BUILD_BUG_ON(sizeof(*(ptr)) != 8); \ | ||
cmpxchg((ptr), (o), (n)); \ | ||
}) | ||
|
||
#undef __ASM__MB | ||
#undef ____cmpxchg | ||
|
||
#define __HAVE_ARCH_CMPXCHG 1 | ||
|
||
#endif /* _ALPHA_CMPXCHG_H */ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,147 @@ | ||
#include <asm/intrinsics.h> | ||
#ifndef _ASM_IA64_CMPXCHG_H | ||
#define _ASM_IA64_CMPXCHG_H | ||
|
||
/* | ||
* Compare/Exchange, forked from asm/intrinsics.h | ||
* which was: | ||
* | ||
* Copyright (C) 2002-2003 Hewlett-Packard Co | ||
* David Mosberger-Tang <davidm@hpl.hp.com> | ||
*/ | ||
|
||
#ifndef __ASSEMBLY__ | ||
|
||
#include <linux/types.h> | ||
/* include compiler specific intrinsics */ | ||
#include <asm/ia64regs.h> | ||
#ifdef __INTEL_COMPILER | ||
# include <asm/intel_intrin.h> | ||
#else | ||
# include <asm/gcc_intrin.h> | ||
#endif | ||
|
||
/* | ||
* This function doesn't exist, so you'll get a linker error if | ||
* something tries to do an invalid xchg(). | ||
*/ | ||
extern void ia64_xchg_called_with_bad_pointer(void); | ||
|
||
#define __xchg(x, ptr, size) \ | ||
({ \ | ||
unsigned long __xchg_result; \ | ||
\ | ||
switch (size) { \ | ||
case 1: \ | ||
__xchg_result = ia64_xchg1((__u8 *)ptr, x); \ | ||
break; \ | ||
\ | ||
case 2: \ | ||
__xchg_result = ia64_xchg2((__u16 *)ptr, x); \ | ||
break; \ | ||
\ | ||
case 4: \ | ||
__xchg_result = ia64_xchg4((__u32 *)ptr, x); \ | ||
break; \ | ||
\ | ||
case 8: \ | ||
__xchg_result = ia64_xchg8((__u64 *)ptr, x); \ | ||
break; \ | ||
default: \ | ||
ia64_xchg_called_with_bad_pointer(); \ | ||
} \ | ||
__xchg_result; \ | ||
}) | ||
|
||
#define xchg(ptr, x) \ | ||
((__typeof__(*(ptr))) __xchg((unsigned long) (x), (ptr), sizeof(*(ptr)))) | ||
|
||
/* | ||
* Atomic compare and exchange. Compare OLD with MEM, if identical, | ||
* store NEW in MEM. Return the initial value in MEM. Success is | ||
* indicated by comparing RETURN with OLD. | ||
*/ | ||
|
||
#define __HAVE_ARCH_CMPXCHG 1 | ||
|
||
/* | ||
* This function doesn't exist, so you'll get a linker error | ||
* if something tries to do an invalid cmpxchg(). | ||
*/ | ||
extern long ia64_cmpxchg_called_with_bad_pointer(void); | ||
|
||
#define ia64_cmpxchg(sem, ptr, old, new, size) \ | ||
({ \ | ||
__u64 _o_, _r_; \ | ||
\ | ||
switch (size) { \ | ||
case 1: \ | ||
_o_ = (__u8) (long) (old); \ | ||
break; \ | ||
case 2: \ | ||
_o_ = (__u16) (long) (old); \ | ||
break; \ | ||
case 4: \ | ||
_o_ = (__u32) (long) (old); \ | ||
break; \ | ||
case 8: \ | ||
_o_ = (__u64) (long) (old); \ | ||
break; \ | ||
default: \ | ||
break; \ | ||
} \ | ||
switch (size) { \ | ||
case 1: \ | ||
_r_ = ia64_cmpxchg1_##sem((__u8 *) ptr, new, _o_); \ | ||
break; \ | ||
\ | ||
case 2: \ | ||
_r_ = ia64_cmpxchg2_##sem((__u16 *) ptr, new, _o_); \ | ||
break; \ | ||
\ | ||
case 4: \ | ||
_r_ = ia64_cmpxchg4_##sem((__u32 *) ptr, new, _o_); \ | ||
break; \ | ||
\ | ||
case 8: \ | ||
_r_ = ia64_cmpxchg8_##sem((__u64 *) ptr, new, _o_); \ | ||
break; \ | ||
\ | ||
default: \ | ||
_r_ = ia64_cmpxchg_called_with_bad_pointer(); \ | ||
break; \ | ||
} \ | ||
(__typeof__(old)) _r_; \ | ||
}) | ||
|
||
#define cmpxchg_acq(ptr, o, n) \ | ||
ia64_cmpxchg(acq, (ptr), (o), (n), sizeof(*(ptr))) | ||
#define cmpxchg_rel(ptr, o, n) \ | ||
ia64_cmpxchg(rel, (ptr), (o), (n), sizeof(*(ptr))) | ||
|
||
/* for compatibility with other platforms: */ | ||
#define cmpxchg(ptr, o, n) cmpxchg_acq((ptr), (o), (n)) | ||
#define cmpxchg64(ptr, o, n) cmpxchg_acq((ptr), (o), (n)) | ||
|
||
#define cmpxchg_local cmpxchg | ||
#define cmpxchg64_local cmpxchg64 | ||
|
||
#ifdef CONFIG_IA64_DEBUG_CMPXCHG | ||
# define CMPXCHG_BUGCHECK_DECL int _cmpxchg_bugcheck_count = 128; | ||
# define CMPXCHG_BUGCHECK(v) \ | ||
do { \ | ||
if (_cmpxchg_bugcheck_count-- <= 0) { \ | ||
void *ip; \ | ||
extern int printk(const char *fmt, ...); \ | ||
ip = (void *) ia64_getreg(_IA64_REG_IP); \ | ||
printk("CMPXCHG_BUGCHECK: stuck at %p on word %p\n", ip, (v));\ | ||
break; \ | ||
} \ | ||
} while (0) | ||
#else /* !CONFIG_IA64_DEBUG_CMPXCHG */ | ||
# define CMPXCHG_BUGCHECK_DECL | ||
# define CMPXCHG_BUGCHECK(v) | ||
#endif /* !CONFIG_IA64_DEBUG_CMPXCHG */ | ||
|
||
#endif /* !__ASSEMBLY__ */ | ||
|
||
#endif /* _ASM_IA64_CMPXCHG_H */ |
Oops, something went wrong.