seq_list          226 drivers/target/iscsi/iscsi_target_erl1.c 	if (!cmd->seq_list) {
seq_list          241 drivers/target/iscsi/iscsi_target_erl1.c 		seq = &cmd->seq_list[i];
seq_list          268 drivers/target/iscsi/iscsi_target_erl1.c 			read_data_done += cmd->seq_list[i].xfer_len;
seq_list           30 drivers/target/iscsi/iscsi_target_seq_pdu_list.c 		seq = &cmd->seq_list[i];
seq_list           66 drivers/target/iscsi/iscsi_target_seq_pdu_list.c 		if (cmd->seq_list[i].type != SEQTYPE_NORMAL)
seq_list           68 drivers/target/iscsi/iscsi_target_seq_pdu_list.c 		cmd->seq_list[i].seq_send_order = seq_count++;
seq_list          192 drivers/target/iscsi/iscsi_target_seq_pdu_list.c 		if (cmd->seq_list[i].type != SEQTYPE_NORMAL)
seq_list          194 drivers/target/iscsi/iscsi_target_seq_pdu_list.c 		cmd->seq_list[i].seq_send_order = array[j++];
seq_list          294 drivers/target/iscsi/iscsi_target_seq_pdu_list.c 	struct iscsi_seq *seq = cmd->seq_list;
seq_list          543 drivers/target/iscsi/iscsi_target_seq_pdu_list.c 		cmd->seq_list = seq;
seq_list          669 drivers/target/iscsi/iscsi_target_seq_pdu_list.c 	if (!cmd->seq_list) {
seq_list          677 drivers/target/iscsi/iscsi_target_seq_pdu_list.c 			cmd->seq_list[i].orig_offset, cmd->seq_list[i].xfer_len,
seq_list          678 drivers/target/iscsi/iscsi_target_seq_pdu_list.c 			cmd->seq_list[i].seq_no);
seq_list          680 drivers/target/iscsi/iscsi_target_seq_pdu_list.c 		if ((cmd->seq_list[i].orig_offset +
seq_list          681 drivers/target/iscsi/iscsi_target_seq_pdu_list.c 				cmd->seq_list[i].xfer_len) >=
seq_list          683 drivers/target/iscsi/iscsi_target_seq_pdu_list.c 			return &cmd->seq_list[i];
seq_list          517 drivers/target/iscsi/iscsi_target_tmr.c 			seq = &cmd->seq_list[i];
seq_list          213 drivers/target/iscsi/iscsi_target_util.c 		if (cmd->seq_list[i].seq_send_order == seq_send_order)
seq_list          214 drivers/target/iscsi/iscsi_target_util.c 			return &cmd->seq_list[i];
seq_list          223 drivers/target/iscsi/iscsi_target_util.c 	if (!cmd->seq_list) {
seq_list          229 drivers/target/iscsi/iscsi_target_util.c 		if (cmd->seq_list[i].type != SEQTYPE_NORMAL)
seq_list          231 drivers/target/iscsi/iscsi_target_util.c 		if (cmd->seq_list[i].seq_send_order == cmd->seq_send_order) {
seq_list          233 drivers/target/iscsi/iscsi_target_util.c 			return &cmd->seq_list[i];
seq_list          730 drivers/target/iscsi/iscsi_target_util.c 	kfree(cmd->seq_list);
seq_list         1475 fs/btrfs/backref.c 	struct seq_list elem = SEQ_LIST_INIT(elem);
seq_list         1906 fs/btrfs/backref.c 	struct seq_list tree_mod_seq_elem = SEQ_LIST_INIT(tree_mod_seq_elem);
seq_list          330 fs/btrfs/ctree.c 			   struct seq_list *elem)
seq_list          343 fs/btrfs/ctree.c 			    struct seq_list *elem)
seq_list          348 fs/btrfs/ctree.c 	struct seq_list *cur_elem;
seq_list         2666 fs/btrfs/ctree.h 			   struct seq_list *elem);
seq_list         2668 fs/btrfs/ctree.h 			    struct seq_list *elem);
seq_list          497 fs/btrfs/delayed-ref.c 		struct seq_list *elem;
seq_list          500 fs/btrfs/delayed-ref.c 					struct seq_list, list);
seq_list          518 fs/btrfs/delayed-ref.c 	struct seq_list *elem;
seq_list          524 fs/btrfs/delayed-ref.c 					struct seq_list, list);
seq_list          485 include/target/iscsi/iscsi_target_core.h 	struct iscsi_seq	*seq_list;
seq_list          329 net/bluetooth/l2cap_core.c static int l2cap_seq_list_init(struct l2cap_seq_list *seq_list, u16 size)
seq_list          339 net/bluetooth/l2cap_core.c 	seq_list->list = kmalloc_array(alloc_size, sizeof(u16), GFP_KERNEL);
seq_list          340 net/bluetooth/l2cap_core.c 	if (!seq_list->list)
seq_list          343 net/bluetooth/l2cap_core.c 	seq_list->mask = alloc_size - 1;
seq_list          344 net/bluetooth/l2cap_core.c 	seq_list->head = L2CAP_SEQ_LIST_CLEAR;
seq_list          345 net/bluetooth/l2cap_core.c 	seq_list->tail = L2CAP_SEQ_LIST_CLEAR;
seq_list          347 net/bluetooth/l2cap_core.c 		seq_list->list[i] = L2CAP_SEQ_LIST_CLEAR;
seq_list          352 net/bluetooth/l2cap_core.c static inline void l2cap_seq_list_free(struct l2cap_seq_list *seq_list)
seq_list          354 net/bluetooth/l2cap_core.c 	kfree(seq_list->list);
seq_list          357 net/bluetooth/l2cap_core.c static inline bool l2cap_seq_list_contains(struct l2cap_seq_list *seq_list,
seq_list          361 net/bluetooth/l2cap_core.c 	return seq_list->list[seq & seq_list->mask] != L2CAP_SEQ_LIST_CLEAR;
seq_list          364 net/bluetooth/l2cap_core.c static inline u16 l2cap_seq_list_pop(struct l2cap_seq_list *seq_list)
seq_list          366 net/bluetooth/l2cap_core.c 	u16 seq = seq_list->head;
seq_list          367 net/bluetooth/l2cap_core.c 	u16 mask = seq_list->mask;
seq_list          369 net/bluetooth/l2cap_core.c 	seq_list->head = seq_list->list[seq & mask];
seq_list          370 net/bluetooth/l2cap_core.c 	seq_list->list[seq & mask] = L2CAP_SEQ_LIST_CLEAR;
seq_list          372 net/bluetooth/l2cap_core.c 	if (seq_list->head == L2CAP_SEQ_LIST_TAIL) {
seq_list          373 net/bluetooth/l2cap_core.c 		seq_list->head = L2CAP_SEQ_LIST_CLEAR;
seq_list          374 net/bluetooth/l2cap_core.c 		seq_list->tail = L2CAP_SEQ_LIST_CLEAR;
seq_list          380 net/bluetooth/l2cap_core.c static void l2cap_seq_list_clear(struct l2cap_seq_list *seq_list)
seq_list          384 net/bluetooth/l2cap_core.c 	if (seq_list->head == L2CAP_SEQ_LIST_CLEAR)
seq_list          387 net/bluetooth/l2cap_core.c 	for (i = 0; i <= seq_list->mask; i++)
seq_list          388 net/bluetooth/l2cap_core.c 		seq_list->list[i] = L2CAP_SEQ_LIST_CLEAR;
seq_list          390 net/bluetooth/l2cap_core.c 	seq_list->head = L2CAP_SEQ_LIST_CLEAR;
seq_list          391 net/bluetooth/l2cap_core.c 	seq_list->tail = L2CAP_SEQ_LIST_CLEAR;
seq_list          394 net/bluetooth/l2cap_core.c static void l2cap_seq_list_append(struct l2cap_seq_list *seq_list, u16 seq)
seq_list          396 net/bluetooth/l2cap_core.c 	u16 mask = seq_list->mask;
seq_list          400 net/bluetooth/l2cap_core.c 	if (seq_list->list[seq & mask] != L2CAP_SEQ_LIST_CLEAR)
seq_list          403 net/bluetooth/l2cap_core.c 	if (seq_list->tail == L2CAP_SEQ_LIST_CLEAR)
seq_list          404 net/bluetooth/l2cap_core.c 		seq_list->head = seq;
seq_list          406 net/bluetooth/l2cap_core.c 		seq_list->list[seq_list->tail & mask] = seq;
seq_list          408 net/bluetooth/l2cap_core.c 	seq_list->tail = seq;
seq_list          409 net/bluetooth/l2cap_core.c 	seq_list->list[seq & mask] = L2CAP_SEQ_LIST_TAIL;
seq_list          118 tools/perf/builtin-lock.c 	struct list_head        seq_list;
seq_list          179 tools/perf/builtin-lock.c 	INIT_LIST_HEAD(&st->seq_list);
seq_list          200 tools/perf/builtin-lock.c 	INIT_LIST_HEAD(&st->seq_list);
seq_list          368 tools/perf/builtin-lock.c 	list_for_each_entry(seq, &ts->seq_list, list) {
seq_list          381 tools/perf/builtin-lock.c 	list_add(&seq->list, &ts->seq_list);