aboutsummaryrefslogtreecommitdiffstats
path: root/Documentation/feature-removal-schedule.txt
diff options
context:
space:
mode:
Diffstat (limited to 'Documentation/feature-removal-schedule.txt')
-rw-r--r--Documentation/feature-removal-schedule.txt27
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
74What: remove EXPORT_SYMBOL(panic_timeout)
75When: April 2006
76Files: kernel/panic.c
77Why: No modular usage in the kernel.
78Who: Adrian Bunk <bunk@stusta.de>
79
80---------------------------
81
82What: remove EXPORT_SYMBOL(insert_resource) 74What: remove EXPORT_SYMBOL(insert_resource)
83When: April 2006 75When: April 2006
84Files: kernel/resource.c 76Files: kernel/resource.c
@@ -127,13 +119,6 @@ Who: Christoph Hellwig <hch@lst.de>
127 119
128--------------------------- 120---------------------------
129 121
130What: EXPORT_SYMBOL(lookup_hash)
131When: January 2006
132Why: Too low-level interface. Use lookup_one_len or lookup_create instead.
133Who: Christoph Hellwig <hch@lst.de>
134
135---------------------------
136
137What: CONFIG_FORCED_INLINING 122What: CONFIG_FORCED_INLINING
138When: June 2006 123When: June 2006
139Why: Config option is there to see if gcc is good enough. (in january 124Why: 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
241Who: Greg Kroah-Hartman <gregkh@suse.de> 226Who: Greg Kroah-Hartman <gregkh@suse.de>
242 227
243--------------------------- 228---------------------------
229
230What: find_trylock_page
231When: January 2007
232Why: 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.
238Who: Nick Piggin <npiggin@suse.de>
239
240---------------------------