From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1754330AbbCEG5Y (ORCPT ); Thu, 5 Mar 2015 01:57:24 -0500 Received: from mail.bmw-carit.de ([62.245.222.98]:60477 "EHLO mail.bmw-carit.de" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1753946AbbCEG5W (ORCPT ); Thu, 5 Mar 2015 01:57:22 -0500 Message-ID: <54F7FE45.5000100@bmw-carit.de> Date: Thu, 5 Mar 2015 07:57:09 +0100 From: Daniel Wagner User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:31.0) Gecko/20100101 Thunderbird/31.4.0 MIME-Version: 1.0 To: Jeff Layton , CC: , , Subject: Re: [PATCH] locks: fix fasync_struct memory leak in lease upgrade/downgrade handling References: <1425513974-27153-1-git-send-email-jeff.layton@primarydata.com> In-Reply-To: <1425513974-27153-1-git-send-email-jeff.layton@primarydata.com> Content-Type: text/plain; charset="windows-1252" Content-Transfer-Encoding: 7bit Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Hi Jeff, On 03/05/2015 01:06 AM, Jeff Layton wrote: > Commit 8634b51f6ca2 (locks: convert lease handling to file_lock_context) > introduced a regression in the handling of lease upgrade/downgrades. > > In the event that we already have a lease on a file and are going to > either upgrade or downgrade it, we skip doing any list insertion or > deletion and skip to re-calling lm_setup on the existing lease. > > As of commit 8634b51f6ca2 however, we end up calling lm_setup on the > lease that was passed in, instead of on the existing lease. This causes > us to leak the fasync_struct that was allocated in the event that there > was not already an existing one (as it always appeared that there > wasn't one). > > Fixes: 8634b51f6ca2 (locks: convert lease handling to file_lock_context) Yes, that fixes the problem. Thanks! > Reported-by: Daniel Wagner > Signed-off-by: Jeff Layton Tested-by: Daniel Wagner cheers, daniel