On Tue 07-07-15 13:06:05, Steven J. Magnani wrote:It identifies itself as:
For a UDF filesystem configured with an Unallocated Space Table,So the patch looks good to me. But what kind of mkudffs are you using?
a filesystem operation that triggers an update to the table results
in on-disk corruption that prevents remounting:
udf_read_tagged: tag version 0x0000 != 0x0002 || 0x0003, block 274
For example:
1. Create a filesystem
$ mkudffs --media-type=hd --blocksize=512 --lvid=BUGTEST \
--vid=BUGTEST --fsid=BUGTEST --space=unalloctable \
/dev/mmcblk0
2. Mount it
# mount /dev/mmcblk0 /mnt
...
Because when I use the command you wrote into the changelog, I cannot mount
the filesystem. The kernel complains about:
UDF-fs: error (device ubdb): udf_read_inode: (ino 274) failed ident=256
mount: /dev/ubdb: can't read superblock
Now ident 256 is TAG_IDENT_FSD (file set descriptor). So apparently my
mkudffs doesn't create proper partition table with your parameters...