Top |
int | blkid_probe_enable_superblocks () |
int | blkid_known_fstype () |
int | blkid_superblocks_get_name () |
int | blkid_probe_filter_superblocks_type () |
int | blkid_probe_filter_superblocks_usage () |
int | blkid_probe_invert_superblocks_filter () |
int | blkid_probe_reset_superblocks_filter () |
int | blkid_probe_set_superblocks_flags () |
int | blkid_probe_reset_filter () |
int | blkid_probe_filter_types () |
int | blkid_probe_filter_usage () |
int | blkid_probe_invert_filter () |
int | blkid_probe_set_request () |
The library API has been originally designed for superblocks probing only. This is reason why some *deprecated* superblock specific functions don't use '_superblocks_' namespace in the function name. Please, don't use these functions in new code.
The 'superblocks' probers support NAME=value (tags) interface only. The
superblocks probing is enabled by default (and controlled by
blkid_probe_enable_superblocks()
).
Currently supported tags:
TYPE
: filesystem type
SEC_TYPE
: secondary filesystem type
LABEL
: filesystem label
LABEL_RAW
: raw label from FS superblock
UUID
: filesystem UUID (lower case)
UUID_SUB
: subvolume uuid (e.g. btrfs)
LOGUUID
: external log UUID (e.g. xfs)
UUID_RAW
: raw UUID from FS superblock
EXT_JOURNAL
: external journal UUID
USAGE
: usage string: "raid", "filesystem", ...
VERSION
: filesystem version
MOUNT
: cluster mount name (?) -- ocfs only
SBMAGIC
: super block magic string
SBMAGIC_OFFSET
: offset of SBMAGIC
FSSIZE
: size of filesystem (implemented for XFS/BTRFS/Ext only)
FSLASTBLOCK
: last fsblock/total number of fsblocks
FSBLOCKSIZE
: file system block size
SYSTEM_ID
: ISO9660 system identifier
PUBLISHER_ID
: ISO9660 publisher identifier
APPLICATION_ID
: ISO9660 application identifier
BOOT_SYSTEM_ID
: ISO9660 boot system identifier
BLOCK_SIZE
: minimal block size accessible by file system
int blkid_probe_enable_superblocks (blkid_probe pr
,int enable
);
Enables/disables the superblocks probing for non-binary interface.
int blkid_superblocks_get_name (size_t idx
,const char **name
,int *usage
);
int blkid_probe_filter_superblocks_type (blkid_probe pr
,int flag
,char *names[]
);
BLKID_FLTR_NOTIN
- probe for all items which are NOT IN names
;
BLKID_FLTR_ONLYIN
- probe for items which are IN names
int blkid_probe_filter_superblocks_usage (blkid_probe pr
,int flag
,int usage
);
BLKID_FLTR_NOTIN
- probe for all items which are NOT IN usage
;
BLKID_FLTR_ONLYIN
- probe for items which are IN usage
int
blkid_probe_invert_superblocks_filter (blkid_probe pr
);
Inverts superblocks probing filter
int
blkid_probe_reset_superblocks_filter (blkid_probe pr
);
Resets superblocks probing filter
int blkid_probe_set_superblocks_flags (blkid_probe pr
,int flags
);
Sets probing flags to the superblocks prober. This function is optional, the default are BLKID_SUBLKS_DEFAULTS flags.
int
blkid_probe_reset_filter (blkid_probe pr
);
blkid_probe_reset_filter
is deprecated and should not be used in newly-written code.
int blkid_probe_filter_types (blkid_probe pr
,int flag
,char *names[]
);
blkid_probe_filter_types
is deprecated and should not be used in newly-written code.
int blkid_probe_filter_usage (blkid_probe pr
,int flag
,int usage
);
blkid_probe_filter_usage
is deprecated and should not be used in newly-written code.
int
blkid_probe_invert_filter (blkid_probe pr
);
blkid_probe_invert_filter
is deprecated and should not be used in newly-written code.
int blkid_probe_set_request (blkid_probe pr
,int flags
);
blkid_probe_set_request
is deprecated and should not be used in newly-written code.