aboutsummaryrefslogtreecommitdiff
path: root/sys/fs/procfs
diff options
context:
space:
mode:
authorKonstantin Belousov <kib@FreeBSD.org>2008-12-08 13:15:31 +0000
committerKonstantin Belousov <kib@FreeBSD.org>2008-12-08 13:15:31 +0000
commit9499cb83bf5751958ac07bc72488c323c3e675e6 (patch)
tree28d456f3fabbf6c41d9c9bc9b25d209eced6d36c /sys/fs/procfs
parent5a66e0259b3cb3c523ae5252ba482318955ca38a (diff)
downloadsrc-9499cb83bf5751958ac07bc72488c323c3e675e6.tar.gz
src-9499cb83bf5751958ac07bc72488c323c3e675e6.zip
Make two style changes to create new commit and document proper commit
message for r185765. Noted by: rdivacky Requested by: des Commit message for r185765 should be: In procfs map handler, and in linprocfs maps handler, do not call vn_fullpath() while having vm map locked. This is done in anticipation of the vop_vptocnp commit, that would make vn_fullpath sometime acquire vnode lock. Also, in linprocfs, maps handler already acquires vnode lock. No objections from: des MFC after: 2 week
Notes
Notes: svn path=/head/; revision=185766
Diffstat (limited to 'sys/fs/procfs')
-rw-r--r--sys/fs/procfs/procfs_map.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/fs/procfs/procfs_map.c b/sys/fs/procfs/procfs_map.c
index 11aa71300754..9e36b5427b2a 100644
--- a/sys/fs/procfs/procfs_map.c
+++ b/sys/fs/procfs/procfs_map.c
@@ -82,11 +82,11 @@ extern struct sysentvec ia32_freebsd_sysvec;
int
procfs_doprocmap(PFS_FILL_ARGS)
{
- int error, vfslocked;
vm_map_t map = &p->p_vmspace->vm_map;
vm_map_entry_t entry, tmp_entry;
struct vnode *vp;
char *fullpath, *freepath;
+ int error, vfslocked;
unsigned int last_timestamp;
#ifdef COMPAT_IA32
int wrap32 = 0;