Searched refs:MAX_TAGS (Results 1 - 5 of 5) sorted by relevance

/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/drivers/scsi/
H A Dsun3_scsi.h73 #ifndef MAX_TAGS
74 #define MAX_TAGS 32 macro
H A Dsun3_NCR5380.c221 #if (MAX_TAGS % 32) != 0
222 #error "MAX_TAGS must be a multiple of 32!"
226 char allocated[MAX_TAGS/8];
245 memset( &ta->allocated, 0, MAX_TAGS/8 );
248 * support (MAX_TAGS). This value will be decreased if the target
251 ta->queue_size = MAX_TAGS;
305 cmd->tag = find_first_zero_bit( &ta->allocated, MAX_TAGS );
329 else if (cmd->tag >= MAX_TAGS) {
354 memset( &ta->allocated, 0, MAX_TAGS/8 );
H A Datari_NCR5380.c225 DECLARE_BITMAP(allocated, MAX_TAGS);
244 bitmap_zero(ta->allocated, MAX_TAGS);
247 * support (MAX_TAGS). This value will be decreased if the target
250 ta->queue_size = MAX_TAGS;
303 cmd->tag = find_first_zero_bit(ta->allocated, MAX_TAGS);
326 } else if (cmd->tag >= MAX_TAGS) {
350 bitmap_zero(ta->allocated, MAX_TAGS);
H A Dncr53c8xx.c935 #define MAX_TAGS (64) macro
937 #define MAX_TAGS SCSI_NCR_MAX_TAGS macro
945 #if MAX_TAGS > 32
995 #define MAX_START (MAX_TARGET + 7 * MAX_TAGS)
1333 u_char cb_tags[MAX_TAGS]; /* Circular tags buffer */
3967 tp->usrtags = MAX_TAGS;
7071 if (lp->ia_tag == MAX_TAGS)
7117 if (lp->if_tag == MAX_TAGS)
7448 for (i = 0 ; i < MAX_TAGS ; i++)
7450 lp->maxnxs = MAX_TAGS;
[all...]
H A Datari_scsi.c81 #define MAX_TAGS 32 macro

Completed in 89 milliseconds