am c93442ee: am 93363482: Evict the key before we delete it.

* commit 'c93442eea4b74858b0b45c69f0642d05bce7e8e8':
  Evict the key before we delete it.
diff --git a/CommandListener.cpp b/CommandListener.cpp
index a9a8031..3a87741 100644
--- a/CommandListener.cpp
+++ b/CommandListener.cpp
@@ -44,8 +44,6 @@
 #include "Process.h"
 #include "Loop.h"
 #include "Devmapper.h"
-#include "Ext4Crypt.h"
-#include "cryptfs.h"
 #include "MoveTask.h"
 #include "TrimTask.h"
 
diff --git a/CryptCommandListener.cpp b/CryptCommandListener.cpp
index 173be63..68db073 100644
--- a/CryptCommandListener.cpp
+++ b/CryptCommandListener.cpp
@@ -289,15 +289,6 @@
         dumpArgs(argc, argv, -1);
         cryptfs_clear_password();
         rc = 0;
-    } else if (!strcmp(argv[1], "setusercryptopolicies")) {
-        if (argc != 3) {
-            cli->sendMsg(ResponseCode::CommandSyntaxError,
-                "Usage: cryptfs setusercryptopolicies <path>", false);
-            return 0;
-        }
-        SLOGD("cryptfs setusercryptopolicies");
-        dumpArgs(argc, argv, -1);
-        rc = e4crypt_set_user_crypto_policies(argv[2]);
     } else if (!strcmp(argv[1], "createnewuserdir")) {
         if (argc != 4) {
             cli->sendMsg(ResponseCode::CommandSyntaxError,
diff --git a/VolumeManager.cpp b/VolumeManager.cpp
old mode 100755
new mode 100644