From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1758736AbbCEUfO (ORCPT ); Thu, 5 Mar 2015 15:35:14 -0500 Received: from cpsmtpb-ews05.kpnxchange.com ([213.75.39.8]:64041 "EHLO cpsmtpb-ews05.kpnxchange.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1758690AbbCEUfK (ORCPT ); Thu, 5 Mar 2015 15:35:10 -0500 Message-ID: <1425587707.24292.246.camel@x220> Subject: Re: [PATCH 1/8] pmem: Initial version of persistent memory driver From: Paul Bolle To: Boaz Harrosh Cc: Ingo Molnar , x86@kernel.org, linux-kernel , "Roger C. Pao" , Dan Williams , Thomas Gleixner , linux-nvdimm , "H. Peter Anvin" , Matthew Wilcox , Andy Lutomirski , Christoph Hellwig , Ross Zwisler Date: Thu, 05 Mar 2015 21:35:07 +0100 In-Reply-To: <54F84420.40209@plexistor.com> References: <54F82CE0.4040502@plexistor.com> <54F830D4.7030205@plexistor.com> <54F84420.40209@plexistor.com> Content-Type: text/plain; charset="UTF-8" X-Mailer: Evolution 3.10.4 (3.10.4-4.fc20) Mime-Version: 1.0 Content-Transfer-Encoding: 7bit X-OriginalArrivalTime: 05 Mar 2015 20:35:08.0310 (UTC) FILETIME=[DEBE7360:01D05783] X-RcptDomain: vger.kernel.org Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org For what it's worth, at this moment, I found a license nit. On Thu, 2015-03-05 at 13:55 +0200, Boaz Harrosh wrote: > --- /dev/null > +++ b/drivers/block/pmem.c > @@ -0,0 +1,334 @@ > +/* > + * Persistent Memory Driver > + * Copyright (c) 2014, Intel Corporation. > + * Copyright (c) 2014, Boaz Harrosh . > + * > + * This program is free software; you can redistribute it and/or modify it > + * under the terms and conditions of the GNU General Public License, > + * version 2, as published by the Free Software Foundation. > + * > + * This program is distributed in the hope it will be useful, but WITHOUT > + * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or > + * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for > + * more details. This states the license is GPL v2. > +MODULE_LICENSE("GPL"); So you probably want MODULE_LICENSE("GPL v2"); here. Paul Bolle