You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Data Type: ino_t
This is an unsigned integer type used to represent file serial numbers. (In Unix jargon, these are sometimes called inode numbers.) In the GNU C Library, this type is no narrower than unsigned int.
因此存在溢出可能。
在实际使用docker部署的情况中,出现了st_ino比较大的情况,导致sf。
[10 Aug 17:56:49] ERROR: st_dev: 64769, st_ino: 1611759572, hashval: -1602390577
The text was updated successfully, but these errors were encountered:
beast_cache_hash计算使用key->device * 3 + key->inode * 7,且使用int保存并用作index计算。
st_ino的定义是不小于uint:
因此存在溢出可能。
在实际使用docker部署的情况中,出现了st_ino比较大的情况,导致sf。
The text was updated successfully, but these errors were encountered: