summaryrefslogtreecommitdiffstats
path: root/cpukit/libfs/src/dosfs
diff options
context:
space:
mode:
authorSebastian Huber <sebastian.huber@embedded-brains.de>2013-12-16 14:26:29 +0100
committerSebastian Huber <sebastian.huber@embedded-brains.de>2013-12-20 10:31:53 +0100
commit56bea4339f4238d6fe01dd5a3ae68759adde5b70 (patch)
treee39b422a16959c774cdd36ea1771b6265d109032 /cpukit/libfs/src/dosfs
parentFilesystem: Add readv/writev handlers (diff)
downloadrtems-56bea4339f4238d6fe01dd5a3ae68759adde5b70.tar.bz2
Filesystem: Use default kqfilter and poll handler
Diffstat (limited to 'cpukit/libfs/src/dosfs')
-rw-r--r--cpukit/libfs/src/dosfs/msdos_handlers_dir.c2
-rw-r--r--cpukit/libfs/src/dosfs/msdos_handlers_file.c2
2 files changed, 4 insertions, 0 deletions
diff --git a/cpukit/libfs/src/dosfs/msdos_handlers_dir.c b/cpukit/libfs/src/dosfs/msdos_handlers_dir.c
index 6d91603952..881fe4b5aa 100644
--- a/cpukit/libfs/src/dosfs/msdos_handlers_dir.c
+++ b/cpukit/libfs/src/dosfs/msdos_handlers_dir.c
@@ -33,6 +33,8 @@ const rtems_filesystem_file_handlers_r msdos_dir_handlers = {
.fsync_h = msdos_sync,
.fdatasync_h = msdos_sync,
.fcntl_h = rtems_filesystem_default_fcntl,
+ .kqfilter_h = rtems_filesystem_default_kqfilter,
+ .poll_h = rtems_filesystem_default_poll,
.readv_h = rtems_filesystem_default_readv,
.writev_h = rtems_filesystem_default_writev
};
diff --git a/cpukit/libfs/src/dosfs/msdos_handlers_file.c b/cpukit/libfs/src/dosfs/msdos_handlers_file.c
index d5885bb688..38584036e6 100644
--- a/cpukit/libfs/src/dosfs/msdos_handlers_file.c
+++ b/cpukit/libfs/src/dosfs/msdos_handlers_file.c
@@ -33,6 +33,8 @@ const rtems_filesystem_file_handlers_r msdos_file_handlers = {
.fsync_h = msdos_file_sync,
.fdatasync_h = msdos_sync,
.fcntl_h = rtems_filesystem_default_fcntl,
+ .kqfilter_h = rtems_filesystem_default_kqfilter,
+ .poll_h = rtems_filesystem_default_poll,
.readv_h = rtems_filesystem_default_readv,
.writev_h = rtems_filesystem_default_writev
};