taglinefilesource code
opt148fs/isofs/inode.cstruct iso9660_options opt;
opt150fs/isofs/inode.cif (!parse_options((char *) data,&opt)) {
opt156fs/isofs/inode.cprintk("map = %c\n", opt.map);
opt157fs/isofs/inode.cprintk("rock = %c\n", opt.rock);
opt158fs/isofs/inode.cprintk("cruft = %c\n", opt.cruft);
opt159fs/isofs/inode.cprintk("conversion = %c\n", opt.conversion);
opt160fs/isofs/inode.cprintk("blocksize = %d\n", opt.blocksize);
opt161fs/isofs/inode.cprintk("gid = %d\n", opt.gid);
opt162fs/isofs/inode.cprintk("uid = %d\n", opt.uid);
opt167fs/isofs/inode.cint i = opt.blocksize;
opt173fs/isofs/inode.cset_blocksize(dev, opt.blocksize);
opt180fs/isofs/inode.cif (!(bh = bread(dev, iso_blknum << (ISOFS_BLOCK_BITS-blocksize_bits), opt.blocksize))) {
opt200fs/isofs/inode.copt.rock = 'n';
opt278fs/isofs/inode.cs->u.isofs_sb.s_mapping = opt.map;
opt279fs/isofs/inode.cs->u.isofs_sb.s_rock = (opt.rock == 'y' ? 1 : 0);
opt280fs/isofs/inode.cs->u.isofs_sb.s_conversion = opt.conversion;
opt281fs/isofs/inode.cs->u.isofs_sb.s_cruft = opt.cruft;
opt282fs/isofs/inode.cs->u.isofs_sb.s_uid = opt.uid;
opt283fs/isofs/inode.cs->u.isofs_sb.s_gid = opt.gid;
opt284fs/isofs/inode.cs->s_blocksize = opt.blocksize;
opt257include/linux/ext2_fs.h#define clear_opt(o, opt)    o &= ~EXT2_MOUNT_##opt
opt258include/linux/ext2_fs.h#define set_opt(o, opt)      o |= EXT2_MOUNT_##opt
opt259include/linux/ext2_fs.h#define test_opt(sb, opt)    ((sb)->u.ext2_sb.s_mount_opt & \
opt260include/linux/ext2_fs.hEXT2_MOUNT_##opt)
opt559net/inet/af_inet.csk->opt = NULL;
opt353net/inet/icmp.cstruct options *opt)
opt376net/inet/icmp.cIPPROTO_ICMP, opt, len, skb->ip_hdr->tos,255);
opt420net/inet/icmp.cstruct options *opt)
opt444net/inet/icmp.coffset = ip_build_header(skb2, daddr, saddr, &ndev, IPPROTO_ICMP, opt, len, 
opt497net/inet/icmp.cstruct options *opt)
opt510net/inet/icmp.cstruct options *opt)
opt535net/inet/icmp.cIPPROTO_ICMP, opt, len, skb->ip_hdr->tos,255);
opt577net/inet/icmp.cint icmp_rcv(struct sk_buff *skb1, struct device *dev, struct options *opt,
opt647net/inet/icmp.cicmp_echo(icmph, skb1, dev, saddr, daddr, len, opt);
opt655net/inet/icmp.cicmp_timestamp(icmph, skb1, dev, saddr, daddr, len, opt);
opt663net/inet/icmp.cicmp_info(icmph, skb1, dev, saddr, daddr, len, opt);
opt671net/inet/icmp.cicmp_address(icmph, skb1, dev, saddr, daddr, len, opt);
opt31net/inet/icmp.hstruct options *opt, unsigned long daddr,
opt121net/inet/ip.cstrict_route(struct iphdr *iph, struct options *opt)
opt127net/inet/ip.cloose_route(struct iphdr *iph, struct options *opt)
opt144net/inet/ip.cbuild_options(struct iphdr *iph, struct options *opt)
opt191net/inet/ip.cstruct device **dev, int type, struct options *opt, int len, int tos, int ttl)
opt235net/inet/ip.copt = &optmem;
opt303net/inet/ip.cbuild_options(iph, opt);
opt311net/inet/ip.cdo_options(struct iphdr *iph, struct options *opt)
opt318net/inet/ip.copt->record_route.route_size = 0;
opt319net/inet/ip.copt->loose_route.route_size  = 0;
opt320net/inet/ip.copt->strict_route.route_size = 0;
opt321net/inet/ip.copt->tstamp.ptr              = 0;
opt322net/inet/ip.copt->security                = 0;
opt323net/inet/ip.copt->compartment             = 0;
opt324net/inet/ip.copt->handling                = 0;
opt325net/inet/ip.copt->stream                  = 0;
opt326net/inet/ip.copt->tcc                     = 0;
opt345net/inet/ip.copt->security = ntohs(*(unsigned short *)buff);
opt347net/inet/ip.copt->compartment = ntohs(*(unsigned short *)buff);
opt349net/inet/ip.copt->handling = ntohs(*(unsigned short *)buff);
opt351net/inet/ip.copt->tcc = ((*buff) << 16) + ntohs(*(unsigned short *)(buff+1));
opt359net/inet/ip.copt->loose_route.route_size = (*buff -3)/4;
opt362net/inet/ip.copt->loose_route.pointer = *buff/4 - 1;
opt365net/inet/ip.cfor (i = 0; i < opt->loose_route.route_size; i++) {
opt368net/inet/ip.copt->loose_route.route[i] = *(unsigned long *)buff;
opt376net/inet/ip.copt->strict_route.route_size = (*buff -3)/4;
opt379net/inet/ip.copt->strict_route.pointer = *buff/4 - 1;
opt382net/inet/ip.cfor (i = 0; i < opt->strict_route.route_size; i++) {
opt385net/inet/ip.copt->strict_route.route[i] = *(unsigned long *)buff;
opt393net/inet/ip.copt->record_route.route_size = (*buff -3)/4;
opt396net/inet/ip.copt->record_route.pointer = *buff/4 - 1;
opt399net/inet/ip.cfor (i = 0; i < opt->record_route.route_size; i++) {
opt402net/inet/ip.copt->record_route.route[i] = *(unsigned long *)buff;
opt409net/inet/ip.copt->stream = *(unsigned short *)buff;
opt416net/inet/ip.copt->tstamp.len = *buff / 4 - 1;
opt419net/inet/ip.copt->tstamp.ptr = (*buff-1)/4;
opt421net/inet/ip.copt->tstamp.x.full_char = *buff;
opt423net/inet/ip.cfor (i = 0; i < opt->tstamp.len; i++) {
opt424net/inet/ip.copt->tstamp.data[i] = *(unsigned long *)buff;
opt432net/inet/ip.cif (opt->record_route.route_size == 0) {
opt433net/inet/ip.cif (opt->strict_route.route_size != 0) {
opt434net/inet/ip.cmemcpy(&(opt->record_route), &(opt->strict_route),
opt435net/inet/ip.csizeof(opt->record_route));
opt436net/inet/ip.c} else if (opt->loose_route.route_size != 0) {
opt437net/inet/ip.cmemcpy(&(opt->record_route), &(opt->loose_route),
opt438net/inet/ip.csizeof(opt->record_route));
opt442net/inet/ip.cif (opt->strict_route.route_size != 0 &&
opt443net/inet/ip.copt->strict_route.route_size != opt->strict_route.pointer) {
opt444net/inet/ip.cstrict_route(iph, opt);
opt448net/inet/ip.cif (opt->loose_route.route_size != 0 &&
opt449net/inet/ip.copt->loose_route.route_size != opt->loose_route.pointer) {
opt450net/inet/ip.cloose_route(iph, opt);
opt1435net/inet/ip.cstatic struct options opt; /* since we don't use these yet, and they
opt1479net/inet/ip.cmemset((char *) &opt, 0, sizeof(opt));
opt1480net/inet/ip.cif (do_options(iph, &opt) != 0)
opt1597net/inet/ip.cipprot->handler(skb2, dev, opts_p ? &opt : 0, iph->daddr,
opt76net/inet/ip.hstruct options *opt, int len,
opt478net/inet/ipx.cint err,opt;
opt488net/inet/ipx.copt=get_fs_long((unsigned long *)optval);
opt498net/inet/ipx.csk->ipx_type=opt;
opt32net/inet/protocol.hstruct options *opt, unsigned long daddr,
opt36net/inet/protocol.hstruct options *opt, unsigned long daddr,
opt94net/inet/raw.cint raw_rcv(struct sk_buff *skb, struct device *dev, struct options *opt,
opt232net/inet/raw.csk->protocol, sk->opt, skb->mem_len, sk->ip_tos,sk->ip_ttl);
opt27net/inet/raw.hstruct options *opt, unsigned long daddr,
opt534net/inet/route.cstruct rtable * ip_rt_route(unsigned long daddr, struct options *opt, unsigned long *src_addr)
opt564net/inet/route.cstruct rtable * ip_rt_local(unsigned long daddr, struct options *opt, unsigned long *src_addr)
opt48net/inet/route.hextern struct rtable  *ip_rt_route(unsigned long daddr, struct options *opt, unsigned long *src_addr);
opt49net/inet/route.hextern struct rtable   *ip_rt_local(unsigned long daddr, struct options *opt, unsigned long *src_addr);
opt425net/inet/sock.csk->prot->rcv(skb, skb->dev, sk->opt,
opt55net/inet/sock.hstruct options    *opt;
opt207net/inet/sock.hstruct options *opt, int len, int tos, int ttl);
opt218net/inet/sock.hstruct options *opt, unsigned long daddr,
opt763net/inet/tcp.cIPPROTO_TCP, sk->opt, MAX_ACK_SIZE,sk->ip_tos,sk->ip_ttl);
opt1102net/inet/tcp.cIPPROTO_TCP, sk->opt, skb->mem_len,sk->ip_tos,sk->ip_ttl);
opt1227net/inet/tcp.cIPPROTO_TCP, sk->opt, MAX_ACK_SIZE,sk->ip_tos,sk->ip_ttl);
opt1631net/inet/tcp.cIPPROTO_TCP, sk->opt,
opt1741net/inet/tcp.cstruct proto *prot, struct options *opt, struct device *dev, int tos, int ttl)
opt1768net/inet/tcp.ctmp = prot->build_header(buff, saddr, daddr, &ndev, IPPROTO_TCP, opt,
opt1895net/inet/tcp.cstruct options *opt, struct device *dev)
opt1915net/inet/tcp.ctcp_reset(daddr, saddr, th, sk->prot, opt, dev, sk->ip_tos,sk->ip_ttl);
opt2279net/inet/tcp.cIPPROTO_TCP, sk->opt,
opt3611net/inet/tcp.cstruct options *opt, unsigned long saddr, struct device *dev)
opt3680net/inet/tcp.ctcp_rcv(struct sk_buff *skb, struct device *dev, struct options *opt,
opt3739net/inet/tcp.ctcp_reset(daddr, saddr, th, &tcp_prot, opt,dev,skb->ip_hdr->tos,255);
opt3855net/inet/tcp.cif(!tcp_sequence(sk, th, len, opt, saddr, dev))
opt3908net/inet/tcp.cif (!tcp_sequence(sk, th, len, opt, saddr,dev)) 
opt3948net/inet/tcp.ctcp_reset(daddr, saddr,  th, sk->prot, opt,dev, sk->ip_tos,sk->ip_ttl);
opt3995net/inet/tcp.ctcp_reset(daddr, saddr, th, sk->prot, opt,dev,sk->ip_tos,sk->ip_ttl);
opt4008net/inet/tcp.ctcp_reset(daddr, saddr, th, sk->prot, opt,dev,sk->ip_tos,sk->ip_ttl);
opt4022net/inet/tcp.ctcp_conn_request(sk, skb, daddr, saddr, opt, dev);
opt4041net/inet/tcp.cif (!tcp_sequence(sk, th, len, opt, saddr,dev)) 
opt4082net/inet/tcp.csk->prot, opt,dev,sk->ip_tos,sk->ip_ttl);
opt4110net/inet/tcp.csk->prot, opt, dev,sk->ip_tos,sk->ip_ttl);
opt4240net/inet/tcp.cIPPROTO_TCP, sk->opt, MAX_ACK_SIZE,sk->ip_tos,sk->ip_ttl);
opt120net/inet/tcp.hstruct options *opt, unsigned long daddr,
opt282net/inet/udp.c&dev, IPPROTO_UDP, sk->opt, skb->mem_len,sk->ip_tos,sk->ip_ttl);
opt552net/inet/udp.cint udp_rcv(struct sk_buff *skb, struct device *dev, struct options *opt,
opt44net/inet/udp.hstruct options *opt, unsigned long daddr,