Are you out of inodes are are you out of disk space? I am assuming you are out of disk space. There is nothing that can be done except delete, compress files or add space.
The JFS restricts all file systems to 16MB i-nodes.
Maximum file system size in bytes = <npbi> * 2¬24
The JFS supports four fragment sizes of 512 , 1024 , 2048 , and 4096 byte units of contiguous disk space. The JFS maintains fragment addresses in i-nodes and indirect blocks as 28-bit numbers. Each fragment must be addressable by a number from 0 to (2 ¬28 ). The following relationship is produced:
Maximum file system size in bytes = <Fragment size> * 2¬28
Another size-related issue is the size of the JFS log. In most instances, multiple journaled file systems use a common log configured to be 4MB in size. For example, after initial installation, all file systems within the root volume group use logical volume hd8 as a common JFS log. The default logical volume partition size is 4MB, and the default log size is one partition, therefore, the root volume group normally contains a 4MB JFS log. When file systems exceed 2GB or when the total amount of file system space using a single log exceeds 2GB, the default log size may not be sufficient. In either case, the log sizes should be scaled upward as the file system size increases. The JFS log is limited to a maximum size of 256MB.
Below is the chart for AIX:
The maximum size of a JFS file system is a function of its fragment size and the nbpi value. These values yield the following size restrictions:
nbpi Fragment size in bytes Maximum size in 512-byte blocks
512 512, 1024, 2048, 4096 16777216
1024 512, 1024, 2048, 4096 33554432
2048 512, 1024, 2048, 4096 67108864
4096 512, 1024, 2048, 4096 134217728
8192 512, 1024, 2048, 4096 268435456
16384 512 268435456
16384 1024, 2048, 4096 536870912
32768 512 268435456
32768 1024 536870912
32768 2048, 4096 1073741824
65536, 131072 512 268435456
65536, 131072 1024 536870912
65536, 131072 2048 1073741824
65536, 131072 4096 2147483648
In AIX 4.3, you can have NBPI values from 512 to 128K, with corresponding
maximum file system sizes.