linux-yocto-4.6/Documentation/filesystems/fiemap.txt, branch master Linux 4.6 Embedded Kernel http://git.yoctoproject.org/linux-yocto-4.6/atom?h=master 2015-02-10T22:30:30+00:00 fsioctl.c: make generic_block_fiemap() signal-tolerant 2015-02-10T22:30:30+00:00 Dmitry Monakhov dmonakhov@openvz.org 2015-02-10T22:09:29+00:00 urn:sha1:913e027ca17ee06fa9436a21e54464795b0fa0e8 __generic_block_fiemap may spin very long time for large sparse files. Without this patch an unprivileged user may abuse system resources simply by spawning a vast number of unkilable busyloops (works on ext2/ext3): truncate --size 1T test for ((i=0;i<1024;i++)) do filefrag test > /dev/null & done Signed-off-by: Dmitry Monakhov <dmonakhov@openvz.org> Cc: Theodore Ts'o <tytso@mit.edu> Cc: Al Viro <viro@zeniv.linux.org.uk> Cc: Michael Kerrisk <mtk.manpages@gmail.com> Signed-off-by: Andrew Morton <akpm@linux-foundation.org> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org> ption value='fido-kilo'>fido-kilo Provides the packages and images for Cloud compute, control and storage nodes (OpenStack, oVirt, .. etc).Grokmirror user
aboutsummaryrefslogtreecommitdiffstats
path: root/meta-openstack-aio-deploy/classes/hosts.bbclass
blob: 82c9eb7f1d4caaa189ededc4a002a5b0c11e31dd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#
# all-in-one hosts file
#
# The aio rootfs combines the functionality of the compute and 
# the controller in one node.
#
# The aio rootfs adds another hostname aio, since we need
# ths hostname compute and controller for the system's functionality,
# we defined compute and controller in this file as well. 
#
COMPUTE_IP ?= "${CONTROLLER_IP}"
COMPUTE_HOST ?= "compute"
CONTROLLER_IP ?= "128.224.149.173"
CONTROLLER_HOST ?= "controller"
MY_IP ?= "${CONTROLLER_IP}"
MY_HOST ?= "${CONTROLLER_HOST}"
DB_DATADIR ?= "/etc/postgresql"