1
0
mirror of https://git.code.sf.net/p/linux-ima/ima-evm-utils synced 2025-09-18 09:55:21 +02:00

Remove local ioctl definitions and use <linux/fs.h>

Use standard flags, supported by ext2/3/4

Signed-off-by: Dmitry Kasatkin <d.kasatkin@samsung.com>
This commit is contained in:
Dmitry Kasatkin
2014-06-13 14:39:48 +03:00
parent 0636083acd
commit 29adc34d35
2 changed files with 3 additions and 10 deletions

View File

@@ -529,7 +529,7 @@ static int calc_evm_hash(const char *file, unsigned char *hash)
log_err("Unable to open %s\n", file);
return -1;
}
if (ioctl(fd, EXT34_IOC_GETVERSION, &generation)) {
if (ioctl(fd, FS_IOC_GETVERSION, &generation)) {
log_err("ioctl() failed\n");
return -1;
}
@@ -1082,7 +1082,7 @@ static int calc_evm_hmac(const char *file, const char *keyfile, unsigned char *h
log_err("Unable to open %s\n", file);
goto out;
}
if (ioctl(fd, EXT34_IOC_GETVERSION, &generation)) {
if (ioctl(fd, FS_IOC_GETVERSION, &generation)) {
log_err("ioctl() failed\n");
goto out;
}