Re: [PATCH] proc: remove '##' usage
- From: Christoph Hellwig <hch@xxxxxxxxxxxxx>
- Date: Mon, 10 Nov 2008 07:02:47 -0500
On Mon, Nov 10, 2008 at 01:35:42AM +0300, Alexey Dobriyan wrote:
+#define DIR(NAME, MODE, iops, fops) \
+ NOD(NAME, (S_IFDIR|(MODE)), &iops, &fops, {} )
This macro certainly doesn't help with readability, adding just
and S_IFDIR to the passed in arguments.
+#define LNK(NAME, get_link) \
NOD(NAME, (S_IFLNK|S_IRWXUGO), \
&proc_pid_link_inode_operations, NULL, \
+ { .proc_get_link = get_link } )
+#define REG(NAME, MODE, fops) \
+ NOD(NAME, (S_IFREG|(MODE)), NULL, &fops, {})
+#define INF(NAME, MODE, read) \
NOD(NAME, (S_IFREG|(MODE)), \
NULL, &proc_info_file_operations, \
+ { .proc_read = read } )
+#define ONE(NAME, MODE, show) \
NOD(NAME, (S_IFREG|(MODE)), \
NULL, &proc_single_file_operations, \
+ { .proc_show = show } )
And even for these I would argue just opencoding them would be
a lot cleaner.
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
- References:
- [PATCH] proc: remove '##' usage
- From: Alexey Dobriyan
- [PATCH] proc: remove '##' usage
- Prev by Date: Re: CONFIG_NUMA breaks hibernation on x86-32 with PAE
- Next by Date: Re: [PATCH] account_group_exec_runtime: fix the racy usage of ->signal
- Previous by thread: [PATCH] proc: remove '##' usage
- Next by thread: Linux 2.4.36.9
- Index(es):
Relevant Pages
|