Hi,

I should know the answer to this, but... When reading a global kernel
variable, where its modifications are protected by a mutex, is it
necessary to get the mutex lock to just read its value?

For example:
A    if ((mp->mnt_kern_flag & MNTK_UNMOUNTF) != 0)
          return (EPERM);
versus
B    MNT_ILOCK(mp);
     if ((mp->mnt_kern_flag & MNTK_UNMOUNTF) != 0) {
          MNT_IUNLOCK(mp);
          return (EPERM);
     }
     MNT_IUNLOCK(mp);

My hunch is that B is necessary if you need an up-to-date value
for the variable (mp->mnt_kern_flag in this case).

Is that correct?

Thanks in advance for help with this, rick
_______________________________________________
freebsd-hackers@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-hackers
To unsubscribe, send any mail to "freebsd-hackers-unsubscr...@freebsd.org"

Reply via email to