]> git.ipfire.org Git - thirdparty/util-linux.git/commitdiff
libmount: (docs) add reference to v2.33 and v2.34
authorKarel Zak <kzak@redhat.com>
Fri, 7 Jun 2019 10:37:28 +0000 (12:37 +0200)
committerKarel Zak <kzak@redhat.com>
Fri, 7 Jun 2019 10:37:28 +0000 (12:37 +0200)
Signed-off-by: Karel Zak <kzak@redhat.com>
libmount/docs/libmount-docs.xml
libmount/src/context_mount.c
libmount/src/fs.c
libmount/src/tab.c
libmount/src/utils.c

index 66a9c25b2ad2b8d8c66d4e97db9b15931d906b83..78364dac1e56a1d46b399bcf8610a5455958ce11 100644 (file)
@@ -71,9 +71,16 @@ available from https://www.kernel.org/pub/linux/utils/util-linux/.
     <title>Index of new symbols in 2.29</title>
     <xi:include href="xml/api-index-2.29.xml"><xi:fallback /></xi:include>
   </index>
-
   <index role="2.30">
     <title>Index of new symbols in 2.30</title>
     <xi:include href="xml/api-index-2.30.xml"><xi:fallback /></xi:include>
   </index>
+  <index role="2.33">
+    <title>Index of new symbols in 2.33</title>
+    <xi:include href="xml/api-index-2.33.xml"><xi:fallback /></xi:include>
+  </index>
+  <index role="2.34">
+    <title>Index of new symbols in 2.34</title>
+    <xi:include href="xml/api-index-2.34.xml"><xi:fallback /></xi:include>
+  </index>
 </book>
index 58224088af1f6b3c41e2450c4cbfcdb9c93a17eb..8d6ff7e4e755a613dd02007fd5fdcd246b19786f 100644 (file)
@@ -1415,6 +1415,8 @@ int mnt_context_next_mount(struct libmnt_context *cxt,
  * Returns: 0 on success,
  *         <0 in case of error (!= mount(2) errors)
  *          1 at the end of the list.
+ *
+ * Since: 2.34
  */
 int mnt_context_next_remount(struct libmnt_context *cxt,
                           struct libmnt_iter *itr,
index 147398955fa09522f20dc45ac4bbc02cabcd3404..eb89bb8a39bea820eabea275f196b74792ded6b3 100644 (file)
@@ -452,6 +452,8 @@ int mnt_fs_streq_srcpath(struct libmnt_fs *fs, const char *path)
  * @tb: table that contains @fs
  *
  * Returns: 0 or negative number on error (if @fs or @tb is NULL).
+ *
+ * Since: 2.34
  */
 int mnt_fs_get_table(struct libmnt_fs *fs, struct libmnt_table **tb)
 {
index 6d2fdc0d5ad923ce6bdfa65908ce39c72a10e590..ff1997e837a3faecfe5454fa6cd3a06430dba159 100644 (file)
@@ -403,6 +403,8 @@ struct libmnt_cache *mnt_table_get_cache(struct libmnt_table *tb)
  * Checks if @fs is part of table @tb.
  *
  * Returns: index of @fs in table, 0 if not found or negative number in case of error.
+ *
+ * Since: 2.34
  */
 int mnt_table_find_fs(struct libmnt_table *tb, struct libmnt_fs *fs)
 {
@@ -491,6 +493,8 @@ static int __table_insert_fs(
  * referenced by the table only.
  *
  * Returns: 0 on success or negative number in case of error.
+ *
+ * Since: 2.34
  */
 int mnt_table_insert_fs(struct libmnt_table *tb, int before,
                        struct libmnt_fs *pos, struct libmnt_fs *fs)
@@ -523,6 +527,8 @@ int mnt_table_insert_fs(struct libmnt_table *tb, int before,
  * The reference counter of @fs is not modified.
  *
  * Returns: 0 on success or negative number in case of error.
+ *
+ * Since: 2.34
  */
 int mnt_table_move_fs(struct libmnt_table *src, struct libmnt_table *dst,
                       int before, struct libmnt_fs *pos, struct libmnt_fs *fs)
index df8846b4bce5482ed66edd158692792b90fcbd73..09403de880cedd53b7ddf5775525968c02a94b6c 100644 (file)
@@ -1060,6 +1060,8 @@ char *mnt_get_kernel_cmdline_option(const char *name)
  * The function uses /sys to convert devno to device name.
  *
  * Returns: 0 = success, 1 = not found, <0 = error
+ *
+ * Since: 2.34
  */
 int mnt_guess_system_root(dev_t devno, struct libmnt_cache *cache, char **path)
 {