The __sem_check_add_mapping internal stat calls fails with
EOVERFLOW if system time is larger than 32 bit.
It is a missing spot from
52a5fe70a2c fix to use 64 bit stat
internally.
Checked on x86_64-linux-gnu and i686-linux-gnu.
struct inuse_sem
{
dev_t dev;
- ino_t ino;
+ ino64_t ino;
int refcnt;
sem_t *sem;
char name[];
struct search_sem
{
dev_t dev;
- ino_t ino;
+ ino64_t ino;
int refcnt;
sem_t *sem;
char name[NAME_MAX + 1];
sem_t *result = SEM_FAILED;
/* Get the information about the file. */
- struct stat64 st;
- if (__fstat64 (fd, &st) == 0)
+ struct __stat64_t64 st;
+ if (__fstat64_time64 (fd, &st) == 0)
{
/* Get the lock. */
lll_lock (sem_mappings_lock, LLL_PRIVATE);