This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2015-07-27 15:27:05.542 6687 TRACE neutron Traceback (most recent call last): | |
2015-07-27 15:27:05.542 6687 TRACE neutron File "/usr/bin/neutron-server", line 10, in <module> | |
2015-07-27 15:27:05.542 6687 TRACE neutron sys.exit(main()) | |
2015-07-27 15:27:05.542 6687 TRACE neutron File "/usr/lib/python2.7/site-packages/neutron/cmd/eventlet/server/__init__.py", line 17, in main | |
2015-07-27 15:27:05.542 6687 TRACE neutron server.main() | |
2015-07-27 15:27:05.542 6687 TRACE neutron File "/usr/lib/python2.7/site-packages/neutron/server/__init__.py", line 43, in main | |
2015-07-27 15:27:05.542 6687 TRACE neutron neutron_api = service.serve_wsgi(service.NeutronApiService) | |
2015-07-27 15:27:05.542 6687 TRACE neutron File "/usr/lib/python2.7/site-packages/neutron/service.py", line 106, in serve_wsgi | |
2015-07-27 15:27:05.542 6687 TRACE neutron LOG.exception(_LE('Unrecoverable error: please check log ' | |
2015-07-27 15:27:05.542 6687 TRACE neutron File "/usr/lib/python2.7/site-packages/oslo_utils/excutils.py", |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2015-07-28 11:38:03.420 5330 ERROR neutron_lbaas.services.loadbalancer.agent.agent_manager [-] Unable to retrieve ready devices | |
2015-07-28 11:38:03.420 5330 TRACE neutron_lbaas.services.loadbalancer.agent.agent_manager Traceback (most recent call last): | |
2015-07-28 11:38:03.420 5330 TRACE neutron_lbaas.services.loadbalancer.agent.agent_manager File "/usr/lib/python2.7/site-packages/neutron_lbaas/services/loadbalancer/agent/agent_manager.py", line 152, in sync_state | |
2015-07-28 11:38:03.420 5330 TRACE neutron_lbaas.services.loadbalancer.agent.agent_manager ready_instances = set(self.plugin_rpc.get_ready_devices()) | |
2015-07-28 11:38:03.420 5330 TRACE neutron_lbaas.services.loadbalancer.agent.agent_manager File "/usr/lib/python2.7/site-packages/neutron_lbaas/services/loadbalancer/agent/agent_api.py", line 36, in get_ready_devices | |
2015-07-28 11:38:03.420 5330 TRACE neutron_lbaas.services.loadbalancer.agent.agent_manager return cctxt.call(self.context, 'get_ready_devices', host=self.host) | |
2015-07-28 11:38 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#/bin/bash | |
if [ ! -d /tmp/hhvm_test_logs ]; then | |
mkdir /tmp/hhvm_test_logs | |
fi | |
>/tmp/hhvm-tests.logs | |
rm -f /tmp/tests-passed* | |
cd /home/gromero/git/hhvm/ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#/bin/bash | |
# Passed tests go here. Make sure it exists and is clean. | |
if [ ! -d /tmp/hhvm_test_logs ]; then | |
mkdir /tmp/hhvm_test_logs | |
else | |
rm -f /tmp/hhvm_test_logs/* | |
fi | |
# Truncate to zero previous log. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
diff --git a/arch/powerpc/mm/fault.c b/arch/powerpc/mm/fault.c | |
index a67c6d7..6954971 100644 | |
--- a/arch/powerpc/mm/fault.c | |
+++ b/arch/powerpc/mm/fault.c | |
@@ -431,8 +431,10 @@ good_area: | |
*/ | |
fault = handle_mm_fault(mm, vma, address, flags); | |
if (unlikely(fault & (VM_FAULT_RETRY|VM_FAULT_ERROR))) { | |
- if (fault & VM_FAULT_SIGSEGV) | |
+ if (fault & VM_FAULT_SIGSEGV) { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
echo "Downloading gcc source files..." | |
curl https://ftp.gnu.org/gnu/gcc/gcc-5.4.0/gcc-5.4.0.tar.bz2 -O | |
echo "extracting files..." | |
tar xvfj gcc-5.4.0.tar.bz2 | |
echo "Installing dependencies..." | |
yum install gmp-devel mpfr-devel libmpc-devel | |
echo "Configure and install..." |