Re: [PATCH v2 0/3] Move runnable tools from Documentation to tools

2016-09-23 Thread Shuah Khan
On 09/22/2016 08:57 AM, Jonathan Corbet wrote:
> On Wed, 21 Sep 2016 18:51:10 -0600
> Shuah Khan  wrote:
> 
>> 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
> 
> Acked-by: Jonathan Corbet 
> 
> Though I still wonder if we really need to keep some of those tools...
> 
> jon
> 

I am a bit skeptical about laptop/dslm and pcmcia whether or not
we still need them. I am afraid as soon we delete somebody will
miss it.

How about we go ahead and move it under tools and make a call in
a couple of releases? I have to make a note of that and delete
them.

thanks,
-- Shuah

--
To unsubscribe from this list: send the line "unsubscribe linux-doc" in
the body of a message to majord...@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html


Re: [PATCH v2 0/3] Move runnable tools from Documentation to tools

2016-09-22 Thread Jonathan Corbet
On Wed, 21 Sep 2016 18:51:10 -0600
Shuah Khan  wrote:

> 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

Acked-by: Jonathan Corbet 

Though I still wonder if we really need to keep some of those tools...

jon
--
To unsubscribe from this list: send the line "unsubscribe linux-doc" in
the body of a message to majord...@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html


[PATCH v2 0/3] Move runnable tools from Documentation to tools

2016-09-21 Thread Shuah Khan
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

--
To unsubscribe from this list: send the line "unsubscribe linux-doc" in
the body of a message to majord...@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html