Bug 97377 - [ntfs] [patch] syntax cleanup for ntfs_ihash.c
Summary: [ntfs] [patch] syntax cleanup for ntfs_ihash.c
Status: Closed Overcome By Events
Alias: None
Product: Base System
Classification: Unclassified
Component: kern (show other bugs)
Version: 1.0-CURRENT
Hardware: Any Any
: Normal Affects Only Me
Assignee: freebsd-fs (Nobody)
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2006-05-17 01:50 UTC by David Rhodus
Modified: 2014-08-11 18:42 UTC (History)
2 users (show)

See Also:


Attachments

Note You need to log in before you can comment on or make changes to this bug.
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.