Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1756174AbcLAMG0 (ORCPT ); Thu, 1 Dec 2016 07:06:26 -0500 Received: from ec2-52-27-115-49.us-west-2.compute.amazonaws.com ([52.27.115.49]:57088 "EHLO osg.samsung.com" rhost-flags-OK-OK-OK-FAIL) by vger.kernel.org with ESMTP id S1750708AbcLAMGY (ORCPT ); Thu, 1 Dec 2016 07:06:24 -0500 Date: Thu, 1 Dec 2016 10:06:17 -0200 From: Mauro Carvalho Chehab To: Borislav Petkov , Yazen Ghannam Cc: Stephen Rothwell , linux-next@vger.kernel.org, linux-kernel@vger.kernel.org Subject: Re: linux-next: manual merge of the edac-amd tree with the edac tree Message-ID: <20161201100617.511d8aae@vento.lan> In-Reply-To: <20161201104846.kjvuy5tj475oxzke@pd.tnic> References: <20161128143726.7fda1849@canb.auug.org.au> <20161128082734.bdl4dhothemm7ja5@pd.tnic> <20161130085013.4798b4a7@vento.lan> <20161201104846.kjvuy5tj475oxzke@pd.tnic> Organization: Samsung X-Mailer: Claws Mail 3.14.0 (GTK+ 2.24.31; x86_64-redhat-linux-gnu) MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 2376 Lines: 66 Em Thu, 1 Dec 2016 11:48:46 +0100 Borislav Petkov escreveu: > On Wed, Nov 30, 2016 at 08:50:13AM -0200, Mauro Carvalho Chehab wrote: > > Fixed. If you have a stable branch, I can rebase it on the top > > of your patches, in order to avoid the confict at linux-next. > > http://git.kernel.org/cgit/linux/kernel/git/bp/bp.git/log/?h=for-next Thanks! > but with that fixed, shouldn't the merge work without a conflict? Well, we're removing some lines from one file and adding them on another one. Git is not smart enough to solve such conflicts automatically: CONFLICT (content): Merge conflict in drivers/edac/edac_mc.c Recorded preimage for 'drivers/edac/edac_mc.c' Automatic merge failed; fix conflicts and then commit the result. Anyway, I rebased my work on the top of your branch. The conflict is now gone: https://git.kernel.org/cgit/linux/kernel/git/mchehab/linux-edac.git/log/?h=linux_next You can see the generated documentation at: https://mchehab.fedorapeople.org/kernel_docs/admin-guide/ras.html (user and admin guide) and: https://mchehab.fedorapeople.org/kernel_docs/driver-api/edac.html (kernel API) However, rebasing over your tree showed a new documentation gap: ./include/linux/edac.h:144: warning: Enum value 'HW_EVENT_ERR_DEFERRED' not described in enum 'hw_event_mc_err_type' With was introduced by this commit: commit d12a969ebbfcfc25853c4147d42b388f758e8784 Author: Yazen Ghannam Date: Thu Nov 17 17:57:32 2016 -0500 EDAC, amd64: Add Deferred Error type Currently, deferred errors are classified as correctable in EDAC. Add a new error type for deferred errors so that they are correctly reported to the user. Signed-off-by: Yazen Ghannam Cc: Aravind Gopalakrishnan Cc: linux-edac Link: http://lkml.kernel.org/r/1479423463-8536-7-git-send-email-Yazen.Ghannam@amd.com Signed-off-by: Borislav Petkov Yazen introduced a "deferred error" code (whatever it means), but didn't document what's that. Unfortunately, the patch description is also not clear enough about what a "deferred error" means or how userspace is supposed to handle it. Yazen, Could you please send us a patch adding a proper description for this new error code? Thanks! Mauro