Re: [PATCH v1 1/5] seqlock: seqcount_LOCKTYPE_t: Standardize naming convention

2020-08-28 Thread Ahmed S. Darwish
Hi :) On Fri, Aug 28, 2020 at 10:18:44AM +0200, pet...@infradead.org wrote: > On Fri, Aug 28, 2020 at 03:07:06AM +0200, Ahmed S. Darwish wrote: > > At seqlock.h, sequence counters with associated locks are either called > > seqcount_LOCKNAME_t, seqcount_LOCKTYPE_t, or seqcount_locktype_t. > > > >

Re: [PATCH v1 1/5] seqlock: seqcount_LOCKTYPE_t: Standardize naming convention

2020-08-28 Thread peterz
On Fri, Aug 28, 2020 at 03:07:06AM +0200, Ahmed S. Darwish wrote: > At seqlock.h, sequence counters with associated locks are either called > seqcount_LOCKNAME_t, seqcount_LOCKTYPE_t, or seqcount_locktype_t. > > Standardize on "seqcount_LOCKTYPE_t" for all instances in comments, > kernel-doc, and

[PATCH v1 1/5] seqlock: seqcount_LOCKTYPE_t: Standardize naming convention

2020-08-27 Thread Ahmed S. Darwish
At seqlock.h, sequence counters with associated locks are either called seqcount_LOCKNAME_t, seqcount_LOCKTYPE_t, or seqcount_locktype_t. Standardize on "seqcount_LOCKTYPE_t" for all instances in comments, kernel-doc, and SEQCOUNT_LOCKTYPE() generative macro paramters. Signed-off-by: Ahmed S.