OpenCores
URL https://opencores.org/ocsvn/or1k_old/or1k_old/trunk

Subversion Repositories or1k_old

[/] [or1k_old/] [trunk/] [rc203soc/] [sw/] [uClinux/] [fs/] [proc/] [kmsg.c] - Diff between revs 1765 and 1782

Only display areas with differences | Details | Blame | View Log

Rev 1765 Rev 1782
/*
/*
 *  linux/fs/proc/kmsg.c
 *  linux/fs/proc/kmsg.c
 *
 *
 *  Copyright (C) 1992  by Linus Torvalds
 *  Copyright (C) 1992  by Linus Torvalds
 *
 *
 */
 */
 
 
#include <linux/types.h>
#include <linux/types.h>
#include <linux/errno.h>
#include <linux/errno.h>
#include <linux/sched.h>
#include <linux/sched.h>
#include <linux/kernel.h>
#include <linux/kernel.h>
 
 
#include <asm/segment.h>
#include <asm/segment.h>
#include <asm/io.h>
#include <asm/io.h>
 
 
extern unsigned long log_size;
extern unsigned long log_size;
extern struct wait_queue * log_wait;
extern struct wait_queue * log_wait;
 
 
asmlinkage int sys_syslog(int type, char * bug, int count);
asmlinkage int sys_syslog(int type, char * bug, int count);
 
 
static int kmsg_open(struct inode * inode, struct file * file)
static int kmsg_open(struct inode * inode, struct file * file)
{
{
        return sys_syslog(1,NULL,0);
        return sys_syslog(1,NULL,0);
}
}
 
 
static void kmsg_release(struct inode * inode, struct file * file)
static void kmsg_release(struct inode * inode, struct file * file)
{
{
        (void) sys_syslog(0,NULL,0);
        (void) sys_syslog(0,NULL,0);
}
}
 
 
static int kmsg_read(struct inode * inode, struct file * file,char * buf, int count)
static int kmsg_read(struct inode * inode, struct file * file,char * buf, int count)
{
{
        return sys_syslog(2,buf,count);
        return sys_syslog(2,buf,count);
}
}
 
 
static int kmsg_select(struct inode *inode, struct file *file, int sel_type, select_table * wait)
static int kmsg_select(struct inode *inode, struct file *file, int sel_type, select_table * wait)
{
{
        if (sel_type != SEL_IN)
        if (sel_type != SEL_IN)
                return 0;
                return 0;
        if (log_size)
        if (log_size)
                return 1;
                return 1;
        select_wait(&log_wait, wait);
        select_wait(&log_wait, wait);
        return 0;
        return 0;
}
}
 
 
 
 
static struct file_operations proc_kmsg_operations = {
static struct file_operations proc_kmsg_operations = {
        NULL,           /* kmsg_lseek */
        NULL,           /* kmsg_lseek */
        kmsg_read,
        kmsg_read,
        NULL,           /* kmsg_write */
        NULL,           /* kmsg_write */
        NULL,           /* kmsg_readdir */
        NULL,           /* kmsg_readdir */
        kmsg_select,    /* kmsg_select */
        kmsg_select,    /* kmsg_select */
        NULL,           /* kmsg_ioctl */
        NULL,           /* kmsg_ioctl */
        NULL,           /* mmap */
        NULL,           /* mmap */
        kmsg_open,
        kmsg_open,
        kmsg_release,
        kmsg_release,
        NULL            /* can't fsync */
        NULL            /* can't fsync */
};
};
 
 
struct inode_operations proc_kmsg_inode_operations = {
struct inode_operations proc_kmsg_inode_operations = {
        &proc_kmsg_operations,  /* default base directory file-ops */
        &proc_kmsg_operations,  /* default base directory file-ops */
        NULL,                   /* create */
        NULL,                   /* create */
        NULL,                   /* lookup */
        NULL,                   /* lookup */
        NULL,                   /* link */
        NULL,                   /* link */
        NULL,                   /* unlink */
        NULL,                   /* unlink */
        NULL,                   /* symlink */
        NULL,                   /* symlink */
        NULL,                   /* mkdir */
        NULL,                   /* mkdir */
        NULL,                   /* rmdir */
        NULL,                   /* rmdir */
        NULL,                   /* mknod */
        NULL,                   /* mknod */
        NULL,                   /* rename */
        NULL,                   /* rename */
        NULL,                   /* readlink */
        NULL,                   /* readlink */
        NULL,                   /* follow_link */
        NULL,                   /* follow_link */
        NULL,                   /* readpage */
        NULL,                   /* readpage */
        NULL,                   /* writepage */
        NULL,                   /* writepage */
        NULL,                   /* bmap */
        NULL,                   /* bmap */
        NULL,                   /* truncate */
        NULL,                   /* truncate */
        NULL                    /* permission */
        NULL                    /* permission */
};
};
 
 

powered by: WebSVN 2.1.0

© copyright 1999-2024 OpenCores.org, equivalent to Oliscience, all rights reserved. OpenCores®, registered trademark.