Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 87f4f6f5 authored by Dmitry Eremin's avatar Dmitry Eremin Committed by Greg Kroah-Hartman
Browse files

staging: lustre: o2iblnd: create union to contain FMR



Create an union to contain the FMR pool structure. This is
for the preparation of adding handling Fast Registeration
support.

Signed-off-by: default avatarDmitry Eremin <dmitry.eremin@intel.com>
Intel-bug-id: https://jira.hpdd.intel.com/browse/LU-5783
Reviewed-on: http://review.whamcloud.com/17606


Reviewed-by: default avatarJames Simmons <uja.ornl@yahoo.com>
Reviewed-by: default avatarDoug Oucharek <doug.s.oucharek@intel.com>
Reviewed-by: default avatarOleg Drokin <oleg.drokin@intel.com>
Signed-off-by: default avatarJames Simmons <jsimmons@infradead.org>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 0d33ec5f
Loading
Loading
Loading
Loading
+7 −7
Original line number Original line Diff line number Diff line
@@ -1302,8 +1302,8 @@ static void kiblnd_destroy_fmr_pool(kib_fmr_pool_t *fpo)
{
{
	LASSERT(!fpo->fpo_map_count);
	LASSERT(!fpo->fpo_map_count);


	if (fpo->fpo_fmr_pool)
	if (fpo->fmr.fpo_fmr_pool)
		ib_destroy_fmr_pool(fpo->fpo_fmr_pool);
		ib_destroy_fmr_pool(fpo->fmr.fpo_fmr_pool);


	if (fpo->fpo_hdev)
	if (fpo->fpo_hdev)
		kiblnd_hdev_decref(fpo->fpo_hdev);
		kiblnd_hdev_decref(fpo->fpo_hdev);
@@ -1359,9 +1359,9 @@ static int kiblnd_create_fmr_pool(kib_fmr_poolset_t *fps,


	fpo->fpo_hdev = kiblnd_current_hdev(dev);
	fpo->fpo_hdev = kiblnd_current_hdev(dev);


	fpo->fpo_fmr_pool = ib_create_fmr_pool(fpo->fpo_hdev->ibh_pd, &param);
	fpo->fmr.fpo_fmr_pool = ib_create_fmr_pool(fpo->fpo_hdev->ibh_pd, &param);
	if (IS_ERR(fpo->fpo_fmr_pool)) {
	if (IS_ERR(fpo->fmr.fpo_fmr_pool)) {
		rc = PTR_ERR(fpo->fpo_fmr_pool);
		rc = PTR_ERR(fpo->fmr.fpo_fmr_pool);
		CERROR("Failed to create FMR pool: %d\n", rc);
		CERROR("Failed to create FMR pool: %d\n", rc);


		kiblnd_hdev_decref(fpo->fpo_hdev);
		kiblnd_hdev_decref(fpo->fpo_hdev);
@@ -1452,7 +1452,7 @@ void kiblnd_fmr_pool_unmap(kib_fmr_t *fmr, int status)
	LASSERT(!rc);
	LASSERT(!rc);


	if (status) {
	if (status) {
		rc = ib_flush_fmr_pool(fpo->fpo_fmr_pool);
		rc = ib_flush_fmr_pool(fpo->fmr.fpo_fmr_pool);
		LASSERT(!rc);
		LASSERT(!rc);
	}
	}


@@ -1494,7 +1494,7 @@ int kiblnd_fmr_pool_map(kib_fmr_poolset_t *fps, __u64 *pages, int npages,
		fpo->fpo_map_count++;
		fpo->fpo_map_count++;
		spin_unlock(&fps->fps_lock);
		spin_unlock(&fps->fps_lock);


		pfmr = ib_fmr_pool_map_phys(fpo->fpo_fmr_pool,
		pfmr = ib_fmr_pool_map_phys(fpo->fmr.fpo_fmr_pool,
					    pages, npages, iov);
					    pages, npages, iov);
		if (likely(!IS_ERR(pfmr))) {
		if (likely(!IS_ERR(pfmr))) {
			fmr->fmr_pool = fpo;
			fmr->fmr_pool = fpo;
+6 −2
Original line number Original line Diff line number Diff line
@@ -295,15 +295,19 @@ typedef struct {
	struct list_head      fpo_list;            /* chain on pool list */
	struct list_head      fpo_list;            /* chain on pool list */
	struct kib_hca_dev    *fpo_hdev;           /* device for this pool */
	struct kib_hca_dev    *fpo_hdev;           /* device for this pool */
	kib_fmr_poolset_t     *fpo_owner;          /* owner of this pool */
	kib_fmr_poolset_t     *fpo_owner;          /* owner of this pool */
	union {
		struct {
			struct ib_fmr_pool *fpo_fmr_pool; /* IB FMR pool */
			struct ib_fmr_pool *fpo_fmr_pool; /* IB FMR pool */
		} fmr;
	};
	unsigned long         fpo_deadline;        /* deadline of this pool */
	unsigned long         fpo_deadline;        /* deadline of this pool */
	int                   fpo_failed;          /* fmr pool is failed */
	int                   fpo_failed;          /* fmr pool is failed */
	int                   fpo_map_count;       /* # of mapped FMR */
	int                   fpo_map_count;       /* # of mapped FMR */
} kib_fmr_pool_t;
} kib_fmr_pool_t;


typedef struct {
typedef struct {
	struct ib_pool_fmr    *fmr_pfmr;           /* IB pool fmr */
	kib_fmr_pool_t        *fmr_pool;           /* pool of FMR */
	kib_fmr_pool_t        *fmr_pool;           /* pool of FMR */
	struct ib_pool_fmr    *fmr_pfmr;           /* IB pool fmr */
} kib_fmr_t;
} kib_fmr_t;


typedef struct kib_net {
typedef struct kib_net {