#!/bin/bash

truncate -s 1G testfile
parted -s -- testfile mklabel gpt mkpart primary 2048s 100%
loop_device=`losetup --show -fP testfile`
partx -d $loop_device
cat /sys/block/dm-2/trace/act_mask 

