Fix opening regular files as blockstore

sec_osd_msgr
Vitaliy Filippov 2021-12-15 02:08:58 +03:00
parent 3f33095fd7
commit 999bed8514
1 changed files with 4 additions and 0 deletions

View File

@ -306,6 +306,10 @@ static void check_size(int fd, uint64_t *size, uint64_t *sectsize, std::string n
if (S_ISREG(st.st_mode))
{
*size = st.st_size;
if (sectsize)
{
*sectsize = st.st_blksize;
}
}
else if (S_ISBLK(st.st_mode))
{