Give this a try;
Get the list of partitions:
df -h
For each partition that’s ext4 run this to check if there are reserved blocks:
tune2fs -l /dev/partition | grep 'Reserved'
Finally, use tune2fs to set the reserve blocks to 0:
tune2fs -r 0 /dev/partition
Source: