Commit 5176196c authored by Fam Zheng's avatar Fam Zheng Committed by Kevin Wolf
Browse files

block: Make bdrv_perm_names public



It can be used outside of block.c for making user friendly messages.

Signed-off-by: default avatarFam Zheng <famz@redhat.com>
Signed-off-by: default avatarKevin Wolf <kwolf@redhat.com>
parent 76d20ea0
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -1586,7 +1586,7 @@ static char *bdrv_child_user_desc(BdrvChild *c)
    return g_strdup("another user");
}

static char *bdrv_perm_names(uint64_t perm)
char *bdrv_perm_names(uint64_t perm)
{
    struct perm_name {
        uint64_t perm;
+2 −0
Original line number Diff line number Diff line
@@ -224,6 +224,8 @@ enum {
    BLK_PERM_ALL                = 0x1f,
};

char *bdrv_perm_names(uint64_t perm);

/* disk I/O throttling */
void bdrv_init(void);
void bdrv_init_with_whitelist(void);