The Design and Implementation of the FreeBSD Operating System, Second Edition
Now available: The Design and Implementation of the FreeBSD Operating System (Second Edition)


[ source navigation ] [ diff markup ] [ identifier search ] [ freetext search ] [ file search ] [ list types ] [ track identifier ]

FreeBSD/Linux Kernel Cross Reference
sys/altq/altq_localq.c

Version: -  FREEBSD  -  FREEBSD-13-STABLE  -  FREEBSD-13-0  -  FREEBSD-12-STABLE  -  FREEBSD-12-0  -  FREEBSD-11-STABLE  -  FREEBSD-11-0  -  FREEBSD-10-STABLE  -  FREEBSD-10-0  -  FREEBSD-9-STABLE  -  FREEBSD-9-0  -  FREEBSD-8-STABLE  -  FREEBSD-8-0  -  FREEBSD-7-STABLE  -  FREEBSD-7-0  -  FREEBSD-6-STABLE  -  FREEBSD-6-0  -  FREEBSD-5-STABLE  -  FREEBSD-5-0  -  FREEBSD-4-STABLE  -  FREEBSD-3-STABLE  -  FREEBSD22  -  l41  -  OPENBSD  -  linux-2.6  -  MK84  -  PLAN9  -  xnu-8792 
SearchContext: -  none  -  3  -  10 

    1 /*      $NetBSD: altq_localq.c,v 1.5 2005/02/26 23:04:16 perry Exp $    */
    2 /*      $KAME: altq_localq.c,v 1.4 2001/08/16 11:28:25 kjc Exp $        */
    3 /*
    4  * a skeleton file for implementing a new queueing discipline.
    5  * this file is in the public domain.
    6  */
    7 
    8 #include <sys/cdefs.h>
    9 __KERNEL_RCSID(0, "$NetBSD: altq_localq.c,v 1.5 2005/02/26 23:04:16 perry Exp $");
   10 
   11 #if defined(__FreeBSD__) || defined(__NetBSD__)
   12 #include "opt_altq.h"
   13 #endif /* __FreeBSD__ || __NetBSD__ */
   14 #ifdef ALTQ_LOCALQ  /* localq is enabled by ALTQ_LOCALQ option in opt_altq.h */
   15 
   16 #include <sys/param.h>
   17 #include <sys/mbuf.h>
   18 #include <sys/socket.h>
   19 #include <sys/sockio.h>
   20 
   21 #include <net/if.h>
   22 #include <netinet/in.h>
   23 
   24 #include <altq/altq.h>
   25 #include <altq/altq_conf.h>
   26 
   27 /*
   28  * localq device interface
   29  */
   30 altqdev_decl(localq);
   31 
   32 int
   33 localqopen(dev, flag, fmt, p)
   34         dev_t dev;
   35         int flag, fmt;
   36         struct proc *p;
   37 {
   38         /* everything will be done when the queueing scheme is attached. */
   39         return 0;
   40 }
   41 
   42 int
   43 localqclose(dev, flag, fmt, p)
   44         dev_t dev;
   45         int flag, fmt;
   46         struct proc *p;
   47 {
   48         int error = 0;
   49 
   50         return error;
   51 }
   52 
   53 int
   54 localqioctl(dev, cmd, addr, flag, p)
   55         dev_t dev;
   56         ioctlcmd_t cmd;
   57         caddr_t addr;
   58         int flag;
   59         struct proc *p;
   60 {
   61         int error = 0;
   62 
   63         return error;
   64 }
   65 
   66 #ifdef KLD_MODULE
   67 
   68 static struct altqsw localq_sw =
   69         {"localq", localqopen, localqclose, localqioctl};
   70 
   71 ALTQ_MODULE(altq_localq, ALTQT_LOCALQ, &localq_sw);
   72 
   73 #endif /* KLD_MODULE */
   74 
   75 #endif /* ALTQ_LOCALQ */

Cache object: 3374f1119d0fb3aad194707daace85b9


[ source navigation ] [ diff markup ] [ identifier search ] [ freetext search ] [ file search ] [ list types ] [ track identifier ]


This page is part of the FreeBSD/Linux Linux Kernel Cross-Reference, and was automatically generated using a modified version of the LXR engine.