Message ID | 20160211224710.GA4989@redhat.com (mailing list archive) |
---|---|
State | Mainlined, archived |
Headers | show |
> From: "Oleg Nesterov" <oleg@redhat.com> > To: "Christopher Li" <sparse@chrisli.org>, "Josh Triplett" <josh@kernel.org> > Cc: linux-sparse@vger.kernel.org > Sent: Thursday, February 11, 2016 5:47:10 PM > Subject: [PATCH] dissect: s/mode_t/usage_t/ in report_member() > > Cosmetic, fix the typo. > > Signed-off-by: Oleg Nesterov <oleg@redhat.com> > --- > dissect.c | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > diff --git a/dissect.c b/dissect.c > index 2d13d2a..67428ec 100644 > --- a/dissect.c > +++ b/dissect.c > @@ -130,7 +130,7 @@ static inline struct symbol *no_member(struct ident > *name) > return &sym; > } > > -static struct symbol *report_member(mode_t mode, struct position *pos, > +static struct symbol *report_member(usage_t mode, struct position *pos, > struct symbol *type, struct symbol *mem) > { > struct symbol *ret = mem->ctype.base_type; > -- > 2.5.0 > > > -- > To unsubscribe from this list: send the line "unsubscribe linux-sparse" in > the body of a message to majordomo@vger.kernel.org > More majordomo info at http://vger.kernel.org/majordomo-info.html > Better late than never: Acked-by: Lance Richardson <lrichard@redhat.com> -- To unsubscribe from this list: send the line "unsubscribe linux-sparse" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html
On 09/23, Lance Richardson wrote: > > Better late than never: > > Acked-by: Lance Richardson <lrichard@redhat.com> Thanks, perhaps you can also ack other patches I sent by that time ;) Although it seems that nobody cares anyway. Oleg. -- To unsubscribe from this list: send the line "unsubscribe linux-sparse" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html
On Mon, Sep 26, 2016 at 9:26 AM, Oleg Nesterov <oleg@redhat.com> wrote: > On 09/23, Lance Richardson wrote: >> >> Better late than never: >> >> Acked-by: Lance Richardson <lrichard@redhat.com> > > Thanks, perhaps you can also ack other patches I sent by that time ;) > Although it seems that nobody cares anyway. Err, better late than never. Let me pick this up again. Chris -- To unsubscribe from this list: send the line "unsubscribe linux-sparse" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html
On Thu, Feb 11, 2016 at 11:47:10PM +0100, Oleg Nesterov wrote: > Cosmetic, fix the typo. > > Signed-off-by: Oleg Nesterov <oleg@redhat.com> > --- > dissect.c | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > diff --git a/dissect.c b/dissect.c > index 2d13d2a..67428ec 100644 > --- a/dissect.c > +++ b/dissect.c > @@ -130,7 +130,7 @@ static inline struct symbol *no_member(struct ident *name) > return &sym; > } > > -static struct symbol *report_member(mode_t mode, struct position *pos, > +static struct symbol *report_member(usage_t mode, struct position *pos, > struct symbol *type, struct symbol *mem) > { > struct symbol *ret = mem->ctype.base_type; > -- For what it's worth: Acked-by: Luc Van Oostenryck <luc.vanoostenryck@gmail.com> -- To unsubscribe from this list: send the line "unsubscribe linux-sparse" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html
diff --git a/dissect.c b/dissect.c index 2d13d2a..67428ec 100644 --- a/dissect.c +++ b/dissect.c @@ -130,7 +130,7 @@ static inline struct symbol *no_member(struct ident *name) return &sym; } -static struct symbol *report_member(mode_t mode, struct position *pos, +static struct symbol *report_member(usage_t mode, struct position *pos, struct symbol *type, struct symbol *mem) { struct symbol *ret = mem->ctype.base_type;
Cosmetic, fix the typo. Signed-off-by: Oleg Nesterov <oleg@redhat.com> --- dissect.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)