9pfs: make Error **errp const where it is appropriate
Mostly, Error ** is for returning error from the function, so the callee sets it. However error_append_security_model_hint and error_append_socket_sockfd_hint get already filled errp parameter. They don't change the pointer itself, only change the internal state of referenced Error object. So we can make it Error *const * errp, to stress the behavior. It will also help coccinelle script (in future) to distinguish such cases from common errp usage. Signed-off-by: Vladimir Sementsov-Ogievskiy <vsementsov@virtuozzo.com> Acked-by: Greg Kurz <groug@kaod.org> Message-Id: <20191205174635.18758-9-vsementsov@virtuozzo.com> Reviewed-by: Markus Armbruster <armbru@redhat.com> [Commit message replaced] Signed-off-by: Markus Armbruster <armbru@redhat.com>
This commit is contained in:
parent
0c115681a5
commit
4c5ec47e63
@ -1473,7 +1473,7 @@ static void local_cleanup(FsContext *ctx)
|
||||
g_free(data);
|
||||
}
|
||||
|
||||
static void error_append_security_model_hint(Error **errp)
|
||||
static void error_append_security_model_hint(Error *const *errp)
|
||||
{
|
||||
error_append_hint(errp, "Valid options are: security_model="
|
||||
"[passthrough|mapped-xattr|mapped-file|none]\n");
|
||||
|
@ -1114,7 +1114,7 @@ static int connect_namedsocket(const char *path, Error **errp)
|
||||
return sockfd;
|
||||
}
|
||||
|
||||
static void error_append_socket_sockfd_hint(Error **errp)
|
||||
static void error_append_socket_sockfd_hint(Error *const *errp)
|
||||
{
|
||||
error_append_hint(errp, "Either specify socket=/some/path where /some/path"
|
||||
" points to a listening AF_UNIX socket or sock_fd=fd"
|
||||
|
Loading…
Reference in New Issue
Block a user