From nobody@FreeBSD.org  Wed Nov  4 23:42:34 2009
Return-Path: <nobody@FreeBSD.org>
Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34])
	by hub.freebsd.org (Postfix) with ESMTP id 0F57E106566B
	for <freebsd-gnats-submit@FreeBSD.org>; Wed,  4 Nov 2009 23:42:34 +0000 (UTC)
	(envelope-from nobody@FreeBSD.org)
Received: from www.freebsd.org (www.freebsd.org [IPv6:2001:4f8:fff6::21])
	by mx1.freebsd.org (Postfix) with ESMTP id F29568FC0A
	for <freebsd-gnats-submit@FreeBSD.org>; Wed,  4 Nov 2009 23:42:33 +0000 (UTC)
Received: from www.freebsd.org (localhost [127.0.0.1])
	by www.freebsd.org (8.14.3/8.14.3) with ESMTP id nA4NgX8A014604
	for <freebsd-gnats-submit@FreeBSD.org>; Wed, 4 Nov 2009 23:42:33 GMT
	(envelope-from nobody@www.freebsd.org)
Received: (from nobody@localhost)
	by www.freebsd.org (8.14.3/8.14.3/Submit) id nA4NgXf7014603;
	Wed, 4 Nov 2009 23:42:33 GMT
	(envelope-from nobody)
Message-Id: <200911042342.nA4NgXf7014603@www.freebsd.org>
Date: Wed, 4 Nov 2009 23:42:33 GMT
From: Alexander Best <alexbestms@math.uni-muenster.de>
To: freebsd-gnats-submit@FreeBSD.org
Subject: [linux] [patch] fix typos in sys/compat/linux/linux_ipc.c
X-Send-Pr-Version: www-3.1
X-GNATS-Notify:

>Number:         140279
>Category:       kern
>Synopsis:       [linux] [patch] fix typos in sys/compat/linux/linux_ipc.c
>Confidential:   no
>Severity:       non-critical
>Priority:       low
>Responsible:    netchild
>State:          closed
>Quarter:        
>Keywords:       
>Date-Required:  
>Class:          change-request
>Submitter-Id:   current-users
>Arrival-Date:   Wed Nov 04 23:50:03 UTC 2009
>Closed-Date:    Thu Nov 12 14:31:23 UTC 2009
>Last-Modified:  Thu Nov 12 14:31:23 UTC 2009
>Originator:     Alexander Best
>Release:        9.0-CURRENT
>Organization:
>Environment:
FreeBSD otaku 9.0-CURRENT FreeBSD 9.0-CURRENT #0 r198850M: Tue Nov  3 18:28:59 CET 2009     root@otaku:/usr/obj/usr/src/sys/ARUNDEL  i386
>Description:
fix some typos in sys/compat/linux/linux_ipc.c

ceers.
alex
>How-To-Repeat:

>Fix:


Patch attached with submission follows:

--- linux_ipc.c.orig	2009-11-05 00:33:54.000000000 +0100
+++ linux_ipc.c	2009-11-05 00:34:43.000000000 +0100
@@ -591,7 +591,7 @@
 		semun.val = args->arg.val;
 		break;
 	default:
-		linux_msg(td, "ipc type %d is not implemented",
+		linux_msg(td, "ipc type=%d is not implemented",
 		  args->cmd & ~LINUX_IPC_64);
 		return EINVAL;
 	}
@@ -872,7 +872,7 @@
     case LINUX_SHM_LOCK:
     case LINUX_SHM_UNLOCK:
     default:
-	linux_msg(td, "ipc typ=%d not implemented", args->cmd & ~LINUX_IPC_64);
+	linux_msg(td, "ipc type=%d not implemented", args->cmd & ~LINUX_IPC_64);
 	return EINVAL;
     }
 }


>Release-Note:
>Audit-Trail:
Responsible-Changed-From-To: freebsd-bugs->freebsd-emulation 
Responsible-Changed-By: linimon 
Responsible-Changed-When: Thu Nov 5 00:53:27 UTC 2009 
Responsible-Changed-Why:  
Over to maintainer(s). 

http://www.freebsd.org/cgi/query-pr.cgi?pr=140279 
Responsible-Changed-From-To: freebsd-emulation->	 netchild 
Responsible-Changed-By: netchild 
Responsible-Changed-When: Thu Nov 5 07:34:45 UTC 2009 
Responsible-Changed-Why:  
I take this PR. 

http://www.freebsd.org/cgi/query-pr.cgi?pr=140279 
State-Changed-From-To: open->patched 
State-Changed-By: netchild 
State-Changed-When: Thu Nov 5 07:38:03 UTC 2009 
State-Changed-Why:  
I committed a similar fix (only changing one line, no need to add the 
equal sign in the other place). 

http://www.freebsd.org/cgi/query-pr.cgi?pr=140279 

From: dfilter@FreeBSD.ORG (dfilter service)
To: bug-followup@FreeBSD.org
Cc:  
Subject: Re: kern/140279: commit references a PR
Date: Thu,  5 Nov 2009 07:37:59 +0000 (UTC)

 Author: netchild
 Date: Thu Nov  5 07:37:48 2009
 New Revision: 198945
 URL: http://svn.freebsd.org/changeset/base/198945
 
 Log:
   Fix typo in kernel message. The fix is based upon the patch in the PR.
   
   PR:		kern/140279
   Submitted by:	Alexander Best <alexbestms@math.uni-muenster.de>
   MFC after:	1 week
 
 Modified:
   head/sys/compat/linux/linux_ipc.c
 
 Modified: head/sys/compat/linux/linux_ipc.c
 ==============================================================================
 --- head/sys/compat/linux/linux_ipc.c	Thu Nov  5 06:31:50 2009	(r198944)
 +++ head/sys/compat/linux/linux_ipc.c	Thu Nov  5 07:37:48 2009	(r198945)
 @@ -872,7 +872,7 @@ linux_shmctl(struct thread *td, struct l
      case LINUX_SHM_LOCK:
      case LINUX_SHM_UNLOCK:
      default:
 -	linux_msg(td, "ipc typ=%d not implemented", args->cmd & ~LINUX_IPC_64);
 +	linux_msg(td, "ipc type %d not implemented", args->cmd & ~LINUX_IPC_64);
  	return EINVAL;
      }
  }
 _______________________________________________
 svn-src-all@freebsd.org mailing list
 http://lists.freebsd.org/mailman/listinfo/svn-src-all
 To unsubscribe, send any mail to "svn-src-all-unsubscribe@freebsd.org"
 

From: dfilter@FreeBSD.ORG (dfilter service)
To: bug-followup@FreeBSD.org
Cc:  
Subject: Re: kern/140279: commit references a PR
Date: Thu, 12 Nov 2009 13:09:54 +0000 (UTC)

 Author: netchild
 Date: Thu Nov 12 13:09:36 2009
 New Revision: 199222
 URL: http://svn.freebsd.org/changeset/base/199222
 
 Log:
   MFC r198945:
     Fix typo in kernel message. The fix is based upon the patch in the PR.
   
     PR:		kern/140279
     Submitted by:	Alexander Best <alexbestms@math.uni-muenster.de>
 
 Modified:
   stable/8/sys/compat/linux/linux_ipc.c
 Directory Properties:
   stable/8/sys/   (props changed)
   stable/8/sys/amd64/include/xen/   (props changed)
   stable/8/sys/cddl/contrib/opensolaris/   (props changed)
   stable/8/sys/contrib/dev/acpica/   (props changed)
   stable/8/sys/contrib/pf/   (props changed)
   stable/8/sys/dev/xen/xenpci/   (props changed)
 
 Modified: stable/8/sys/compat/linux/linux_ipc.c
 ==============================================================================
 --- stable/8/sys/compat/linux/linux_ipc.c	Thu Nov 12 11:54:12 2009	(r199221)
 +++ stable/8/sys/compat/linux/linux_ipc.c	Thu Nov 12 13:09:36 2009	(r199222)
 @@ -872,7 +872,7 @@ linux_shmctl(struct thread *td, struct l
      case LINUX_SHM_LOCK:
      case LINUX_SHM_UNLOCK:
      default:
 -	linux_msg(td, "ipc typ=%d not implemented", args->cmd & ~LINUX_IPC_64);
 +	linux_msg(td, "ipc type %d not implemented", args->cmd & ~LINUX_IPC_64);
  	return EINVAL;
      }
  }
 _______________________________________________
 svn-src-all@freebsd.org mailing list
 http://lists.freebsd.org/mailman/listinfo/svn-src-all
 To unsubscribe, send any mail to "svn-src-all-unsubscribe@freebsd.org"
 

From: dfilter@FreeBSD.ORG (dfilter service)
To: bug-followup@FreeBSD.org
Cc:  
Subject: Re: kern/140279: commit references a PR
Date: Thu, 12 Nov 2009 14:27:19 +0000 (UTC)

 Author: netchild
 Date: Thu Nov 12 14:27:09 2009
 New Revision: 199224
 URL: http://svn.freebsd.org/changeset/base/199224
 
 Log:
   MFC r198945:
     Fix typo in kernel message. The fix is based upon the patch in the PR.
   
     PR:		kern/140279
     Submitted by:	Alexander Best <alexbestms@math.uni-muenster.de>
 
 Modified:
   stable/7/sys/compat/linux/linux_ipc.c
 Directory Properties:
   stable/7/sys/   (props changed)
   stable/7/sys/contrib/pf/   (props changed)
 
 Modified: stable/7/sys/compat/linux/linux_ipc.c
 ==============================================================================
 --- stable/7/sys/compat/linux/linux_ipc.c	Thu Nov 12 14:22:12 2009	(r199223)
 +++ stable/7/sys/compat/linux/linux_ipc.c	Thu Nov 12 14:27:09 2009	(r199224)
 @@ -856,7 +856,7 @@ linux_shmctl(struct thread *td, struct l
      case LINUX_SHM_LOCK:
      case LINUX_SHM_UNLOCK:
      default:
 -	linux_msg(td, "ipc typ=%d not implemented", args->cmd & ~LINUX_IPC_64);
 +	linux_msg(td, "ipc type %d not implemented", args->cmd & ~LINUX_IPC_64);
  	return EINVAL;
      }
  }
 _______________________________________________
 svn-src-all@freebsd.org mailing list
 http://lists.freebsd.org/mailman/listinfo/svn-src-all
 To unsubscribe, send any mail to "svn-src-all-unsubscribe@freebsd.org"
 
State-Changed-From-To: patched->closed 
State-Changed-By: netchild 
State-Changed-When: Thu Nov 12 14:30:50 UTC 2009 
State-Changed-Why:  
Fix MFCed to stable/7 and stable/8. 

http://www.freebsd.org/cgi/query-pr.cgi?pr=140279 
>Unformatted:
