From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1753874AbcIVAvX (ORCPT ); Wed, 21 Sep 2016 20:51:23 -0400 Received: from resqmta-po-01v.sys.comcast.net ([96.114.154.160]:48011 "EHLO resqmta-po-01v.sys.comcast.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751750AbcIVAvT (ORCPT ); Wed, 21 Sep 2016 20:51:19 -0400 From: Shuah Khan To: corbet@lwn.net, davem@davemloft.net, nicolas.dichtel@6wind.com, elfring@users.sourceforge.net, geert@linux-m68k.org, akpm@linux-foundation.org, gregkh@linuxfoundation.org, kvalo@codeaurora.org, mchehab@kernel.org, linux@roeck-us.net Cc: Shuah Khan , linux-doc@vger.kernel.org, linux-kernel@vger.kernel.org, linux-pcmcia@lists.infradead.org Subject: [PATCH v2 0/3] Move runnable tools from Documentation to tools Date: Wed, 21 Sep 2016 18:51:10 -0600 Message-Id: X-Mailer: git-send-email 2.7.4 X-CMAE-Envelope: MS4wfFK7tBSa53t6HvZxky1WNqGFbTNLyeDsnMrzQew6Mbbzc+vxl+7jX0R318o8624TVLYYOPbSawm9tY1aUDG7+ik3cULdYApaYHg8n2G/FtIdgwwNL7GZ nhSbhTQ0XN0Zg2+yRIfh6kU0bsd2/HKPsRGgNm74qijC9jQDaNbeiD8nioFTPhjBedUkfBqmTzX2N0JfhquoXOgiFt6NYaM7DTF3KkNwURI9vrqbBkq2M27q MLunH0BP17U1qEmLYRvLylwQ6fr7iqBu3xaJNQuAj+8fY8D+uKNMG+V/kY5ftLkDr3cAoyf3pgYLdkDUQVKZd+Ml2ckrQEDyP0dv9GQ3+C3XKcXBYNxd5hWG 8Rv1+mAaRbFKKF8HZwJnT2U0KdOWXoG3tUimVcLN9yobpJnDhnupDwJ0uv6Q+j/vhJ2a0b9C1569oncAOKiknKda0jM8f9vUN3xtrxGqw8CttpcI9bOlYzwj MmN7NWaNC0vzBwwh9fCi+ZrFT2U4ARxsnPitJhCNxwUGWuR8+YEs6qnsfcQR/eoBcXOacMZBSdV/uLQX5AS2sBk6nZwV3FJWTiTkGDk7fIT9u1Ig632W0L3g VEkPrdsx2EVhzaVZs4qrBPvciYhzv1eCvyFzZnBRwncgNY0BZC+TOczOa8SGmAWFLwQ= Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Move runnable tools from Documentation to tools. I moved just the tools code, and left documentation files as is. Based on the v1 series feedback, This v2 series moves accounting, laptops/dslm, and pcmcia to tools. If v2 patches look good, and if I get an okay, I will try to get these into 4.9-rc1 Changes since v1: -- Move to tools instead of samples based on feedback -- Update location information and MAINTIANERS file as needed. Shuah Khan (3): tools: move accounting example code from Documentation tools: move laptops dslm tool from Documentation tools: move pcmcia crc32hash tool from Documentation Documentation/Makefile | 3 +- Documentation/accounting/.gitignore | 1 - Documentation/accounting/Makefile | 7 - Documentation/accounting/delay-accounting.txt | 6 +- Documentation/accounting/getdelays.c | 550 -------------------------- Documentation/laptops/.gitignore | 1 - Documentation/laptops/00-INDEX | 4 - Documentation/laptops/Makefile | 5 - Documentation/laptops/dslm.c | 166 -------- Documentation/laptops/laptop-mode.txt | 2 +- Documentation/pcmcia/.gitignore | 1 - Documentation/pcmcia/Makefile | 7 - Documentation/pcmcia/crc32hash.c | 32 -- Documentation/pcmcia/devicetable.txt | 4 +- MAINTAINERS | 1 + tools/accounting/.gitignore | 1 + tools/accounting/Makefile | 9 + tools/accounting/getdelays.c | 550 ++++++++++++++++++++++++++ tools/laptop/dslm/.gitignore | 1 + tools/laptop/dslm/Makefile | 9 + tools/laptop/dslm/dslm.c | 166 ++++++++ tools/pcmcia/.gitignore | 1 + tools/pcmcia/Makefile | 9 + tools/pcmcia/crc32hash.c | 32 ++ 24 files changed, 786 insertions(+), 782 deletions(-) delete mode 100644 Documentation/accounting/.gitignore delete mode 100644 Documentation/accounting/Makefile delete mode 100644 Documentation/accounting/getdelays.c delete mode 100644 Documentation/laptops/.gitignore delete mode 100644 Documentation/laptops/Makefile delete mode 100644 Documentation/laptops/dslm.c delete mode 100644 Documentation/pcmcia/.gitignore delete mode 100644 Documentation/pcmcia/Makefile delete mode 100644 Documentation/pcmcia/crc32hash.c create mode 100644 tools/accounting/.gitignore create mode 100644 tools/accounting/Makefile create mode 100644 tools/accounting/getdelays.c create mode 100644 tools/laptop/dslm/.gitignore create mode 100644 tools/laptop/dslm/Makefile create mode 100644 tools/laptop/dslm/dslm.c create mode 100644 tools/pcmcia/.gitignore create mode 100644 tools/pcmcia/Makefile create mode 100644 tools/pcmcia/crc32hash.c -- 2.7.4