|
Laura Abbott |
a8f134 |
From 464c6dc10f4bb3a7f93ad92fb44a9568e9da6b4f Mon Sep 17 00:00:00 2001
|
|
Laura Abbott |
a8f134 |
From: Laura Abbott <labbott@redhat.com>
|
|
Laura Abbott |
a8f134 |
Date: Thu, 14 Dec 2017 17:06:21 -0800
|
|
Laura Abbott |
a8f134 |
Subject: [PATCH] tools/lib: Remove FSF address
|
|
Laura Abbott |
a8f134 |
To: Ingo Molnar <mingo@redhat.com>
|
|
Laura Abbott |
a8f134 |
To: Arnaldo Carvalho de Melo <acme@kernel.org>
|
|
Laura Abbott |
a8f134 |
Cc: linux-kernel@vger.kernel.org
|
|
Laura Abbott |
a8f134 |
|
|
Laura Abbott |
a8f134 |
Checkpatch in the kernel now complains about having the FSF address
|
|
Laura Abbott |
a8f134 |
in comments. Other tools such as rpmlint are now starting to do the
|
|
Laura Abbott |
a8f134 |
same thing. Remove the FSF address to reduce warnings on multiple tools.
|
|
Laura Abbott |
a8f134 |
|
|
Laura Abbott |
a8f134 |
Signed-off-by: Laura Abbott <labbott@redhat.com>
|
|
Laura Abbott |
a8f134 |
---
|
|
Laura Abbott |
a8f134 |
For context, I'm updating the packaging for perf in Fedora which
|
|
Laura Abbott |
a8f134 |
requires a code/output review. This got flagged during that review.
|
|
Laura Abbott |
a8f134 |
|
|
Laura Abbott |
a8f134 |
This part of tools doesn't seem to have a clear owner and I don't think
|
|
Laura Abbott |
a8f134 |
it's kept in sync with the kernel which is why I split this out. I don't
|
|
Laura Abbott |
a8f134 |
particularly care which tree it goes through (perf?)
|
|
Laura Abbott |
a8f134 |
---
|
|
Laura Abbott |
a8f134 |
tools/include/linux/rbtree.h | 4 ----
|
|
Laura Abbott |
a8f134 |
tools/include/linux/rbtree_augmented.h | 4 ----
|
|
Laura Abbott |
a8f134 |
tools/lib/rbtree.c | 4 ----
|
|
Laura Abbott |
a8f134 |
3 files changed, 12 deletions(-)
|
|
Laura Abbott |
a8f134 |
|
|
Laura Abbott |
a8f134 |
diff --git a/tools/include/linux/rbtree.h b/tools/include/linux/rbtree.h
|
|
Laura Abbott |
a8f134 |
index 112582253dd0..b71ec73831bb 100644
|
|
Laura Abbott |
a8f134 |
--- a/tools/include/linux/rbtree.h
|
|
Laura Abbott |
a8f134 |
+++ b/tools/include/linux/rbtree.h
|
|
Laura Abbott |
a8f134 |
@@ -12,10 +12,6 @@
|
|
Laura Abbott |
a8f134 |
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
Laura Abbott |
a8f134 |
GNU General Public License for more details.
|
|
Laura Abbott |
a8f134 |
|
|
Laura Abbott |
a8f134 |
- You should have received a copy of the GNU General Public License
|
|
Laura Abbott |
a8f134 |
- along with this program; if not, write to the Free Software
|
|
Laura Abbott |
a8f134 |
- Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
|
Laura Abbott |
a8f134 |
-
|
|
Laura Abbott |
a8f134 |
linux/include/linux/rbtree.h
|
|
Laura Abbott |
a8f134 |
|
|
Laura Abbott |
a8f134 |
To use rbtrees you'll have to implement your own insert and search cores.
|
|
Laura Abbott |
a8f134 |
diff --git a/tools/include/linux/rbtree_augmented.h b/tools/include/linux/rbtree_augmented.h
|
|
Laura Abbott |
a8f134 |
index 43be941db695..db08eb26eb15 100644
|
|
Laura Abbott |
a8f134 |
--- a/tools/include/linux/rbtree_augmented.h
|
|
Laura Abbott |
a8f134 |
+++ b/tools/include/linux/rbtree_augmented.h
|
|
Laura Abbott |
a8f134 |
@@ -14,10 +14,6 @@
|
|
Laura Abbott |
a8f134 |
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
Laura Abbott |
a8f134 |
GNU General Public License for more details.
|
|
Laura Abbott |
a8f134 |
|
|
Laura Abbott |
a8f134 |
- You should have received a copy of the GNU General Public License
|
|
Laura Abbott |
a8f134 |
- along with this program; if not, write to the Free Software
|
|
Laura Abbott |
a8f134 |
- Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
|
Laura Abbott |
a8f134 |
-
|
|
Laura Abbott |
a8f134 |
tools/linux/include/linux/rbtree_augmented.h
|
|
Laura Abbott |
a8f134 |
|
|
Laura Abbott |
a8f134 |
Copied from:
|
|
Laura Abbott |
a8f134 |
diff --git a/tools/lib/rbtree.c b/tools/lib/rbtree.c
|
|
Laura Abbott |
a8f134 |
index 17c2b596f043..df538c4139ce 100644
|
|
Laura Abbott |
a8f134 |
--- a/tools/lib/rbtree.c
|
|
Laura Abbott |
a8f134 |
+++ b/tools/lib/rbtree.c
|
|
Laura Abbott |
a8f134 |
@@ -14,10 +14,6 @@
|
|
Laura Abbott |
a8f134 |
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
Laura Abbott |
a8f134 |
GNU General Public License for more details.
|
|
Laura Abbott |
a8f134 |
|
|
Laura Abbott |
a8f134 |
- You should have received a copy of the GNU General Public License
|
|
Laura Abbott |
a8f134 |
- along with this program; if not, write to the Free Software
|
|
Laura Abbott |
a8f134 |
- Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
|
Laura Abbott |
a8f134 |
-
|
|
Laura Abbott |
a8f134 |
linux/lib/rbtree.c
|
|
Laura Abbott |
a8f134 |
*/
|
|
Laura Abbott |
a8f134 |
|
|
Laura Abbott |
a8f134 |
--
|
|
Laura Abbott |
a8f134 |
2.14.3
|
|
Laura Abbott |
a8f134 |
|