From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1756424AbcLTTwl (ORCPT ); Tue, 20 Dec 2016 14:52:41 -0500 Received: from smtprelay0135.hostedemail.com ([216.40.44.135]:60104 "EHLO smtprelay.hostedemail.com" rhost-flags-OK-OK-OK-FAIL) by vger.kernel.org with ESMTP id S1753356AbcLTTwj (ORCPT ); Tue, 20 Dec 2016 14:52:39 -0500 X-Session-Marker: 6A6F6540706572636865732E636F6D X-Spam-Summary: 2,0,0,,d41d8cd98f00b204,joe@perches.com,:::::::::::,RULES_HIT:41:355:379:541:599:800:960:973:988:989:1260:1277:1311:1313:1314:1345:1359:1373:1437:1515:1516:1518:1534:1539:1593:1594:1711:1730:1747:1777:1792:2393:2538:2559:2562:2693:2828:2895:2903:3138:3139:3140:3141:3142:3352:3622:3865:3867:3868:3871:4321:5007:7903:10004:10400:10848:11232:11658:11914:12043:12740:12760:12895:13069:13311:13357:13439:14181:14659:14721:21067:21080:21451:30012:30054:30067:30070:30091,0,RBL:none,CacheIP:none,Bayesian:0.5,0.5,0.5,Netcheck:none,DomainCache:0,MSF:not bulk,SPF:fn,MSBL:0,DNSBL:none,Custom_rules:0:0:0,LFtime:6,LUA_SUMMARY:none X-HE-Tag: home47_510ce431f4812 X-Filterd-Recvd-Size: 1740 Message-ID: <1482263555.1984.28.camel@perches.com> Subject: Re: [PATCH 3/3] lib: Update LZ4 compressor module based on LZ4 v1.7.2. From: Joe Perches To: Sven Schmidt <4sschmid@informatik.uni-hamburg.de>, akpm@linux-foundation.org Cc: bongkyu.kim@lge.com, sergey.senozhatsky@gmail.com, gregkh@linuxfoundation.org, linux-kernel@vger.kernel.org Date: Tue, 20 Dec 2016 11:52:35 -0800 In-Reply-To: <1482259992-16680-4-git-send-email-4sschmid@informatik.uni-hamburg.de> References: <1482259992-16680-1-git-send-email-4sschmid@informatik.uni-hamburg.de> <1482259992-16680-4-git-send-email-4sschmid@informatik.uni-hamburg.de> Content-Type: text/plain; charset="ISO-8859-1" X-Mailer: Evolution 3.22.1-0ubuntu2 Mime-Version: 1.0 Content-Transfer-Encoding: 7bit Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On Tue, 2016-12-20 at 19:53 +0100, Sven Schmidt wrote: > This patch updates LZ4 kernel module to LZ4 v1.7.2 by Yann Collet. > The kernel module is inspired by the previous work by Chanho Min. > The updated LZ4 module will not break existing code since there were alias > methods added to ensure backwards compatibility. [] > diff --git a/include/linux/lz4.h b/include/linux/lz4.h [] > @@ -1,87 +1,218 @@ > #ifndef __LZ4_H__ > #define __LZ4_H__ > + > /* > * LZ4 Kernel Interface > * > - * Copyright (C) 2013, LG Electronics, Kyungsik Lee > + * Copyright (C) 2016, Sven Schmidt <4sschmid@informatik.uni-hamburg.de> Deleting copyright notices is poor form and shouldn't be done. I didn't look at the rest