Page MenuHomeFreeBSD

Fix freebsd32 mknod(at).
ClosedPublic

Authored by brooks on Nov 9 2018, 6:29 PM.
Tags
None
Referenced Files
F103254722: D17928.diff
Fri, Nov 22, 4:44 PM
Unknown Object (File)
Oct 3 2024, 6:17 PM
Unknown Object (File)
Oct 1 2024, 1:23 AM
Unknown Object (File)
Sep 27 2024, 9:02 AM
Unknown Object (File)
Sep 21 2024, 12:23 PM
Unknown Object (File)
Sep 13 2024, 6:41 AM
Unknown Object (File)
Sep 6 2024, 1:13 AM
Unknown Object (File)
Sep 1 2024, 3:41 AM
Subscribers

Details

Summary

As dev_t is now a 64-bit integer, it requires special handling as a
system call argument. 64-bit arguments are split between two 64-bit
integers due to the way arguments are promoted to allow reuse of most
system call implementations. They must be reassembled before use.
Further, 64-bit arguments at an odd offset (counting from zero) are
padded and slid to the next slot on powerpc and mips. Fix the
non-COMPAT11 system call by adding a freebsd32_mknodat() and
appropriately padded declerations.

The COMPAT11 system calls are fully compatible with the 64-bit
implementations so remove the freebsd32_ versions.

Use uint32_t consistantly as the type of the old dev_t matching the old
definition.

Diff Detail

Repository
rS FreeBSD src repository - subversion
Lint
Lint Not Applicable
Unit
Tests Not Applicable

Event Timeline

This revision is now accepted and ready to land.Nov 9 2018, 7:19 PM
This revision was automatically updated to reflect the committed changes.