Uploaded image for project: 'Lustre'
  1. Lustre
  2. LU-14188

rw_semaphore in the iam_container structure that never been used

Details

    • Bug
    • Resolution: Fixed
    • Minor
    • Lustre 2.15.0
    • None
    • 3
    • 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.

      Attachments

        Issue Links

          Activity

            [LU-14188] rw_semaphore in the iam_container structure that never been used
            pjones Peter Jones added a comment -

            Landed for 2.15

            pjones Peter Jones added a comment - Landed for 2.15

            "Oleg Drokin <green@whamcloud.com>" merged in patch https://review.whamcloud.com/40890/
            Subject: LU-14188 osd: remove not used iam_container lock
            Project: fs/lustre-release
            Branch: master
            Current Patch Set:
            Commit: 4afdbf9dfd3b33510bf9f1d8a74c8655de5b086e

            gerrit Gerrit Updater added a comment - "Oleg Drokin <green@whamcloud.com>" merged in patch https://review.whamcloud.com/40890/ Subject: LU-14188 osd: remove not used iam_container lock Project: fs/lustre-release Branch: master Current Patch Set: Commit: 4afdbf9dfd3b33510bf9f1d8a74c8655de5b086e

            Artem Blagodarenko (artem.blagodarenko@hpe.com) uploaded a new patch: https://review.whamcloud.com/40890
            Subject: LU-14188 osd: remove not used iam_container lock
            Project: fs/lustre-release
            Branch: master
            Current Patch Set: 1
            Commit: b47f3b8dd761d9c7cf20ee004d401540ebb218ba

            gerrit Gerrit Updater added a comment - Artem Blagodarenko (artem.blagodarenko@hpe.com) uploaded a new patch: https://review.whamcloud.com/40890 Subject: LU-14188 osd: remove not used iam_container lock Project: fs/lustre-release Branch: master Current Patch Set: 1 Commit: b47f3b8dd761d9c7cf20ee004d401540ebb218ba

            People

              artem_blagodarenko Artem Blagodarenko (Inactive)
              artem_blagodarenko Artem Blagodarenko (Inactive)
              Votes:
              0 Vote for this issue
              Watchers:
              4 Start watching this issue

              Dates

                Created:
                Updated:
                Resolved: