No reason not to use it. May even be a little faster and will
consume less resources :-).
int fd;
int res;
- (void) fi;
- fd = open(path, O_RDONLY);
+ if(fi == NULL)
+ fd = open(path, O_RDONLY);
+ else
+ fd = fi->fh;
+
if (fd == -1)
return -errno;
if (res == -1)
res = -errno;
- close(fd);
+ if(fi == NULL)
+ close(fd);
return res;
}
int res;
(void) fi;
- fd = open(path, O_WRONLY);
+ if(fi == NULL)
+ fd = open(path, O_WRONLY);
+ else
+ fd = fi->fh;
+
if (fd == -1)
return -errno;
if (res == -1)
res = -errno;
- close(fd);
+ if(fi == NULL)
+ close(fd);
return res;
}
if (mode)
return -EOPNOTSUPP;
- fd = open(path, O_WRONLY);
+ if(fi == NULL)
+ fd = open(path, O_WRONLY);
+ else
+ fd = fi->fh;
+
if (fd == -1)
return -errno;
res = -posix_fallocate(fd, offset, length);
- close(fd);
+ if(fi == NULL)
+ close(fd);
return res;
}
#endif