[LU-14188] rw_semaphore in the iam_container structure that never been used Created: 07/Dec/20 Updated: 30/Nov/21 Resolved: 30/Nov/21 |
|
| Status: | Resolved |
| Project: | Lustre |
| Component/s: | None |
| Affects Version/s: | None |
| Fix Version/s: | Lustre 2.15.0 |
| Type: | Bug | Priority: | Minor |
| Reporter: | Artem Blagodarenko (Inactive) | Assignee: | Artem Blagodarenko (Inactive) |
| Resolution: | Fixed | Votes: | 0 |
| Labels: | patch | ||
| Issue Links: |
|
||||||||||||
| Severity: | 3 | ||||||||||||
| Rank (Obsolete): | 9223372036854775807 | ||||||||||||
| Description |
|
There is an rw_semaphore
struct iam_container {
...
/*
* read-write lock protecting index consistency.
*/
struct rw_semaphore ic_sem; <<<<<<
struct dynlock ic_tree_lock;
/* Protect ic_idle_bh */
struct mutex ic_idle_mutex;
...
};
There is initialization
2 234 lustre/osd-ldiskfs/osd_iam.c <<iam_container_init>>
init_rwsem(&c->ic_sem);
There are wrappers
3 622 lustre/osd-ldiskfs/osd_iam.c <<iam_container_write_lock>>
down_write(&ic->ic_sem);
4 627 lustre/osd-ldiskfs/osd_iam.c <<iam_container_write_unlock>>
up_write(&ic->ic_sem);
5 632 lustre/osd-ldiskfs/osd_iam.c <<iam_container_read_lock>>
down_read(&ic->ic_sem);
6 637 lustre/osd-ldiskfs/osd_iam.c <<iam_container_read_unlock>>
up_read(&ic->ic_sem);
But this wrappers are not used. And, based on the git history, never been used. Let's delete them. |
| Comments |
| Comment by Gerrit Updater [ 07/Dec/20 ] |
|
Artem Blagodarenko (artem.blagodarenko@hpe.com) uploaded a new patch: https://review.whamcloud.com/40890 |
| Comment by Gerrit Updater [ 30/Nov/21 ] |
|
"Oleg Drokin <green@whamcloud.com>" merged in patch https://review.whamcloud.com/40890/ |
| Comment by Peter Jones [ 30/Nov/21 ] |
|
Landed for 2.15 |