aboutsummaryrefslogtreecommitdiffstats
path: root/uncrypt/uncrypt.cpp
diff options
context:
space:
mode:
authorJaegeuk Kim <jaegeuk@google.com>2018-07-23 15:38:35 -0700
committerJaegeuk Kim <jaegeuk@google.com>2018-08-01 03:52:51 +0000
commit2669da0d01e141962e898ee50ec4895383df0aaf (patch)
tree32001fdbae7387443e9fe0790fba1a5319eff56e /uncrypt/uncrypt.cpp
parent561ee9362cc0a18f01521a121ae7a93538098e56 (diff)
downloadandroid_bootable_recovery-2669da0d01e141962e898ee50ec4895383df0aaf.tar.gz
android_bootable_recovery-2669da0d01e141962e898ee50ec4895383df0aaf.tar.bz2
android_bootable_recovery-2669da0d01e141962e898ee50ec4895383df0aaf.zip
uncrypt: fix f2fs ioctl argument for pin_file
This patch fixes missing f2fs ioctl call. Change-Id: Id840b76b9d5c580041aaee4501ac8e69fc3fb818 Signed-off-by: Jaegeuk Kim <jaegeuk@google.com>
Diffstat (limited to 'uncrypt/uncrypt.cpp')
-rw-r--r--uncrypt/uncrypt.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/uncrypt/uncrypt.cpp b/uncrypt/uncrypt.cpp
index 16036f9c..95f40c71 100644
--- a/uncrypt/uncrypt.cpp
+++ b/uncrypt/uncrypt.cpp
@@ -332,7 +332,8 @@ static int produce_block_map(const char* path, const char* map_file, const char*
#define F2FS_IOC_GET_PIN_FILE _IOW(F2FS_IOCTL_MAGIC, 14, __u32)
#endif
if (f2fs_fs) {
- int error = ioctl(fd, F2FS_IOC_SET_PIN_FILE);
+ __u32 set = 1;
+ int error = ioctl(fd, F2FS_IOC_SET_PIN_FILE, &set);
// Don't break the old kernels which don't support it.
if (error && errno != ENOTTY && errno != ENOTSUP) {
PLOG(ERROR) << "Failed to set pin_file for f2fs: " << path << " on " << blk_dev;