summaryrefslogtreecommitdiffstats
path: root/sys/fs/msdosfs/msdosfs_denode.c
diff options
context:
space:
mode:
authorkib <kib@FreeBSD.org>2011-11-22 13:30:36 +0000
committerkib <kib@FreeBSD.org>2011-11-22 13:30:36 +0000
commitaf14be937d41261e713de94faebda1540822dc94 (patch)
tree42c5b64d65cf2ea81a191c90c8526c96283ea0c8 /sys/fs/msdosfs/msdosfs_denode.c
parent6c824ac5d833e51ebf67ed3e47e26fe2d1b4b906 (diff)
downloadFreeBSD-src-af14be937d41261e713de94faebda1540822dc94.zip
FreeBSD-src-af14be937d41261e713de94faebda1540822dc94.tar.gz
Put all the messages from msdosfs under the MSDOSFS_DEBUG ifdef.
They are confusing to user, and not informative for general consumption. MFC after: 1 week
Diffstat (limited to 'sys/fs/msdosfs/msdosfs_denode.c')
-rw-r--r--sys/fs/msdosfs/msdosfs_denode.c9
1 files changed, 8 insertions, 1 deletions
diff --git a/sys/fs/msdosfs/msdosfs_denode.c b/sys/fs/msdosfs/msdosfs_denode.c
index 84b52ba..1166be7 100644
--- a/sys/fs/msdosfs/msdosfs_denode.c
+++ b/sys/fs/msdosfs/msdosfs_denode.c
@@ -263,8 +263,10 @@ deget(pmp, dirclust, diroffset, depp)
* instead of what is written in directory entry.
*/
if (diroffset == 0 && ldep->de_StartCluster != dirclust) {
+#ifdef MSDOSFS_DEBUG
printf("deget(): \".\" entry at clust %lu != %lu\n",
dirclust, ldep->de_StartCluster);
+#endif
ldep->de_StartCluster = dirclust;
}
@@ -274,8 +276,11 @@ deget(pmp, dirclust, diroffset, depp)
if (error == E2BIG) {
ldep->de_FileSize = de_cn2off(pmp, size);
error = 0;
- } else
+ } else {
+#ifdef MSDOSFS_DEBUG
printf("deget(): pcbmap returned %d\n", error);
+#endif
+ }
}
} else
nvp->v_type = VREG;
@@ -351,8 +356,10 @@ detrunc(dep, length, flags, cred, td)
* directory's life.
*/
if ((DETOV(dep)->v_vflag & VV_ROOT) && !FAT32(pmp)) {
+#ifdef MSDOSFS_DEBUG
printf("detrunc(): can't truncate root directory, clust %ld, offset %ld\n",
dep->de_dirclust, dep->de_diroffset);
+#endif
return (EINVAL);
}
OpenPOWER on IntegriCloud