diff options
author | yar <yar@FreeBSD.org> | 2007-05-29 12:40:45 +0000 |
---|---|---|
committer | yar <yar@FreeBSD.org> | 2007-05-29 12:40:45 +0000 |
commit | 80a596eeced750d312f2c869efeafd2f8f2ac397 (patch) | |
tree | a6fa590eb2b0de38e6e26c77c03e780b7b564556 /UPDATING | |
parent | 7db245bca4254bf1dbab159c7a26bb1a884ac845 (diff) | |
download | FreeBSD-src-80a596eeced750d312f2c869efeafd2f8f2ac397.zip FreeBSD-src-80a596eeced750d312f2c869efeafd2f8f2ac397.tar.gz |
Sync ether_ioctl() with ioctl(2) and ifnet.if_ioctl
as to the type of the command argument: int -> u_long.
These types have different widths in the 64-bit world.
Add a note to UPDATING because the change breaks KBI
on 64-bit platforms.
Discussed on: -net, -current
Reviewed by: bms, ru
Diffstat (limited to 'UPDATING')
-rw-r--r-- | UPDATING | 6 |
1 files changed, 6 insertions, 0 deletions
@@ -21,6 +21,12 @@ NOTE TO PEOPLE WHO THINK THAT FreeBSD 7.x IS SLOW: developers choose to disable these features on build machines to maximize performance. +20070529: + The ether_ioctl() function has been synchronized with ioctl(2) + and ifnet.if_ioctl. Due to that, the size of one of its arguments + has changed on 64-bit architectures. All kernel modules using + ether_ioctl() need to be rebuilt on such architectures. + 20070516: Improved INCLUDE_CONFIG_FILE support has been introduced to the config(8) utility. In order to take advantage of this new |