From 777a1359eb9ba1fec24b43c0b780f261f6baefbc Mon Sep 17 00:00:00 2001 From: Miles Bader Date: Wed, 4 Oct 1995 21:36:19 +0000 Subject: (trivfs_S_file_syncfs, trivfs_S_file_sync): Get rid of debugging noise. --- devio/io.c | 30 +++++------------------------- 1 file changed, 5 insertions(+), 25 deletions(-) (limited to 'devio/io.c') diff --git a/devio/io.c b/devio/io.c index ace87ea5..cedb3479 100644 --- a/devio/io.c +++ b/devio/io.c @@ -296,39 +296,19 @@ trivfs_S_io_mod_owner (struct trivfs_protid *cred, kern_return_t trivfs_S_file_sync (struct trivfs_protid *cred, int wait) { - if (!cred) - return EOPNOTSUPP; + if (cred) + return dev_sync (((struct open *)cred->po->hook)->dev, wait); else - { -#ifdef MSG - if (debug) - { - mutex_lock(&debug_lock); - fprintf(debug, "syncing file...\n"); - mutex_unlock(&debug_lock); - } -#endif - return dev_sync(((struct open *)cred->po->hook)->dev, wait); - } + return EOPNOTSUPP; } kern_return_t trivfs_S_file_syncfs (struct trivfs_protid *cred, int wait, int dochildren) { if (!cred) - return EOPNOTSUPP; + return dev_sync (((struct open *)cred->po->hook)->dev, wait); else - { -#ifdef MSG - if (debug) - { - mutex_lock(&debug_lock); - fprintf(debug, "syncing filesystem (through file)...\n"); - mutex_unlock(&debug_lock); - } -#endif - return dev_sync(((struct open *)cred->po->hook)->dev, wait); - } + return EOPNOTSUPP; } /* ---------------------------------------------------------------- */ -- cgit v1.2.3