Home
last modified time | relevance | path

Searched refs:expect (Results 1 – 25 of 105) sorted by relevance

12345

/linux-2.6.39/net/netfilter/
Dnf_conntrack_expect.c384 static inline int __nf_ct_expect_check(struct nf_conntrack_expect *expect) in __nf_ct_expect_check() argument
388 struct nf_conn *master = expect->master; in __nf_ct_expect_check()
390 struct net *net = nf_ct_exp_net(expect); in __nf_ct_expect_check()
396 if (!(expect->flags & NF_CT_EXPECT_USERSPACE) && in __nf_ct_expect_check()
401 h = nf_ct_expect_dst_hash(&expect->tuple); in __nf_ct_expect_check()
403 if (expect_matches(i, expect)) { in __nf_ct_expect_check()
409 } else if (expect_clash(i, expect)) { in __nf_ct_expect_check()
419 )->expect_policy[expect->class]; in __nf_ct_expect_check()
421 master_help->expecting[expect->class] >= p->max_expected) { in __nf_ct_expect_check()
422 evict_oldest_expect(master, expect); in __nf_ct_expect_check()
[all …]
/linux-2.6.39/kernel/trace/
Dtrace_branch.c31 probe_likely_condition(struct ftrace_branch_data *f, int val, int expect) in probe_likely_condition() argument
77 entry->correct = val == expect; in probe_likely_condition()
88 void trace_likely_condition(struct ftrace_branch_data *f, int val, int expect) in trace_likely_condition() argument
93 probe_likely_condition(f, val, expect); in trace_likely_condition()
206 void trace_likely_condition(struct ftrace_branch_data *f, int val, int expect) in trace_likely_condition() argument
211 void ftrace_likely_update(struct ftrace_branch_data *f, int val, int expect) in ftrace_likely_update() argument
219 trace_likely_condition(f, val, expect); in ftrace_likely_update()
222 if (val == expect) in ftrace_likely_update()
/linux-2.6.39/include/net/netfilter/
Dnf_conntrack_expect.h104 int nf_ct_expect_related_report(struct nf_conntrack_expect *expect,
106 static inline int nf_ct_expect_related(struct nf_conntrack_expect *expect) in nf_ct_expect_related() argument
108 return nf_ct_expect_related_report(expect, 0, 0); in nf_ct_expect_related()
/linux-2.6.39/include/linux/
Dcompiler.h89 void ftrace_likely_update(struct ftrace_branch_data *f, int val, int expect);
94 #define __branch_check__(x, expect) ({ \ argument
105 ftrace_likely_update(&______f, ______r, expect); \
Ddebugobjects.h75 unsigned int expect, unsigned int next);
/linux-2.6.39/drivers/bluetooth/
Dbpa10x.c81 struct { __u8 type; int expect; } *scb; in bpa10x_recv() member
138 scb->expect = len; in bpa10x_recv()
143 len = scb->expect; in bpa10x_recv()
150 scb->expect -= len; in bpa10x_recv()
152 if (scb->expect == 0) { in bpa10x_recv()
/linux-2.6.39/tools/perf/util/
Dtrace-event-parse.c623 static int test_type(enum event_type type, enum event_type expect) in test_type() argument
625 if (type != expect) { in test_type()
627 expect, type); in test_type()
634 enum event_type expect, const char *expect_tok, in __test_type_token() argument
637 if (type != expect) { in __test_type_token()
640 expect, type); in __test_type_token()
654 enum event_type expect, const char *expect_tok) in test_type_token() argument
656 return __test_type_token(type, token, expect, expect_tok, true); in test_type_token()
659 static int __read_expect_type(enum event_type expect, char **tok, int newline_ok) in __read_expect_type() argument
667 return test_type(type, expect); in __read_expect_type()
[all …]
/linux-2.6.39/Documentation/
DSecurityBugs27 expect these delays to be short, measurable in days, not weeks or months.
32 to a few weeks. As a basic default policy, we expect report date to
Deisa.txt186 You *must not* expect any EISA device to be detected when returning
191 expect to have explored the whole machine when they exit their probe
/linux-2.6.39/drivers/char/
Dnvram.c488 unsigned short expect; in pc_check_checksum() local
492 expect = __nvram_read_byte(PC_CKS_LOC)<<8 | in pc_check_checksum()
494 return (sum & 0xffff) == expect; in pc_check_checksum()
/linux-2.6.39/net/bluetooth/
Dhci_core.c1312 scb->expect = hlen; in hci_reassembly()
1321 len = min(scb->expect, (__u16)count); in hci_reassembly()
1327 scb->expect -= len; in hci_reassembly()
1334 scb->expect = h->plen; in hci_reassembly()
1336 if (skb_tailroom(skb) < scb->expect) { in hci_reassembly()
1347 scb->expect = __le16_to_cpu(h->dlen); in hci_reassembly()
1349 if (skb_tailroom(skb) < scb->expect) { in hci_reassembly()
1360 scb->expect = h->dlen; in hci_reassembly()
1362 if (skb_tailroom(skb) < scb->expect) { in hci_reassembly()
1371 if (scb->expect == 0) { in hci_reassembly()
/linux-2.6.39/Documentation/filesystems/
Dudf.txt58 The following expect a offset from 0.
66 The following expect a offset from the partition root.
Dhfs.txt49 expect:
/linux-2.6.39/Documentation/ABI/testing/
Dsysfs-driver-hid-picolcd41 tiles get changed and it's not appropriate to expect the application
Dsysfs-firmware-dmi22 never expect to find a specific entry type on their
/linux-2.6.39/drivers/block/drbd/
Ddrbd_receiver.c1358 int dgs, rr, i, expect; in recv_dless_read() local
1386 expect = min_t(int, data_size, bvec->bv_len); in recv_dless_read()
1389 expect); in recv_dless_read()
1391 if (rr != expect) { in recv_dless_read()
1395 rr, expect); in recv_dless_read()
3957 const int expect = sizeof(struct p_handshake) - sizeof(struct p_header80); in drbd_do_handshake() local
3976 if (length != expect) { in drbd_do_handshake()
3978 expect, length); in drbd_do_handshake()
3982 rv = drbd_recv(mdev, &p->head.payload, expect); in drbd_do_handshake()
3984 if (rv != expect) { in drbd_do_handshake()
[all …]
/linux-2.6.39/drivers/block/
Dmg_disk.c213 static unsigned int mg_wait(struct mg_host *host, u32 expect, u32 msec) in mg_wait() argument
237 if (expect == ATA_BUSY) in mg_wait()
246 if (expect == MG_STAT_READY) in mg_wait()
250 if (expect == ATA_DRQ) in mg_wait()
/linux-2.6.39/include/net/bluetooth/
Dbluetooth.h148 __u16 expect; member
/linux-2.6.39/Documentation/networking/
Dewrk3.txt40 includes the card, so don't expect to get much nearer the 1.25MB/s
/linux-2.6.39/drivers/block/paride/
Dpg.c389 int expect[5] = { 1, 1, 1, 0x14, 0xeb }; in pg_reset() local
405 err = memcmp(expect, got, sizeof(got)) ? -1 : 0; in pg_reset()
Dpcd.c541 int expect[5] = { 1, 1, 1, 0x14, 0xeb }; in pcd_reset() local
555 flg &= (read_reg(cd, i + 1) == expect[i]); in pcd_reset()
/linux-2.6.39/drivers/xen/
DKconfig55 The old xenstore userspace tools expect to find "xenbus"
/linux-2.6.39/Documentation/device-mapper/
Ddm-io.txt68 and specify the number of pages they expect to perform I/O on concurrently.
/linux-2.6.39/arch/um/
DKconfig.char93 this if you expect the UML that you build to be run in environments
105 this if you expect the UML that you build to be run in environments
/linux-2.6.39/Documentation/arm/nwfpe/
DREADME42 expect quick action. Bugs still exist. The problem remains in isolating

12345