| Submitter | KOSAKI Motohiro |
|---|---|
| Date | Nov. 17, 2009, 7:22 a.m. |
| Message ID | <20091117162111.3DE8.A69D9226@jp.fujitsu.com> |
| Download | mbox | patch |
| Permalink | /patch/53740/ |
| State | New |
| Headers | show |
Comments
Patch
diff --git a/fs/cifs/connect.c b/fs/cifs/connect.c index 63ea83f..f9b1553 100644 --- a/fs/cifs/connect.c +++ b/fs/cifs/connect.c @@ -337,7 +337,6 @@ cifs_demultiplex_thread(struct TCP_Server_Info *server) bool isMultiRsp; int reconnect; - current->flags |= PF_MEMALLOC; cFYI(1, ("Demultiplex PID: %d", task_pid_nr(current))); length = atomic_inc_return(&tcpSesAllocCount);
Non MM subsystem must not use PF_MEMALLOC. Memory reclaim need few memory, anyone must not prevent it. Otherwise the system cause mysterious hang-up and/or OOM Killer invokation. Cc: Steve French <sfrench@samba.org> Cc: linux-cifs-client@lists.samba.org Cc: samba-technical@lists.samba.org Signed-off-by: KOSAKI Motohiro <kosaki.motohiro@jp.fujitsu.com> --- fs/cifs/connect.c | 1 - 1 files changed, 0 insertions(+), 1 deletions(-)