Before formating the hdd , did the "allocation size unit" is important ? so many selection offered...
The theory is.. when we store a file, is going to use an space on hdd that is going to be "rounded up" to a multiplyer of the cluster size, lets say...
If you store a file of 37KB and your cluster size is 64KB, then that file is going to use 64KB (one cluster)
If you store a file of 65KB and your cluster size is 64KB, then that file is going to use 128KB (two clusters)
As you can see there is always an small amount of space wasted, but this is something that matters only when you are going to store lot of tiny files
Lets say... if you want to store thousands of files of 65KB then using a cluster size of 64KB could be a bit unnefficient (it would be like reducing the capacity of the whole hdd to half)
But in this case it doesnt matters because the files you are going to store are huge (ISO's of several GB), for every ISO file you are going to waste 1 cluster, and it doesnt matters the size of that cluster because are going to be just a few KB (if we compare the size of the cluster with the size of the ISO... the space of the wasted cluster is ridicully small)
So... from the point of view of storing data efficiently, in this case the cluster size doesnt matters at all
------------
In this case the most important thing to consider is that using big clusters is better for the functions that accesess the data, the functions knows that the file starts in (lets say) cluster 2234 and is needed to read 17862 clusters consecutivelly then the function reads all that clusters as a data stream
By using big cluster we are reducing that numbers so the functions doesnt needs to do so many "jumps" to find the next cluster
Also, all that clusters needs to be "indexed" in the filesystem table, by using big clusters we are reducing that index
So... in therory the biggest cluster size is the better in this case because the files we are reading are huge... but i dont know all the answers of what works best for PS3
-------------------
Personally, i bought a 2TB USB hdd some years ago to dedicate it for the PS3 and i decided to format it in MBR/NTFS
If you ask me nowadays what i would choose, in between MBR/FAT or MBR/NTFS or MBR/exFAT.... im not sure what i would choose, i think everyone of them has his "pros" and "contras"
The cluster size i choosed when i formatted it to MBR/NTFS... i dont remember, i formatted it in windows and i just acepted the default cluster size microsoft windows was suggesting to use