svn commit: r189363 - head/sys/fs/udf

Andriy Gapon avg at FreeBSD.org
Wed Mar 4 05:53:58 PST 2009


Author: avg
Date: Wed Mar  4 13:53:57 2009
New Revision: 189363
URL: http://svn.freebsd.org/changeset/base/189363

Log:
  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

Modified:
  head/sys/fs/udf/udf_vnops.c

Modified: head/sys/fs/udf/udf_vnops.c
==============================================================================
--- head/sys/fs/udf/udf_vnops.c	Wed Mar  4 12:14:33 2009	(r189362)
+++ head/sys/fs/udf/udf_vnops.c	Wed Mar  4 13:53:57 2009	(r189363)
@@ -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) {


More information about the svn-src-all mailing list