Home
last modified time | relevance | path

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

/xnu-8020.121.3/bsd/vfs/
H A Dvfs_cluster.c397 struct cl_readahead *rap; in cluster_get_rap() local
401 if ((rap = ubc->cl_rahead) == NULL) { in cluster_get_rap()
402 rap = zalloc_flags(cl_rd_zone, Z_WAITOK | Z_ZERO); in cluster_get_rap()
403 rap->cl_lastr = -1; in cluster_get_rap()
404 lck_mtx_init(&rap->cl_lockr, &cl_mtx_grp, LCK_ATTR_NULL); in cluster_get_rap()
409 ubc->cl_rahead = rap; in cluster_get_rap()
411 lck_mtx_destroy(&rap->cl_lockr, &cl_mtx_grp); in cluster_get_rap()
412 zfree(cl_rd_zone, rap); in cluster_get_rap()
413 rap = ubc->cl_rahead; in cluster_get_rap()
417 if (lck_mtx_try_lock(&rap->cl_lockr) == TRUE) { in cluster_get_rap()
[all …]