Home
last modified time | relevance | path

Searched refs:rap (Results 1 – 1 of 1) sorted by relevance

/xnu-8796.121.2/bsd/vfs/
H A Dvfs_cluster.c436 struct cl_readahead *rap; in cluster_get_rap() local
440 if ((rap = ubc->cl_rahead) == NULL) { in cluster_get_rap()
441 rap = zalloc_flags(cl_rd_zone, Z_WAITOK | Z_ZERO); in cluster_get_rap()
442 rap->cl_lastr = -1; in cluster_get_rap()
443 lck_mtx_init(&rap->cl_lockr, &cl_mtx_grp, LCK_ATTR_NULL); in cluster_get_rap()
448 ubc->cl_rahead = rap; in cluster_get_rap()
450 lck_mtx_destroy(&rap->cl_lockr, &cl_mtx_grp); in cluster_get_rap()
451 zfree(cl_rd_zone, rap); in cluster_get_rap()
452 rap = ubc->cl_rahead; in cluster_get_rap()
456 if (lck_mtx_try_lock(&rap->cl_lockr) == TRUE) { in cluster_get_rap()
[all …]