diff options
-rw-r--r-- | libnetfs/iostubs.c | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/libnetfs/iostubs.c b/libnetfs/iostubs.c index 64a1322a..1465b43a 100644 --- a/libnetfs/iostubs.c +++ b/libnetfs/iostubs.c @@ -57,13 +57,15 @@ netfs_S_io_eofnotify (struct protid *user) } error_t -netfs_S_io_prenotify (struct protid *user) +netfs_S_io_prenotify (struct protid *user, + vm_offset_t start, vm_offset_t stop) { return EOPNOTSUPP; } error_t -netfs_S_io_postnotify (struct protid *user) +netfs_S_io_postnotify (struct protid *user, + vm_offset_t start, vm_offset_t stop) { return EOPNOTSUPP; } |