Re: [PATCH 4/5] cifs.upcall: debug logging for the key description parser

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

 



Acked-by: Igor Mammedov <niallain@xxxxxxxxx>

On Fri, Jan 7, 2011 at 5:11 PM, Jeff Layton <jlayton@xxxxxxxxx> wrote:
> Signed-off-by: Jeff Layton <jlayton@xxxxxxxxx>
> ---
> Âcifs.upcall.c | Â Â8 ++++++++
> Â1 files changed, 8 insertions(+), 0 deletions(-)
>
> diff --git a/cifs.upcall.c b/cifs.upcall.c
> index 12df8cc..3dbcd6e 100644
> --- a/cifs.upcall.c
> +++ b/cifs.upcall.c
> @@ -483,6 +483,7 @@ decode_key_description(const char *desc, struct decoded_args *arg)
> Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Âreturn 1;
> Â Â Â Â Â Â Â Â Â Â Â Â}
> Â Â Â Â Â Â Â Â Â Â Â Âretval |= DKD_HAVE_HOSTNAME;
> + Â Â Â Â Â Â Â Â Â Â Â syslog(LOG_DEBUG, "host=%s", arg->hostname);
> Â Â Â Â Â Â Â Â} else if (!strncmp(tkn, "ip4=", 4) || !strncmp(tkn, "ip6=", 4)) {
> Â Â Â Â Â Â Â Â Â Â Â Âif (pos == NULL)
> Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Âlen = strlen(tkn);
> @@ -497,6 +498,7 @@ decode_key_description(const char *desc, struct decoded_args *arg)
> Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Âreturn 1;
> Â Â Â Â Â Â Â Â Â Â Â Â}
> Â Â Â Â Â Â Â Â Â Â Â Âretval |= DKD_HAVE_IP;
> + Â Â Â Â Â Â Â Â Â Â Â syslog(LOG_DEBUG, "ip=%s", arg->ip);
> Â Â Â Â Â Â Â Â} else if (strncmp(tkn, "user=", 5) == 0) {
> Â Â Â Â Â Â Â Â Â Â Â Âif (pos == NULL)
> Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Âlen = strlen(tkn);
> @@ -511,6 +513,7 @@ decode_key_description(const char *desc, struct decoded_args *arg)
> Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Âreturn 1;
> Â Â Â Â Â Â Â Â Â Â Â Â}
> Â Â Â Â Â Â Â Â Â Â Â Âretval |= DKD_HAVE_USERNAME;
> + Â Â Â Â Â Â Â Â Â Â Â syslog(LOG_DEBUG, "user=%s", arg->username);
> Â Â Â Â Â Â Â Â} else if (strncmp(tkn, "pid=", 4) == 0) {
> Â Â Â Â Â Â Â Â Â Â Â Âerrno = 0;
> Â Â Â Â Â Â Â Â Â Â Â Âarg->pid = strtol(tkn + 4, NULL, 0);
> @@ -519,6 +522,7 @@ decode_key_description(const char *desc, struct decoded_args *arg)
> Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â strerror(errno));
> Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Âreturn 1;
> Â Â Â Â Â Â Â Â Â Â Â Â}
> + Â Â Â Â Â Â Â Â Â Â Â syslog(LOG_DEBUG, "pid=%u", arg->pid);
> Â Â Â Â Â Â Â Â Â Â Â Âretval |= DKD_HAVE_PID;
> Â Â Â Â Â Â Â Â} else if (strncmp(tkn, "sec=", 4) == 0) {
> Â Â Â Â Â Â Â Â Â Â Â Âif (strncmp(tkn + 4, "krb5", 4) == 0) {
> @@ -528,6 +532,7 @@ decode_key_description(const char *desc, struct decoded_args *arg)
> Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Âretval |= DKD_HAVE_SEC;
> Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Âarg->sec = MS_KRB5;
> Â Â Â Â Â Â Â Â Â Â Â Â}
> + Â Â Â Â Â Â Â Â Â Â Â syslog(LOG_DEBUG, "sec=%d", arg->sec);
> Â Â Â Â Â Â Â Â} else if (strncmp(tkn, "uid=", 4) == 0) {
> Â Â Â Â Â Â Â Â Â Â Â Âerrno = 0;
> Â Â Â Â Â Â Â Â Â Â Â Âarg->uid = strtol(tkn + 4, NULL, 16);
> @@ -537,6 +542,7 @@ decode_key_description(const char *desc, struct decoded_args *arg)
> Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Âreturn 1;
> Â Â Â Â Â Â Â Â Â Â Â Â}
> Â Â Â Â Â Â Â Â Â Â Â Âretval |= DKD_HAVE_UID;
> + Â Â Â Â Â Â Â Â Â Â Â syslog(LOG_DEBUG, "uid=%u", arg->uid);
> Â Â Â Â Â Â Â Â} else if (strncmp(tkn, "creduid=", 8) == 0) {
> Â Â Â Â Â Â Â Â Â Â Â Âerrno = 0;
> Â Â Â Â Â Â Â Â Â Â Â Âarg->creduid = strtol(tkn + 8, NULL, 16);
> @@ -546,6 +552,7 @@ decode_key_description(const char *desc, struct decoded_args *arg)
> Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Âreturn 1;
> Â Â Â Â Â Â Â Â Â Â Â Â}
> Â Â Â Â Â Â Â Â Â Â Â Âretval |= DKD_HAVE_CREDUID;
> + Â Â Â Â Â Â Â Â Â Â Â syslog(LOG_DEBUG, "creduid=%u", arg->creduid);
> Â Â Â Â Â Â Â Â} else if (strncmp(tkn, "ver=", 4) == 0) { Â Â Â/* if version */
> Â Â Â Â Â Â Â Â Â Â Â Âerrno = 0;
> Â Â Â Â Â Â Â Â Â Â Â Âarg->ver = strtol(tkn + 4, NULL, 16);
> @@ -555,6 +562,7 @@ decode_key_description(const char *desc, struct decoded_args *arg)
> Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Âreturn 1;
> Â Â Â Â Â Â Â Â Â Â Â Â}
> Â Â Â Â Â Â Â Â Â Â Â Âretval |= DKD_HAVE_VERSION;
> + Â Â Â Â Â Â Â Â Â Â Â syslog(LOG_DEBUG, "ver=%d", arg->ver);
> Â Â Â Â Â Â Â Â}
> Â Â Â Â Â Â Â Âif (pos == NULL)
> Â Â Â Â Â Â Â Â Â Â Â Âbreak;
> --
> 1.7.3.4
>
>
ÿô.nlj·Ÿ®‰­†+%ŠË±é¥Šwÿº{.nlj·¥Š{±ý¶›¡Ü}©ž²ÆzÚj:+v‰¨þø®w¥þŠàÞ¨è&¢)ß«a¶Úÿûz¹ÞúŽŠÝjÿŠwèf



[Linux USB Devel]     [Video for Linux]     [Linux Audio Users]     [Yosemite News]     [Linux Kernel]     [Linux SCSI]

  Powered by Linux