📄 obd_class.h
字号:
/* -*- mode: c; c-basic-offset: 8; indent-tabs-mode: nil; -*- * vim:expandtab:shiftwidth=8:tabstop=8: * * Copyright (C) 2001-2003 Cluster File Systems, Inc. * * This file is part of Lustre, http://www.lustre.org. * * Lustre is free software; you can redistribute it and/or * modify it under the terms of version 2 of the GNU General Public * License as published by the Free Software Foundation. * * Lustre 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 Lustre; if not, write to the Free Software * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. * */#ifndef __LINUX_CLASS_OBD_H#define __LINUX_CLASS_OBD_H#ifndef __CLASS_OBD_H#error Do not #include this file directly. #include <obd_class.h> instead#endif#ifndef __KERNEL__#include <sys/types.h>#include <libcfs/list.h>#else#include <asm/segment.h>#include <asm/uaccess.h>#include <linux/types.h>#include <linux/fs.h>#include <linux/time.h>#include <linux/timer.h>#endifvoid obd_zombie_impexp_init(void);void obd_zombie_impexp_cull(void);extern void (*obd_zombie_impexp_notify)(void);/* obdo.c */#ifdef __KERNEL__void obdo_from_iattr(struct obdo *oa, struct iattr *attr, unsigned ia_valid);void iattr_from_obdo(struct iattr *attr, struct obdo *oa, obd_flag valid);void obdo_from_inode(struct obdo *dst, struct inode *src, obd_flag valid);void obdo_refresh_inode(struct inode *dst, struct obdo *src, obd_flag valid);void obdo_to_inode(struct inode *dst, struct obdo *src, obd_flag valid);#endif#if !defined(__KERNEL__) || (LINUX_VERSION_CODE < KERNEL_VERSION(2,5,0))#define to_kdev_t(dev) dev#define kdev_t_to_nr(dev) dev#endif#endif /* __LINUX_OBD_CLASS_H */
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -