#!/bin/sh
#
# Start the network module PFE....
#

case "$1" in
  start)
        echo "Starting network module PFE..."
        modprobe pfe lro_mode=1 tx_qos=1 alloc_on_init=1 disable_wifi_offload=1
        ;;
  stop)
        echo -n "Stopping network module PFE..."
        rmmod pfe
        ;;
  restart|reload)
        "$0" stop
        "$0" start
        ;;
  *)
        echo "Usage: $0 {start|stop|restart}"
        exit 1
esac

exit $?
