diff options
author | Brian Behlendorf <[email protected]> | 2016-01-19 09:04:44 -0800 |
---|---|---|
committer | Brian Behlendorf <[email protected]> | 2016-01-20 11:37:33 -0800 |
commit | ae3a373566042ad086b51dce66059c8cae321faf (patch) | |
tree | 68d1d72c1aba6a0b66f34ca9f4d464bb6a133c07 | |
parent | 4967a3eb9d9de0295626fc7a3c1d1da52ea1498d (diff) |
Linux 4.5 compat: pfn_t typedef
The pfn_t typedef was inherited from Illumos but never directly
used by any libspl consumers. This doesn't cause any issues in
user space but for consistency with the kernel build it has been
removed. See torvalds/linux/commit/34c0fd54.
Signed-off-by: Brian Behlendorf <[email protected]>
Signed-off-by: Tim Chase <[email protected]>
Signed-off-by: Chunwei Chen <[email protected]>
Issue #4228
-rw-r--r-- | lib/libspl/include/sys/types.h | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/lib/libspl/include/sys/types.h b/lib/libspl/include/sys/types.h index bd34dec32..9816345a8 100644 --- a/lib/libspl/include/sys/types.h +++ b/lib/libspl/include/sys/types.h @@ -53,7 +53,6 @@ typedef u_longlong_t u_offset_t; typedef u_longlong_t len_t; typedef longlong_t diskaddr_t; -typedef ulong_t pfn_t; /* page frame number */ typedef ulong_t pgcnt_t; /* number of pages */ typedef long spgcnt_t; /* signed number of pages */ |