xen-devel.lists.xenproject.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] tmem: typo causes incorrect return on out-of-memory
@ 2010-03-09 15:59 Dan Magenheimer
  0 siblings, 0 replies; only message in thread
From: Dan Magenheimer @ 2010-03-09 15:59 UTC (permalink / raw)
  To: Xen-Devel (xen-devel@lists.xensource.com)

[-- Attachment #1: Type: text/plain, Size: 667 bytes --]

This classic typo in tmem would result in a false positive
report on a tmem "put" operation if a (unfragmented) page
of memory is completely unavailable.

Signed-off-by: Dan Magenheimer <dan.magenheimer@oracle.com>

diff -r b8d2a4134a68 xen/common/tmem.c
--- a/xen/common/tmem.c	Wed Mar 03 17:41:58 2010 +0000
+++ b/xen/common/tmem.c	Tue Mar 09 08:53:12 2010 -0700
@@ -1308,7 +1308,7 @@ copy_uncompressed:
 copy_uncompressed:
     if ( ( pgp->pfp = tmem_page_alloc(pool) ) == NULL )
     {
-        ret == -ENOMEM;
+        ret = -ENOMEM;
         goto delete_and_free;
     }
     /* tmh_copy_from_client properly handles len==0 (TMEM_NEW_PAGE) */

[-- Attachment #2: tmem-typo.patch --]
[-- Type: application/octet-stream, Size: 433 bytes --]

diff -r b8d2a4134a68 xen/common/tmem.c
--- a/xen/common/tmem.c	Wed Mar 03 17:41:58 2010 +0000
+++ b/xen/common/tmem.c	Tue Mar 09 08:53:12 2010 -0700
@@ -1308,7 +1308,7 @@ copy_uncompressed:
 copy_uncompressed:
     if ( ( pgp->pfp = tmem_page_alloc(pool) ) == NULL )
     {
-        ret == -ENOMEM;
+        ret = -ENOMEM;
         goto delete_and_free;
     }
     /* tmh_copy_from_client properly handles len==0 (TMEM_NEW_PAGE) */

[-- Attachment #3: Type: text/plain, Size: 138 bytes --]

_______________________________________________
Xen-devel mailing list
Xen-devel@lists.xensource.com
http://lists.xensource.com/xen-devel

^ permalink raw reply	[flat|nested] only message in thread

only message in thread, other threads:[~2010-03-09 15:59 UTC | newest]

Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2010-03-09 15:59 [PATCH] tmem: typo causes incorrect return on out-of-memory Dan Magenheimer

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).