The new function takes the super_block and the index of a device, and
returns the request_queue of the device at that index (whereas the old
function would take a pointer to an array of request_queues and fill them
all up). This allows callers to avoid allocating an array of request_queues
in some cases (when they don't need the array for anything else).

Signed-off-by: Satya Tangirala <sat...@google.com>
---
 fs/crypto/inline_crypt.c | 33 ++++++++++++++-------------------
 fs/f2fs/super.c          | 16 ++++++++++------
 include/linux/fscrypt.h  |  4 ++--
 3 files changed, 26 insertions(+), 27 deletions(-)

diff --git a/fs/crypto/inline_crypt.c b/fs/crypto/inline_crypt.c
index faa25541ccb6..5bbce79df638 100644
--- a/fs/crypto/inline_crypt.c
+++ b/fs/crypto/inline_crypt.c
@@ -33,13 +33,15 @@ static int fscrypt_get_num_devices(struct super_block *sb)
        return 1;
 }
 
-static void fscrypt_get_devices(struct super_block *sb, int num_devs,
-                               struct request_queue **devs)
+static struct request_queue *fscrypt_get_device(struct super_block *sb,
+                                               unsigned int device_index)
 {
-       if (num_devs == 1)
-               devs[0] = bdev_get_queue(sb->s_bdev);
+       if (sb->s_cop->get_device)
+               return sb->s_cop->get_device(sb, device_index);
+       else if (WARN_ON_ONCE(device_index != 0))
+               return NULL;
        else
-               sb->s_cop->get_devices(sb, devs);
+               return bdev_get_queue(sb->s_bdev);
 }
 
 static unsigned int fscrypt_get_dun_bytes(const struct fscrypt_info *ci)
@@ -70,7 +72,7 @@ int fscrypt_select_encryption_impl(struct fscrypt_info *ci)
        struct super_block *sb = inode->i_sb;
        struct blk_crypto_config crypto_cfg;
        int num_devs;
-       struct request_queue **devs;
+       struct request_queue *dev;
        int i;
 
        /* The file must need contents encryption, not filenames encryption */
@@ -106,20 +108,14 @@ int fscrypt_select_encryption_impl(struct fscrypt_info 
*ci)
        crypto_cfg.data_unit_size = sb->s_blocksize;
        crypto_cfg.dun_bytes = fscrypt_get_dun_bytes(ci);
        num_devs = fscrypt_get_num_devices(sb);
-       devs = kmalloc_array(num_devs, sizeof(*devs), GFP_NOFS);
-       if (!devs)
-               return -ENOMEM;
-       fscrypt_get_devices(sb, num_devs, devs);
 
        for (i = 0; i < num_devs; i++) {
-               if (!blk_crypto_config_supported(devs[i], &crypto_cfg))
-                       goto out_free_devs;
+               dev = fscrypt_get_device(sb, i);
+               if (!dev || !blk_crypto_config_supported(dev, &crypto_cfg))
+                       return 0;
        }
 
        ci->ci_inlinecrypt = true;
-out_free_devs:
-       kfree(devs);
-
        return 0;
 }
 
@@ -141,9 +137,6 @@ int fscrypt_prepare_inline_crypt_key(struct 
fscrypt_prepared_key *prep_key,
        if (!blk_key)
                return -ENOMEM;
 
-       blk_key->num_devs = num_devs;
-       fscrypt_get_devices(sb, num_devs, blk_key->devs);
-
        err = blk_crypto_init_key(&blk_key->base, raw_key, crypto_mode,
                                  fscrypt_get_dun_bytes(ci), sb->s_blocksize);
        if (err) {
@@ -158,8 +151,10 @@ int fscrypt_prepare_inline_crypt_key(struct 
fscrypt_prepared_key *prep_key,
         * aren't destroyed until after the filesystem was already unmounted
         * (namely, the per-mode keys in struct fscrypt_master_key).
         */
+       blk_key->num_devs = num_devs;
        for (i = 0; i < num_devs; i++) {
-               if (!blk_get_queue(blk_key->devs[i])) {
+               blk_key->devs[i] = fscrypt_get_device(sb, i);
+               if (!blk_key->devs[i] || !blk_get_queue(blk_key->devs[i])) {
                        fscrypt_err(inode, "couldn't get request_queue");
                        err = -EAGAIN;
                        goto fail;
diff --git a/fs/f2fs/super.c b/fs/f2fs/super.c
index dfa072fa8081..9a6d375cbe4b 100644
--- a/fs/f2fs/super.c
+++ b/fs/f2fs/super.c
@@ -2509,14 +2509,18 @@ static int f2fs_get_num_devices(struct super_block *sb)
        return 1;
 }
 
-static void f2fs_get_devices(struct super_block *sb,
-                            struct request_queue **devs)
+static struct request_queue *f2fs_get_device(struct super_block *sb,
+                                            unsigned int device_index)
 {
        struct f2fs_sb_info *sbi = F2FS_SB(sb);
-       int i;
 
-       for (i = 0; i < sbi->s_ndevs; i++)
-               devs[i] = bdev_get_queue(FDEV(i).bdev);
+       if (WARN_ON_ONCE(device_index >= f2fs_get_num_devices(sb)))
+               return NULL;
+
+       if (!f2fs_is_multi_device(sbi))
+               return bdev_get_queue(sb->s_bdev);
+
+       return bdev_get_queue(FDEV(device_index).bdev);
 }
 
 static const struct fscrypt_operations f2fs_cryptops = {
@@ -2529,7 +2533,7 @@ static const struct fscrypt_operations f2fs_cryptops = {
        .has_stable_inodes      = f2fs_has_stable_inodes,
        .get_ino_and_lblk_bits  = f2fs_get_ino_and_lblk_bits,
        .get_num_devices        = f2fs_get_num_devices,
-       .get_devices            = f2fs_get_devices,
+       .get_device             = f2fs_get_device,
 };
 #endif
 
diff --git a/include/linux/fscrypt.h b/include/linux/fscrypt.h
index 991ff8575d0e..d835fd19a20a 100644
--- a/include/linux/fscrypt.h
+++ b/include/linux/fscrypt.h
@@ -70,8 +70,8 @@ struct fscrypt_operations {
        void (*get_ino_and_lblk_bits)(struct super_block *sb,
                                      int *ino_bits_ret, int *lblk_bits_ret);
        int (*get_num_devices)(struct super_block *sb);
-       void (*get_devices)(struct super_block *sb,
-                           struct request_queue **devs);
+       struct request_queue *(*get_device)(struct super_block *sb,
+                                           unsigned int dev_index);
 };
 
 static inline struct fscrypt_info *fscrypt_get_info(const struct inode *inode)
-- 
2.28.0.806.g8561365e88-goog

Reply via email to