Home
last modified time | relevance | path

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

/xnu-12377.81.4/bsd/vfs/
H A Dvfs_cluster.c506 struct cl_readahead *rap; in cluster_get_rap() local
510 if ((rap = ubc->cl_rahead) == NULL) { in cluster_get_rap()
511 rap = zalloc_flags(cl_rd_zone, Z_WAITOK | Z_ZERO); in cluster_get_rap()
512 rap->cl_lastr = -1; in cluster_get_rap()
513 lck_mtx_init(&rap->cl_lockr, &cl_mtx_grp, LCK_ATTR_NULL); in cluster_get_rap()
518 ubc->cl_rahead = rap; in cluster_get_rap()
520 lck_mtx_destroy(&rap->cl_lockr, &cl_mtx_grp); in cluster_get_rap()
521 zfree(cl_rd_zone, rap); in cluster_get_rap()
522 rap = ubc->cl_rahead; in cluster_get_rap()
526 if (lck_mtx_try_lock(&rap->cl_lockr) == TRUE) { in cluster_get_rap()
[all …]