Skip to content

Commit

Permalink
libmultipath: add argument names to some prototypes
Browse files Browse the repository at this point in the history
Signed-off-by: Martin Wilck <mwilck@suse.com>
Reviewed-by: Benjamin Marzinski <bmarzins@redhat.com>
  • Loading branch information
mwilck committed May 2, 2024
1 parent 8982edd commit aa7ae4d
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions libmultipath/devmapper.h
Original file line number Diff line number Diff line change
Expand Up @@ -42,12 +42,12 @@ int dm_simplecmd_flush (int task, const char *name, uint16_t udev_flags);
int dm_simplecmd_noflush (int task, const char *name, uint16_t udev_flags);
int dm_addmap_create (struct multipath *mpp, char *params);
int dm_addmap_reload (struct multipath *mpp, char *params, int flush);
int dm_map_present (const char *);
int dm_map_present (const char *name);
int dm_map_present_by_uuid(const char *uuid);
int dm_get_map(const char *, unsigned long long *, char **);
int dm_get_status(const char *, char **);
int dm_type(const char *, char *);
int dm_is_mpath(const char *);
int dm_get_map(const char *name, unsigned long long *size, char **outparams);
int dm_get_status(const char *name, char **outstatus);
int dm_type(const char *name, char *type);
int dm_is_mpath(const char *name);

enum {
DM_FLUSH_OK = 0,
Expand Down

0 comments on commit aa7ae4d

Please sign in to comment.