mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git
synced 2025-01-17 02:36:21 +00:00
jffs2: Remove unnecessary OOM messages
Per call site OOM messages are unnecessary. k.alloc and v.alloc failures use dump_stack(). Signed-off-by: Joe Perches <joe@perches.com> Signed-off-by: Artem Bityutskiy <artem.bityutskiy@linux.intel.com> Signed-off-by: David Woodhouse <David.Woodhouse@intel.com>
This commit is contained in:
parent
2c4ae276b1
commit
045ead345b
@ -33,7 +33,6 @@ static int __init alloc_workspace(void)
|
|||||||
lzo_compress_buf = vmalloc(lzo1x_worst_compress(PAGE_SIZE));
|
lzo_compress_buf = vmalloc(lzo1x_worst_compress(PAGE_SIZE));
|
||||||
|
|
||||||
if (!lzo_mem || !lzo_compress_buf) {
|
if (!lzo_mem || !lzo_compress_buf) {
|
||||||
printk(KERN_WARNING "Failed to allocate lzo deflate workspace\n");
|
|
||||||
free_workspace();
|
free_workspace();
|
||||||
return -ENOMEM;
|
return -ENOMEM;
|
||||||
}
|
}
|
||||||
|
@ -42,14 +42,12 @@ static int __init alloc_workspaces(void)
|
|||||||
{
|
{
|
||||||
def_strm.workspace = vmalloc(zlib_deflate_workspacesize(MAX_WBITS,
|
def_strm.workspace = vmalloc(zlib_deflate_workspacesize(MAX_WBITS,
|
||||||
MAX_MEM_LEVEL));
|
MAX_MEM_LEVEL));
|
||||||
if (!def_strm.workspace) {
|
if (!def_strm.workspace)
|
||||||
printk(KERN_WARNING "Failed to allocate %d bytes for deflate workspace\n", zlib_deflate_workspacesize(MAX_WBITS, MAX_MEM_LEVEL));
|
|
||||||
return -ENOMEM;
|
return -ENOMEM;
|
||||||
}
|
|
||||||
D1(printk(KERN_DEBUG "Allocated %d bytes for deflate workspace\n", zlib_deflate_workspacesize(MAX_WBITS, MAX_MEM_LEVEL)));
|
D1(printk(KERN_DEBUG "Allocated %d bytes for deflate workspace\n", zlib_deflate_workspacesize(MAX_WBITS, MAX_MEM_LEVEL)));
|
||||||
inf_strm.workspace = vmalloc(zlib_inflate_workspacesize());
|
inf_strm.workspace = vmalloc(zlib_inflate_workspacesize());
|
||||||
if (!inf_strm.workspace) {
|
if (!inf_strm.workspace) {
|
||||||
printk(KERN_WARNING "Failed to allocate %d bytes for inflate workspace\n", zlib_inflate_workspacesize());
|
|
||||||
vfree(def_strm.workspace);
|
vfree(def_strm.workspace);
|
||||||
return -ENOMEM;
|
return -ENOMEM;
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user