On Fri, Jul 17, 2020 at 10:28:18PM -0700, Eric Biggers wrote: > What do people think about the following instead? (Not proofread / tested yet, > so please comment on the high-level approach, not minor mistakes :-) ) No huge long macros, please. We don't accept people writing long complex static inline functions, so for the same reasons it is not acceptable to write long complex macros. Especially ones that use variable arguments and embed invisible locking within them. The whole serialisation/atomic/ordering APIs have fallen badly off the macro cliff, to the point where finding out something as simple as the order of parameters passed to cmpxchg and what semantics it provides requires macro-spelunking 5 layers deep to find the generic implementation function that contains a comment describing what it does.... That's yet another barrier to understanding what all the different synchronisation primitives do. .... > In the fs/direct-io.c case we'd use: > > int sb_init_dio_done_wq(struct super_block *sb) > { > static DEFINE_MUTEX(sb_init_dio_done_mutex); > > return INIT_ONCE_PTR(&sb->s_dio_done_wq, &sb_init_dio_done_mutex, > alloc_workqueue, > "dio/%s", WQ_MEM_RECLAIM, 0, sb->s_id); > } Yeah, that's pretty horrible... I *much* prefer an API like Willy's suggested to somethign like this. Just because you can hide all sorts of stuff in macros doesn't mean you should. > The only part I really don't like is the way arguments are passed to the > alloc_func. We could also make it work like the following, though it would > break the usual rules since it looks like the function call is always executed, > but it's not: > > return INIT_ONCE_PTR(&sb->s_dio_done_wq, &sb_init_dio_done_mutex, > alloc_workqueue("dio/%s", WQ_MEM_RECLAIM, 0, > sb->s_id)); Yeah, that's even worse. Code that does not do what it looks like it should needs to be nuked from orbit. Cheers, Dave. -- Dave Chinner david@xxxxxxxxxxxxx