Home
last modified time | relevance | path

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

/xnu-11215.1.10/bsd/vfs/
H A Dvfs_cluster.c484 struct cl_readahead *rap; in cluster_get_rap() local
488 if ((rap = ubc->cl_rahead) == NULL) { in cluster_get_rap()
489 rap = zalloc_flags(cl_rd_zone, Z_WAITOK | Z_ZERO); in cluster_get_rap()
490 rap->cl_lastr = -1; in cluster_get_rap()
491 lck_mtx_init(&rap->cl_lockr, &cl_mtx_grp, LCK_ATTR_NULL); in cluster_get_rap()
496 ubc->cl_rahead = rap; in cluster_get_rap()
498 lck_mtx_destroy(&rap->cl_lockr, &cl_mtx_grp); in cluster_get_rap()
499 zfree(cl_rd_zone, rap); in cluster_get_rap()
500 rap = ubc->cl_rahead; in cluster_get_rap()
504 if (lck_mtx_try_lock(&rap->cl_lockr) == TRUE) { in cluster_get_rap()
[all …]