diff options
| author | Christoph Hellwig <[email protected]> | 2021-05-31 10:25:26 +0300 |
|---|---|---|
| committer | Greg Kroah-Hartman <[email protected]> | 2021-06-04 15:35:03 +0200 |
| commit | 603e4922f1c81fc2ed3a87b4f91a8d3aafc7e093 (patch) | |
| tree | 7d2daef913b0da7452d1a844ee76e150b10c011f /include/uapi/linux | |
| parent | 39ee156c5ac1b9ca42cb7086c7893b19596c85ab (diff) | |
remove the raw driver
The raw driver used to provide direct unbuffered access to block devices
before O_DIRECT was invented. It has been obsolete for more than a
decade.
Acked-by: Greg Kroah-Hartman <[email protected]>
Acked-by: Arnd Bergmann <[email protected]>
Link: https://lore.kernel.org/lkml/Pine.LNX.4.64.0703180754060.6605@CPE00045a9c397f-CM001225dbafb6/
Signed-off-by: Christoph Hellwig <[email protected]>
Link: https://lore.kernel.org/r/[email protected]
Signed-off-by: Greg Kroah-Hartman <[email protected]>
Diffstat (limited to 'include/uapi/linux')
| -rw-r--r-- | include/uapi/linux/raw.h | 17 |
1 files changed, 0 insertions, 17 deletions
diff --git a/include/uapi/linux/raw.h b/include/uapi/linux/raw.h deleted file mode 100644 index 47874919d0b9..000000000000 --- a/include/uapi/linux/raw.h +++ /dev/null @@ -1,17 +0,0 @@ -/* SPDX-License-Identifier: GPL-2.0 WITH Linux-syscall-note */ -#ifndef __LINUX_RAW_H -#define __LINUX_RAW_H - -#include <linux/types.h> - -#define RAW_SETBIND _IO( 0xac, 0 ) -#define RAW_GETBIND _IO( 0xac, 1 ) - -struct raw_config_request -{ - int raw_minor; - __u64 block_major; - __u64 block_minor; -}; - -#endif /* __LINUX_RAW_H */ |