static inline struct file * fcheck_files(struct files_struct *files, unsigned int fd)
{
        struct file * file = NULL;

        if (fd < files->max_fds) //오픈될 수 있는 파일의 갯수보다 작으면....
                file = files->fd[fd];