https://github.com/torvalds/linux
Revision 524a237e4512038d6e07ad3b2e44e70902b76738 authored by Melissa Howland on 27 December 2006, 23:35:25 UTC, committed by Martin Schwidefsky on 27 December 2006, 23:35:25 UTC
Reduce the max. buffer size for the monwriter device to prevent a
possible problem with the z/VM monitor service.

Signed-off-by: Melissa Howland <melissah@us.ibm.com>
Signed-off-by: Martin Schwidefsky <schwidefsky@de.ibm.com>
1 parent 3bf8ba3
Raw File
Tip revision: 524a237e4512038d6e07ad3b2e44e70902b76738 authored by Melissa Howland on 27 December 2006, 23:35:25 UTC
[S390] Change max. buffer size for monwriter device.
Tip revision: 524a237
Makefile
#
# Makefile for the kernel security code
#

obj-$(CONFIG_KEYS)			+= keys/
subdir-$(CONFIG_SECURITY_SELINUX)	+= selinux

# if we don't select a security model, use the default capabilities
ifneq ($(CONFIG_SECURITY),y)
obj-y		+= commoncap.o
endif

# Object file lists
obj-$(CONFIG_SECURITY)			+= security.o dummy.o inode.o
# Must precede capability.o in order to stack properly.
obj-$(CONFIG_SECURITY_SELINUX)		+= selinux/built-in.o
obj-$(CONFIG_SECURITY_CAPABILITIES)	+= commoncap.o capability.o
obj-$(CONFIG_SECURITY_ROOTPLUG)		+= commoncap.o root_plug.o
back to top