You can find how much is being set as reserved by running:
$ sudo tune2fs -l /dev/sda1 | grep 'Reserved block count' Reserved block count: 27709
So, for ext3/4 partitions, you can reclaim that reserve space by setting the reserve count to 0:
$ sudo tune2fs -m 0 /dev/sda1
Reserved block count will be 0% after the above command
$ sudo tune2fs -l /dev/sda1 | grep -i 'Reserved block count' Reserved block count: 0
You can now fully enjoy the maximum space available for your partition.