Home
last modified time | relevance | path

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

/fs/afs/
Dsuper.c531 struct afs_volume_status vs; in afs_statfs() local
540 ret = afs_vnode_get_volume_status(vnode, key, &vs); in afs_statfs()
551 if (vs.max_quota == 0) in afs_statfs()
552 buf->f_blocks = vs.part_max_blocks; in afs_statfs()
554 buf->f_blocks = vs.max_quota; in afs_statfs()
555 buf->f_bavail = buf->f_bfree = buf->f_blocks - vs.blocks_in_use; in afs_statfs()
Dfsclient.c216 struct afs_volume_status *vs) in xdr_decode_AFSFetchVolumeStatus() argument
220 vs->vid = ntohl(*bp++); in xdr_decode_AFSFetchVolumeStatus()
221 vs->parent_id = ntohl(*bp++); in xdr_decode_AFSFetchVolumeStatus()
222 vs->online = ntohl(*bp++); in xdr_decode_AFSFetchVolumeStatus()
223 vs->in_service = ntohl(*bp++); in xdr_decode_AFSFetchVolumeStatus()
224 vs->blessed = ntohl(*bp++); in xdr_decode_AFSFetchVolumeStatus()
225 vs->needs_salvage = ntohl(*bp++); in xdr_decode_AFSFetchVolumeStatus()
226 vs->type = ntohl(*bp++); in xdr_decode_AFSFetchVolumeStatus()
227 vs->min_quota = ntohl(*bp++); in xdr_decode_AFSFetchVolumeStatus()
228 vs->max_quota = ntohl(*bp++); in xdr_decode_AFSFetchVolumeStatus()
[all …]
Dvnode.c877 struct afs_volume_status *vs) in afs_vnode_get_volume_status() argument
897 ret = afs_fs_get_volume_status(server, key, vnode, vs, &afs_sync_call); in afs_vnode_get_volume_status()