/**
  * fscrypt_get_ctx() - Gets an encryption context
- * @inode:       The inode for which we are doing the crypto
  * @gfp_flags:   The gfp flag for memory allocation
  *
  * Allocates and initializes an encryption context.
  *
- * Return: An allocated and initialized encryption context on success; error
- * value or NULL otherwise.
+ * Return: A new encryption context on success; an ERR_PTR() otherwise.
  */
-struct fscrypt_ctx *fscrypt_get_ctx(const struct inode *inode, gfp_t gfp_flags)
+struct fscrypt_ctx *fscrypt_get_ctx(gfp_t gfp_flags)
 {
-       struct fscrypt_ctx *ctx = NULL;
-       struct fscrypt_info *ci = inode->i_crypt_info;
+       struct fscrypt_ctx *ctx;
        unsigned long flags;
 
-       if (ci == NULL)
-               return ERR_PTR(-ENOKEY);
-
        /*
         * We first try getting the ctx from a free list because in
         * the common case the ctx will have an allocated and
 
        BUG_ON(!PageLocked(page));
 
-       ctx = fscrypt_get_ctx(inode, gfp_flags);
+       ctx = fscrypt_get_ctx(gfp_flags);
        if (IS_ERR(ctx))
-               return (struct page *)ctx;
+               return ERR_CAST(ctx);
 
        /* The encryption operation will require a bounce page. */
        ciphertext_page = fscrypt_alloc_bounce_page(ctx, gfp_flags);
 
                        struct fscrypt_ctx *ctx = NULL;
 
                        if (IS_ENCRYPTED(inode) && S_ISREG(inode->i_mode)) {
-                               ctx = fscrypt_get_ctx(inode, GFP_NOFS);
+                               ctx = fscrypt_get_ctx(GFP_NOFS);
                                if (IS_ERR(ctx))
                                        goto set_error_page;
                        }
 
 
 /* crypto.c */
 extern void fscrypt_enqueue_decrypt_work(struct work_struct *);
-extern struct fscrypt_ctx *fscrypt_get_ctx(const struct inode *, gfp_t);
+extern struct fscrypt_ctx *fscrypt_get_ctx(gfp_t);
 extern void fscrypt_release_ctx(struct fscrypt_ctx *);
 extern struct page *fscrypt_encrypt_page(const struct inode *, struct page *,
                                                unsigned int, unsigned int,
 {
 }
 
-static inline struct fscrypt_ctx *fscrypt_get_ctx(const struct inode *inode,
-                                                 gfp_t gfp_flags)
+static inline struct fscrypt_ctx *fscrypt_get_ctx(gfp_t gfp_flags)
 {
        return ERR_PTR(-EOPNOTSUPP);
 }