linux-efi.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
From: Andy Shevchenko <andriy.shevchenko@linux.intel.com>
To: linux-acpi@vger.kernel.org, devel@linuxdriverproject.org,
	sparmaintainer@unisys.com, devel@driverdev.osuosl.org,
	linux-wireless@vger.kernel.org, linux-watchdog@vger.kernel.org,
	linux-efi@vger.kernel.org, Christoph Hellwig <hch@lst.de>,
	linux-kernel@vger.kernel.org, Lukas Wunner <lukas@wunner.de>
Cc: Stephen Hemminger <sthemmin@microsoft.com>,
	Samuel Ortiz <sameo@linux.intel.com>,
	Ard Biesheuvel <ard.biesheuvel@linaro.org>,
	Matt Fleming <matt@codeblueprint.co.uk>,
	Greg Kroah-Hartman <gregkh@linuxfoundation.org>,
	Haiyang Zhang <haiyangz@microsoft.com>,
	"Rafael J. Wysocki" <rjw@rjwysocki.net>,
	Tomas Winkler <tomas.winkler@intel.com>,
	Andy Shevchenko <andriy.shevchenko@linux.intel.com>,
	Guenter Roeck <linux@roeck-us.net>, Len Brown <lenb@kernel.org>
Subject: [PATCH v1 0/6] uuid: Convert rest users to new API
Date: Wed, 19 Jul 2017 21:28:51 +0300	[thread overview]
Message-ID: <20170719182857.73693-1-andriy.shevchenko@linux.intel.com> (raw)

This series is converting the rest of the users of old UUID API to a new
one and dropping UUID UAPI header away. Note, ABI is kept the same.

User space should have not used those headers. We have libuuid and it
likely would be extended to cover GUID operations.

All patches have been compiled tested on x86_64 machine.

The series is supposed to go via UUID tree with immutable branch
(in case we have new users of obsolete API).

I dunno if it's a good idea to put them to v4.13-rc2 where first part of
the changes is applied.

Cc: Matt Fleming <matt@codeblueprint.co.uk>
Cc: Ard Biesheuvel <ard.biesheuvel@linaro.org>
Cc: Tomas Winkler <tomas.winkler@intel.com>
Cc: Samuel Ortiz <sameo@linux.intel.com>
Cc: Guenter Roeck <linux@roeck-us.net>
Cc: David Kershner <david.kershner@unisys.com>
Cc: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Cc: "K. Y. Srinivasan" <kys@microsoft.com>
Cc: Haiyang Zhang <haiyangz@microsoft.com>
Cc: Stephen Hemminger <sthemmin@microsoft.com>
Cc: "Rafael J. Wysocki" <rjw@rjwysocki.net>
Cc: Len Brown <lenb@kernel.org>


Andy Shevchenko (6):
  efi: Switch to use new generic UUID API
  mei: Switch to use new generic UUID API
  staging: unisys: Switch to use new generic UUID API
  vmbus: Switch to use new generic UUID API
  uuid: Kill uapi/uuid.h
  device property: Switch to use new generic UUID API

 drivers/acpi/property.c                            | 50 +++++------
 drivers/firmware/efi/cper.c                        | 10 +--
 drivers/hv/channel.c                               |  4 +-
 drivers/hv/channel_mgmt.c                          | 18 ++--
 drivers/hv/hyperv_vmbus.h                          |  4 +-
 drivers/hv/vmbus_drv.c                             | 43 ++++------
 drivers/misc/mei/bus-fixup.c                       | 35 ++++----
 drivers/misc/mei/bus.c                             | 14 ++--
 drivers/misc/mei/client.c                          | 21 +++--
 drivers/misc/mei/client.h                          | 12 +--
 drivers/misc/mei/hbm.c                             |  2 +-
 drivers/misc/mei/hw.h                              |  2 +-
 drivers/misc/mei/main.c                            |  2 +-
 drivers/nfc/mei_phy.h                              |  5 +-
 drivers/staging/unisys/Documentation/overview.txt  | 14 ++--
 drivers/staging/unisys/include/channel.h           | 45 +++++-----
 drivers/staging/unisys/include/iochannel.h         | 14 +---
 drivers/staging/unisys/include/visorbus.h          | 12 +--
 drivers/staging/unisys/visorbus/controlvmchannel.h | 24 ++----
 drivers/staging/unisys/visorbus/vbuschannel.h      |  7 +-
 drivers/staging/unisys/visorbus/visorbus_main.c    | 28 +++----
 drivers/staging/unisys/visorbus/visorbus_private.h |  6 +-
 drivers/staging/unisys/visorbus/visorchannel.c     | 48 +++++------
 drivers/staging/unisys/visorbus/visorchipset.c     | 39 +++++----
 drivers/staging/unisys/visorhba/visorhba_main.c    |  6 +-
 drivers/staging/unisys/visorinput/visorinput.c     | 38 ++++-----
 drivers/staging/unisys/visornic/visornic_main.c    |  6 +-
 drivers/watchdog/mei_wdt.c                         |  5 +-
 include/linux/cper.h                               | 94 ++++++++++-----------
 include/linux/efi.h                                |  4 +-
 include/linux/hyperv.h                             | 98 +++++++++++-----------
 include/linux/mei_cl_bus.h                         |  2 +-
 include/linux/mod_devicetable.h                    |  8 +-
 include/linux/uuid.h                               | 20 ++++-
 include/uapi/linux/hyperv.h                        |  6 +-
 include/uapi/linux/mei.h                           |  4 +-
 include/uapi/linux/uuid.h                          | 42 ----------
 samples/mei/mei-amt-version.c                      | 21 ++++-
 scripts/mod/file2alias.c                           |  4 +-
 39 files changed, 387 insertions(+), 430 deletions(-)
 delete mode 100644 include/uapi/linux/uuid.h

-- 
2.11.0

             reply	other threads:[~2017-07-19 18:28 UTC|newest]

Thread overview: 37+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2017-07-19 18:28 Andy Shevchenko [this message]
2017-07-19 18:28 ` [PATCH v1 1/6] efi: Switch to use new generic UUID API Andy Shevchenko
2017-07-20 12:18   ` Ard Biesheuvel
2017-07-25 10:40     ` Andy Shevchenko
     [not found]       ` <1500979206.29303.228.camel-VuQAYsv1563Yd54FQh9/CA@public.gmane.org>
2017-07-26  7:52         ` Christoph Hellwig
     [not found]           ` <20170726075212.GB10959-jcswGhMUV9g@public.gmane.org>
2017-07-26  8:36             ` Ard Biesheuvel
2017-08-30 12:41   ` Christoph Hellwig
     [not found] ` <20170719182857.73693-1-andriy.shevchenko-VuQAYsv1563Yd54FQh9/CA@public.gmane.org>
2017-07-19 18:28   ` [PATCH v1 2/6] mei: " Andy Shevchenko
     [not found]     ` <20170719182857.73693-3-andriy.shevchenko-VuQAYsv1563Yd54FQh9/CA@public.gmane.org>
2017-07-22 18:45       ` kbuild test robot
2017-07-19 18:28   ` [PATCH v1 6/6] device property: " Andy Shevchenko
     [not found]     ` <20170719182857.73693-7-andriy.shevchenko-VuQAYsv1563Yd54FQh9/CA@public.gmane.org>
2017-07-19 19:27       ` Rafael J. Wysocki
2017-07-25 14:12     ` Mika Westerberg
2017-07-26  0:21       ` Rafael J. Wysocki
2017-07-26  0:35         ` Andy Shevchenko
2017-07-26  0:27           ` Rafael J. Wysocki
2017-07-26 10:03             ` Andy Shevchenko
2017-07-26 18:58               ` Rafael J. Wysocki
2017-08-30 12:41             ` Christoph Hellwig
2017-08-30 13:46               ` Rafael J. Wysocki
2017-08-30 13:57                 ` Christoph Hellwig
2017-07-19 18:28 ` [PATCH v1 3/6] staging: unisys: " Andy Shevchenko
2017-07-26 10:01   ` Andy Shevchenko
2017-07-30 15:32     ` Greg Kroah-Hartman
2017-07-30 17:26       ` Andy Shevchenko
     [not found]         ` <CAHp75Vf+Us5n2_u94sVGs7xuvfF-qoaG4tvmixvqRARo68TT7w-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org>
2017-07-30 17:37           ` Greg Kroah-Hartman
2017-07-31 17:20             ` Andy Shevchenko
2017-08-30 12:38               ` Christoph Hellwig
2017-08-30 13:09                 ` Andy Shevchenko
     [not found]                 ` <20170830123845.lw4vkjbcvivi5hpi-wEGCiKHe2LqWVfeAwA7xHQ@public.gmane.org>
2017-08-30 13:11                   ` Greg Kroah-Hartman
2017-07-19 18:28 ` [PATCH v1 4/6] vmbus: " Andy Shevchenko
2017-07-19 20:18   ` Haiyang Zhang
2017-07-19 21:54     ` Andy Shevchenko
2017-07-22 18:46   ` kbuild test robot
     [not found]   ` <20170719182857.73693-5-andriy.shevchenko-VuQAYsv1563Yd54FQh9/CA@public.gmane.org>
2017-07-24 15:54     ` Christoph Hellwig
2017-07-19 18:28 ` [PATCH v1 5/6] uuid: Kill uapi/uuid.h Andy Shevchenko
     [not found]   ` <20170719182857.73693-6-andriy.shevchenko-VuQAYsv1563Yd54FQh9/CA@public.gmane.org>
2017-07-22 18:48     ` kbuild test robot
2017-07-24 15:54     ` Christoph Hellwig

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20170719182857.73693-1-andriy.shevchenko@linux.intel.com \
    --to=andriy.shevchenko@linux.intel.com \
    --cc=ard.biesheuvel@linaro.org \
    --cc=devel@driverdev.osuosl.org \
    --cc=devel@linuxdriverproject.org \
    --cc=gregkh@linuxfoundation.org \
    --cc=haiyangz@microsoft.com \
    --cc=hch@lst.de \
    --cc=lenb@kernel.org \
    --cc=linux-acpi@vger.kernel.org \
    --cc=linux-efi@vger.kernel.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=linux-watchdog@vger.kernel.org \
    --cc=linux-wireless@vger.kernel.org \
    --cc=linux@roeck-us.net \
    --cc=lukas@wunner.de \
    --cc=matt@codeblueprint.co.uk \
    --cc=rjw@rjwysocki.net \
    --cc=sameo@linux.intel.com \
    --cc=sparmaintainer@unisys.com \
    --cc=sthemmin@microsoft.com \
    --cc=tomas.winkler@intel.com \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).