diff options
Diffstat (limited to 'Documentation/feature-removal-schedule.txt')
-rw-r--r-- | Documentation/feature-removal-schedule.txt | 27 |
1 files changed, 12 insertions, 15 deletions
diff --git a/Documentation/feature-removal-schedule.txt b/Documentation/feature-removal-schedule.txt index 495858b236b6..293fed113dff 100644 --- a/Documentation/feature-removal-schedule.txt +++ b/Documentation/feature-removal-schedule.txt | |||
@@ -71,14 +71,6 @@ Who: Mauro Carvalho Chehab <mchehab@brturbo.com.br> | |||
71 | 71 | ||
72 | --------------------------- | 72 | --------------------------- |
73 | 73 | ||
74 | What: remove EXPORT_SYMBOL(panic_timeout) | ||
75 | When: April 2006 | ||
76 | Files: kernel/panic.c | ||
77 | Why: No modular usage in the kernel. | ||
78 | Who: Adrian Bunk <bunk@stusta.de> | ||
79 | |||
80 | --------------------------- | ||
81 | |||
82 | What: remove EXPORT_SYMBOL(insert_resource) | 74 | What: remove EXPORT_SYMBOL(insert_resource) |
83 | When: April 2006 | 75 | When: April 2006 |
84 | Files: kernel/resource.c | 76 | Files: kernel/resource.c |
@@ -127,13 +119,6 @@ Who: Christoph Hellwig <hch@lst.de> | |||
127 | 119 | ||
128 | --------------------------- | 120 | --------------------------- |
129 | 121 | ||
130 | What: EXPORT_SYMBOL(lookup_hash) | ||
131 | When: January 2006 | ||
132 | Why: Too low-level interface. Use lookup_one_len or lookup_create instead. | ||
133 | Who: Christoph Hellwig <hch@lst.de> | ||
134 | |||
135 | --------------------------- | ||
136 | |||
137 | What: CONFIG_FORCED_INLINING | 122 | What: CONFIG_FORCED_INLINING |
138 | When: June 2006 | 123 | When: June 2006 |
139 | Why: Config option is there to see if gcc is good enough. (in january | 124 | Why: Config option is there to see if gcc is good enough. (in january |
@@ -241,3 +226,15 @@ Why: The USB subsystem has changed a lot over time, and it has been | |||
241 | Who: Greg Kroah-Hartman <gregkh@suse.de> | 226 | Who: Greg Kroah-Hartman <gregkh@suse.de> |
242 | 227 | ||
243 | --------------------------- | 228 | --------------------------- |
229 | |||
230 | What: find_trylock_page | ||
231 | When: January 2007 | ||
232 | Why: The interface no longer has any callers left in the kernel. It | ||
233 | is an odd interface (compared with other find_*_page functions), in | ||
234 | that it does not take a refcount to the page, only the page lock. | ||
235 | It should be replaced with find_get_page or find_lock_page if possible. | ||
236 | This feature removal can be reevaluated if users of the interface | ||
237 | cannot cleanly use something else. | ||
238 | Who: Nick Piggin <npiggin@suse.de> | ||
239 | |||
240 | --------------------------- | ||