]> err.no Git - util-linux/commitdiff
libblkid: cleanup some docs
authorKarel Zak <kzak@redhat.com>
Fri, 23 Apr 2010 11:56:58 +0000 (13:56 +0200)
committerKarel Zak <kzak@redhat.com>
Fri, 23 Apr 2010 11:56:58 +0000 (13:56 +0200)
Signed-off-by: Karel Zak <kzak@redhat.com>
shlibs/blkid/src/partitions/partitions.c
shlibs/blkid/src/probe.c

index 9c151ef627db60d147f5a0b98348c628e9134dd1..c670cc1831d41e6227c8200b44682e8f2f37ff38 100644 (file)
@@ -899,8 +899,9 @@ blkid_parttable blkid_partlist_get_table(blkid_partlist ls)
  *
  * It's possible that the list of partitions is *empty*, but there is a valid
  * partition table on the disk. This happen when on-disk details about
- * partitions are unknown or the partition table is empty. The nice example is
- * AIX. See also blkid_partlist_get_table().
+ * partitions are unknown or the partition table is empty.
+ *
+ * See also blkid_partlist_get_table().
  *
  * Returns: partition object or NULL in case or error.
  */
index 9021a7e8441766196d6d097437b6dfcd9414498c..89c5950430934952717bc4e822e510e7ee3b430f 100644 (file)
@@ -16,7 +16,7 @@
  * the selected (see blkid_probe_set_device()) device.
  *
  * The probing routines are grouped together into separate chains. Currently,
- * the librray provides superblocks, partitions and topology chains.
+ * the library provides superblocks, partitions and topology chains.
  *
  * The probing routines is possible to filter (enable/disable) by type (e.g.
  * fstype "vfat" or partype "gpt") or by usage flags (e.g. BLKID_USAGE_RAID).
  *   2. The binary interfaces. These interfaces return data in the native formats.
  *      The interface is always specific to the probing chain.
  *
+ *  Note that the previous probing result (binary or NAME=value) is always
+ *  zeroized when a chain probing function is called. For example
+ *
+ * <informalexample>
+ *   <programlisting>
+ *     blkid_probe_enable_partitions(pr, TRUE);
+ *     blkid_probe_enable_superblocks(pr, FALSE);
+ *
+ *     blkid_do_safeprobe(pr);
+ *   </programlisting>
+ * </informalexample>
+ *
+ * overwrites the previous probing result for the partitions chain, the superblocks
+ * result is not modified.
  */
 
 /**