chiark
/
gitweb
/
~ianmdlvl
/
elogind.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
3f3cc39
)
util: try to be a bit more NFS compatible when checking whether an FS is writable
author
Lennart Poettering
<lennart@poettering.net>
Mon, 18 Aug 2014 21:15:51 +0000
(23:15 +0200)
committer
Lennart Poettering
<lennart@poettering.net>
Mon, 18 Aug 2014 21:16:36 +0000
(23:16 +0200)
https://bugs.freedesktop.org/show_bug.cgi?id=81169
src/shared/path-util.c
patch
|
blob
|
history
diff --git
a/src/shared/path-util.c
b/src/shared/path-util.c
index 57554cd294613eed7068c6a978edb0f01149f768..67566bc76b2c8a0ad54b357ea41c0ad3736b49f2 100644
(file)
--- a/
src/shared/path-util.c
+++ b/
src/shared/path-util.c
@@
-533,7
+533,16
@@
int path_is_read_only_fs(const char *path) {
if (statvfs(path, &st) < 0)
return -errno;
- return !!(st.f_flag & ST_RDONLY);
+ if (st.f_flag & ST_RDONLY)
+ return true;
+
+ /* On NFS, statvfs() might not reflect whether we can actually
+ * write to the remote share. Let's try again with
+ * access(W_OK) which is more reliable, at least sometimes. */
+ if (access(path, W_OK) < 0 && errno == EROFS)
+ return true;
+
+ return false;
}
int path_is_os_tree(const char *path) {