summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLuiz Otavio O Souza <loos@FreeBSD.org>2016-12-03 01:55:38 +0000
committerLuiz Otavio O Souza <loos@FreeBSD.org>2016-12-03 01:55:38 +0000
commit3c27ea76f0d0ed82efb0d0dbde56b5f381f2465e (patch)
tree506c1b63eff065447719c4d70eacbd41eb5615ff
parentff07dd913e2788f22cf2999f42b8a2d3bc7da220 (diff)
Notes
-rw-r--r--sys/dev/etherswitch/etherswitch.c71
1 files changed, 1 insertions, 70 deletions
diff --git a/sys/dev/etherswitch/etherswitch.c b/sys/dev/etherswitch/etherswitch.c
index c2f2860dccd1..0c35002d22f5 100644
--- a/sys/dev/etherswitch/etherswitch.c
+++ b/sys/dev/etherswitch/etherswitch.c
@@ -30,7 +30,6 @@
#include <sys/bus.h>
#include <sys/conf.h>
#include <sys/fcntl.h>
-#include <sys/lock.h>
#include <sys/kernel.h>
#include <sys/malloc.h>
#include <sys/module.h>
@@ -45,19 +44,11 @@
#include "etherswitch_if.h"
-#define BUFSIZE 1024
-
struct etherswitch_softc {
device_t sc_dev;
- int sc_count;
-
struct cdev *sc_devnode;
- struct sx sc_lock;
};
-#define SWITCH_LOCK(sc) sx_xlock(&(sc)->sc_lock)
-#define SWITCH_UNLOCK(sc) sx_xunlock(&(sc)->sc_lock)
-
static int etherswitch_probe(device_t);
static int etherswitch_attach(device_t);
static int etherswitch_detach(device_t);
@@ -72,7 +63,7 @@ static device_method_t etherswitch_methods[] = {
DEVMETHOD(device_attach, etherswitch_attach),
DEVMETHOD(device_detach, etherswitch_detach),
- { 0, 0 }
+ DEVMETHOD_END
};
driver_t etherswitch_driver = {
@@ -81,19 +72,11 @@ driver_t etherswitch_driver = {
sizeof(struct etherswitch_softc),
};
-static d_open_t etherswitchopen;
-static d_close_t etherswitchclose;
-static d_write_t etherswitchwrite;
-static d_read_t etherswitchread;
static d_ioctl_t etherswitchioctl;
static struct cdevsw etherswitch_cdevsw = {
.d_version = D_VERSION,
.d_flags = D_TRACKCLOSE,
- .d_open = etherswitchopen,
- .d_close = etherswitchclose,
- .d_read = etherswitchread,
- .d_write = etherswitchwrite,
.d_ioctl = etherswitchioctl,
.d_name = "etherswitch",
};
@@ -119,13 +102,11 @@ etherswitch_attach(device_t dev)
struct etherswitch_softc *sc = (struct etherswitch_softc *)device_get_softc(dev);
sc->sc_dev = dev;
- sx_init(&sc->sc_lock, "etherswitch");
sc->sc_devnode = make_dev(&etherswitch_cdevsw, device_get_unit(dev),
UID_ROOT, GID_WHEEL,
0600, "etherswitch%d", device_get_unit(dev));
if (sc->sc_devnode == NULL) {
device_printf(dev, "failed to create character device\n");
- sx_destroy(&sc->sc_lock);
return (ENXIO);
}
sc->sc_devnode->si_drv1 = sc;
@@ -140,61 +121,11 @@ etherswitch_detach(device_t dev)
if (sc->sc_devnode)
destroy_dev(sc->sc_devnode);
- sx_destroy(&sc->sc_lock);
-
- return (0);
-}
-
-static int
-etherswitchopen(struct cdev *dev, int flags, int fmt, struct thread *td)
-{
- struct etherswitch_softc *sc = dev->si_drv1;
-
- SWITCH_LOCK(sc);
- if (sc->sc_count > 0) {
- SWITCH_UNLOCK(sc);
- return (EBUSY);
- }
-
- sc->sc_count++;
- SWITCH_UNLOCK(sc);
-
- return (0);
-}
-
-static int
-etherswitchclose(struct cdev *dev, int flags, int fmt, struct thread *td)
-{
- struct etherswitch_softc *sc = dev->si_drv1;
-
- SWITCH_LOCK(sc);
- if (sc->sc_count == 0) {
- SWITCH_UNLOCK(sc);
- return (EINVAL);
- }
-
- sc->sc_count--;
-
- if (sc->sc_count < 0)
- panic("%s: etherswitch_count < 0!", __func__);
- SWITCH_UNLOCK(sc);
return (0);
}
static int
-etherswitchwrite(struct cdev *dev, struct uio * uio, int ioflag)
-{
- return (EINVAL);
-}
-
-static int
-etherswitchread(struct cdev *dev, struct uio * uio, int ioflag)
-{
- return (EINVAL);
-}
-
-static int
etherswitchioctl(struct cdev *cdev, u_long cmd, caddr_t data, int flags, struct thread *td)
{
struct etherswitch_softc *sc = cdev->si_drv1;