ARM SMC workaround


git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@1263 c046a42c-6fe2-441c-8c8c-71466251a162
diff --git a/cpu-exec.c b/cpu-exec.c
index fe4bd90..bbd0c2d 100644
--- a/cpu-exec.c
+++ b/cpu-exec.c
@@ -731,7 +731,10 @@
                                     int is_write, sigset_t *old_set,
                                     void *puc)
 {
-    /* XXX: do more */
+    /* XXX: locking issue */
+    if (is_write && page_unprotect(address, pc, puc)) {
+        return 1;
+    }
     return 0;
 }
 #elif defined(TARGET_SPARC)