From mboxrd@z Thu Jan 1 00:00:00 1970 From: Roman Gushchin Subject: Re: [PATCH v2 net-next 4/4] bpftool: implement cgroup bpf operations Date: Fri, 8 Dec 2017 14:53:50 +0000 Message-ID: <20171208145345.GA12685@castle> References: <20171207183909.16240-1-guro@fb.com> <20171207183909.16240-5-guro@fb.com> Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Cc: , Quentin Monnet , LKML , , , , , , David Ahern To: Philippe Ombredanne Return-path: Received: from mx0b-00082601.pphosted.com ([67.231.153.30]:60082 "EHLO mx0b-00082601.pphosted.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1753608AbdLHOy0 (ORCPT ); Fri, 8 Dec 2017 09:54:26 -0500 Content-Disposition: inline In-Reply-To: Sender: netdev-owner@vger.kernel.org List-ID: On Fri, Dec 08, 2017 at 02:56:15PM +0100, Philippe Ombredanne wrote: > On Fri, Dec 8, 2017 at 11:34 AM, Quentin Monnet > wrote: > > 2017-12-07 18:39 UTC+0000 ~ Roman Gushchin > >> This patch adds basic cgroup bpf operations to bpftool: > >> cgroup list, attach and detach commands. > > [...] > >> --- /dev/null > >> +++ b/tools/bpf/bpftool/cgroup.c > >> @@ -0,0 +1,305 @@ > >> +/* > >> + * Copyright (C) 2017 Facebook > >> + * > >> + * This program is free software; you can redistribute it and/or > >> + * modify it under the terms of the GNU General Public License > >> + * as published by the Free Software Foundation; either version > >> + * 2 of the License, or (at your option) any later version. > >> + * > >> + * > >> + */ > >> + > > Roman, > Have you considered using the simpler and new SPDX ids instead? e.g.: > > // SPDX-License-Identifier: GPL-2.0+ > // Copyright (C) 2017 Facebook > // Author: Roman Gushchin > > This would boost your code/comments ratio nicely IMHO. Thanks, applied to v3!