免费注册 查看新帖 |

Chinaunix

  平台 论坛 博客 文库
最近访问板块 发新帖
查看: 1699 | 回复: 2
打印 上一主题 下一主题

[其他] struct file 中的一个宏定义用法 [复制链接]

论坛徽章:
0
跳转到指定楼层
1 [收藏(0)] [报告]
发表于 2012-09-10 17:59 |只看该作者 |倒序浏览
struct file {
        /*
         * fu_list becomes invalid after file_free is called and queued via
         * fu_rcuhead for RCU freeing
         */
        union {
                struct list_head        fu_list;
                struct rcu_head         fu_rcuhead;
        } f_u;
        struct path                f_path;
#define f_dentry        f_path.dentry
#define f_vfsmnt        f_path.mnt

        const struct file_operations        *f_op;
        atomic_t                f_count;
        unsigned int                 f_flags;
        mode_t                        f_mode;
        loff_t                        f_pos;
        struct fown_struct        f_owner;
        unsigned int                f_uid, f_gid;
        struct file_ra_state        f_ra;

        u64                        f_version;
#ifdef CONFIG_SECURITY
        void                        *f_security;
#endif
        /* needed for tty driver, and maybe others */
        void                        *private_data;

#ifdef CONFIG_EPOLL
        /* Used by fs/eventpoll.c to link all the hooks to this file */
        struct list_head        f_ep_links;
        spinlock_t                f_ep_lock;
#endif /* #ifdef CONFIG_EPOLL */
        struct address_space        *f_mapping;
};
struct file中
#define f_dentry        f_path.dentry
#define f_vfsmnt        f_path.mnt
宏定义可以这么用?

论坛徽章:
0
2 [报告]
发表于 2012-09-10 18:04 |只看该作者
宏是在编译期间, 有编译器做处理的.  没问题.

#define f_dentry        f_path.dentry
#define f_vfsmnt        f_path.mnt
你可以简单的认为, 凡是使用 f_dentry  的地方, 都简单的用 f_path.dentry 替换就行. 其实编译器也是这么做的.

论坛徽章:
0
3 [报告]
发表于 2012-09-10 18:21 |只看该作者
我猜测是你说的那样,只是没见过这样用的,所以想求证一下,宏定义不都是现定义,后使用吗?
这里使用和定义都一块。回复 2# hk2305621


   
您需要登录后才可以回帖 登录 | 注册

本版积分规则 发表回复

  

北京盛拓优讯信息技术有限公司. 版权所有 京ICP备16024965号-6 北京市公安局海淀分局网监中心备案编号:11010802020122 niuxiaotong@pcpop.com 17352615567
未成年举报专区
中国互联网协会会员  联系我们:huangweiwei@itpub.net
感谢所有关心和支持过ChinaUnix的朋友们 转载本站内容请注明原作者名及出处

清除 Cookies - ChinaUnix - Archiver - WAP - TOP