Re: [PATCH 26/94] Maple Tree: Add new data structure

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

 



* Peter Zijlstra <peterz@xxxxxxxxxxxxx> [210514 07:55]:
> On Wed, Apr 28, 2021 at 03:36:02PM +0000, Liam Howlett wrote:
> > +static inline void mas_set_range(struct ma_state *mas, unsigned long start,
> > +		unsigned long last)
> > +{
> > +	       mas->index = start;
> > +	       mas->last = last;
> > +	       mas->node = MAS_START;
> > +}
> 
> Your indenting went wobbly :-)
> 
> Also, I personally prefer this style:
> 
> static inline void
> mas_set_range(struct ma_state *mas, unsigned long start, unsigned long last)
> {
> 	mas->index = start;
> 	mas->last = last;
> 	mas->node = MAS_START;
> }
> 
> And I'm a big proponent of at the very least keeping line-breaks aligned
> to '(', like:
> 
> static inline void mas_set_range(struct ma_state *mas, unsigned long start,
> 				 unsigned long last)
> {
> 	mas->index = start;
> 	mas->last = last;
> 	mas->node = MAS_START;
> }
> 
> Which you can get vim to do by using: set cino=(0:0
> 
> 
> 


Thanks, I will fix this.




[Index of Archives]     [Linux ARM Kernel]     [Linux ARM]     [Linux Omap]     [Fedora ARM]     [IETF Annouce]     [Bugtraq]     [Linux OMAP]     [Linux MIPS]     [eCos]     [Asterisk Internet PBX]     [Linux API]

  Powered by Linux