]> git.droids-corp.org - dpdk.git/commitdiff
eal/linux: remove useless unlock of hugepage when clearing
authorAnatoly Burakov <anatoly.burakov@intel.com>
Wed, 25 Apr 2018 10:08:13 +0000 (11:08 +0100)
committerThomas Monjalon <thomas@monjalon.net>
Wed, 25 Apr 2018 10:41:55 +0000 (12:41 +0200)
Coverity was complaining about not checking result of call to
fcntl() for unlocking the file. Disregarding the fact that error
value returned from fcntl() unlock call is highly unlikely in the
first place, we are subsequently calling close() on that same fd,
which will drop the lock, which makes call to fcntl() unnecessary.

Fix this by removing a call to fcntl() altogether.

Coverity issue: 272607
Fixes: 66cc45e293ed ("mem: replace memseg with memseg lists")
Signed-off-by: Anatoly Burakov <anatoly.burakov@intel.com>
lib/librte_eal/linuxapp/eal/eal_hugepage_info.c

index db5aabdf8dc2f408d94b14bfda1e99741e5799e8..485a89e12ddef1ae804b790f1023e74233c53459 100644 (file)
@@ -304,11 +304,8 @@ clear_hugedir(const char * hugedir)
                lck_result = fcntl(fd, F_SETLK, &lck);
 
                /* if lock succeeds, unlock and remove the file */
-               if (lck_result != -1) {
-                       lck.l_type = F_UNLCK;
-                       fcntl(fd, F_SETLK, &lck);
+               if (lck_result != -1)
                        unlinkat(dir_fd, dirent->d_name, 0);
-               }
                close (fd);
                dirent = readdir(dir);
        }