Home
last modified time | relevance | path

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

/titanic_41/usr/src/uts/common/fs/nfs/
H A Dnfs4_client_state.c156 while ((osp = list_head(&rp->r_open_streams)) != NULL) { in nfs4_clear_open_streams()
158 list_remove(&rp->r_open_streams, osp); in nfs4_clear_open_streams()
237 list_remove(&rp->r_open_streams, osp); in open_stream_rele()
379 for (osp = list_head(&rp->r_open_streams); osp != NULL; in find_open_stream()
380 osp = list_next(&rp->r_open_streams, osp)) { in find_open_stream()
765 list_insert_head(&rp->r_open_streams, osp); in create_open_stream()
1642 next_osp = list_next(&rp->r_open_streams, *osp); in nfs4_get_otw_cred_by_osp()
1650 next_osp = list_head(&rp->r_open_streams); in nfs4_get_otw_cred_by_osp()
1659 list_next(&rp->r_open_streams, next_osp); in nfs4_get_otw_cred_by_osp()
H A Dnfs4_rnode.c666 list_create(&rp->r_open_streams, sizeof (nfs4_open_stream_t), in make_rnode4()
730 list_destroy(&rp->r_open_streams); in uninit_rnode4()
879 if (list_head(&rp->r_open_streams) != NULL) { in rp4_addfree()
1707 for (osp = list_head(&rp->r_open_streams); osp != NULL; in r4mkopenlist()
1708 osp = list_next(&rp->r_open_streams, osp)) { in r4mkopenlist()
1736 for (osp = list_head(&rp->r_open_streams); in r4mkopenlist()
1738 osp = list_next(&rp->r_open_streams, osp)) { in r4mkopenlist()
H A Dnfs4_callback.c2015 for (osp = list_head(&rp->r_open_streams); osp != NULL; in get_next_deleg_stream()
2016 osp = list_next(&rp->r_open_streams, osp)) { in get_next_deleg_stream()
H A Dnfs4_vnops.c4710 if (vp->v_type == VREG && list_head(&rp->r_open_streams) != NULL) { in nfs4_inactive()
7301 isopen = list_head(&rp->r_open_streams) != NULL; in nfs4_remove()
7796 isactive = list_head(&rp->r_open_streams) != NULL; in nfs4rename()
15057 osp = list_head(&rp->r_open_streams); in nfs4close_all()
/titanic_41/usr/src/uts/common/nfs/
H A Drnode4.h277 list_t r_open_streams; /* open streams list */ member