From a73f77bbccdf0d6ab30fbf897bd178b337142337 Mon Sep 17 00:00:00 2001 From: "Michael I. Bushnell" Date: Fri, 21 Jul 1995 21:58:08 +0000 Subject: (diskfs_get_filemap): Drop initial reference created by pager_create. (pager_clear_user_data): Only clear UPI->np->dn->fileinfo if it still points to us. --- ufs/pager.c | 45 ++++++++++++++++++++++++++------------------- 1 file changed, 26 insertions(+), 19 deletions(-) (limited to 'ufs') diff --git a/ufs/pager.c b/ufs/pager.c index 139e5723..cac6836a 100644 --- a/ufs/pager.c +++ b/ufs/pager.c @@ -362,7 +362,8 @@ pager_clear_user_data (struct user_pager_info *upi) if (upi->type == FILE_DATA) { spin_lock (&node2pagelock); - upi->np->dn->fileinfo = 0; + if (upi->np->dn->fileinfo == upi) + upi->np->dn->fileinfo = 0; spin_unlock (&node2pagelock); diskfs_nrele_light (upi->np); } @@ -450,24 +451,30 @@ diskfs_get_filemap (struct node *np) || np->dn_stat.st_size >= sblock->fs_maxsymlinklen))); spin_lock (&node2pagelock); - if (!np->dn->fileinfo) - { - upi = malloc (sizeof (struct user_pager_info)); - upi->type = FILE_DATA; - upi->np = np; - diskfs_nref_light (np); - upi->p = pager_create (upi, pager_bucket, - MAY_CACHE, MEMORY_OBJECT_COPY_DELAY); - np->dn->fileinfo = upi; - right = pager_get_port (np->dn->fileinfo->p); - ports_port_deref (np->dn->fileinfo->p); - } - else - /* There is a race condition here. If there are no references - to NP->dn->fileinfo->p, then the clean routine might be - blocked trying to get into node2pagelock, and this call is - invalid. XXX */ - right = pager_get_port (np->dn->fileinfo->p); + do + if (!np->dn->fileinfo) + { + upi = malloc (sizeof (struct user_pager_info)); + upi->type = FILE_DATA; + upi->np = np; + diskfs_nref_light (np); + upi->p = pager_create (upi, pager_bucket, + MAY_CACHE, MEMORY_OBJECT_COPY_DELAY); + np->dn->fileinfo = upi; + right = pager_get_port (np->dn->fileinfo->p); + ports_port_deref (np->dn->fileinfo->p); + } + else + { + /* Because NP->dn->fileinfo->p is not a real reference, + this might be nearly deallocated. If that's so, then + the port right will be null. In that case, clear here + and loop. The deallocation will complete separately. */ + right = pager_get_port (np->dn->fileinfo->p); + if (right == MACH_PORT_NULL) + np->dn->fileinfo = 0; + } + while (right == MACH_PORT_NULL); spin_unlock (&node2pagelock); -- cgit v1.2.3