gwr commented on this pull request.


> +{
+       nvlist_t        *nvl = NULL;
+       int             err;
+
+       err = nvlist_alloc(&nvl, NV_UNIQUE_NAME, 0);
+       if (err != 0)
+               return (err);
+
+       (void) nvlist_add_boolean_value(nvl, A_READONLY, 1);
+
+       if (fname == NULL) {
+               err = fsetattr(fildes, XATTR_VIEW_READWRITE, nvl);
+       } else {
+               err = setattrat(fildes, XATTR_VIEW_READWRITE, fname, nvl);
+       }
+       if (err < 0) {

Let's just leave it.  It might be useful to add a test case using that code 
path in the future.
(and I'm not too bothered by one line of dead code in a test program:)
Thanks!

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/openzfs/openzfs/pull/392#discussion_r121134545
------------------------------------------
openzfs-developer
Archives: 
https://openzfs.topicbox.com/groups/developer/discussions/Tb6ca17b06450145d-M03be46f9a223f84647cdc503
Powered by Topicbox: https://topicbox.com

Reply via email to