From: Fang Wenqi Date: Wed, 30 Dec 2009 10:37:13 +0000 (+0800) Subject: fuse: fix large stack use X-Git-Tag: v2.6.34-rc1~220^2 X-Git-Url: http://git.openpandora.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=b2d82ee3c8b2193ee5bc7eca4687ee9be30abd34;p=pandora-kernel.git fuse: fix large stack use gcc 4.4 warns about: fs/fuse/dev.c: In function ‘fuse_notify_inval_entry’: fs/fuse/dev.c:925: warning: the frame size of 1060 bytes is larger than 1024 bytes The problem is we declare two structures and a large array on the stack, I move the array alway from the stack and allocate memory for it dynamically. Signed-off-by: Fang Wenqi Signed-off-by: Miklos Szeredi --- Reading git-diff-tree failed