diff options
author | Nick Piggin <npiggin@suse.de> | 2006-03-31 05:29:56 -0500 |
---|---|---|
committer | Linus Torvalds <torvalds@g5.osdl.org> | 2006-03-31 15:18:49 -0500 |
commit | 93fac7041f082297b93655a0e49f659cd7520e40 (patch) | |
tree | 2d8f295087377d4ac0ceea49dd67bb682b04c749 /Documentation/feature-removal-schedule.txt | |
parent | 9bf9e89c3d147ca8cf9622d2d053684fba77a464 (diff) |
[PATCH] mm: schedule find_trylock_page() removal
find_trylock_page() is an odd interface in that it doesn't take a reference
like the others. Now that XFS no longer uses it, and its last remaining
caller actually wants an elevated refcount, opencode that callsite and
schedule find_trylock_page() for removal.
Signed-off-by: Nick Piggin <npiggin@suse.de>
Acked-by: Hugh Dickins <hugh@veritas.com>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Diffstat (limited to 'Documentation/feature-removal-schedule.txt')
-rw-r--r-- | Documentation/feature-removal-schedule.txt | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/Documentation/feature-removal-schedule.txt b/Documentation/feature-removal-schedule.txt index 495858b236b6..a92b10bb0b03 100644 --- a/Documentation/feature-removal-schedule.txt +++ b/Documentation/feature-removal-schedule.txt | |||
@@ -241,3 +241,15 @@ Why: The USB subsystem has changed a lot over time, and it has been | |||
241 | Who: Greg Kroah-Hartman <gregkh@suse.de> | 241 | Who: Greg Kroah-Hartman <gregkh@suse.de> |
242 | 242 | ||
243 | --------------------------- | 243 | --------------------------- |
244 | |||
245 | What: find_trylock_page | ||
246 | When: January 2007 | ||
247 | Why: The interface no longer has any callers left in the kernel. It | ||
248 | is an odd interface (compared with other find_*_page functions), in | ||
249 | that it does not take a refcount to the page, only the page lock. | ||
250 | It should be replaced with find_get_page or find_lock_page if possible. | ||
251 | This feature removal can be reevaluated if users of the interface | ||
252 | cannot cleanly use something else. | ||
253 | Who: Nick Piggin <npiggin@suse.de> | ||
254 | |||
255 | --------------------------- | ||