public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
* [1/1] Export __lock_page_killable()
@ 2008-05-14 14:11 Evgeniy Polyakov
  2008-05-14 14:13 ` Alan Cox
  0 siblings, 1 reply; 4+ messages in thread
From: Evgeniy Polyakov @ 2008-05-14 14:11 UTC (permalink / raw)
  To: Andrew Morton; +Cc: linux-kernel

Hi.

There are users, who would like to use lock_page_killable() in modules,
so far there are no users in kernel, but for consistency it can be
exported without them.

Not that it is particulary needed, but copying page_waitqueue() in
modules is frowned upon and unlikely to be exported either.

As a side note, do we want interruptible and time limited locking for
those who knows what is being done?

Signed-off-by: Evgeniy Polyakov <johnpol@2ka.mipt.ru>

diff --git a/mm/filemap.c b/mm/filemap.c
index 07e9d92..0a4fea5 100644
--- a/mm/filemap.c
+++ b/mm/filemap.c
@@ -610,6 +610,7 @@ int __lock_page_killable(struct page *page)
 	return __wait_on_bit_lock(page_waitqueue(page), &wait,
 					sync_page_killable, TASK_KILLABLE);
 }
+EXPORT_SYMBOL(__lock_page_killable);
 
 /**
  * __lock_page_nosync - get a lock on the page, without calling sync_page()


-- 
	Evgeniy Polyakov

^ permalink raw reply related	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2008-05-14 18:06 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2008-05-14 14:11 [1/1] Export __lock_page_killable() Evgeniy Polyakov
2008-05-14 14:13 ` Alan Cox
2008-05-14 14:32   ` Evgeniy Polyakov
2008-05-14 18:04     ` Andrew Morton

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox