From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from smtp.kernel.org (aws-us-west-2-korg-mail-1.web.codeaurora.org [10.30.226.201]) (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 9FE2A20E71C for ; Thu, 23 Jan 2025 11:46:08 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=10.30.226.201 ARC-Seal:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1737632768; cv=none; b=iBpK/cnzCvDqF+Jr2vwNNHXrT4FsUioueGxy9ZM5DqFBdqRRrfiqqDhj7m8SlV5YQGALD1vLhW0UKUgqI2qsGoqxfNvkQ3iecUTGQtO13H0z0jAOu+H+HTzXDchfGfG3QilR5QzjZEKnUXETPbe0J4jHQD2/1tbamEkItjhblwU= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1737632768; c=relaxed/simple; bh=pQZssoN6/Y14w2SWRFonSO0WXZviR2YX8CTh/zGCdwk=; h=Date:From:To:Cc:Subject:Message-ID:In-Reply-To:References: MIME-Version:Content-Type; b=ZYxloGH3tR00bCLUEhcIgPkirtuTS9L7CtWD/4rxcNuRCFMtfBogxZGD4W0W5ZFX96jHKCGTj1Jn67gO5SI1DLAIE5+VKMwPXaI4IRWGGrAsnhwincnSrUZGQb/o4UHWxTXVYrfc1ToR0OsYLRIbmKuL0vzPVH6zhmQStH8SToE= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dkim=pass (2048-bit key) header.d=kernel.org header.i=@kernel.org header.b=FImdi8Ng; arc=none smtp.client-ip=10.30.226.201 Authentication-Results: smtp.subspace.kernel.org; dkim=pass (2048-bit key) header.d=kernel.org header.i=@kernel.org header.b="FImdi8Ng" Received: by smtp.kernel.org (Postfix) with ESMTPSA id 2CCA4C4CED3; Thu, 23 Jan 2025 11:46:06 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1737632768; bh=pQZssoN6/Y14w2SWRFonSO0WXZviR2YX8CTh/zGCdwk=; h=Date:From:To:Cc:Subject:In-Reply-To:References:From; b=FImdi8NgB1vx8MI4BQR3eMf8vOGmpFy/P3uuJ3zD3jOgOkZCMO/QXvn4pjI3eRyn+ g9ibZkCJ3o2p5hlg5TpuK+tV+SCFRKflmizLGev9T7Pe6J4yO8v0wlNDr8CUuFL2B7 XXGzVRHz5qXp30sQVXM+a01ak8ulHhBkcBQrf9o9lofCvT3t92AiFqrW8iunYMgGbc g819zA/Rr/xs6tb0DhACZKSIJb2ZMs1DvqCYqSgAgDxawRgTmQjNwSSbgtNbTomng7 enGlYrEhLLR2jItaWlpGB7eJmKFmKmcGOjGc2WKqeJBlUc1abWnFd3bJ+VC935X/rd aqd2Hgy+k3ciw== Date: Thu, 23 Jan 2025 12:46:03 +0100 From: Mauro Carvalho Chehab To: Jonathan Cameron Cc: Igor Mammedov , "Michael S . Tsirkin" , Shiju Jose , , , Ani Sinha , Dongjiu Geng , Subject: Re: [PATCH 02/11] acpi/ghes: add a firmware file with HEST address Message-ID: <20250123124603.79cb2485@foz.lan> In-Reply-To: <20250123100217.00007373@huawei.com> References: <20250123100217.00007373@huawei.com> X-Mailer: Claws Mail 4.3.0 (GTK 3.24.43; x86_64-redhat-linux-gnu) Precedence: bulk X-Mailing-List: linux-kernel@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Em Thu, 23 Jan 2025 10:02:17 +0000 Jonathan Cameron escreveu: > > --- > > > > Change from v8: > > - hest_addr_lr is now pointing to the error source size and data. > > > > Signed-off-by: Mauro Carvalho Chehab > Bonus. I guess you really like this patch :) There is something wrong here with git rebase - maybe related to .git/hooks/pre-commit running checkpatch: every time I do a rebase, it adds my SOB at the end of description, if not there already. Not a problem for normal patches, but when the patch has a version history, it ends placing such duplicated SOBs. That happens even using --no-signoff and with: [format] signOff = false at git config. No idea how to fix it. Thanks, Mauro --- This is the pre-commit hook: #!/bin/sh # # TMP=$(mktemp) git diff --cached HEAD >$TMP $PWD/scripts/checkpatch.pl --no-signoff -q $TMP >&2 ERR=$? rm $TMP exit $ERR