How to use mount jfs filesystem with acl?

I installed openSUSE 11.1 and i’m trying use the acl in a different file system.

linux-gga5:~ # fdisk -l

Disk /dev/sda: 123.5 GB, 123522416640 bytes
255 heads, 63 sectors/track, 15017 cylinders
Units = cylinders of 16065 * 512 = 8225280 bytes
Disk identifier: 0x00091650

Device Boot Start End Blocks Id System
/dev/sda1 1 2611 20972826 7 HPFS/NTFS
/dev/sda2 2612 5161 20480000 83 Linux
/dev/sda3 * 5162 15017 79168320 f W95 Ext’d (LBA)
/dev/sda5 5162 5423 2104483+ 82 Linux swap / Solaris
/dev/sda6 5424 8034 20972826 83 Linux
/dev/sda7 8035 8166 1060258+ 83 Linux
/dev/sda8 8167 8428 2104483+ 83 Linux
/dev/sda9 8429 8821 3156741 83 Linux

/dev/sda7 Partition size:1G
/dev/sda8 Partition size:2G
/dev/sda9 Partition size:3G

linux-gga5:~ # rpm -ivh xfsprogs-2.10.1-1.31.x86_64.rpm
linux-gga5:~ # rpm -ivh jfsutils-1.1.12-1.48.x86_64.rpm

linux-gga5:~ # mkfs.ext3 /dev/sda7
linux-gga5:~ # mkfs.xfs -f /dev/sda8
linux-gga5:~ # mkfs.jfs -q /dev/sda9

linux-gga5:~ # mount -o acl /dev/sda7 /nas/ext3
linux-gga5:~ # umount /nas/ext3
linux-gga5:~ # mount /dev/sda7 /nas/ext3
linux-gga5:~ # mount -o remount,acl /nas/ext3

linux-gga5:~ # mount -o acl /dev/sda8 /nas/xfs #1.failed, why?
mount: wrong fs type, bad option, bad superblock on /dev/sda8,
missing codepage or helper program, or other error
In some cases useful info is found in syslog - try
dmesg | tail or so
linux-gga5:~ # tail -n 1 /var/log/messages
Oct 27 17:01:08 linux-gga5 kernel: XFS: unknown mount option [acl].

linux-gga5:~ # mount -o acl /dev/sda9 /nas/jfs #2.failed, why?
mount: wrong fs type, bad option, bad superblock on /dev/sda8,
missing codepage or helper program, or other error
In some cases useful info is found in syslog - try
dmesg | tail or so

linux-gga5:~ # mount /dev/sda8 /nas/xfs
linux-gga5:~ # mount -o remount,acl /nas/xfs

linux-gga5:~ # mount /dev/sda9 /nas/jfs
linux-gga5:~ # mount -o remount,acl /nas/jfs #3.failed, why?
mount: /nas/jfs not mounted already, or bad option

linux-gga5:~ # tail -n 1 /var/log/messages
Oct 27 16:56:42 linux-gga5 kernel: jfs: Unrecognized mount option “acl” or missing value

thank you very much

the acl option is only available for ext2/3 and reiserfs file systems. xfs and jfs use it directly without the need to specify anything for it