9pfs: Convert V9fsFidState::clunked to bool

This can only be 0 or 1.

Reviewed-by: Christian Schoenebeck <qemu_oss@crudebyte.com>
Message-Id: <20210118142300.801516-2-groug@kaod.org>
Signed-off-by: Greg Kurz <groug@kaod.org>
This commit is contained in:
Greg Kurz 2021-01-18 15:22:58 +01:00
parent acef3f8b47
commit 2e53160fc6
2 changed files with 3 additions and 3 deletions

View File

@ -413,7 +413,7 @@ static V9fsFidState *clunk_fid(V9fsState *s, int32_t fid)
}
fidp = *fidpp;
*fidpp = fidp->next;
fidp->clunked = 1;
fidp->clunked = true;
return fidp;
}
@ -544,7 +544,7 @@ static void coroutine_fn virtfs_reset(V9fsPDU *pdu)
/* Clunk fid */
s->fid_list = fidp->next;
fidp->clunked = 1;
fidp->clunked = true;
put_fid(pdu, fidp);
}

View File

@ -279,7 +279,7 @@ struct V9fsFidState {
int open_flags;
uid_t uid;
int ref;
int clunked;
bool clunked;
V9fsFidState *next;
V9fsFidState *rclm_lst;
};