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
5945
struct kstatfs stfs;
fs/smb/server/smb2pdu.c
5958
rc = vfs_statfs(&path, &stfs);
fs/smb/server/smb2pdu.c
6020
info->MaxPathNameComponentLength = cpu_to_le32(stfs.f_namelen);
fs/smb/server/smb2pdu.c
6068
info->TotalAllocationUnits = cpu_to_le64(stfs.f_blocks);
fs/smb/server/smb2pdu.c
6069
info->AvailableAllocationUnits = cpu_to_le64(stfs.f_bfree);
fs/smb/server/smb2pdu.c
6071
info->BytesPerSector = cpu_to_le32(stfs.f_bsize);
fs/smb/server/smb2pdu.c
6080
info->TotalAllocationUnits = cpu_to_le64(stfs.f_blocks);
fs/smb/server/smb2pdu.c
6082
cpu_to_le64(stfs.f_bavail);
fs/smb/server/smb2pdu.c
6084
cpu_to_le64(stfs.f_bfree);
fs/smb/server/smb2pdu.c
6086
info->BytesPerSector = cpu_to_le32(stfs.f_bsize);
fs/smb/server/smb2pdu.c
6100
memcpy(info->objid, &stfs.f_fsid, sizeof(stfs.f_fsid));
fs/smb/server/smb2pdu.c
6161
info->OptimalTransferSize = cpu_to_le32(stfs.f_bsize);
fs/smb/server/smb2pdu.c
6162
info->BlockSize = cpu_to_le32(stfs.f_bsize);
fs/smb/server/smb2pdu.c
6163
info->TotalBlocks = cpu_to_le64(stfs.f_blocks);
fs/smb/server/smb2pdu.c
6164
info->BlocksAvail = cpu_to_le64(stfs.f_bfree);
fs/smb/server/smb2pdu.c
6165
info->UserBlocksAvail = cpu_to_le64(stfs.f_bavail);
fs/smb/server/smb2pdu.c
6166
info->TotalFileNodes = cpu_to_le64(stfs.f_files);
fs/smb/server/smb2pdu.c
6167
info->FreeFileNodes = cpu_to_le64(stfs.f_ffree);
tools/testing/selftests/powerpc/alignment/alignment_handler.c
547
STORE_FLOAT_DFORM_TEST(stfs);