Symbol: stfs
arch/powerpc/math-emu/math.c
245
case STFS: func = stfs; type = D; break;
arch/powerpc/math-emu/math.c
246
case STFSU: func = stfs; type = DU; break;
arch/powerpc/math-emu/math.c
256
case STFSX: func = stfs; type = XE; break;
arch/powerpc/math-emu/math.c
257
case STFSUX: func = stfs; type = XEU; break;
arch/powerpc/math-emu/math.c
66
FLOATFUNC(stfs);
fs/smb/server/smb2pdu.c
5497
struct kstatfs stfs;
fs/smb/server/smb2pdu.c
5510
rc = vfs_statfs(&path, &stfs);
fs/smb/server/smb2pdu.c
5555
info->MaxPathNameComponentLength = cpu_to_le32(stfs.f_namelen);
fs/smb/server/smb2pdu.c
5602
info->TotalAllocationUnits = cpu_to_le64(stfs.f_blocks);
fs/smb/server/smb2pdu.c
5603
info->AvailableAllocationUnits = cpu_to_le64(stfs.f_bfree);
fs/smb/server/smb2pdu.c
5605
info->BytesPerSector = cpu_to_le32(stfs.f_bsize);
fs/smb/server/smb2pdu.c
5614
info->TotalAllocationUnits = cpu_to_le64(stfs.f_blocks);
fs/smb/server/smb2pdu.c
5616
cpu_to_le64(stfs.f_bavail);
fs/smb/server/smb2pdu.c
5618
cpu_to_le64(stfs.f_bfree);
fs/smb/server/smb2pdu.c
5620
info->BytesPerSector = cpu_to_le32(stfs.f_bsize);
fs/smb/server/smb2pdu.c
5634
memcpy(info->objid, &stfs.f_fsid, sizeof(stfs.f_fsid));
fs/smb/server/smb2pdu.c
5695
info->OptimalTransferSize = cpu_to_le32(stfs.f_bsize);
fs/smb/server/smb2pdu.c
5696
info->BlockSize = cpu_to_le32(stfs.f_bsize);
fs/smb/server/smb2pdu.c
5697
info->TotalBlocks = cpu_to_le64(stfs.f_blocks);
fs/smb/server/smb2pdu.c
5698
info->BlocksAvail = cpu_to_le64(stfs.f_bfree);
fs/smb/server/smb2pdu.c
5699
info->UserBlocksAvail = cpu_to_le64(stfs.f_bavail);
fs/smb/server/smb2pdu.c
5700
info->TotalFileNodes = cpu_to_le64(stfs.f_files);
fs/smb/server/smb2pdu.c
5701
info->FreeFileNodes = cpu_to_le64(stfs.f_ffree);
tools/testing/selftests/powerpc/alignment/alignment_handler.c
547
STORE_FLOAT_DFORM_TEST(stfs);