mirror of
https://github.com/linux-msm/laptops-kernel.git
synced 2026-08-13 14:19:53 -07:00
Merge branch 'kexec-fixes' of https://git.kernel.org/pub/scm/linux/kernel/git/liveupdate/linux.git
This commit is contained in:
@@ -81,7 +81,6 @@ static int add_key_to_keyring(struct dm_crypt_key *dm_key,
|
||||
kexec_dprintk("Error when adding key");
|
||||
}
|
||||
|
||||
key_ref_put(keyring_ref);
|
||||
return r;
|
||||
}
|
||||
|
||||
@@ -104,6 +103,7 @@ static int restore_dm_crypt_keys_to_thread_keyring(void)
|
||||
struct dm_crypt_key *key;
|
||||
size_t keys_header_size;
|
||||
key_ref_t keyring_ref;
|
||||
int ret = 0;
|
||||
u64 addr;
|
||||
|
||||
/* find the target keyring (which must be writable) */
|
||||
@@ -118,7 +118,8 @@ static int restore_dm_crypt_keys_to_thread_keyring(void)
|
||||
dm_crypt_keys_read((char *)&key_count, sizeof(key_count), &addr);
|
||||
if (key_count > KEY_NUM_MAX) {
|
||||
kexec_dprintk("Failed to read the number of dm-crypt keys\n");
|
||||
return -1;
|
||||
ret = -1;
|
||||
goto out;
|
||||
}
|
||||
|
||||
kexec_dprintk("There are %u keys\n", key_count);
|
||||
@@ -126,8 +127,10 @@ static int restore_dm_crypt_keys_to_thread_keyring(void)
|
||||
|
||||
keys_header_size = get_keys_header_size(key_count);
|
||||
keys_header = kzalloc(keys_header_size, GFP_KERNEL);
|
||||
if (!keys_header)
|
||||
return -ENOMEM;
|
||||
if (!keys_header) {
|
||||
ret = -ENOMEM;
|
||||
goto out;
|
||||
}
|
||||
|
||||
dm_crypt_keys_read((char *)keys_header, keys_header_size, &addr);
|
||||
|
||||
@@ -137,7 +140,9 @@ static int restore_dm_crypt_keys_to_thread_keyring(void)
|
||||
add_key_to_keyring(key, keyring_ref);
|
||||
}
|
||||
|
||||
return 0;
|
||||
out:
|
||||
key_ref_put(keyring_ref);
|
||||
return ret;
|
||||
}
|
||||
|
||||
static int read_key_from_user_keyring(struct dm_crypt_key *dm_key)
|
||||
|
||||
Reference in New Issue
Block a user