summaryrefslogtreecommitdiffstats
path: root/fs/xfs/kmem.c
diff options
context:
space:
mode:
Diffstat (limited to 'fs/xfs/kmem.c')
-rw-r--r--fs/xfs/kmem.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/fs/xfs/kmem.c b/fs/xfs/kmem.c
index 535c13677e7a..686ba6fb20dd 100644
--- a/fs/xfs/kmem.c
+++ b/fs/xfs/kmem.c
@@ -55,9 +55,9 @@ kmem_alloc(size_t size, xfs_km_flags_t flags)
55 return ptr; 55 return ptr;
56 if (!(++retries % 100)) 56 if (!(++retries % 100))
57 xfs_err(NULL, 57 xfs_err(NULL,
58 "%s(%u) possible memory allocation deadlock in %s (mode:0x%x)", 58 "%s(%u) possible memory allocation deadlock size %u in %s (mode:0x%x)",
59 current->comm, current->pid, 59 current->comm, current->pid,
60 __func__, lflags); 60 (unsigned int)size, __func__, lflags);
61 congestion_wait(BLK_RW_ASYNC, HZ/50); 61 congestion_wait(BLK_RW_ASYNC, HZ/50);
62 } while (1); 62 } while (1);
63} 63}