OK. I will have to guess here, but I expect that rather than using chfs -a size+XXX /home to increase filesystem size, the command extendlv has been used instead.
i.e.
extendlv XX hd1The output of lsfs states that the filesystem size is blocks is: 6291456 blocks
A filesystem of 1PP of 64MB has 131072 512 byte blocks, so the following command shows that the filesyetem is only using 48 of the 200 PP.
michael@x054:[/home/michael]dc
6291456 131072 / p
48
What I would recommend is that you use the following commands to use all the space you have allocated:
chlv -x 200 hd1
chfs -a size=13.2G /home
I am not certain that the size is correct. Another way that should be exact is:
michael@x054:[/home/michael]dc
131072 200 * p
26214400
chfs -a size=2621440 /home
Hope this works as expected.