tag | line | file | source code |
ms | 672 | drivers/cdrom/aztcd.c | { struct cdrom_multisession ms; |
ms | 678 | drivers/cdrom/aztcd.c | memcpy_fromfs(&ms, (void*) arg, sizeof(struct cdrom_multisession)); |
ms | 679 | drivers/cdrom/aztcd.c | if (ms.addr_format == CDROM_MSF) |
ms | 680 | drivers/cdrom/aztcd.c | { ms.addr.msf.minute = azt_bcd2bin(DiskInfo.lastSession.min); |
ms | 681 | drivers/cdrom/aztcd.c | ms.addr.msf.second = azt_bcd2bin(DiskInfo.lastSession.sec); |
ms | 682 | drivers/cdrom/aztcd.c | ms.addr.msf.frame = azt_bcd2bin(DiskInfo.lastSession.frame); |
ms | 684 | drivers/cdrom/aztcd.c | else if (ms.addr_format == CDROM_LBA) |
ms | 685 | drivers/cdrom/aztcd.c | ms.addr.lba = azt_msf2hsg(&DiskInfo.lastSession); |
ms | 688 | drivers/cdrom/aztcd.c | ms.xa_flag = DiskInfo.xa; |
ms | 691 | drivers/cdrom/aztcd.c | memcpy_tofs((void*) arg, &ms, sizeof(struct cdrom_multisession)); |
ms | 693 | drivers/cdrom/aztcd.c | if (ms.addr_format == CDROM_MSF) |
ms | 695 | drivers/cdrom/aztcd.c | ms.xa_flag, ms.addr.msf.minute, ms.addr.msf.second, |
ms | 696 | drivers/cdrom/aztcd.c | ms.addr.msf.frame, DiskInfo.lastSession.min, |
ms | 700 | drivers/cdrom/aztcd.c | ms.xa_flag, ms.addr.lba, DiskInfo.lastSession.min, |
ms | 467 | drivers/cdrom/mcdx.c | struct cdrom_multisession ms; |
ms | 473 | drivers/cdrom/mcdx.c | memcpy_fromfs(&ms, (void*) arg, sizeof(struct cdrom_multisession)); |
ms | 474 | drivers/cdrom/mcdx.c | if (ms.addr_format == CDROM_MSF) { |
ms | 475 | drivers/cdrom/mcdx.c | ms.addr.msf.minute = bcd2uint(stuffp->multi.msf_last.minute); |
ms | 476 | drivers/cdrom/mcdx.c | ms.addr.msf.second = bcd2uint(stuffp->multi.msf_last.second); |
ms | 477 | drivers/cdrom/mcdx.c | ms.addr.msf.frame = bcd2uint(stuffp->multi.msf_last.frame); |
ms | 478 | drivers/cdrom/mcdx.c | } else if (ms.addr_format == CDROM_LBA) |
ms | 479 | drivers/cdrom/mcdx.c | ms.addr.lba = msf2log(&stuffp->multi.msf_last); |
ms | 482 | drivers/cdrom/mcdx.c | ms.xa_flag = !!stuffp->multi.multi; |
ms | 488 | drivers/cdrom/mcdx.c | memcpy_tofs((void*) arg, &ms, sizeof(struct cdrom_multisession)); |
ms | 489 | drivers/cdrom/mcdx.c | if (ms.addr_format == CDROM_MSF) |
ms | 492 | drivers/cdrom/mcdx.c | ms.xa_flag, |
ms | 493 | drivers/cdrom/mcdx.c | ms.addr.msf.minute, |
ms | 494 | drivers/cdrom/mcdx.c | ms.addr.msf.second, |
ms | 495 | drivers/cdrom/mcdx.c | ms.addr.msf.frame, |
ms | 503 | drivers/cdrom/mcdx.c | ms.xa_flag, |
ms | 504 | drivers/cdrom/mcdx.c | ms.addr.lba, |
ms | 1668 | drivers/cdrom/optcd.c | struct cdrom_multisession ms; |
ms | 1670 | drivers/cdrom/optcd.c | status = verify_area(VERIFY_READ, (void*) arg, sizeof ms); |
ms | 1673 | drivers/cdrom/optcd.c | status = verify_area(VERIFY_WRITE, (void*) arg, sizeof ms); |
ms | 1676 | drivers/cdrom/optcd.c | memcpy_fromfs(&ms, (void*) arg, sizeof ms); |
ms | 1678 | drivers/cdrom/optcd.c | ms.addr.msf.minute = disk_info.last_session.minute; |
ms | 1679 | drivers/cdrom/optcd.c | ms.addr.msf.second = disk_info.last_session.second; |
ms | 1680 | drivers/cdrom/optcd.c | ms.addr.msf.frame = disk_info.last_session.frame; |
ms | 1682 | drivers/cdrom/optcd.c | if (ms.addr_format != CDROM_LBA |
ms | 1683 | drivers/cdrom/optcd.c | && ms.addr_format != CDROM_MSF) |
ms | 1685 | drivers/cdrom/optcd.c | if (ms.addr_format == CDROM_LBA) |
ms | 1686 | drivers/cdrom/optcd.c | msf2lba(&ms.addr); |
ms | 1688 | drivers/cdrom/optcd.c | ms.xa_flag = disk_info.xa; |
ms | 1690 | drivers/cdrom/optcd.c | memcpy_tofs((void*) arg, &ms, |
ms | 1694 | drivers/cdrom/optcd.c | if (ms.addr_format == CDROM_MSF) |
ms | 1696 | drivers/cdrom/optcd.c | ms.xa_flag, |
ms | 1697 | drivers/cdrom/optcd.c | ms.addr.msf.minute, |
ms | 1698 | drivers/cdrom/optcd.c | ms.addr.msf.second, |
ms | 1699 | drivers/cdrom/optcd.c | ms.addr.msf.frame); |
ms | 1702 | drivers/cdrom/optcd.c | ms.xa_flag, |
ms | 1703 | drivers/cdrom/optcd.c | ms.addr.lba, |
ms | 3177 | drivers/scsi/53c7,8xx.c | TOKEN(ms,3), TOKEN(rp,2), TOKEN(rs,2), TOKEN(s,0), TOKEN(tb,0), TOKEN(te,0) |
ms | 34 | fs/minix/inode.c | struct minix_super_block * ms) |
ms | 42 | fs/minix/inode.c | struct minix_super_block * ms; |
ms | 45 | fs/minix/inode.c | ms = sb->u.minix_sb.s_ms; |
ms | 47 | fs/minix/inode.c | if (ms->s_state & MINIX_VALID_FS) |
ms | 48 | fs/minix/inode.c | ms->s_state &= ~MINIX_VALID_FS; |
ms | 49 | fs/minix/inode.c | minix_commit_super (sb, ms); |
ms | 88 | fs/minix/inode.c | struct minix_super_block * ms; |
ms | 90 | fs/minix/inode.c | ms = sb->u.minix_sb.s_ms; |
ms | 94 | fs/minix/inode.c | if (ms->s_state & MINIX_VALID_FS || |
ms | 98 | fs/minix/inode.c | ms->s_state = sb->u.minix_sb.s_mount_state; |
ms | 101 | fs/minix/inode.c | minix_commit_super (sb, ms); |
ms | 105 | fs/minix/inode.c | sb->u.minix_sb.s_mount_state = ms->s_state; |
ms | 106 | fs/minix/inode.c | ms->s_state &= ~MINIX_VALID_FS; |
ms | 124 | fs/minix/inode.c | struct minix_super_block *ms; |
ms | 142 | fs/minix/inode.c | ms = (struct minix_super_block *) bh->b_data; |
ms | 143 | fs/minix/inode.c | s->u.minix_sb.s_ms = ms; |
ms | 145 | fs/minix/inode.c | s->u.minix_sb.s_mount_state = ms->s_state; |
ms | 148 | fs/minix/inode.c | s->u.minix_sb.s_ninodes = ms->s_ninodes; |
ms | 149 | fs/minix/inode.c | s->u.minix_sb.s_imap_blocks = ms->s_imap_blocks; |
ms | 150 | fs/minix/inode.c | s->u.minix_sb.s_zmap_blocks = ms->s_zmap_blocks; |
ms | 151 | fs/minix/inode.c | s->u.minix_sb.s_firstdatazone = ms->s_firstdatazone; |
ms | 152 | fs/minix/inode.c | s->u.minix_sb.s_log_zone_size = ms->s_log_zone_size; |
ms | 153 | fs/minix/inode.c | s->u.minix_sb.s_max_size = ms->s_max_size; |
ms | 154 | fs/minix/inode.c | s->s_magic = ms->s_magic; |
ms | 157 | fs/minix/inode.c | s->u.minix_sb.s_nzones = ms->s_nzones; |
ms | 162 | fs/minix/inode.c | s->u.minix_sb.s_nzones = ms->s_nzones; |
ms | 167 | fs/minix/inode.c | s->u.minix_sb.s_nzones = ms->s_zones; |
ms | 172 | fs/minix/inode.c | s->u.minix_sb.s_nzones = ms->s_zones; |
ms | 227 | fs/minix/inode.c | ms->s_state &= ~MINIX_VALID_FS; |
ms | 80 | include/net/ip_masq.h | extern void ip_masq_set_expire(struct ip_masq *ms, unsigned long tout); |
ms | 123 | include/net/ip_masq.h | extern struct ip_masq_app * ip_masq_bind_app(struct ip_masq *ms); |
ms | 124 | include/net/ip_masq.h | extern int ip_masq_unbind_app(struct ip_masq *ms); |
ms | 103 | net/ipv4/ip_masq.c | ip_masq_hash(struct ip_masq *ms) |
ms | 107 | net/ipv4/ip_masq.c | if (ms->flags & IP_MASQ_F_HASHED) { |
ms | 114 | net/ipv4/ip_masq.c | hash = ip_masq_hash_key(ms->protocol, ms->maddr, ms->mport); |
ms | 115 | net/ipv4/ip_masq.c | ms->m_link = ip_masq_m_tab[hash]; |
ms | 116 | net/ipv4/ip_masq.c | ip_masq_m_tab[hash] = ms; |
ms | 121 | net/ipv4/ip_masq.c | hash = ip_masq_hash_key(ms->protocol, ms->saddr, ms->sport); |
ms | 122 | net/ipv4/ip_masq.c | ms->s_link = ip_masq_s_tab[hash]; |
ms | 123 | net/ipv4/ip_masq.c | ip_masq_s_tab[hash] = ms; |
ms | 126 | net/ipv4/ip_masq.c | ms->flags |= IP_MASQ_F_HASHED; |
ms | 136 | net/ipv4/ip_masq.c | static __inline__ int ip_masq_unhash(struct ip_masq *ms) |
ms | 140 | net/ipv4/ip_masq.c | if (!(ms->flags & IP_MASQ_F_HASHED)) { |
ms | 147 | net/ipv4/ip_masq.c | hash = ip_masq_hash_key(ms->protocol, ms->maddr, ms->mport); |
ms | 149 | net/ipv4/ip_masq.c | if (ms == (*ms_p)) { |
ms | 150 | net/ipv4/ip_masq.c | *ms_p = ms->m_link; |
ms | 156 | net/ipv4/ip_masq.c | hash = ip_masq_hash_key(ms->protocol, ms->saddr, ms->sport); |
ms | 158 | net/ipv4/ip_masq.c | if (ms == (*ms_p)) { |
ms | 159 | net/ipv4/ip_masq.c | *ms_p = ms->s_link; |
ms | 163 | net/ipv4/ip_masq.c | ms->flags &= ~IP_MASQ_F_HASHED; |
ms | 182 | net/ipv4/ip_masq.c | struct ip_masq *ms; |
ms | 196 | net/ipv4/ip_masq.c | for(ms = ip_masq_m_tab[hash]; ms ; ms = ms->m_link) { |
ms | 197 | net/ipv4/ip_masq.c | if ( protocol==ms->protocol && |
ms | 198 | net/ipv4/ip_masq.c | (s_addr==ms->daddr || ms->flags & IP_MASQ_F_NO_DADDR) && |
ms | 199 | net/ipv4/ip_masq.c | (s_port==ms->dport || ms->flags & IP_MASQ_F_NO_DPORT) && |
ms | 200 | net/ipv4/ip_masq.c | (d_addr==ms->maddr && d_port==ms->mport)) |
ms | 201 | net/ipv4/ip_masq.c | return ms; |
ms | 215 | net/ipv4/ip_masq.c | struct ip_masq *ms; |
ms | 229 | net/ipv4/ip_masq.c | for(ms = ip_masq_s_tab[hash]; ms ; ms = ms->s_link) { |
ms | 230 | net/ipv4/ip_masq.c | if (protocol == ms->protocol && |
ms | 231 | net/ipv4/ip_masq.c | s_addr == ms->saddr && s_port == ms->sport && |
ms | 232 | net/ipv4/ip_masq.c | d_addr == ms->daddr && d_port == ms->dport ) |
ms | 233 | net/ipv4/ip_masq.c | return ms; |
ms | 248 | net/ipv4/ip_masq.c | struct ip_masq *ms; |
ms | 251 | net/ipv4/ip_masq.c | for(ms = ip_masq_m_tab[hash]; ms ; ms = ms->m_link) { |
ms | 252 | net/ipv4/ip_masq.c | if ( protocol==ms->protocol && |
ms | 253 | net/ipv4/ip_masq.c | (m_addr==ms->maddr && m_port==ms->mport)) |
ms | 254 | net/ipv4/ip_masq.c | return ms; |
ms | 261 | net/ipv4/ip_masq.c | struct ip_masq *ms = (struct ip_masq *)data; |
ms | 266 | net/ipv4/ip_masq.c | masq_proto_name(ms->protocol), |
ms | 267 | net/ipv4/ip_masq.c | ntohl(ms->src),ntohs(ms->sport)); |
ms | 273 | net/ipv4/ip_masq.c | if (ip_masq_unhash(ms)) { |
ms | 274 | net/ipv4/ip_masq.c | ip_masq_free_ports[ms->protocol==IPPROTO_TCP]++; |
ms | 275 | net/ipv4/ip_masq.c | ip_masq_unbind_app(ms); |
ms | 276 | net/ipv4/ip_masq.c | kfree_s(ms,sizeof(*ms)); |
ms | 290 | net/ipv4/ip_masq.c | struct ip_masq *ms, *mst; |
ms | 303 | net/ipv4/ip_masq.c | ms = (struct ip_masq *) kmalloc(sizeof(struct ip_masq), GFP_ATOMIC); |
ms | 304 | net/ipv4/ip_masq.c | if (ms == NULL) { |
ms | 310 | net/ipv4/ip_masq.c | memset(ms, 0, sizeof(*ms)); |
ms | 311 | net/ipv4/ip_masq.c | init_timer(&ms->timer); |
ms | 312 | net/ipv4/ip_masq.c | ms->timer.data = (unsigned long)ms; |
ms | 313 | net/ipv4/ip_masq.c | ms->timer.function = masq_expire; |
ms | 314 | net/ipv4/ip_masq.c | ms->protocol = proto; |
ms | 315 | net/ipv4/ip_masq.c | ms->saddr = saddr; |
ms | 316 | net/ipv4/ip_masq.c | ms->sport = sport; |
ms | 317 | net/ipv4/ip_masq.c | ms->daddr = daddr; |
ms | 318 | net/ipv4/ip_masq.c | ms->dport = dport; |
ms | 319 | net/ipv4/ip_masq.c | ms->flags = mflags; |
ms | 322 | net/ipv4/ip_masq.c | ms->flags |= IP_MASQ_F_NO_DADDR; |
ms | 325 | net/ipv4/ip_masq.c | ms->maddr = dev->pa_addr; |
ms | 335 | net/ipv4/ip_masq.c | ms->mport = htons(masq_port++); |
ms | 344 | net/ipv4/ip_masq.c | mst = ip_masq_getbym(proto, ms->maddr, ms->mport); |
ms | 354 | net/ipv4/ip_masq.c | ip_masq_hash(ms); |
ms | 358 | net/ipv4/ip_masq.c | ip_masq_bind_app(ms); |
ms | 360 | net/ipv4/ip_masq.c | return ms; |
ms | 366 | net/ipv4/ip_masq.c | masq_proto_name(ms->protocol), *free_ports_p); |
ms | 367 | net/ipv4/ip_masq.c | kfree_s(ms, sizeof(*ms)); |
ms | 377 | net/ipv4/ip_masq.c | void ip_masq_set_expire(struct ip_masq *ms, unsigned long tout) |
ms | 380 | net/ipv4/ip_masq.c | ms->timer.expires = jiffies+tout; |
ms | 381 | net/ipv4/ip_masq.c | add_timer(&ms->timer); |
ms | 383 | net/ipv4/ip_masq.c | del_timer(&ms->timer); |
ms | 402 | net/ipv4/ip_masq.c | struct ip_masq *ms; |
ms | 425 | net/ipv4/ip_masq.c | ms = ip_masq_out_get(iph); |
ms | 426 | net/ipv4/ip_masq.c | if (ms!=NULL) |
ms | 427 | net/ipv4/ip_masq.c | ip_masq_set_expire(ms,0); |
ms | 433 | net/ipv4/ip_masq.c | if (ms==NULL) |
ms | 435 | net/ipv4/ip_masq.c | ms = ip_masq_new(dev, iph->protocol, |
ms | 439 | net/ipv4/ip_masq.c | if (ms == NULL) |
ms | 451 | net/ipv4/ip_masq.c | iph->saddr = ms->maddr; |
ms | 452 | net/ipv4/ip_masq.c | portptr[0] = ms->mport; |
ms | 458 | net/ipv4/ip_masq.c | if (ip_masq_app_pkt_out(ms, skb_ptr, dev) != 0) |
ms | 486 | net/ipv4/ip_masq.c | if (ms->flags & IP_MASQ_F_SAW_FIN || th->fin) |
ms | 489 | net/ipv4/ip_masq.c | ms->flags |= IP_MASQ_F_SAW_FIN; |
ms | 496 | net/ipv4/ip_masq.c | ip_masq_set_expire(ms, timeout); |
ms | 500 | net/ipv4/ip_masq.c | printk("O-routed from %lX:%X over %s\n",ntohl(ms->maddr),ntohs(ms->mport),dev->name); |
ms | 518 | net/ipv4/ip_masq.c | struct ip_masq *ms; |
ms | 538 | net/ipv4/ip_masq.c | ms = ip_masq_in_get(iph); |
ms | 540 | net/ipv4/ip_masq.c | if (ms != NULL) |
ms | 548 | net/ipv4/ip_masq.c | if ( ms->flags & IP_MASQ_F_NO_DPORT && ms->protocol == IPPROTO_TCP ) { |
ms | 549 | net/ipv4/ip_masq.c | ms->flags &= ~IP_MASQ_F_NO_DPORT; |
ms | 550 | net/ipv4/ip_masq.c | ms->dport = portptr[0]; |
ms | 553 | net/ipv4/ip_masq.c | ntohs(ms->dport)); |
ms | 556 | net/ipv4/ip_masq.c | if (ms->flags & IP_MASQ_F_NO_DADDR && ms->protocol == IPPROTO_TCP) { |
ms | 557 | net/ipv4/ip_masq.c | ms->flags &= ~IP_MASQ_F_NO_DADDR; |
ms | 558 | net/ipv4/ip_masq.c | ms->daddr = iph->saddr; |
ms | 561 | net/ipv4/ip_masq.c | ntohs(ms->daddr)); |
ms | 565 | net/ipv4/ip_masq.c | iph->daddr = ms->saddr; |
ms | 566 | net/ipv4/ip_masq.c | portptr[1] = ms->sport; |
ms | 573 | net/ipv4/ip_masq.c | if (ip_masq_app_pkt_in(ms, skb_p, dev) != 0) |
ms | 615 | net/ipv4/ip_masq.c | struct ip_masq *ms; |
ms | 626 | net/ipv4/ip_masq.c | for(ms = ip_masq_m_tab[idx]; ms ; ms = ms->m_link) |
ms | 628 | net/ipv4/ip_masq.c | int timer_active = del_timer(&ms->timer); |
ms | 630 | net/ipv4/ip_masq.c | ms->timer.expires = jiffies; |
ms | 632 | net/ipv4/ip_masq.c | masq_proto_name(ms->protocol), |
ms | 633 | net/ipv4/ip_masq.c | ntohl(ms->saddr),ntohs(ms->sport), |
ms | 634 | net/ipv4/ip_masq.c | ntohl(ms->daddr),ntohs(ms->dport), |
ms | 635 | net/ipv4/ip_masq.c | ntohs(ms->mport), |
ms | 636 | net/ipv4/ip_masq.c | ms->out_seq.init_seq,ms->out_seq.delta,ms->out_seq.previous_delta,ms->timer.expires-jiffies); |
ms | 638 | net/ipv4/ip_masq.c | add_timer(&ms->timer); |
ms | 184 | net/ipv4/ip_masq_app.c | struct ip_masq_app * ip_masq_bind_app(struct ip_masq *ms) |
ms | 187 | net/ipv4/ip_masq_app.c | mapp = ip_masq_app_get(ms->protocol, ms->dport); |
ms | 193 | net/ipv4/ip_masq_app.c | if (ms->app != NULL) { |
ms | 195 | net/ipv4/ip_masq_app.c | return ms->app; |
ms | 198 | net/ipv4/ip_masq_app.c | ms->app = mapp; |
ms | 199 | net/ipv4/ip_masq_app.c | if (mapp->masq_init_1) mapp->masq_init_1(mapp, ms); |
ms | 209 | net/ipv4/ip_masq_app.c | int ip_masq_unbind_app(struct ip_masq *ms) |
ms | 212 | net/ipv4/ip_masq_app.c | mapp = ms->app; |
ms | 214 | net/ipv4/ip_masq_app.c | if (mapp->masq_done_1) mapp->masq_done_1(mapp, ms); |
ms | 215 | net/ipv4/ip_masq_app.c | ms->app = NULL; |
ms | 291 | net/ipv4/ip_masq_app.c | static __inline__ void masq_seq_update(struct ip_masq *ms, struct ip_masq_seq *ms_seq, unsigned mflag, __u32 seq, int diff) |
ms | 295 | net/ipv4/ip_masq_app.c | if ( !(ms->flags & mflag) || after(seq, ms_seq->init_seq)) |
ms | 300 | net/ipv4/ip_masq_app.c | ms->flags |= mflag; |
ms | 310 | net/ipv4/ip_masq_app.c | int ip_masq_app_pkt_out(struct ip_masq *ms, struct sk_buff **skb_p, struct device *dev) |
ms | 325 | net/ipv4/ip_masq_app.c | if ( (mapp = ms->app) == NULL) |
ms | 341 | net/ipv4/ip_masq_app.c | if (ms->protocol == IPPROTO_TCP) { |
ms | 342 | net/ipv4/ip_masq_app.c | if (ms->flags & IP_MASQ_F_OUT_SEQ) |
ms | 343 | net/ipv4/ip_masq_app.c | masq_fix_seq(&ms->out_seq, th); |
ms | 344 | net/ipv4/ip_masq_app.c | if (ms->flags & IP_MASQ_F_IN_SEQ) |
ms | 345 | net/ipv4/ip_masq_app.c | masq_fix_ack_seq(&ms->in_seq, th); |
ms | 355 | net/ipv4/ip_masq_app.c | diff = mapp->pkt_out(mapp, ms, skb_p, dev); |
ms | 361 | net/ipv4/ip_masq_app.c | if (diff != 0 && ms->protocol == IPPROTO_TCP) |
ms | 362 | net/ipv4/ip_masq_app.c | masq_seq_update(ms, &ms->out_seq, IP_MASQ_F_OUT_SEQ, seq, diff); |
ms | 373 | net/ipv4/ip_masq_app.c | int ip_masq_app_pkt_in(struct ip_masq *ms, struct sk_buff **skb_p, struct device *dev) |
ms | 388 | net/ipv4/ip_masq_app.c | if ( (mapp = ms->app) == NULL) |
ms | 404 | net/ipv4/ip_masq_app.c | if (ms->protocol == IPPROTO_TCP) { |
ms | 405 | net/ipv4/ip_masq_app.c | if (ms->flags & IP_MASQ_F_IN_SEQ) |
ms | 406 | net/ipv4/ip_masq_app.c | masq_fix_seq(&ms->in_seq, th); |
ms | 407 | net/ipv4/ip_masq_app.c | if (ms->flags & IP_MASQ_F_OUT_SEQ) |
ms | 408 | net/ipv4/ip_masq_app.c | masq_fix_ack_seq(&ms->out_seq, th); |
ms | 418 | net/ipv4/ip_masq_app.c | diff = mapp->pkt_in(mapp, ms, skb_p, dev); |
ms | 424 | net/ipv4/ip_masq_app.c | if (diff != 0 && ms->protocol == IPPROTO_TCP) |
ms | 425 | net/ipv4/ip_masq_app.c | masq_seq_update(ms, &ms->in_seq, IP_MASQ_F_IN_SEQ, seq, diff); |
ms | 37 | net/ipv4/ip_masq_ftp.c | masq_ftp_init_1 (struct ip_masq_app *mapp, struct ip_masq *ms) |
ms | 44 | net/ipv4/ip_masq_ftp.c | masq_ftp_done_1 (struct ip_masq_app *mapp, struct ip_masq *ms) |
ms | 51 | net/ipv4/ip_masq_ftp.c | masq_ftp_out (struct ip_masq_app *mapp, struct ip_masq *ms, struct sk_buff **skb_p, struct device *dev) |
ms | 38 | net/ipv4/ip_masq_irc.c | masq_irc_init_1 (struct ip_masq_app *mapp, struct ip_masq *ms) |
ms | 45 | net/ipv4/ip_masq_irc.c | masq_irc_done_1 (struct ip_masq_app *mapp, struct ip_masq *ms) |
ms | 52 | net/ipv4/ip_masq_irc.c | masq_irc_out (struct ip_masq_app *mapp, struct ip_masq *ms, struct sk_buff **skb_p, struct device *dev) |