aboutsummaryrefslogtreecommitdiff
path: root/sys/fs/udf
diff options
context:
space:
mode:
authorAndriy Gapon <avg@FreeBSD.org>2009-03-04 13:53:57 +0000
committerAndriy Gapon <avg@FreeBSD.org>2009-03-04 13:53:57 +0000
commit9cd835bba963f1c29519c2ee039308df89e5c41d (patch)
tree959f8772c21ea6a30d57973c8f3b54187db2a7bb /sys/fs/udf
parent4d7c2e8a483ba53273aa5cbad8ee3f6fc3dbd791 (diff)
downloadsrc-9cd835bba963f1c29519c2ee039308df89e5c41d.tar.gz
src-9cd835bba963f1c29519c2ee039308df89e5c41d.zip
udf_strategy: remove redundant comment
We fail mapping for any udf_bmap_internal error and there can be different reasons for it, so no need to (over-)emphasize files with data in fentry. Submitted by: bde Approved by: jhb
Notes
Notes: svn path=/head/; revision=189363
Diffstat (limited to 'sys/fs/udf')
-rw-r--r--sys/fs/udf/udf_vnops.c4
1 files changed, 0 insertions, 4 deletions
diff --git a/sys/fs/udf/udf_vnops.c b/sys/fs/udf/udf_vnops.c
index a3c3fa240f11..1d7e9ceb2b1c 100644
--- a/sys/fs/udf/udf_vnops.c
+++ b/sys/fs/udf/udf_vnops.c
@@ -1018,10 +1018,6 @@ udf_strategy(struct vop_strategy_args *a)
node = VTON(vp);
if (bp->b_blkno == bp->b_lblkno) {
- /*
- * Files that are embedded in the fentry don't translate well
- * to a block number. Reject.
- */
offset = lblktosize(node->udfmp, bp->b_lblkno);
error = udf_bmap_internal(node, offset, &sector, &maxsize);
if (error) {