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

Commit 1ae4cfa0 authored by Parav Pandit's avatar Parav Pandit Committed by Doug Ledford
Browse files

RDMA/core: Rename ports_parent to ports_kobj



Normally kobj objects have kobj suffix to reflect it.
Rename ports_parent to ports_kobj.

Signed-off-by: default avatarParav Pandit <parav@mellanox.com>
Signed-off-by: default avatarLeon Romanovsky <leonro@mellanox.com>
Signed-off-by: default avatarDoug Ledford <dledford@redhat.com>
parent 0f6ef65d
Loading
Loading
Loading
Loading
+4 −5
Original line number Diff line number Diff line
@@ -1036,7 +1036,7 @@ static int add_port(struct ib_device *device, int port_num,
	p->port_num   = port_num;

	ret = kobject_init_and_add(&p->kobj, &port_type,
				   device->ports_parent,
				   device->ports_kobj,
				   "%d", port_num);
	if (ret) {
		kfree(p);
@@ -1305,7 +1305,7 @@ static void free_port_list_attributes(struct ib_device *device)
		kobject_put(p);
	}

	kobject_put(device->ports_parent);
	kobject_put(device->ports_kobj);
}

int ib_device_register_sysfs(struct ib_device *device,
@@ -1323,9 +1323,8 @@ int ib_device_register_sysfs(struct ib_device *device,
	if (ret)
		goto err;

	device->ports_parent = kobject_create_and_add("ports",
						      &class_dev->kobj);
	if (!device->ports_parent) {
	device->ports_kobj = kobject_create_and_add("ports", &class_dev->kobj);
	if (!device->ports_kobj) {
		ret = -ENOMEM;
		goto err_put;
	}
+1 −1
Original line number Diff line number Diff line
@@ -2542,7 +2542,7 @@ struct ib_device {
	/* First group for device attributes, NULL terminated array */
	const struct attribute_group	*groups[2];

	struct kobject               *ports_parent;
	struct kobject			*ports_kobj;
	struct list_head             port_list;

	enum {