diff options
Diffstat (limited to 'Documentation/feature-removal-schedule.txt')
-rw-r--r-- | Documentation/feature-removal-schedule.txt | 19 |
1 files changed, 12 insertions, 7 deletions
diff --git a/Documentation/feature-removal-schedule.txt b/Documentation/feature-removal-schedule.txt index 495858b236b6..59d0c74c79c9 100644 --- a/Documentation/feature-removal-schedule.txt +++ b/Documentation/feature-removal-schedule.txt | |||
@@ -127,13 +127,6 @@ Who: Christoph Hellwig <hch@lst.de> | |||
127 | 127 | ||
128 | --------------------------- | 128 | --------------------------- |
129 | 129 | ||
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 | 130 | What: CONFIG_FORCED_INLINING |
138 | When: June 2006 | 131 | When: June 2006 |
139 | Why: Config option is there to see if gcc is good enough. (in january | 132 | Why: Config option is there to see if gcc is good enough. (in january |
@@ -241,3 +234,15 @@ Why: The USB subsystem has changed a lot over time, and it has been | |||
241 | Who: Greg Kroah-Hartman <gregkh@suse.de> | 234 | Who: Greg Kroah-Hartman <gregkh@suse.de> |
242 | 235 | ||
243 | --------------------------- | 236 | --------------------------- |
237 | |||
238 | What: find_trylock_page | ||
239 | When: January 2007 | ||
240 | Why: The interface no longer has any callers left in the kernel. It | ||
241 | is an odd interface (compared with other find_*_page functions), in | ||
242 | that it does not take a refcount to the page, only the page lock. | ||
243 | It should be replaced with find_get_page or find_lock_page if possible. | ||
244 | This feature removal can be reevaluated if users of the interface | ||
245 | cannot cleanly use something else. | ||
246 | Who: Nick Piggin <npiggin@suse.de> | ||
247 | |||
248 | --------------------------- | ||