From 6acf6754e6c512119f236efedf21e1233b75be7c Mon Sep 17 00:00:00 2001 From: Zac Medico Date: Thu, 14 Sep 2006 07:44:54 +0000 Subject: Simplify portage_locks.hardlink_is_mine() so that it only checks the number of links. Nothing more is needed. svn path=/main/trunk/; revision=4448 --- pym/portage_locks.py | 14 ++------------ 1 file changed, 2 insertions(+), 12 deletions(-) (limited to 'pym/portage_locks.py') diff --git a/pym/portage_locks.py b/pym/portage_locks.py index 98ccab8ae..77169906c 100644 --- a/pym/portage_locks.py +++ b/pym/portage_locks.py @@ -193,19 +193,9 @@ def hardlink_active(lock): def hardlink_is_mine(link,lock): try: - myhls = os.stat(link) - mylfs = os.stat(lock) + return os.stat(link).st_nlink == 2 except OSError: - myhls = None - mylfs = None - - if myhls: - if myhls[stat.ST_NLINK] == 2: - return True - if mylfs: - if mylfs[stat.ST_INO] == myhls[stat.ST_INO]: - return True - return False + return False def hardlink_lockfile(lockfilename, max_wait=14400): """Does the NFS, hardlink shuffle to ensure locking on the disk. -- cgit v1.2.3-1-g7c22