Print this page
8368 remove warlock leftovers from usr/src/uts
*** 170,182 ****
* XXX - this appears only to be used by the VM code to handle the case where
* UNIX is running off the mini-root. That probably wants to be done
* differently.
*/
struct vnode *rootvp;
! #ifndef __lint
! _NOTE(SCHEME_PROTECTS_DATA("safe sharing", rootvp))
! #endif
static int32_t
udf_mount(struct vfs *vfsp, struct vnode *mvp,
struct mounta *uap, struct cred *cr)
{
dev_t dev;
--- 170,180 ----
* XXX - this appears only to be used by the VM code to handle the case where
* UNIX is running off the mini-root. That probably wants to be done
* differently.
*/
struct vnode *rootvp;
!
static int32_t
udf_mount(struct vfs *vfsp, struct vnode *mvp,
struct mounta *uap, struct cred *cr)
{
dev_t dev;
*** 788,801 ****
/*
* Check if the file system
* is a valid udfs and fill
* the required fields in udf_vfs
*/
- #ifndef __lint
- _NOTE(NO_COMPETING_THREADS_NOW);
- #endif
-
if ((lbsize = ud_get_lbsize(dev, &avd_loc)) == 0) {
error = EINVAL;
goto out;
}
--- 786,795 ----
*** 910,922 ****
mutex_init(&udf_vfsp->udf_lock, NULL, MUTEX_DEFAULT, NULL);
mutex_init(&udf_vfsp->udf_rename_lck, NULL, MUTEX_DEFAULT, NULL);
- #ifndef __lint
- _NOTE(COMPETING_THREADS_NOW);
- #endif
if (error = ud_iget(vfsp, udf_vfsp->udf_ricb_prn,
udf_vfsp->udf_ricb_loc, &rip, NULL, cr)) {
mutex_destroy(&udf_vfsp->udf_lock);
goto out;
}
--- 904,913 ----