オプションがマウントの出力に反映されないのはなぜですか?

オプションがマウントの出力に反映されないのはなぜですか?
# mount -t ntfs-3g -o no_def_opts,windows_names,noatime,uid=1000,gid=1000 /dev/disk/by-id/ata-Maxtor_6V250F0_V593GLTG-part1 /mnt/ata-Maxtor_6V250F0_V593GLTG/

# mount
/dev/sda1 on /mnt/ata-Maxtor_6V250F0_V593GLTG type fuseblk (rw,nosuid,nodev,noatime,user_id=0,group_id=0,default_permissions,blksize=4096)

次の出力を見ると、所有者とグループは (ID に応じて) 正しく設定されています。

ls -la /mnt/ata-Maxtor_6V250F0_V593GLTG

uid=1000,gid=1000(最初のコマンド)がない場合、

default_permissions

出力(2 番目のコマンド)に表示されます。

mount.fuse のマニュアルページによると:

default_permissions
          By  default  FUSE  doesn't  check file access permissions, the filesystem is free to implement it's access policy or leave it to the underlying file access
          mechanism (e.g. in case of network filesystems). This option enables permission checking, restricting access based on file mode.  This is option is usually
          useful together with the allow_other mount option.

UIDとGIDが0のままなので少し混乱します(2番目のコマンド出力)ですが、別のオプションが設定されています。

また、ntfs-3g は FUSE ファイルシステムですが、他のファイルシステムとは異なることにも気付きました。

権限のないユーザーは、外部 FUSE ライブラリを使用して NTFS ブロック デバイスをマウントできません。ボリュームをルートとしてマウントするか、統合された FUSE サポートを使用して NTFS-3G を再構築し、setuid ルートにしてください。詳細については、 http://tuxera.com/community/ntfs-3g-faq/#非特権

上記の「問題」の原因を知っている人はいますか?

いずれにしても、正常に動作しています。ただ興味があるだけです。

関連情報