Re: [PATCH v5 11/18] cxl: Separate bare-metal fields in adapter and AFU data structures

2016-03-02 Thread Ian Munsie
Excerpts from Frederic Barrat's message of 2016-02-24 03:21:52 +1100: > static int pci_init_afu(struct cxl *adapter, int slice, struct pci_dev *dev) > { > struct cxl_afu *afu; > -int rc; > +int rc = -ENOMEM; > > afu = cxl_alloc_afu(adapter, slice); > if (!afu) >

Re: [PATCH v5 11/18] cxl: Separate bare-metal fields in adapter and AFU data structures

2016-02-24 Thread Manoj Kumar
Reviewed-by: Manoj Kumar --- Manoj Kumar On 2/23/2016 10:21 AM, Frederic Barrat wrote: From: Christophe Lombard Introduce sub-structures containing the bare-metal specific fields in the structures describing the adapter (struct cxl) and AFU (struct cxl_afu). Update all their references. Co

[PATCH v5 11/18] cxl: Separate bare-metal fields in adapter and AFU data structures

2016-02-23 Thread Frederic Barrat
From: Christophe Lombard Introduce sub-structures containing the bare-metal specific fields in the structures describing the adapter (struct cxl) and AFU (struct cxl_afu). Update all their references. Co-authored-by: Frederic Barrat Signed-off-by: Frederic Barrat Signed-off-by: Christophe Lomb