PERFORCE change 109985 for review
Todd Miller
millert at FreeBSD.org
Tue Nov 14 20:51:59 UTC 2006
http://perforce.freebsd.org/chv.cgi?CH=109985
Change 109985 by millert at millert_g5tower on 2006/11/14 20:37:57
Make 'fd_fd' an int.
Fix formatting.
Affected files ...
.. //depot/projects/trustedbsd/sedarwin8/darwin/xnu/bsd/miscfs/fdesc/fdesc.h#3 edit
Differences ...
==== //depot/projects/trustedbsd/sedarwin8/darwin/xnu/bsd/miscfs/fdesc/fdesc.h#3 (text+ko) ====
@@ -94,12 +94,12 @@
} fdntype;
struct fdescnode {
- LIST_ENTRY(fdescnode) fd_hash; /* Hash list */
- struct vnode *fd_vnode; /* Back ptr to vnode */
+ LIST_ENTRY(fdescnode) fd_hash; /* Hash list */
+ struct vnode * fd_vnode; /* Back ptr to vnode */
fdntype fd_type; /* Type of this node */
- unsigned fd_fd; /* Fd to be dup'ed */
+ int fd_fd; /* Fd to be dup'ed */
char *fd_link; /* Link to fd/n */
- int fd_ix; /* filesystem index */
+ int fd_ix; /* filesystem index */
};
#define VFSTOFDESC(mp) ((struct fdescmount *)((mp)->mnt_data))
More information about the trustedbsd-cvs
mailing list