• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /asuswrt-rt-n18u-9.0.0.4.380.2695/release/src/router/samba-3.5.8/source4/ntvfs/

Lines Matching defs:fs2

568 				      union smb_fsinfo *fs2,
586 if (fs2->generic.out.blocks_total * (double)fs2->generic.out.block_size < bpunit * 512 * 65535.0) {
594 (fs2->generic.out.blocks_total * (double)fs2->generic.out.block_size) / (bpunit * 512);
596 (fs2->generic.out.blocks_free * (double)fs2->generic.out.block_size) / (bpunit * 512);
608 fs->allocation.out.fs_id = fs2->generic.out.fs_id;
609 fs->allocation.out.total_alloc_units = fs2->generic.out.blocks_total;
610 fs->allocation.out.avail_alloc_units = fs2->generic.out.blocks_free;
612 fs->allocation.out.bytes_per_sector = fs2->generic.out.block_size;
616 fs->volume.out.serial_number = fs2->generic.out.serial_number;
617 fs->volume.out.volume_name.s = fs2->generic.out.volume_name;
622 fs->volume_info.out.create_time = fs2->generic.out.create_time;
623 fs->volume_info.out.serial_number = fs2->generic.out.serial_number;
624 fs->volume_info.out.volume_name.s = fs2->generic.out.volume_name;
629 fs->size_info.out.total_alloc_units = fs2->generic.out.blocks_total;
630 fs->size_info.out.avail_alloc_units = fs2->generic.out.blocks_free;
632 fs->size_info.out.bytes_per_sector = fs2->generic.out.block_size;
637 fs->device_info.out.device_type = fs2->generic.out.device_type;
638 fs->device_info.out.characteristics = fs2->generic.out.device_characteristics;
643 fs->attribute_info.out.fs_attr = fs2->generic.out.fs_attr;
644 fs->attribute_info.out.max_file_component_length = fs2->generic.out.max_file_component_length;
645 fs->attribute_info.out.fs_type.s = fs2->generic.out.fs_type;
650 fs->quota_information.out.quota_soft = fs2->generic.out.quota_soft;
651 fs->quota_information.out.quota_hard = fs2->generic.out.quota_hard;
652 fs->quota_information.out.quota_flags = fs2->generic.out.quota_flags;
656 fs->full_size_information.out.total_alloc_units = fs2->generic.out.blocks_total;
657 fs->full_size_information.out.call_avail_alloc_units = fs2->generic.out.blocks_free;
658 fs->full_size_information.out.actual_avail_alloc_units = fs2->generic.out.blocks_free;
660 fs->full_size_information.out.bytes_per_sector = fs2->generic.out.block_size;
664 fs->objectid_information.out.guid = fs2->generic.out.guid;
681 union smb_fsinfo *fs2;
683 fs2 = talloc(req, union smb_fsinfo);
684 if (fs2 == NULL) {
692 status = ntvfs_map_async_setup(ntvfs, req, fs, fs2,
699 fs2->generic.level = RAW_QFS_GENERIC;
701 status = ntvfs->ops->fsinfo(ntvfs, req, fs2);