mirror of
https://github.com/genodelabs/genode.git
synced 2024-12-20 22:23:16 +00:00
a8dd7dd2fa
This patch replaces the use of the rump_fs server by the VFS server with the Rump VFS plugin. Issue #3512
77 lines
1.7 KiB
Plaintext
77 lines
1.7 KiB
Plaintext
#
|
|
# \brief VFS stress test
|
|
# \author Emery Hemingway
|
|
# \date 2015-08-30
|
|
#
|
|
|
|
#
|
|
# Check used commands
|
|
#
|
|
set mke2fs [installed_command mke2fs]
|
|
set dd [installed_command dd]
|
|
|
|
build "core init timer test/vfs_stress server/ram_block server/vfs lib/vfs/rump"
|
|
|
|
#
|
|
# Build EXT2-file-system image
|
|
#
|
|
catch { exec $dd if=/dev/zero of=bin/ext2.raw bs=1M count=16 }
|
|
catch { exec $mke2fs -F bin/ext2.raw }
|
|
|
|
create_boot_directory
|
|
|
|
install_config {
|
|
<config>
|
|
<affinity-space width="3" height="2" />
|
|
<parent-provides>
|
|
<service name="ROM"/>
|
|
<service name="PD"/>
|
|
<service name="RM"/>
|
|
<service name="CPU"/>
|
|
<service name="LOG"/>
|
|
<service name="SIGNAL"/>
|
|
</parent-provides>
|
|
<default-route>
|
|
<any-service> <parent/> <any-child/> </any-service>
|
|
</default-route>
|
|
<default caps="100"/>
|
|
<start name="timer">
|
|
<resource name="RAM" quantum="1M"/>
|
|
<provides><service name="Timer"/></provides>
|
|
</start>
|
|
<start name="vfs_stress">
|
|
<resource name="RAM" quantum="32M"/>
|
|
<config depth="32" threads="1">
|
|
<vfs> <fs/> </vfs>
|
|
</config>
|
|
</start>
|
|
<start name="ram_block">
|
|
<resource name="RAM" quantum="24M"/>
|
|
<provides><service name="Block"/></provides>
|
|
<config file="ext2.raw" block_size="512"/>
|
|
</start>
|
|
<start name="vfs" caps="200">
|
|
<resource name="RAM" quantum="24M"/>
|
|
<provides> <service name="File_system"/> </provides>
|
|
<config>
|
|
<vfs> <rump fs="ext2fs" ram="20M"/> </vfs>
|
|
<default-policy root="/" writeable="yes"/>
|
|
</config>
|
|
</start>
|
|
</config>
|
|
}
|
|
|
|
set boot_modules {
|
|
core init ld.lib.so timer vfs_stress
|
|
rump.lib.so rump_fs.lib.so vfs vfs_rump.lib.so
|
|
ram_block ext2.raw vfs.lib.so
|
|
}
|
|
|
|
build_boot_image $boot_modules
|
|
|
|
append qemu_args "-nographic -smp cpus=6"
|
|
|
|
run_genode_until {child "vfs_stress" exited with exit value 0} 180
|
|
|
|
exec rm -f bin/ext2.raw
|