Bug 97377

Summary: [ntfs] [patch] syntax cleanup for ntfs_ihash.c
Product: Base System Reporter: David Rhodus <drhodus>
Component: kernAssignee: freebsd-fs (Nobody) <fs>
Status: Closed Overcome By Events    
Severity: Affects Only Me CC: jhb, joeb1
Priority: Normal    
Version: 1.0-CURRENT   
Hardware: Any   
OS: Any   

Description David Rhodus 2006-05-17 01:50:11 UTC
Index: ntfs_ihash.c
===================================================================
RCS file: /home/ncvs/src/sys/fs/ntfs/ntfs_ihash.c,v
retrieving revision 1.21
diff -u -r1.21 ntfs_ihash.c
--- ntfs_ihash.c        6 Jan 2005 18:10:39 -0000       1.21
+++ ntfs_ihash.c        17 May 2006 00:45:25 -0000
@@ -89,9 +89,10 @@
        struct ntnode *ip;

        mtx_lock(&ntfs_nthash_mtx);
-       LIST_FOREACH(ip, NTNOHASH(dev, inum), i_hash)
+       LIST_FOREACH(ip, NTNOHASH(dev, inum), i_hash) {
                if (inum == ip->i_number && dev == ip->i_dev)
                        break;
+       }
        mtx_unlock(&ntfs_nthash_mtx);

        return (ip);
Comment 1 Mark Linimon freebsd_committer freebsd_triage 2009-05-18 05:27:23 UTC
Responsible Changed
From-To: freebsd-bugs->freebsd-fs

Over to maintainer(s).
Comment 2 joeb1 2014-07-12 11:13:28 UTC
Close this pr.
ntfs has been removed from 10.0 base see
http://svnweb.freebsd.org/base/head/sbin/Makefile?view=log&pathrev=247665
Comment 3 John Baldwin freebsd_committer freebsd_triage 2014-08-11 18:42:19 UTC
NFS support has been removed from the base system.