Bug 146375 - [nfs] [patch] Typos in macro variables names in sys/fs/nfs/*.h
Summary: [nfs] [patch] Typos in macro variables names in sys/fs/nfs/*.h
Status: Closed FIXED
Alias: None
Product: Base System
Classification: Unclassified
Component: kern (show other bugs)
Version: 9.0-CURRENT
Hardware: Any Any
: Normal Affects Only Me
Assignee: Rick Macklem
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2010-05-07 13:50 UTC by Andrey Simonenko
Modified: 2011-04-11 21:12 UTC (History)
0 users

See Also:


Attachments
file.diff (1.09 KB, patch)
2010-05-07 13:50 UTC, Andrey Simonenko
no flags Details | Diff

Note You need to log in before you can comment on or make changes to this bug.
Description Andrey Simonenko 2010-05-07 13:50:05 UTC
There are two typos in macro variables names in sys/fs/nfs/*.h files.
Comment 1 Mark Linimon freebsd_committer freebsd_triage 2010-05-07 22:38:31 UTC
Responsible Changed
From-To: freebsd-bugs->freebsd-fs

Over to maintainer(s).
Comment 2 dfilter service freebsd_committer freebsd_triage 2010-05-08 15:50:30 UTC
Author: rmacklem
Date: Sat May  8 14:50:12 2010
New Revision: 207785
URL: http://svn.freebsd.org/changeset/base/207785

Log:
  Fix typos in macros.
  
  PR:		kern/146375
  Submitted by:	simon AT comsys.ntu-kpi.kiev.ua
  MFC after:	1 week

Modified:
  head/sys/fs/nfs/nfskpiport.h
  head/sys/fs/nfs/nfsport.h

Modified: head/sys/fs/nfs/nfskpiport.h
==============================================================================
--- head/sys/fs/nfs/nfskpiport.h	Sat May  8 14:12:04 2010	(r207784)
+++ head/sys/fs/nfs/nfskpiport.h	Sat May  8 14:50:12 2010	(r207785)
@@ -27,7 +27,7 @@
  */
 
 #ifndef _NFS_NFSKPIPORT_H_
-#define	_NFSKPIPORT_NFS_H_
+#define	_NFS_NFSKPIPORT_H_
 /*
  * These definitions are needed since the generic code is now using Darwin8
  * KPI stuff. (I know, seems a bit silly, but I want the code to build on
@@ -70,4 +70,4 @@ typedef struct mbuf *		mbuf_t;
 #define	uio_iov_len(p)		((p)->uio_iov->iov_len)
 #define	uio_iov_len_add(p, v)	((p)->uio_iov->iov_len += (v))
 
-#endif	/* _NFSKPIPORT_NFS_H */
+#endif	/* _NFS_NFSKPIPORT_H */

Modified: head/sys/fs/nfs/nfsport.h
==============================================================================
--- head/sys/fs/nfs/nfsport.h	Sat May  8 14:12:04 2010	(r207784)
+++ head/sys/fs/nfs/nfsport.h	Sat May  8 14:50:12 2010	(r207785)
@@ -33,7 +33,7 @@
  */
 
 #ifndef _NFS_NFSPORT_H_
-#define	_NFSPORT_NFS_H_
+#define	_NFS_NFSPORT_H_
 
 /*
  * In general, I'm not fond of #includes in .h files, but this seems
@@ -918,4 +918,4 @@ struct nfsreq {
 
 #endif	/* _KERNEL */
 
-#endif	/* _NFSPORT_NFS_H */
+#endif	/* _NFS_NFSPORT_H */
_______________________________________________
svn-src-all@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/svn-src-all
To unsubscribe, send any mail to "svn-src-all-unsubscribe@freebsd.org"
Comment 3 Bruce Cran freebsd_committer freebsd_triage 2011-02-21 09:12:24 UTC
State Changed
From-To: open->patched

MFC reminder. 


Comment 4 Bruce Cran freebsd_committer freebsd_triage 2011-02-21 09:12:24 UTC
Responsible Changed
From-To: freebsd-fs->rmacklem

MFC reminder.
Comment 5 Rick Macklem freebsd_committer freebsd_triage 2011-04-11 21:11:02 UTC
State Changed
From-To: patched->closed



The patched system no longer has typos in the macros.