1 /**********************************************************************
4 * Contact: support@cavium.com
5 * Please include "LiquidIO" in the subject.
7 * Copyright (c) 2003-2015 Cavium, Inc.
9 * This file is free software; you can redistribute it and/or modify
10 * it under the terms of the GNU General Public License, Version 2, as
11 * published by the Free Software Foundation.
13 * This file is distributed in the hope that it will be useful, but
14 * AS-IS and WITHOUT ANY WARRANTY; without even the implied warranty
15 * of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE, TITLE, or
16 * NONINFRINGEMENT. See the GNU General Public License for more
19 * This file may also be available under a different license from Cavium.
20 * Contact Cavium, Inc. for more information
21 **********************************************************************/
22 #include <linux/version.h>
23 #include <linux/types.h>
24 #include <linux/list.h>
25 #include <linux/interrupt.h>
26 #include <linux/pci.h>
27 #include <linux/kthread.h>
28 #include <linux/netdevice.h>
29 #include <linux/vmalloc.h>
30 #include "octeon_config.h"
31 #include "liquidio_common.h"
32 #include "octeon_droq.h"
33 #include "octeon_iq.h"
34 #include "response_manager.h"
35 #include "octeon_device.h"
36 #include "octeon_nic.h"
37 #include "octeon_main.h"
38 #include "octeon_network.h"
39 #include "cn66xx_regs.h"
40 #include "cn66xx_device.h"
41 #include "cn68xx_regs.h"
42 #include "cn68xx_device.h"
43 #include "liquidio_image.h"
45 #define INCR_INSTRQUEUE_PKT_COUNT(octeon_dev_ptr, iq_no, field, count) \
46 (octeon_dev_ptr->instr_queue[iq_no]->stats.field += count)
48 struct iq_post_status
{
53 static void check_db_timeout(struct work_struct
*work
);
54 static void __check_db_timeout(struct octeon_device
*oct
, unsigned long iq_no
);
56 static void (*reqtype_free_fn
[MAX_OCTEON_DEVICES
][REQTYPE_LAST
+ 1]) (void *);
58 static inline int IQ_INSTR_MODE_64B(struct octeon_device
*oct
, int iq_no
)
60 struct octeon_instr_queue
*iq
=
61 (struct octeon_instr_queue
*)oct
->instr_queue
[iq_no
];
65 #define IQ_INSTR_MODE_32B(oct, iq_no) (!IQ_INSTR_MODE_64B(oct, iq_no))
67 /* Define this to return the request status comaptible to old code */
68 /*#define OCTEON_USE_OLD_REQ_STATUS*/
70 /* Return 0 on success, 1 on failure */
71 int octeon_init_instr_queue(struct octeon_device
*oct
,
72 u32 iq_no
, u32 num_descs
)
74 struct octeon_instr_queue
*iq
;
75 struct octeon_iq_config
*conf
= NULL
;
77 struct cavium_wq
*db_wq
;
79 if (OCTEON_CN6XXX(oct
))
80 conf
= &(CFG_GET_IQ_CFG(CHIP_FIELD(oct
, cn6xxx
, conf
)));
83 dev_err(&oct
->pci_dev
->dev
, "Unsupported Chip %x\n",
88 if (num_descs
& (num_descs
- 1)) {
89 dev_err(&oct
->pci_dev
->dev
,
90 "Number of descriptors for instr queue %d not in power of 2.\n",
95 q_size
= (u32
)conf
->instr_type
* num_descs
;
97 iq
= oct
->instr_queue
[iq_no
];
99 iq
->base_addr
= lio_dma_alloc(oct
, q_size
,
100 (dma_addr_t
*)&iq
->base_addr_dma
);
101 if (!iq
->base_addr
) {
102 dev_err(&oct
->pci_dev
->dev
, "Cannot allocate memory for instr queue %d\n",
107 iq
->max_count
= num_descs
;
109 /* Initialize a list to holds requests that have been posted to Octeon
110 * but has yet to be fetched by octeon
112 iq
->request_list
= vmalloc(sizeof(*iq
->request_list
) * num_descs
);
113 if (!iq
->request_list
) {
114 lio_dma_free(oct
, q_size
, iq
->base_addr
, iq
->base_addr_dma
);
115 dev_err(&oct
->pci_dev
->dev
, "Alloc failed for IQ[%d] nr free list\n",
120 memset(iq
->request_list
, 0, sizeof(*iq
->request_list
) * num_descs
);
122 dev_dbg(&oct
->pci_dev
->dev
, "IQ[%d]: base: %p basedma: %llx count: %d\n",
123 iq_no
, iq
->base_addr
, iq
->base_addr_dma
, iq
->max_count
);
126 iq
->fill_threshold
= (u32
)conf
->db_min
;
128 iq
->host_write_index
= 0;
129 iq
->octeon_read_index
= 0;
131 iq
->last_db_time
= 0;
132 iq
->do_auto_flush
= 1;
133 iq
->db_timeout
= (u32
)conf
->db_timeout
;
134 atomic_set(&iq
->instr_pending
, 0);
136 /* Initialize the spinlock for this instruction queue */
137 spin_lock_init(&iq
->lock
);
139 oct
->io_qmask
.iq
|= (1 << iq_no
);
141 /* Set the 32B/64B mode for each input queue */
142 oct
->io_qmask
.iq64B
|= ((conf
->instr_type
== 64) << iq_no
);
143 iq
->iqcmd_64B
= (conf
->instr_type
== 64);
145 oct
->fn_list
.setup_iq_regs(oct
, iq_no
);
147 oct
->check_db_wq
[iq_no
].wq
= create_workqueue("check_iq_db");
148 if (!oct
->check_db_wq
[iq_no
].wq
) {
149 lio_dma_free(oct
, q_size
, iq
->base_addr
, iq
->base_addr_dma
);
150 dev_err(&oct
->pci_dev
->dev
, "check db wq create failed for iq %d\n",
155 db_wq
= &oct
->check_db_wq
[iq_no
];
157 INIT_DELAYED_WORK(&db_wq
->wk
.work
, check_db_timeout
);
158 db_wq
->wk
.ctxptr
= oct
;
159 db_wq
->wk
.ctxul
= iq_no
;
160 queue_delayed_work(db_wq
->wq
, &db_wq
->wk
.work
, msecs_to_jiffies(1));
165 int octeon_delete_instr_queue(struct octeon_device
*oct
, u32 iq_no
)
167 u64 desc_size
= 0, q_size
;
168 struct octeon_instr_queue
*iq
= oct
->instr_queue
[iq_no
];
170 cancel_delayed_work_sync(&oct
->check_db_wq
[iq_no
].wk
.work
);
171 flush_workqueue(oct
->check_db_wq
[iq_no
].wq
);
172 destroy_workqueue(oct
->check_db_wq
[iq_no
].wq
);
174 if (OCTEON_CN6XXX(oct
))
176 CFG_GET_IQ_INSTR_TYPE(CHIP_FIELD(oct
, cn6xxx
, conf
));
178 vfree(iq
->request_list
);
181 q_size
= iq
->max_count
* desc_size
;
182 lio_dma_free(oct
, (u32
)q_size
, iq
->base_addr
,
189 /* Return 0 on success, 1 on failure */
190 int octeon_setup_iq(struct octeon_device
*oct
,
195 if (oct
->instr_queue
[iq_no
]) {
196 dev_dbg(&oct
->pci_dev
->dev
, "IQ is in use. Cannot create the IQ: %d again\n",
198 oct
->instr_queue
[iq_no
]->app_ctx
= app_ctx
;
201 oct
->instr_queue
[iq_no
] =
202 vmalloc(sizeof(struct octeon_instr_queue
));
203 if (!oct
->instr_queue
[iq_no
])
206 memset(oct
->instr_queue
[iq_no
], 0,
207 sizeof(struct octeon_instr_queue
));
209 oct
->instr_queue
[iq_no
]->app_ctx
= app_ctx
;
210 if (octeon_init_instr_queue(oct
, iq_no
, num_descs
)) {
211 vfree(oct
->instr_queue
[iq_no
]);
212 oct
->instr_queue
[iq_no
] = NULL
;
217 oct
->fn_list
.enable_io_queues(oct
);
221 int lio_wait_for_instr_fetch(struct octeon_device
*oct
)
223 int i
, retry
= 1000, pending
, instr_cnt
= 0;
228 /*for (i = 0; i < oct->num_iqs; i++) {*/
229 for (i
= 0; i
< MAX_OCTEON_INSTR_QUEUES
; i
++) {
230 if (!(oct
->io_qmask
.iq
& (1UL << i
)))
234 instr_queue
[i
]->instr_pending
);
236 __check_db_timeout(oct
, i
);
237 instr_cnt
+= pending
;
243 schedule_timeout_uninterruptible(1);
245 } while (retry
-- && instr_cnt
);
251 ring_doorbell(struct octeon_device
*oct
, struct octeon_instr_queue
*iq
)
253 if (atomic_read(&oct
->status
) == OCT_DEV_RUNNING
) {
254 writel(iq
->fill_cnt
, iq
->doorbell_reg
);
255 /* make sure doorbell write goes through */
258 iq
->last_db_time
= jiffies
;
263 static inline void __copy_cmd_into_iq(struct octeon_instr_queue
*iq
,
268 cmdsize
= ((iq
->iqcmd_64B
) ? 64 : 32);
269 iqptr
= iq
->base_addr
+ (cmdsize
* iq
->host_write_index
);
271 memcpy(iqptr
, cmd
, cmdsize
);
275 __post_command(struct octeon_device
*octeon_dev
__attribute__((unused
)),
276 struct octeon_instr_queue
*iq
,
277 u32 force_db
__attribute__((unused
)), u8
*cmd
)
281 /* This ensures that the read index does not wrap around to the same
282 * position if queue gets full before Octeon could fetch any instr.
284 if (atomic_read(&iq
->instr_pending
) >= (s32
)(iq
->max_count
- 1))
287 __copy_cmd_into_iq(iq
, cmd
);
289 /* "index" is returned, host_write_index is modified. */
290 index
= iq
->host_write_index
;
291 INCR_INDEX_BY1(iq
->host_write_index
, iq
->max_count
);
294 /* Flush the command into memory. We need to be sure the data is in
295 * memory before indicating that the instruction is pending.
299 atomic_inc(&iq
->instr_pending
);
304 static inline struct iq_post_status
305 __post_command2(struct octeon_device
*octeon_dev
__attribute__((unused
)),
306 struct octeon_instr_queue
*iq
,
307 u32 force_db
__attribute__((unused
)), u8
*cmd
)
309 struct iq_post_status st
;
311 st
.status
= IQ_SEND_OK
;
313 /* This ensures that the read index does not wrap around to the same
314 * position if queue gets full before Octeon could fetch any instr.
316 if (atomic_read(&iq
->instr_pending
) >= (s32
)(iq
->max_count
- 1)) {
317 st
.status
= IQ_SEND_FAILED
;
322 if (atomic_read(&iq
->instr_pending
) >= (s32
)(iq
->max_count
- 2))
323 st
.status
= IQ_SEND_STOP
;
325 __copy_cmd_into_iq(iq
, cmd
);
327 /* "index" is returned, host_write_index is modified. */
328 st
.index
= iq
->host_write_index
;
329 INCR_INDEX_BY1(iq
->host_write_index
, iq
->max_count
);
332 /* Flush the command into memory. We need to be sure the data is in
333 * memory before indicating that the instruction is pending.
337 atomic_inc(&iq
->instr_pending
);
343 octeon_register_reqtype_free_fn(struct octeon_device
*oct
, int reqtype
,
346 if (reqtype
> REQTYPE_LAST
) {
347 dev_err(&oct
->pci_dev
->dev
, "%s: Invalid reqtype: %d\n",
352 reqtype_free_fn
[oct
->octeon_id
][reqtype
] = fn
;
358 __add_to_request_list(struct octeon_instr_queue
*iq
,
359 int idx
, void *buf
, int reqtype
)
361 iq
->request_list
[idx
].buf
= buf
;
362 iq
->request_list
[idx
].reqtype
= reqtype
;
366 lio_process_iq_request_list(struct octeon_device
*oct
,
367 struct octeon_instr_queue
*iq
)
371 u32 old
= iq
->flush_index
;
373 unsigned pkts_compl
= 0, bytes_compl
= 0;
374 struct octeon_soft_command
*sc
;
375 struct octeon_instr_irh
*irh
;
377 while (old
!= iq
->octeon_read_index
) {
378 reqtype
= iq
->request_list
[old
].reqtype
;
379 buf
= iq
->request_list
[old
].buf
;
381 if (reqtype
== REQTYPE_NONE
)
384 octeon_update_tx_completion_counters(buf
, reqtype
, &pkts_compl
,
388 case REQTYPE_NORESP_NET
:
389 case REQTYPE_NORESP_NET_SG
:
390 case REQTYPE_RESP_NET_SG
:
391 reqtype_free_fn
[oct
->octeon_id
][reqtype
](buf
);
393 case REQTYPE_RESP_NET
:
394 case REQTYPE_SOFT_COMMAND
:
397 irh
= (struct octeon_instr_irh
*)&sc
->cmd
.irh
;
399 /* We're expecting a response from Octeon.
400 * It's up to lio_process_ordered_list() to
401 * process sc. Add sc to the ordered soft
402 * command response list because we expect
403 * a response from Octeon.
405 spin_lock_bh(&oct
->response_list
406 [OCTEON_ORDERED_SC_LIST
].lock
);
407 atomic_inc(&oct
->response_list
408 [OCTEON_ORDERED_SC_LIST
].
410 list_add_tail(&sc
->node
, &oct
->response_list
411 [OCTEON_ORDERED_SC_LIST
].head
);
412 spin_unlock_bh(&oct
->response_list
413 [OCTEON_ORDERED_SC_LIST
].lock
);
416 sc
->callback(oct
, OCTEON_REQUEST_DONE
,
422 dev_err(&oct
->pci_dev
->dev
,
423 "%s Unknown reqtype: %d buf: %p at idx %d\n",
424 __func__
, reqtype
, buf
, old
);
427 iq
->request_list
[old
].buf
= NULL
;
428 iq
->request_list
[old
].reqtype
= 0;
432 INCR_INDEX_BY1(old
, iq
->max_count
);
435 octeon_report_tx_completion_to_bql(iq
->app_ctx
, pkts_compl
,
437 iq
->flush_index
= old
;
443 update_iq_indices(struct octeon_device
*oct
, struct octeon_instr_queue
*iq
)
445 u32 inst_processed
= 0;
447 /* Calculate how many commands Octeon has read and move the read index
450 iq
->octeon_read_index
= oct
->fn_list
.update_iq_read_idx(oct
, iq
);
452 /* Move the NORESPONSE requests to the per-device completion list. */
453 if (iq
->flush_index
!= iq
->octeon_read_index
)
454 inst_processed
= lio_process_iq_request_list(oct
, iq
);
456 if (inst_processed
) {
457 atomic_sub(inst_processed
, &iq
->instr_pending
);
458 iq
->stats
.instr_processed
+= inst_processed
;
463 octeon_flush_iq(struct octeon_device
*oct
, struct octeon_instr_queue
*iq
,
466 if (atomic_read(&iq
->instr_pending
) >= (s32
)pending_thresh
) {
467 spin_lock_bh(&iq
->lock
);
468 update_iq_indices(oct
, iq
);
469 spin_unlock_bh(&iq
->lock
);
473 static void __check_db_timeout(struct octeon_device
*oct
, unsigned long iq_no
)
475 struct octeon_instr_queue
*iq
;
480 iq
= oct
->instr_queue
[iq_no
];
484 /* If jiffies - last_db_time < db_timeout do nothing */
485 next_time
= iq
->last_db_time
+ iq
->db_timeout
;
486 if (!time_after(jiffies
, (unsigned long)next_time
))
488 iq
->last_db_time
= jiffies
;
490 /* Get the lock and prevent tasklets. This routine gets called from
491 * the poll thread. Instructions can now be posted in tasklet context
493 spin_lock_bh(&iq
->lock
);
494 if (iq
->fill_cnt
!= 0)
495 ring_doorbell(oct
, iq
);
497 spin_unlock_bh(&iq
->lock
);
499 /* Flush the instruction queue */
500 if (iq
->do_auto_flush
)
501 octeon_flush_iq(oct
, iq
, 1);
504 /* Called by the Poll thread at regular intervals to check the instruction
505 * queue for commands to be posted and for commands that were fetched by Octeon.
507 static void check_db_timeout(struct work_struct
*work
)
509 struct cavium_wk
*wk
= (struct cavium_wk
*)work
;
510 struct octeon_device
*oct
= (struct octeon_device
*)wk
->ctxptr
;
511 unsigned long iq_no
= wk
->ctxul
;
512 struct cavium_wq
*db_wq
= &oct
->check_db_wq
[iq_no
];
514 __check_db_timeout(oct
, iq_no
);
515 queue_delayed_work(db_wq
->wq
, &db_wq
->wk
.work
, msecs_to_jiffies(1));
519 octeon_send_command(struct octeon_device
*oct
, u32 iq_no
,
520 u32 force_db
, void *cmd
, void *buf
,
521 u32 datasize
, u32 reqtype
)
523 struct iq_post_status st
;
524 struct octeon_instr_queue
*iq
= oct
->instr_queue
[iq_no
];
526 spin_lock_bh(&iq
->lock
);
528 st
= __post_command2(oct
, iq
, force_db
, cmd
);
530 if (st
.status
!= IQ_SEND_FAILED
) {
531 octeon_report_sent_bytes_to_bql(buf
, reqtype
);
532 __add_to_request_list(iq
, st
.index
, buf
, reqtype
);
533 INCR_INSTRQUEUE_PKT_COUNT(oct
, iq_no
, bytes_sent
, datasize
);
534 INCR_INSTRQUEUE_PKT_COUNT(oct
, iq_no
, instr_posted
, 1);
536 if (iq
->fill_cnt
>= iq
->fill_threshold
|| force_db
)
537 ring_doorbell(oct
, iq
);
539 INCR_INSTRQUEUE_PKT_COUNT(oct
, iq_no
, instr_dropped
, 1);
542 spin_unlock_bh(&iq
->lock
);
544 if (iq
->do_auto_flush
)
545 octeon_flush_iq(oct
, iq
, 2);
551 octeon_prepare_soft_command(struct octeon_device
*oct
,
552 struct octeon_soft_command
*sc
,
559 struct octeon_config
*oct_cfg
;
560 struct octeon_instr_ih
*ih
;
561 struct octeon_instr_irh
*irh
;
562 struct octeon_instr_rdp
*rdp
;
565 BUG_ON(subcode
> 127);
567 oct_cfg
= octeon_get_conf(oct
);
569 ih
= (struct octeon_instr_ih
*)&sc
->cmd
.ih
;
570 ih
->tagtype
= ATOMIC_TAG
;
571 ih
->tag
= LIO_CONTROL
;
573 ih
->grp
= CFG_GET_CTRL_Q_GRP(oct_cfg
);
576 ih
->dlengsz
= sc
->datasize
;
580 irh
= (struct octeon_instr_irh
*)&sc
->cmd
.irh
;
581 irh
->opcode
= opcode
;
582 irh
->subcode
= subcode
;
584 /* opcode/subcode specific parameters (ossp) */
585 irh
->ossp
= irh_ossp
;
586 sc
->cmd
.ossp
[0] = ossp0
;
587 sc
->cmd
.ossp
[1] = ossp1
;
590 rdp
= (struct octeon_instr_rdp
*)&sc
->cmd
.rdp
;
591 rdp
->pcie_port
= oct
->pcie_port
;
592 rdp
->rlen
= sc
->rdatasize
;
596 ih
->fsz
= 40; /* irh+ossp[0]+ossp[1]+rdp+rptr = 40 bytes */
600 ih
->fsz
= 24; /* irh + ossp[0] + ossp[1] = 24 bytes */
603 while (!(oct
->io_qmask
.iq
& (1 << sc
->iq_no
)))
607 int octeon_send_soft_command(struct octeon_device
*oct
,
608 struct octeon_soft_command
*sc
)
610 struct octeon_instr_ih
*ih
;
611 struct octeon_instr_irh
*irh
;
612 struct octeon_instr_rdp
*rdp
;
614 ih
= (struct octeon_instr_ih
*)&sc
->cmd
.ih
;
616 BUG_ON(!sc
->dmadptr
);
617 sc
->cmd
.dptr
= sc
->dmadptr
;
620 irh
= (struct octeon_instr_irh
*)&sc
->cmd
.irh
;
622 BUG_ON(!sc
->dmarptr
);
623 BUG_ON(!sc
->status_word
);
624 *sc
->status_word
= COMPLETION_WORD_INIT
;
626 rdp
= (struct octeon_instr_rdp
*)&sc
->cmd
.rdp
;
628 sc
->cmd
.rptr
= sc
->dmarptr
;
632 sc
->timeout
= jiffies
+ sc
->wait_time
;
634 return octeon_send_command(oct
, sc
->iq_no
, 1, &sc
->cmd
, sc
,
635 (u32
)ih
->dlengsz
, REQTYPE_SOFT_COMMAND
);
638 int octeon_setup_sc_buffer_pool(struct octeon_device
*oct
)
642 struct octeon_soft_command
*sc
;
644 INIT_LIST_HEAD(&oct
->sc_buf_pool
.head
);
645 spin_lock_init(&oct
->sc_buf_pool
.lock
);
646 atomic_set(&oct
->sc_buf_pool
.alloc_buf_count
, 0);
648 for (i
= 0; i
< MAX_SOFT_COMMAND_BUFFERS
; i
++) {
649 sc
= (struct octeon_soft_command
*)
651 SOFT_COMMAND_BUFFER_SIZE
,
652 (dma_addr_t
*)&dma_addr
);
656 sc
->dma_addr
= dma_addr
;
657 sc
->size
= SOFT_COMMAND_BUFFER_SIZE
;
659 list_add_tail(&sc
->node
, &oct
->sc_buf_pool
.head
);
665 int octeon_free_sc_buffer_pool(struct octeon_device
*oct
)
667 struct list_head
*tmp
, *tmp2
;
668 struct octeon_soft_command
*sc
;
670 spin_lock(&oct
->sc_buf_pool
.lock
);
672 list_for_each_safe(tmp
, tmp2
, &oct
->sc_buf_pool
.head
) {
675 sc
= (struct octeon_soft_command
*)tmp
;
677 lio_dma_free(oct
, sc
->size
, sc
, sc
->dma_addr
);
680 INIT_LIST_HEAD(&oct
->sc_buf_pool
.head
);
682 spin_unlock(&oct
->sc_buf_pool
.lock
);
687 struct octeon_soft_command
*octeon_alloc_soft_command(struct octeon_device
*oct
,
694 u32 offset
= sizeof(struct octeon_soft_command
);
695 struct octeon_soft_command
*sc
= NULL
;
696 struct list_head
*tmp
;
698 BUG_ON((offset
+ datasize
+ rdatasize
+ ctxsize
) >
699 SOFT_COMMAND_BUFFER_SIZE
);
701 spin_lock(&oct
->sc_buf_pool
.lock
);
703 if (list_empty(&oct
->sc_buf_pool
.head
)) {
704 spin_unlock(&oct
->sc_buf_pool
.lock
);
708 list_for_each(tmp
, &oct
->sc_buf_pool
.head
)
713 atomic_inc(&oct
->sc_buf_pool
.alloc_buf_count
);
715 spin_unlock(&oct
->sc_buf_pool
.lock
);
717 sc
= (struct octeon_soft_command
*)tmp
;
719 dma_addr
= sc
->dma_addr
;
722 memset(sc
, 0, sc
->size
);
724 sc
->dma_addr
= dma_addr
;
728 sc
->ctxptr
= (u8
*)sc
+ offset
;
729 sc
->ctxsize
= ctxsize
;
732 /* Start data at 128 byte boundary */
733 offset
= (offset
+ ctxsize
+ 127) & 0xffffff80;
736 sc
->virtdptr
= (u8
*)sc
+ offset
;
737 sc
->dmadptr
= dma_addr
+ offset
;
738 sc
->datasize
= datasize
;
741 /* Start rdata at 128 byte boundary */
742 offset
= (offset
+ datasize
+ 127) & 0xffffff80;
745 BUG_ON(rdatasize
< 16);
746 sc
->virtrptr
= (u8
*)sc
+ offset
;
747 sc
->dmarptr
= dma_addr
+ offset
;
748 sc
->rdatasize
= rdatasize
;
749 sc
->status_word
= (u64
*)((u8
*)(sc
->virtrptr
) + rdatasize
- 8);
755 void octeon_free_soft_command(struct octeon_device
*oct
,
756 struct octeon_soft_command
*sc
)
758 spin_lock(&oct
->sc_buf_pool
.lock
);
760 list_add_tail(&sc
->node
, &oct
->sc_buf_pool
.head
);
762 atomic_dec(&oct
->sc_buf_pool
.alloc_buf_count
);
764 spin_unlock(&oct
->sc_buf_pool
.lock
);