09db6ed78d
Fields were added to struct fuse_args which caused the stack to
increase beyone the expected 1024 bytes for arm32 builds. This
manifested as an error during allmodconfig builds in kernelci:
fs/fuse/dir.c:2142:5: error: stack frame size (1032) exceeds limit (1024) in 'fuse_do_setattr'
Workaround the issue by increasing the expected stack frame size for
dir.o.
Fixes: 8b16bb6b6f0a ("ANDROID: fuse-bpf: fuse-bpf v1.2")
Signed-off-by: Todd Kjos <tkjos@google.com>
Change-Id: I95134ea360e8f9be4bd283db38242f107b4cf7eb
21 lines
514 B
Makefile
21 lines
514 B
Makefile
# SPDX-License-Identifier: GPL-2.0-only
|
|
#
|
|
# Makefile for the FUSE filesystem.
|
|
#
|
|
|
|
# Needed for trace events
|
|
ccflags-y = -I$(src)
|
|
|
|
obj-$(CONFIG_FUSE_FS) += fuse.o
|
|
obj-$(CONFIG_CUSE) += cuse.o
|
|
obj-$(CONFIG_VIRTIO_FS) += virtiofs.o
|
|
|
|
CFLAGS_dir.o += -Wframe-larger-than=2048
|
|
fuse-y := dev.o dir.o file.o inode.o control.o xattr.o acl.o readdir.o ioctl.o
|
|
fuse-y += iomode.o
|
|
fuse-$(CONFIG_FUSE_DAX) += dax.o
|
|
fuse-$(CONFIG_FUSE_PASSTHROUGH) += passthrough.o
|
|
fuse-$(CONFIG_FUSE_BPF) += backing.o
|
|
|
|
virtiofs-y := virtio_fs.o
|