mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/herbert/cryptodev-2.6.git
synced 2026-04-23 05:56:14 -04:00
Merge tag 'for-6.2/block-2022-12-08' of git://git.kernel.dk/linux
Pull block updates from Jens Axboe:
- NVMe pull requests via Christoph:
- Support some passthrough commands without CAP_SYS_ADMIN (Kanchan
Joshi)
- Refactor PCIe probing and reset (Christoph Hellwig)
- Various fabrics authentication fixes and improvements (Sagi
Grimberg)
- Avoid fallback to sequential scan due to transient issues (Uday
Shankar)
- Implement support for the DEAC bit in Write Zeroes (Christoph
Hellwig)
- Allow overriding the IEEE OUI and firmware revision in configfs
for nvmet (Aleksandr Miloserdov)
- Force reconnect when number of queue changes in nvmet (Daniel
Wagner)
- Minor fixes and improvements (Uros Bizjak, Joel Granados, Sagi
Grimberg, Christoph Hellwig, Christophe JAILLET)
- Fix and cleanup nvme-fc req allocation (Chaitanya Kulkarni)
- Use the common tagset helpers in nvme-pci driver (Christoph
Hellwig)
- Cleanup the nvme-pci removal path (Christoph Hellwig)
- Use kstrtobool() instead of strtobool (Christophe JAILLET)
- Allow unprivileged passthrough of Identify Controller (Joel
Granados)
- Support io stats on the mpath device (Sagi Grimberg)
- Minor nvmet cleanup (Sagi Grimberg)
- MD pull requests via Song:
- Code cleanups (Christoph)
- Various fixes
- Floppy pull request from Denis:
- Fix a memory leak in the init error path (Yuan)
- Series fixing some batch wakeup issues with sbitmap (Gabriel)
- Removal of the pktcdvd driver that was deprecated more than 5 years
ago, and subsequent removal of the devnode callback in struct
block_device_operations as no users are now left (Greg)
- Fix for partition read on an exclusively opened bdev (Jan)
- Series of elevator API cleanups (Jinlong, Christoph)
- Series of fixes and cleanups for blk-iocost (Kemeng)
- Series of fixes and cleanups for blk-throttle (Kemeng)
- Series adding concurrent support for sync queues in BFQ (Yu)
- Series bringing drbd a bit closer to the out-of-tree maintained
version (Christian, Joel, Lars, Philipp)
- Misc drbd fixes (Wang)
- blk-wbt fixes and tweaks for enable/disable (Yu)
- Fixes for mq-deadline for zoned devices (Damien)
- Add support for read-only and offline zones for null_blk
(Shin'ichiro)
- Series fixing the delayed holder tracking, as used by DM (Yu,
Christoph)
- Series enabling bio alloc caching for IRQ based IO (Pavel)
- Series enabling userspace peer-to-peer DMA (Logan)
- BFQ waker fixes (Khazhismel)
- Series fixing elevator refcount issues (Christoph, Jinlong)
- Series cleaning up references around queue destruction (Christoph)
- Series doing quiesce by tagset, enabling cleanups in drivers
(Christoph, Chao)
- Series untangling the queue kobject and queue references (Christoph)
- Misc fixes and cleanups (Bart, David, Dawei, Jinlong, Kemeng, Ye,
Yang, Waiman, Shin'ichiro, Randy, Pankaj, Christoph)
* tag 'for-6.2/block-2022-12-08' of git://git.kernel.dk/linux: (247 commits)
blktrace: Fix output non-blktrace event when blk_classic option enabled
block: sed-opal: Don't include <linux/kernel.h>
sed-opal: allow using IOC_OPAL_SAVE for locking too
blk-cgroup: Fix typo in comment
block: remove bio_set_op_attrs
nvmet: don't open-code NVME_NS_ATTR_RO enumeration
nvme-pci: use the tagset alloc/free helpers
nvme: add the Apple shared tag workaround to nvme_alloc_io_tag_set
nvme: only set reserved_tags in nvme_alloc_io_tag_set for fabrics controllers
nvme: consolidate setting the tagset flags
nvme: pass nr_maps explicitly to nvme_alloc_io_tag_set
block: bio_copy_data_iter
nvme-pci: split out a nvme_pci_ctrl_is_dead helper
nvme-pci: return early on ctrl state mismatch in nvme_reset_work
nvme-pci: rename nvme_disable_io_queues
nvme-pci: cleanup nvme_suspend_queue
nvme-pci: remove nvme_pci_disable
nvme-pci: remove nvme_disable_admin_queue
nvme: merge nvme_shutdown_ctrl into nvme_disable_ctrl
nvme: use nvme_wait_ready in nvme_shutdown_ctrl
...
This commit is contained in:
@@ -1,112 +0,0 @@
|
||||
/* SPDX-License-Identifier: GPL-2.0 WITH Linux-syscall-note */
|
||||
/*
|
||||
* Copyright (C) 2000 Jens Axboe <axboe@suse.de>
|
||||
* Copyright (C) 2001-2004 Peter Osterlund <petero2@telia.com>
|
||||
*
|
||||
* May be copied or modified under the terms of the GNU General Public
|
||||
* License. See linux/COPYING for more information.
|
||||
*
|
||||
* Packet writing layer for ATAPI and SCSI CD-R, CD-RW, DVD-R, and
|
||||
* DVD-RW devices.
|
||||
*
|
||||
*/
|
||||
#ifndef _UAPI__PKTCDVD_H
|
||||
#define _UAPI__PKTCDVD_H
|
||||
|
||||
#include <linux/types.h>
|
||||
|
||||
/*
|
||||
* 1 for normal debug messages, 2 is very verbose. 0 to turn it off.
|
||||
*/
|
||||
#define PACKET_DEBUG 1
|
||||
|
||||
#define MAX_WRITERS 8
|
||||
|
||||
#define PKT_RB_POOL_SIZE 512
|
||||
|
||||
/*
|
||||
* How long we should hold a non-full packet before starting data gathering.
|
||||
*/
|
||||
#define PACKET_WAIT_TIME (HZ * 5 / 1000)
|
||||
|
||||
/*
|
||||
* use drive write caching -- we need deferred error handling to be
|
||||
* able to successfully recover with this option (drive will return good
|
||||
* status as soon as the cdb is validated).
|
||||
*/
|
||||
#if defined(CONFIG_CDROM_PKTCDVD_WCACHE)
|
||||
#define USE_WCACHING 1
|
||||
#else
|
||||
#define USE_WCACHING 0
|
||||
#endif
|
||||
|
||||
/*
|
||||
* No user-servicable parts beyond this point ->
|
||||
*/
|
||||
|
||||
/*
|
||||
* device types
|
||||
*/
|
||||
#define PACKET_CDR 1
|
||||
#define PACKET_CDRW 2
|
||||
#define PACKET_DVDR 3
|
||||
#define PACKET_DVDRW 4
|
||||
|
||||
/*
|
||||
* flags
|
||||
*/
|
||||
#define PACKET_WRITABLE 1 /* pd is writable */
|
||||
#define PACKET_NWA_VALID 2 /* next writable address valid */
|
||||
#define PACKET_LRA_VALID 3 /* last recorded address valid */
|
||||
#define PACKET_MERGE_SEGS 4 /* perform segment merging to keep */
|
||||
/* underlying cdrom device happy */
|
||||
|
||||
/*
|
||||
* Disc status -- from READ_DISC_INFO
|
||||
*/
|
||||
#define PACKET_DISC_EMPTY 0
|
||||
#define PACKET_DISC_INCOMPLETE 1
|
||||
#define PACKET_DISC_COMPLETE 2
|
||||
#define PACKET_DISC_OTHER 3
|
||||
|
||||
/*
|
||||
* write type, and corresponding data block type
|
||||
*/
|
||||
#define PACKET_MODE1 1
|
||||
#define PACKET_MODE2 2
|
||||
#define PACKET_BLOCK_MODE1 8
|
||||
#define PACKET_BLOCK_MODE2 10
|
||||
|
||||
/*
|
||||
* Last session/border status
|
||||
*/
|
||||
#define PACKET_SESSION_EMPTY 0
|
||||
#define PACKET_SESSION_INCOMPLETE 1
|
||||
#define PACKET_SESSION_RESERVED 2
|
||||
#define PACKET_SESSION_COMPLETE 3
|
||||
|
||||
#define PACKET_MCN "4a656e734178626f65323030300000"
|
||||
|
||||
#undef PACKET_USE_LS
|
||||
|
||||
#define PKT_CTRL_CMD_SETUP 0
|
||||
#define PKT_CTRL_CMD_TEARDOWN 1
|
||||
#define PKT_CTRL_CMD_STATUS 2
|
||||
|
||||
struct pkt_ctrl_command {
|
||||
__u32 command; /* in: Setup, teardown, status */
|
||||
__u32 dev_index; /* in/out: Device index */
|
||||
__u32 dev; /* in/out: Device nr for cdrw device */
|
||||
__u32 pkt_dev; /* in/out: Device nr for packet device */
|
||||
__u32 num_devices; /* out: Largest device index + 1 */
|
||||
__u32 padding; /* Not used */
|
||||
};
|
||||
|
||||
/*
|
||||
* packet ioctls
|
||||
*/
|
||||
#define PACKET_IOCTL_MAGIC ('X')
|
||||
#define PACKET_CTRL_CMD _IOWR(PACKET_IOCTL_MAGIC, 1, struct pkt_ctrl_command)
|
||||
|
||||
|
||||
#endif /* _UAPI__PKTCDVD_H */
|
||||
@@ -44,6 +44,11 @@ enum opal_lock_state {
|
||||
OPAL_LK = 0x04, /* 0100 */
|
||||
};
|
||||
|
||||
enum opal_lock_flags {
|
||||
/* IOC_OPAL_SAVE will also store the provided key for locking */
|
||||
OPAL_SAVE_FOR_LOCK = 0x01,
|
||||
};
|
||||
|
||||
struct opal_key {
|
||||
__u8 lr;
|
||||
__u8 key_len;
|
||||
@@ -76,7 +81,8 @@ struct opal_user_lr_setup {
|
||||
struct opal_lock_unlock {
|
||||
struct opal_session_info session;
|
||||
__u32 l_state;
|
||||
__u8 __align[4];
|
||||
__u16 flags;
|
||||
__u8 __align[2];
|
||||
};
|
||||
|
||||
struct opal_new_pw {
|
||||
|
||||
Reference in New Issue
Block a user