* [PATCH 0/3] staging: lustre: fix macro definitions warnings
@ 2017-09-14 19:11 Aastha Gupta
2017-09-14 19:11 ` [PATCH 1/3] staging: lustre: enclose multi line macros in do-while block Aastha Gupta
` (2 more replies)
0 siblings, 3 replies; 11+ messages in thread
From: Aastha Gupta @ 2017-09-14 19:11 UTC (permalink / raw)
To: outreachy-kernel, Oleg Drokin, Andreas Dilger, James Simmons,
Greg Kroah-Hartman
Cc: Aastha Gupta
This patchset fixes macro definition warnings by checkpatch.pl.
---------------------------------------------------------------------
Aastha Gupta (3):
staging: lustre: enclose multi line macros in do-while block
staging: lustre: fix macro definitions warnings
staging: lustre: enclose multi line macro in do-while block
drivers/staging/lustre/lustre/include/lu_object.h | 14 ++++++++------
1 file changed, 8 insertions(+), 6 deletions(-)
--
2.7.4
^ permalink raw reply [flat|nested] 11+ messages in thread* [PATCH 1/3] staging: lustre: enclose multi line macros in do-while block 2017-09-14 19:11 [PATCH 0/3] staging: lustre: fix macro definitions warnings Aastha Gupta @ 2017-09-14 19:11 ` Aastha Gupta 2017-09-14 19:36 ` [Outreachy kernel] " Julia Lawall 2017-09-14 19:11 ` [PATCH 2/3] staging: lustre: fix macro definitions warnings Aastha Gupta 2017-09-14 19:11 ` [PATCH 3/3] staging: lustre: enclose multi line macro in do-while block Aastha Gupta 2 siblings, 1 reply; 11+ messages in thread From: Aastha Gupta @ 2017-09-14 19:11 UTC (permalink / raw) To: outreachy-kernel, Oleg Drokin, Andreas Dilger, James Simmons, Greg Kroah-Hartman Cc: Aastha Gupta This patch fixes the checkpatch.pl warning: macros with multiple lines should be enclosed in do-while block Signed-off-by: Aastha Gupta <aastha.gupta4104@gmail.com> --- drivers/staging/lustre/lustre/include/lu_object.h | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/drivers/staging/lustre/lustre/include/lu_object.h b/drivers/staging/lustre/lustre/include/lu_object.h index a3c0481..4e4bcf4 100644 --- a/drivers/staging/lustre/lustre/include/lu_object.h +++ b/drivers/staging/lustre/lustre/include/lu_object.h @@ -1151,8 +1151,10 @@ struct lu_context_key { struct __##mod##__dummy_fini {; } /* semicolon catcher */ #define LU_KEY_INIT_FINI(mod, type) \ +do { \ LU_KEY_INIT(mod, type); \ - LU_KEY_FINI(mod, type) + LU_KEY_FINI(mod, type); \ +} while (0) #define LU_CONTEXT_KEY_DEFINE(mod, tags) \ struct lu_context_key mod##_thread_key = { \ -- 2.7.4 ^ permalink raw reply related [flat|nested] 11+ messages in thread
* Re: [Outreachy kernel] [PATCH 1/3] staging: lustre: enclose multi line macros in do-while block 2017-09-14 19:11 ` [PATCH 1/3] staging: lustre: enclose multi line macros in do-while block Aastha Gupta @ 2017-09-14 19:36 ` Julia Lawall 0 siblings, 0 replies; 11+ messages in thread From: Julia Lawall @ 2017-09-14 19:36 UTC (permalink / raw) To: Aastha Gupta Cc: outreachy-kernel, Oleg Drokin, Andreas Dilger, James Simmons, Greg Kroah-Hartman Patches 1 and 3 end up with the same subject line. They do basically the same thing in the same file, so they should be merged. julia On Fri, 15 Sep 2017, Aastha Gupta wrote: > This patch fixes the checkpatch.pl warning: > > macros with multiple lines should be enclosed in do-while block > > Signed-off-by: Aastha Gupta <aastha.gupta4104@gmail.com> > --- > drivers/staging/lustre/lustre/include/lu_object.h | 4 +++- > 1 file changed, 3 insertions(+), 1 deletion(-) > > diff --git a/drivers/staging/lustre/lustre/include/lu_object.h b/drivers/staging/lustre/lustre/include/lu_object.h > index a3c0481..4e4bcf4 100644 > --- a/drivers/staging/lustre/lustre/include/lu_object.h > +++ b/drivers/staging/lustre/lustre/include/lu_object.h > @@ -1151,8 +1151,10 @@ struct lu_context_key { > struct __##mod##__dummy_fini {; } /* semicolon catcher */ > > #define LU_KEY_INIT_FINI(mod, type) \ > +do { \ > LU_KEY_INIT(mod, type); \ > - LU_KEY_FINI(mod, type) > + LU_KEY_FINI(mod, type); \ > +} while (0) > > #define LU_CONTEXT_KEY_DEFINE(mod, tags) \ > struct lu_context_key mod##_thread_key = { \ > -- > 2.7.4 > > -- > You received this message because you are subscribed to the Google Groups "outreachy-kernel" group. > To unsubscribe from this group and stop receiving emails from it, send an email to outreachy-kernel+unsubscribe@googlegroups.com. > To post to this group, send email to outreachy-kernel@googlegroups.com. > To view this discussion on the web visit https://groups.google.com/d/msgid/outreachy-kernel/93cfc5fc6f59b33d9aca6dd3b33f86150e1f5abb.1505414917.git.aastha.gupta4104%40gmail.com. > For more options, visit https://groups.google.com/d/optout. > ^ permalink raw reply [flat|nested] 11+ messages in thread
* [PATCH 2/3] staging: lustre: fix macro definitions warnings 2017-09-14 19:11 [PATCH 0/3] staging: lustre: fix macro definitions warnings Aastha Gupta 2017-09-14 19:11 ` [PATCH 1/3] staging: lustre: enclose multi line macros in do-while block Aastha Gupta @ 2017-09-14 19:11 ` Aastha Gupta 2017-09-14 19:34 ` [Outreachy kernel] " Julia Lawall 2017-09-14 19:37 ` Julia Lawall 2017-09-14 19:11 ` [PATCH 3/3] staging: lustre: enclose multi line macro in do-while block Aastha Gupta 2 siblings, 2 replies; 11+ messages in thread From: Aastha Gupta @ 2017-09-14 19:11 UTC (permalink / raw) To: outreachy-kernel, Oleg Drokin, Andreas Dilger, James Simmons, Greg Kroah-Hartman Cc: Aastha Gupta This patch fixes checkpatch.pl warning for macro definitions. 1. single line macro definitions should not be in do-while block. 2. macros with complex values should be enclosed in parentheses. Signed-off-by: Aastha Gupta <aastha.gupta4104@gmail.com> --- drivers/staging/lustre/lustre/include/lu_object.h | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/drivers/staging/lustre/lustre/include/lu_object.h b/drivers/staging/lustre/lustre/include/lu_object.h index 4e4bcf4..abbb4d6 100644 --- a/drivers/staging/lustre/lustre/include/lu_object.h +++ b/drivers/staging/lustre/lustre/include/lu_object.h @@ -1163,10 +1163,8 @@ do { \ .lct_fini = mod##_key_fini \ } -#define LU_CONTEXT_KEY_INIT(key) \ -do { \ - (key)->lct_owner = THIS_MODULE; \ -} while (0) +#define LU_CONTEXT_KEY_INIT(key) ((key)->lct_owner = THIS_MODULE) + int lu_context_key_register(struct lu_context_key *key); void lu_context_key_degister(struct lu_context_key *key); -- 2.7.4 ^ permalink raw reply related [flat|nested] 11+ messages in thread
* Re: [Outreachy kernel] [PATCH 2/3] staging: lustre: fix macro definitions warnings 2017-09-14 19:11 ` [PATCH 2/3] staging: lustre: fix macro definitions warnings Aastha Gupta @ 2017-09-14 19:34 ` Julia Lawall 2017-09-14 19:37 ` Julia Lawall 1 sibling, 0 replies; 11+ messages in thread From: Julia Lawall @ 2017-09-14 19:34 UTC (permalink / raw) To: Aastha Gupta Cc: outreachy-kernel, Oleg Drokin, Andreas Dilger, James Simmons, Greg Kroah-Hartman On Fri, 15 Sep 2017, Aastha Gupta wrote: > This patch fixes checkpatch.pl warning for macro definitions. > > 1. single line macro definitions should not be in do-while block. > 2. macros with complex values should be enclosed in parentheses. The second warning is not addressed in the patch. > > Signed-off-by: Aastha Gupta <aastha.gupta4104@gmail.com> > --- > drivers/staging/lustre/lustre/include/lu_object.h | 6 ++---- > 1 file changed, 2 insertions(+), 4 deletions(-) > > diff --git a/drivers/staging/lustre/lustre/include/lu_object.h b/drivers/staging/lustre/lustre/include/lu_object.h > index 4e4bcf4..abbb4d6 100644 > --- a/drivers/staging/lustre/lustre/include/lu_object.h > +++ b/drivers/staging/lustre/lustre/include/lu_object.h > @@ -1163,10 +1163,8 @@ do { \ > .lct_fini = mod##_key_fini \ > } > > -#define LU_CONTEXT_KEY_INIT(key) \ > -do { \ > - (key)->lct_owner = THIS_MODULE; \ > -} while (0) > +#define LU_CONTEXT_KEY_INIT(key) ((key)->lct_owner = THIS_MODULE) > + No need to add a blank line. julia > > int lu_context_key_register(struct lu_context_key *key); > void lu_context_key_degister(struct lu_context_key *key); > -- > 2.7.4 > > -- > You received this message because you are subscribed to the Google Groups "outreachy-kernel" group. > To unsubscribe from this group and stop receiving emails from it, send an email to outreachy-kernel+unsubscribe@googlegroups.com. > To post to this group, send email to outreachy-kernel@googlegroups.com. > To view this discussion on the web visit https://groups.google.com/d/msgid/outreachy-kernel/ba81893e8d74ca5367f14caa8b4b221df25efdff.1505414917.git.aastha.gupta4104%40gmail.com. > For more options, visit https://groups.google.com/d/optout. > ^ permalink raw reply [flat|nested] 11+ messages in thread
* Re: [Outreachy kernel] [PATCH 2/3] staging: lustre: fix macro definitions warnings 2017-09-14 19:11 ` [PATCH 2/3] staging: lustre: fix macro definitions warnings Aastha Gupta 2017-09-14 19:34 ` [Outreachy kernel] " Julia Lawall @ 2017-09-14 19:37 ` Julia Lawall 2017-09-14 20:45 ` [PATCH 0/2] staging: lustre: fix macro definitions Aastha Gupta 1 sibling, 1 reply; 11+ messages in thread From: Julia Lawall @ 2017-09-14 19:37 UTC (permalink / raw) To: Aastha Gupta Cc: outreachy-kernel, Oleg Drokin, Andreas Dilger, James Simmons, Greg Kroah-Hartman On Fri, 15 Sep 2017, Aastha Gupta wrote: > This patch fixes checkpatch.pl warning for macro definitions. > > 1. single line macro definitions should not be in do-while block. > 2. macros with complex values should be enclosed in parentheses. This one could be merged with the other two. The part that should have been put into a separate patch was the removal of the two macros that are never used. julia > > Signed-off-by: Aastha Gupta <aastha.gupta4104@gmail.com> > --- > drivers/staging/lustre/lustre/include/lu_object.h | 6 ++---- > 1 file changed, 2 insertions(+), 4 deletions(-) > > diff --git a/drivers/staging/lustre/lustre/include/lu_object.h b/drivers/staging/lustre/lustre/include/lu_object.h > index 4e4bcf4..abbb4d6 100644 > --- a/drivers/staging/lustre/lustre/include/lu_object.h > +++ b/drivers/staging/lustre/lustre/include/lu_object.h > @@ -1163,10 +1163,8 @@ do { \ > .lct_fini = mod##_key_fini \ > } > > -#define LU_CONTEXT_KEY_INIT(key) \ > -do { \ > - (key)->lct_owner = THIS_MODULE; \ > -} while (0) > +#define LU_CONTEXT_KEY_INIT(key) ((key)->lct_owner = THIS_MODULE) > + > > int lu_context_key_register(struct lu_context_key *key); > void lu_context_key_degister(struct lu_context_key *key); > -- > 2.7.4 > > -- > You received this message because you are subscribed to the Google Groups "outreachy-kernel" group. > To unsubscribe from this group and stop receiving emails from it, send an email to outreachy-kernel+unsubscribe@googlegroups.com. > To post to this group, send email to outreachy-kernel@googlegroups.com. > To view this discussion on the web visit https://groups.google.com/d/msgid/outreachy-kernel/ba81893e8d74ca5367f14caa8b4b221df25efdff.1505414917.git.aastha.gupta4104%40gmail.com. > For more options, visit https://groups.google.com/d/optout. > ^ permalink raw reply [flat|nested] 11+ messages in thread
* [PATCH 0/2] staging: lustre: fix macro definitions 2017-09-14 19:37 ` Julia Lawall @ 2017-09-14 20:45 ` Aastha Gupta 2017-09-14 20:45 ` [PATCH 1/2] staging: lustre: fix macro definitions warnings Aastha Gupta 2017-09-14 20:45 ` [PATCH 2/2] staging: lustre: drop macro definitions with no users Aastha Gupta 0 siblings, 2 replies; 11+ messages in thread From: Aastha Gupta @ 2017-09-14 20:45 UTC (permalink / raw) To: outreachy-kernel, Oleg Drokin, Andreas Dilger, James Simmons, Greg Kroah-Hartman Cc: Aastha Gupta This patch: 1. fixes the checkpatch.pl macro warnings. 2. removes macros with no uses --------------------------------------------------------------------- Aastha Gupta (2): staging: lustre: fix macro definitions warnings staging: lustre: drop macro that has no uses drivers/staging/lustre/lustre/include/lu_object.h | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) -- 2.7.4 ^ permalink raw reply [flat|nested] 11+ messages in thread
* [PATCH 1/2] staging: lustre: fix macro definitions warnings 2017-09-14 20:45 ` [PATCH 0/2] staging: lustre: fix macro definitions Aastha Gupta @ 2017-09-14 20:45 ` Aastha Gupta 2017-09-14 20:52 ` [Outreachy kernel] " Julia Lawall 2017-09-14 20:45 ` [PATCH 2/2] staging: lustre: drop macro definitions with no users Aastha Gupta 1 sibling, 1 reply; 11+ messages in thread From: Aastha Gupta @ 2017-09-14 20:45 UTC (permalink / raw) To: outreachy-kernel, Oleg Drokin, Andreas Dilger, James Simmons, Greg Kroah-Hartman Cc: Aastha Gupta This patch fixes the checkpatch.pl warnings related to macro definitions. 1. macros with complex values should be enclosed in parentheses. 2. macros with multiple lines should be enclosed in do-while block. Signed-off-by: Aastha Gupta <aastha.gupta4104@gmail.com> --- drivers/staging/lustre/lustre/include/lu_object.h | 14 ++++++++------ 1 file changed, 8 insertions(+), 6 deletions(-) diff --git a/drivers/staging/lustre/lustre/include/lu_object.h b/drivers/staging/lustre/lustre/include/lu_object.h index a3c0481..c8d5e0b 100644 --- a/drivers/staging/lustre/lustre/include/lu_object.h +++ b/drivers/staging/lustre/lustre/include/lu_object.h @@ -1151,8 +1151,10 @@ struct lu_context_key { struct __##mod##__dummy_fini {; } /* semicolon catcher */ #define LU_KEY_INIT_FINI(mod, type) \ +do { \ LU_KEY_INIT(mod, type); \ - LU_KEY_FINI(mod, type) + LU_KEY_FINI(mod, type); \ +} while (0) #define LU_CONTEXT_KEY_DEFINE(mod, tags) \ struct lu_context_key mod##_thread_key = { \ @@ -1161,10 +1163,8 @@ struct lu_context_key { .lct_fini = mod##_key_fini \ } -#define LU_CONTEXT_KEY_INIT(key) \ -do { \ - (key)->lct_owner = THIS_MODULE; \ -} while (0) +#define LU_CONTEXT_KEY_INIT(key) ((key)->lct_owner = THIS_MODULE) + int lu_context_key_register(struct lu_context_key *key); void lu_context_key_degister(struct lu_context_key *key); @@ -1223,10 +1223,12 @@ void lu_context_key_revive(struct lu_context_key *key); struct __##mod##_dummy_type_stop {; } #define LU_TYPE_INIT_FINI(mod, ...) \ +do { \ LU_TYPE_INIT(mod, __VA_ARGS__); \ LU_TYPE_FINI(mod, __VA_ARGS__); \ LU_TYPE_START(mod, __VA_ARGS__); \ - LU_TYPE_STOP(mod, __VA_ARGS__) + LU_TYPE_STOP(mod, __VA_ARGS__); \ +} while (0) int lu_context_init(struct lu_context *ctx, __u32 tags); void lu_context_fini(struct lu_context *ctx); -- 2.7.4 ^ permalink raw reply related [flat|nested] 11+ messages in thread
* Re: [Outreachy kernel] [PATCH 1/2] staging: lustre: fix macro definitions warnings 2017-09-14 20:45 ` [PATCH 1/2] staging: lustre: fix macro definitions warnings Aastha Gupta @ 2017-09-14 20:52 ` Julia Lawall 0 siblings, 0 replies; 11+ messages in thread From: Julia Lawall @ 2017-09-14 20:52 UTC (permalink / raw) To: Aastha Gupta Cc: outreachy-kernel, Oleg Drokin, Andreas Dilger, James Simmons, Greg Kroah-Hartman On Fri, 15 Sep 2017, Aastha Gupta wrote: > This patch fixes the checkpatch.pl warnings related to macro > definitions. > 1. macros with complex values should be enclosed in parentheses. This one is not represented. > 2. macros with multiple lines should be enclosed in do-while block. This one does not cover all of the changes that are made. julia > Signed-off-by: Aastha Gupta <aastha.gupta4104@gmail.com> > --- > drivers/staging/lustre/lustre/include/lu_object.h | 14 ++++++++------ > 1 file changed, 8 insertions(+), 6 deletions(-) > > diff --git a/drivers/staging/lustre/lustre/include/lu_object.h b/drivers/staging/lustre/lustre/include/lu_object.h > index a3c0481..c8d5e0b 100644 > --- a/drivers/staging/lustre/lustre/include/lu_object.h > +++ b/drivers/staging/lustre/lustre/include/lu_object.h > @@ -1151,8 +1151,10 @@ struct lu_context_key { > struct __##mod##__dummy_fini {; } /* semicolon catcher */ > > #define LU_KEY_INIT_FINI(mod, type) \ > +do { \ > LU_KEY_INIT(mod, type); \ > - LU_KEY_FINI(mod, type) > + LU_KEY_FINI(mod, type); \ > +} while (0) > > #define LU_CONTEXT_KEY_DEFINE(mod, tags) \ > struct lu_context_key mod##_thread_key = { \ > @@ -1161,10 +1163,8 @@ struct lu_context_key { > .lct_fini = mod##_key_fini \ > } > > -#define LU_CONTEXT_KEY_INIT(key) \ > -do { \ > - (key)->lct_owner = THIS_MODULE; \ > -} while (0) > +#define LU_CONTEXT_KEY_INIT(key) ((key)->lct_owner = THIS_MODULE) > + > > int lu_context_key_register(struct lu_context_key *key); > void lu_context_key_degister(struct lu_context_key *key); > @@ -1223,10 +1223,12 @@ void lu_context_key_revive(struct lu_context_key *key); > struct __##mod##_dummy_type_stop {; } > > #define LU_TYPE_INIT_FINI(mod, ...) \ > +do { \ > LU_TYPE_INIT(mod, __VA_ARGS__); \ > LU_TYPE_FINI(mod, __VA_ARGS__); \ > LU_TYPE_START(mod, __VA_ARGS__); \ > - LU_TYPE_STOP(mod, __VA_ARGS__) > + LU_TYPE_STOP(mod, __VA_ARGS__); \ > +} while (0) > > int lu_context_init(struct lu_context *ctx, __u32 tags); > void lu_context_fini(struct lu_context *ctx); > -- > 2.7.4 > > -- > You received this message because you are subscribed to the Google Groups "outreachy-kernel" group. > To unsubscribe from this group and stop receiving emails from it, send an email to outreachy-kernel+unsubscribe@googlegroups.com. > To post to this group, send email to outreachy-kernel@googlegroups.com. > To view this discussion on the web visit https://groups.google.com/d/msgid/outreachy-kernel/b2fc843770e35e8fc84e1c4acbdecee869633560.1505421269.git.aastha.gupta4104%40gmail.com. > For more options, visit https://groups.google.com/d/optout. > ^ permalink raw reply [flat|nested] 11+ messages in thread
* [PATCH 2/2] staging: lustre: drop macro definitions with no users 2017-09-14 20:45 ` [PATCH 0/2] staging: lustre: fix macro definitions Aastha Gupta 2017-09-14 20:45 ` [PATCH 1/2] staging: lustre: fix macro definitions warnings Aastha Gupta @ 2017-09-14 20:45 ` Aastha Gupta 1 sibling, 0 replies; 11+ messages in thread From: Aastha Gupta @ 2017-09-14 20:45 UTC (permalink / raw) To: outreachy-kernel, Oleg Drokin, Andreas Dilger, James Simmons, Greg Kroah-Hartman Cc: Aastha Gupta This patch removes DLUBUF and PLUBUF macro, both of which have no users. Signed-off-by: Aastha Gupta <aastha.gupta4104@gmail.com> --- This patch is as instructed by Andreas Dilger in one of the previous mails. drivers/staging/lustre/lustre/include/lu_object.h | 2 -- 1 file changed, 2 deletions(-) diff --git a/drivers/staging/lustre/lustre/include/lu_object.h b/drivers/staging/lustre/lustre/include/lu_object.h index c8d5e0b..d5ecd58 100644 --- a/drivers/staging/lustre/lustre/include/lu_object.h +++ b/drivers/staging/lustre/lustre/include/lu_object.h @@ -1305,8 +1305,6 @@ struct lu_buf { size_t lb_len; }; -#define DLUBUF "(%p %zu)" -#define PLUBUF(buf) (buf)->lb_buf, (buf)->lb_len /** * One-time initializers, called at obdclass module initialization, not * exported. -- 2.7.4 ^ permalink raw reply related [flat|nested] 11+ messages in thread
* [PATCH 3/3] staging: lustre: enclose multi line macro in do-while block 2017-09-14 19:11 [PATCH 0/3] staging: lustre: fix macro definitions warnings Aastha Gupta 2017-09-14 19:11 ` [PATCH 1/3] staging: lustre: enclose multi line macros in do-while block Aastha Gupta 2017-09-14 19:11 ` [PATCH 2/3] staging: lustre: fix macro definitions warnings Aastha Gupta @ 2017-09-14 19:11 ` Aastha Gupta 2 siblings, 0 replies; 11+ messages in thread From: Aastha Gupta @ 2017-09-14 19:11 UTC (permalink / raw) To: outreachy-kernel, Oleg Drokin, Andreas Dilger, James Simmons, Greg Kroah-Hartman Cc: Aastha Gupta This patch fixes the checkpatch.pl warning: macros with multiple lines should be enclosed in do-while block. Signed-off-by: Aastha Gupta <aastha.gupta4104@gmail.com> --- drivers/staging/lustre/lustre/include/lu_object.h | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/drivers/staging/lustre/lustre/include/lu_object.h b/drivers/staging/lustre/lustre/include/lu_object.h index abbb4d6..c8d5e0b 100644 --- a/drivers/staging/lustre/lustre/include/lu_object.h +++ b/drivers/staging/lustre/lustre/include/lu_object.h @@ -1223,10 +1223,12 @@ void lu_context_key_revive(struct lu_context_key *key); struct __##mod##_dummy_type_stop {; } #define LU_TYPE_INIT_FINI(mod, ...) \ +do { \ LU_TYPE_INIT(mod, __VA_ARGS__); \ LU_TYPE_FINI(mod, __VA_ARGS__); \ LU_TYPE_START(mod, __VA_ARGS__); \ - LU_TYPE_STOP(mod, __VA_ARGS__) + LU_TYPE_STOP(mod, __VA_ARGS__); \ +} while (0) int lu_context_init(struct lu_context *ctx, __u32 tags); void lu_context_fini(struct lu_context *ctx); -- 2.7.4 ^ permalink raw reply related [flat|nested] 11+ messages in thread
end of thread, other threads:[~2017-09-14 20:52 UTC | newest] Thread overview: 11+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2017-09-14 19:11 [PATCH 0/3] staging: lustre: fix macro definitions warnings Aastha Gupta 2017-09-14 19:11 ` [PATCH 1/3] staging: lustre: enclose multi line macros in do-while block Aastha Gupta 2017-09-14 19:36 ` [Outreachy kernel] " Julia Lawall 2017-09-14 19:11 ` [PATCH 2/3] staging: lustre: fix macro definitions warnings Aastha Gupta 2017-09-14 19:34 ` [Outreachy kernel] " Julia Lawall 2017-09-14 19:37 ` Julia Lawall 2017-09-14 20:45 ` [PATCH 0/2] staging: lustre: fix macro definitions Aastha Gupta 2017-09-14 20:45 ` [PATCH 1/2] staging: lustre: fix macro definitions warnings Aastha Gupta 2017-09-14 20:52 ` [Outreachy kernel] " Julia Lawall 2017-09-14 20:45 ` [PATCH 2/2] staging: lustre: drop macro definitions with no users Aastha Gupta 2017-09-14 19:11 ` [PATCH 3/3] staging: lustre: enclose multi line macro in do-while block Aastha Gupta
This is an external index of several public inboxes, see mirroring instructions on how to clone and mirror all data and code used by this external index.