get_pktiopb, free_pktiopb - allocate/free a SCSI packet in the iopb map
#include <sys/scsi/scsi.h> struct scsi_pkt *get_pktiopb(struct scsi_address *ap, caddr_t *datap, int cdblen, int statuslen, int datalen, int readflag, int (*callback);
void free_pktiopb(struct scsi_pkt *pkt, caddr_t datap, int datalen);
These interfaces are obsolete. Use scsi_alloc_consistent_buf(9F) instead of get_pktiopb(). Use scsi_free_consistent_buf(9F) instead of free_pktiopb().
ap
datap
cdblen
statuslen
datalen
readflag
callback
pkt
The get_pktiopb() function allocates a scsi_pkt structure that has a small data area allocated. It is used by some SCSI commands such as REQUEST_SENSE, which involve a small amount of data and require cache-consistent memory for proper operation. It uses ddi_iopb_alloc(9F) for allocating the data area and scsi_resalloc(9F) to allocate the packet and DMA resources.
callback indicates what get_pktiopb() should do when resources are not available:
NULL_FUNC
SLEEP_FUNC
Other Values
The free_pktiopb() function is used for freeing the packet and its associated resources.
The get_pktiopb() function returns a pointer to the newly allocated scsi_pkt or a NULL pointer.
If callback is SLEEP_FUNC, then this routine can be called only from user or kernel context. Otherwise, it can be called from user, interrupt, or kernel context. The callback function should not block or call routines that block.
The free_pktiopb() function can be called from user, interrupt, or kernel context.
See attributes(5) for a description of the following attributes:
|
attributes(5), ddi_iopb_alloc(9F), scsi_alloc_consistent_buf(9F), scsi_free_consistent_buf(9F), scsi_pktalloc(9F), scsi_resalloc(9F), scsi_pkt(9S)
The get_pktiopb() and free_pktiopb() functions are obsolete and will be discontinued in a future release. These functions have been replaced by, respectively, scsi_alloc_consistent_buf(9F) and scsi_free_consistent_buf(9F).
The get_pktiopb() function uses scarce resources. For this reason and its obsolescence (see above), its use is discouraged.
Закладки на сайте Проследить за страницей |
Created 1996-2024 by Maxim Chirkov Добавить, Поддержать, Вебмастеру |