Force enable ssd optimizations for btrfs+premium

This commit is contained in:
Fred Park 2017-03-17 11:55:07 -07:00
Родитель 7464a064b1
Коммит 4c34b23761
1 изменённых файлов: 3 добавлений и 2 удалений

Просмотреть файл

@ -649,9 +649,10 @@ if [ $attach_disks -eq 0 ]; then
mount_options="defaults,$mount_options"
fi
if [ $premium_storage -eq 1 ]; then
# disable barriers due to RO cache
# disable barriers due to cache
if [ $filesystem == "btrfs" ]; then
mount_options+=",nobarrier"
# also enable ssd optimizations on btrfs
mount_options+=",nobarrier,ssd"
else
mount_options+=",barrier=0"
fi