Home
last modified time | relevance | path

Searched refs:atm_tcp_ops (Results 1 – 3 of 3) sorted by relevance

/linux-2.4.37.9/include/linux/
Datm_tcp.h64 struct atm_tcp_ops { struct
71 extern struct atm_tcp_ops atm_tcp_ops; argument
/linux-2.4.37.9/drivers/atm/
Datmtcp.c436 atm_tcp_ops.attach = atmtcp_attach; in init_module()
437 atm_tcp_ops.create_persistent = atmtcp_create_persistent; in init_module()
438 atm_tcp_ops.remove_persistent = atmtcp_remove_persistent; in init_module()
445 atm_tcp_ops.attach = NULL; in cleanup_module()
446 atm_tcp_ops.create_persistent = NULL; in cleanup_module()
447 atm_tcp_ops.remove_persistent = NULL; in cleanup_module()
453 struct atm_tcp_ops atm_tcp_ops = { variable
/linux-2.4.37.9/net/atm/
Dcommon.c97 struct atm_tcp_ops atm_tcp_ops; variable
98 EXPORT_SYMBOL(atm_tcp_ops);
871 if (!atm_tcp_ops.attach) { in vcc_ioctl()
875 fops_get(&atm_tcp_ops); in vcc_ioctl()
876 error = atm_tcp_ops.attach(vcc, (int) arg); in vcc_ioctl()
880 fops_put(&atm_tcp_ops); in vcc_ioctl()
887 if (!atm_tcp_ops.create_persistent) { in vcc_ioctl()
891 error = atm_tcp_ops.create_persistent((int) arg); in vcc_ioctl()
893 fops_put(&atm_tcp_ops); in vcc_ioctl()
900 if (!atm_tcp_ops.remove_persistent) { in vcc_ioctl()
[all …]