forked from torvalds/linux
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge tag 'ecryptfs-5.6-rc3-fixes' of git://git.kernel.org/pub/scm/li…
…nux/kernel/git/tyhicks/ecryptfs Pull eCryptfs fixes from Tyler Hicks: - downgrade the eCryptfs maintenance status to "Odd Fixes" - change my email address - fix a couple memory leaks in error paths - stability improvement to avoid a needless BUG_ON() * tag 'ecryptfs-5.6-rc3-fixes' of git://git.kernel.org/pub/scm/linux/kernel/git/tyhicks/ecryptfs: ecryptfs: replace BUG_ON with error handling code eCryptfs: Replace deactivated email address MAINTAINERS: eCryptfs: Update maintainer address and downgrade status ecryptfs: fix a memory leak bug in ecryptfs_init_messaging() ecryptfs: fix a memory leak bug in parse_tag_1_packet()
- Loading branch information
Showing
6 changed files
with
11 additions
and
8 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5932,12 +5932,12 @@ S: Maintained | |
F: drivers/media/dvb-frontends/ec100* | ||
|
||
ECRYPT FILE SYSTEM | ||
M: Tyler Hicks <tyhicks@canonical.com> | ||
M: Tyler Hicks <code@tyhicks.com> | ||
L: [email protected] | ||
W: http://ecryptfs.org | ||
W: https://launchpad.net/ecryptfs | ||
T: git git://git.kernel.org/pub/scm/linux/kernel/git/tyhicks/ecryptfs.git | ||
S: Supported | ||
S: Odd Fixes | ||
F: Documentation/filesystems/ecryptfs.txt | ||
F: fs/ecryptfs/ | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -8,7 +8,7 @@ | |
* Copyright (C) 2004-2008 International Business Machines Corp. | ||
* Author(s): Michael A. Halcrow <[email protected]> | ||
* Trevor S. Highland <[email protected]> | ||
* Tyler Hicks <[email protected]> | ||
* Tyler Hicks <[email protected]> | ||
*/ | ||
|
||
#ifndef ECRYPTFS_KERNEL_H | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -7,7 +7,7 @@ | |
* Copyright (C) 2004-2007 International Business Machines Corp. | ||
* Author(s): Michael A. Halcrow <[email protected]> | ||
* Michael C. Thompson <[email protected]> | ||
* Tyler Hicks <[email protected]> | ||
* Tyler Hicks <[email protected]> | ||
*/ | ||
|
||
#include <linux/dcache.h> | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,7 +4,7 @@ | |
* | ||
* Copyright (C) 2004-2008 International Business Machines Corp. | ||
* Author(s): Michael A. Halcrow <[email protected]> | ||
* Tyler Hicks <[email protected]> | ||
* Tyler Hicks <[email protected]> | ||
*/ | ||
#include <linux/sched.h> | ||
#include <linux/slab.h> | ||
|
@@ -379,6 +379,7 @@ int __init ecryptfs_init_messaging(void) | |
* ecryptfs_message_buf_len), | ||
GFP_KERNEL); | ||
if (!ecryptfs_msg_ctx_arr) { | ||
kfree(ecryptfs_daemon_hash); | ||
rc = -ENOMEM; | ||
goto out; | ||
} | ||
|