aboutsummaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
authorJason A. Donenfeld <Jason@zx2c4.com>2024-07-15 04:50:07 +0200
committerJason A. Donenfeld <Jason@zx2c4.com>2024-07-19 20:22:48 +0200
commit13f75d9ecf3d8efcf597dfcd8f7be7460cdaa11a (patch)
treece77cb6c5c20835481238040f0bef4aae528a04c
parentselftests/vDSO: add tests for vgetrandom (diff)
downloadwireguard-linux-13f75d9ecf3d8efcf597dfcd8f7be7460cdaa11a.tar.xz
wireguard-linux-13f75d9ecf3d8efcf597dfcd8f7be7460cdaa11a.zip
random: note that RNDGETPOOL was removed in 2.6.9-rc2
RNDGETPOOL was thankfully removed twenty years ago, but it's stuck around in headers. Probably removing it from uapi headers isn't great in case there are some weird users out there, but we should at least mark this as having been removed, to save future readers the same goose chase I just went on. Link: https://lore.kernel.org/all/E1By1St-0001TS-Qj@thunk.org/ Link: https://lore.kernel.org/all/Pine.LNX.4.58.0409130937050.4094@ppc970.osdl.org/ Signed-off-by: Jason A. Donenfeld <Jason@zx2c4.com>
Diffstat (limited to '')
-rw-r--r--include/uapi/linux/random.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/uapi/linux/random.h b/include/uapi/linux/random.h
index 2a3fe4c2cdc9..1dd047ec98a1 100644
--- a/include/uapi/linux/random.h
+++ b/include/uapi/linux/random.h
@@ -20,7 +20,7 @@
/* Add to (or subtract from) the entropy count. (Superuser only.) */
#define RNDADDTOENTCNT _IOW( 'R', 0x01, int )
-/* Get the contents of the entropy pool. (Superuser only.) */
+/* Get the contents of the entropy pool. (Superuser only.) (Removed in 2.6.9-rc2.) */
#define RNDGETPOOL _IOR( 'R', 0x02, int [2] )
/*