* [RESEND PATCH] staging: lustre: fix incorrect multi-line comment style
@ 2017-09-14 11:37 Aastha Gupta
2017-09-14 12:14 ` aastha.gupta4104
2017-09-18 9:37 ` Greg Kroah-Hartman
0 siblings, 2 replies; 5+ messages in thread
From: Aastha Gupta @ 2017-09-14 11:37 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:
WARNING: block comments use a trailing */ on a separate line
Signed-off-by: Aastha Gupta <aastha.gupta4104@gmail.com>
---
.../staging/lustre/lustre/include/lustre_errno.h | 51 ++++++++++++++--------
1 file changed, 34 insertions(+), 17 deletions(-)
diff --git a/drivers/staging/lustre/lustre/include/lustre_errno.h b/drivers/staging/lustre/lustre/include/lustre_errno.h
index 35aefa2..02642be 100644
--- a/drivers/staging/lustre/lustre/include/lustre_errno.h
+++ b/drivers/staging/lustre/lustre/include/lustre_errno.h
@@ -71,7 +71,8 @@
#define LUSTRE_EMLINK 31 /* Too many links */
#define LUSTRE_EPIPE 32 /* Broken pipe */
#define LUSTRE_EDOM 33 /* Math argument out of domain of
- func */
+ * func
+ */
#define LUSTRE_ERANGE 34 /* Math result not representable */
#define LUSTRE_EDEADLK 35 /* Resource deadlock would occur */
#define LUSTRE_ENAMETOOLONG 36 /* File name too long */
@@ -79,7 +80,8 @@
#define LUSTRE_ENOSYS 38 /* Function not implemented */
#define LUSTRE_ENOTEMPTY 39 /* Directory not empty */
#define LUSTRE_ELOOP 40 /* Too many symbolic links
- encountered */
+ * encountered
+ */
#define LUSTRE_ENOMSG 42 /* No message of desired type */
#define LUSTRE_EIDRM 43 /* Identifier removed */
#define LUSTRE_ECHRNG 44 /* Channel number out of range */
@@ -113,22 +115,28 @@
#define LUSTRE_EDOTDOT 73 /* RFS specific error */
#define LUSTRE_EBADMSG 74 /* Not a data message */
#define LUSTRE_EOVERFLOW 75 /* Value too large for defined data
- type */
+ * type
+ */
#define LUSTRE_ENOTUNIQ 76 /* Name not unique on network */
#define LUSTRE_EBADFD 77 /* File descriptor in bad state */
#define LUSTRE_EREMCHG 78 /* Remote address changed */
#define LUSTRE_ELIBACC 79 /* Can not access a needed shared
- library */
+ * library
+ */
#define LUSTRE_ELIBBAD 80 /* Accessing a corrupted shared
- library */
+ * ibrary
+ */
#define LUSTRE_ELIBSCN 81 /* .lib section in a.out corrupted */
#define LUSTRE_ELIBMAX 82 /* Attempting to link in too many shared
- libraries */
+ * libraries
+ */
#define LUSTRE_ELIBEXEC 83 /* Cannot exec a shared library
- directly */
+ * directly
+ */
#define LUSTRE_EILSEQ 84 /* Illegal byte sequence */
#define LUSTRE_ERESTART 85 /* Interrupted system call should be
- restarted */
+ * restarted
+ */
#define LUSTRE_ESTRPIPE 86 /* Streams pipe error */
#define LUSTRE_EUSERS 87 /* Too many users */
#define LUSTRE_ENOTSOCK 88 /* Socket operation on non-socket */
@@ -139,25 +147,31 @@
#define LUSTRE_EPROTONOSUPPORT 93 /* Protocol not supported */
#define LUSTRE_ESOCKTNOSUPPORT 94 /* Socket type not supported */
#define LUSTRE_EOPNOTSUPP 95 /* Operation not supported on transport
- endpoint */
+ * endpoint
+ */
#define LUSTRE_EPFNOSUPPORT 96 /* Protocol family not supported */
#define LUSTRE_EAFNOSUPPORT 97 /* Address family not supported by
- protocol */
+ * protocol
+ */
#define LUSTRE_EADDRINUSE 98 /* Address already in use */
#define LUSTRE_EADDRNOTAVAIL 99 /* Cannot assign requested address */
#define LUSTRE_ENETDOWN 100 /* Network is down */
#define LUSTRE_ENETUNREACH 101 /* Network is unreachable */
#define LUSTRE_ENETRESET 102 /* Network dropped connection because of
- reset */
+ * reset
+ */
#define LUSTRE_ECONNABORTED 103 /* Software caused connection abort */
#define LUSTRE_ECONNRESET 104 /* Connection reset by peer */
#define LUSTRE_ENOBUFS 105 /* No buffer space available */
#define LUSTRE_EISCONN 106 /* Transport endpoint is already
- connected */
+ * connected
+ */
#define LUSTRE_ENOTCONN 107 /* Transport endpoint is not
- connected */
+ * connected
+ */
#define LUSTRE_ESHUTDOWN 108 /* Cannot send after transport endpoint
- shutdown */
+ * shutdown
+ */
#define LUSTRE_ETOOMANYREFS 109 /* Too many references: cannot splice */
#define LUSTRE_ETIMEDOUT 110 /* Connection timed out */
#define LUSTRE_ECONNREFUSED 111 /* Connection refused */
@@ -186,7 +200,8 @@
#define LUSTRE_ERESTARTNOHAND 514 /* restart if no handler.. */
#define LUSTRE_ENOIOCTLCMD 515 /* No ioctl command */
#define LUSTRE_ERESTART_RESTARTBLOCK 516 /* restart by calling
- sys_restart_syscall */
+ * sys_restart_syscall
+ */
#define LUSTRE_EBADHANDLE 521 /* Illegal NFS file handle */
#define LUSTRE_ENOTSYNC 522 /* Update synchronization mismatch */
#define LUSTRE_EBADCOOKIE 523 /* Cookie is stale */
@@ -195,9 +210,11 @@
#define LUSTRE_ESERVERFAULT 526 /* An untranslatable error occurred */
#define LUSTRE_EBADTYPE 527 /* Type not supported by server */
#define LUSTRE_EJUKEBOX 528 /* Request initiated, but will not
- complete before timeout */
+ * complete before timeout
+ */
#define LUSTRE_EIOCBQUEUED 529 /* iocb queued, will get completion
- event */
+ * event
+ */
#define LUSTRE_EIOCBRETRY 530 /* iocb queued, will trigger a retry */
/*
--
2.7.4
^ permalink raw reply related [flat|nested] 5+ messages in thread
* Re: [RESEND PATCH] staging: lustre: fix incorrect multi-line comment style
2017-09-14 11:37 [RESEND PATCH] staging: lustre: fix incorrect multi-line comment style Aastha Gupta
@ 2017-09-14 12:14 ` aastha.gupta4104
2017-09-14 12:33 ` [Outreachy kernel] " Julia Lawall
2017-09-18 9:37 ` Greg Kroah-Hartman
1 sibling, 1 reply; 5+ messages in thread
From: aastha.gupta4104 @ 2017-09-14 12:14 UTC (permalink / raw)
To: outreachy-kernel
[-- Attachment #1.1: Type: text/plain, Size: 8566 bytes --]
Please review this patch.
On Thursday, September 14, 2017 at 5:08:05 PM UTC+5:30, Aastha Gupta wrote:
>
> This patch fixes the checkpatch.pl warning:
>
> WARNING: block comments use a trailing */ on a separate line
>
> Signed-off-by: Aastha Gupta <aastha.gupta4104@gmail.com>
> ---
> .../staging/lustre/lustre/include/lustre_errno.h | 51
> ++++++++++++++--------
> 1 file changed, 34 insertions(+), 17 deletions(-)
>
> diff --git a/drivers/staging/lustre/lustre/include/lustre_errno.h
> b/drivers/staging/lustre/lustre/include/lustre_errno.h
> index 35aefa2..02642be 100644
> --- a/drivers/staging/lustre/lustre/include/lustre_errno.h
> +++ b/drivers/staging/lustre/lustre/include/lustre_errno.h
> @@ -71,7 +71,8 @@
> #define LUSTRE_EMLINK 31 /* Too many links */
> #define LUSTRE_EPIPE 32 /* Broken pipe */
> #define LUSTRE_EDOM 33 /* Math argument out of
> domain of
> - func */
> + * func
> + */
> #define LUSTRE_ERANGE 34 /* Math result not
> representable */
> #define LUSTRE_EDEADLK 35 /* Resource deadlock
> would occur */
> #define LUSTRE_ENAMETOOLONG 36 /* File name too long */
> @@ -79,7 +80,8 @@
> #define LUSTRE_ENOSYS 38 /* Function not
> implemented */
> #define LUSTRE_ENOTEMPTY 39 /* Directory not empty */
> #define LUSTRE_ELOOP 40 /* Too many symbolic links
> - encountered */
> + * encountered
> + */
> #define LUSTRE_ENOMSG 42 /* No message of desired
> type */
> #define LUSTRE_EIDRM 43 /* Identifier removed */
> #define LUSTRE_ECHRNG 44 /* Channel number out of
> range */
> @@ -113,22 +115,28 @@
> #define LUSTRE_EDOTDOT 73 /* RFS specific error */
> #define LUSTRE_EBADMSG 74 /* Not a data message */
> #define LUSTRE_EOVERFLOW 75 /* Value too large for defined
> data
> - type */
> + * type
> + */
> #define LUSTRE_ENOTUNIQ 76 /* Name not unique on
> network */
> #define LUSTRE_EBADFD 77 /* File descriptor in bad
> state */
> #define LUSTRE_EREMCHG 78 /* Remote address changed
> */
> #define LUSTRE_ELIBACC 79 /* Can not access a
> needed shared
> - library */
> + * library
> + */
> #define LUSTRE_ELIBBAD 80 /* Accessing a corrupted
> shared
> - library */
> + * ibrary
> + */
> #define LUSTRE_ELIBSCN 81 /* .lib section in a.out
> corrupted */
> #define LUSTRE_ELIBMAX 82 /* Attempting to link in
> too many shared
> - libraries */
> + * libraries
> + */
> #define LUSTRE_ELIBEXEC 83 /* Cannot exec a shared
> library
> - directly */
> + * directly
> + */
> #define LUSTRE_EILSEQ 84 /* Illegal byte sequence
> */
> #define LUSTRE_ERESTART 85 /* Interrupted system
> call should be
> - restarted */
> + * restarted
> + */
> #define LUSTRE_ESTRPIPE 86 /* Streams pipe error */
> #define LUSTRE_EUSERS 87 /* Too many users */
> #define LUSTRE_ENOTSOCK 88 /* Socket operation on
> non-socket */
> @@ -139,25 +147,31 @@
> #define LUSTRE_EPROTONOSUPPORT 93 /* Protocol not supported
> */
> #define LUSTRE_ESOCKTNOSUPPORT 94 /* Socket type not
> supported */
> #define LUSTRE_EOPNOTSUPP 95 /* Operation not supported on
> transport
> - endpoint */
> + * endpoint
> + */
> #define LUSTRE_EPFNOSUPPORT 96 /* Protocol family not
> supported */
> #define LUSTRE_EAFNOSUPPORT 97 /* Address family not
> supported by
> - protocol */
> + * protocol
> + */
> #define LUSTRE_EADDRINUSE 98 /* Address already in use */
> #define LUSTRE_EADDRNOTAVAIL 99 /* Cannot assign requested
> address */
> #define LUSTRE_ENETDOWN 100 /* Network is down */
> #define LUSTRE_ENETUNREACH 101 /* Network is unreachable */
> #define LUSTRE_ENETRESET 102 /* Network dropped connection
> because of
> - reset */
> + * reset
> + */
> #define LUSTRE_ECONNABORTED 103 /* Software caused
> connection abort */
> #define LUSTRE_ECONNRESET 104 /* Connection reset by peer
> */
> #define LUSTRE_ENOBUFS 105 /* No buffer space
> available */
> #define LUSTRE_EISCONN 106 /* Transport endpoint is
> already
> - connected */
> + * connected
> + */
> #define LUSTRE_ENOTCONN 107 /* Transport endpoint
> is not
> - connected */
> + * connected
> + */
> #define LUSTRE_ESHUTDOWN 108 /* Cannot send after transport
> endpoint
> - shutdown */
> + * shutdown
> + */
> #define LUSTRE_ETOOMANYREFS 109 /* Too many references:
> cannot splice */
> #define LUSTRE_ETIMEDOUT 110 /* Connection timed out */
> #define LUSTRE_ECONNREFUSED 111 /* Connection refused */
> @@ -186,7 +200,8 @@
> #define LUSTRE_ERESTARTNOHAND 514 /* restart if no
> handler.. */
> #define LUSTRE_ENOIOCTLCMD 515 /* No ioctl command */
> #define LUSTRE_ERESTART_RESTARTBLOCK 516 /* restart by calling
> - sys_restart_syscall */
> + * sys_restart_syscall
> + */
> #define LUSTRE_EBADHANDLE 521 /* Illegal NFS file handle */
> #define LUSTRE_ENOTSYNC 522 /* Update
> synchronization mismatch */
> #define LUSTRE_EBADCOOKIE 523 /* Cookie is stale */
> @@ -195,9 +210,11 @@
> #define LUSTRE_ESERVERFAULT 526 /* An untranslatable error
> occurred */
> #define LUSTRE_EBADTYPE 527 /* Type not supported
> by server */
> #define LUSTRE_EJUKEBOX 528 /* Request initiated,
> but will not
> - complete before timeout */
> + * complete before timeout
> + */
> #define LUSTRE_EIOCBQUEUED 529 /* iocb queued, will get
> completion
> - event */
> + * event
> + */
> #define LUSTRE_EIOCBRETRY 530 /* iocb queued, will trigger
> a retry */
>
> /*
> --
> 2.7.4
>
>
[-- Attachment #1.2: Type: text/html, Size: 13379 bytes --]
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [Outreachy kernel] Re: [RESEND PATCH] staging: lustre: fix incorrect multi-line comment style
2017-09-14 12:14 ` aastha.gupta4104
@ 2017-09-14 12:33 ` Julia Lawall
0 siblings, 0 replies; 5+ messages in thread
From: Julia Lawall @ 2017-09-14 12:33 UTC (permalink / raw)
To: aastha.gupta4104; +Cc: outreachy-kernel
[-- Attachment #1: Type: text/plain, Size: 16922 bytes --]
On Thu, 14 Sep 2017, aastha.gupta4104@gmail.com wrote:
> Please review this patch.
You should be a little more patient :) Everything sent to the mailing
list should be reviewed eventually. You can send other patches in the
meantime.
julia
>
> On Thursday, September 14, 2017 at 5:08:05 PM UTC+5:30, Aastha Gupta wrote:
> This patch fixes the checkpatch.pl warning:
>
> WARNING: block comments use a trailing */ on a separate line
>
> Signed-off-by: Aastha Gupta <aastha.gupta4104@gmail.com>
> ---
> ᅵ.../staging/lustre/lustre/include/lustre_errno.h ᅵ | 51
> ++++++++++++++--------
> ᅵ1 file changed, 34 insertions(+), 17 deletions(-)
>
> diff --git
> a/drivers/staging/lustre/lustre/include/lustre_errno.h
> b/drivers/staging/lustre/lustre/include/lustre_errno.h
> index 35aefa2..02642be 100644
> --- a/drivers/staging/lustre/lustre/include/lustre_errno.h
> +++ b/drivers/staging/lustre/lustre/include/lustre_errno.h
> @@ -71,7 +71,8 @@
> ᅵ#define LUSTRE_EMLINKᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵ31ᅵᅵᅵᅵᅵᅵᅵᅵ/* Too many
> links */
> ᅵ#define LUSTRE_EPIPEᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵ32ᅵᅵᅵᅵᅵᅵᅵᅵ/* Broken pipe */
> ᅵ#define LUSTRE_EDOMᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵ33ᅵᅵᅵᅵᅵᅵᅵᅵ/* Math argument
> out of domain of
> -ᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵ ᅵ func */
> +ᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵ * func
> +ᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵ */
> ᅵ#define LUSTRE_ERANGEᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵ34ᅵᅵᅵᅵᅵᅵᅵᅵ/* Math result
> not representable */
> ᅵ#define LUSTRE_EDEADLKᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵ35ᅵᅵᅵᅵᅵᅵᅵᅵ/* Resource
> deadlock would occur */
> ᅵ#define LUSTRE_ENAMETOOLONGᅵᅵᅵᅵᅵᅵᅵᅵ36ᅵᅵᅵᅵᅵᅵᅵᅵ/* File name too
> long */
> @@ -79,7 +80,8 @@
> ᅵ#define LUSTRE_ENOSYSᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵ38ᅵᅵᅵᅵᅵᅵᅵᅵ/* Function not
> implemented */
> ᅵ#define LUSTRE_ENOTEMPTYᅵᅵᅵᅵᅵᅵᅵᅵ39ᅵᅵᅵᅵᅵᅵᅵᅵ/* Directory not
> empty */
> ᅵ#define LUSTRE_ELOOPᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵ40ᅵᅵᅵᅵᅵᅵᅵᅵ/* Too many
> symbolic links
> -ᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵ ᅵ encountered */
> +ᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵ * encountered
> +ᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵ */
> ᅵ#define LUSTRE_ENOMSGᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵ42ᅵᅵᅵᅵᅵᅵᅵᅵ/* No message of
> desired type */
> ᅵ#define LUSTRE_EIDRMᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵ43ᅵᅵᅵᅵᅵᅵᅵᅵ/* Identifier
> removed */
> ᅵ#define LUSTRE_ECHRNGᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵ44ᅵᅵᅵᅵᅵᅵᅵᅵ/* Channel
> number out of range */
> @@ -113,22 +115,28 @@
> ᅵ#define LUSTRE_EDOTDOTᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵ73ᅵᅵᅵᅵᅵᅵᅵᅵ/* RFS specific
> error */
> ᅵ#define LUSTRE_EBADMSGᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵ74ᅵᅵᅵᅵᅵᅵᅵᅵ/* Not a data
> message */
> ᅵ#define LUSTRE_EOVERFLOWᅵᅵᅵᅵᅵᅵᅵᅵ75ᅵᅵᅵᅵᅵᅵᅵᅵ/* Value too large
> for defined data
> -ᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵ ᅵ type */
> +ᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵ * type
> +ᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵ */
> ᅵ#define LUSTRE_ENOTUNIQᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵ76ᅵᅵᅵᅵᅵᅵᅵᅵ/* Name not
> unique on network */
> ᅵ#define LUSTRE_EBADFDᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵ77ᅵᅵᅵᅵᅵᅵᅵᅵ/* File
> descriptor in bad state */
> ᅵ#define LUSTRE_EREMCHGᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵ78ᅵᅵᅵᅵᅵᅵᅵᅵ/* Remote
> address changed */
> ᅵ#define LUSTRE_ELIBACCᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵ79ᅵᅵᅵᅵᅵᅵᅵᅵ/* Can not
> access a needed shared
> -ᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵ ᅵ library */
> +ᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵ * library
> +ᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵ */
> ᅵ#define LUSTRE_ELIBBADᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵ80ᅵᅵᅵᅵᅵᅵᅵᅵ/* Accessing a
> corrupted shared
> -ᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵ ᅵ library */
> +ᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵ * ibrary
> +ᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵ */
> ᅵ#define LUSTRE_ELIBSCNᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵ81ᅵᅵᅵᅵᅵᅵᅵᅵ/* .lib section
> in a.out corrupted */
> ᅵ#define LUSTRE_ELIBMAXᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵ82ᅵᅵᅵᅵᅵᅵᅵᅵ/* Attempting
> to link in too many shared
> -ᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵ ᅵ libraries */
> +ᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵ * libraries
> +ᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵ */
> ᅵ#define LUSTRE_ELIBEXECᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵ83ᅵᅵᅵᅵᅵᅵᅵᅵ/* Cannot exec
> a shared library
> -ᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵ ᅵ directly */
> +ᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵ * directly
> +ᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵ */
> ᅵ#define LUSTRE_EILSEQᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵ84ᅵᅵᅵᅵᅵᅵᅵᅵ/* Illegal byte
> sequence */
> ᅵ#define LUSTRE_ERESTARTᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵ85ᅵᅵᅵᅵᅵᅵᅵᅵ/* Interrupted
> system call should be
> -ᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵ ᅵ restarted */
> +ᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵ * restarted
> +ᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵ */
> ᅵ#define LUSTRE_ESTRPIPEᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵ86ᅵᅵᅵᅵᅵᅵᅵᅵ/* Streams
> pipe error */
> ᅵ#define LUSTRE_EUSERSᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵ87ᅵᅵᅵᅵᅵᅵᅵᅵ/* Too many
> users */
> ᅵ#define LUSTRE_ENOTSOCKᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵ88ᅵᅵᅵᅵᅵᅵᅵᅵ/* Socket
> operation on non-socket */
> @@ -139,25 +147,31 @@
> ᅵ#define LUSTRE_EPROTONOSUPPORTᅵᅵᅵᅵᅵᅵᅵᅵ93ᅵᅵᅵᅵᅵᅵᅵᅵ/* Protocol not
> supported */
> ᅵ#define LUSTRE_ESOCKTNOSUPPORTᅵᅵᅵᅵᅵᅵᅵᅵ94ᅵᅵᅵᅵᅵᅵᅵᅵ/* Socket type
> not supported */
> ᅵ#define LUSTRE_EOPNOTSUPPᅵᅵᅵᅵᅵᅵᅵᅵ95ᅵᅵᅵᅵᅵᅵᅵᅵ/* Operation not
> supported on transport
> -ᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵ ᅵ endpoint */
> +ᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵ * endpoint
> +ᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵ */
> ᅵ#define LUSTRE_EPFNOSUPPORTᅵᅵᅵᅵᅵᅵᅵᅵ96ᅵᅵᅵᅵᅵᅵᅵᅵ/* Protocol family
> not supported */
> ᅵ#define LUSTRE_EAFNOSUPPORTᅵᅵᅵᅵᅵᅵᅵᅵ97ᅵᅵᅵᅵᅵᅵᅵᅵ/* Address family
> not supported by
> -ᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵ ᅵ protocol */
> +ᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵ * protocol
> +ᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵ */
> ᅵ#define LUSTRE_EADDRINUSEᅵᅵᅵᅵᅵᅵᅵᅵ98ᅵᅵᅵᅵᅵᅵᅵᅵ/* Address already
> in use */
> ᅵ#define LUSTRE_EADDRNOTAVAILᅵᅵᅵᅵᅵᅵᅵᅵ99ᅵᅵᅵᅵᅵᅵᅵᅵ/* Cannot assign
> requested address */
> ᅵ#define LUSTRE_ENETDOWNᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵ100ᅵᅵᅵᅵᅵᅵᅵᅵ/* Network is
> down */
> ᅵ#define LUSTRE_ENETUNREACHᅵᅵᅵᅵᅵᅵᅵᅵ101ᅵᅵᅵᅵᅵᅵᅵᅵ/* Network is
> unreachable */
> ᅵ#define LUSTRE_ENETRESETᅵᅵᅵᅵᅵᅵᅵᅵ102ᅵᅵᅵᅵᅵᅵᅵᅵ/* Network dropped
> connection because of
> -ᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵ ᅵ reset */
> +ᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵ * reset
> +ᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵ */
> ᅵ#define LUSTRE_ECONNABORTEDᅵᅵᅵᅵᅵᅵᅵᅵ103ᅵᅵᅵᅵᅵᅵᅵᅵ/* Software
> caused connection abort */
> ᅵ#define LUSTRE_ECONNRESETᅵᅵᅵᅵᅵᅵᅵᅵ104ᅵᅵᅵᅵᅵᅵᅵᅵ/* Connection reset
> by peer */
> ᅵ#define LUSTRE_ENOBUFSᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵ105ᅵᅵᅵᅵᅵᅵᅵᅵ/* No buffer
> space available */
> ᅵ#define LUSTRE_EISCONNᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵ106ᅵᅵᅵᅵᅵᅵᅵᅵ/* Transport
> endpoint is already
> -ᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵ ᅵ connected */
> +ᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵ * connected
> +ᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵ */
> ᅵ#define LUSTRE_ENOTCONNᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵ107ᅵᅵᅵᅵᅵᅵᅵᅵ/* Transport
> endpoint is not
> -ᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵ ᅵ connected */
> +ᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵ * connected
> +ᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵ */
> ᅵ#define LUSTRE_ESHUTDOWNᅵᅵᅵᅵᅵᅵᅵᅵ108ᅵᅵᅵᅵᅵᅵᅵᅵ/* Cannot send after
> transport endpoint
> -ᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵ ᅵ shutdown */
> +ᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵ * shutdown
> +ᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵ */
> ᅵ#define LUSTRE_ETOOMANYREFSᅵᅵᅵᅵᅵᅵᅵᅵ109ᅵᅵᅵᅵᅵᅵᅵᅵ/* Too many
> references: cannot splice */
> ᅵ#define LUSTRE_ETIMEDOUTᅵᅵᅵᅵᅵᅵᅵᅵ110ᅵᅵᅵᅵᅵᅵᅵᅵ/* Connection timed
> out */
> ᅵ#define LUSTRE_ECONNREFUSEDᅵᅵᅵᅵᅵᅵᅵᅵ111ᅵᅵᅵᅵᅵᅵᅵᅵ/* Connection
> refused */
> @@ -186,7 +200,8 @@
> ᅵ#define LUSTRE_ERESTARTNOHANDᅵᅵᅵᅵᅵᅵᅵᅵ514ᅵᅵᅵᅵᅵᅵᅵᅵ/* restart if
> no handler.. */
> ᅵ#define LUSTRE_ENOIOCTLCMDᅵᅵᅵᅵᅵᅵᅵᅵ515ᅵᅵᅵᅵᅵᅵᅵᅵ/* No ioctl
> command */
> ᅵ#define LUSTRE_ERESTART_RESTARTBLOCK 516 /* restart by calling
> -ᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵ ᅵ ᅵsys_restart_syscall
> */
> +ᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵ ᅵ* sys_restart_syscall
> +ᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵ ᅵ*/
> ᅵ#define LUSTRE_EBADHANDLEᅵᅵᅵᅵᅵᅵᅵᅵ521ᅵᅵᅵᅵᅵᅵᅵᅵ/* Illegal NFS file
> handle */
> ᅵ#define LUSTRE_ENOTSYNCᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵ522ᅵᅵᅵᅵᅵᅵᅵᅵ/* Update
> synchronization mismatch */
> ᅵ#define LUSTRE_EBADCOOKIEᅵᅵᅵᅵᅵᅵᅵᅵ523ᅵᅵᅵᅵᅵᅵᅵᅵ/* Cookie is stale
> */
> @@ -195,9 +210,11 @@
> ᅵ#define LUSTRE_ESERVERFAULTᅵᅵᅵᅵᅵᅵᅵᅵ526ᅵᅵᅵᅵᅵᅵᅵᅵ/* An
> untranslatable error occurred */
> ᅵ#define LUSTRE_EBADTYPEᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵ527ᅵᅵᅵᅵᅵᅵᅵᅵ/* Type not
> supported by server */
> ᅵ#define LUSTRE_EJUKEBOXᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵ528ᅵᅵᅵᅵᅵᅵᅵᅵ/* Request
> initiated, but will not
> -ᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵ ᅵ complete before
> timeout */
> +ᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵ * complete before
> timeout
> +ᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵ */
> ᅵ#define LUSTRE_EIOCBQUEUEDᅵᅵᅵᅵᅵᅵᅵᅵ529ᅵᅵᅵᅵᅵᅵᅵᅵ/* iocb queued,
> will get completion
> -ᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵ ᅵ event */
> +ᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵ * event
> +ᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵᅵ */
> ᅵ#define LUSTRE_EIOCBRETRYᅵᅵᅵᅵᅵᅵᅵᅵ530ᅵᅵᅵᅵᅵᅵᅵᅵ/* iocb queued,
> will trigger a retry */
> ᅵ
> ᅵ/*
> --
> 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 visithttps://groups.google.com/d/msgid/outreachy-kernel/3b0e565d-d94c-40df-bda7-
> 111dc687d5c6%40googlegroups.com.
> For more options, visit https://groups.google.com/d/optout.
>
>
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [RESEND PATCH] staging: lustre: fix incorrect multi-line comment style
2017-09-14 11:37 [RESEND PATCH] staging: lustre: fix incorrect multi-line comment style Aastha Gupta
2017-09-14 12:14 ` aastha.gupta4104
@ 2017-09-18 9:37 ` Greg Kroah-Hartman
2017-09-29 2:58 ` Aastha Gupta
1 sibling, 1 reply; 5+ messages in thread
From: Greg Kroah-Hartman @ 2017-09-18 9:37 UTC (permalink / raw)
To: Aastha Gupta; +Cc: outreachy-kernel, Oleg Drokin, Andreas Dilger, James Simmons
On Thu, Sep 14, 2017 at 05:07:42PM +0530, Aastha Gupta wrote:
> This patch fixes the checkpatch.pl warning:
>
> WARNING: block comments use a trailing */ on a separate line
>
> Signed-off-by: Aastha Gupta <aastha.gupta4104@gmail.com>
> ---
> .../staging/lustre/lustre/include/lustre_errno.h | 51 ++++++++++++++--------
> 1 file changed, 34 insertions(+), 17 deletions(-)
Why was this a "RESEND"? What required that?
Always put that information below the --- line.
Please fix this up and resend it, with that type of information, and a
new "version" of the patch.
thanks,
greg k-h
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [RESEND PATCH] staging: lustre: fix incorrect multi-line comment style
2017-09-18 9:37 ` Greg Kroah-Hartman
@ 2017-09-29 2:58 ` Aastha Gupta
0 siblings, 0 replies; 5+ messages in thread
From: Aastha Gupta @ 2017-09-29 2:58 UTC (permalink / raw)
To: Greg Kroah-Hartman
Cc: outreachy-kernel, Oleg Drokin, Andreas Dilger, James Simmons
On Mon, Sep 18, 2017 at 3:07 PM, Greg Kroah-Hartman
<gregkh@linuxfoundation.org> wrote:
> On Thu, Sep 14, 2017 at 05:07:42PM +0530, Aastha Gupta wrote:
>> This patch fixes the checkpatch.pl warning:
>>
>> WARNING: block comments use a trailing */ on a separate line
>>
>> Signed-off-by: Aastha Gupta <aastha.gupta4104@gmail.com>
>> ---
>> .../staging/lustre/lustre/include/lustre_errno.h | 51 ++++++++++++++--------
>> 1 file changed, 34 insertions(+), 17 deletions(-)
>
> Why was this a "RESEND"? What required that?
>
> Always put that information below the --- line.
>
> Please fix this up and resend it, with that type of information, and a
> new "version" of the patch.
>
> thanks,
>
> greg k-h
This was by mistake. Please ignore this patch.
I will send this patch again properly.
Aastha
^ permalink raw reply [flat|nested] 5+ messages in thread
end of thread, other threads:[~2017-09-29 2:58 UTC | newest]
Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2017-09-14 11:37 [RESEND PATCH] staging: lustre: fix incorrect multi-line comment style Aastha Gupta
2017-09-14 12:14 ` aastha.gupta4104
2017-09-14 12:33 ` [Outreachy kernel] " Julia Lawall
2017-09-18 9:37 ` Greg Kroah-Hartman
2017-09-29 2:58 ` 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.