Re: [PATCH v8 08/21] 9pfs: well form error hint helpers

2019-12-09 Thread Markus Armbruster
Vladimir Sementsov-Ogievskiy writes: > Make error_append_security_model_hint and > error_append_socket_sockfd_hint hint append helpers well formed: > switch errp paramter to Error *const * type, as it has uncommon > behavior: not change the pointer to return error, but operate on > already existe

[PATCH v8 08/21] 9pfs: well form error hint helpers

2019-12-05 Thread Vladimir Sementsov-Ogievskiy
Make error_append_security_model_hint and error_append_socket_sockfd_hint hint append helpers well formed: switch errp paramter to Error *const * type, as it has uncommon behavior: not change the pointer to return error, but operate on already existent error object. Signed-off-by: Vladimir Sements