From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from us-smtp-delivery-124.mimecast.com (us-smtp-delivery-124.mimecast.com [170.10.129.124]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.subspace.kernel.org (Postfix) with ESMTPS id C0BE874BF6 for ; Thu, 14 Mar 2024 18:43:23 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=170.10.129.124 ARC-Seal:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1710441805; cv=none; b=hIzBrllDZVg1abAEOXEPDawgwldPJD1D6kuRTzGpHryykc2rCCMH8kn3iP58oA+TrGX6iEoz5vmDdQ1g8Tf8ZE1+UKG8rFcCsE4uSFImNA4t0u91PBRwgD2Q5BPN1Pj2ZMm6gLkjnIxbYfsfOduQRbLvuCv80BpUrIMNNocAt4M= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1710441805; c=relaxed/simple; bh=nI9ljV1P4oULiL6aEE9RUXCmPt/OHU+mpJxQBdt5abk=; h=Date:From:To:Cc:Subject:Message-ID:MIME-Version:Content-Type: Content-Disposition; b=o+XRRWllUA2+7Nvjz+nnzlBJAoeIjC2k3WPEnMN67iANZhAtAvYkTn/tJPxWGzyQD2Ti9rxMl1W0AYd4yOV3vrB0Iu8iYQFKohZ4KwNwqBQqp73w9gaYgKlqve0JVFS6sm/6DvpLTN8rwu/FUxzahnR9MJFpixcK5p8vsoncYyc= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dmarc=pass (p=none dis=none) header.from=redhat.com; spf=pass smtp.mailfrom=redhat.com; dkim=pass (1024-bit key) header.d=redhat.com header.i=@redhat.com header.b=Ff9Nraj+; arc=none smtp.client-ip=170.10.129.124 Authentication-Results: smtp.subspace.kernel.org; dmarc=pass (p=none dis=none) header.from=redhat.com Authentication-Results: smtp.subspace.kernel.org; spf=pass smtp.mailfrom=redhat.com Authentication-Results: smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=redhat.com header.i=@redhat.com header.b="Ff9Nraj+" DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=redhat.com; s=mimecast20190719; t=1710441802; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:cc:mime-version:mime-version:content-type:content-type; bh=SOY7Ku6lBK1MUVkI3MgivQbxl+Npm8EWVdz/D2Q1yMo=; b=Ff9Nraj+0sSZmfB4b5e45ea8xvIwHiN7+4IoBzqCQTNpxGzY5EQC2IXq5buc6Yt5etqVjP 6LHt2CjkzygrZMDLv73JIir0csnGWcB+89vmb6Cu0Sl8TQomJDWm7jBptzBz2zTil/287j TcMkPwJCXGe8CxKIDOyeF5qT4UakQvk= Received: from mimecast-mx02.redhat.com (mimecast-mx02.redhat.com [66.187.233.88]) by relay.mimecast.com with ESMTP with STARTTLS (version=TLSv1.3, cipher=TLS_AES_256_GCM_SHA384) id us-mta-643-TlQBXOeOMpaGftmfF8WMkA-1; Thu, 14 Mar 2024 14:43:20 -0400 X-MC-Unique: TlQBXOeOMpaGftmfF8WMkA-1 Received: from smtp.corp.redhat.com (int-mx08.intmail.prod.int.rdu2.redhat.com [10.11.54.8]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits) server-digest SHA256) (No client certificate requested) by mimecast-mx02.redhat.com (Postfix) with ESMTPS id 6BEEB8007A3; Thu, 14 Mar 2024 18:43:20 +0000 (UTC) Received: from redhat.com (unknown [10.22.34.28]) by smtp.corp.redhat.com (Postfix) with ESMTPS id D5185C04129; Thu, 14 Mar 2024 18:43:19 +0000 (UTC) Date: Thu, 14 Mar 2024 13:43:18 -0500 From: David Teigland To: Linus Torvalds Cc: linux-kernel@vger.kernel.org, gfs2@lists.linux.dev Subject: [GIT PULL] dlm fixes for 6.9 Message-ID: Precedence: bulk X-Mailing-List: gfs2@lists.linux.dev List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline X-Scanned-By: MIMEDefang 3.4.1 on 10.11.54.8 Hi Linus, Please pull dlm fixes from tag: git://git.kernel.org/pub/scm/linux/kernel/git/teigland/linux-dlm.git dlm-6.9 Fix two refcounting bugs from recent changes: - misuse of atomic_dec_and_test results in missed ref decrement - wrong variable assignment results in another missed ref decrement Thanks, Dave fs/dlm/lock.c | 10 ++++++---- fs/dlm/user.c | 10 +++++----- 2 files changed, 11 insertions(+), 9 deletions(-) Alexander Aring (2): dlm: fix user space lkb refcounting dlm: fix off-by-one waiters refcount handling