Searched refs:rq2 (Results 1 - 4 of 4) sorted by relevance

/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/drivers/isdn/mISDN/
H A Dstack.c469 struct channel_req rq, rq2; local
495 rq2.protocol = protocol;
496 rq2.adr = *adr;
497 rq2.ch = ch;
498 err = bp->create(&rq2);
501 ch->recv = rq2.ch->send;
502 ch->peer = rq2.ch;
503 rq2.ch->st = dev->D.st;
504 rq.protocol = rq2.protocol;
508 rq2
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/block/
H A Dcfq-iosched.c648 * Lifted from AS - choose which of rq1 and rq2 that is best served now.
653 cfq_choose_req(struct cfq_data *cfqd, struct request *rq1, struct request *rq2, sector_t last) argument
661 if (rq1 == NULL || rq1 == rq2)
662 return rq2;
663 if (rq2 == NULL)
666 if (rq_is_sync(rq1) && !rq_is_sync(rq2))
668 else if (rq_is_sync(rq2) && !rq_is_sync(rq1))
669 return rq2;
670 if ((rq1->cmd_flags & REQ_META) && !(rq2->cmd_flags & REQ_META))
672 else if ((rq2
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/net/key/
H A Daf_key.c2402 struct sadb_x_ipsecrequest *rq2; local
2417 rq2 = (struct sadb_x_ipsecrequest *)((u8 *)rq1 + rq1->sadb_x_ipsecrequest_len);
2421 len < rq2->sadb_x_ipsecrequest_len)
2425 err = parse_sockaddr_pair((struct sockaddr *)(rq2 + 1),
2426 rq2->sadb_x_ipsecrequest_len,
2432 if (rq1->sadb_x_ipsecrequest_proto != rq2->sadb_x_ipsecrequest_proto ||
2433 rq1->sadb_x_ipsecrequest_mode != rq2->sadb_x_ipsecrequest_mode ||
2434 rq1->sadb_x_ipsecrequest_reqid != rq2->sadb_x_ipsecrequest_reqid)
2444 rq2->sadb_x_ipsecrequest_len));
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/kernel/
H A Dsched.c1712 static void double_rq_lock(struct rq *rq1, struct rq *rq2);
1791 static void double_rq_lock(struct rq *rq1, struct rq *rq2)
1793 __acquires(rq2->lock)
1796 if (rq1 == rq2) {
1798 __acquire(rq2->lock); /* Fake it out ;) */
1800 if (rq1 < rq2) {
1802 raw_spin_lock_nested(&rq2->lock, SINGLE_DEPTH_NESTING);
1804 raw_spin_lock(&rq2->lock);
1816 static void double_rq_unlock(struct rq *rq1, struct rq *rq2)
1818 __releases(rq2
[all...]

Completed in 134 milliseconds