Skip to content

Commit

Permalink
Update.
Browse files Browse the repository at this point in the history
2003-09-27  Ulrich Drepper  <drepper@redhat.com>

	* sysdeps/unix/sysv/linux/ustat.c (ustat): Set errno to EINVAL if
	the device ID is invalid and return -1.
	* sysdeps/unix/sysv/linux/xmknod.c (__xmknod): Likewise.
  • Loading branch information
Ulrich Drepper committed Sep 27, 2003
1 parent dc2b164 commit b1c74af
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 2 deletions.
6 changes: 6 additions & 0 deletions ChangeLog
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
2003-09-27 Ulrich Drepper <drepper@redhat.com>

* sysdeps/unix/sysv/linux/ustat.c (ustat): Set errno to EINVAL if
the device ID is invalid and return -1.
* sysdeps/unix/sysv/linux/xmknod.c (__xmknod): Likewise.

2003-09-26 Andreas Schwab <schwab@suse.de>

* sysdeps/unix/sysv/linux/ia64/getcontext.S: Pass fourth argument to
Expand Down
5 changes: 4 additions & 1 deletion sysdeps/unix/sysv/linux/ustat.c
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,10 @@ ustat (dev_t dev, struct ustat *ubuf)
/* We must convert the value to dev_t type used by the kernel. */
k_dev = dev & ((1ULL << 32) - 1);
if (k_dev != dev)
return EOVERFLOW;
{
__set_errno (EINVAL);
return -1;
}

return INLINE_SYSCALL (ustat, 2, (unsigned int) k_dev, CHECK_1 (ubuf));
}
5 changes: 4 additions & 1 deletion sysdeps/unix/sysv/linux/xmknod.c
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,10 @@ __xmknod (int vers, const char *path, mode_t mode, dev_t *dev)
/* We must convert the value to dev_t type used by the kernel. */
k_dev = (*dev) & ((1ULL << 32) - 1);
if (k_dev != *dev)
return EOVERFLOW;
{
__set_errno (EINVAL);
return -1;
}

return INLINE_SYSCALL (mknod, 3, CHECK_STRING (path), mode,
(unsigned int) k_dev);
Expand Down

0 comments on commit b1c74af

Please sign in to comment.