Home
last modified time | relevance | path

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

/xnu-11215.81.4/bsd/vfs/
H A Dvfs_cluster.c486 struct cl_readahead *rap; in cluster_get_rap() local
490 if ((rap = ubc->cl_rahead) == NULL) { in cluster_get_rap()
491 rap = zalloc_flags(cl_rd_zone, Z_WAITOK | Z_ZERO); in cluster_get_rap()
492 rap->cl_lastr = -1; in cluster_get_rap()
493 lck_mtx_init(&rap->cl_lockr, &cl_mtx_grp, LCK_ATTR_NULL); in cluster_get_rap()
498 ubc->cl_rahead = rap; in cluster_get_rap()
500 lck_mtx_destroy(&rap->cl_lockr, &cl_mtx_grp); in cluster_get_rap()
501 zfree(cl_rd_zone, rap); in cluster_get_rap()
502 rap = ubc->cl_rahead; in cluster_get_rap()
506 if (lck_mtx_try_lock(&rap->cl_lockr) == TRUE) { in cluster_get_rap()
[all …]