]> err.no Git - util-linux/commitdiff
libmount: rename mnt_optls_iterate_options()
authorKarel Zak <kzak@redhat.com>
Wed, 13 Jan 2010 15:52:14 +0000 (16:52 +0100)
committerKarel Zak <kzak@redhat.com>
Thu, 3 Jun 2010 13:20:11 +0000 (15:20 +0200)
Signed-off-by: Karel Zak <kzak@redhat.com>
shlibs/mount/src/mount.h.in
shlibs/mount/src/optls.c

index 0c3f80bfb7ec5ab8872d0523f8bf609ee2ff6de8..d179620c18ca27fa9e214c2a638404d3f3f25413 100644 (file)
@@ -181,7 +181,7 @@ extern int mnt_optls_remove_option_by_flags(mnt_optls *ls,
                 const struct mnt_optmap *map, const int flags);
 extern int mnt_optls_remove_option_by_iflags(mnt_optls *ls,
                 const struct mnt_optmap *map, const int flags);
-extern int mnt_optls_iterate_options(mnt_iter *itr, mnt_optls *ls,
+extern int mnt_optls_next_option(mnt_optls *ls, mnt_iter *itr,
                 const struct mnt_optmap *map, mnt_optent **option);
 extern mnt_optent *mnt_optls_get_option(mnt_optls *ls, const char *name);
 extern int mnt_optls_get_ids(mnt_optls *ls, const struct mnt_optmap *map);
index 4c1bea6e0b4c4abf98af75a17a023ea47b440204..f819d12bc607b5a1ea45af7f497934a89acf9567 100644 (file)
@@ -94,7 +94,7 @@ int mnt_optls_add_map(mnt_optls *ls, const struct mnt_optmap *map)
 
        mnt_reset_iter(&itr, MNT_ITER_FORWARD);
 
-       while(mnt_optls_iterate_options(&itr, ls, NULL, &op) == 0) {
+       while(mnt_optls_next_option(ls, &itr, NULL, &op) == 0) {
                if (!mnt_optent_is_unknown(op))
                        continue;
                if (mnt_optent_assign_map(op, &map, 1) == -1)
@@ -169,7 +169,7 @@ mnt_optent *mnt_optls_add_option(mnt_optls *ls,
  * possible to call this function more than once. The new options from @optstr
  * will be appended to the container.
 *
- * The options are accessible by mnt_optls_iterate_options().
+ * The options are accessible by mnt_optls_next_option().
  *
  * If the @optls container is associated with any options map(s), all new
  * options are verified according to the descriptions from the map(s).
@@ -339,8 +339,9 @@ int mnt_optls_remove_option_by_iflags(mnt_optls *ls,
 }
 
 /**
- * mnt_optls_iterate_options:
+ * mnt_optls_next_option:
  * @ls: pointer to mnt_optls instance
+ * @itr: iterator
  * @map: pointer to the map of wanted options or NULL for all options
  * @option: returns pointer to the option object
  *
@@ -351,12 +352,12 @@ int mnt_optls_remove_option_by_iflags(mnt_optls *ls,
  *
  *     mnt_optls_parse_optstr(ls, "noexec,nodev");
  *
- *     while(mnt_optls_iterate_options(itr, ls, NULL, &option ))
+ *     while(mnt_optls_next_option(ls, itr, NULL, &option))
  *         printf("%s\n", mnt_optent_get_name(option)));
  *
  * Returns 0 on succes, -1 in case of error or 1 at end of list.
  */
-int mnt_optls_iterate_options(mnt_iter *itr, mnt_optls *ls,
+int mnt_optls_next_option(mnt_optls *ls, mnt_iter *itr,
                const struct mnt_optmap *map, mnt_optent **option)
 {
        assert(itr);
@@ -395,7 +396,7 @@ mnt_optent *mnt_optls_get_option(mnt_optls *ls, const char *name)
                return NULL;
        mnt_reset_iter(&itr, MNT_ITER_FORWARD);
 
-       while(mnt_optls_iterate_options(&itr, ls, NULL, &op) == 0) {
+       while(mnt_optls_next_option(ls, &itr, NULL, &op) == 0) {
                const char *n = mnt_optent_get_name(op);
 
                if (n && !strcmp(n, name))
@@ -428,7 +429,7 @@ int mnt_optls_get_ids(mnt_optls *ls, const struct mnt_optmap *map)
                return 0;
        mnt_reset_iter(&itr, MNT_ITER_FORWARD);
 
-       while(mnt_optls_iterate_options(&itr, ls, map, &op) == 0)
+       while(mnt_optls_next_option(ls, &itr, map, &op) == 0)
                mnt_optent_get_flag(op, &flags);
 
        DBG(DEBUG_OPTIONS, fprintf(stderr,
@@ -456,7 +457,7 @@ int mnt_optls_create_mountflags(mnt_optls *ls)
                return 0;
        mnt_reset_iter(&itr, MNT_ITER_FORWARD);
 
-       while(mnt_optls_iterate_options(&itr, ls, NULL, &op) == 0) {
+       while(mnt_optls_next_option(ls, &itr, NULL, &op) == 0) {
                if (!(op->mask & MNT_MFLAG))
                        continue;
                mnt_optent_get_flag(op, &flags);
@@ -486,7 +487,7 @@ char *mnt_optls_create_mountdata(mnt_optls *ls)
                return NULL;
        mnt_reset_iter(&itr, MNT_ITER_FORWARD);
 
-       while(mnt_optls_iterate_options(&itr, ls, NULL, &op) == 0) {
+       while(mnt_optls_next_option(ls, &itr, NULL, &op) == 0) {
                if (!(op->mask & MNT_MDATA) && !mnt_optent_is_unknown(op))
                        continue;
                if (mnt_optstr_append_option(&optstr,
@@ -523,7 +524,7 @@ char *mnt_optls_create_mtab_optstr(mnt_optls *ls)
 
        mnt_reset_iter(&itr, MNT_ITER_FORWARD);
 
-       while(mnt_optls_iterate_options(&itr, ls, NULL, &op) == 0) {
+       while(mnt_optls_next_option(ls, &itr, NULL, &op) == 0) {
                if (op->mask & MNT_NOMTAB)
                        continue;
                if (mnt_optstr_append_option(&optstr,
@@ -560,7 +561,7 @@ char *mnt_optls_create_userspace_optstr(mnt_optls *ls)
                return NULL;
        mnt_reset_iter(&itr, MNT_ITER_FORWARD);
 
-       while(mnt_optls_iterate_options(&itr, ls, NULL, &op) == 0) {
+       while(mnt_optls_next_option(ls, &itr, NULL, &op) == 0) {
                if (mnt_optent_is_unknown(op))
                        continue;
                if (op->mask & (MNT_MDATA | MNT_MFLAG | MNT_NOMTAB))
@@ -599,7 +600,7 @@ int mnt_optls_print_debug(mnt_optls *ls, FILE *file)
        mnt_reset_iter(&itr, MNT_ITER_FORWARD);
 
        fprintf(file, "--- opts: %p\n", ls);
-       while(mnt_optls_iterate_options(&itr, ls, NULL, &op) == 0)
+       while(mnt_optls_next_option(ls, &itr, NULL, &op) == 0)
                mnt_optent_print_debug(op, file);
 
        return 0;