svn commit: r306272 - head/sys/sys

Mateusz Guzik mjg at FreeBSD.org
Fri Sep 23 16:47:13 UTC 2016


Author: mjg
Date: Fri Sep 23 16:47:12 2016
New Revision: 306272
URL: https://svnweb.freebsd.org/changeset/base/306272

Log:
  fd: hide fd_modified under CAPABILITIES
  
  It has no use without it and is now less error prone.

Modified:
  head/sys/sys/filedesc.h

Modified: head/sys/sys/filedesc.h
==============================================================================
--- head/sys/sys/filedesc.h	Fri Sep 23 16:22:03 2016	(r306271)
+++ head/sys/sys/filedesc.h	Fri Sep 23 16:47:12 2016	(r306272)
@@ -229,12 +229,14 @@ fdeget_locked(struct filedesc *fdp, int 
 	return (fde);
 }
 
+#ifdef CAPABILITIES
 static __inline bool
 fd_modified(struct filedesc *fdp, int fd, seq_t seq)
 {
 
 	return (!seq_consistent(fd_seq(fdp->fd_files, fd), seq));
 }
+#endif
 
 /* cdir/rdir/jdir manipulation functions. */
 void	pwd_chdir(struct thread *td, struct vnode *vp);


More information about the svn-src-head mailing list