Hi Linus, Here's a drivers-post branch that follows for-5.5/block and for-5.5/drivers, done to avoid conflicts with the zoned changes. The main zoned changes are coming in the next pull request. This pull request contains: - Prepare SCSI sd for zone open/close/finish support - Small NVMe pull request - hwmon support (Akinobu) - Add new co-maintainer (Christoph) - Work-around for a discard issue on non-conformant drives (Eduard) - Small nbd leak fix Please pull! git://git.kernel.dk/linux-block.git tags/for-5.5/drivers-post-20191122 ---------------------------------------------------------------- Ajay Joshi (1): scsi: sd_zbc: add zone open, close, and finish support Akinobu Mita (2): nvme: hwmon: provide temperature min and max values for each sensor nvme: hwmon: add quirk to avoid changing temperature threshold Christoph Hellwig (1): nvmet: add another maintainer Eduard Hasenleithner (1): nvme: Discard workaround for non-conformant devices Guenter Roeck (1): nvme: Add hardware monitoring support Jens Axboe (1): Merge branch 'nvme-5.5' of git://git.infradead.org/nvme into for-5.5/drivers-post Navid Emamdoost (1): nbd: prevent memory leak MAINTAINERS | 1 + drivers/block/nbd.c | 5 +- drivers/nvme/host/Kconfig | 10 ++ drivers/nvme/host/Makefile | 1 + drivers/nvme/host/core.c | 18 +++- drivers/nvme/host/hwmon.c | 259 +++++++++++++++++++++++++++++++++++++++++++++ drivers/nvme/host/nvme.h | 13 +++ drivers/nvme/host/pci.c | 3 +- drivers/scsi/sd.c | 15 ++- drivers/scsi/sd.h | 8 +- drivers/scsi/sd_zbc.c | 22 ++-- include/linux/nvme.h | 6 ++ 12 files changed, 341 insertions(+), 20 deletions(-) create mode 100644 drivers/nvme/host/hwmon.c -- Jens Axboe