Fix definition of BLKGETSIZE64 on FreeBSD
The matching ioctl is DIOCGMEDIASIZE. Reviewed-by: Alexander Motin <mav@FreeBSD.org> Reviewed-by: Brian Behlendorf <behlendorf1@llnl.gov> Reviewed-by: Ryan Moeller <freqlabs@FreeBSD.org> Signed-off-by: Alex Richardson <Alexander.Richardson@cl.cam.ac.uk> Closes #10818
This commit is contained in:
parent
c2068750d7
commit
a00c61db44
|
@ -35,12 +35,8 @@
|
||||||
#include <string.h>
|
#include <string.h>
|
||||||
#include <stdlib.h>
|
#include <stdlib.h>
|
||||||
|
|
||||||
/*
|
|
||||||
* Some old glibc headers don't define BLKGETSIZE64
|
|
||||||
* and we don't want to require the kernel headers
|
|
||||||
*/
|
|
||||||
#if !defined(BLKGETSIZE64)
|
#if !defined(BLKGETSIZE64)
|
||||||
#define BLKGETSIZE64 _IOR(0x12, 114, size_t)
|
#define BLKGETSIZE64 DIOCGMEDIASIZE
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
/*
|
/*
|
||||||
|
|
Loading…
Reference in New Issue