51 lines
1.0 KiB
C
Raw Normal View History

2026-01-21 18:59:54 +08:00
// SPDX-License-Identifier: GPL-2.0
#include <linux/types.h>
#include <linux/errno.h>
#include <linux/tty.h>
#include <linux/module.h>
/*
* n_null.c - Null line discipline used in the failure path
*
* Copyright (C) Intel 2017
*/
2026-01-29 22:25:33 +08:00
static ssize_t n_null_read(struct tty_struct *tty, struct file *file, u8 *buf,
size_t nr, void **cookie, unsigned long offset)
2026-01-21 18:59:54 +08:00
{
return -EOPNOTSUPP;
}
static ssize_t n_null_write(struct tty_struct *tty, struct file *file,
2026-01-29 22:25:33 +08:00
const u8 *buf, size_t nr)
2026-01-21 18:59:54 +08:00
{
return -EOPNOTSUPP;
}
static struct tty_ldisc_ops null_ldisc = {
.owner = THIS_MODULE,
2026-01-29 22:25:33 +08:00
.num = N_NULL,
2026-01-21 18:59:54 +08:00
.name = "n_null",
.read = n_null_read,
.write = n_null_write,
};
static int __init n_null_init(void)
{
2026-01-29 22:25:33 +08:00
BUG_ON(tty_register_ldisc(&null_ldisc));
2026-01-21 18:59:54 +08:00
return 0;
}
static void __exit n_null_exit(void)
{
2026-01-29 22:25:33 +08:00
tty_unregister_ldisc(&null_ldisc);
2026-01-21 18:59:54 +08:00
}
module_init(n_null_init);
module_exit(n_null_exit);
MODULE_LICENSE("GPL");
MODULE_AUTHOR("Alan Cox");
MODULE_ALIAS_LDISC(N_NULL);
MODULE_DESCRIPTION("Null ldisc driver");