/*
 * lart.c: an autoLARTing module
 *
 * Copyright (C) 2000 2001, Erik Mouw (J.A.K.Mouw@its.tudelft.nl)
 *
 * The author can be reached at:
 *
 *  Erik Mouw
 *  Information and Communication Theory Group
 *  Faculty of Information Technology and Systems
 *  Delft University of Technology
 *  P.O. Box 5031
 *  2600 GA Delft
 *  The Netherlands
 *
 *
 * This program is free software; you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation; either version 2 of the License, or
 * (at your option) any later version.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 * 
 * You should have received a copy of the GNU General Public License
 * along with this program; if not, write to the Free Software
 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
 *
 *
 * The idea for this module basically came up on #kernelnewbies:
 *
 * <RT_0> Hi, I have a question regarding LARTable? What it is and what it
 * means? I have seen a few usage including that by Al Viro on LKML
 * <hch> RT_0: man lart (1m)
 * <RT_0> The context was "ny initializer for struct proc_dir_entry is a
 * LARTable offense. So
 * <RT_0>       is kmalloc(sizeof(struct proc_dir_entry),...) and its ilk.
 * <RT_0> I am sure that was not meant in
 * http://www.mail-archive.com/linux-kernel@vger.kernel.org/msg01999.html
 * <erikm> RT_0: oh sure it was.
 *
 * A little while later after it had been pasted accross numerous other
 * channels:
 *
 * <JALH> <gsh> JALH: someone should really write a lart.o module that just
 * <JALH>           calls panic() ;0
 * <JALH> any offers?
 *
 * And some reviewer's comments:
 * <DarkBulb> is lart that mini procceser thingy?
 *
 * A couple of months later:
 * <sarnold> no MODULE_LICENSE on that lart.c :)
 *  
 * So thanks to gsh and JALH for the idea, hch, manz, and sarnold for
 * "reviewing" the code.
 *
 *
 * Note that this code is not tested; it aint my fault if the system
 * doesn't blow up. On the other hand, the code is that simple that it
 * is obviously correct.
 *
 */

#include <linux/module.h>
#include <linux/init.h>
#include <linux/kernel.h>

#define MODULE_NAME "LART!"


static int __init init_lart(void)
{
	panic("%s\n", MODULE_NAME);
	return 0;
}


static void __exit cleanup_lart(void)
{
	/* LARTs don't need cleanup, they have to scare off lusers */
}


module_init(init_lart);
module_exit(cleanup_lart);


MODULE_AUTHOR("Erik Mouw");
MODULE_DESCRIPTION("AutoLART module");
MODULE_LICENSE("GPL");

EXPORT_NO_SYMBOLS;
