diff options
author | Theodore Ts'o <tytso@mit.edu> | 2012-07-17 14:20:51 -0400 |
---|---|---|
committer | Theodore Ts'o <tytso@mit.edu> | 2012-07-19 10:40:42 -0400 |
commit | b4237003cff66084ebeb502412d9cee392e6f52f (patch) | |
tree | d4bdc78812586db6a1d2558eccecfa752489fb89 | |
parent | aab944606f9490f158d3b28f6c44a33c4701a5b3 (diff) |
random: final removal of IRQF_SAMPLE_RANDOM
The IRQF_SAMPLE_RANDOM flag is finally gone from the kernel tree, only
three years late. :-)
Signed-off-by: "Theodore Ts'o" <tytso@mit.edu>
-rw-r--r-- | Documentation/feature-removal-schedule.txt | 14 | ||||
-rw-r--r-- | include/linux/interrupt.h | 2 |
2 files changed, 0 insertions, 16 deletions
diff --git a/Documentation/feature-removal-schedule.txt b/Documentation/feature-removal-schedule.txt index 56000b33340b..27f39cf73578 100644 --- a/Documentation/feature-removal-schedule.txt +++ b/Documentation/feature-removal-schedule.txt | |||
@@ -70,20 +70,6 @@ Who: Luis R. Rodriguez <lrodriguez@atheros.com> | |||
70 | 70 | ||
71 | --------------------------- | 71 | --------------------------- |
72 | 72 | ||
73 | What: IRQF_SAMPLE_RANDOM | ||
74 | Check: IRQF_SAMPLE_RANDOM | ||
75 | When: July 2009 | ||
76 | |||
77 | Why: Many of IRQF_SAMPLE_RANDOM users are technically bogus as entropy | ||
78 | sources in the kernel's current entropy model. To resolve this, every | ||
79 | input point to the kernel's entropy pool needs to better document the | ||
80 | type of entropy source it actually is. This will be replaced with | ||
81 | additional add_*_randomness functions in drivers/char/random.c | ||
82 | |||
83 | Who: Robin Getz <rgetz@blackfin.uclinux.org> & Matt Mackall <mpm@selenic.com> | ||
84 | |||
85 | --------------------------- | ||
86 | |||
87 | What: The ieee80211_regdom module parameter | 73 | What: The ieee80211_regdom module parameter |
88 | When: March 2010 / desktop catchup | 74 | When: March 2010 / desktop catchup |
89 | 75 | ||
diff --git a/include/linux/interrupt.h b/include/linux/interrupt.h index e68a8e53bb59..c5f856a040b9 100644 --- a/include/linux/interrupt.h +++ b/include/linux/interrupt.h | |||
@@ -42,7 +42,6 @@ | |||
42 | * | 42 | * |
43 | * IRQF_DISABLED - keep irqs disabled when calling the action handler. | 43 | * IRQF_DISABLED - keep irqs disabled when calling the action handler. |
44 | * DEPRECATED. This flag is a NOOP and scheduled to be removed | 44 | * DEPRECATED. This flag is a NOOP and scheduled to be removed |
45 | * IRQF_SAMPLE_RANDOM - irq is used to feed the random generator | ||
46 | * IRQF_SHARED - allow sharing the irq among several devices | 45 | * IRQF_SHARED - allow sharing the irq among several devices |
47 | * IRQF_PROBE_SHARED - set by callers when they expect sharing mismatches to occur | 46 | * IRQF_PROBE_SHARED - set by callers when they expect sharing mismatches to occur |
48 | * IRQF_TIMER - Flag to mark this interrupt as timer interrupt | 47 | * IRQF_TIMER - Flag to mark this interrupt as timer interrupt |
@@ -61,7 +60,6 @@ | |||
61 | * resume time. | 60 | * resume time. |
62 | */ | 61 | */ |
63 | #define IRQF_DISABLED 0x00000020 | 62 | #define IRQF_DISABLED 0x00000020 |
64 | #define IRQF_SAMPLE_RANDOM 0x00000040 | ||
65 | #define IRQF_SHARED 0x00000080 | 63 | #define IRQF_SHARED 0x00000080 |
66 | #define IRQF_PROBE_SHARED 0x00000100 | 64 | #define IRQF_PROBE_SHARED 0x00000100 |
67 | #define __IRQF_TIMER 0x00000200 | 65 | #define __IRQF_TIMER 0x00000200 |