Skip to content

Commit

Permalink
nvmet: fix the structure member indentation
Browse files Browse the repository at this point in the history
This is a cleanup patch which fixes the structure member indentation
introduced by the p2p:

commit c692509 ("nvmet: Optionally use PCI P2P memory").
We don't change any functionality in this patch.

This is needed so that any future members will also follow the uniform
indentation.

Signed-off-by: Chaitanya Kulkarni <chaitanya.kulkarni@wdc.com>
Reviewed-by: Sagi Grimberg <sagi@grimberg.me>
Acked-by: Logan Gunthorpe <logang@deltatee.com>
Signed-off-by: Christoph Hellwig <hch@lst.de>
Signed-off-by: Jens Axboe <axboe@kernel.dk>
  • Loading branch information
Chaitanya Kulkarni authored and Jens Axboe committed Dec 8, 2018
1 parent cb019da commit 5a3a6d6
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions drivers/nvme/target/nvmet.h
Original file line number Diff line number Diff line change
Expand Up @@ -200,8 +200,8 @@ struct nvmet_ctrl {
char subsysnqn[NVMF_NQN_FIELD_LEN];
char hostnqn[NVMF_NQN_FIELD_LEN];

struct device *p2p_client;
struct radix_tree_root p2p_ns_map;
struct device *p2p_client;
struct radix_tree_root p2p_ns_map;
};

struct nvmet_subsys {
Expand Down Expand Up @@ -314,8 +314,8 @@ struct nvmet_req {
void (*execute)(struct nvmet_req *req);
const struct nvmet_fabrics_ops *ops;

struct pci_dev *p2p_dev;
struct device *p2p_client;
struct pci_dev *p2p_dev;
struct device *p2p_client;
};

extern struct workqueue_struct *buffered_io_wq;
Expand Down

0 comments on commit 5a3a6d6

Please sign in to comment.