Skip site navigation (1)Skip section navigation (2)
Date:      Sat, 14 Oct 2006 10:53:13 GMT
From:      Roman Divacky <rdivacky@FreeBSD.org>
To:        Perforce Change Reviews <perforce@FreeBSD.org>
Subject:   PERFORCE change 107880 for review
Message-ID:  <200610141053.k9EArDlD075015@repoman.freebsd.org>

next in thread | raw e-mail | index | archive | help
http://perforce.freebsd.org/chv.cgi?CH=107880

Change 107880 by rdivacky@rdivacky_witten on 2006/10/14 10:52:34

	Return EINVAL for not implemented options.

Affected files ...

.. //depot/projects/linuxolator/src/sys/compat/linux/linux_misc.c#11 edit

Differences ...

==== //depot/projects/linuxolator/src/sys/compat/linux/linux_misc.c#11 (text+ko) ====

@@ -1584,6 +1584,9 @@
 		case LINUX_PR_GET_NAME:
 			error = copyout(&p->p_comm, (void *) args->arg2, MAXCOMLEN+1);
 			break;
+		default:
+			error = EINVAL;
+			break;
 	}
 
 	return (error);



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?200610141053.k9EArDlD075015>