From 1ef039fca3a5238d77329383f47f3379b2f30e00 Mon Sep 17 00:00:00 2001 From: graceyu08 Date: Thu, 22 May 2014 16:18:43 -0700 Subject: [PATCH] add api and db to compass-core Change-Id: Ic5219943f52848b4e8554023bce21fa1588b27a6 --- compass/api/__init__.py | 25 +- compass/api/api.py | 1535 +-------------- compass/api/auth.py | 11 +- compass/api/errors.py | 145 -- compass/api/exception.py | 91 + .../__init__.py => api/restfulAPI.py} | 17 +- compass/api/util.py | 411 ---- compass/api/utils.py | 35 + compass/api/v1/api.py | 248 +++ compass/db/api/__init__.py | 44 + compass/db/api/adapter.py | 158 ++ compass/db/api/cluster.py | 148 ++ compass/db/api/database.py | 273 +++ compass/db/api/user.py | 138 ++ compass/db/api/utils.py | 80 + .../config_validation}/__init__.py | 0 .../db/config_validation/default_validator.py | 129 ++ .../config_validation/extension}/__init__.py | 0 .../config_validation/extension/openstack.py} | 7 +- compass/db/database.py | 130 -- compass/{api/v1/app.py => db/db_api.py} | 4 +- compass/db/exception.py | 46 + compass/db/model.py | 711 ------- compass/db/models.py | 346 ++++ compass/db/validator.py | 91 + compass/tests/__init__.py | 13 - .../tests/actions/deploy/data/global_config | 64 - .../tests/actions/deploy/data/global_config2 | 64 - compass/tests/actions/deploy/data/test1 | 305 --- compass/tests/actions/deploy/data/test2 | 360 ---- compass/tests/actions/deploy/data/test3 | 600 ------ compass/tests/actions/deploy/data/test4 | 267 --- compass/tests/actions/deploy/data/test5 | 340 ---- compass/tests/actions/deploy/data/test6 | 780 -------- compass/tests/actions/deploy/data/test7 | 904 --------- compass/tests/actions/deploy/test_deploy.py | 484 ----- compass/tests/actions/test_poll_switch.py | 126 -- .../update_progress/data/global_config | 62 - .../checkpoint_1/server1.1/sys.log.template | 1726 ----------------- .../server1.1/anaconda.log.template | 61 - .../checkpoint_2/server1.1/sys.log.template | 1726 ----------------- .../server1.1/anaconda.log.template | 286 --- .../server1.1/install.log.template | 141 -- .../checkpoint_3/server1.1/sys.log.template | 1726 ----------------- .../server1.1/anaconda.log.template | 286 --- .../server1.1/chef-client.log.template | 18 - .../server1.1/install.log.template | 212 -- .../checkpoint_4/server1.1/sys.log.template | 1726 ----------------- .../server1.1/anaconda.log.template | 286 --- .../server1.1/chef-client.log.template | 422 ---- .../server1.1/install.log.template | 212 -- .../checkpoint_5/server1.1/sys.log.template | 1726 ----------------- .../actions/update_progress/data/test1/test1 | 182 -- .../checkpoint_1/server1.1/sys.log.template | 1726 ----------------- .../checkpoint_1/server2.1/sys.log.template | 1628 ---------------- .../server1.1/anaconda.log.template | 223 --- .../checkpoint_2/server1.1/sys.log.template | 1726 ----------------- .../server2.1/anaconda.log.template | 222 --- .../checkpoint_2/server2.1/sys.log.template | 1628 ---------------- .../server1.1/anaconda.log.template | 286 --- .../server1.1/install.log.template | 212 -- .../checkpoint_3/server1.1/sys.log.template | 1726 ----------------- .../server2.1/anaconda.log.template | 280 --- .../server2.1/install.log.template | 212 -- .../checkpoint_3/server2.1/sys.log.template | 1628 ---------------- .../server1.1/anaconda.log.template | 286 --- .../server1.1/chef-client.log.template | 168 -- .../server1.1/install.log.template | 212 -- .../checkpoint_4/server1.1/sys.log.template | 1726 ----------------- .../server2.1/anaconda.log.template | 280 --- .../server2.1/chef-client.log.template | 342 ---- .../server2.1/install.log.template | 212 -- .../checkpoint_4/server2.1/sys.log.template | 1628 ---------------- .../server1.1/anaconda.log.template | 286 --- .../server1.1/chef-client.log.template | 422 ---- .../server1.1/install.log.template | 212 -- .../checkpoint_5/server1.1/sys.log.template | 1726 ----------------- .../server2.1/anaconda.log.template | 280 --- .../server2.1/chef-client.log.template | 446 ----- .../server2.1/install.log.template | 212 -- .../checkpoint_5/server2.1/sys.log.template | 1628 ---------------- .../actions/update_progress/data/test2/test2 | 224 --- .../update_progress/test_update_progress.py | 255 --- compass/tests/api/__init__.py | 13 - compass/tests/api/expected_csv/adapter.csv | 2 - compass/tests/api/expected_csv/cluster.csv | 3 - .../tests/api/expected_csv/cluster_host.csv | 7 - compass/tests/api/expected_csv/machine.csv | 12 - compass/tests/api/expected_csv/role.csv | 2 - compass/tests/api/expected_csv/switch.csv | 5 - .../tests/api/expected_csv/switch_config.csv | 3 - compass/tests/api/test_api.py | 1575 +-------------- compass/tests/api/test_auth.py | 126 -- compass/tests/apicommand/run_server.py | 297 --- compass/tests/apicommand/test_csvdeploy.py | 171 -- .../tests/apicommand/test_files/adapter.csv | 2 - .../tests/apicommand/test_files/cluster.csv | 4 - .../apicommand/test_files/cluster_host.csv | 12 - .../tests/apicommand/test_files/machine.csv | 12 - compass/tests/apicommand/test_files/role.csv | 2 - .../tests/apicommand/test_files/switch.csv | 5 - .../apicommand/test_files/switch_config.csv | 3 - compass/tests/config_management/__init__.py | 13 - .../config_management/installers/__init__.py | 0 .../installers/test_os_installer.py | 88 - .../installers/test_package_installer.py | 89 - .../config_management/providers/__init__.py | 13 - .../providers/test_config_provider.py | 89 - compass/tests/config_management/utils/1 | 300 --- .../tests/config_management/utils/__init__.py | 13 - .../utils/test_config_filter.py | 168 -- .../utils/test_config_merger.py | 578 ------ .../utils/test_config_merger_callbacks.py | 767 -------- .../utils/test_config_reference.py | 353 ---- .../utils/test_config_translator.py | 568 ------ .../utils/test_config_translator_callbacks.py | 103 - compass/tests/db/test_database.py | 64 - compass/tests/db/test_model.py | 522 ----- compass/tests/hdsdiscovery/__init__.py | 13 - compass/tests/hdsdiscovery/test_base.py | 129 -- .../tests/hdsdiscovery/test_hdsdiscovery.py | 245 --- compass/tests/hdsdiscovery/test_utils.py | 105 - compass/tests/log_analyzor/data/config | 97 - .../log_analyzor/test_adapter_matcher.py | 629 ------ .../tests/log_analyzor/test_file_matcher.py | 436 ----- .../tests/log_analyzor/test_line_matcher.py | 229 --- compass/tests/utils/__init__.py | 13 - compass/tests/utils/test_util.py | 188 -- 128 files changed, 1917 insertions(+), 48121 deletions(-) delete mode 100644 compass/api/errors.py create mode 100644 compass/api/exception.py rename compass/{tests/apicommand/__init__.py => api/restfulAPI.py} (53%) delete mode 100644 compass/api/util.py create mode 100644 compass/api/utils.py create mode 100644 compass/api/v1/api.py create mode 100644 compass/db/api/__init__.py create mode 100644 compass/db/api/adapter.py create mode 100644 compass/db/api/cluster.py create mode 100644 compass/db/api/database.py create mode 100644 compass/db/api/user.py create mode 100644 compass/db/api/utils.py rename compass/{tests/actions/deploy => db/config_validation}/__init__.py (100%) create mode 100644 compass/db/config_validation/default_validator.py rename compass/{tests/actions/update_progress => db/config_validation/extension}/__init__.py (100%) rename compass/{tests/actions/__init__.py => db/config_validation/extension/openstack.py} (78%) delete mode 100644 compass/db/database.py rename compass/{api/v1/app.py => db/db_api.py} (85%) create mode 100644 compass/db/exception.py delete mode 100644 compass/db/model.py create mode 100644 compass/db/models.py create mode 100644 compass/db/validator.py delete mode 100644 compass/tests/actions/deploy/data/global_config delete mode 100644 compass/tests/actions/deploy/data/global_config2 delete mode 100644 compass/tests/actions/deploy/data/test1 delete mode 100644 compass/tests/actions/deploy/data/test2 delete mode 100644 compass/tests/actions/deploy/data/test3 delete mode 100644 compass/tests/actions/deploy/data/test4 delete mode 100644 compass/tests/actions/deploy/data/test5 delete mode 100644 compass/tests/actions/deploy/data/test6 delete mode 100644 compass/tests/actions/deploy/data/test7 delete mode 100755 compass/tests/actions/deploy/test_deploy.py delete mode 100755 compass/tests/actions/test_poll_switch.py delete mode 100644 compass/tests/actions/update_progress/data/global_config delete mode 100644 compass/tests/actions/update_progress/data/test1/anamon/checkpoint_1/server1.1/sys.log.template delete mode 100644 compass/tests/actions/update_progress/data/test1/anamon/checkpoint_2/server1.1/anaconda.log.template delete mode 100644 compass/tests/actions/update_progress/data/test1/anamon/checkpoint_2/server1.1/sys.log.template delete mode 100644 compass/tests/actions/update_progress/data/test1/anamon/checkpoint_3/server1.1/anaconda.log.template delete mode 100644 compass/tests/actions/update_progress/data/test1/anamon/checkpoint_3/server1.1/install.log.template delete mode 100644 compass/tests/actions/update_progress/data/test1/anamon/checkpoint_3/server1.1/sys.log.template delete mode 100644 compass/tests/actions/update_progress/data/test1/anamon/checkpoint_4/server1.1/anaconda.log.template delete mode 100644 compass/tests/actions/update_progress/data/test1/anamon/checkpoint_4/server1.1/chef-client.log.template delete mode 100644 compass/tests/actions/update_progress/data/test1/anamon/checkpoint_4/server1.1/install.log.template delete mode 100644 compass/tests/actions/update_progress/data/test1/anamon/checkpoint_4/server1.1/sys.log.template delete mode 100644 compass/tests/actions/update_progress/data/test1/anamon/checkpoint_5/server1.1/anaconda.log.template delete mode 100644 compass/tests/actions/update_progress/data/test1/anamon/checkpoint_5/server1.1/chef-client.log.template delete mode 100644 compass/tests/actions/update_progress/data/test1/anamon/checkpoint_5/server1.1/install.log.template delete mode 100644 compass/tests/actions/update_progress/data/test1/anamon/checkpoint_5/server1.1/sys.log.template delete mode 100644 compass/tests/actions/update_progress/data/test1/test1 delete mode 100644 compass/tests/actions/update_progress/data/test2/anamon/checkpoint_1/server1.1/sys.log.template delete mode 100644 compass/tests/actions/update_progress/data/test2/anamon/checkpoint_1/server2.1/sys.log.template delete mode 100644 compass/tests/actions/update_progress/data/test2/anamon/checkpoint_2/server1.1/anaconda.log.template delete mode 100644 compass/tests/actions/update_progress/data/test2/anamon/checkpoint_2/server1.1/sys.log.template delete mode 100644 compass/tests/actions/update_progress/data/test2/anamon/checkpoint_2/server2.1/anaconda.log.template delete mode 100644 compass/tests/actions/update_progress/data/test2/anamon/checkpoint_2/server2.1/sys.log.template delete mode 100644 compass/tests/actions/update_progress/data/test2/anamon/checkpoint_3/server1.1/anaconda.log.template delete mode 100644 compass/tests/actions/update_progress/data/test2/anamon/checkpoint_3/server1.1/install.log.template delete mode 100644 compass/tests/actions/update_progress/data/test2/anamon/checkpoint_3/server1.1/sys.log.template delete mode 100644 compass/tests/actions/update_progress/data/test2/anamon/checkpoint_3/server2.1/anaconda.log.template delete mode 100644 compass/tests/actions/update_progress/data/test2/anamon/checkpoint_3/server2.1/install.log.template delete mode 100644 compass/tests/actions/update_progress/data/test2/anamon/checkpoint_3/server2.1/sys.log.template delete mode 100644 compass/tests/actions/update_progress/data/test2/anamon/checkpoint_4/server1.1/anaconda.log.template delete mode 100644 compass/tests/actions/update_progress/data/test2/anamon/checkpoint_4/server1.1/chef-client.log.template delete mode 100644 compass/tests/actions/update_progress/data/test2/anamon/checkpoint_4/server1.1/install.log.template delete mode 100644 compass/tests/actions/update_progress/data/test2/anamon/checkpoint_4/server1.1/sys.log.template delete mode 100644 compass/tests/actions/update_progress/data/test2/anamon/checkpoint_4/server2.1/anaconda.log.template delete mode 100644 compass/tests/actions/update_progress/data/test2/anamon/checkpoint_4/server2.1/chef-client.log.template delete mode 100644 compass/tests/actions/update_progress/data/test2/anamon/checkpoint_4/server2.1/install.log.template delete mode 100644 compass/tests/actions/update_progress/data/test2/anamon/checkpoint_4/server2.1/sys.log.template delete mode 100644 compass/tests/actions/update_progress/data/test2/anamon/checkpoint_5/server1.1/anaconda.log.template delete mode 100644 compass/tests/actions/update_progress/data/test2/anamon/checkpoint_5/server1.1/chef-client.log.template delete mode 100644 compass/tests/actions/update_progress/data/test2/anamon/checkpoint_5/server1.1/install.log.template delete mode 100644 compass/tests/actions/update_progress/data/test2/anamon/checkpoint_5/server1.1/sys.log.template delete mode 100644 compass/tests/actions/update_progress/data/test2/anamon/checkpoint_5/server2.1/anaconda.log.template delete mode 100644 compass/tests/actions/update_progress/data/test2/anamon/checkpoint_5/server2.1/chef-client.log.template delete mode 100644 compass/tests/actions/update_progress/data/test2/anamon/checkpoint_5/server2.1/install.log.template delete mode 100644 compass/tests/actions/update_progress/data/test2/anamon/checkpoint_5/server2.1/sys.log.template delete mode 100644 compass/tests/actions/update_progress/data/test2/test2 delete mode 100644 compass/tests/actions/update_progress/test_update_progress.py delete mode 100644 compass/tests/api/expected_csv/adapter.csv delete mode 100644 compass/tests/api/expected_csv/cluster.csv delete mode 100644 compass/tests/api/expected_csv/cluster_host.csv delete mode 100644 compass/tests/api/expected_csv/machine.csv delete mode 100644 compass/tests/api/expected_csv/role.csv delete mode 100644 compass/tests/api/expected_csv/switch.csv delete mode 100644 compass/tests/api/expected_csv/switch_config.csv mode change 100755 => 100644 compass/tests/api/test_api.py delete mode 100644 compass/tests/api/test_auth.py delete mode 100755 compass/tests/apicommand/run_server.py delete mode 100755 compass/tests/apicommand/test_csvdeploy.py delete mode 100644 compass/tests/apicommand/test_files/adapter.csv delete mode 100644 compass/tests/apicommand/test_files/cluster.csv delete mode 100644 compass/tests/apicommand/test_files/cluster_host.csv delete mode 100644 compass/tests/apicommand/test_files/machine.csv delete mode 100644 compass/tests/apicommand/test_files/role.csv delete mode 100644 compass/tests/apicommand/test_files/switch.csv delete mode 100644 compass/tests/apicommand/test_files/switch_config.csv delete mode 100644 compass/tests/config_management/__init__.py delete mode 100644 compass/tests/config_management/installers/__init__.py delete mode 100755 compass/tests/config_management/installers/test_os_installer.py delete mode 100755 compass/tests/config_management/installers/test_package_installer.py delete mode 100644 compass/tests/config_management/providers/__init__.py delete mode 100755 compass/tests/config_management/providers/test_config_provider.py delete mode 100644 compass/tests/config_management/utils/1 delete mode 100644 compass/tests/config_management/utils/__init__.py delete mode 100755 compass/tests/config_management/utils/test_config_filter.py delete mode 100755 compass/tests/config_management/utils/test_config_merger.py delete mode 100755 compass/tests/config_management/utils/test_config_merger_callbacks.py delete mode 100755 compass/tests/config_management/utils/test_config_reference.py delete mode 100755 compass/tests/config_management/utils/test_config_translator.py delete mode 100644 compass/tests/config_management/utils/test_config_translator_callbacks.py delete mode 100644 compass/tests/db/test_database.py delete mode 100644 compass/tests/db/test_model.py delete mode 100644 compass/tests/hdsdiscovery/__init__.py delete mode 100755 compass/tests/hdsdiscovery/test_base.py delete mode 100755 compass/tests/hdsdiscovery/test_hdsdiscovery.py delete mode 100755 compass/tests/hdsdiscovery/test_utils.py delete mode 100644 compass/tests/log_analyzor/data/config delete mode 100755 compass/tests/log_analyzor/test_adapter_matcher.py delete mode 100755 compass/tests/log_analyzor/test_file_matcher.py delete mode 100755 compass/tests/log_analyzor/test_line_matcher.py delete mode 100644 compass/tests/utils/__init__.py delete mode 100755 compass/tests/utils/test_util.py diff --git a/compass/api/__init__.py b/compass/api/__init__.py index 019ef671..d53e79aa 100644 --- a/compass/api/__init__.py +++ b/compass/api/__init__.py @@ -4,7 +4,7 @@ # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # -# http://www.apache.org/licenses/LICENSE-2.0 +# http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, @@ -12,33 +12,24 @@ # See the License for the specific language governing permissions and # limitations under the License. -__all__ = ['Flask', 'SQLAlchemy', 'compass_api'] import datetime -import jinja2 -import os - -from compass.db.model import SECRET_KEY - from flask.ext.login import LoginManager from flask import Flask + +from compass.api.v1.api import v1_app +from compass.db.models import SECRET_KEY + + app = Flask(__name__) app.debug = True +app.register_blueprint(v1_app, url_prefix='/v1.0') + app.secret_key = SECRET_KEY app.config['AUTH_HEADER_NAME'] = 'X-Auth-Token' app.config['REMEMBER_COOKIE_DURATION'] = datetime.timedelta(minutes=30) -templates_dir = "/".join((os.path.dirname( - os.path.dirname(os.path.realpath(__file__))), - 'templates/')) - -template_loader = jinja2.ChoiceLoader([ - app.jinja_loader, - jinja2.FileSystemLoader(templates_dir), -]) - -app.jinja_loader = template_loader login_manager = LoginManager() login_manager.login_view = 'login' diff --git a/compass/api/api.py b/compass/api/api.py index 8d0755f0..738cd4b4 100644 --- a/compass/api/api.py +++ b/compass/api/api.py @@ -4,7 +4,7 @@ # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # -# http://www.apache.org/licenses/LICENSE-2.0 +# http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, @@ -14,55 +14,31 @@ """Define all the RestfulAPI entry points.""" import logging -import netaddr -import re import simplejson as json import sys from flask import flash from flask import redirect -from flask import render_template from flask import request from flask import session as app_session from flask import url_for -from flask.ext.restful import Resource -from sqlalchemy.sql import and_ -from sqlalchemy.sql import or_ - from compass.api import app from compass.api import auth -from compass.api import errors +from compass.api import exception from compass.api import login_manager -from compass.api import util -from compass.db import database -from compass.db.model import Adapter -from compass.db.model import Cluster as ModelCluster -from compass.db.model import ClusterHost as ModelClusterHost -from compass.db.model import ClusterState -from compass.db.model import HostState -from compass.db.model import Machine as ModelMachine -from compass.db.model import Role -from compass.db.model import Switch as ModelSwitch -from compass.db.model import SwitchConfig -from compass.db.model import User as ModelUser -from compass.tasks.client import celery +from compass.api import utils from flask.ext.login import current_user from flask.ext.login import login_required from flask.ext.login import login_user from flask.ext.login import logout_user -from flask.ext.wtf import Form -from wtforms.fields import BooleanField -from wtforms.fields import PasswordField -from wtforms.fields import TextField -from wtforms.validators import Required - @login_manager.header_loader def load_user_from_token(token): """Return a user object from token.""" + duration = app.config['REMEMBER_COOKIE_DURATION'] max_age = 0 if sys.version_info > (2, 6): @@ -71,30 +47,19 @@ def load_user_from_token(token): max_age = (duration.microseconds + ( duration.seconds + duration.days * 24 * 3600) * 1e6) / 1e6 - user_id = auth.get_user_info_from_token(token, max_age) + user_id = auth.get_user_id_from_token(token, max_age) if not user_id: logging.info("No user can be found from the token!") return None - user = User.query.filter_by(id=user_id) + user = _get_user(user_id) return user @login_manager.user_loader def load_user(user_id): """Load user from user ID.""" - return ModelUser.query.get(user_id) - - -@app.route('/restricted') -def restricted(): - return render_template('restricted.jinja') - - -@app.errorhandler(403) -def forbidden_403(exception): - """Unathenticated user page.""" - return render_template('forbidden.jinja'), 403 + return _get_user(user_id) @app.route('/logout') @@ -103,13 +68,13 @@ def logout(): """User logout.""" logout_user() flash('You have logged out!') - return redirect(url_for('index')) + return redirect('/login.html') @app.route('/') def index(): """Index page.""" - return render_template('index.jinja') + return redirect('/login.html') @app.route('/token', methods=['POST']) @@ -122,1482 +87,58 @@ def get_token(): user = auth.authenticate_user(email, password) if not user: error_msg = "User cannot be found or email and password do not match!" - return errors.handle_invalid_user_info( - errors.ObjectDoesNotExist(error_msg) + return exception.handle_invalid_user( + exception.Unauthorized(error_msg) ) token = user.get_auth_token() login_user(user) - return util.make_json_response( + return utils.make_json_response( 200, {"status": "OK", "token": token} ) -class LoginForm(Form): - """Define login form.""" - email = TextField('Email', validators=[Required()]) - password = PasswordField('Password', validators=[Required()]) - remember = BooleanField('Remember me', default=False) - - @app.route("/login", methods=['GET', 'POST']) def login(): """User login.""" if current_user.is_authenticated(): return redirect(url_for('index')) else: - form = LoginForm() - if form.validate_on_submit(): - email = form.email.data - password = form.password.data + if request.method == 'POST': + if request.form['email'] and request.form['password']: + email = request.form['email'] + password = request.form['password'] - user = auth.authenticate_user(email, password) - if not user: - flash('Wrong username or password!', 'error') - return render_template('login.jinja', form=form) + user = auth.authenticate_user(email, password) + if not user: + flash('Wrong username or password!', 'error') + next_url = '/login.html?next=' % request.args.get('next') + return redirect(next_url) - if login_user(user, remember=form.remember.data): - # Enable session expiration if user didnot choose to be - # remembered. - app_session.permanent = not form.remember.data - flash('Logged in successfully!', 'success') - return redirect(request.args.get('next') or url_for('index')) - else: - flash('This username is disabled!', 'error') - - return render_template('login.jinja', form=form) - - -class SwitchList(Resource): - """Query details of switches and poll swithes.""" - - ENDPOINT = "/switches" - - SWITCHIP = 'switchIp' - SWITCHIPNETWORK = 'switchIpNetwork' - LIMIT = 'limit' - - def get(self): - """List details of all switches filtered by some conditions. - - .. note:: - switchIp and swtichIpNetwork cannot be combined to use. - - :param switchIp: switch IP address - :param switchIpNetwork: switch IP network - :param limit: the number of records excepted to return - """ - qkeys = request.args.keys() - logging.info('SwitchList query strings : %s', qkeys) - switch_list = [] - - with database.session() as session: - switches = [] - switch_ips = request.args.getlist(self.SWITCHIP) - switch_ip_network = request.args.get(self.SWITCHIPNETWORK, - type=str) - limit = request.args.get(self.LIMIT, 0, type=int) - - if switch_ips and switch_ip_network: - error_msg = ("switchIp and switchIpNetwork cannot be " - "specified at the same time!") - return errors.handle_invalid_usage( - errors.UserInvalidUsage(error_msg)) - - if limit < 0: - error_msg = "limit cannot be less than 1!" - return errors.handle_invalid_usage( - errors.UserInvalidUsage(error_msg)) - - if switch_ips: - for ip_addr in switch_ips: - ip_addr = str(ip_addr) - if not util.is_valid_ip(ip_addr): - error_msg = 'SwitchIp format is incorrect!' - return errors.handle_invalid_usage( - errors.UserInvalidUsage(error_msg)) - - switch = session.query(ModelSwitch).filter_by(ip=ip_addr)\ - .first() - if switch: - switches.append(switch) - logging.info('[SwitchList][get] ip %s', ip_addr) - - if limit: - switches = switches[:limit] - - elif switch_ip_network: - # query all switches which belong to the same network - if not util.is_valid_ipnetowrk(switch_ip_network): - error_msg = 'SwitchIpNetwork format is incorrect!' - return errors.handle_invalid_usage( - errors.UserInvalidUsage(error_msg)) - - def get_queried_ip_prefix(network, prefix): - """Get Ip prefex as pattern used to query switches. - - .. note:: - Switches' Ip addresses need to match this pattern. - """ - count = int(prefix / 8) - if count == 0: - count = 1 - return network.rsplit('.', count)[0] + '.' - - ip_network = netaddr.IPNetwork(switch_ip_network) - ip_filter = get_queried_ip_prefix(str(ip_network.network), - ip_network.prefixlen) - - logging.info('ip_filter is %s', ip_filter) - result_set = [] - if limit: - result_set = session.query(ModelSwitch).filter( - ModelSwitch.ip.startswith(ip_filter) - ).limit(limit).all() + if login_user(user, remember=request.form['remember']): + # Enable session expiration if user didnot choose to be + # remembered. + app_session.permanent = not request.form['remember'] + flash('Logged in successfully!', 'success') + return redirect( + request.args.get('next') or url_for('index')) else: - result_set = session.query(ModelSwitch).filter( - ModelSwitch.ip.startswith(ip_filter) - ).all() + flash('This username is disabled!', 'error') - for switch in result_set: - ip_addr = str(switch.ip) - if netaddr.IPAddress(ip_addr) in ip_network: - switches.append(switch) - logging.info('[SwitchList][get] ip %s', ip_addr) + return redirect('/login.html') - if not switch_ips and not switch_ip_network: - if limit: - switches = session.query(ModelSwitch).limit(limit).all() - else: - switches = session.query(ModelSwitch).all() - for switch in switches: - switch_res = {} - switch_res['id'] = switch.id - switch_res['ip'] = switch.ip - switch_res['state'] = switch.state - if switch.state != 'under_monitoring': - switch_res['err_msg'] = switch.err_msg - switch_res['link'] = { - 'rel': 'self', - 'href': '/'.join((self.ENDPOINT, str(switch.id)))} - switch_list.append(switch_res) - logging.info('get switch list: %s', switch_list) +def _get_user(user_id): - return util.make_json_response( - 200, {"status": 'OK', - "switches": switch_list}) + from compass.db.models import User + try: + user = User.query.filter_by(id=user_id).first() + return user - def post(self): - """Insert switch IP and the credential to db. - - .. note:: - Invoke a task to poll switch at the same time. - - :param ip: switch IP address - :param credential: a dict for accessing the switch - """ - ip_addr = None - credential = None - logging.debug('post switch request from curl is %s', request.data) - json_data = json.loads(request.data) - ip_addr = json_data['switch']['ip'] - credential = json_data['switch']['credential'] - - logging.info('post switch ip_addr=%s credential=%s(%s)', - ip_addr, credential, type(credential)) - - if not util.is_valid_ip(ip_addr): - error_msg = "Invalid IP address format!" - return errors.handle_invalid_usage( - errors.UserInvalidUsage(error_msg) - ) - - new_switch = {} - with database.session() as session: - switch = session.query(ModelSwitch).filter_by(ip=ip_addr).first() - logging.info('switch for ip %s: %s', ip_addr, switch) - - if switch: - error_msg = "IP address '%s' already exists" % ip_addr - value = {'failedSwitch': switch.id} - return errors.handle_duplicate_object( - errors.ObjectDuplicateError(error_msg), value - ) - - switch = ModelSwitch(ip=ip_addr) - switch.credential = credential - session.add(switch) - session.flush() - new_switch['id'] = switch.id - new_switch['ip'] = switch.ip - new_switch['state'] = switch.state - link = {'rel': 'self', - 'href': '/'.join((self.ENDPOINT, str(switch.id)))} - new_switch['link'] = link - - celery.send_task("compass.tasks.pollswitch", (ip_addr,)) - logging.info('new switch added: %s', new_switch) - return util.make_json_response( - 202, - { - "status": "accepted", - "switch": new_switch - } - ) - - -class Switch(Resource): - """Get and update a single switch information.""" - ENDPOINT = "/switches" - - def get(self, switch_id): - """Lists details of the specified switch. - - :param switch_id: switch ID in db - """ - switch_res = {} - with database.session() as session: - switch = session.query(ModelSwitch).filter_by(id=switch_id).first() - logging.info('switch for id %s: %s', switch_id, switch) - - if not switch: - error_msg = "Cannot find the switch with id=%s" % switch_id - logging.debug("[/switches/{id}]error_msg: %s", error_msg) - - return errors.handle_not_exist( - errors.ObjectDoesNotExist(error_msg) - ) - - switch_res['id'] = switch.id - switch_res['ip'] = switch.ip - switch_res['state'] = switch.state - if switch.state != 'under_monitoring': - switch_res['err_msg'] = switch.err_msg - switch_res['link'] = { - 'rel': 'self', - 'href': '/'.join((self.ENDPOINT, str(switch.id)))} - - logging.info('switch info for %s: %s', switch_id, switch_res) - return util.make_json_response( - 200, {"status": "OK", - "switch": switch_res}) - - def put(self, switch_id): - """Update an existing switch information. - - :param switch_id: the unqiue identifier of the switch - """ - switch = None - credential = None - logging.debug('PUT a switch request from curl is %s', request.data) - - ip_addr = None - switch_res = {} - - with database.session() as session: - switch = session.query(ModelSwitch).filter_by(id=switch_id).first() - logging.info('PUT switch id is %s: %s', switch_id, switch) - - if not switch: - # No switch is found. - error_msg = 'Cannot update a non-existing switch!' - return errors.handle_not_exist( - errors.ObjectDoesNotExist(error_msg)) - - json_data = json.loads(request.data) - credential = json_data['switch']['credential'] - - logging.info('PUT switch id=%s credential=%s(%s)', - switch_id, credential, type(credential)) - - switch.credential = credential - switch.state = "repolling" - switch.err_msg = "" - - ip_addr = switch.ip - switch_res['id'] = switch.id - switch_res['ip'] = switch.ip - switch_res['state'] = switch.state - link = {'rel': 'self', - 'href': '/'.join((self.ENDPOINT, str(switch.id)))} - switch_res['link'] = link - - celery.send_task("compass.tasks.pollswitch", (ip_addr,)) - return util.make_json_response( - 202, {"status": "accepted", - "switch": switch_res}) - - def delete(self, switch_id): - """No implementation. - - :param switch_id: the unique identifier of the switch. - """ - err_msg = "The delete API for switch has not been implemented!" - return errors.handle_not_allowed_method( - errors.MethodNotAllowed(err_msg)) - - -class MachineList(Resource): - """Query machines by filters.""" - ENDPOINT = "/machines" - - SWITCHID = 'switchId' - MAC = 'mac' - VLANID = 'vladId' - PORT = 'port' - LIMIT = 'limit' - - def get(self): - """Lists details of machines. - - .. note:: - The machines are filtered by some conditions as - the following. According to SwitchConfig, machines - with some ports will be filtered. - - :param switchId: the unique identifier of the switch - :param mac: the MAC address - :param vladId: the vlan ID - :param port: the port number - :param limit: the number of records expected to return - """ - switch_id = request.args.get(self.SWITCHID, type=int) - mac = request.args.get(self.MAC, None, type=str) - vlan = request.args.get(self.VLANID, type=int) - port = request.args.get(self.PORT, None) - limit = request.args.get(self.LIMIT, 0, type=int) - - with database.session() as session: - machines = [] - filter_clause = [] - if switch_id: - filter_clause.append('switch_id=%d' % switch_id) - - if mac: - filter_clause.append('mac=%s' % mac) - - if vlan: - filter_clause.append('vlan=%d' % vlan) - - if port: - filter_clause.append('port=%s' % port) - - if limit < 0: - error_msg = 'Limit cannot be less than 0!' - return errors.UserInvalidUsage( - errors.UserInvalidUsage(error_msg) - ) - # TODO(grace): support query filtered port - if filter_clause: - machines = session.query(ModelMachine)\ - .filter(and_(*filter_clause)).all() - else: - machines = session.query(ModelMachine).all() - - filter_list = session.query(ModelSwitch.id, - SwitchConfig.filter_port)\ - .filter(ModelSwitch.ip == SwitchConfig.ip)\ - .all() - ports_by_id = {} - for entry in filter_list: - s_id = entry[0] - f_port = entry[1] - ports_by_id.setdefault(s_id, []).append(f_port) - - machines_result = [] - for machine in machines: - if limit and len(machines_result) == limit: - break - - if machine.switch_id in ports_by_id: - if machine.port in ports_by_id[machine.switch_id]: - continue - - machine_res = {} - machine_res['switch_ip'] = ( - None if not machine.switch else machine.switch.ip) - machine_res['id'] = machine.id - machine_res['mac'] = machine.mac - machine_res['port'] = machine.port - machine_res['vlan'] = machine.vlan - machine_res['link'] = { - 'rel': 'self', - 'href': '/'.join((self.ENDPOINT, str(machine.id)))} - machines_result.append(machine_res) - - logging.info('machines for %s: %s', switch_id, machines_result) - return util.make_json_response( - 200, {"status": "OK", - "machines": machines_result}) - - -class Machine(Resource): - """List details of the machine with specific machine id.""" - ENDPOINT = '/machines' - - def get(self, machine_id): - """Lists details of the specified machine. - - :param machine_id: the unique identifier of the machine - """ - machine_res = {} - with database.session() as session: - machine = session.query(ModelMachine)\ - .filter_by(id=machine_id)\ - .first() - logging.info('machine for id %s: %s', machine_id, machine) - - if not machine: - error_msg = "Cannot find the machine with id=%s" % machine_id - logging.debug("[/api/machines/{id}]error_msg: %s", error_msg) - - return errors.handle_not_exist( - errors.ObjectDoesNotExist(error_msg)) - - machine_res['id'] = machine.id - machine_res['mac'] = machine.mac - machine_res['port'] = machine.port - machine_res['vlan'] = machine.vlan - if machine.switch: - machine_res['switch_ip'] = machine.switch.ip - else: - machine_res['switch_ip'] = None - machine_res['link'] = { - 'rel': 'self', - 'href': '/'.join((self.ENDPOINT, str(machine.id)))} - - logging.info('machine info for %s: %s', machine_id, machine_res) - return util.make_json_response( - 200, {"status": "OK", - "machine": machine_res}) - - -class Cluster(Resource): - """Creates cluster and lists cluster details. - - .. note:: - Update and list the cluster's configuration information. - """ - ENDPOINT = '/clusters' - SECURITY = 'security' - NETWORKING = 'networking' - PARTITION = 'partition' - - def get(self, cluster_id, resource=None): - """Lists details of the resource specified cluster. - - :param cluster_id: the unique identifier of the cluster - :param resource: the resource name(security, networking, partition) - """ - cluster_resp = {} - resp = {} - with database.session() as session: - cluster = session.query( - ModelCluster).filter_by(id=cluster_id).first() - logging.debug('cluster is %s', cluster) - if not cluster: - error_msg = 'Cannot found the cluster with id=%s' % cluster_id - return errors.handle_not_exist( - errors.ObjectDoesNotExist(error_msg) - ) - - if resource: - # List resource details - if resource == self.SECURITY: - cluster_resp = cluster.security - elif resource == self.NETWORKING: - cluster_resp = cluster.networking - elif resource == self.PARTITION: - cluster_resp = cluster.partition - else: - error_msg = "Invalid resource name '%s'!" % resource - return errors.handle_invalid_usage( - errors.UserInvalidUsage(error_msg) - ) - resp = {"status": "OK", - resource: cluster_resp} - - else: - cluster_resp['clusterName'] = cluster.name - cluster_resp['link'] = { - 'rel': 'self', - 'href': '/'.join((self.ENDPOINT, str(cluster.id))) - } - cluster_resp['id'] = cluster.id - resp = {"status": "OK", - "cluster": cluster_resp} - - logging.info('get cluster result is %s', cluster_resp) - return util.make_json_response(200, resp) - - def post(self): - """Create a new cluster. - - :param name: the name of the cluster - :param adapter_id: the unique identifier of the adapter - """ - request_data = None - request_data = json.loads(request.data) - cluster_name = request_data['cluster']['name'] - adapter_id = request_data['cluster']['adapter_id'] - cluster_resp = {} - cluster = None - - with database.session() as session: - cluster = session.query(ModelCluster).filter_by(name=cluster_name)\ - .first() - if cluster: - error_msg = "Cluster name '%s' already exists!" % cluster.name - return errors.handle_duplicate_object( - errors.ObjectDuplicateError(error_msg)) - - adapter = session.query(Adapter).filter_by(id=adapter_id).first() - if not adapter: - error_msg = "No adapter id=%s can be found!" % adapter_id - return errors.handle_not_exist( - errors.ObjectDoesNotExist(error_msg)) - - # Create a new cluster in database - cluster = ModelCluster(name=cluster_name, adapter_id=adapter_id) - session.add(cluster) - session.flush() - cluster_resp['id'] = cluster.id - cluster_resp['name'] = cluster.name - cluster_resp['adapter_id'] = cluster.adapter_id - cluster_resp['link'] = { - 'rel': 'self', - 'href': '/'.join((self.ENDPOINT, str(cluster.id))) - } - - return util.make_json_response( - 200, - { - "status": "OK", - "cluster": cluster_resp - } - ) - - def put(self, cluster_id, resource): - """Update the resource information of the specified cluster. - - :param cluster_id: the unique identifier of the cluster - :param resource: resource name(security, networking, partition) - """ - resources = { - self.SECURITY: {'validator': 'is_valid_security_config', - 'column': 'security_config'}, - self.NETWORKING: {'validator': 'is_valid_networking_config', - 'column': 'networking_config'}, - self.PARTITION: {'validator': 'is_valid_partition_config', - 'column': 'partition_config'}, - } - request_data = json.loads(request.data) - with database.session() as session: - cluster = session.query( - ModelCluster).filter_by(id=cluster_id).first() - - if not cluster: - error_msg = 'You are trying to update a non-existing cluster!' - return errors.handle_not_exist( - errors.ObjectDoesNotExist(error_msg) - ) - - if resource not in request_data: - error_msg = "Invalid resource name '%s'" % resource - return errors.handle_invalid_usage( - errors.UserInvalidUsage(error_msg) - ) - - value = request_data[resource] - - if resource not in resources.keys(): - error_msg = "Invalid resource name '%s'" % resource - return errors.handle_invalid_usage( - errors.UserInvalidUsage(error_msg) - ) - - validate_func = resources[resource]['validator'] - module = globals()['util'] - is_valid, msg = getattr(module, validate_func)(value) - - if is_valid: - column = resources[resource]['column'] - session.query(ModelCluster).filter_by(id=cluster_id).update( - {column: json.dumps(value)} - ) - else: - return errors.handle_mssing_input( - errors.InputMissingError(msg) - ) - - return util.make_json_response( - 200, {"status": "OK"} - ) - - -@app.route("/clusters", methods=['GET']) -def list_clusters(): - """Lists the details of all clusters.""" - endpoint = '/clusters' - state = request.args.get('state', None, type=str) - results = [] - with database.session() as session: - clusters = [] - if not state: - # Get all clusters - clusters = session.query(ModelCluster).all() - - elif state == 'undeployed': - clusters_state = session.query(ClusterState.id).all() - cluster_ids = [t[0] for t in clusters_state] - # The cluster has not been deployed yet - clusters = session.query(ModelCluster)\ - .filter(~ModelCluster.id.in_(cluster_ids))\ - .all() - elif state == 'installing': - # The deployment of this cluster is in progress. - clusters = session.query( - ModelCluster - ).filter( - ModelCluster.id == ClusterState.id, - or_( - ClusterState.state == 'INSTALLING', - ClusterState.state == 'UNINITIALIZED' - ) - ).all() - elif state == 'failed': - # The deployment of this cluster is failed. - clusters = session.query( - ModelCluster - ).filter( - ModelCluster.id == ClusterState.id, - ClusterState.state == 'ERROR' - ).all() - elif state == 'successful': - clusters = session.query( - ModelCluster - ).filter( - ModelCluster.id == ClusterState.id, - ClusterState.state == 'READY' - ).all() - - if clusters: - for cluster in clusters: - cluster_res = {} - cluster_res['clusterName'] = cluster.name - cluster_res['id'] = cluster.id - cluster_res['link'] = { - "href": "/".join((endpoint, str(cluster.id))), - "rel": "self"} - results.append(cluster_res) - - return util.make_json_response( - 200, { - "status": "OK", - "clusters": results - } - ) - - -@app.route("/clusters//action", methods=['POST']) -def execute_cluster_action(cluster_id): - """Execute the specified action to the cluster. - - :param cluster_id: the unique identifier of the cluster - :param addHosts: the action of adding excepted hosts to the cluster - :param removeHosts: the action of removing expected hosts from the cluster - :param replaceAllHosts: the action of removing all existing hosts in - cluster and add new hosts - :param deploy: the action of starting to deploy - """ - def _add_hosts(cluster_id, hosts): - """Add cluster host(s) to the cluster by cluster_id.""" - - cluseter_hosts = [] - available_machines = [] - failed_machines = [] - with database.session() as session: - failed_machines = [] - for host in hosts: - # Check if machine exists - machine = session.query( - ModelMachine).filter_by(id=host).first() - if not machine: - error_msg = "Machine id=%s does not exist!" % host - return errors.handle_not_exist( - errors.ObjectDoesNotExist(error_msg) - ) - - clusterhost = session.query( - ModelClusterHost).filter_by(machine_id=host).first() - if clusterhost: - # Machine is already used - failed_machines.append(clusterhost.machine_id) - continue - - # Add the available machine to available_machines list - available_machines.append(machine) - - if failed_machines: - value = { - 'failedMachines': failed_machines - } - error_msg = "Conflict!" - return errors.handle_duplicate_object( - errors.ObjectDuplicateError(error_msg), value - ) - - for machine, host in zip(available_machines, hosts): - host = ModelClusterHost(cluster_id=cluster_id, - machine_id=machine.id) - session.add(host) - session.flush() - cluster_res = {} - cluster_res['id'] = host.id - cluster_res['machine_id'] = machine.id - cluseter_hosts.append(cluster_res) - - logging.info('cluster_hosts result is %s', cluseter_hosts) - return util.make_json_response( - 200, { - "status": "OK", - "cluster_hosts": cluseter_hosts - } - ) - - def _remove_hosts(cluster_id, hosts): - """Remove existing cluster host from the cluster.""" - - removed_hosts = [] - with database.session() as session: - failed_hosts = [] - for host_id in hosts: - host = session.query( - ModelClusterHost - ).filter_by( - id=host_id, cluster_id=cluster_id - ).first() - - if not host: - failed_hosts.append(host_id) - continue - - host_res = { - "id": host_id, - "machine_id": host.machine_id - } - removed_hosts.append(host_res) - - if failed_hosts: - error_msg = 'Hosts do not exist! Or not in this cluster' - value = { - "failedHosts": failed_hosts - } - return errors.handle_not_exist( - errors.ObjectDoesNotExist(error_msg), value - ) - - filter_clause = [] - for host_id in hosts: - filter_clause.append('id=%s' % host_id) - - # Delete the requested hosts from database - session.query(ModelClusterHost).filter( - or_(*filter_clause) - ).delete(synchronize_session='fetch') - - return util.make_json_response( - 200, { - "status": "OK", - "cluster_hosts": removed_hosts - } - ) - - def _replace_all_hosts(cluster_id, hosts): - """Remove all existing hosts from the cluster and add new ones.""" - - with database.session() as session: - # Delete all existing hosts of the cluster - session.query(ModelClusterHost).filter_by( - cluster_id=cluster_id).delete() - - return _add_hosts(cluster_id, hosts) - - def _deploy(cluster_id, hosts): - """Deploy the cluster.""" - - deploy_hosts_info = [] - deploy_cluster_info = {} - with database.session() as session: - if not hosts: - # Deploy all hosts in the cluster - cluster_hosts = session.query( - ModelClusterHost).filter_by(cluster_id=cluster_id).all() - - if not cluster_hosts: - # No host belongs to this cluster - error_msg = ( - 'Cannot find any host in cluster id=%s' % cluster_id) - return errors.handle_not_exist( - errors.ObjectDoesNotExist(error_msg)) - - for host in cluster_hosts: - if not host.mutable: - # The host is not allowed to modified - error_msg = ( - 'The host id=%s is not allowed to be ' - 'modified now!' - ) % host.id - return errors.UserInvalidUsage( - errors.UserInvalidUsage(error_msg)) - - hosts.append(host.id) - - deploy_cluster_info["cluster_id"] = int(cluster_id) - deploy_cluster_info["url"] = '/clusters/%s/progress' % cluster_id - - for host_id in hosts: - host_info = {} - progress_url = '/cluster_hosts/%s/progress' % host_id - host_info["host_id"] = host_id - host_info["url"] = progress_url - deploy_hosts_info.append(host_info) - - # Lock cluster hosts and its cluster - session.query(ModelClusterHost).filter_by( - cluster_id=cluster_id).update({'mutable': False}) - session.query(ModelCluster).filter_by( - id=cluster_id).update({'mutable': False}) - - # Clean up cluster_state and host_state table - session.query(ClusterState).filter_by(id=cluster_id).delete() - for host_id in hosts: - session.query(HostState).filter_by(id=host_id).delete() - - celery.send_task("compass.tasks.deploy", ({cluster_id: hosts},)) - return util.make_json_response( - 202, { - "status": "accepted", - "deployment": { - "cluster": deploy_cluster_info, - "hosts": deploy_hosts_info - } - } - ) - - request_data = None - with database.session() as session: - cluster = session.query(ModelCluster).filter_by(id=cluster_id).first() - if not cluster: - error_msg = 'Cluster id=%s does not exist!' - return errors.handle_not_exist( - errors.ObjectDoesNotExist(error_msg) - ) - - if not cluster.mutable: - # The cluster cannot be deploy again - error_msg = ("The cluster id=%s is not allowed to " - "modified or deployed!" % cluster_id) - return errors.handle_invalid_usage( - errors.UserInvalidUsage(error_msg)) - - request_data = json.loads(request.data) - action = request_data.keys()[0] - value = request_data.get(action) - - if 'addHosts' in request_data: - return _add_hosts(cluster_id, value) - - elif 'removeHosts' in request_data: - return _remove_hosts(cluster_id, value) - - elif 'deploy' in request_data: - return _deploy(cluster_id, value) - - elif 'replaceAllHosts' in request_data: - return _replace_all_hosts(cluster_id, value) - else: - return errors.handle_invalid_usage( - errors.UserInvalidUsage('%s action is not support!' % action) - ) - - -class ClusterHostConfig(Resource): - """Lists and update/delete cluster host configurations.""" - - def get(self, host_id): - """Lists configuration details of the specified cluster host. - - :param host_id: the unique identifier of the host - """ - config_res = {} - with database.session() as session: - host = session.query( - ModelClusterHost).filter_by(id=host_id).first() - if not host: - # The host does not exist. - error_msg = "The host id=%s does not exist!" % host_id - return errors.handle_not_exist( - errors.ObjectDoesNotExist(error_msg)) - - config_res = host.config - - logging.debug("The config of host id=%s is %s", host_id, config_res) - return util.make_json_response( - 200, {"status": "OK", - "config": config_res}) - - def put(self, host_id): - """Update configuration of the specified cluster host. - - :param host_id: the unique identifier of the host - """ - with database.session() as session: - host = session.query( - ModelClusterHost).filter_by(id=host_id).first() - if not host: - error_msg = "The host id=%s does not exist!" % host_id - return errors.handle_not_exist( - errors.ObjectDoesNotExist(error_msg)) - - logging.debug("cluster config put request.data %s", request.data) - request_data = json.loads(request.data) - if not request_data: - error_msg = "request data is %s" % request_data - return errors.handle_mssing_input( - errors.InputMissingError(error_msg)) - - if not host.mutable: - error_msg = "The host 'id=%s' is not mutable!" % host_id - return errors.handle_invalid_usage( - errors.UserInvalidUsage(error_msg)) - - #Valid if keywords in request_data are all correct - if 'hostname' in request_data: - hostname = request_data['hostname'] - cluster_id = host.cluster_id - test_host = session.query(ModelClusterHost)\ - .filter_by(cluster_id=cluster_id, - hostname=hostname).first() - if test_host and test_host.id != int(host_id): - error_msg = ("Hostname '%s' has been used for other host " - "in the cluster, cluster ID is %s! %s %s" - % (hostname, cluster_id, - test_host.id, host_id)) - - return errors.handle_invalid_usage( - errors.UserInvalidUsage(error_msg)) - - session.query(ModelClusterHost).filter_by(id=host_id)\ - .update({"hostname": request_data['hostname']}) - del request_data['hostname'] - - try: - util.valid_host_config(request_data) - except errors.UserInvalidUsage as exc: - return errors.handle_invalid_usage(exc) - - host.config = request_data - - return util.make_json_response( - 200, {"status": "OK"}) - - def delete(self, host_id, subkey): - """Delete one attribute of the specified cluster host. - - :param host_id: the unique identifier of the host - :param subkey: the attribute name in configuration - """ - available_delete_keys = ['roles'] - with database.session() as session: - host = session.query( - ModelClusterHost).filter_by(id=host_id).first() - if not host: - error_msg = "The host id=%s does not exist!" % host_id - return errors.handle_not_exist( - errors.ObjectDoesNotExist(error_msg)) - - if subkey not in available_delete_keys: - error_msg = "subkey %s is not supported!" % subkey - return errors.handle_invalid_usage( - errors.UserInvalidUsage(error_msg)) - - if not host.mutable: - error_msg = "The host 'id=%s' is not mutable!" % host_id - return errors.handle_invalid_usage( - errors.UserInvalidUsage(error_msg)) - - config = json.loads(host.config_data) - # Set the subkey's value to "" - util.update_dict_value(subkey, config) - host.config = config - - return util.make_json_response( - 200, {"status": "OK"}) - - -class ClusterHost(Resource): - """List details of the cluster host by host id.""" - ENDPOINT = '/clusterhosts' - - def get(self, host_id): - """Lists details of the specified cluster host. - - :param host_id: the unique identifier of the host - """ - host_res = {} - with database.session() as session: - host = session.query( - ModelClusterHost).filter_by(id=host_id).first() - if not host: - error_msg = "The host id=%s does not exist!" % host_id - return errors.handle_not_exist( - errors.ObjectDoesNotExist(error_msg)) - - host_res['hostname'] = host.hostname - host_res['mutable'] = host.mutable - host_res['id'] = host.id - host_res['switch_ip'] = host.machine.switch.ip - host_res['link'] = { - "href": '/'.join((self.ENDPOINT, str(host.id))), - "rel": "self" - } - return util.make_json_response( - 200, {"status": "OK", - "cluster_host": host_res}) - - -@app.route("/clusterhosts", methods=['GET']) -def list_clusterhosts(): - """Lists details of all cluster hosts. - - .. note:: - the cluster hosts are optionally filtered by some conditions. - - :param hostname: the name of the host - :param clstername: the name of the cluster - """ - endpoint = '/clusterhosts' - key_hostname = 'hostname' - key_clustername = 'clustername' - - hosts_list = [] - hostname = request.args.get(key_hostname, None, type=str) - clustername = request.args.get(key_clustername, None, type=str) - with database.session() as session: - hosts = None - if hostname and clustername: - hosts = session.query( - ModelClusterHost - ).join(ModelCluster).filter( - ModelClusterHost.hostname == hostname, - ModelCluster.name == clustername - ).all() - - elif hostname: - hosts = session.query( - ModelClusterHost).filter_by(hostname=hostname).all() - elif clustername: - cluster = session.query( - ModelCluster).filter_by(name=clustername).first() - if cluster: - hosts = cluster.hosts - - else: - hosts = session.query(ModelClusterHost).all() - - if hosts: - for host in hosts: - host_res = {} - host_res['hostname'] = host.hostname - host_res['mutable'] = host.mutable - host_res['id'] = host.id - host_res['switch_ip'] = host.machine.switch.ip - host_res['link'] = { - "href": '/'.join((endpoint, str(host.id))), - "rel": "self"} - hosts_list.append(host_res) - - return util.make_json_response( - 200, {"status": "OK", - "cluster_hosts": hosts_list}) - - -@app.route("/adapters/", methods=['GET']) -def list_adapter(adapter_id): - """Lists details of the specified adapter. - - :param adapter_id: the unique identifier of the adapter - """ - endpoint = '/adapters' - adapter_res = {} - with database.session() as session: - adapter = session.query(Adapter).filter_by(id=adapter_id).first() - - if not adapter: - error_msg = "Adapter id=%s does not exist!" % adapter_id - return errors.handle_not_exist( - errors.ObjectDoesNotExist(error_msg)) - - adapter_res['name'] = adapter.name - adapter_res['os'] = adapter.os - adapter_res['id'] = adapter.id - adapter_res['target_system'] = adapter.target_system, - adapter_res['link'] = { - "href": "/".join((endpoint, str(adapter.id))), - "rel": "self"} - - return util.make_json_response( - 200, {"status": "OK", - "adapter": adapter_res}) - - -@app.route("/adapters//roles", methods=['GET']) -def list_adapter_roles(adapter_id): - """Lists details of all roles of the specified adapter - - :param adapter_id: the unique identifier of the adapter - """ - roles_list = [] - with database.session() as session: - adapter_q = session.query( - Adapter).filter_by(id=adapter_id).first() - if not adapter_q: - error_msg = "Adapter id=%s does not exist!" % adapter_id - return errors.handle_not_exist( - errors.ObjectDoesNotExist(error_msg) - ) - - roles = session.query( - Role, Adapter - ).filter( - Adapter.id == adapter_id, - Adapter.target_system == Role.target_system - ).all() - - for role, _ in roles: - role_res = {} - role_res['name'] = role.name - role_res['description'] = role.description - roles_list.append(role_res) - - return util.make_json_response( - 200, { - "status": "OK", - "roles": roles_list - } - ) - - -@app.route("/adapters", methods=['GET']) -def list_adapters(): - """Lists details of the adapters, optionally filtered by adapter name. - - :param name: the name of the adapter - """ - endpoint = '/adapters' - name = request.args.get('name', type=str) - adapter_list = [] - adapter_res = {} - with database.session() as session: - adapters = [] - if name: - adapters = session.query(Adapter).filter_by(name=name).all() - else: - adapters = session.query(Adapter).all() - - for adapter in adapters: - adapter_res = {} - adapter_res['name'] = adapter.name - adapter_res['os'] = adapter.os - adapter_res['target_system'] = adapter.target_system - adapter_res['id'] = adapter.id - adapter_res['link'] = { - "href": "/".join((endpoint, str(adapter.id))), - "rel": "self"} - adapter_list.append(adapter_res) - - return util.make_json_response( - 200, {"status": "OK", - "adapters": adapter_list}) - - -class HostInstallingProgress(Resource): - """Get host installing progress information.""" - - def get(self, host_id): - """Lists progress details of a specific cluster host. - - :param host_id: the unique identifier of the host - """ - progress_result = {} - with database.session() as session: - host = session.query(ModelClusterHost).filter_by(id=host_id)\ - .first() - if not host: - error_msg = "The host id=%s does not exist!" % host_id - return errors.handle_not_exist( - errors.ObjectDoesNotExist(error_msg)) - - if not host.state: - progress_result = { - 'id': host_id, - 'state': 'UNINITIALIZED', - 'percentage': 0, - 'message': "Waiting..............", - 'severity': "INFO", - } - else: - progress_result['id'] = host_id - progress_result['state'] = host.state.state - progress_result['percentage'] = host.state.progress - progress_result['message'] = host.state.message - progress_result['severity'] = host.state.severity - - logging.info('progress result for %s: %s', host_id, progress_result) - return util.make_json_response( - 200, {"status": "OK", - "progress": progress_result}) - - -class ClusterInstallingProgress(Resource): - """Get cluster installing progress information.""" - - def get(self, cluster_id): - """Lists progress details of a specific cluster. - - :param cluster_id: the unique identifier of the cluster - """ - progress_result = {} - with database.session() as session: - cluster = session.query(ModelCluster).filter_by(id=cluster_id)\ - .first() - if not cluster: - error_msg = "The cluster id=%s does not exist!" % cluster_id - return errors.handle_not_exist( - errors.ObjectDoesNotExist(error_msg)) - - if not cluster.state: - progress_result = { - 'id': cluster_id, - 'state': 'UNINITIALIZED', - 'percentage': 0, - 'message': "Waiting..............", - 'severity': "INFO" - } - else: - progress_result['id'] = cluster_id - progress_result['state'] = cluster.state.state - progress_result['percentage'] = cluster.state.progress - progress_result['message'] = cluster.state.message - progress_result['severity'] = cluster.state.severity - - logging.info('progress result for cluster %s: %s', - cluster_id, progress_result) - return util.make_json_response( - 200, {"status": "OK", - "progress": progress_result}) - - -class DashboardLinks(Resource): - """Lists dashboard links.""" - ENDPOINT = "/dashboardlinks/" - - def get(self): - """Return a list of dashboard links. - """ - cluster_id = request.args.get('cluster_id', None) - logging.info('get cluster links with cluster_id=%s', cluster_id) - links = {} - with database.session() as session: - hosts = session.query( - ModelClusterHost - ).filter_by(cluster_id=cluster_id).all() - if not hosts: - error_msg = "Cannot find hosts in cluster id=%s" % cluster_id - return errors.handle_not_exist( - errors.ObjectDoesNotExist(error_msg) - ) - - for host in hosts: - config = host.config - if ( - 'has_dashboard_roles' in config and - config['has_dashboard_roles'] - ): - ip_addr = config.get( - 'networking', {} - ).get( - 'interfaces', {} - ).get( - 'management', {} - ).get( - 'ip', '' - ) - roles = config.get('roles', []) - for role in roles: - links[role] = 'http://%s' % ip_addr - - return util.make_json_response( - 200, { - "status": "OK", - "dashboardlinks": links - } - ) - - -class User(Resource): - ENDPOINT = '/users' - - @login_required - def get(self, user_id): - """Get user's information for specified ID.""" - resp = {} - with database.session() as session: - user = session.query(ModelUser).filter_by(id=user_id).first() - - if not user: - error_msg = "Cannot find the User which id is %s" % user_id - return errors.handle_not_exist( - errors.ObjectDoesNotExist(error_msg) - ) - resp['id'] = user_id - resp['email'] = user.email - resp['link'] = { - "href": "/".join((self.ENDPOINT, str(user_id))), - "rel": "self" - } - - return util.make_json_response( - 200, {"status": "OK", - "user": resp} - ) - - -TABLES = { - 'switch_config': { - 'name': SwitchConfig, - 'columns': ['id', 'ip', 'filter_port'] - }, - 'switch': { - 'name': ModelSwitch, - 'columns': ['id', 'ip', 'credential_data'] - }, - 'machine': { - 'name': ModelMachine, - 'columns': ['id', 'mac', 'port', 'vlan', 'switch_id'] - }, - 'cluster': { - 'name': ModelCluster, - 'columns': [ - 'id', 'name', 'security_config', - 'networking_config', 'partition_config', - 'adapter_id', 'state' - ] - }, - 'cluster_host': { - 'name': ModelClusterHost, - 'columns': [ - 'id', 'cluster_id', 'hostname', 'machine_id', - 'config_data', 'state' - ] - }, - 'adapter': { - 'name': Adapter, - 'columns': ['id', 'name', 'os', 'target_system'] - }, - 'role': { - 'name': Role, - 'columns': ['id', 'name', 'target_system', 'description'] - } -} - - -@login_required -@app.route("/export/", methods=['GET']) -def export_csv(tname): - """export to csv file.""" - if tname not in TABLES: - error_msg = "Table '%s' is not supported to export or wrong table name" - return util.handle_invalid_usage( - errors.UserInvalidUsage(error_msg) - ) - - table = TABLES[tname]['name'] - colnames = TABLES[tname]['columns'] - t_headers = [] - rows = [] - with database.session() as session: - records = session.query(table).all() - # Get headers of the table - if not records: - t_headers = colnames - else: - first_record = records[0] - for col in colnames: - value = getattr(first_record, col) - if re.match(r'^{(.*:.*[,]*)}', str(value)): - # value is dict - util.get_headers_from_dict(t_headers, col, - json.loads(value)) - else: - t_headers.append(col) - - # Get columns values - for entry in records: - tmp = [] - for col in colnames: - value = None - if col == 'state': - value = entry.state.state if entry.state else None - tmp.append(value) - continue - else: - value = str(json.loads(json.dumps(getattr(entry, col)))) - - if re.match(r'^{(.*:.*[,]*)}', value): - util.get_col_val_from_dict(tmp, json.loads(value)) - else: - tmp.append(value) - - rows.append(tmp) - - if tname == 'cluster_host': - t_headers.append('deploy_action') - for row in rows: - row.append(0) - - result = ','.join(str(x) for x in t_headers) - - for row in rows: - row = ','.join(str(x) for x in row) - result = '\n'.join((result, row)) - - return util.make_csv_response(200, result, tname) - - -util.add_resource(SwitchList, '/switches') -util.add_resource(Switch, '/switches/') -util.add_resource(MachineList, '/machines') -util.add_resource(Machine, '/machines/') -util.add_resource(Cluster, - '/clusters', - '/clusters/', - '/clusters//') -util.add_resource(ClusterHostConfig, - '/clusterhosts//config', - '/clusterhosts//config/') -util.add_resource(ClusterHost, '/clusterhosts/') -util.add_resource(HostInstallingProgress, - '/clusterhosts//progress') -util.add_resource(ClusterInstallingProgress, - '/clusters//progress') -util.add_resource(DashboardLinks, '/dashboardlinks') -util.add_resource(User, - '/users', - '/users/') + except Exception as err: + logging.info('Failed to get user from id %d! Error: %s', (id, err)) + return None if __name__ == '__main__': diff --git a/compass/api/auth.py b/compass/api/auth.py index b0afd052..80b1a776 100644 --- a/compass/api/auth.py +++ b/compass/api/auth.py @@ -4,7 +4,7 @@ # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # -# http://www.apache.org/licenses/LICENSE-2.0 +# http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, @@ -15,11 +15,10 @@ from itsdangerous import BadData import logging -from compass.db.model import login_serializer -from compass.db.model import User +from compass.db.models import login_serializer -def get_user_info_from_token(token, max_age): +def get_user_id_from_token(token, max_age): """Return user's ID and hased password from token.""" user_id = None @@ -34,14 +33,14 @@ def get_user_info_from_token(token, max_age): def authenticate_user(email, pwd): - """Authenticate a use by email and password.""" + """Authenticate a user by email and password.""" + from compass.db.models import User try: user = User.query.filter_by(email=email).first() if user and user.valid_password(pwd): return user except Exception as err: - print '[auth][authenticate_user]Exception: %s' % err logging.info('[auth][authenticate_user]Exception: %s', err) return None diff --git a/compass/api/errors.py b/compass/api/errors.py deleted file mode 100644 index 2b114431..00000000 --- a/compass/api/errors.py +++ /dev/null @@ -1,145 +0,0 @@ -# Copyright 2014 Huawei Technologies Co. Ltd -# -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. - -"""Exception and its handler.""" -from compass.api import app -from compass.api import util - - -class ObjectDoesNotExist(Exception): - """Define the exception for referring non-existing object.""" - def __init__(self, message): - super(ObjectDoesNotExist, self).__init__(message) - self.message = message - - def __str__(self): - return repr(self.message) - - -class UserInvalidUsage(Exception): - """Define the exception for fault usage of users.""" - def __init__(self, message): - super(UserInvalidUsage, self).__init__(message) - self.message = message - - def __str__(self): - return repr(self.message) - - -class ObjectDuplicateError(Exception): - """Define the duplicated object exception.""" - def __init__(self, message): - super(ObjectDuplicateError, self).__init__(message) - self.message = message - - def __str__(self): - return repr(self.message) - - -class InputMissingError(Exception): - """Define the insufficient input exception.""" - def __init__(self, message): - super(InputMissingError, self).__init__(message) - self.message = message - - def __str__(self): - return repr(self.message) - - -class MethodNotAllowed(Exception): - """Define the exception which invalid method is called.""" - def __init__(self, message): - super(MethodNotAllowed, self).__init__(message) - self.message = message - - def __str__(self): - return repr(self.message) - - -class InvalidUserInfo(Exception): - """Define the Exception for incorrect user information.""" - def __init__(self, message): - super(InvalidUserInfo, self).__init__(message) - self.message = message - - -@app.errorhandler(ObjectDoesNotExist) -def handle_not_exist(error, failed_objs=None): - """Handler of ObjectDoesNotExist Exception.""" - - message = {'status': 'Not Found', - 'message': error.message} - - if failed_objs and isinstance(failed_objs, dict): - message.update(failed_objs) - - return util.make_json_response(404, message) - - -@app.errorhandler(UserInvalidUsage) -def handle_invalid_usage(error): - """Handler of UserInvalidUsage Exception.""" - - message = { - 'status': 'Invalid parameters', - 'message': error.message - } - - return util.make_json_response(400, message) - - -@app.errorhandler(InputMissingError) -def handle_mssing_input(error): - """Handler of InputMissingError Exception.""" - - message = { - 'status': 'Insufficient data', - 'message': error.message - } - - return util.make_json_response(400, message) - - -@app.errorhandler(ObjectDuplicateError) -def handle_duplicate_object(error, failed_objs=None): - """Handler of ObjectDuplicateError Exception.""" - - message = { - 'status': 'Conflict Error', - 'message': error.message - } - - if failed_objs and isinstance(failed_objs, dict): - message.update(failed_objs) - - return util.make_json_response(409, message) - - -@app.errorhandler(MethodNotAllowed) -def handle_not_allowed_method(error): - """Handler of MethodNotAllowed Exception.""" - - message = { - "status": "Method Not Allowed", - "message": "The method is not allowed to use" - } - return util.make_json_response(405, message) - - -@app.errorhandler(InvalidUserInfo) -def handle_invalid_user_info(error): - """Handler of InvalidUserInfo Exception.""" - message = {"status": "Incorrect User Info", - "message": error.message} - return util.make_json_response(401, message) diff --git a/compass/api/exception.py b/compass/api/exception.py new file mode 100644 index 00000000..25fb0a39 --- /dev/null +++ b/compass/api/exception.py @@ -0,0 +1,91 @@ +# Copyright 2014 Huawei Technologies Co. Ltd +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. + +"""Exceptions for RESTful API.""" + + +class ItemNotFound(Exception): + """Define the exception for referring non-existing object.""" + def __init__(self, message): + super(ItemNotFound, self).__init__(message) + self.message = message + + def __str__(self): + return repr(self.message) + + +class BadRequest(Exception): + """Define the exception for invalid/missing parameters or a user makes + a request in invalid state and cannot be processed at this moment. + """ + def __init__(self, message): + super(BadRequest, self).__init__(message) + self.message = message + + def __str__(self): + return repr(self.message) + + +class Unauthorized(Exception): + """Define the exception for invalid user login.""" + def __init__(self, message): + super(Unauthorized, self).__init__(message) + self.message = message + + def __str__(self): + return repr(self.message) + + +class UserDisabled(Exception): + """Define the exception that a disabled user tries to do some operations. + """ + def __init__(self, message): + super(UserDisabled, self).__init__(message) + self.message = message + + def __str__(self): + return repr(self.message) + + +class Forbidden(Exception): + """Define the exception that a user tries to do some operations without + valid permissions. + """ + def __init__(self, message): + super(Forbidden, self).__init__(message) + self.message = message + + def __str__(self): + return repr(self.message) + + +class BadMethod(Exception): + """Define the exception for invoking unsupprted or unimplemented methods. + """ + def __init__(self, message): + super(BadMethod, self).__init__(message) + self.message = message + + def __str__(self): + return repr(self.message) + + +class ConflictObject(Exception): + """Define the exception for creating an existing object.""" + def __init__(self, message): + super(ConflictObject, self).__init__(message) + self.message = message + + def __str__(self): + return repr(self.message) diff --git a/compass/tests/apicommand/__init__.py b/compass/api/restfulAPI.py similarity index 53% rename from compass/tests/apicommand/__init__.py rename to compass/api/restfulAPI.py index 4ee55a4c..c6a2682c 100644 --- a/compass/tests/apicommand/__init__.py +++ b/compass/api/restfulAPI.py @@ -4,10 +4,25 @@ # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # -# http://www.apache.org/licenses/LICENSE-2.0 +# http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. + +"""Custom flask restful.""" +from flask.ext.restful import Api + + +class CompassApi(Api): + """Override the Flask_Restful error routing for 500.""" + + def error_router(self, original_handler, e): + code = getattr(e, 'code', 500) + # for HTTP 500 errors return custom response + if code >= 500: + return original_handler(e) + + return super(CompassApi, self).error_router(original_handler, e) diff --git a/compass/api/util.py b/compass/api/util.py deleted file mode 100644 index a9abed29..00000000 --- a/compass/api/util.py +++ /dev/null @@ -1,411 +0,0 @@ -# Copyright 2014 Huawei Technologies Co. Ltd -# -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. - -"""Utils for API usage.""" -import netaddr -import re - -from flask.ext.restful import Api -from flask import make_response -import simplejson as json - -from compass.api import app - - -API = Api(app) - - -def make_json_response(status_code, data): - """Wrap json format to the reponse object.""" - - result = json.dumps(data, indent=4) + '\r\n' - resp = make_response(result, status_code) - resp.headers['Content-type'] = 'application/json' - return resp - - -def make_csv_response(status_code, csv_data, fname): - """Wrap CSV format to the reponse object.""" - fname = '.'.join((fname, 'csv')) - resp = make_response(csv_data, status_code) - resp.mimetype = 'text/csv' - resp.headers['Content-Disposition'] = 'attachment; filename="%s"' % fname - return resp - - -def add_resource(*args, **kwargs): - """Add resource.""" - API.add_resource(*args, **kwargs) - - -def is_valid_ip(ip_address): - """Valid the format of an Ip address.""" - if not ip_address: - return False - - regex = (r'^(([0-9]|[1-9][0-9]|1[0-9]{2}|[1-2][0-4][0-9]|25[0-5])\.)' - r'{3}' - r'([0-9]|[1-9][0-9]|1[0-9]{2}|[1-2][0-4][0-9]|25[0-5])') - - if re.match(regex, ip_address): - return True - - return False - - -def is_valid_ipnetowrk(ip_network): - """Valid the format of an Ip network.""" - - if not ip_network: - return False - - regex = (r'^(([0-9]|[1-9][0-9]|1[0-9]{2}|[1-2][0-4][0-9]|25[0-5])\.)' - r'{3}' - r'([0-9]|[1-9][0-9]|1[0-9]{2}|[1-2][0-4][0-9]|25[0-5])' - r'((\/[0-9]|\/[1-2][0-9]|\/[1-3][0-2]))$') - - if re.match(regex, ip_network): - return True - return False - - -def is_valid_netmask(ip_addr): - """Valid the format of a netmask.""" - try: - ip_address = netaddr.IPAddress(ip_addr) - return ip_address.is_netmask() - - except Exception: - return False - - -def is_valid_gateway(ip_addr): - """Valid the format of gateway.""" - - invalid_ip_prefix = ['0', '224', '169', '127'] - try: - # Check if ip_addr is an IP address and not start with 0 - ip_addr_prefix = ip_addr.split('.')[0] - if is_valid_ip(ip_addr) and ip_addr_prefix not in invalid_ip_prefix: - ip_address = netaddr.IPAddress(ip_addr) - if not ip_address.is_multicast(): - # Check if ip_addr is not multicast and reserved IP - return True - return False - except Exception: - return False - - -def _is_valid_nameservers(value): - """Valid the format of nameservers.""" - if value: - nameservers = value.strip(",").split(",") - for elem in nameservers: - if not is_valid_ip(elem): - return False - else: - return False - - return True - - -def is_valid_security_config(config): - """Valid the format of security section in config.""" - outer_format = { - "server_credentials": {}, "service_credentials": {}, - "console_credentials": {} - } - inner_format = { - "username": {}, "password": {} - } - valid_outter, err = is_valid_keys(outer_format, config, "Security") - if not valid_outter: - return (False, err) - - for key in config: - content = config[key] - valid_inner, err = is_valid_keys(inner_format, content, key) - if not valid_inner: - return (False, err) - - for sub_key in content: - if not content[sub_key]: - return (False, ("The value of %s in %s in security config " - "cannot be None!") % (sub_key, key)) - return (True, '') - - -def is_valid_networking_config(config): - """Valid the format of networking config.""" - - def _is_valid_interfaces_config(interfaces_config): - """Valid the format of interfaces section in config.""" - interfaces_section = { - "management": {}, "tenant": {}, "public": {}, "storage": {} - } - section = { - "ip_start": {"req": 1, "validator": is_valid_ip}, - "ip_end": {"req": 1, "validator": is_valid_ip}, - "netmask": {"req": 1, "validator": is_valid_netmask}, - "gateway": {"req": 0, "validator": is_valid_gateway}, - "nic": {}, - "promisc": {} - } - - # Check if interfaces outer layer keywords - is_valid_outer, err = is_valid_keys(interfaces_section, - interfaces_config, "interfaces") - if not is_valid_outer: - return (False, err) - - promisc_nics = [] - nonpromisc_nics = [] - - for key in interfaces_config: - content = interfaces_config[key] - is_valid_inner, err = is_valid_keys(section, content, key) - if not is_valid_inner: - return (False, err) - - if content["promisc"] not in [0, 1]: - return (False, ("The value of Promisc in %s section of " - "interfaces can only be either 0 or 1!") % key) - if not content["nic"]: - return (False, ("The NIC in %s cannot be None!") % key) - - if content["promisc"]: - if content["nic"] not in nonpromisc_nics: - promisc_nics.append(content["nic"]) - continue - else: - return (False, - ("The NIC in %s cannot be assigned in promisc " - "and nonpromisc mode at the same time!" % key)) - else: - if content["nic"] not in promisc_nics: - nonpromisc_nics.append(content["nic"]) - else: - return (False, - ("The NIC in %s cannot be assigned in promisc " - "and nonpromisc mode at the same time!" % key)) - - # Validate other keywords in the section - for sub_key in content: - if sub_key == "promisc" or sub_key == "nic": - continue - value = content[sub_key] - is_required = section[sub_key]["req"] - validator = section[sub_key]["validator"] - if value: - if validator and not validator(value): - error_msg = "The format of %s in %s is invalid!" % \ - (sub_key, key) - return (False, error_msg) - - elif is_required: - return (False, - ("%s in %s section in interfaces of networking " - "config cannot be None!") % (sub_key, key)) - - return (True, '') - - def _is_valid_global_config(global_config): - """Valid the format of 'global' section in config.""" - global_section = { - "nameservers": {"req": 1, "validator": _is_valid_nameservers}, - "search_path": {"req": 1, "validator": ""}, - "gateway": {"req": 1, "validator": is_valid_gateway}, - "proxy": {"req": 0, "validator": ""}, - "ntp_server": {"req": 0, "validator": ""}, - "ha_vip": {"req": 0, "validator": is_valid_ip} - } - is_valid_format, err = is_valid_keys(global_section, global_config, - "global") - if not is_valid_format: - return (False, err) - - for key in global_section: - value = global_config[key] - is_required = global_section[key]["req"] - validator = global_section[key]["validator"] - - if value: - if validator and not validator(value): - return (False, ("The format of %s in global section of " - "networking config is invalid!") % key) - elif is_required: - return (False, ("The value of %s in global section of " - "netowrking config cannot be None!") % key) - - return (True, '') - - networking_config = { - "interfaces": _is_valid_interfaces_config, - "global": _is_valid_global_config - } - - valid_format, err = is_valid_keys(networking_config, config, "networking") - if not valid_format: - return (False, err) - - for key in networking_config: - validator = networking_config[key] - is_valid, err = validator(config[key]) - if not is_valid: - return (False, err) - - return (True, '') - - -def is_valid_partition_config(config): - """Valid the configuration format.""" - - if not config: - return (False, '%s in partition cannot be null!' % config) - - return (True, '') - - -def valid_host_config(config): - """Valid the host configuration format. - - .. note:: - Valid_format is used to check if the input config is qualified - the required fields and format. - The key is the required field and format of the input config - The value is the validator function name of the config value - """ - - from api import errors - valid_format = {"/networking/interfaces/management/ip": "is_valid_ip", - "/networking/interfaces/tenant/ip": "is_valid_ip", - "/networking/global/gateway": "is_valid_gateway", - "/networking/global/nameserver": "", - "/networking/global/search_path": "", - "/roles": ""} - flat_config = {} - flatten_dict(config, flat_config) - - config_keys = flat_config.keys() - for key in config_keys: - validator = None - try: - validator = valid_format[key] - except Exception: - continue - else: - value = flat_config[key] - if validator: - is_valid_format = globals()[validator](value) - if not is_valid_format: - error_msg = "The format '%s' is incorrect!" % value - raise errors.UserInvalidUsage(error_msg) - - -def flatten_dict(dictionary, output, flat_key=""): - """This function will convert the dictionary into a flatten dict. - - .. note:: - For example: - dict = {'a':{'b': 'c'}, 'd': 'e'} ==> - flatten dict = {'a/b': 'c', 'd': 'e'} - """ - - keywords = dictionary.keys() - for key in keywords: - tmp = '/'.join((flat_key, key)) - if isinstance(dictionary[key], dict): - flatten_dict(dictionary[key], output, tmp) - else: - output[tmp] = dictionary[key] - - -def update_dict_value(searchkey, dictionary): - """Update dictionary value.""" - - keywords = dictionary.keys() - for key in keywords: - if key == searchkey: - if isinstance(dictionary[key], str): - dictionary[key] = '' - elif isinstance(dictionary[key], list): - dictionary[key] = [] - - elif isinstance(dictionary[key], dict): - update_dict_value(searchkey, dictionary[key]) - else: - continue - - -def is_valid_keys(expected, input_dict, section=""): - """Validate keys.""" - excepted_keys = set(expected.keys()) - input_keys = set(input_dict.keys()) - if excepted_keys != input_keys: - invalid_keys = list(excepted_keys - input_keys) if \ - len(excepted_keys) > len(input_keys) else\ - list(input_keys - excepted_keys) - error_msg = ("Invalid or missing keywords in the %s " - "section of networking config. Please check these " - "keywords %s") % (section, invalid_keys) - return (False, error_msg) - - return (True, "") - - -def get_col_val_from_dict(result, data): - """Convert a dict's values to a list. - - :param result: a list of values for each column - :param data: input data - - .. note:: - for example: - data = {"a": {"b": {"c": 1}, "d": 2}} - the result will be [1, 2] - """ - if not isinstance(data, dict): - data = str(data) if str(data) else 'None' - result.append(data) - return - - for key in data: - get_col_val_from_dict(result, data[key]) - - -def get_headers_from_dict(headers, colname, data): - """Convert a column which value is dict to a list of column name and keys. - - .. note:: - nested keys in dict will be joined by '.' as a column name in CSV. - for example: - the column name is 'config_data', and - the value is {"a": {"b": {"c": 1}, "d": 2}} - then headers will be ['config_data.a.b.c', 'config_data.a.d'] - - :param headers: the result list to hold dict keys - :param colname: the column name - :param data: input data - - """ - if not colname: - raise "colname cannot be None!" - - if not isinstance(data, dict): - headers.append(colname) - return - - for key in data: - tmp_header = '.'.join((colname, key)) - get_headers_from_dict(headers, tmp_header, data[key]) diff --git a/compass/api/utils.py b/compass/api/utils.py new file mode 100644 index 00000000..87977cd3 --- /dev/null +++ b/compass/api/utils.py @@ -0,0 +1,35 @@ +# Copyright 2014 Huawei Technologies Co. Ltd +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. + +"""Utils for API usage.""" +from flask import make_response +import simplejson as json + + +def make_json_response(status_code, data): + """Wrap json format to the reponse object.""" + + result = json.dumps(data, indent=4) + '\r\n' + resp = make_response(result, status_code) + resp.headers['Content-type'] = 'application/json' + return resp + + +def make_csv_response(status_code, csv_data, fname): + """Wrap CSV format to the reponse object.""" + fname = '.'.join((fname, 'csv')) + resp = make_response(csv_data, status_code) + resp.mimetype = 'text/csv' + resp.headers['Content-Disposition'] = 'attachment; filename="%s"' % fname + return resp diff --git a/compass/api/v1/api.py b/compass/api/v1/api.py new file mode 100644 index 00000000..9dbc5489 --- /dev/null +++ b/compass/api/v1/api.py @@ -0,0 +1,248 @@ +# Copyright 2014 Huawei Technologies Co. Ltd +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. + +"""Define all the RestfulAPI entry points.""" +import logging +import simplejson as json + +from flask import Blueprint +from flask import request + +from flask.ext.restful import Resource + +from compass.api.exception import BadRequest +from compass.api.exception import Forbidden +from compass.api.exception import ItemNotFound +from compass.api.exception import Unauthorized +from compass.api.restfulAPI import CompassApi +from compass.api import utils + +from compass.db import db_api +from compass.db.exception import InvalidParameter +from compass.db.exception import RecordNotExists + + +v1_app = Blueprint('v1_app', __name__) +api = CompassApi(v1_app) +PREFIX = '/v1.0' + + +@v1_app.route('/users', methods=['GET']) +def list_users(): + """List details of all users filtered by user email and admin role.""" + + emails = request.args.getlist('email') + is_admin = request.args.get('admin') + filters = {} + + if emails: + filters['email'] = emails + + if is_admin is not None: + if is_admin == 'true': + filters['is_admin'] = True + elif is_admin == 'false': + filters['is_admin'] = False + + users_list = db_api.user.list_users(filters) + + return utils.make_json_response(200, users_list) + + +class User(Resource): + ENDPOINT = PREFIX + '/users' + + def get(self, user_id): + """Get user's information for the specified ID.""" + try: + user_data = db_api.user.get_user(user_id) + logging.debug("user_data is===>%s", user_data) + + except RecordNotExists as ex: + error_msg = ex.message + raise ItemNotFound(error_msg) + + return utils.make_json_response(200, user_data) + + +class Adapter(Resource): + ENDPOINT = PREFIX + "/adapters" + + def get(self, adapter_id): + """Get information for a specified adapter.""" + + try: + adapter_info = db_api.adapter.get_adapter(adapter_id) + except RecordNotExists as ex: + error_msg = ex.message + raise ItemNotFound(error_msg) + + return utils.make_json_response(200, adapter_info) + + +@v1_app.route('/adapters', methods=['GET']) +def list_adapters(): + """List details of all adapters filtered by the adapter name(s).""" + + names = request.args.getlist('name') + filters = {} + if names: + filters['name'] = names + + adapters_list = db_api.adapter.list_adapters(filters) + return utils.make_json_response(200, adapters_list) + + +@v1_app.route('/adapters//config-schema', methods=['GET']) +def get_adapter_config_schema(adapter_id): + """Get the config schema for a specified adapter.""" + + os_id = request.args.get("os-id", type=int) + + try: + schema = db_api.adapter.get_adapter_config_schema(adapter_id, os_id) + except RecordNotExists as ex: + raise ItemNotFound(ex.message) + + return utils.make_json_response(200, schema) + + +@v1_app.route('/adapters//roles', methods=['GET']) +def get_adapter_roles(adapter_id): + """Get roles for a specified adapter.""" + + try: + roles = db_api.adapter.get_adapter(adapter_id, True) + except RecordNotExists as ex: + raise ItemNotFound(ex.message) + + return utils.make_json_response(200, roles) + + +class Cluster(Resource): + def get(self, cluster_id): + """Get information for a specified cluster.""" + + try: + cluster_info = db_api.cluster.get_cluster(cluster_id) + + except RecordNotExists as ex: + error_msg = ex.message + raise ItemNotFound(error_msg) + + return utils.make_json_response(200, cluster_info) + + +@v1_app.route('/clusters//config', methods=['PUT', 'PATCH']) +def add_cluster_config(cluster_id): + """Update the config information for a specified cluster.""" + config = json.loads(request.data) + if not config: + raise BadRequest("Config cannot be None!") + + root_elems = ['os_config', 'package_config'] + if len(config.keys()) != 1 or config.keys()[0] not in root_elems: + error_msg = ("Config root elements must be either" + "'os_config' or 'package_config'") + raise BadRequest(error_msg) + + result = None + is_patch_method = request.method == 'PATCH' + try: + if "os_config" in config: + result = db_api.cluster\ + .update_cluster_config(cluster_id, + 'os_config', + config, + patch=is_patch_method) + elif "package_config" in config: + result = db_api.cluster\ + .update_cluster_config(cluster_id, + 'package_config', config, + patch=is_patch_method) + + except InvalidParameter as ex: + raise BadRequest(ex.message) + + except RecordNotExists as ex: + raise ItemNotFound(ex.message) + + return utils.make_json_response(200, result) + + +api.add_resource(User, + '/users', + '/users/') +api.add_resource(Adapter, + '/adapters', + '/adapters/') +api.add_resource(Cluster, + '/clusters', + '/clusters/') + + +@v1_app.errorhandler(ItemNotFound) +def handle_not_exist(error, failed_objs=None): + """Handler of ItemNotFound Exception.""" + + message = {'type': 'itemNotFound', + 'message': error.message} + + if failed_objs and isinstance(failed_objs, dict): + message.update(failed_objs) + + return utils.make_json_response(404, message) + + +@v1_app.errorhandler(Unauthorized) +def handle_invalid_user(error, failed_objs=None): + """Handler of Unauthorized Exception.""" + + message = {'type': 'unathorized', + 'message': error.message} + + if failed_objs and isinstance(failed_objs, dict): + message.update(failed_objs) + + return utils.make_json_response(401, message) + + +@v1_app.errorhandler(Forbidden) +def handle_no_permission(error, failed_objs=None): + """Handler of Forbidden Exception.""" + + message = {'type': 'Forbidden', + 'message': error.message} + + if failed_objs and isinstance(failed_objs, dict): + message.update(failed_objs) + + return utils.make_json_response(403, message) + + +@v1_app.errorhandler(BadRequest) +def handle_bad_request(error, failed_objs=None): + """Handler of badRequest Exception.""" + + message = {'type': 'badRequest', + 'message': error.message} + + if failed_objs and isinstance(failed_objs, dict): + message.update(failed_objs) + + return utils.make_json_response(400, message) + + +if __name__ == '__main__': + v1_app.run(debug=True) diff --git a/compass/db/api/__init__.py b/compass/db/api/__init__.py new file mode 100644 index 00000000..b8ee3f3a --- /dev/null +++ b/compass/db/api/__init__.py @@ -0,0 +1,44 @@ +# Copyright 2014 Huawei Technologies Co. Ltd +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. + +"""Common database query.""" + +from compass.db.models import BASE + + +def model_query(session, model, *args, **kwargs): + + if not issubclass(model, BASE): + raise Exception("model should be sublass of BASE!") + + with session.begin(subtransactions=True): + query = session.query(model) + + return query + + +def model_filter(query, model, filters, legal_keys): + for key in filters: + if key not in legal_keys: + continue + + value = filters[key] + col_attr = getattr(model, key) + + if isinstance(value, list): + query = query.filter(col_attr.in_(value)) + else: + query = query.filter(col_attr == value) + + return query diff --git a/compass/db/api/adapter.py b/compass/db/api/adapter.py new file mode 100644 index 00000000..caf18e39 --- /dev/null +++ b/compass/db/api/adapter.py @@ -0,0 +1,158 @@ +# Copyright 2014 Huawei Technologies Co. Ltd +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. + +"""Adapter database operations.""" + +from compass.db import api +from compass.db.api import database +from compass.db.api.utils import wrap_to_dict +from compass.db.exception import RecordNotExists +from compass.db.models import Adapter +from compass.db.models import OSConfigMetadata +# from compass.db.models import PackageConfigMetadata + + +SUPPORTED_FILTERS = ['name'] + +ERROR_MSG = { + 'findNoAdapter': 'Cannot find the Adapter, ID is %d', + 'findNoOs': 'Cannot find OS, ID is %d' +} + + +@wrap_to_dict() +def get_adapter(adapter_id, return_roles=False): + + with database.session() as session: + adapter = _get_adapter(session, adapter_id) + info = adapter.to_dict() + + if return_roles: + roles = adapter.roles + info = [role.name for role in roles] + + return info + + +@wrap_to_dict() +def get_adapter_config_schema(adapter_id, os_id): + + with database.session() as session: + adapter = _get_adapter(session, adapter_id) + + os_list = [] + if not os_id: + os_list = [os.id for os in adapter.support_os] + else: + os_list = [os_id] + + schema = _get_adapter_config_schema(session, adapter_id, os_list) + + return schema + + +@wrap_to_dict() +def list_adapters(filters=None): + """List all users, optionally filtered by some fields.""" + with database.session() as session: + adapters = _list_adapters(session, filters) + adapters_list = [adapter.to_dict() for adapter in adapters] + + return adapters_list + + +def _get_adapter(session, adapter_id): + """Get the adapter by ID.""" + with session.begin(subtransactions=True): + adapter = api.model_query(session, Adapter).first() + if not adapter: + err_msg = ERROR_MSG['findNoAdapter'] % adapter_id + raise RecordNotExists(err_msg) + + return adapter + + +def _list_adapters(session, filters=None): + """Get all adapters, optionally filtered by some fields.""" + + filters = filters or {} + + with session.begin(subtransactions=True): + query = api.model_query(session, Adapter) + adapters = api.model_filter(query, Adapter, + filters, SUPPORTED_FILTERS).all() + + return adapters + + +#TODO(Grace): TMP method +def _get_adapter_config_schema(session, adapter_id, os_list): + output_dict = {} + + with session.begin(subtransactions=True): + os_root = session.query(OSConfigMetadata).filter_by(name="os_config")\ + .first() + # pk_root = session.query(PackageConfigMetadata\ + # .filter_by(name="os_config").first() + + os_config_list = [] + for os_id in os_list: + os_config_dict = {"_name": "os_config"} + output_dict = {} + output_dict["os_config"] = os_config_dict + _get_adapter_config_helper(os_root, os_config_dict, + output_dict, "os_id", os_id) + result = {"os_id": os_id} + result.update(output_dict) + os_config_list.append(result) + """ + package_config_dict = {"_name": "package_config"} + output_dict = {} + output_dict["package_config"] = package_config_dict + _get_adapter_config_internal(pk_root, package_config_dict, + output_dict, "adapter_id", adapter_id) + """ + output_dict = {} + output_dict["os_config"] = os_config_list + + return output_dict + + +# A recursive function +# This assumes that only leaf nodes have field entry and that +# an intermediate node in config_metadata table does not have field entries +def _get_adapter_config_helper(node, current_dict, parent_dict, + id_name, id_value): + children = node.children + + if children: + for c in children: + col_value = getattr(c, id_name) + if col_value is None or col_value == id_value: + child_dict = {"_name": c.name} + current_dict[c.name] = child_dict + _get_adapter_config_helper(c, child_dict, current_dict, + id_name, id_value) + del current_dict["_name"] + else: + fields = node.fields + fields_dict = {} + + for field in fields: + info = field.to_dict() + name = info['field'] + del info['field'] + fields_dict[name] = info + + parent_dict[current_dict["_name"]] = fields_dict diff --git a/compass/db/api/cluster.py b/compass/db/api/cluster.py new file mode 100644 index 00000000..01dd3bf5 --- /dev/null +++ b/compass/db/api/cluster.py @@ -0,0 +1,148 @@ +# Copyright 2014 Huawei Technologies Co. Ltd +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. + +"""Cluster database operations.""" + +import simplejson as json + +from compass.db import api +from compass.db.api import database +from compass.db.api.utils import merge_dict +from compass.db.api.utils import wrap_to_dict +from compass.db.exception import InvalidParameter +from compass.db.exception import RecordNotExists + +from compass.db.config_validation import default_validator +# from compass.db.config_validation import extension + +from compass.db.models import Cluster + + +SUPPORTED_FILTERS = ['name', 'adapter', 'owner'] + +ERROR_MSG = { + 'findNoCluster': 'Cannot find the Cluster, ID is %d', +} + + +@wrap_to_dict() +def get_cluster(cluster_id): + + with database.session() as session: + cluster = _get_cluster(session, cluster_id) + info = cluster.to_dict() + + return info + + +@wrap_to_dict() +def list_clusters(filters=None): + """List all users, optionally filtered by some fields.""" + + filters = filters or {} + with database.session() as session: + clusters = _list_clusters(session, filters) + clusters_info = [cluster.to_dict() for cluster in clusters] + + return clusters_info + + +@wrap_to_dict() +def get_cluster_config(cluster_id): + """Get configuration info for a specified cluster.""" + + with database.session() as session: + config = _get_cluster_config(session, cluster_id) + + return config + + +def _get_cluster_config(session, cluster_id): + + with session.begin(subtransactions=True): + cluster = _get_cluster(cluster_id) + config = cluster.config + + return config + + +def _get_cluster(session, cluster_id): + """Get the adapter by ID.""" + with session.begin(subtransactions=True): + cluster = session.query(Cluster).filter_by(id=cluster_id).first() + if not cluster: + err_msg = ERROR_MSG['findNoCluster'] % cluster_id + raise RecordNotExists(err_msg) + return cluster + + +def _list_clusters(session, filters=None): + """Get all clusters, optionally filtered by some fields.""" + + filters = filters or {} + + with session.begin(subtransactions=True): + query = api.model_query(session, Cluster) + clusters = api.model_filter(query, Cluster, + filters, SUPPORTED_FILTERS).all() + + return clusters + + +def update_cluster_config(cluster_id, root_elem, config, patch=True): + result = None + if root_elem not in ["os_config", "package_config"]: + raise InvalidParameter("Invalid parameter %s" % root_elem) + + with database.session() as session: + cluster = _get_cluster(session, cluster_id) + + id_name = None + id_value = None + if root_elem == "os_config": + id_name = "os_id" + id_value = getattr(cluster, "os_id") + else: + id_name = "adapter_id" + id_value = getattr(cluster, "adapter_id") + + # Validate config format and values + is_valid, message = default_validator.validate_config(session, + config, id_name, + id_value, patch) + if not is_valid: + raise InvalidParameter(message) + + # For addtional validation, you can define functions in extension, + # for example: + # os_name = get_os(cluster.os_id)['name'] + # if getattr(extension, os_name): + # func = getattr(getattr(extension, os_name), 'validate_config') + # if not func(session, os_id, config, patch): + # return False + + if root_elem == 'os_config': + os_config = cluster.os_global_config + os_config = json.loads(json.dumps(os_config)) + merge_dict(os_config, config) + cluster.os_global_config = os_config + result = cluster.os_global_config + else: + package_config = cluster.package_global_config + package_config = json.loads(json.dumps(os_config)) + merge_dict(package_config, config) + cluster.package_global_config = package_config + result = cluster.package_global_config + + return result diff --git a/compass/db/api/database.py b/compass/db/api/database.py new file mode 100644 index 00000000..b41b645d --- /dev/null +++ b/compass/db/api/database.py @@ -0,0 +1,273 @@ +# Copyright 2014 Huawei Technologies Co. Ltd +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. + +"""Provider interface to manipulate database.""" +import logging + +from contextlib import contextmanager +from sqlalchemy import create_engine +from sqlalchemy.orm import scoped_session +from sqlalchemy.orm import sessionmaker +from threading import local + +from compass.db import models +# from compass.utils import setting_wrapper as setting + +SQLALCHEMY_DATABASE_URI = "sqlite:////tmp/app.db" +ENGINE = create_engine(SQLALCHEMY_DATABASE_URI, convert_unicode=True) +SESSION = sessionmaker() +SESSION.configure(bind=ENGINE) +SCOPED_SESSION = scoped_session(SESSION) +SESSION_HOLDER = local() + +models.BASE.query = SCOPED_SESSION.query_property() + +# Default permissions for Permission table +DEFAULT_PERMS = [ + {"name": "create_user", "alias": "create a user"}, + {"name": "delete_user", "alias": "delete a user"}, + {"name": "change_permission", "alias": "change permissions of a user"}, + {"name": "delete_cluster", "alias": "delete a cluster"} +] + +# Adapter +ADAPTERS = ['openstack', 'ceph', 'centos', 'ubuntu'] + +# OS +OS = ['CentOS', 'Ubuntu'] + +# adapter_os (adater_id, os_id) +ADAPTER_OS_DEF = { + 1: [1, 2], + 2: [1], + 3: [1], + 4: [2] +} + +# adapter roles +ROLES = [ + {"name": "compute", "adapter_id": 1}, + {"name": "controller", "adapter_id": 1}, + {"name": "metering", "adapter_id": 1}, + {"name": "network", "adapter_id": 1}, + {"name": "storage", "adapter_id": 1} +] + +# OS config metatdata +OS_CONFIG_META_DEF = [ + {"name": "os_config", "p_id": None, 'os_id': None}, + {"name": "general", "p_id": 1, 'os_id': None}, + {"name": "network", "p_id": 1, 'os_id': None}, + {"name": "$interface", "p_id": 3, 'os_id': None}, + {"name": "ext_example_meta", "p_id": 1, 'os_id': 2}, + {"name": "server_credentials", "p_id": 1, 'os_id': None} +] +# OS config field +OS_CONFIG_FIELD_DEF = [ + {"name": "language", "validator": None, 'is_required': True, + 'ftype': 'str'}, + {"name": "timezone", "validator": None, 'is_required': True, + 'ftype': 'str'}, + {"name": "ip", "validator": 'is_valid_ip', 'is_required': True, + 'ftype': 'str'}, + {"name": "netmask", "validator": 'is_valid_netmask', 'is_required': True, + 'ftype': 'str'}, + {"name": "gateway", "validator": 'is_valid_gateway', 'is_required': True, + 'ftype': 'str'}, + {"name": "ext_example_field", "validator": None, 'is_required': True, + 'ftype': 'str'}, + {"name": "username", "validator": None, 'is_required': True, + 'ftype': 'str'}, + {"name": "password", "validator": None, 'is_required': True, + 'ftype': 'str'} +] + +# OS config metadata field (metadata_id, field_id) +OS_CONFIG_META_FIELD_DEF = { + 2: [1, 2], + 4: [3, 4, 5], + 5: [6], + 6: [7, 8] +} + +# Cluster: Demo purpose +CLUSTER = { + "name": "demo", + "adapter_id": 1, + "os_id": 2, + "created_by": 1 +} + + +def init(database_url): + """Initialize database. + + :param database_url: string, database url. + """ + global ENGINE + global SCOPED_SESSION + ENGINE = create_engine(database_url, convert_unicode=True) + SESSION.configure(bind=ENGINE) + SCOPED_SESSION = scoped_session(SESSION) + models.BASE.query = SCOPED_SESSION.query_property() + + +def in_session(): + """check if in database session scope.""" + if hasattr(SESSION_HOLDER, 'session'): + return True + else: + return False + + +@contextmanager +def session(): + """database session scope. + + .. note:: + To operate database, it should be called in database session. + """ + if hasattr(SESSION_HOLDER, 'session'): + logging.error('we are already in session') + raise Exception('session already exist') + else: + new_session = SCOPED_SESSION() + SESSION_HOLDER.session = new_session + + try: + yield new_session + new_session.commit() + except Exception as error: + new_session.rollback() + #logging.error('failed to commit session') + #logging.exception(error) + raise error + finally: + new_session.close() + SCOPED_SESSION.remove() + del SESSION_HOLDER.session + + +def current_session(): + """Get the current session scope when it is called. + + :return: database session. + """ + try: + return SESSION_HOLDER.session + except Exception as error: + logging.error('It is not in the session scope') + logging.exception(error) + raise error + + +def create_db(): + """Create database.""" + try: + models.BASE.metadata.create_all(bind=ENGINE) + except Exception as e: + print e + with session() as _session: + # Initialize default user + user = models.User(email='admin@abc.com', + password='admin', is_admin=True) + _session.add(user) + print "Checking .....\n" + # Initialize default permissions + permissions = [] + for perm in DEFAULT_PERMS: + permissions.append(models.Permission(**perm)) + + _session.add_all(permissions) + + # Populate adapter table + adapters = [] + for name in ADAPTERS: + adapters.append(models.Adapter(name=name)) + + _session.add_all(adapters) + + # Populate adapter roles + roles = [] + for entry in ROLES: + roles.append(models.AdapterRole(**entry)) + _session.add_all(roles) + + # Populate os table + oses = [] + for name in OS: + oses.append(models.OperatingSystem(name=name)) + _session.add_all(oses) + + # Populate adapter_os table + for key in ADAPTER_OS_DEF: + adapter = adapters[key - 1] + for os_id in ADAPTER_OS_DEF[key]: + os = oses[os_id - 1] + adapter.support_os.append(os) + + # Populate OS config metatdata + os_meta = [] + for key in OS_CONFIG_META_DEF: + if key['p_id'] is None: + meta = models.OSConfigMetadata(name=key['name'], + os_id=key['os_id']) + else: + parent = os_meta[key['p_id'] - 1] + meta = models.OSConfigMetadata(name=key['name'], + os_id=key['os_id'], + parent=parent) + os_meta.append(meta) + + _session.add_all(os_meta) + + # Populate OS config field + os_fields = [] + for field in OS_CONFIG_FIELD_DEF: + os_fields.append(models.OSConfigField( + field=field['name'], validator=field['validator'], + is_required=field['is_required'], ftype=field['ftype'])) + _session.add_all(os_fields) + + # Populate OS config metatdata field + for meta_id in OS_CONFIG_META_FIELD_DEF: + meta = os_meta[meta_id - 1] + for field_id in OS_CONFIG_META_FIELD_DEF[meta_id]: + field = os_fields[field_id - 1] + meta.fields.append(field) + + # Populate one cluster -- DEMO PURPOSE + cluster = models.Cluster(**CLUSTER) + _session.add(cluster) + + +def drop_db(): + """Drop database.""" + models.BASE.metadata.drop_all(bind=ENGINE) + + +def create_table(table): + """Create table. + + :param table: Class of the Table defined in the model. + """ + table.__table__.create(bind=ENGINE, checkfirst=True) + + +def drop_table(table): + """Drop table. + + :param table: Class of the Table defined in the model. + """ + table.__table__.drop(bind=ENGINE, checkfirst=True) diff --git a/compass/db/api/user.py b/compass/db/api/user.py new file mode 100644 index 00000000..a9eb8c04 --- /dev/null +++ b/compass/db/api/user.py @@ -0,0 +1,138 @@ +# Copyright 2014 Huawei Technologies Co. Ltd +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. + +"""User database operations.""" + +from compass.db import api +from compass.db.api import database +from compass.db.api.utils import wrap_to_dict +from compass.db.exception import DuplicatedRecord +from compass.db.exception import Forbidden +from compass.db.exception import RecordNotExists +from compass.db.models import User + + +SUPPORTED_FILTERS = ['email', 'admin'] +UPDATED_FIELDS = ['firstname', 'lastname', 'password'] +RESP_FIELDS = ['id', 'email', 'is_admin', 'active', 'firstname', + 'lastname', 'created_at', 'last_login_at'] + +ERROR_MSG = { + 'findNoUser': 'Cannot find the user, ID is %d', + 'duplicatedUser': 'User already exists!', + 'forbidden': 'User has no permission to make this request.' +} + + +@wrap_to_dict(RESP_FIELDS) +def get_user(user_id): + with database.session() as session: + user = _get_user(session, user_id) + user_info = user.to_dict() + + return user_info + + +@wrap_to_dict(RESP_FIELDS) +def list_users(filters=None): + """List all users, optionally filtered by some fields.""" + with database.session() as session: + users = _list_users(session, filters) + users_list = [user.to_dict() for user in users] + + return users_list + + +@wrap_to_dict(RESP_FIELDS) +def add_user(creator_id, email, password, firstname=None, lastname=None): + """Create a user.""" + REQUIRED_PERM = 'create_user' + + with database.session() as session: + + creator = _get_user(session, creator_id) + + if not creator.is_admin or REQUIRED_PERM not in creator.permissions: + # The user is not allowed to create a user. + err_msg = ERROR_MSG['forbidden'] + raise Forbidden(err_msg) + + if session.query(User).filter_by(email=email).first(): + # The user already exists! + err_msg = ERROR_MSG['duplicatedUser'] + raise DuplicatedRecord(err_msg) + + new_user = _add_user(email, password, firstname, lastname) + new_user_info = new_user.to_dict() + + return new_user_info + + +@wrap_to_dict(RESP_FIELDS) +def update_user(user_id, **kwargs): + """Update a user.""" + with database.session() as session: + user = _get_user(session, user_id) + + update_info = {} + for key in kwargs: + if key in UPDATED_FIELDS: + update_info[key] = kwargs[key] + + user = _update_user(**update_info) + user_info = user.to_dict() + + return user_info + + +def _get_user(session, user_id): + """Get the user by ID.""" + with session.begin(subtransactions=True): + user = session.query(User).filter_by(id=user_id).first() + if not user: + err_msg = ERROR_MSG['findNoUser'] % user_id + raise RecordNotExists(err_msg) + + return user + + +def _list_users(session, filters=None): + """Get all users, optionally filtered by some fields.""" + + filters = filters if filters else {} + + with session.begin(subtransactions=True): + query = api.model_query(session, User) + users = api.model_filter(query, User, filters, SUPPORTED_FILTERS).all() + + return users + + +def _add_user(session, email, password, firstname=None, lastname=None): + """Create a user.""" + with session.begin(subtransactions=True): + user = User(email=email, password=password, + firstname=firstname, lastname=lastname) + session.add(user) + + return user + + +def _update_user(session, user_id, **kwargs): + """Update user information.""" + with session.begin(subtransactions=True): + session.query(User).filter_by(id=user_id).update(kwargs) + user = _get_user(session, user_id) + + return user diff --git a/compass/db/api/utils.py b/compass/db/api/utils.py new file mode 100644 index 00000000..28c836d4 --- /dev/null +++ b/compass/db/api/utils.py @@ -0,0 +1,80 @@ +# Copyright 2014 Huawei Technologies Co. Ltd +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. + +"""Utils for database usage.""" +import copy +from functools import wraps + + +def wrap_to_dict(support_keys=None): + def decorator(func): + @wraps(func) + def wrapper(*args, **kwargs): + obj = func(*args, **kwargs) + obj_info = None + if isinstance(obj, list): + obj_info = [_wrapper_dict(o, support_keys) for o in obj] + else: + obj_info = _wrapper_dict(obj, support_keys) + + return obj_info + return wrapper + return decorator + + +def _wrapper_dict(data, support_keys=None): + """Helper for warpping db object into dictionaryi.""" + if support_keys is None: + return data + + info = {} + for key in support_keys: + if key in data: + info[key] = data[key] + + return info + + +def merge_dict(lhs, rhs, override=True): + """Merge nested right dict into left nested dict recursively. + +:param lhs: dict to be merged into. +:type lhs: dict +:param rhs: dict to merge from. +:type rhs: dict +:param override: the value in rhs overide the value in left if True. +:type override: str + +:raises: TypeError if lhs or rhs is not a dict. +""" + if not rhs: + return + + if not isinstance(lhs, dict): + raise TypeError('lhs type is %s while expected is dict' % type(lhs), + lhs) + + if not isinstance(rhs, dict): + raise TypeError('rhs type is %s while expected is dict' % type(rhs), + rhs) + + for key, value in rhs.items(): + if ( + isinstance(value, dict) and key in lhs and + isinstance(lhs[key], dict) + ): + merge_dict(lhs[key], value, override) + else: + if override or key not in lhs: + lhs[key] = copy.deepcopy(value) diff --git a/compass/tests/actions/deploy/__init__.py b/compass/db/config_validation/__init__.py similarity index 100% rename from compass/tests/actions/deploy/__init__.py rename to compass/db/config_validation/__init__.py diff --git a/compass/db/config_validation/default_validator.py b/compass/db/config_validation/default_validator.py new file mode 100644 index 00000000..fdc2dab6 --- /dev/null +++ b/compass/db/config_validation/default_validator.py @@ -0,0 +1,129 @@ +# Copyright 2014 Huawei Technologies Co. Ltd +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. + +"""Default config validation function.""" + +from sqlalchemy import or_ + +from compass.db.models import OSConfigField +from compass.db.models import OSConfigMetadata +from compass.db import validator + +MAPPER = { + "os_id": { + "metaTable": OSConfigMetadata, + "metaFieldTable": OSConfigField + } + # "adapter_id": { + # "metaTable": AdapterConfigMetadata, + # "metaFieldTable": AdapterConfigField + # } +} + + +def validate_config(session, config, id_name, id_value, patch=True): + """Validates the given config value according to the config + metadata of the asscoiated os_id or adapter_id. Returns + a tuple (status, message). + """ + if id_name not in MAPPER.keys(): + return (False, "Invalid id type %s" % id_name) + + meta_table = MAPPER[id_name]['metaTable'] + metafield_table = MAPPER[id_name]['metaFieldTable'] + with session.begin(subtransactions=True): + name_col = name_col = getattr(meta_table, 'name') + id_col = getattr(meta_table, id_name) + + return _validate_config_helper(session, config, + name_col, id_col, id_value, + meta_table, metafield_table, + patch) + + +def _validate_config_helper(session, config, + name_col, id_col, id_value, + meta_table, metafield_table, patch=True): + + with session.begin(subtransactions=True): + for elem in config: + + obj = session.query(meta_table).filter(name_col == elem)\ + .filter(or_(id_col is None, + id_col == id_value)).first() + + if not obj and "_type" not in config[elem]: + return (False, "Invalid metadata '%s'!" % elem) + + if "_type" in config[elem]: + # Metadata is a variable + metadata_name = config[elem]['_type'] + obj = session.query(meta_table).filter_by(name=metadata_name)\ + .first() + + if not obj: + err_msg = ("Invalid metatdata '%s' or missing '_type'" + "to indicate this is a variable metatdata." + % elem) + return (False, err_msg) + + # TODO(Grace): validate metadata here + del config[elem]['_type'] + + fields = obj.fields + + if not fields: + is_valid, message = _validate_config_helper(session, + config[elem], + name_col, id_col, + id_value, + meta_table, + metafield_table, + patch) + if not is_valid: + return (False, message) + + else: + field_config = config[elem] + for key in field_config: + field = session.query(metafield_table)\ + .filter_by(field=key).first() + if not field: + # The field is not in schema + return (False, "Invalid field '%s'!" % key) + + value = field_config[key] + if field.is_required and value is None: + # The value of this field is required + # and cannot be none + err = "The value of field '%s' cannot be null!" % key + return (False, err) + + if field.validator: + func = getattr(validator, field.validator) + if not func or not func(value): + err_msg = ("The value of the field '%s' is " + "invalid format or None!" % key) + return (False, err_msg) + + # This is a PUT request. We need to check presence of all + # required fields. + if not patch: + for field in fields: + name = field.field + if field.is_required and name not in field_config: + return (False, + "Missing required field '%s'" % name) + + return (True, None) diff --git a/compass/tests/actions/update_progress/__init__.py b/compass/db/config_validation/extension/__init__.py similarity index 100% rename from compass/tests/actions/update_progress/__init__.py rename to compass/db/config_validation/extension/__init__.py diff --git a/compass/tests/actions/__init__.py b/compass/db/config_validation/extension/openstack.py similarity index 78% rename from compass/tests/actions/__init__.py rename to compass/db/config_validation/extension/openstack.py index 4ee55a4c..6b3af690 100644 --- a/compass/tests/actions/__init__.py +++ b/compass/db/config_validation/extension/openstack.py @@ -4,10 +4,15 @@ # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # -# http://www.apache.org/licenses/LICENSE-2.0 +# http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. + + +def validate_cluster_config(): + # TODO(xiaodong): Add openstack specific validation here. + pass diff --git a/compass/db/database.py b/compass/db/database.py deleted file mode 100644 index f9a86e98..00000000 --- a/compass/db/database.py +++ /dev/null @@ -1,130 +0,0 @@ -# Copyright 2014 Huawei Technologies Co. Ltd -# -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. - -"""Provider interface to manipulate database.""" -import logging - -from contextlib import contextmanager -from sqlalchemy import create_engine -from sqlalchemy.orm import scoped_session -from sqlalchemy.orm import sessionmaker -from threading import local - -from compass.db import model -from compass.utils import setting_wrapper as setting - - -ENGINE = create_engine(setting.SQLALCHEMY_DATABASE_URI, convert_unicode=True) -SESSION = sessionmaker(autocommit=False, autoflush=False) -SESSION.configure(bind=ENGINE) -SCOPED_SESSION = scoped_session(SESSION) - -model.BASE.query = SCOPED_SESSION.query_property() - -SESSION_HOLDER = local() - -model.BASE.query = SCOPED_SESSION.query_property() - - -def init(database_url): - """Initialize database. - - :param database_url: string, database url. - """ - global ENGINE - global SCOPED_SESSION - ENGINE = create_engine(database_url, convert_unicode=True) - SESSION.configure(bind=ENGINE) - SCOPED_SESSION = scoped_session(SESSION) - model.BASE.query = SCOPED_SESSION.query_property() - - -def in_session(): - """check if in database session scope.""" - if hasattr(SESSION_HOLDER, 'session'): - return True - else: - return False - - -@contextmanager -def session(): - """database session scope. - - .. note:: - To operate database, it should be called in database session. - """ - if hasattr(SESSION_HOLDER, 'session'): - logging.error('we are already in session') - raise Exception('session already exist') - else: - new_session = SCOPED_SESSION() - SESSION_HOLDER.session = new_session - - try: - yield new_session - new_session.commit() - except Exception as error: - new_session.rollback() - logging.error('failed to commit session') - logging.exception(error) - raise error - finally: - new_session.close() - SCOPED_SESSION.remove() - del SESSION_HOLDER.session - - -def current_session(): - """Get the current session scope when it is called. - - :return: database session. - """ - try: - return SESSION_HOLDER.session - except Exception as error: - logging.error('It is not in the session scope') - logging.exception(error) - raise error - - -def create_db(): - """Create database.""" - model.BASE.metadata.create_all(bind=ENGINE) - with session() as _s: - # Initialize default user - user = model.User(email='admin@abc.com', password='admin') - logging.info('Init user: %s, %s' % (user.email, user.get_password())) - _s.add(user) - - -def drop_db(): - """Drop database.""" - model.BASE.metadata.drop_all(bind=ENGINE) - - -def create_table(table): - """Create table. - - :param table: Class of the Table defined in the model. - """ - table.__table__.create(bind=ENGINE, checkfirst=True) - - -def drop_table(table): - """Drop table. - - :param table: Class of the Table defined in the model. - """ - table.__table__.drop(bind=ENGINE, checkfirst=True) diff --git a/compass/api/v1/app.py b/compass/db/db_api.py similarity index 85% rename from compass/api/v1/app.py rename to compass/db/db_api.py index 4df4014d..e84f960a 100644 --- a/compass/api/v1/app.py +++ b/compass/db/db_api.py @@ -12,4 +12,6 @@ # See the License for the specific language governing permissions and # limitations under the License. -# TODO(Grace): Add the initial API code here. +from compass.db.api import adapter +from compass.db.api import cluster +from compass.db.api import user diff --git a/compass/db/exception.py b/compass/db/exception.py new file mode 100644 index 00000000..2af9be70 --- /dev/null +++ b/compass/db/exception.py @@ -0,0 +1,46 @@ +# Copyright 2014 Huawei Technologies Co. Ltd +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. + +"""Custom exception""" + + +class RecordNotExists(Exception): + """Define the exception for referring non-existing object in DB.""" + def __init__(self, message): + super(RecordNotExists, self).__init__(message) + self.message = message + + +class DuplicatedRecord(Exception): + """Define the exception for trying to insert an existing object in DB.""" + def __init__(self, message): + super(DuplicatedRecord, self).__init__(message) + self.message = message + + +class Forbidden(Exception): + """Define the exception that a user is trying to make some action + without the right permission. + """ + def __init__(self, message): + super(Forbidden, self).__init__(message) + self.message = message + + +class InvalidParameter(Exception): + """Define the exception that the request has invalid or missing parameters. + """ + def __init__(self, message): + super(InvalidParameter, self).__init__(message) + self.message = message diff --git a/compass/db/model.py b/compass/db/model.py deleted file mode 100644 index 11e48eaa..00000000 --- a/compass/db/model.py +++ /dev/null @@ -1,711 +0,0 @@ -# Copyright 2014 Huawei Technologies Co. Ltd -# -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. - -"""database model.""" -from datetime import datetime -from hashlib import md5 -import logging -import simplejson as json -import uuid - -from sqlalchemy import Column, ColumnDefault, Integer, String -from sqlalchemy import Float, Enum, DateTime, ForeignKey, Text, Boolean -from sqlalchemy import UniqueConstraint -from sqlalchemy.orm import relationship, backref -from sqlalchemy.ext.declarative import declarative_base -from sqlalchemy.ext.hybrid import hybrid_property - -from compass.utils import util - -from flask.ext.login import UserMixin -from itsdangerous import URLSafeTimedSerializer - -BASE = declarative_base() -#TODO(grace) SECRET_KEY should be generated when installing compass -#and save to a config file or DB -SECRET_KEY = "abcd" - -#This is used for generating a token by user's ID and -#decode the ID from this token -login_serializer = URLSafeTimedSerializer(SECRET_KEY) - - -class User(BASE, UserMixin): - """User table.""" - __tablename__ = 'user' - id = Column(Integer, primary_key=True) - email = Column(String(80), unique=True) - password = Column(String(225)) - active = Column(Boolean, default=True) - - def __init__(self, email, password, **kwargs): - self.email = email - self.password = self._set_password(password) - - def __repr__(self): - return '' % self.email - - def _set_password(self, password): - return self._hash_password(password) - - def get_password(self): - return self.password - - def valid_password(self, password): - return self.password == self._hash_password(password) - - def get_auth_token(self): - return login_serializer.dumps(self.id) - - def is_active(self): - return self.active - - def _hash_password(self, password): - return md5(password).hexdigest() - - -class SwitchConfig(BASE): - """Swtich Config table. - - :param id: The unique identifier of the switch config. - :param ip: The IP address of the switch. - :param filter_port: The port of the switch which need to be filtered. - """ - __tablename__ = 'switch_config' - id = Column(Integer, primary_key=True) - ip = Column(String(80)) - filter_port = Column(String(16)) - __table_args__ = (UniqueConstraint('ip', 'filter_port', name='filter1'), ) - - def __init__(self, **kwargs): - super(SwitchConfig, self).__init__(**kwargs) - - -class Switch(BASE): - """Switch table. - - :param id: the unique identifier of the switch. int as primary key. - :param ip: the IP address of the switch. - :param vendor_info: the name of the vendor - :param credential_data: used for accessing and retrieving information - from the switch. Store json format as string. - :param state: Enum.'initialized/repolling': polling switch not complete to - learn all MAC addresses of devices connected to the switch; - 'unreachable': one of the final state, indicates that the - switch is unreachable at this time, no MAC address could be - retrieved from the switch. - 'notsupported': one of the final state, indicates that the - vendor found is not supported yet, no MAC address will be - retrieved from the switch. - 'error': one of the final state, indicates that something - wrong happend. - 'under_monitoring': one of the final state, indicates that - MAC addresses has been learned successfully from the switch. - :param err_msg: Error message when polling switch failed. - :param machines: refer to list of Machine connected to the switch. - """ - __tablename__ = 'switch' - - id = Column(Integer, primary_key=True) - ip = Column(String(80), unique=True) - credential_data = Column(Text) - vendor_info = Column(String(256), nullable=True) - state = Column(Enum('initialized', 'unreachable', 'notsupported', - 'repolling', 'error', 'under_monitoring', - name='switch_state'), - default='initialized') - err_msg = Column(Text) - - def __init__(self, **kwargs): - super(Switch, self).__init__(**kwargs) - - def __repr__(self): - return ''\ - % (self.ip, self.credential, self.vendor, self.state) - - @hybrid_property - def vendor(self): - """vendor property getter""" - return self.vendor_info - - @vendor.setter - def vendor(self, value): - """vendor property setter""" - self.vendor_info = value - - @property - def credential(self): - """credential data getter. - - :returns: python primitive dictionary object. - """ - if self.credential_data: - try: - credential = json.loads(self.credential_data) - return credential - except Exception as error: - logging.error('failed to load credential data %s: %s', - self.id, self.credential_data) - logging.exception(error) - raise error - else: - return {} - - @credential.setter - def credential(self, value): - """credential property setter - - :param value: dict of configuration data needed to update. - """ - if value: - try: - credential = {} - if self.credential_data: - credential = json.loads(self.credential_data) - - credential.update(value) - self.credential_data = json.dumps(credential) - - except Exception as error: - logging.error('failed to dump credential data %s: %s', - self.id, value) - logging.exception(error) - raise error - - else: - self.credential_data = json.dumps({}) - - logging.debug('switch now is %s', self) - - -class Machine(BASE): - """Machine table. - - .. note:: - currently, we are taking care of management plane. - Therefore, we assume one machine is connected to one switch. - - :param id: int, identity as primary key - :param mac: string, the MAC address of the machine. - :param switch_id: switch id that this machine connected on to. - :param port: nth port of the switch that this machine connected. - :param vlan: vlan id that this machine connected on to. - :param update_timestamp: last time this entry got updated. - :param switch: refer to the Switch the machine connects to. - """ - __tablename__ = 'machine' - - id = Column(Integer, primary_key=True) - mac = Column(String(24), default='') - port = Column(String(16), default='') - vlan = Column(Integer, default=0) - update_timestamp = Column(DateTime, default=datetime.now, - onupdate=datetime.now) - switch_id = Column(Integer, ForeignKey('switch.id', - onupdate='CASCADE', - ondelete='SET NULL')) - __table_args__ = (UniqueConstraint('mac', 'vlan', 'switch_id', - name='unique_machine'),) - switch = relationship('Switch', backref=backref('machines', - lazy='dynamic')) - - def __init__(self, **kwargs): - super(Machine, self).__init__(**kwargs) - - def __repr__(self): - return '' % ( - self.mac, self.port, self.vlan, self.switch) - - -class HostState(BASE): - """The state of the ClusterHost. - - :param id: int, identity as primary key. - :param state: Enum. 'UNINITIALIZED': the host is ready to setup. - 'INSTALLING': the host is not installing. - 'READY': the host is setup. - 'ERROR': the host has error. - :param progress: float, the installing progress from 0 to 1. - :param message: the latest installing message. - :param severity: Enum, the installing message severity. - ('INFO', 'WARNING', 'ERROR') - :param update_timestamp: the lastest timestamp the entry got updated. - :param host: refer to ClusterHost. - """ - __tablename__ = "host_state" - - id = Column(Integer, ForeignKey('cluster_host.id', - onupdate='CASCADE', - ondelete='CASCADE'), - primary_key=True) - state = Column(Enum('UNINITIALIZED', 'INSTALLING', 'READY', 'ERROR'), - ColumnDefault('UNINITIALIZED')) - progress = Column(Float, ColumnDefault(0.0)) - message = Column(String) - severity = Column(Enum('INFO', 'WARNING', 'ERROR'), ColumnDefault('INFO')) - update_timestamp = Column(DateTime, default=datetime.now, - onupdate=datetime.now) - host = relationship('ClusterHost', backref=backref('state', - uselist=False)) - - def __init__(self, **kwargs): - super(HostState, self).__init__(**kwargs) - - @hybrid_property - def hostname(self): - """hostname getter""" - return self.host.hostname - - @hybrid_property - def fullname(self): - """fullname getter""" - return self.host.fullname - - def __repr__(self): - return ( - '' - ) % ( - self.hostname, self.state, self.progress, - self.message, self.severity - ) - - -class ClusterState(BASE): - """The state of the Cluster. - - :param id: int, identity as primary key. - :param state: Enum, 'UNINITIALIZED': the cluster is ready to setup. - 'INSTALLING': the cluster is not installing. - 'READY': the cluster is setup. - 'ERROR': the cluster has error. - :param progress: float, the installing progress from 0 to 1. - :param message: the latest installing message. - :param severity: Enum, the installing message severity. - ('INFO', 'WARNING', 'ERROR'). - :param update_timestamp: the lastest timestamp the entry got updated. - :param cluster: refer to Cluster. - """ - __tablename__ = 'cluster_state' - id = Column(Integer, ForeignKey('cluster.id', - onupdate='CASCADE', - ondelete='CASCADE'), - primary_key=True) - state = Column(Enum('UNINITIALIZED', 'INSTALLING', 'READY', 'ERROR'), - ColumnDefault('UNINITIALIZED')) - progress = Column(Float, ColumnDefault(0.0)) - message = Column(String) - severity = Column(Enum('INFO', 'WARNING', 'ERROR'), ColumnDefault('INFO')) - update_timestamp = Column(DateTime, default=datetime.now, - onupdate=datetime.now) - cluster = relationship('Cluster', backref=backref('state', - uselist=False)) - - def __init__(self, **kwargs): - super(ClusterState, self).__init__(**kwargs) - - @hybrid_property - def clustername(self): - """clustername getter""" - return self.cluster.name - - def __repr__(self): - return ( - '' - ) % ( - self.clustername, self.state, self.progress, - self.message, self.severity - ) - - -class Cluster(BASE): - """Cluster configuration information. - - :param id: int, identity as primary key. - :param name: str, cluster name. - :param mutable: bool, if the Cluster is mutable. - :param security_config: str stores json formatted security information. - :param networking_config: str stores json formatted networking information. - :param partition_config: string stores json formatted parition information. - :param adapter_id: the refer id in the Adapter table. - :param raw_config: str stores json formatted other cluster information. - :param adapter: refer to the Adapter. - :param state: refer to the ClusterState. - """ - __tablename__ = 'cluster' - - id = Column(Integer, primary_key=True) - name = Column(String, unique=True) - mutable = Column(Boolean, default=True) - security_config = Column(Text) - networking_config = Column(Text) - partition_config = Column(Text) - adapter_id = Column(Integer, ForeignKey('adapter.id', - onupdate='CASCADE', - ondelete='SET NULL'), - nullable=True) - raw_config = Column(Text) - adapter = relationship("Adapter", backref=backref('clusters', - lazy='dynamic')) - - def __init__(self, **kwargs): - if 'name' not in kwargs or not kwargs['name']: - kwargs['name'] = str(uuid.uuid4()) - - super(Cluster, self).__init__(**kwargs) - - def __repr__(self): - return '' % (self.name, self.config) - - @property - def partition(self): - """partition getter""" - if self.partition_config: - try: - return json.loads(self.partition_config) - except Exception as error: - logging.error('failed to load security config %s: %s', - self.id, self.partition_config) - logging.exception(error) - raise error - else: - return {} - - @partition.setter - def partition(self, value): - """partition setter""" - logging.debug('cluster %s set partition %s', self.id, value) - if value: - try: - self.partition_config = json.dumps(value) - except Exception as error: - logging.error('failed to dump partition config %s: %s', - self.id, value) - logging.exception(error) - raise error - else: - self.partition_config = None - - @property - def security(self): - """security getter""" - if self.security_config: - try: - return json.loads(self.security_config) - except Exception as error: - logging.error('failed to load security config %s: %s', - self.id, self.security_config) - logging.exception(error) - raise error - else: - return {} - - @security.setter - def security(self, value): - """security setter""" - logging.debug('cluster %s set security %s', self.id, value) - if value: - try: - self.security_config = json.dumps(value) - except Exception as error: - logging.error('failed to dump security config %s: %s', - self.id, value) - logging.exception(error) - raise error - else: - self.security_config = None - - @property - def networking(self): - """networking getter""" - if self.networking_config: - try: - return json.loads(self.networking_config) - except Exception as error: - logging.error('failed to load networking config %s: %s', - self.id, self.networking_config) - logging.exception(error) - raise error - else: - return {} - - @networking.setter - def networking(self, value): - """networking setter.""" - logging.debug('cluster %s set networking %s', self.id, value) - if value: - try: - self.networking_config = json.dumps(value) - except Exception as error: - logging.error('failed to dump networking config %s: %s', - self.id, value) - logging.exception(error) - raise error - else: - self.networking_config = None - - @hybrid_property - def config(self): - """get config from security, networking, partition.""" - config = {} - if self.raw_config: - try: - config = json.loads(self.raw_config) - except Exception as error: - logging.error('failed to load raw config %s: %s', - self.id, self.raw_config) - logging.exception(error) - raise error - - util.merge_dict(config, {'security': self.security}) - util.merge_dict(config, {'networking': self.networking}) - util.merge_dict(config, {'partition': self.partition}) - util.merge_dict(config, {'clusterid': self.id, - 'clustername': self.name}) - return config - - @config.setter - def config(self, value): - """set config to security, networking, partition.""" - logging.debug('cluster %s set config %s', self.id, value) - if not value: - self.security = None - self.networking = None - self.partition = None - self.raw_config = None - return - - self.security = value.get('security') - self.networking = value.get('networking') - self.partition = value.get('partition') - - try: - self.raw_config = json.dumps(value) - except Exception as error: - logging.error('failed to dump raw config %s: %s', - self.id, value) - logging.exception(error) - raise error - - -class ClusterHost(BASE): - """ClusterHost information. - - :param id: int, identity as primary key. - :param machine_id: int, the id of the Machine. - :param cluster_id: int, the id of the Cluster. - :param mutable: if the ClusterHost information is mutable. - :param hostname: str, host name. - :param config_data: string, json formatted config data. - :param cluster: refer to Cluster the host in. - :param machine: refer to the Machine the host on. - :param state: refer to HostState indicates the host state. - """ - __tablename__ = 'cluster_host' - - id = Column(Integer, primary_key=True) - - machine_id = Column(Integer, ForeignKey('machine.id', - onupdate='CASCADE', - ondelete='CASCADE'), - nullable=True, unique=True) - - cluster_id = Column(Integer, ForeignKey('cluster.id', - onupdate='CASCADE', - ondelete='SET NULL'), - nullable=True) - - hostname = Column(String) - config_data = Column(Text) - mutable = Column(Boolean, default=True) - __table_args__ = (UniqueConstraint('cluster_id', 'hostname', - name='unique_host'),) - - cluster = relationship("Cluster", - backref=backref('hosts', lazy='dynamic')) - machine = relationship("Machine", - backref=backref('host', uselist=False)) - - def __init__(self, **kwargs): - if 'hostname' not in kwargs or not kwargs['hostname']: - kwargs['hostname'] = str(uuid.uuid4()) - - super(ClusterHost, self).__init__(**kwargs) - - def __repr__(self): - return '' % ( - self.hostname, self.cluster, self.machine) - - @hybrid_property - def fullname(self): - return '%s.%s' % (self.hostname, self.cluster.id) - - @property - def config(self): - """config getter.""" - config = {} - try: - if self.config_data: - config.update(json.loads(self.config_data)) - - config.update({ - 'hostid': self.id, - 'hostname': self.hostname, - }) - if self.cluster: - config.update({ - 'clusterid': self.cluster.id, - 'clustername': self.cluster.name, - 'fullname': self.fullname, - }) - - if self.machine: - util.merge_dict( - config, { - 'networking': { - 'interfaces': { - 'management': { - 'mac': self.machine.mac - } - } - }, - 'switch_port': self.machine.port, - 'vlan': self.machine.vlan, - }) - if self.machine.switch: - util.merge_dict( - config, {'switch_ip': self.machine.switch.ip}) - - except Exception as error: - logging.error('failed to load config %s: %s', - self.hostname, self.config_data) - logging.exception(error) - raise error - - return config - - @config.setter - def config(self, value): - """config setter""" - if not self.config_data: - config = { - } - self.config_data = json.dumps(config) - - if value: - try: - config = json.loads(self.config_data) - util.merge_dict(config, value) - - self.config_data = json.dumps(config) - except Exception as error: - logging.error('failed to dump config %s: %s', - self.hostname, value) - logging.exception(error) - raise error - - -class LogProgressingHistory(BASE): - """host installing log history for each file. - - :param id: int, identity as primary key. - :param pathname: str, the full path of the installing log file. unique. - :param position: int, the position of the log file it has processed. - :param partial_line: str, partial line of the log. - :param progressing: float, indicate the installing progress between 0 to 1. - :param message: str, str, the installing message. - :param severity: Enum, the installing message severity. - ('ERROR', 'WARNING', 'INFO') - :param line_matcher_name: str, the line matcher name of the log processor. - :param update_timestamp: datetime, the latest timestamp the entry updated. - """ - __tablename__ = 'log_progressing_history' - id = Column(Integer, primary_key=True) - pathname = Column(String, unique=True) - position = Column(Integer, ColumnDefault(0)) - partial_line = Column(Text) - progress = Column(Float, ColumnDefault(0.0)) - message = Column(Text) - severity = Column(Enum('ERROR', 'WARNING', 'INFO'), ColumnDefault('INFO')) - line_matcher_name = Column(String, ColumnDefault('start')) - update_timestamp = Column(DateTime, default=datetime.now, - onupdate=datetime.now) - - def __init__(self, **kwargs): - super(LogProgressingHistory, self).__init__(**kwargs) - - def __repr__(self): - return ( - 'LogProgressingHistory[%r: position %r,' - 'partial_line %r,progress %r,message %r,' - 'severity %r]' - ) % ( - self.pathname, self.position, - self.partial_line, - self.progress, - self.message, - self.severity - ) - - -class Adapter(BASE): - """Table stores ClusterHost installing Adapter information. - - :param id: int, identity as primary key. - :param name: string, adapter name, unique. - :param os: string, os name for installing the host. - :param target_system: string, target system to be installed on the host. - :param clusters: refer to the list of Cluster. - """ - __tablename__ = 'adapter' - id = Column(Integer, primary_key=True) - name = Column(String, unique=True) - os = Column(String) - target_system = Column(String) - __table_args__ = ( - UniqueConstraint('os', 'target_system', name='unique_adapter'),) - - def __init__(self, **kwargs): - super(Adapter, self).__init__(**kwargs) - - def __repr__(self): - return '' % ( - self.name, self.os, self.target_system - ) - - -class Role(BASE): - """The Role table stores avaiable roles of one target system. - - .. note:: - the host can be deployed to one or several roles in the cluster. - - :param id: int, identity as primary key. - :param name: role name. - :param target_system: str, the target_system. - :param description: str, the description of the role. - """ - __tablename__ = 'role' - id = Column(Integer, primary_key=True) - name = Column(String, unique=True) - target_system = Column(String) - description = Column(Text) - - def __init__(self, **kwargs): - super(Role, self).__init__(**kwargs) - - def __repr__(self): - return '' % ( - self.name, self.target_system, self.description) diff --git a/compass/db/models.py b/compass/db/models.py new file mode 100644 index 00000000..8c53feb4 --- /dev/null +++ b/compass/db/models.py @@ -0,0 +1,346 @@ +# Copyright 2014 Huawei Technologies Co. Ltd +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. + + +"""Database model""" +from datetime import datetime +from hashlib import md5 +import simplejson as json + + +from sqlalchemy import Table +from sqlalchemy import Column, Integer, String +from sqlalchemy import Enum, DateTime, ForeignKey, Text, Boolean +from sqlalchemy.ext.declarative import declarative_base +from sqlalchemy.ext.mutable import Mutable +from sqlalchemy.orm import relationship, backref +from sqlalchemy.types import TypeDecorator + + +from flask.ext.login import UserMixin +from itsdangerous import URLSafeTimedSerializer + + +BASE = declarative_base() +# TODO(grace) SECRET_KEY should be generated when installing compass +# and save to a config file or DB +SECRET_KEY = "abcd" + +# This is used for generating a token by user's ID and +# decode the ID from this token +login_serializer = URLSafeTimedSerializer(SECRET_KEY) + + +class JSONEncodedDict(TypeDecorator): + """Represents an immutable structure as a json-encoded string.""" + + impl = Text + + def process_bind_param(self, value, dialect): + if value is not None: + value = json.dumps(value) + return value + + def process_result_value(self, value, dialect): + if value is not None: + value = json.loads(value) + return value + + +class MutationDict(Mutable, dict): + @classmethod + def coerce(cls, key, value): + """Convert plain dictionaries to MutationDict.""" + + if not isinstance(value, MutationDict): + if isinstance(value, dict): + return MutationDict(value) + + # this call will raise ValueError + return Mutable.coerce(key, value) + else: + return value + + def __setitem__(self, key, value): + """Detect dictionary set events and emit change events.""" + + dict.__setitem__(self, key, value) + self.changed() + + def __delitem__(self, key): + """Detect dictionary del events and emit change events.""" + + dict.__delitem__(self, key) + self.changed() + + +class TimestampMixin(object): + created_at = Column(DateTime, default=lambda: datetime.now()) + updated_at = Column(DateTime, default=lambda: datetime.now(), + onupdate=lambda: datetime.now()) + + +class MetadataMixin(object): + name = Column(String(80), unique=True) + description = Column(String(200)) + + +class MetadataFieldMixin(object): + field = Column(String(80), unique=True) + ftype = Column(Enum('str', 'int', 'float', 'list', 'dict', 'bool')) + validator = Column(String(80)) + is_required = Column(Boolean, default=True) + description = Column(String(200)) + + +class HelperMixin(object): + def to_dict(self): + dict_info = self.__dict__.copy() + return self._to_dict(dict_info) + + def _to_dict(self, dict_info, extra_dict=None): + columns = ['created_at', 'updated_at', 'last_login_at'] + for key in columns: + if key in dict_info: + dict_info[key] = dict_info[key].ctime() + + dict_info.pop('_sa_instance_state') + if extra_dict: + dict_info.update(extra_dict) + + return dict_info + + +# User, Permission relation table +user_permission = Table('user_permission', BASE.metadata, + Column('user_id', Integer, ForeignKey('user.id')), + Column('permission_id', Integer, + ForeignKey('permission.id'))) + + +class User(BASE, UserMixin, HelperMixin): + """User table.""" + __tablename__ = 'user' + + id = Column(Integer, primary_key=True) + email = Column(String(80), unique=True) + password = Column(String(225)) + firstname = Column(String(80)) + lastname = Column(String(80)) + is_admin = Column(Boolean, default=False) + active = Column(Boolean, default=True) + created_at = Column(DateTime, default=lambda: datetime.now()) + last_login_at = Column(DateTime, default=lambda: datetime.now()) + permissions = relationship("Permission", secondary=user_permission) + + def __init__(self, email, password, **kwargs): + self.email = email + self.password = self._set_password(password) + + def __repr__(self): + return '' % self.email + + def _set_password(self, password): + return self._hash_password(password) + + def get_password(self): + return self.password + + def valid_password(self, password): + return self.password == self._hash_password(password) + + def get_auth_token(self): + return login_serializer.dumps(self.id) + + def is_active(self): + return self.active + + def _hash_password(self, password): + return md5(password).hexdigest() + + +class Permission(BASE): + """Permission table.""" + __tablename__ = 'permission' + + id = Column(Integer, primary_key=True) + name = Column(String(80), unique=True) + alias = Column(String(100)) + + def __init__(self, name, alias): + self.name = name + self.alias = alias + + +adapter_os = Table('adapter_os', BASE.metadata, + Column('adapter_id', Integer, ForeignKey('adapter.id')), + Column('os_id', Integer, ForeignKey('os.id'))) + + +class OperatingSystem(BASE): + """OS table.""" + __tablename__ = 'os' + + id = Column(Integer, primary_key=True) + name = Column(String(80), unique=True) + + +class Adapter(BASE, HelperMixin): + """Adapter table.""" + __tablename__ = "adapter" + + id = Column(Integer, primary_key=True) + name = Column(String(80), unique=True) + + roles = relationship("AdapterRole") + support_os = relationship("OperatingSystem", secondary=adapter_os) + # package_config = xxxx + + def to_dict(self): + oses = [] + for os in self.support_os: + oses.append({"name": os.name, "os_id": os.id}) + + extra_dict = { + "compatible_os": oses + } + dict_info = self.__dict__.copy() + del dict_info['support_os'] + + return self._to_dict(dict_info, extra_dict) + + +class AdapterRole(BASE): + """Adapter's roles.""" + + __tablename__ = "adapter_role" + id = Column(Integer, primary_key=True) + name = Column(String(80)) + adapter_id = Column(Integer, ForeignKey('adapter.id')) + + +package_config_metatdata_field = \ + Table('package_config_metadata_field', + BASE.metadata, + Column('package_config_metadata_id', + Integer, + ForeignKey('package_config_metadata.id')), + Column('package_config_field_id', + Integer, + ForeignKey('package_config_field.id'))) + + +class PackageConfigMetadata(BASE, MetadataMixin): + """Adapter config metadata.""" + + __tablename__ = "package_config_metadata" + + id = Column(Integer, primary_key=True) + parent_id = Column(Integer, ForeignKey(id)) + adapter_id = Column(Integer, ForeignKey('adapter.id')) + children = relationship("PackageConfigMetadata", + backref=backref('parent', remote_side=id)) + fields = relationship("PackageConfigField", + secondary=package_config_metatdata_field) + + def __init__(self, name, adapter_id, parent=None): + self.name = name + self.adapter_id = adapter_id + self.parent = parent + + +class PackageConfigField(BASE, MetadataFieldMixin): + """Adapter cofig metadata fields.""" + + __tablename__ = "package_config_field" + id = Column(Integer, primary_key=True) + + +os_config_metadata_field = Table('os_config_metadata_field', BASE.metadata, + Column('os_config_metadata_id', + Integer, + ForeignKey('os_config_metadata.id')), + Column('os_config_field_id', + Integer, + ForeignKey('os_config_field.id'))) + + +class OSConfigMetadata(BASE, MetadataMixin): + """OS config metadata.""" + + __tablename__ = "os_config_metadata" + + id = Column(Integer, primary_key=True) + os_id = Column(Integer, ForeignKey('os.id')) + parent_id = Column(Integer, ForeignKey(id)) + children = relationship("OSConfigMetadata", + backref=backref("parent", remote_side=id)) + fields = relationship('OSConfigField', + secondary=os_config_metadata_field) + + def __init__(self, name, os_id, parent=None): + self.name = name + self.os_id = os_id + self.parent = parent + + +class OSConfigField(BASE, MetadataFieldMixin, HelperMixin): + """OS config metadata fields.""" + + __tablename__ = 'os_config_field' + id = Column(Integer, primary_key=True) + + +class Cluster(BASE, TimestampMixin, HelperMixin): + """Cluster table.""" + + __tablename__ = "cluster" + + id = Column(Integer, primary_key=True) + name = Column(String(80), unique=True) + editable = Column(Boolean, default=True) + os_global_config = Column(MutationDict.as_mutable(JSONEncodedDict), + default={}) + package_global_config = Column(MutationDict.as_mutable(JSONEncodedDict), + default={}) + adapter_id = Column(Integer, ForeignKey('adapter.id')) + os_id = Column(Integer, ForeignKey('os.id')) + created_by = Column(Integer, ForeignKey('user.id')) + + owner = relationship('User') + # hosts = relationship('Host', secondary=cluster_host) + + def __init__(self, name, adapter_id, os_id, created_by): + self.name = name + self.adapter_id = adapter_id + self.os_id = os_id + self.created_by = created_by + + @property + def config(self): + config = {} + config.update(self.os_global_config) + config.update(self.package_global_config) + + return config + + def to_dict(self): + extra_info = { + 'created_by': self.owner.email, + 'hosts': [] + } + dict_info = self.__dict__.copy() + del dict_info['owner'] + + return self._to_dict(dict_info, extra_info) diff --git a/compass/db/validator.py b/compass/db/validator.py new file mode 100644 index 00000000..9159714e --- /dev/null +++ b/compass/db/validator.py @@ -0,0 +1,91 @@ +# Copyright 2014 Huawei Technologies Co. Ltd +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. + +"""Validator methods. Please note that functions below may not the best way + to do the validation. +""" +# TODO(xiaodong): please refactor/rewrite the following functions as necessary +import netaddr +import re +import socket + + +def is_valid_ip(ip_addr): + """Valid the format of an IP address.""" + if not ip_addr: + return False + + try: + socket.inet_aton(ip_addr) + except socket.error: + return False + + return True + + +def is_valid_ipNetowrk(ip_network): + """Valid the format of an Ip network.""" + + if not ip_network: + return False + + regex = (r'^(([0-9]|[1-9][0-9]|1[0-9]{2}|[1-2][0-4][0-9]|25[0-5])\.)' + r'{3}' + r'([0-9]|[1-9][0-9]|1[0-9]{2}|[1-2][0-4][0-9]|25[0-5])' + r'((\/[0-9]|\/[1-2][0-9]|\/[1-3][0-2]))$') + + if re.match(regex, ip_network): + return True + return False + + +def is_valid_netmask(ip_addr): + """Valid the format of a netmask.""" + if not ip_addr: + return False + + try: + ip_address = netaddr.IPAddress(ip_addr) + return ip_address.is_netmask() + + except Exception: + return False + + +def is_valid_gateway(ip_addr): + """Valid the format of gateway.""" + + if not ip_addr: + return False + + invalid_ip_prefix = ['0', '224', '169', '127'] + try: + # Check if ip_addr is an IP address and not start with 0 + ip_addr_prefix = ip_addr.split('.')[0] + if is_valid_ip(ip_addr) and ip_addr_prefix not in invalid_ip_prefix: + ip_address = netaddr.IPAddress(ip_addr) + if not ip_address.is_multicast(): + # Check if ip_addr is not multicast and reserved IP + return True + return False + except Exception: + return False + + +def is_valid_dnsServer(dns): + """Valid the format of DNS.""" + if dns and not is_valid_ip(dns): + return False + + return True diff --git a/compass/tests/__init__.py b/compass/tests/__init__.py index 4ee55a4c..e69de29b 100644 --- a/compass/tests/__init__.py +++ b/compass/tests/__init__.py @@ -1,13 +0,0 @@ -# Copyright 2014 Huawei Technologies Co. Ltd -# -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. diff --git a/compass/tests/actions/deploy/data/global_config b/compass/tests/actions/deploy/data/global_config deleted file mode 100644 index 7d590753..00000000 --- a/compass/tests/actions/deploy/data/global_config +++ /dev/null @@ -1,64 +0,0 @@ -networking = { - 'global': { - 'default_no_proxy': ['127.0.0.1', 'localhost'], - 'search_path_pattern': '%(clusterid)s.%(search_path)s %(search_path)s', - 'noproxy_pattern': '%(hostname)s.%(clusterid)s,%(ip)s' - }, - 'interfaces': { - 'management': { - 'dns_pattern': '%(hostname)s.%(clusterid)s.%(search_path)s', - 'netmask': '255.255.255.0', - 'nic': 'eth0', - 'promisc': 0, - }, - 'tenant': { - 'netmask': '255.255.255.0', - 'nic': 'eth0', - 'dns_pattern': 'virtual-%(hostname)s.%(clusterid)s.%(search_path)s', - 'promisc': 0, - }, - 'public': { - 'netmask': '255.255.255.0', - 'nic': 'eth1', - 'dns_pattern': 'floating-%(hostname)s.%(clusterid)s.%(search_path)s', - 'promisc': 1, - }, - 'storage': { - 'netmask': '255.255.255.0', - 'nic': 'eth0', - 'dns_pattern': 'storage-%(hostname)s.%(clusterid)s.%(search_path)s', - 'promisc': 0, - }, - }, -} - -security = { - 'server_credentials': { - 'username': 'root', - 'password': 'huawei', - }, - 'console_credentials': { - 'username': 'admin', - 'password': 'huawei', - }, - 'service_credentials': { - 'username': 'admin', - 'password': 'huawei', - }, -} - -role_assign_policy = { - 'policy_by_host_numbers': { - }, - 'default': { - 'roles': [], - 'maxs': {}, - 'mins': {}, - 'default_max': -1, - 'default_min': 0, - 'exclusives': [], - 'bundles': [], - }, -} - -testmode = False diff --git a/compass/tests/actions/deploy/data/global_config2 b/compass/tests/actions/deploy/data/global_config2 deleted file mode 100644 index bd7b47d7..00000000 --- a/compass/tests/actions/deploy/data/global_config2 +++ /dev/null @@ -1,64 +0,0 @@ -networking = { - 'global': { - 'default_no_proxy': ['127.0.0.1', 'localhost'], - 'search_path_pattern': '%(clusterid)s.%(search_path)s %(search_path)s', - 'noproxy_pattern': '%(hostname)s.%(clusterid)s,%(ip)s' - }, - 'interfaces': { - 'management': { - 'dns_pattern': '%(hostname)s.%(clusterid)s.%(search_path)s', - 'netmask': '255.255.255.0', - 'nic': 'eth0', - 'promisc': 0, - }, - 'tenant': { - 'netmask': '255.255.255.0', - 'nic': 'eth0', - 'dns_pattern': 'virtual-%(hostname)s.%(clusterid)s.%(search_path)s', - 'promisc': 0, - }, - 'public': { - 'netmask': '255.255.255.0', - 'nic': 'eth1', - 'dns_pattern': 'floating-%(hostname)s.%(clusterid)s.%(search_path)s', - 'promisc': 1, - }, - 'storage': { - 'netmask': '255.255.255.0', - 'nic': 'eth0', - 'dns_pattern': 'storage-%(hostname)s.%(clusterid)s.%(search_path)s', - 'promisc': 0, - }, - }, -} - -security = { - 'server_credentials': { - 'username': 'root', - 'password': 'huawei', - }, - 'console_credentials': { - 'username': 'admin', - 'password': 'huawei', - }, - 'service_credentials': { - 'username': 'admin', - 'password': 'huawei', - }, -} - -role_assign_policy = { - 'policy_by_host_numbers': { - }, - 'default': { - 'roles': [], - 'maxs': {}, - 'mins': {}, - 'default_max': -1, - 'default_min': 0, - 'exclusives': [], - 'bundles': [], - }, -} - -testmode = True diff --git a/compass/tests/actions/deploy/data/test1 b/compass/tests/actions/deploy/data/test1 deleted file mode 100644 index 9f117b9a..00000000 --- a/compass/tests/actions/deploy/data/test1 +++ /dev/null @@ -1,305 +0,0 @@ -import simplejson as json - -ADAPTERS = [ - {'name': 'CentOS_openstack', 'os': 'CentOS', 'target_system': 'openstack'}, -] -ROLES = [ - {'name': 'os-single-controller', 'target_system': 'openstack'}, - {'name': 'os-network', 'target_system': 'openstack'}, - {'name': 'os-compute-worker', 'target_system': 'openstack'}, -] -SWITCHES = [ - {'ip': '1.2.3.4', 'vendor_info': 'huawei', 'credential_data': json.dumps({'version': 'v2c', 'community': 'public'})}, -] -MACHINES_BY_SWITCH = { - '1.2.3.4': [ - {'mac': '00:00:01:02:03:04', 'port': 1, 'vlan': 1}, - ], -} -CLUSTERS = [ - { - 'name': 'cluster1', - 'adapter': 'CentOS_openstack', - 'mutable': False, - 'security_config': json.dumps({ - 'server_credentials': { - 'username': 'root', 'password': 'huawei' - }, - 'service_credentials': { - 'username': 'service', 'password': 'huawei' - }, - 'console_credentials': { - 'username': 'admin', 'password': 'huawei' - } - }), - 'networking_config': json.dumps({ - 'interfaces': { - 'management': { - 'nic': 'eth0', - 'promisc': 0, - 'netmask': '255.255.255.0', - 'ip_end': '192.168.20.200', - 'gateway': '', - 'ip_start': '192.168.20.100' - }, - 'storage': { - 'nic': 'eth0', - 'promisc': 0, - 'netmask': '255.255.254.0', - 'ip_end': '10.145.88.200', - 'gateway': '10.145.88.1', - 'ip_start': '10.145.88.100' - }, - 'public': { - 'nic': 'eth2', - 'promisc': 1, - 'netmask': '255.255.254.0', - 'ip_end': '10.145.88.255', - 'gateway': '10.145.88.1', - 'ip_start': '10.145.88.100' - }, - 'tenant': { - 'nic': 'eth0', - 'promisc': 0, - 'netmask': '255.255.254.0', - 'ip_end': '10.145.88.120', - 'gateway': '10.145.88.1', - 'ip_start': '10.145.88.100' - } - }, - 'global': { - 'nameservers': '192.168.20.254', - 'proxy': 'http://192.168.20.254:3128', - 'ntp_server': '192.168.20.254', - 'search_path': 'ods.com', - 'gateway': '10.145.88.1' - }, - }), - 'partition_config': json.dumps('/home 20%%;/tmp 10%%;/var 30%%;'), - }, -] -HOSTS_BY_CLUSTER = { - 'cluster1': [ - { - 'hostname': 'host1', - 'mac': '00:00:01:02:03:04', - 'mutable': False, - 'config_data': json.dumps({ - 'networking': { - 'interfaces': { - 'management': { - 'ip': '192.168.20.100', - }, - }, - }, - 'roles': ["os-single-controller", "os-network", "os-compute-worker"], - }), - }, - ], -} - - -cobbler_MOCK = { - 'host_configs': [] -} - -chef_MOCK = { - 'configs': { - 'openstack': { - 'env_default': { - 'all_roles': { - 'os-single-controller': 'openstack controller node', - 'os-network': 'openstack network node', - 'os-compute-worker': 'openstack nova node' - }, - 'config_mapping': { - '/credential/identity/users/admin': '/security/console_credentials', - '/credential/identity/users/compute': '/security/service_credentials', - '/credential/identity/users/image': '/security/service_credentials', - '/credential/identity/users/metering': '/security/service_credentials', - '/credential/identity/users/network': '/security/service_credentials', - '/credential/identity/users/object-store': '/security/service_credentials', - '/credential/identity/users/volume': '/security/service_credentials', - '/credential/mysql/compute': '/security/service_credentials', - '/credential/mysql/dashboard': '/security/service_credentials', - '/credential/mysql/identity': '/security/service_credentials', - '/credential/mysql/image': '/security/service_credentials', - '/credential/mysql/metering': '/security/service_credentials', - '/credential/mysql/network': '/security/service_credentials', - '/credential/mysql/volume': '/security/service_credentials', - '/credential/mysql/super/password': '/security/service_credentials/password', - '/networking/control/interface': '/networking/interfaces/management/nic', - '/ntp/ntpserver': '/networking/global/ntp_server', - '/networking/storage/interface': '/networking/interfaces/storage/nic', - '/networking/public/interface': '/networking/interfaces/public/nic', - '/networking/tenant/interface': '/networking/interfaces/tenant/nic', - '/networking/plugins/ovs/gre/local_ip_interface': '/networking/interfaces/tenant/nic', - }, - 'role_mapping': { - 'os-single-controller': { - '/db/mysql/bind_address': '/networking/interfaces/management/ip', - '/mq/rabbitmq/bind_address': '/networking/interfaces/management/ip', - '/endpoints/compute/metadata/host': '/networking/interfaces/management/ip', - '/endpoints/compute/novnc/host': '/networking/interfaces/management/ip', - '/endpoints/compute/service/host': '/networking/interfaces/management/ip', - '/endpoints/compute/xvpvnc/host': '/networking/interfaces/management/ip', - '/endpoints/ec2/admin/host': '/networking/interfaces/management/ip', - '/endpoints/ec2/service/host': '/networking/interfaces/management/ip', - '/endpoints/identity/admin/host': '/networking/interfaces/management/ip', - '/endpoints/identity/service/host': '/networking/interfaces/management/ip', - '/endpoints/image/registry/host': '/networking/interfaces/management/ip', - '/endpoints/image/service/host': '/networking/interfaces/management/ip', - '/endpoints/metering/service/host': '/networking/interfaces/management/ip', - '/endpoints/network/service/host': '/networking/interfaces/management/ip', - '/endpoints/volume/service/host': '/networking/interfaces/management/ip' - }, - 'os-network': { - }, - 'os-compute-worker': { - } - }, - 'dashboard_roles': ['os-single-controller'], - 'role_assign_policy': { - 'default':{ - 'bundles': [], - 'exclusives': ['os-single-controller', 'os-network'], - 'roles': ['os-single-controller', 'os-network', 'os-compute-worker'], - 'default_min': 1, - 'default_max': 1, - 'maxs': {'os-compute-worker':-1} - }, - 'policy_by_host_numbers':{ - '1': { - 'bundles': [['os-single-controller', 'os-network', 'os-compute-worker']], - 'exclusives':[] - }, - '2': { - 'bundles': [['os-compute-worker','os-network']], - 'exclusives':['os-single-controller'] - }, - }, - }, - }, - }, - }, -} - -cobbler_EXPECTED = { - 'expected_host_configs': [{ - 'profile': 'CentOS', - 'name_servers_search': '1.ods.com ods.com', - 'name': 'host1.1', - 'hostname': 'host1', - 'modify_interface': { - 'dnsname-eth2': 'floating-host1.1.ods.com', - 'dnsname-eth0': u'host1.1.ods.com', - 'ipaddress-eth2': '10.145.88.100', - 'static-eth2': True, - 'static-eth0': True, - 'netmask-eth0': '255.255.255.0', - 'ipaddress-eth0': u'192.168.20.100', - 'netmask-eth2': '255.255.254.0', - 'macaddress-eth0': '00:00:01:02:03:04', - 'management-eth2': False, - 'management-eth0': True - }, - 'name_servers': '192.168.20.254', - 'gateway': '10.145.88.1', - 'ksmeta': { - 'username': u'root', - 'promisc_nics': 'eth2', - 'chef_url': 'https://localhost/', - 'tool': 'chef', - 'partition': '/home 20%%;/tmp 10%%;/var 30%%;', - 'proxy': 'http://192.168.20.254:3128', - 'ignore_proxy': '127.0.0.1,localhost,host1.1,192.168.20.100', - 'ntp_server': '192.168.20.254', - 'chef_client_name': 'host1.1', - 'chef_node_name': u'host1.1' - }, - }], -} - -chef_EXPECTED = { - 'expected_configs': { - 'host1.1': { - 'roles_per_target_system': { - 'openstack': ['os-single-controller', 'os-network', 'os-compute-worker'], - }, - 'cluster': '1', - 'run_list': ['role[os-single-controller]', 'role[os-network]', 'role[os-compute-worker]'] - }, - 'openstack': { - '1': { - 'credential': { - 'identity': { - 'users': { - 'compute': {'username': 'service', 'password': 'huawei'}, - 'network': {'username': 'service', 'password': 'huawei'}, - 'admin': {'username': 'admin', 'password': 'huawei'}, - 'image': {'username': 'service', 'password': 'huawei'}, - 'metering': {'username': 'service', 'password': 'huawei'}, - 'volume': {'username': 'service', 'password': 'huawei'}, - 'object-store': {'username': 'service', 'password': 'huawei'} - } - }, - 'mysql': { - 'compute': {'username': 'service', 'password': 'huawei'}, - 'network': {'username': 'service', 'password': 'huawei'}, - 'image': {'username': 'service', 'password': 'huawei'}, - 'metering': {'username': 'service', 'password': 'huawei'}, - 'volume': {'username': 'service', 'password': 'huawei'}, - 'dashboard': {'username': 'service', 'password': 'huawei'}, - 'super': {'password': 'huawei'}, - 'identity': {'username': 'service', 'password': 'huawei'} - } - }, - 'networking': { - 'control': {'interface': 'eth0'}, - 'storage': {'interface': 'eth0'}, - 'public': {'interface': 'eth2'}, - 'tenant': {'interface': 'eth0'} - }, - 'ntp': {'ntpserver': '192.168.20.254'}, - 'db': { - 'mysql': { - 'bind_address': '192.168.20.100' - } - }, - 'dashboard_roles': ['os-single-controller'], - 'mq': { - 'rabbitmq': {'bind_address': '192.168.20.100'} - }, - 'endpoints': { - 'compute': { - 'novnc': {'host': '192.168.20.100'}, - 'xvpvnc': {'host': '192.168.20.100'}, - 'service': {'host': '192.168.20.100'}, - 'metadata': {'host': '192.168.20.100'} - }, - 'network': { - 'service': {'host': '192.168.20.100'} - }, - 'image': { - 'registry': {'host': '192.168.20.100'}, - 'service': {'host': '192.168.20.100'} - }, - 'metering': { - 'service': {'host': '192.168.20.100'} - }, - 'volume': { - 'service': {'host': '192.168.20.100'} - }, - 'ec2': { - 'admin': {'host': '192.168.20.100'}, - 'service': {'host': '192.168.20.100'} - }, - 'identity': { - 'admin': {'host': u'192.168.20.100'}, - 'service': {'host': u'192.168.20.100'} - }, - }, - }, - }, - }, -} diff --git a/compass/tests/actions/deploy/data/test2 b/compass/tests/actions/deploy/data/test2 deleted file mode 100644 index 22516534..00000000 --- a/compass/tests/actions/deploy/data/test2 +++ /dev/null @@ -1,360 +0,0 @@ -import simplejson as json - -ADAPTERS = [ - {'name': 'CentOS_openstack', 'os': 'CentOS', 'target_system': 'openstack'}, -] -ROLES = [ - {'name': 'os-single-controller', 'target_system': 'openstack'}, - {'name': 'os-network', 'target_system': 'openstack'}, - {'name': 'os-compute-worker', 'target_system': 'openstack'}, -] -SWITCHES = [ - {'ip': '1.2.3.4', 'vendor_info': 'huawei', 'credential_data': json.dumps({'version': 'v2c', 'community': 'public'})}, -] -MACHINES_BY_SWITCH = { - '1.2.3.4': [ - {'mac': '00:00:01:02:03:04', 'port': 1, 'vlan': 1}, - {'mac': '00:00:01:02:03:05', 'port': 2, 'vlan': 2}, - ], -} -CLUSTERS = [ - { - 'name': 'cluster1', - 'adapter': 'CentOS_openstack', - 'mutable': False, - 'security_config': json.dumps({ - 'server_credentials': { - 'username': 'root', 'password': 'huawei' - }, - 'service_credentials': { - 'username': 'service', 'password': 'huawei' - }, - 'console_credentials': { - 'username': 'admin', 'password': 'huawei' - } - }), - 'networking_config': json.dumps({ - 'interfaces': { - 'management': { - 'nic': 'eth0', - 'promisc': 0, - 'netmask': '255.255.255.0', - 'ip_end': '192.168.20.200', - 'gateway': '', - 'ip_start': '192.168.20.100' - }, - 'storage': { - 'nic': 'eth0', - 'promisc': 0, - 'netmask': '255.255.254.0', - 'ip_end': '10.145.88.200', - 'gateway': '10.145.88.1', - 'ip_start': '10.145.88.100' - }, - 'public': { - 'nic': 'eth2', - 'promisc': 1, - 'netmask': '255.255.254.0', - 'ip_end': '10.145.88.255', - 'gateway': '10.145.88.1', - 'ip_start': '10.145.88.100' - }, - 'tenant': { - 'nic': 'eth0', - 'promisc': 0, - 'netmask': '255.255.254.0', - 'ip_end': '10.145.88.120', - 'gateway': '10.145.88.1', - 'ip_start': '10.145.88.100' - } - }, - 'global': { - 'nameservers': '192.168.20.254', - 'proxy': 'http://192.168.20.254:3128', - 'ntp_server': '192.168.20.254', - 'search_path': 'ods.com', - 'gateway': '10.145.88.1' - }, - }), - 'partition_config': json.dumps('/home 20%%;/tmp 10%%;/var 30%%;'), - }, -] -HOSTS_BY_CLUSTER = { - 'cluster1': [ - { - 'hostname': 'host1', - 'mac': '00:00:01:02:03:04', - 'mutable': False, - 'config_data': json.dumps({ - 'networking': { - 'interfaces': { - 'management': { - 'ip': '192.168.20.100', - }, - }, - }, - 'roles': ["os-single-controller"], - }), - },{ - 'hostname': 'host2', - 'mac': '00:00:01:02:03:05', - 'mutable': False, - 'config_data': json.dumps({ - 'networking': { - 'interfaces': { - 'management': { - 'ip': '192.168.20.101', - }, - }, - }, - 'roles': ["os-network", "os-compute-worker"], - }), - }, - - ], -} - - -cobbler_MOCK = { - 'host_configs': [] -} - -chef_MOCK = { - 'configs': { - 'openstack': { - 'env_default': { - 'all_roles': { - 'os-single-controller': 'openstack controller node', - 'os-network': 'openstack network node', - 'os-compute-worker': 'openstack nova node' - }, - 'dashboard_roles': ['os-single-controller'], - 'config_mapping': { - '/credential/identity/users/admin': '/security/console_credentials', - '/credential/identity/users/compute': '/security/service_credentials', - '/credential/identity/users/image': '/security/service_credentials', - '/credential/identity/users/metering': '/security/service_credentials', - '/credential/identity/users/network': '/security/service_credentials', - '/credential/identity/users/object-store': '/security/service_credentials', - '/credential/identity/users/volume': '/security/service_credentials', - '/credential/mysql/compute': '/security/service_credentials', - '/credential/mysql/dashboard': '/security/service_credentials', - '/credential/mysql/identity': '/security/service_credentials', - '/credential/mysql/image': '/security/service_credentials', - '/credential/mysql/metering': '/security/service_credentials', - '/credential/mysql/network': '/security/service_credentials', - '/credential/mysql/volume': '/security/service_credentials', - '/credential/mysql/super/password': '/security/service_credentials/password', - '/networking/control/interface': '/networking/interfaces/management/nic', - '/ntp/ntpserver': '/networking/global/ntp_server', - '/networking/storage/interface': '/networking/interfaces/storage/nic', - '/networking/public/interface': '/networking/interfaces/public/nic', - '/networking/tenant/interface': '/networking/interfaces/tenant/nic', - '/networking/plugins/ovs/gre/local_ip_interface': '/networking/interfaces/tenant/nic', - }, - 'role_mapping': { - 'os-single-controller': { - '/db/mysql/bind_address': '/networking/interfaces/management/ip', - '/mq/rabbitmq/bind_address': '/networking/interfaces/management/ip', - '/endpoints/compute/metadata/host': '/networking/interfaces/management/ip', - '/endpoints/compute/novnc/host': '/networking/interfaces/management/ip', - '/endpoints/compute/service/host': '/networking/interfaces/management/ip', - '/endpoints/compute/xvpvnc/host': '/networking/interfaces/management/ip', - '/endpoints/ec2/admin/host': '/networking/interfaces/management/ip', - '/endpoints/ec2/service/host': '/networking/interfaces/management/ip', - '/endpoints/identity/admin/host': '/networking/interfaces/management/ip', - '/endpoints/identity/service/host': '/networking/interfaces/management/ip', - '/endpoints/image/registry/host': '/networking/interfaces/management/ip', - '/endpoints/image/service/host': '/networking/interfaces/management/ip', - '/endpoints/metering/service/host': '/networking/interfaces/management/ip', - '/endpoints/network/service/host': '/networking/interfaces/management/ip', - '/endpoints/volume/service/host': '/networking/interfaces/management/ip' - }, - 'os-network': { - }, - 'os-compute-worker': { - } - }, - 'role_assign_policy': { - 'default':{ - 'bundles': [], - 'exclusives': ['os-single-controller', 'os-network'], - 'roles': ['os-single-controller', 'os-network', 'os-compute-worker'], - 'default_min': 1, - 'default_max': 1, - 'maxs': {'os-compute-worker':-1} - }, - 'policy_by_host_numbers':{ - '1': { - 'bundles': [['os-single-controller', 'os-network', 'os-compute-worker']], - 'exclusives':[] - }, - '2': { - 'bundles': [['os-network', 'os-compute-worker']], - 'exclusives':['os-single-controller'] - }, - }, - }, - }, - }, - }, -} - -cobbler_EXPECTED = { - 'expected_host_configs': [{ - 'profile': 'CentOS', - 'name_servers_search': '1.ods.com ods.com', - 'name': 'host1.1', - 'hostname': 'host1', - 'modify_interface': { - 'dnsname-eth2': 'floating-host1.1.ods.com', - 'dnsname-eth0': u'host1.1.ods.com', - 'ipaddress-eth2': '10.145.88.100', - 'static-eth2': True, - 'static-eth0': True, - 'netmask-eth0': '255.255.255.0', - 'ipaddress-eth0': u'192.168.20.100', - 'netmask-eth2': '255.255.254.0', - 'macaddress-eth0': '00:00:01:02:03:04', - 'management-eth2': False, - 'management-eth0': True - }, - 'name_servers': '192.168.20.254', - 'gateway': '10.145.88.1', - 'ksmeta': { - 'username': 'root', - 'promisc_nics': 'eth2', - 'chef_url': 'https://localhost/', - 'tool': 'chef', - 'partition': '/home 20%%;/tmp 10%%;/var 30%%;', - 'proxy': 'http://192.168.20.254:3128', - 'ignore_proxy': '127.0.0.1,localhost,host1.1,192.168.20.100,host2.1,192.168.20.101', - 'ntp_server': '192.168.20.254', - 'chef_client_name': 'host1.1', - 'chef_node_name': 'host1.1' - }, - },{ - 'profile': 'CentOS', - 'name_servers_search': '1.ods.com ods.com', - 'name': 'host2.1', - 'hostname': 'host2', - 'modify_interface': { - 'dnsname-eth2': 'floating-host2.1.ods.com', - 'dnsname-eth0': 'host2.1.ods.com', - 'ipaddress-eth2': '10.145.88.101', - 'static-eth2': True, - 'static-eth0': True, - 'netmask-eth0': '255.255.255.0', - 'ipaddress-eth0': u'192.168.20.101', - 'netmask-eth2': '255.255.254.0', - 'macaddress-eth0': '00:00:01:02:03:05', - 'management-eth2': False, - 'management-eth0': True - }, - 'name_servers': '192.168.20.254', - 'gateway': '10.145.88.1', - 'ksmeta': { - 'username': u'root', - 'promisc_nics': 'eth2', - 'chef_url': 'https://localhost/', - 'tool': 'chef', - 'partition': '/home 20%%;/tmp 10%%;/var 30%%;', - 'proxy': 'http://192.168.20.254:3128', - 'ignore_proxy': '127.0.0.1,localhost,host1.1,192.168.20.100,host2.1,192.168.20.101', - 'ntp_server': '192.168.20.254', - 'chef_client_name': 'host2.1', - 'chef_node_name': 'host2.1' - }, - }], -} - -chef_EXPECTED = { - 'expected_configs': { - 'host1.1': { - 'roles_per_target_system': { - 'openstack': ['os-single-controller'], - }, - 'cluster': '1', - 'run_list': ['role[os-single-controller]'] - }, - 'host2.1': { - 'roles_per_target_system': { - 'openstack': ['os-network', 'os-compute-worker'], - }, - 'cluster': '1', - 'run_list': ['role[os-network]', 'role[os-compute-worker]'] - }, - 'openstack': { - '1': { - 'credential': { - 'identity': { - 'users': { - 'compute': {'username': 'service', 'password': 'huawei'}, - 'network': {'username': 'service', 'password': 'huawei'}, - 'admin': {'username': 'admin', 'password': 'huawei'}, - 'image': {'username': 'service', 'password': 'huawei'}, - 'metering': {'username': 'service', 'password': 'huawei'}, - 'volume': {'username': 'service', 'password': 'huawei'}, - 'object-store': {'username': 'service', 'password': 'huawei'} - } - }, - 'mysql': { - 'compute': {'username': 'service', 'password': 'huawei'}, - 'network': {'username': 'service', 'password': 'huawei'}, - 'image': {'username': 'service', 'password': 'huawei'}, - 'metering': {'username': 'service', 'password': 'huawei'}, - 'volume': {'username': 'service', 'password': 'huawei'}, - 'dashboard': {'username': 'service', 'password': 'huawei'}, - 'super': {'password': 'huawei'}, - 'identity': {'username': 'service', 'password': 'huawei'} - } - }, - 'networking': { - 'control': {'interface': 'eth0'}, - 'storage': {'interface': 'eth0'}, - 'public': {'interface': 'eth2'}, - 'tenant': {'interface': 'eth0'} - }, - 'ntp': {'ntpserver': '192.168.20.254'}, - 'db': { - 'mysql': { - 'bind_address': '192.168.20.100' - } - }, - 'dashboard_roles': ['os-single-controller'], - 'mq': { - 'rabbitmq': {'bind_address': '192.168.20.100'} - }, - 'endpoints': { - 'compute': { - 'novnc': {'host': '192.168.20.100'}, - 'xvpvnc': {'host': '192.168.20.100'}, - 'service': {'host': '192.168.20.100'}, - 'metadata': {'host': '192.168.20.100'} - }, - 'network': { - 'service': {'host': '192.168.20.100'} - }, - 'image': { - 'registry': {'host': '192.168.20.100'}, - 'service': {'host': '192.168.20.100'} - }, - 'metering': { - 'service': {'host': '192.168.20.100'} - }, - 'volume': { - 'service': {'host': '192.168.20.100'} - }, - 'ec2': { - 'admin': {'host': '192.168.20.100'}, - 'service': {'host': '192.168.20.100'} - }, - 'identity': { - 'admin': {'host': u'192.168.20.100'}, - 'service': {'host': u'192.168.20.100'} - }, - }, - }, - }, - }, -} diff --git a/compass/tests/actions/deploy/data/test3 b/compass/tests/actions/deploy/data/test3 deleted file mode 100644 index 024b1e3b..00000000 --- a/compass/tests/actions/deploy/data/test3 +++ /dev/null @@ -1,600 +0,0 @@ -import simplejson as json - -ADAPTERS = [ - {'name': 'CentOS_openstack', 'os': 'CentOS', 'target_system': 'openstack'}, -] -ROLES = [ - {'name': 'os-single-controller', 'target_system': 'openstack'}, - {'name': 'os-network', 'target_system': 'openstack'}, - {'name': 'os-compute-worker', 'target_system': 'openstack'}, -] -SWITCHES = [ - {'ip': '1.2.3.4', 'vendor_info': 'huawei', 'credential_data': json.dumps({'version': 'v2c', 'community': 'public'})}, -] -MACHINES_BY_SWITCH = { - '1.2.3.4': [ - {'mac': '00:00:01:02:03:04', 'port': 1, 'vlan': 1}, - {'mac': '00:00:01:02:03:05', 'port': 1, 'vlan': 1}, - {'mac': '00:00:01:02:03:06', 'port': 1, 'vlan': 1}, - {'mac': '00:00:01:02:03:07', 'port': 1, 'vlan': 1}, - ], -} -CLUSTERS = [ - { - 'name': 'cluster1', - 'adapter': 'CentOS_openstack', - 'mutable': False, - 'security_config': json.dumps({ - 'server_credentials': { - 'username': 'root', 'password': 'huawei' - }, - 'service_credentials': { - 'username': 'service', 'password': 'huawei' - }, - 'console_credentials': { - 'username': 'admin', 'password': 'huawei' - } - }), - 'networking_config': json.dumps({ - 'interfaces': { - 'management': { - 'nic': 'eth0', - 'promisc': 0, - 'netmask': '255.255.255.0', - 'ip_end': '192.168.20.200', - 'gateway': '', - 'ip_start': '192.168.20.100' - }, - 'storage': { - 'nic': 'eth0', - 'promisc': 0, - 'netmask': '255.255.254.0', - 'ip_end': '10.145.88.200', - 'gateway': '10.145.88.1', - 'ip_start': '10.145.88.100' - }, - 'public': { - 'nic': 'eth2', - 'promisc': 1, - 'netmask': '255.255.254.0', - 'ip_end': '10.145.88.255', - 'gateway': '10.145.88.1', - 'ip_start': '10.145.88.100' - }, - 'tenant': { - 'nic': 'eth0', - 'promisc': 0, - 'netmask': '255.255.254.0', - 'ip_end': '10.145.88.120', - 'gateway': '10.145.88.1', - 'ip_start': '10.145.88.100' - } - }, - 'global': { - 'nameservers': '192.168.20.254', - 'proxy': 'http://192.168.20.254:3128', - 'ntp_server': '192.168.20.254', - 'search_path': 'ods.com', - 'gateway': '10.145.88.1' - }, - }), - 'partition_config': json.dumps('/home 20%%;/tmp 10%%;/var 30%%;'), - }, { - 'name': 'cluster2', - 'adapter': 'CentOS_openstack', - 'mutable': False, - 'security_config': json.dumps({ - 'server_credentials': { - 'username': 'root', 'password': 'huawei' - }, - 'service_credentials': { - 'username': 'service', 'password': 'huawei' - }, - 'console_credentials': { - 'username': 'admin', 'password': 'huawei' - } - }), - 'networking_config': json.dumps({ - 'interfaces': { - 'management': { - 'nic': 'eth0', - 'promisc': 0, - 'netmask': '255.255.255.0', - 'ip_end': '192.168.20.200', - 'gateway': '', - 'ip_start': '192.168.20.110' - }, - 'storage': { - 'nic': 'eth0', - 'promisc': 0, - 'netmask': '255.255.254.0', - 'ip_end': '10.145.88.200', - 'gateway': '10.145.88.1', - 'ip_start': '10.145.88.110' - }, - 'public': { - 'nic': 'eth2', - 'promisc': 1, - 'netmask': '255.255.254.0', - 'ip_end': '10.145.88.255', - 'gateway': '10.145.88.1', - 'ip_start': '10.145.88.110' - }, - 'tenant': { - 'nic': 'eth0', - 'promisc': 0, - 'netmask': '255.255.254.0', - 'ip_end': '10.145.88.120', - 'gateway': '10.145.88.1', - 'ip_start': '10.145.88.110' - } - }, - 'global': { - 'nameservers': '192.168.20.254', - 'proxy': 'http://192.168.20.254:3128', - 'ntp_server': '192.168.20.254', - 'search_path': 'ods.com', - 'gateway': '10.145.88.1' - }, - }), - 'partition_config': json.dumps('/home 20%%;/tmp 10%%;/var 30%%;'), - }, - -] -HOSTS_BY_CLUSTER = { - 'cluster1': [ - { - 'hostname': 'host1', - 'mac': '00:00:01:02:03:04', - 'mutable': False, - 'config_data': json.dumps({ - 'networking': { - 'interfaces': { - 'management': { - 'ip': '192.168.20.100', - }, - }, - }, - 'roles': ["os-single-controller"], - }), - }, { - 'hostname': 'host2', - 'mac': '00:00:01:02:03:05', - 'mutable': False, - 'config_data': json.dumps({ - 'networking': { - 'interfaces': { - 'management': { - 'ip': '192.168.20.101', - }, - }, - }, - 'roles': ["os-network", "os-compute-worker"], - }), - }, - ], - 'cluster2': [ - { - 'hostname': 'host1', - 'mac': '00:00:01:02:03:06', - 'mutable': False, - 'config_data': json.dumps({ - 'networking': { - 'interfaces': { - 'management': { - 'ip': '192.168.20.110', - }, - }, - }, - 'roles': ["os-single-controller"], - }), - }, { - 'hostname': 'host2', - 'mac': '00:00:01:02:03:07', - 'mutable': False, - 'config_data': json.dumps({ - 'networking': { - 'interfaces': { - 'management': { - 'ip': '192.168.20.111', - }, - }, - }, - 'roles': ["os-network", "os-compute-worker"], - }), - }, - ], -} - - -cobbler_MOCK = { - 'host_configs': [] -} - -chef_MOCK = { - 'configs': { - 'openstack': { - 'env_default': { - 'all_roles': { - 'os-single-controller': 'openstack controller node', - 'os-network': 'openstack network node', - 'os-compute-worker': 'openstack nova node' - }, - 'dashboard_roles': ['os-single-controller'], - 'config_mapping': { - '/credential/identity/users/admin': '/security/console_credentials', - '/credential/identity/users/compute': '/security/service_credentials', - '/credential/identity/users/image': '/security/service_credentials', - '/credential/identity/users/metering': '/security/service_credentials', - '/credential/identity/users/network': '/security/service_credentials', - '/credential/identity/users/object-store': '/security/service_credentials', - '/credential/identity/users/volume': '/security/service_credentials', - '/credential/mysql/compute': '/security/service_credentials', - '/credential/mysql/dashboard': '/security/service_credentials', - '/credential/mysql/identity': '/security/service_credentials', - '/credential/mysql/image': '/security/service_credentials', - '/credential/mysql/metering': '/security/service_credentials', - '/credential/mysql/network': '/security/service_credentials', - '/credential/mysql/volume': '/security/service_credentials', - '/credential/mysql/super/password': '/security/service_credentials/password', - '/networking/control/interface': '/networking/interfaces/management/nic', - '/ntp/ntpserver': '/networking/global/ntp_server', - '/networking/storage/interface': '/networking/interfaces/storage/nic', - '/networking/public/interface': '/networking/interfaces/public/nic', - '/networking/tenant/interface': '/networking/interfaces/tenant/nic', - '/networking/plugins/ovs/gre/local_ip_interface': '/networking/interfaces/tenant/nic', - }, - 'role_mapping': { - 'os-single-controller': { - '/db/mysql/bind_address': '/networking/interfaces/management/ip', - '/mq/rabbitmq/bind_address': '/networking/interfaces/management/ip', - '/endpoints/compute/metadata/host': '/networking/interfaces/management/ip', - '/endpoints/compute/novnc/host': '/networking/interfaces/management/ip', - '/endpoints/compute/service/host': '/networking/interfaces/management/ip', - '/endpoints/compute/xvpvnc/host': '/networking/interfaces/management/ip', - '/endpoints/ec2/admin/host': '/networking/interfaces/management/ip', - '/endpoints/ec2/service/host': '/networking/interfaces/management/ip', - '/endpoints/identity/admin/host': '/networking/interfaces/management/ip', - '/endpoints/identity/service/host': '/networking/interfaces/management/ip', - '/endpoints/image/registry/host': '/networking/interfaces/management/ip', - '/endpoints/image/service/host': '/networking/interfaces/management/ip', - '/endpoints/metering/service/host': '/networking/interfaces/management/ip', - '/endpoints/network/service/host': '/networking/interfaces/management/ip', - '/endpoints/volume/service/host': '/networking/interfaces/management/ip' - }, - 'os-network': { - }, - 'os-compute-worker': { - } - }, - 'role_assign_policy': { - 'default':{ - 'bundles': [], - 'exclusives': ['os-single-controller', 'os-network'], - 'roles': ['os-single-controller', 'os-network', 'os-compute-worker'], - 'default_min': 1, - 'default_max': 1, - 'maxs': {'os-compute-worker':-1} - }, - 'policy_by_host_numbers':{ - '1': { - 'bundles': [['os-single-controller', 'os-network', 'os-compute-worker']], - 'exclusives':[] - }, - '2': { - 'bundles': [['os-network', 'os-compute-worker']], - 'exclusives':['os-single-controller'] - }, - }, - }, - }, - }, - }, -} - -cobbler_EXPECTED = { - 'expected_host_configs': [{ - 'profile': 'CentOS', - 'name_servers_search': '1.ods.com ods.com', - 'name': 'host1.1', - 'hostname': 'host1', - 'modify_interface': { - 'dnsname-eth2': 'floating-host1.1.ods.com', - 'dnsname-eth0': u'host1.1.ods.com', - 'ipaddress-eth2': '10.145.88.100', - 'static-eth2': True, - 'static-eth0': True, - 'netmask-eth0': '255.255.255.0', - 'ipaddress-eth0': u'192.168.20.100', - 'netmask-eth2': '255.255.254.0', - 'macaddress-eth0': '00:00:01:02:03:04', - 'management-eth2': False, - 'management-eth0': True - }, - 'name_servers': '192.168.20.254', - 'gateway': '10.145.88.1', - 'ksmeta': { - 'username': u'root', - 'promisc_nics': 'eth2', - 'chef_url': 'https://localhost/', - 'tool': 'chef', - 'partition': '/home 20%%;/tmp 10%%;/var 30%%;', - 'proxy': 'http://192.168.20.254:3128', - 'ignore_proxy': '127.0.0.1,localhost,host1.1,192.168.20.100,host2.1,192.168.20.101', - 'ntp_server': '192.168.20.254', - 'chef_client_name': 'host1.1', - 'chef_node_name': u'host1.1' - }, - },{ - 'profile': 'CentOS', - 'name_servers_search': '1.ods.com ods.com', - 'name': 'host2.1', - 'hostname': 'host2', - 'modify_interface': { - 'dnsname-eth2': 'floating-host2.1.ods.com', - 'dnsname-eth0': u'host2.1.ods.com', - 'ipaddress-eth2': '10.145.88.101', - 'static-eth2': True, - 'static-eth0': True, - 'netmask-eth0': '255.255.255.0', - 'ipaddress-eth0': u'192.168.20.101', - 'netmask-eth2': '255.255.254.0', - 'macaddress-eth0': '00:00:01:02:03:05', - 'management-eth2': False, - 'management-eth0': True - }, - 'name_servers': '192.168.20.254', - 'gateway': '10.145.88.1', - 'ksmeta': { - 'username': u'root', - 'promisc_nics': 'eth2', - 'chef_url': 'https://localhost/', - 'tool': 'chef', - 'partition': '/home 20%%;/tmp 10%%;/var 30%%;', - 'proxy': 'http://192.168.20.254:3128', - 'ignore_proxy': '127.0.0.1,localhost,host1.1,192.168.20.100,host2.1,192.168.20.101', - 'ntp_server': '192.168.20.254', - 'chef_client_name': 'host2.1', - 'chef_node_name': u'host2.1' - }, - },{ - 'profile': 'CentOS', - 'name_servers_search': '2.ods.com ods.com', - 'name': 'host1.2', - 'hostname': 'host1', - 'modify_interface': { - 'dnsname-eth2': 'floating-host1.2.ods.com', - 'dnsname-eth0': u'host1.2.ods.com', - 'ipaddress-eth2': '10.145.88.110', - 'static-eth2': True, - 'static-eth0': True, - 'netmask-eth0': '255.255.255.0', - 'ipaddress-eth0': u'192.168.20.110', - 'netmask-eth2': '255.255.254.0', - 'macaddress-eth0': '00:00:01:02:03:06', - 'management-eth2': False, - 'management-eth0': True - }, - 'name_servers': '192.168.20.254', - 'gateway': '10.145.88.1', - 'ksmeta': { - 'username': u'root', - 'promisc_nics': 'eth2', - 'chef_url': 'https://localhost/', - 'tool': 'chef', - 'partition': '/home 20%%;/tmp 10%%;/var 30%%;', - 'proxy': 'http://192.168.20.254:3128', - 'ignore_proxy': '127.0.0.1,localhost,host1.2,192.168.20.110,host2.2,192.168.20.111', - 'ntp_server': '192.168.20.254', - 'chef_client_name': 'host1.2', - 'chef_node_name': u'host1.2' - }, - },{ - 'profile': 'CentOS', - 'name_servers_search': '2.ods.com ods.com', - 'name': 'host2.2', - 'hostname': 'host2', - 'modify_interface': { - 'dnsname-eth2': 'floating-host2.2.ods.com', - 'dnsname-eth0': u'host2.2.ods.com', - 'ipaddress-eth2': '10.145.88.111', - 'static-eth2': True, - 'static-eth0': True, - 'netmask-eth0': '255.255.255.0', - 'ipaddress-eth0': u'192.168.20.111', - 'netmask-eth2': '255.255.254.0', - 'macaddress-eth0': '00:00:01:02:03:07', - 'management-eth2': False, - 'management-eth0': True - }, - 'name_servers': '192.168.20.254', - 'gateway': '10.145.88.1', - 'ksmeta': { - 'username': u'root', - 'promisc_nics': 'eth2', - 'chef_url': 'https://localhost/', - 'tool': 'chef', - 'partition': '/home 20%%;/tmp 10%%;/var 30%%;', - 'proxy': 'http://192.168.20.254:3128', - 'ignore_proxy': '127.0.0.1,localhost,host1.2,192.168.20.110,host2.2,192.168.20.111', - 'ntp_server': '192.168.20.254', - 'chef_client_name': 'host2.2', - 'chef_node_name': u'host2.2' - }, - }], -} - -chef_EXPECTED = { - 'expected_configs': { - 'host1.1': { - 'roles_per_target_system': { - 'openstack': ['os-single-controller'], - }, - 'cluster': '1', - 'run_list': ['role[os-single-controller]'] - }, - 'host2.1': { - 'roles_per_target_system': { - 'openstack': ['os-network', 'os-compute-worker'], - }, - 'cluster': '1', - 'run_list': ['role[os-network]', 'role[os-compute-worker]'] - }, - 'host1.2': { - 'roles_per_target_system': { - 'openstack': ['os-single-controller'], - }, - 'cluster': '2', - 'run_list': ['role[os-single-controller]'] - }, - 'host2.2': { - 'roles_per_target_system': { - 'openstack': ['os-network', 'os-compute-worker'], - }, - 'cluster': '2', - 'run_list': ['role[os-network]', 'role[os-compute-worker]'] - }, - 'openstack': { - '1': { - 'credential': { - 'identity': { - 'users': { - 'compute': {'username': 'service', 'password': 'huawei'}, - 'network': {'username': 'service', 'password': 'huawei'}, - 'admin': {'username': 'admin', 'password': 'huawei'}, - 'image': {'username': 'service', 'password': 'huawei'}, - 'metering': {'username': 'service', 'password': 'huawei'}, - 'volume': {'username': 'service', 'password': 'huawei'}, - 'object-store': {'username': 'service', 'password': 'huawei'} - } - }, - 'mysql': { - 'compute': {'username': 'service', 'password': 'huawei'}, - 'network': {'username': 'service', 'password': 'huawei'}, - 'image': {'username': 'service', 'password': 'huawei'}, - 'metering': {'username': 'service', 'password': 'huawei'}, - 'volume': {'username': 'service', 'password': 'huawei'}, - 'dashboard': {'username': 'service', 'password': 'huawei'}, - 'super': {'password': 'huawei'}, - 'identity': {'username': 'service', 'password': 'huawei'} - } - }, - 'networking': { - 'control': {'interface': 'eth0'}, - 'storage': {'interface': 'eth0'}, - 'public': {'interface': 'eth2'}, - 'tenant': {'interface': 'eth0'} - }, - 'ntp': {'ntpserver': '192.168.20.254'}, - 'db': { - 'mysql': { - 'bind_address': '192.168.20.100' - } - }, - 'dashboard_roles': ['os-single-controller'], - 'mq': { - 'rabbitmq': {'bind_address': '192.168.20.100'} - }, - 'endpoints': { - 'compute': { - 'novnc': {'host': '192.168.20.100'}, - 'xvpvnc': {'host': '192.168.20.100'}, - 'service': {'host': '192.168.20.100'}, - 'metadata': {'host': '192.168.20.100'} - }, - 'network': { - 'service': {'host': '192.168.20.100'} - }, - 'image': { - 'registry': {'host': '192.168.20.100'}, - 'service': {'host': '192.168.20.100'} - }, - 'metering': { - 'service': {'host': '192.168.20.100'} - }, - 'volume': { - 'service': {'host': '192.168.20.100'} - }, - 'ec2': { - 'admin': {'host': '192.168.20.100'}, - 'service': {'host': '192.168.20.100'} - }, - 'identity': { - 'admin': {'host': u'192.168.20.100'}, - 'service': {'host': u'192.168.20.100'} - }, - }, - }, - '2': { - 'credential': { - 'identity': { - 'users': { - 'compute': {'username': 'service', 'password': 'huawei'}, - 'network': {'username': 'service', 'password': 'huawei'}, - 'admin': {'username': 'admin', 'password': 'huawei'}, - 'image': {'username': 'service', 'password': 'huawei'}, - 'metering': {'username': 'service', 'password': 'huawei'}, - 'volume': {'username': 'service', 'password': 'huawei'}, - 'object-store': {'username': 'service', 'password': 'huawei'} - } - }, - 'mysql': { - 'compute': {'username': 'service', 'password': 'huawei'}, - 'network': {'username': 'service', 'password': 'huawei'}, - 'image': {'username': 'service', 'password': 'huawei'}, - 'metering': {'username': 'service', 'password': 'huawei'}, - 'volume': {'username': 'service', 'password': 'huawei'}, - 'dashboard': {'username': 'service', 'password': 'huawei'}, - 'super': {'password': 'huawei'}, - 'identity': {'username': 'service', 'password': 'huawei'} - } - }, - 'networking': { - 'control': {'interface': 'eth0'}, - 'storage': {'interface': 'eth0'}, - 'public': {'interface': 'eth2'}, - 'tenant': {'interface': 'eth0'} - }, - 'ntp': {'ntpserver': '192.168.20.254'}, - 'db': { - 'mysql': { - 'bind_address': '192.168.20.110' - } - }, - 'dashboard_roles': ['os-single-controller'], - 'mq': { - 'rabbitmq': {'bind_address': '192.168.20.110'} - }, - 'endpoints': { - 'compute': { - 'novnc': {'host': '192.168.20.110'}, - 'xvpvnc': {'host': '192.168.20.110'}, - 'service': {'host': '192.168.20.110'}, - 'metadata': {'host': '192.168.20.110'} - }, - 'network': { - 'service': {'host': '192.168.20.110'} - }, - 'image': { - 'registry': {'host': '192.168.20.110'}, - 'service': {'host': '192.168.20.110'} - }, - 'metering': { - 'service': {'host': '192.168.20.110'} - }, - 'volume': { - 'service': {'host': '192.168.20.110'} - }, - 'ec2': { - 'admin': {'host': '192.168.20.110'}, - 'service': {'host': '192.168.20.110'} - }, - 'identity': { - 'admin': {'host': u'192.168.20.110'}, - 'service': {'host': u'192.168.20.110'} - }, - }, - }, - }, - }, -} diff --git a/compass/tests/actions/deploy/data/test4 b/compass/tests/actions/deploy/data/test4 deleted file mode 100644 index be072e90..00000000 --- a/compass/tests/actions/deploy/data/test4 +++ /dev/null @@ -1,267 +0,0 @@ -import simplejson as json - -ADAPTERS = [ - {'name': 'CentOS_openstack', 'os': 'CentOS', 'target_system': 'openstack'}, -] -ROLES = [ - {'name': 'os-single-controller', 'target_system': 'openstack'}, - {'name': 'os-network', 'target_system': 'openstack'}, - {'name': 'os-compute-worker', 'target_system': 'openstack'}, -] -SWITCHES = [ - {'ip': '1.2.3.4', 'vendor_info': 'huawei', 'credential_data': json.dumps({'version': 'v2c', 'community': 'public'})}, -] -MACHINES_BY_SWITCH = { - '1.2.3.4': [ - {'mac': '00:00:01:02:03:04', 'port': 1, 'vlan': 1}, - ], -} -CLUSTERS = [ - { - 'name': 'cluster1', - 'adapter': 'CentOS_openstack', - 'mutable': False, - 'security_config': json.dumps({ - 'server_credentials': { - 'username': 'root', 'password': 'huawei' - }, - 'service_credentials': { - 'username': 'service', 'password': 'huawei' - }, - 'console_credentials': { - 'username': 'admin', 'password': 'huawei' - } - }), - 'networking_config': json.dumps({ - 'interfaces': { - 'management': { - 'nic': 'eth0', - 'promisc': 0, - 'netmask': '255.255.255.0', - 'ip_end': '192.168.20.200', - 'gateway': '', - 'ip_start': '192.168.20.100' - }, - 'storage': { - 'nic': 'eth0', - 'promisc': 0, - 'netmask': '255.255.254.0', - 'ip_end': '10.145.88.200', - 'gateway': '10.145.88.1', - 'ip_start': '10.145.88.100' - }, - 'public': { - 'nic': 'eth2', - 'promisc': 1, - 'netmask': '255.255.254.0', - 'ip_end': '10.145.88.255', - 'gateway': '10.145.88.1', - 'ip_start': '10.145.88.100' - }, - 'tenant': { - 'nic': 'eth0', - 'promisc': 0, - 'netmask': '255.255.254.0', - 'ip_end': '10.145.88.120', - 'gateway': '10.145.88.1', - 'ip_start': '10.145.88.100' - } - }, - 'global': { - 'nameservers': '192.168.20.254', - 'proxy': 'http://192.168.20.254:3128', - 'ntp_server': '192.168.20.254', - 'search_path': 'ods.com', - 'gateway': '10.145.88.1' - }, - }), - 'partition_config': json.dumps('/home 20%%;/tmp 10%%;/var 30%%;'), - }, -] -HOSTS_BY_CLUSTER = { - 'cluster1': [ - { - 'hostname': 'host1', - 'mac': '00:00:01:02:03:04', - 'mutable': False, - 'config_data': json.dumps({ - 'netwoon.dumps(king': { - 'interfaces': { - 'management': { - 'ip': '192.168.20.100', - }, - }, - }, - 'roles': ["os-dashboard"], - }), - }, - ], -} - - -cobbler_MOCK = { - 'host_configs': [] -} - -chef_MOCK = { - 'configs': { - 'openstack': { - 'env_default': { - 'all_roles': { - 'os-single-controller': 'openstack controller node', - 'os-network': 'openstack network node', - 'os-compute-worker': 'openstack nova node' - }, - 'config_mapping': { - '/credential/identity/users/admin': '/security/console_credentials', - '/credential/identity/users/compute': '/security/service_credentials', - '/credential/identity/users/image': '/security/service_credentials', - '/credential/identity/users/metering': '/security/service_credentials', - '/credential/identity/users/network': '/security/service_credentials', - '/credential/identity/users/object-store': '/security/service_credentials', - '/credential/identity/users/volume': '/security/service_credentials', - '/credential/mysql/compute': '/security/service_credentials', - '/credential/mysql/dashboard': '/security/service_credentials', - '/credential/mysql/identity': '/security/service_credentials', - '/credential/mysql/image': '/security/service_credentials', - '/credential/mysql/metering': '/security/service_credentials', - '/credential/mysql/network': '/security/service_credentials', - '/credential/mysql/volume': '/security/service_credentials', - '/credential/mysql/super/password': '/security/service_credentials/password', - '/networking/control/interface': '/networking/interfaces/management/nic', - '/ntp/ntpserver': '/networking/global/ntp_server', - '/networking/storage/interface': '/networking/interfaces/storage/nic', - '/networking/public/interface': '/networking/interfaces/public/nic', - '/networking/tenant/interface': '/networking/interfaces/tenant/nic', - '/networking/plugins/ovs/gre/local_ip_interface': '/networking/interfaces/tenant/nic', - }, - 'role_mapping': { - 'os-single-controller': { - '/db/mysql/bind_address': '/networking/interfaces/management/ip', - '/mq/rabbitmq/bind_address': '/networking/interfaces/management/ip', - '/endpoints/compute/metadata/host': '/networking/interfaces/management/ip', - '/endpoints/compute/novnc/host': '/networking/interfaces/management/ip', - '/endpoints/compute/service/host': '/networking/interfaces/management/ip', - '/endpoints/compute/xvpvnc/host': '/networking/interfaces/management/ip', - '/endpoints/ec2/admin/host': '/networking/interfaces/management/ip', - '/endpoints/ec2/service/host': '/networking/interfaces/management/ip', - '/endpoints/identity/admin/host': '/networking/interfaces/management/ip', - '/endpoints/identity/service/host': '/networking/interfaces/management/ip', - '/endpoints/image/registry/host': '/networking/interfaces/management/ip', - '/endpoints/image/service/host': '/networking/interfaces/management/ip', - '/endpoints/metering/service/host': '/networking/interfaces/management/ip', - '/endpoints/network/service/host': '/networking/interfaces/management/ip', - '/endpoints/volume/service/host': '/networking/interfaces/management/ip' - }, - 'os-network': { - }, - 'os-compute-worker': { - } - }, - 'dashboard_roles': ['os-single-controller', 'os-dashboard'], - 'role_assign_policy': { - 'default':{ - 'bundles': [], - 'exclusives': ['os-single-controller', 'os-network'], - 'roles': ['os-single-controller', 'os-network', 'os-compute-worker'], - 'default_min': 1, - 'default_max': 1, - 'maxs': {'os-compute-worker':-1} - }, - 'policy_by_host_numbers':{ - '1': { - 'bundles': [['os-single-controller', 'os-network', 'os-compute-worker']], - 'exclusives':[] - }, - '2': { - 'bundles': [['os-network', 'os-compute-worker']], - 'exclusives':['os-single-controller'] - }, - }, - }, - }, - }, - }, -} - -cobbler_EXPECTED = { - 'expected_host_configs': [{ - 'profile': 'CentOS', - 'name_servers_search': '1.ods.com ods.com', - 'name': 'host1.1', - 'hostname': 'host1', - 'modify_interface': { - 'dnsname-eth2': 'floating-host1.1.ods.com', - 'dnsname-eth0': u'host1.1.ods.com', - 'ipaddress-eth2': '10.145.88.100', - 'static-eth2': True, - 'static-eth0': True, - 'netmask-eth0': '255.255.255.0', - 'ipaddress-eth0': u'192.168.20.100', - 'netmask-eth2': '255.255.254.0', - 'macaddress-eth0': '00:00:01:02:03:04', - 'management-eth2': False, - 'management-eth0': True - }, - 'name_servers': '192.168.20.254', - 'gateway': '10.145.88.1', - 'ksmeta': { - 'username': u'root', - 'promisc_nics': 'eth2', - 'chef_url': 'https://localhost/', - 'tool': 'chef', - 'partition': '/home 20%%;/tmp 10%%;/var 30%%;', - 'proxy': 'http://192.168.20.254:3128', - 'ignore_proxy': '127.0.0.1,localhost,host1.1,192.168.20.100', - 'ntp_server': '192.168.20.254', - 'chef_client_name': 'host1.1', - 'chef_node_name': u'host1.1' - }, - }], -} - -chef_EXPECTED = { - 'expected_configs': { - 'host1.1': { - 'roles_per_target_system': { - 'openstack': ['os-dashboard'], - }, - 'cluster': '1', - 'run_list': ['role[os-dashboard]'] - }, - 'openstack': { - '1': { - 'credential': { - 'identity': { - 'users': { - 'compute': {'username': 'service', 'password': 'huawei'}, - 'network': {'username': 'service', 'password': 'huawei'}, - 'admin': {'username': 'admin', 'password': 'huawei'}, - 'image': {'username': 'service', 'password': 'huawei'}, - 'metering': {'username': 'service', 'password': 'huawei'}, - 'volume': {'username': 'service', 'password': 'huawei'}, - 'object-store': {'username': 'service', 'password': 'huawei'} - } - }, - 'mysql': { - 'compute': {'username': 'service', 'password': 'huawei'}, - 'network': {'username': 'service', 'password': 'huawei'}, - 'image': {'username': 'service', 'password': 'huawei'}, - 'metering': {'username': 'service', 'password': 'huawei'}, - 'volume': {'username': 'service', 'password': 'huawei'}, - 'dashboard': {'username': 'service', 'password': 'huawei'}, - 'super': {'password': 'huawei'}, - 'identity': {'username': 'service', 'password': 'huawei'} - } - }, - 'networking': { - 'control': {'interface': 'eth0'}, - 'storage': {'interface': 'eth0'}, - 'public': {'interface': 'eth2'}, - 'tenant': {'interface': 'eth0'} - }, - 'ntp': {'ntpserver': '192.168.20.254'}, - }, - }, - }, -} diff --git a/compass/tests/actions/deploy/data/test5 b/compass/tests/actions/deploy/data/test5 deleted file mode 100644 index 3f0742d5..00000000 --- a/compass/tests/actions/deploy/data/test5 +++ /dev/null @@ -1,340 +0,0 @@ -import simplejson as json - -ADAPTERS = [ - {'name': 'CentOS_openstack', 'os': 'CentOS', 'target_system': 'openstack'}, -] -ROLES = [ - {'name': 'os-single-controller', 'target_system': 'openstack'}, - {'name': 'os-network', 'target_system': 'openstack'}, - {'name': 'os-compute-worker', 'target_system': 'openstack'}, -] -SWITCHES = [ - {'ip': '1.2.3.4', 'vendor_info': 'huawei', 'credential_data': json.dumps({'version': 'v2c', 'community': 'public'})}, -] -MACHINES_BY_SWITCH = { - '1.2.3.4': [ - {'mac': '00:00:01:02:03:04', 'port': 1, 'vlan': 1}, - ], -} -CLUSTERS = [ - { - 'name': 'cluster1', - 'adapter': 'CentOS_openstack', - 'mutable': False, - 'security_config': json.dumps({ - 'server_credentials': { - 'username': 'root', 'password': 'huawei' - }, - 'service_credentials': { - 'username': 'service', 'password': 'huawei' - }, - 'console_credentials': { - 'username': 'admin', 'password': 'huawei' - } - }), - 'networking_config': json.dumps({ - 'interfaces': { - 'management': { - 'nic': 'eth0', - 'promisc': 0, - 'netmask': '255.255.255.0', - 'ip_end': '192.168.20.200', - 'gateway': '', - 'ip_start': '192.168.20.100' - }, - 'storage': { - 'nic': 'eth0', - 'promisc': 0, - 'netmask': '255.255.254.0', - 'ip_end': '10.145.88.200', - 'gateway': '10.145.88.1', - 'ip_start': '10.145.88.100' - }, - 'public': { - 'nic': 'eth2', - 'promisc': 1, - 'netmask': '255.255.254.0', - 'ip_end': '10.145.88.255', - 'gateway': '10.145.88.1', - 'ip_start': '10.145.88.100' - }, - 'tenant': { - 'nic': 'eth0', - 'promisc': 0, - 'netmask': '255.255.254.0', - 'ip_end': '10.145.88.120', - 'gateway': '10.145.88.1', - 'ip_start': '10.145.88.100' - } - }, - 'global': { - 'nameservers': '192.168.20.254', - 'proxy': 'http://192.168.20.254:3128', - 'ntp_server': '192.168.20.254', - 'search_path': 'ods.com', - 'gateway': '10.145.88.1' - }, - }), - 'partition_config': json.dumps('/home 20%%;/tmp 10%%;/var 30%%;'), - }, -] -HOSTS_BY_CLUSTER = { - 'cluster1': [ - { - 'hostname': 'host1', - 'mac': '00:00:01:02:03:04', - 'mutable': False, - 'config_data': json.dumps({ - 'networking': { - 'interfaces': { - 'management': { - 'ip': '192.168.20.100', - }, - }, - }, - 'roles': ["os-single-controller", "os-network", "os-compute-worker"], - }), - }, - ], -} - - -cobbler_MOCK = { - 'host_configs': [] -} - -chef_MOCK = { - 'configs': { - 'openstack': { - 'env_default': { - 'all_roles': { - 'os-single-controller': 'openstack controller node', - 'os-network': 'openstack network node', - 'os-compute-worker': 'openstack nova node' - }, - 'test_roles': { - 'default': ['test-synclog'] - }, - 'debugging': { - 'debug': 'False', - 'verbose': 'False' - }, - 'config_mapping': { - '/credential/identity/users/admin': '/security/console_credentials', - '/credential/identity/users/compute': '/security/service_credentials', - '/credential/identity/users/image': '/security/service_credentials', - '/credential/identity/users/metering': '/security/service_credentials', - '/credential/identity/users/network': '/security/service_credentials', - '/credential/identity/users/object-store': '/security/service_credentials', - '/credential/identity/users/volume': '/security/service_credentials', - '/credential/mysql/compute': '/security/service_credentials', - '/credential/mysql/dashboard': '/security/service_credentials', - '/credential/mysql/identity': '/security/service_credentials', - '/credential/mysql/image': '/security/service_credentials', - '/credential/mysql/metering': '/security/service_credentials', - '/credential/mysql/network': '/security/service_credentials', - '/credential/mysql/volume': '/security/service_credentials', - '/credential/mysql/super/password': '/security/service_credentials/password', - '/networking/control/interface': '/networking/interfaces/management/nic', - '/ntp/ntpserver': '/networking/global/ntp_server', - '/networking/storage/interface': '/networking/interfaces/storage/nic', - '/networking/public/interface': '/networking/interfaces/public/nic', - '/networking/tenant/interface': '/networking/interfaces/tenant/nic', - '/networking/plugins/ovs/gre/local_ip_interface': '/networking/interfaces/tenant/nic', - }, - 'role_mapping': { - 'os-single-controller': { - '/db/mysql/bind_address': '/networking/interfaces/management/ip', - '/mq/rabbitmq/bind_address': '/networking/interfaces/management/ip', - '/endpoints/compute/metadata/host': '/networking/interfaces/management/ip', - '/endpoints/compute/novnc/host': '/networking/interfaces/management/ip', - '/endpoints/compute/service/host': '/networking/interfaces/management/ip', - '/endpoints/compute/xvpvnc/host': '/networking/interfaces/management/ip', - '/endpoints/ec2/admin/host': '/networking/interfaces/management/ip', - '/endpoints/ec2/service/host': '/networking/interfaces/management/ip', - '/endpoints/identity/admin/host': '/networking/interfaces/management/ip', - '/endpoints/identity/service/host': '/networking/interfaces/management/ip', - '/endpoints/image/registry/host': '/networking/interfaces/management/ip', - '/endpoints/image/service/host': '/networking/interfaces/management/ip', - '/endpoints/metering/service/host': '/networking/interfaces/management/ip', - '/endpoints/network/service/host': '/networking/interfaces/management/ip', - '/endpoints/volume/service/host': '/networking/interfaces/management/ip' - }, - 'os-network': { - }, - 'os-compute-worker': { - } - }, - 'dashboard_roles': ['os-single-controller'], - 'role_assign_policy': { - 'default':{ - 'bundles': [], - 'exclusives': ['os-single-controller', 'os-network'], - 'roles': ['os-single-controller', 'os-network', 'os-compute-worker'], - 'default_min': 1, - 'default_max': 1, - 'maxs': {'os-compute-worker': -1}, - 'default_dependencies': [], - 'dependencies': {'default': ['test-synclog']} - }, - 'policy_by_host_numbers':{ - '1': { - 'bundles': [['os-single-controller', 'os-network', 'os-compute-worker']], - 'exclusives':[] - }, - '2': { - 'bundles': [['os-network', 'os-compute-worker']], - 'exclusives':['os-single-controller'] - }, - }, - }, - }, - }, - }, -} - -cobbler_EXPECTED = { - 'expected_host_configs': [{ - 'profile': 'CentOS', - 'name_servers_search': '1.ods.com ods.com', - 'name': 'host1.1', - 'hostname': 'host1', - 'modify_interface': { - 'dnsname-eth2': 'floating-host1.1.ods.com', - 'dnsname-eth0': u'host1.1.ods.com', - 'ipaddress-eth2': '10.145.88.100', - 'static-eth2': True, - 'static-eth0': True, - 'netmask-eth0': '255.255.255.0', - 'ipaddress-eth0': u'192.168.20.100', - 'netmask-eth2': '255.255.254.0', - 'macaddress-eth0': '00:00:01:02:03:04', - 'management-eth2': False, - 'management-eth0': True - }, - 'name_servers': '192.168.20.254', - 'gateway': '10.145.88.1', - 'ksmeta': { - 'username': u'root', - 'promisc_nics': 'eth2', - 'chef_url': 'https://localhost/', - 'tool': 'chef', - 'partition': '/home 20%%;/tmp 10%%;/var 30%%;', - 'proxy': 'http://192.168.20.254:3128', - 'ignore_proxy': '127.0.0.1,localhost,host1.1,192.168.20.100', - 'ntp_server': '192.168.20.254', - 'chef_client_name': 'host1.1', - 'chef_node_name': u'host1.1' - }, - }], -} - -chef_EXPECTED = { - 'expected_configs': { - 'host1.1': { - 'roles_per_target_system': { - 'openstack': ['test-synclog', 'os-single-controller', 'os-network', 'os-compute-worker'], - }, - 'cluster': '1', - 'run_list': ['role[test-synclog]', 'role[os-single-controller]', 'role[os-network]', 'role[os-compute-worker]'] - }, - 'openstack': { - '1': { - 'credential': { - 'identity': { - 'users': { - 'compute': {'username': 'service', 'password': 'huawei'}, - 'network': {'username': 'service', 'password': 'huawei'}, - 'admin': {'username': 'admin', 'password': 'huawei'}, - 'image': {'username': 'service', 'password': 'huawei'}, - 'metering': {'username': 'service', 'password': 'huawei'}, - 'volume': {'username': 'service', 'password': 'huawei'}, - 'object-store': {'username': 'service', 'password': 'huawei'} - } - }, - 'mysql': { - 'compute': {'username': 'service', 'password': 'huawei'}, - 'network': {'username': 'service', 'password': 'huawei'}, - 'image': {'username': 'service', 'password': 'huawei'}, - 'metering': {'username': 'service', 'password': 'huawei'}, - 'volume': {'username': 'service', 'password': 'huawei'}, - 'dashboard': {'username': 'service', 'password': 'huawei'}, - 'super': {'password': 'huawei'}, - 'identity': {'username': 'service', 'password': 'huawei'} - } - }, - 'networking': { - 'control': {'interface': 'eth0'}, - 'storage': {'interface': 'eth0'}, - 'public': {'interface': 'eth2'}, - 'tenant': {'interface': 'eth0'} - }, - 'debugging': { - 'debug': 'True', - 'verbose': 'True' - }, - 'ntp': {'ntpserver': '192.168.20.254'}, - 'db': { - 'mysql': { - 'bind_address': '192.168.20.100' - } - }, - 'role_assign_policy': { - 'default':{ - 'bundles': [], - 'exclusives': ['os-single-controller', 'os-network'], - 'roles': ['os-single-controller', 'os-network', 'os-compute-worker'], - 'default_min': 1, - 'default_max': 1, - 'maxs': {'os-compute-worker':-1}, - 'default_dependencies': [], - 'dependencies': {'default': ['test-synclog']} - }, - 'policy_by_host_numbers':{ - '1': { - 'bundles': [['os-single-controller', 'os-network', 'os-compute-worker']], - 'exclusives':[] - }, - '2': { - 'bundles': [['os-network', 'os-compute-worker']], - 'exclusives':['os-single-controller'] - }, - }, - }, - 'dashboard_roles': ['os-single-controller'], - 'mq': { - 'rabbitmq': {'bind_address': '192.168.20.100'} - }, - 'endpoints': { - 'compute': { - 'novnc': {'host': '192.168.20.100'}, - 'xvpvnc': {'host': '192.168.20.100'}, - 'service': {'host': '192.168.20.100'}, - 'metadata': {'host': '192.168.20.100'} - }, - 'network': { - 'service': {'host': '192.168.20.100'} - }, - 'image': { - 'registry': {'host': '192.168.20.100'}, - 'service': {'host': '192.168.20.100'} - }, - 'metering': { - 'service': {'host': '192.168.20.100'} - }, - 'volume': { - 'service': {'host': '192.168.20.100'} - }, - 'ec2': { - 'admin': {'host': '192.168.20.100'}, - 'service': {'host': '192.168.20.100'} - }, - 'identity': { - 'admin': {'host': u'192.168.20.100'}, - 'service': {'host': u'192.168.20.100'} - }, - }, - }, - }, - }, -} diff --git a/compass/tests/actions/deploy/data/test6 b/compass/tests/actions/deploy/data/test6 deleted file mode 100644 index 0bb77256..00000000 --- a/compass/tests/actions/deploy/data/test6 +++ /dev/null @@ -1,780 +0,0 @@ -import simplejson as json - -ADAPTERS = [ - {'name': 'CentOS_openstack', 'os': 'CentOS', 'target_system': 'openstack'}, -] -ROLES = [ - {'name': 'os-single-controller', 'target_system': 'openstack'}, - {'name': 'os-network', 'target_system': 'openstack'}, - {'name': 'os-compute-worker', 'target_system': 'openstack'}, -] -SWITCHES = [ - {'ip': '1.2.3.4', 'vendor_info': 'huawei', 'credential_data': json.dumps({'version': 'v2c', 'community': 'public'})}, -] -MACHINES_BY_SWITCH = { - '1.2.3.4': [ - {'mac': '00:00:01:02:03:04', 'port': 1, 'vlan': 1}, - {'mac': '00:00:01:02:03:05', 'port': 2, 'vlan': 1}, - {'mac': '00:00:01:02:03:06', 'port': 3, 'vlan': 1}, - {'mac': '00:00:01:02:03:07', 'port': 4, 'vlan': 1}, - {'mac': '00:00:01:02:03:08', 'port': 5, 'vlan': 1}, - {'mac': '00:00:01:02:03:09', 'port': 6, 'vlan': 1}, - {'mac': '00:00:01:02:03:10', 'port': 7, 'vlan': 1}, - {'mac': '00:00:01:02:03:11', 'port': 8, 'vlan': 1}, - {'mac': '00:00:01:02:03:12', 'port': 9, 'vlan': 1}, - {'mac': '00:00:01:02:03:13', 'port': 10, 'vlan': 1}, - ], -} -CLUSTERS = [ - { - 'name': 'cluster1', - 'adapter': 'CentOS_openstack', - 'mutable': False, - 'security_config': json.dumps({ - 'server_credentials': { - 'username': 'root', 'password': 'huawei' - }, - 'service_credentials': { - 'username': 'service', 'password': 'huawei' - }, - 'console_credentials': { - 'username': 'admin', 'password': 'huawei' - } - }), - 'networking_config': json.dumps({ - 'interfaces': { - 'management': { - 'nic': 'eth0', - 'promisc': 0, - 'netmask': '255.255.255.0', - 'ip_end': '192.168.20.200', - 'gateway': '', - 'ip_start': '192.168.20.100' - }, - 'storage': { - 'nic': 'eth0', - 'promisc': 0, - 'netmask': '255.255.254.0', - 'ip_end': '10.145.88.200', - 'gateway': '10.145.88.1', - 'ip_start': '10.145.88.100' - }, - 'public': { - 'nic': 'eth2', - 'promisc': 1, - 'netmask': '255.255.254.0', - 'ip_end': '10.145.88.255', - 'gateway': '10.145.88.1', - 'ip_start': '10.145.88.100' - }, - 'tenant': { - 'nic': 'eth0', - 'promisc': 0, - 'netmask': '255.255.254.0', - 'ip_end': '10.145.88.120', - 'gateway': '10.145.88.1', - 'ip_start': '10.145.88.100' - } - }, - 'global': { - 'nameservers': '192.168.20.254', - 'proxy': 'http://192.168.20.254:3128', - 'ntp_server': '192.168.20.254', - 'search_path': 'ods.com', - 'gateway': '10.145.88.1' - }, - }), - 'partition_config': json.dumps('/home 20%%;/tmp 10%%;/var 30%%;'), - }, -] -HOSTS_BY_CLUSTER = { - 'cluster1': [ - { - 'hostname': 'host1', - 'mac': '00:00:01:02:03:04', - 'mutable': False, - 'config_data': json.dumps({ - 'networking': { - 'interfaces': { - 'management': { - 'ip': '192.168.20.100', - }, - }, - }, - 'roles': [], - }), - }, - { - 'hostname': 'host2', - 'mac': '00:00:01:02:03:05', - 'mutable': False, - 'config_data': json.dumps({ - 'networking': { - 'interfaces': { - 'management': { - 'ip': '192.168.20.101', - }, - }, - }, - 'roles': [], - }), - }, - { - 'hostname': 'host3', - 'mac': '00:00:01:02:03:06', - 'mutable': False, - 'config_data': json.dumps({ - 'networking': { - 'interfaces': { - 'management': { - 'ip': '192.168.20.102', - }, - }, - }, - 'roles': [], - }), - }, - { - 'hostname': 'host4', - 'mac': '00:00:01:02:03:07', - 'mutable': False, - 'config_data': json.dumps({ - 'networking': { - 'interfaces': { - 'management': { - 'ip': '192.168.20.103', - }, - }, - }, - 'roles': ["os-compute-worker"], - }), - }, - { - 'hostname': 'host5', - 'mac': '00:00:01:02:03:08', - 'mutable': False, - 'config_data': json.dumps({ - 'networking': { - 'interfaces': { - 'management': { - 'ip': '192.168.20.104', - }, - }, - }, - 'roles': [], - }), - }, - { - 'hostname': 'host6', - 'mac': '00:00:01:02:03:09', - 'mutable': False, - 'config_data': json.dumps({ - 'networking': { - 'interfaces': { - 'management': { - 'ip': '192.168.20.105', - }, - }, - }, - 'roles': [], - }), - }, - { - 'hostname': 'host7', - 'mac': '00:00:01:02:03:10', - 'mutable': False, - 'config_data': json.dumps({ - 'networking': { - 'interfaces': { - 'management': { - 'ip': '192.168.20.106', - }, - }, - }, - 'roles': [], - }), - }, - { - 'hostname': 'host8', - 'mac': '00:00:01:02:03:11', - 'mutable': False, - 'config_data': json.dumps({ - 'networking': { - 'interfaces': { - 'management': { - 'ip': '192.168.20.107', - }, - }, - }, - 'roles': [], - }), - }, - { - 'hostname': 'host9', - 'mac': '00:00:01:02:03:12', - 'mutable': False, - 'config_data': json.dumps({ - 'networking': { - 'interfaces': { - 'management': { - 'ip': '192.168.20.108', - }, - }, - }, - 'roles': [], - }), - }, - { - 'hostname': 'host10', - 'mac': '00:00:01:02:03:13', - 'mutable': False, - 'config_data': json.dumps({ - 'networking': { - 'interfaces': { - 'management': { - 'ip': '192.168.20.109', - }, - }, - }, - 'roles': [], - }), - }, - ], -} - - -cobbler_MOCK = { - 'host_configs': [] -} - -chef_MOCK = { - 'configs': { - 'openstack': { - 'env_default': { - 'all_roles': { - 'os-single-controller': 'openstack controller node', - 'os-network': 'openstack network node', - 'os-compute-worker': 'openstack nova node' - }, - 'config_mapping': { - '/credential/identity/users/admin': '/security/console_credentials', - '/credential/identity/users/compute': '/security/service_credentials', - '/credential/identity/users/image': '/security/service_credentials', - '/credential/identity/users/metering': '/security/service_credentials', - '/credential/identity/users/network': '/security/service_credentials', - '/credential/identity/users/object-store': '/security/service_credentials', - '/credential/identity/users/volume': '/security/service_credentials', - '/credential/mysql/compute': '/security/service_credentials', - '/credential/mysql/dashboard': '/security/service_credentials', - '/credential/mysql/identity': '/security/service_credentials', - '/credential/mysql/image': '/security/service_credentials', - '/credential/mysql/metering': '/security/service_credentials', - '/credential/mysql/network': '/security/service_credentials', - '/credential/mysql/volume': '/security/service_credentials', - '/credential/mysql/super/password': '/security/service_credentials/password', - '/networking/control/interface': '/networking/interfaces/management/nic', - '/ntp/ntpserver': '/networking/global/ntp_server', - '/networking/storage/interface': '/networking/interfaces/storage/nic', - '/networking/public/interface': '/networking/interfaces/public/nic', - '/networking/tenant/interface': '/networking/interfaces/tenant/nic', - '/networking/plugins/ovs/gre/local_ip_interface': '/networking/interfaces/tenant/nic', - }, - 'role_mapping': { - 'os-single-controller': { - '/db/mysql/bind_address': '/networking/interfaces/management/ip', - '/mq/rabbitmq/bind_address': '/networking/interfaces/management/ip', - '/endpoints/compute/metadata/host': '/networking/interfaces/management/ip', - '/endpoints/compute/novnc/host': '/networking/interfaces/management/ip', - '/endpoints/compute/service/host': '/networking/interfaces/management/ip', - '/endpoints/compute/xvpvnc/host': '/networking/interfaces/management/ip', - '/endpoints/ec2/admin/host': '/networking/interfaces/management/ip', - '/endpoints/ec2/service/host': '/networking/interfaces/management/ip', - '/endpoints/identity/admin/host': '/networking/interfaces/management/ip', - '/endpoints/identity/service/host': '/networking/interfaces/management/ip', - '/endpoints/image/registry/host': '/networking/interfaces/management/ip', - '/endpoints/image/service/host': '/networking/interfaces/management/ip', - '/endpoints/metering/service/host': '/networking/interfaces/management/ip', - '/endpoints/network/service/host': '/networking/interfaces/management/ip', - '/endpoints/volume/service/host': '/networking/interfaces/management/ip' - }, - 'os-network': { - }, - 'os-compute-worker': { - } - }, - 'dashboard_roles': ['os-single-controller'], - 'role_assign_policy': { - 'default':{ - 'bundles': [], - 'exclusives': ['os-single-controller', 'os-network'], - 'roles': ['os-single-controller', 'os-network', 'os-compute-worker'], - 'default_min': 1, - 'default_max': 1, - 'maxs': {'os-compute-worker':-1} - }, - 'policy_by_host_numbers':{ - '1': { - 'bundles': [['os-single-controller', 'os-network', 'os-compute-worker']], - 'exclusives':[] - }, - '2': { - 'bundles': [['os-compute-worker','os-network']], - 'exclusives':['os-single-controller'] - }, - }, - }, - }, - }, - }, -} - -cobbler_EXPECTED = { - 'expected_host_configs': [{ - 'profile': 'CentOS', - 'name_servers_search': '1.ods.com ods.com', - 'name': 'host1.1', - 'hostname': 'host1', - 'modify_interface': { - 'dnsname-eth2': 'floating-host1.1.ods.com', - 'dnsname-eth0': u'host1.1.ods.com', - 'ipaddress-eth2': '10.145.88.100', - 'static-eth2': True, - 'static-eth0': True, - 'netmask-eth0': '255.255.255.0', - 'ipaddress-eth0': u'192.168.20.100', - 'netmask-eth2': '255.255.254.0', - 'management-eth2': False, - 'management-eth0': True - }, - 'name_servers': '192.168.20.254', - 'gateway': '10.145.88.1', - 'ksmeta': { - 'username': u'root', - 'promisc_nics': 'eth2', - 'chef_url': 'https://localhost/', - 'tool': 'chef', - 'partition': '/home 20%%;/tmp 10%%;/var 30%%;', - 'proxy': 'http://192.168.20.254:3128', - 'ntp_server': '192.168.20.254', - 'chef_client_name': 'host1.1', - 'chef_node_name': u'host1.1' - }, - },{ - 'profile': 'CentOS', - 'name_servers_search': '1.ods.com ods.com', - 'name': 'host2.1', - 'hostname': 'host2', - 'modify_interface': { - 'dnsname-eth2': 'floating-host2.1.ods.com', - 'dnsname-eth0': u'host2.1.ods.com', - 'ipaddress-eth2': '10.145.88.101', - 'static-eth2': True, - 'static-eth0': True, - 'netmask-eth0': '255.255.255.0', - 'ipaddress-eth0': u'192.168.20.101', - 'netmask-eth2': '255.255.254.0', - 'management-eth2': False, - 'management-eth0': True - }, - 'name_servers': '192.168.20.254', - 'gateway': '10.145.88.1', - 'ksmeta': { - 'username': u'root', - 'promisc_nics': 'eth2', - 'chef_url': 'https://localhost/', - 'tool': 'chef', - 'partition': '/home 20%%;/tmp 10%%;/var 30%%;', - 'proxy': 'http://192.168.20.254:3128', - 'ntp_server': '192.168.20.254', - 'chef_client_name': 'host2.1', - 'chef_node_name': u'host2.1' - }, - },{ - 'profile': 'CentOS', - 'name_servers_search': '1.ods.com ods.com', - 'name': 'host3.1', - 'hostname': 'host3', - 'modify_interface': { - 'dnsname-eth2': 'floating-host3.1.ods.com', - 'dnsname-eth0': u'host3.1.ods.com', - 'ipaddress-eth2': '10.145.88.102', - 'static-eth2': True, - 'static-eth0': True, - 'netmask-eth0': '255.255.255.0', - 'ipaddress-eth0': u'192.168.20.102', - 'netmask-eth2': '255.255.254.0', - 'management-eth2': False, - 'management-eth0': True - }, - 'name_servers': '192.168.20.254', - 'gateway': '10.145.88.1', - 'ksmeta': { - 'username': u'root', - 'promisc_nics': 'eth2', - 'chef_url': 'https://localhost/', - 'tool': 'chef', - 'partition': '/home 20%%;/tmp 10%%;/var 30%%;', - 'proxy': 'http://192.168.20.254:3128', - 'ntp_server': '192.168.20.254', - 'chef_client_name': 'host3.1', - 'chef_node_name': u'host3.1' - }, - },{ - 'profile': 'CentOS', - 'name_servers_search': '1.ods.com ods.com', - 'name': 'host4.1', - 'hostname': 'host4', - 'modify_interface': { - 'dnsname-eth2': 'floating-host4.1.ods.com', - 'dnsname-eth0': u'host4.1.ods.com', - 'ipaddress-eth2': '10.145.88.103', - 'static-eth2': True, - 'static-eth0': True, - 'netmask-eth0': '255.255.255.0', - 'ipaddress-eth0': u'192.168.20.103', - 'netmask-eth2': '255.255.254.0', - 'management-eth2': False, - 'management-eth0': True - }, - 'name_servers': '192.168.20.254', - 'gateway': '10.145.88.1', - 'ksmeta': { - 'username': u'root', - 'promisc_nics': 'eth2', - 'chef_url': 'https://localhost/', - 'tool': 'chef', - 'partition': '/home 20%%;/tmp 10%%;/var 30%%;', - 'proxy': 'http://192.168.20.254:3128', - 'ntp_server': '192.168.20.254', - 'chef_client_name': 'host4.1', - 'chef_node_name': u'host4.1' - }, - },{ - 'profile': 'CentOS', - 'name_servers_search': '1.ods.com ods.com', - 'name': 'host5.1', - 'hostname': 'host5', - 'modify_interface': { - 'dnsname-eth2': 'floating-host5.1.ods.com', - 'dnsname-eth0': u'host5.1.ods.com', - 'ipaddress-eth2': '10.145.88.104', - 'static-eth2': True, - 'static-eth0': True, - 'netmask-eth0': '255.255.255.0', - 'ipaddress-eth0': u'192.168.20.104', - 'netmask-eth2': '255.255.254.0', - 'management-eth2': False, - 'management-eth0': True - }, - 'name_servers': '192.168.20.254', - 'gateway': '10.145.88.1', - 'ksmeta': { - 'username': u'root', - 'promisc_nics': 'eth2', - 'chef_url': 'https://localhost/', - 'tool': 'chef', - 'partition': '/home 20%%;/tmp 10%%;/var 30%%;', - 'proxy': 'http://192.168.20.254:3128', - 'ntp_server': '192.168.20.254', - 'chef_client_name': 'host5.1', - 'chef_node_name': u'host5.1' - }, - }, { - 'profile': 'CentOS', - 'name_servers_search': '1.ods.com ods.com', - 'name': 'host6.1', - 'hostname': 'host6', - 'modify_interface': { - 'dnsname-eth2': 'floating-host6.1.ods.com', - 'dnsname-eth0': u'host6.1.ods.com', - 'ipaddress-eth2': '10.145.88.105', - 'static-eth2': True, - 'static-eth0': True, - 'netmask-eth0': '255.255.255.0', - 'ipaddress-eth0': u'192.168.20.105', - 'netmask-eth2': '255.255.254.0', - 'management-eth2': False, - 'management-eth0': True - }, - 'name_servers': '192.168.20.254', - 'gateway': '10.145.88.1', - 'ksmeta': { - 'username': u'root', - 'promisc_nics': 'eth2', - 'chef_url': 'https://localhost/', - 'tool': 'chef', - 'partition': '/home 20%%;/tmp 10%%;/var 30%%;', - 'proxy': 'http://192.168.20.254:3128', - 'ntp_server': '192.168.20.254', - 'chef_client_name': 'host6.1', - 'chef_node_name': u'host6.1' - }, - },{ - 'profile': 'CentOS', - 'name_servers_search': '1.ods.com ods.com', - 'name': 'host7.1', - 'hostname': 'host7', - 'modify_interface': { - 'dnsname-eth2': 'floating-host7.1.ods.com', - 'dnsname-eth0': u'host7.1.ods.com', - 'ipaddress-eth2': '10.145.88.106', - 'static-eth2': True, - 'static-eth0': True, - 'netmask-eth0': '255.255.255.0', - 'ipaddress-eth0': u'192.168.20.106', - 'netmask-eth2': '255.255.254.0', - 'management-eth2': False, - 'management-eth0': True - }, - 'name_servers': '192.168.20.254', - 'gateway': '10.145.88.1', - 'ksmeta': { - 'username': u'root', - 'promisc_nics': 'eth2', - 'chef_url': 'https://localhost/', - 'tool': 'chef', - 'partition': '/home 20%%;/tmp 10%%;/var 30%%;', - 'proxy': 'http://192.168.20.254:3128', - 'ntp_server': '192.168.20.254', - 'chef_client_name': 'host7.1', - 'chef_node_name': u'host7.1' - }, - },{ - 'profile': 'CentOS', - 'name_servers_search': '1.ods.com ods.com', - 'name': 'host8.1', - 'hostname': 'host8', - 'modify_interface': { - 'dnsname-eth2': 'floating-host8.1.ods.com', - 'dnsname-eth0': u'host8.1.ods.com', - 'ipaddress-eth2': '10.145.88.107', - 'static-eth2': True, - 'static-eth0': True, - 'netmask-eth0': '255.255.255.0', - 'ipaddress-eth0': u'192.168.20.107', - 'netmask-eth2': '255.255.254.0', - 'management-eth2': False, - 'management-eth0': True - }, - 'name_servers': '192.168.20.254', - 'gateway': '10.145.88.1', - 'ksmeta': { - 'username': u'root', - 'promisc_nics': 'eth2', - 'chef_url': 'https://localhost/', - 'tool': 'chef', - 'partition': '/home 20%%;/tmp 10%%;/var 30%%;', - 'proxy': 'http://192.168.20.254:3128', - 'ntp_server': '192.168.20.254', - 'chef_client_name': 'host8.1', - 'chef_node_name': u'host8.1' - }, - },{ - 'profile': 'CentOS', - 'name_servers_search': '1.ods.com ods.com', - 'name': 'host9.1', - 'hostname': 'host9', - 'modify_interface': { - 'dnsname-eth2': 'floating-host9.1.ods.com', - 'dnsname-eth0': u'host9.1.ods.com', - 'ipaddress-eth2': '10.145.88.108', - 'static-eth2': True, - 'static-eth0': True, - 'netmask-eth0': '255.255.255.0', - 'ipaddress-eth0': u'192.168.20.108', - 'netmask-eth2': '255.255.254.0', - 'management-eth2': False, - 'management-eth0': True - }, - 'name_servers': '192.168.20.254', - 'gateway': '10.145.88.1', - 'ksmeta': { - 'username': u'root', - 'promisc_nics': 'eth2', - 'chef_url': 'https://localhost/', - 'tool': 'chef', - 'partition': '/home 20%%;/tmp 10%%;/var 30%%;', - 'proxy': 'http://192.168.20.254:3128', - 'ntp_server': '192.168.20.254', - 'chef_client_name': 'host9.1', - 'chef_node_name': u'host9.1' - }, - },{ - 'profile': 'CentOS', - 'name_servers_search': '1.ods.com ods.com', - 'name': 'host10.1', - 'hostname': 'host10', - 'modify_interface': { - 'dnsname-eth2': 'floating-host10.1.ods.com', - 'dnsname-eth0': u'host10.1.ods.com', - 'ipaddress-eth2': '10.145.88.109', - 'static-eth2': True, - 'static-eth0': True, - 'netmask-eth0': '255.255.255.0', - 'ipaddress-eth0': u'192.168.20.109', - 'netmask-eth2': '255.255.254.0', - 'management-eth2': False, - 'management-eth0': True - }, - 'name_servers': '192.168.20.254', - 'gateway': '10.145.88.1', - 'ksmeta': { - 'username': u'root', - 'promisc_nics': 'eth2', - 'chef_url': 'https://localhost/', - 'tool': 'chef', - 'partition': '/home 20%%;/tmp 10%%;/var 30%%;', - 'proxy': 'http://192.168.20.254:3128', - 'ntp_server': '192.168.20.254', - 'chef_client_name': 'host10.1', - 'chef_node_name': u'host10.1' - }, - }], -} - -chef_EXPECTED = { - 'expected_configs': { - 'host1.1': { - 'roles_per_target_system': { - 'openstack': ['os-single-controller'], - }, - 'cluster': '1', - 'run_list': ['role[os-single-controller]'] - }, - 'host2.1': { - 'roles_per_target_system': { - 'openstack': ['os-network'], - }, - 'cluster': '1', - 'run_list': ['role[os-network]'] - }, - 'host3.1': { - 'roles_per_target_system': { - 'openstack': ['os-compute-worker'], - }, - 'cluster': '1', - 'run_list': ['role[os-compute-worker]'] - }, - 'host4.1': { - 'roles_per_target_system': { - 'openstack': ['os-compute-worker'], - }, - 'cluster': '1', - 'run_list': ['role[os-compute-worker]'] - }, - 'host5.1': { - 'roles_per_target_system': { - 'openstack': ['os-compute-worker'], - }, - 'cluster': '1', - 'run_list': ['role[os-compute-worker]'] - }, - 'host6.1': { - 'roles_per_target_system': { - 'openstack': ['os-compute-worker'], - }, - 'cluster': '1', - 'run_list': ['role[os-compute-worker]'] - }, - 'host7.1': { - 'roles_per_target_system': { - 'openstack': ['os-compute-worker'], - }, - 'cluster': '1', - 'run_list': ['role[os-compute-worker]'] - }, - 'host8.1': { - 'roles_per_target_system': { - 'openstack': ['os-compute-worker'], - }, - 'cluster': '1', - 'run_list': ['role[os-compute-worker]'] - }, - 'host9.1': { - 'roles_per_target_system': { - 'openstack': ['os-compute-worker'], - }, - 'cluster': '1', - 'run_list': ['role[os-compute-worker]'] - }, - 'host10.1': { - 'roles_per_target_system': { - 'openstack': ['os-compute-worker'], - }, - 'cluster': '1', - 'run_list': ['role[os-compute-worker]'] - }, - 'openstack': { - '1': { - 'credential': { - 'identity': { - 'users': { - 'compute': {'username': 'service', 'password': 'huawei'}, - 'network': {'username': 'service', 'password': 'huawei'}, - 'admin': {'username': 'admin', 'password': 'huawei'}, - 'image': {'username': 'service', 'password': 'huawei'}, - 'metering': {'username': 'service', 'password': 'huawei'}, - 'volume': {'username': 'service', 'password': 'huawei'}, - 'object-store': {'username': 'service', 'password': 'huawei'} - } - }, - 'mysql': { - 'compute': {'username': 'service', 'password': 'huawei'}, - 'network': {'username': 'service', 'password': 'huawei'}, - 'image': {'username': 'service', 'password': 'huawei'}, - 'metering': {'username': 'service', 'password': 'huawei'}, - 'volume': {'username': 'service', 'password': 'huawei'}, - 'dashboard': {'username': 'service', 'password': 'huawei'}, - 'super': {'password': 'huawei'}, - 'identity': {'username': 'service', 'password': 'huawei'} - } - }, - 'networking': { - 'control': {'interface': 'eth0'}, - 'storage': {'interface': 'eth0'}, - 'public': {'interface': 'eth2'}, - 'tenant': {'interface': 'eth0'} - }, - 'ntp': {'ntpserver': '192.168.20.254'}, - 'db': { - 'mysql': { - 'bind_address': '192.168.20.100' - } - }, - 'dashboard_roles': ['os-single-controller'], - 'mq': { - 'rabbitmq': {'bind_address': '192.168.20.100'} - }, - 'endpoints': { - 'compute': { - 'novnc': {'host': '192.168.20.100'}, - 'xvpvnc': {'host': '192.168.20.100'}, - 'service': {'host': '192.168.20.100'}, - 'metadata': {'host': '192.168.20.100'} - }, - 'network': { - 'service': {'host': '192.168.20.100'} - }, - 'image': { - 'registry': {'host': '192.168.20.100'}, - 'service': {'host': '192.168.20.100'} - }, - 'metering': { - 'service': {'host': '192.168.20.100'} - }, - 'volume': { - 'service': {'host': '192.168.20.100'} - }, - 'ec2': { - 'admin': {'host': '192.168.20.100'}, - 'service': {'host': '192.168.20.100'} - }, - 'identity': { - 'admin': {'host': u'192.168.20.100'}, - 'service': {'host': u'192.168.20.100'} - }, - }, - }, - }, - }, -} diff --git a/compass/tests/actions/deploy/data/test7 b/compass/tests/actions/deploy/data/test7 deleted file mode 100644 index ffa04f27..00000000 --- a/compass/tests/actions/deploy/data/test7 +++ /dev/null @@ -1,904 +0,0 @@ -import simplejson as json - -ADAPTERS = [ - {'name': 'CentOS_openstack', 'os': 'CentOS', 'target_system': 'openstack'}, -] -ROLES = [ - {'name': 'os-controller', 'target_system': 'openstack'}, - {'name': 'os-network', 'target_system': 'openstack'}, - {'name': 'os-compute-worker', 'target_system': 'openstack'}, - {'name': 'os-ha', 'target_system': 'openstack'}, - {'name': 'os-image', 'target_system': 'openstack'}, - {'name': 'os-ops-database', 'target_system': 'openstack'}, - {'name': 'os-ops-messaging', 'target_system': 'openstack'}, - {'name': 'os-block-storage-worker', 'target_system': 'openstack'} -] -SWITCHES = [ - {'ip': '1.2.3.4', 'vendor_info': 'huawei', 'credential_data': json.dumps({'version': 'v2c', 'community': 'public'})}, -] -MACHINES_BY_SWITCH = { - '1.2.3.4': [ - {'mac': '00:00:01:02:03:04', 'port': 1, 'vlan': 1}, - {'mac': '00:00:01:02:03:05', 'port': 2, 'vlan': 1}, - {'mac': '00:00:01:02:03:06', 'port': 3, 'vlan': 1}, - {'mac': '00:00:01:02:03:07', 'port': 4, 'vlan': 1}, - {'mac': '00:00:01:02:03:08', 'port': 5, 'vlan': 1}, - {'mac': '00:00:01:02:03:09', 'port': 6, 'vlan': 1}, - {'mac': '00:00:01:02:03:10', 'port': 7, 'vlan': 1}, - {'mac': '00:00:01:02:03:11', 'port': 8, 'vlan': 1}, - {'mac': '00:00:01:02:03:12', 'port': 9, 'vlan': 1}, - {'mac': '00:00:01:02:03:13', 'port': 10, 'vlan': 1}, - ], -} -CLUSTERS = [ - { - 'name': 'cluster1', - 'adapter': 'CentOS_openstack', - 'mutable': False, - 'security_config': json.dumps({ - 'server_credentials': { - 'username': 'root', 'password': 'huawei' - }, - 'service_credentials': { - 'username': 'service', 'password': 'huawei' - }, - 'console_credentials': { - 'username': 'admin', 'password': 'huawei' - } - }), - 'networking_config': json.dumps({ - 'interfaces': { - 'management': { - 'nic': 'eth0', - 'promisc': 0, - 'netmask': '255.255.255.0', - 'ip_end': '192.168.20.200', - 'gateway': '', - 'ip_start': '192.168.20.100' - }, - 'storage': { - 'nic': 'eth0', - 'promisc': 0, - 'netmask': '255.255.254.0', - 'ip_end': '10.145.88.200', - 'gateway': '', - 'ip_start': '10.145.88.100' - }, - 'public': { - 'nic': 'eth2', - 'promisc': 1, - 'netmask': '255.255.254.0', - 'ip_end': '10.145.88.255', - 'gateway': '', - 'ip_start': '10.145.88.100' - }, - 'tenant': { - 'nic': 'eth0', - 'promisc': 0, - 'netmask': '255.255.254.0', - 'ip_end': '10.145.88.120', - 'gateway': '', - 'ip_start': '10.145.88.100' - } - }, - 'global': { - 'nameservers': '192.168.20.254', - 'proxy': 'http://192.168.20.254:3128', - 'ntp_server': '192.168.20.254', - 'search_path': 'ods.com', - 'gateway': '10.145.88.1', - 'ha_vip': '192.168.20.253' - }, - }), - 'partition_config': json.dumps('/home 20%%;/tmp 10%%;/var 30%%;'), - }, -] -HOSTS_BY_CLUSTER = { - 'cluster1': [ - { - 'hostname': 'host1', - 'mac': '00:00:01:02:03:04', - 'mutable': False, - 'config_data': json.dumps({ - 'networking': { - 'interfaces': { - 'management': { - 'ip': '192.168.20.100', - }, - }, - }, - 'roles': ["os-ha"], - }), - }, - { - 'hostname': 'host2', - 'mac': '00:00:01:02:03:05', - 'mutable': False, - 'config_data': json.dumps({ - 'networking': { - 'interfaces': { - 'management': { - 'ip': '192.168.20.101', - }, - }, - }, - 'roles': ["os-ha"], - }), - }, - { - 'hostname': 'host3', - 'mac': '00:00:01:02:03:06', - 'mutable': False, - 'config_data': json.dumps({ - 'networking': { - 'interfaces': { - 'management': { - 'ip': '192.168.20.102', - }, - }, - }, - 'roles': ["os-controller", "os-image"], - }), - }, - { - 'hostname': 'host4', - 'mac': '00:00:01:02:03:07', - 'mutable': False, - 'config_data': json.dumps({ - 'networking': { - 'interfaces': { - 'management': { - 'ip': '192.168.20.103', - }, - }, - }, - 'roles': ["os-controller", "os-compute-vncproxy"], - }), - }, - { - 'hostname': 'host5', - 'mac': '00:00:01:02:03:08', - 'mutable': False, - 'config_data': json.dumps({ - 'networking': { - 'interfaces': { - 'management': { - 'ip': '192.168.20.104', - }, - }, - }, - 'roles': ["os-controller", "os-block-storage-worker"], - }), - }, - { - 'hostname': 'host6', - 'mac': '00:00:01:02:03:09', - 'mutable': False, - 'config_data': json.dumps({ - 'networking': { - 'interfaces': { - 'management': { - 'ip': '192.168.20.105', - }, - }, - }, - 'roles': ["os-ops-database", "os-ops-messaging"], - }), - }, - { - 'hostname': 'host7', - 'mac': '00:00:01:02:03:10', - 'mutable': False, - 'config_data': json.dumps({ - 'networking': { - 'interfaces': { - 'management': { - 'ip': '192.168.20.106', - }, - }, - }, - 'roles': ["os-network"], - }), - }, - { - 'hostname': 'host8', - 'mac': '00:00:01:02:03:11', - 'mutable': False, - 'config_data': json.dumps({ - 'networking': { - 'interfaces': { - 'management': { - 'ip': '192.168.20.107', - }, - }, - }, - 'roles': [], - }), - }, - { - 'hostname': 'host9', - 'mac': '00:00:01:02:03:12', - 'mutable': False, - 'config_data': json.dumps({ - 'networking': { - 'interfaces': { - 'management': { - 'ip': '192.168.20.108', - }, - }, - }, - 'roles': [], - }), - }, - { - 'hostname': 'host10', - 'mac': '00:00:01:02:03:13', - 'mutable': False, - 'config_data': json.dumps({ - 'networking': { - 'interfaces': { - 'management': { - 'ip': '192.168.20.109', - }, - }, - }, - 'roles': [], - }), - }, - ], -} - - -cobbler_MOCK = { - 'host_configs': [] -} - -chef_MOCK = { - 'configs': { - 'openstack': { - 'env_default': { - 'all_roles': { - "os-block-storage-worker": "openstack block storage node", - "os-controller": "openstack controller node", - "os-network": "openstack network node", - "os-ops-messaging": "openstack message queue node", - "os-image": "openstack image node", - "os-ops-database": "openstack database node", - "os-compute-worker":"openstack nova node", - "os-ha":"Software load balance node", - "os-compute-vncproxy": "vnc proxy" - }, - 'config_mapping': { - '/credential/identity/users/admin': '/security/console_credentials', - '/credential/identity/users/compute': '/security/service_credentials', - '/credential/identity/users/image': '/security/service_credentials', - '/credential/identity/users/metering': '/security/service_credentials', - '/credential/identity/users/network': '/security/service_credentials', - '/credential/identity/users/object-store': '/security/service_credentials', - '/credential/identity/users/volume': '/security/service_credentials', - '/credential/mysql/compute': '/security/service_credentials', - '/credential/mysql/dashboard': '/security/service_credentials', - '/credential/mysql/identity': '/security/service_credentials', - '/credential/mysql/image': '/security/service_credentials', - '/credential/mysql/metering': '/security/service_credentials', - '/credential/mysql/network': '/security/service_credentials', - '/credential/mysql/volume': '/security/service_credentials', - '/credential/mysql/super/password': '/security/service_credentials/password', - '/networking/control/interface': '/networking/interfaces/management/nic', - '/ntp/ntpserver': '/networking/global/ntp_server', - '/networking/storage/interface': '/networking/interfaces/storage/nic', - '/networking/public/interface': '/networking/interfaces/public/nic', - '/networking/tenant/interface': '/networking/interfaces/tenant/nic', - '/networking/plugins/ovs/gre/local_ip_interface': '/networking/interfaces/tenant/nic', - "/ha/haproxy/vip": "/networking/global/ha_vip", - "/ha/keepalived/instance_name/vip": "/networking/global/ha_vip" - }, - 'read_config_mapping': { - "/dashboard_roles": "/dashboard_roles", - "/haproxy_roles": "/haproxy_roles", - "/test_roles": "/test_roles", - "/haproxy/router_id_prefix": "/ha/keepalived/router_id_prefix", - "/haproxy/default_priority": "/ha/keepalived/default_priority", - "/haproxy/default_state": "/ha/keepalived/default_state", - "/haproxy/states_to_assign": "/ha/keepalived/states_to_assign" - }, - 'role_mapping': { - "os-controller": { - "/endpoints/compute/metadata/host": [ - "/networking/global/ha_vip", - "/networking/interfaces/management/ip" - ], - "/endpoints/compute/service/host": [ - "/networking/global/ha_vip", - "/networking/interfaces/management/ip" - ], - "/endpoints/compute/xvpvnc/host": [ - "/networking/global/ha_vip", - "/networking/interfaces/management/ip" - ], - "/endpoints/ec2/admin/host":[ - "/networking/global/ha_vip", - "/networking/interfaces/management/ip" - ], - "/endpoints/ec2/service/host": [ - "/networking/global/ha_vip", - "/networking/interfaces/management/ip" - ], - "/endpoints/identity/admin/host":[ - "/networking/global/ha_vip", - "/networking/interfaces/management/ip" - ], - "/endpoints/identity/service/host": [ - "/networking/global/ha_vip", - "/networking/interfaces/management/ip" - ], - "/endpoints/metering/service/host": [ - "/networking/global/ha_vip", - "/networking/interfaces/management/ip" - ], - "/endpoints/network/service/host": [ - "/networking/global/ha_vip", - "/networking/interfaces/management/ip" - ], - "/endpoints/volume/service/host": [ - "/networking/global/ha_vip", - "/networking/interfaces/management/ip" - ] - }, - "os-compute-vncproxy": { - "/endpoints/compute/novnc/host": [ - "/networking/global/ha_vip", - "/networking/interfaces/management/ip" - ] - }, - "os-ops-database": { - "/db/mysql/bind_address": "/networking/interfaces/management/ip" - }, - "os-ops-messaging": { - "/mq/rabbitmq/bind_address": "/networking/interfaces/management/ip" - }, - "os-image": { - "/endpoints/image/registry/host": [ - "/networking/global/ha_vip", - "/networking/interfaces/management/ip" - ], - "/endpoints/image/service/host": [ - "/networking/global/ha_vip", - "/networking/interfaces/management/ip" - ] - } - }, - 'ha': { - "status": "disable", - "haproxy":{ - "vip": "", - "roles":{ - "os-controller": [ - "dashboard_http", "dashboard_https", "keystone_admin", - "keystone_public_internal", "nova_ec2_api", "nova_compute_api", - "cinder_api", "neutron_api", "novncproxy" - ], - "os-image": [ - "glance_api", "glance_registry_cluster" - ] - } - }, - "keepalived": { - "router_id_prefix": "lsb", - "default_priority": 100, - "default_state": "SLAVE", - "states_to_assign": ["MASTER"], - "router_ids":{}, - "instance_name":{ - "vip": "", - "priorities": {}, - "states":{} - } - } - }, - "test_roles": { - "default":["test-synclog"] - }, - 'haproxy_roles': ["os-ha"], - 'dashboard_roles': ['os-controller'], - 'role_assign_policy': { - 'default': { - "bundles":[], - "exclusives":["os-controller"], - "roles":[ - "os-ha", - "os-ops-database", - "os-ops-messaging", - "os-controller", - "os-compute-vncproxy", - "os-image", - "os-block-storage-worker", - "os-network", - "os-compute-worker" - ], - "default_min": 1, - "default_max": 1, - "maxs":{ - "os-compute-worker":-1, - "os-ha":0 - }, - "mins":{ - "os-ha":0 - }, - "default_dependencies":[], - "dependencies":{}, - "default_post_roles":[], - "post_roles":{} - }, - 'policy_by_host_numbers': { - "1": { - "bundles": [ - [ - "os-ops-database", - "os-ops-messaging", - "os-controller", - "os-compute-vncproxy", - "os-image", - "os-block-storage-worker", - "os-network", - "os-compute-worker" - ] - ] - } - }, - }, - }, - }, - }, -} - -cobbler_EXPECTED = { - 'expected_host_configs': [{ - 'profile': 'CentOS', - 'name_servers_search': '1.ods.com ods.com', - 'name': 'host1.1', - 'hostname': 'host1', - 'modify_interface': { - 'dnsname-eth2': 'floating-host1.1.ods.com', - 'dnsname-eth0': u'host1.1.ods.com', - 'ipaddress-eth2': '10.145.88.100', - 'static-eth2': True, - 'static-eth0': True, - 'netmask-eth0': '255.255.255.0', - 'ipaddress-eth0': u'192.168.20.100', - 'netmask-eth2': '255.255.254.0', - 'management-eth2': False, - 'management-eth0': True - }, - 'name_servers': '192.168.20.254', - 'gateway': '10.145.88.1', - 'ksmeta': { - 'username': u'root', - 'promisc_nics': 'eth2', - 'chef_url': 'https://localhost/', - 'tool': 'chef', - 'partition': '/home 20%%;/tmp 10%%;/var 30%%;', - 'proxy': 'http://192.168.20.254:3128', - 'ntp_server': '192.168.20.254', - 'chef_client_name': 'host1.1', - 'chef_node_name': u'host1.1' - }, - },{ - 'profile': 'CentOS', - 'name_servers_search': '1.ods.com ods.com', - 'name': 'host2.1', - 'hostname': 'host2', - 'modify_interface': { - 'dnsname-eth2': 'floating-host2.1.ods.com', - 'dnsname-eth0': u'host2.1.ods.com', - 'ipaddress-eth2': '10.145.88.101', - 'static-eth2': True, - 'static-eth0': True, - 'netmask-eth0': '255.255.255.0', - 'ipaddress-eth0': u'192.168.20.101', - 'netmask-eth2': '255.255.254.0', - 'management-eth2': False, - 'management-eth0': True - }, - 'name_servers': '192.168.20.254', - 'gateway': '10.145.88.1', - 'ksmeta': { - 'username': u'root', - 'promisc_nics': 'eth2', - 'chef_url': 'https://localhost/', - 'tool': 'chef', - 'partition': '/home 20%%;/tmp 10%%;/var 30%%;', - 'proxy': 'http://192.168.20.254:3128', - 'ntp_server': '192.168.20.254', - 'chef_client_name': 'host2.1', - 'chef_node_name': u'host2.1' - }, - },{ - 'profile': 'CentOS', - 'name_servers_search': '1.ods.com ods.com', - 'name': 'host3.1', - 'hostname': 'host3', - 'modify_interface': { - 'dnsname-eth2': 'floating-host3.1.ods.com', - 'dnsname-eth0': u'host3.1.ods.com', - 'ipaddress-eth2': '10.145.88.102', - 'static-eth2': True, - 'static-eth0': True, - 'netmask-eth0': '255.255.255.0', - 'ipaddress-eth0': u'192.168.20.102', - 'netmask-eth2': '255.255.254.0', - 'management-eth2': False, - 'management-eth0': True - }, - 'name_servers': '192.168.20.254', - 'gateway': '10.145.88.1', - 'ksmeta': { - 'username': u'root', - 'promisc_nics': 'eth2', - 'chef_url': 'https://localhost/', - 'tool': 'chef', - 'partition': '/home 20%%;/tmp 10%%;/var 30%%;', - 'proxy': 'http://192.168.20.254:3128', - 'ntp_server': '192.168.20.254', - 'chef_client_name': 'host3.1', - 'chef_node_name': u'host3.1' - }, - },{ - 'profile': 'CentOS', - 'name_servers_search': '1.ods.com ods.com', - 'name': 'host4.1', - 'hostname': 'host4', - 'modify_interface': { - 'dnsname-eth2': 'floating-host4.1.ods.com', - 'dnsname-eth0': u'host4.1.ods.com', - 'ipaddress-eth2': '10.145.88.103', - 'static-eth2': True, - 'static-eth0': True, - 'netmask-eth0': '255.255.255.0', - 'ipaddress-eth0': u'192.168.20.103', - 'netmask-eth2': '255.255.254.0', - 'management-eth2': False, - 'management-eth0': True - }, - 'name_servers': '192.168.20.254', - 'gateway': '10.145.88.1', - 'ksmeta': { - 'username': u'root', - 'promisc_nics': 'eth2', - 'chef_url': 'https://localhost/', - 'tool': 'chef', - 'partition': '/home 20%%;/tmp 10%%;/var 30%%;', - 'proxy': 'http://192.168.20.254:3128', - 'ntp_server': '192.168.20.254', - 'chef_client_name': 'host4.1', - 'chef_node_name': u'host4.1' - }, - },{ - 'profile': 'CentOS', - 'name_servers_search': '1.ods.com ods.com', - 'name': 'host5.1', - 'hostname': 'host5', - 'modify_interface': { - 'dnsname-eth2': 'floating-host5.1.ods.com', - 'dnsname-eth0': u'host5.1.ods.com', - 'ipaddress-eth2': '10.145.88.104', - 'static-eth2': True, - 'static-eth0': True, - 'netmask-eth0': '255.255.255.0', - 'ipaddress-eth0': u'192.168.20.104', - 'netmask-eth2': '255.255.254.0', - 'management-eth2': False, - 'management-eth0': True - }, - 'name_servers': '192.168.20.254', - 'gateway': '10.145.88.1', - 'ksmeta': { - 'username': u'root', - 'promisc_nics': 'eth2', - 'chef_url': 'https://localhost/', - 'tool': 'chef', - 'partition': '/home 20%%;/tmp 10%%;/var 30%%;', - 'proxy': 'http://192.168.20.254:3128', - 'ntp_server': '192.168.20.254', - 'chef_client_name': 'host5.1', - 'chef_node_name': u'host5.1' - }, - }, { - 'profile': 'CentOS', - 'name_servers_search': '1.ods.com ods.com', - 'name': 'host6.1', - 'hostname': 'host6', - 'modify_interface': { - 'dnsname-eth2': 'floating-host6.1.ods.com', - 'dnsname-eth0': u'host6.1.ods.com', - 'ipaddress-eth2': '10.145.88.105', - 'static-eth2': True, - 'static-eth0': True, - 'netmask-eth0': '255.255.255.0', - 'ipaddress-eth0': u'192.168.20.105', - 'netmask-eth2': '255.255.254.0', - 'management-eth2': False, - 'management-eth0': True - }, - 'name_servers': '192.168.20.254', - 'gateway': '10.145.88.1', - 'ksmeta': { - 'username': u'root', - 'promisc_nics': 'eth2', - 'chef_url': 'https://localhost/', - 'tool': 'chef', - 'partition': '/home 20%%;/tmp 10%%;/var 30%%;', - 'proxy': 'http://192.168.20.254:3128', - 'ntp_server': '192.168.20.254', - 'chef_client_name': 'host6.1', - 'chef_node_name': u'host6.1' - }, - },{ - 'profile': 'CentOS', - 'name_servers_search': '1.ods.com ods.com', - 'name': 'host7.1', - 'hostname': 'host7', - 'modify_interface': { - 'dnsname-eth2': 'floating-host7.1.ods.com', - 'dnsname-eth0': u'host7.1.ods.com', - 'ipaddress-eth2': '10.145.88.106', - 'static-eth2': True, - 'static-eth0': True, - 'netmask-eth0': '255.255.255.0', - 'ipaddress-eth0': u'192.168.20.106', - 'netmask-eth2': '255.255.254.0', - 'management-eth2': False, - 'management-eth0': True - }, - 'name_servers': '192.168.20.254', - 'gateway': '10.145.88.1', - 'ksmeta': { - 'username': u'root', - 'promisc_nics': 'eth2', - 'chef_url': 'https://localhost/', - 'tool': 'chef', - 'partition': '/home 20%%;/tmp 10%%;/var 30%%;', - 'proxy': 'http://192.168.20.254:3128', - 'ntp_server': '192.168.20.254', - 'chef_client_name': 'host7.1', - 'chef_node_name': u'host7.1' - }, - },{ - 'profile': 'CentOS', - 'name_servers_search': '1.ods.com ods.com', - 'name': 'host8.1', - 'hostname': 'host8', - 'modify_interface': { - 'dnsname-eth2': 'floating-host8.1.ods.com', - 'dnsname-eth0': u'host8.1.ods.com', - 'ipaddress-eth2': '10.145.88.107', - 'static-eth2': True, - 'static-eth0': True, - 'netmask-eth0': '255.255.255.0', - 'ipaddress-eth0': u'192.168.20.107', - 'netmask-eth2': '255.255.254.0', - 'management-eth2': False, - 'management-eth0': True - }, - 'name_servers': '192.168.20.254', - 'gateway': '10.145.88.1', - 'ksmeta': { - 'username': u'root', - 'promisc_nics': 'eth2', - 'chef_url': 'https://localhost/', - 'tool': 'chef', - 'partition': '/home 20%%;/tmp 10%%;/var 30%%;', - 'proxy': 'http://192.168.20.254:3128', - 'ntp_server': '192.168.20.254', - 'chef_client_name': 'host8.1', - 'chef_node_name': u'host8.1' - }, - },{ - 'profile': 'CentOS', - 'name_servers_search': '1.ods.com ods.com', - 'name': 'host9.1', - 'hostname': 'host9', - 'modify_interface': { - 'dnsname-eth2': 'floating-host9.1.ods.com', - 'dnsname-eth0': u'host9.1.ods.com', - 'ipaddress-eth2': '10.145.88.108', - 'static-eth2': True, - 'static-eth0': True, - 'netmask-eth0': '255.255.255.0', - 'ipaddress-eth0': u'192.168.20.108', - 'netmask-eth2': '255.255.254.0', - 'management-eth2': False, - 'management-eth0': True - }, - 'name_servers': '192.168.20.254', - 'gateway': '10.145.88.1', - 'ksmeta': { - 'username': u'root', - 'promisc_nics': 'eth2', - 'chef_url': 'https://localhost/', - 'tool': 'chef', - 'partition': '/home 20%%;/tmp 10%%;/var 30%%;', - 'proxy': 'http://192.168.20.254:3128', - 'ntp_server': '192.168.20.254', - 'chef_client_name': 'host9.1', - 'chef_node_name': u'host9.1' - }, - },{ - 'profile': 'CentOS', - 'name_servers_search': '1.ods.com ods.com', - 'name': 'host10.1', - 'hostname': 'host10', - 'modify_interface': { - 'dnsname-eth2': 'floating-host10.1.ods.com', - 'dnsname-eth0': u'host10.1.ods.com', - 'ipaddress-eth2': '10.145.88.109', - 'static-eth2': True, - 'static-eth0': True, - 'netmask-eth0': '255.255.255.0', - 'ipaddress-eth0': u'192.168.20.109', - 'netmask-eth2': '255.255.254.0', - 'management-eth2': False, - 'management-eth0': True - }, - 'name_servers': '192.168.20.254', - 'gateway': '10.145.88.1', - 'ksmeta': { - 'username': u'root', - 'promisc_nics': 'eth2', - 'chef_url': 'https://localhost/', - 'tool': 'chef', - 'partition': '/home 20%%;/tmp 10%%;/var 30%%;', - 'proxy': 'http://192.168.20.254:3128', - 'ntp_server': '192.168.20.254', - 'chef_client_name': 'host10.1', - 'chef_node_name': u'host10.1' - }, - }], -} - -chef_EXPECTED = { - 'expected_configs': { - 'host1.1': { - 'roles_per_target_system': { - 'openstack': ['os-ha'], - }, - 'cluster': '1', - 'run_list': ['role[os-ha]'] - }, - 'host2.1': { - 'roles_per_target_system': { - 'openstack': ['os-ha'], - }, - 'cluster': '1', - 'run_list': ['role[os-ha]'] - }, - 'host3.1': { - 'roles_per_target_system': { - 'openstack': ['os-controller', 'os-image'], - }, - 'cluster': '1', - 'run_list': ['role[os-controller]', 'role[os-image]'] - }, - 'host4.1': { - 'roles_per_target_system': { - 'openstack': ['os-controller', 'os-compute-vncproxy'], - }, - 'cluster': '1', - 'run_list': ['role[os-controller]', 'role[os-compute-vncproxy]'] - }, - 'host5.1': { - 'roles_per_target_system': { - 'openstack': ['os-controller', 'os-block-storage-worker'], - }, - 'cluster': '1', - 'run_list': ['role[os-controller]', 'role[os-block-storage-worker]'] - }, - 'host6.1': { - 'roles_per_target_system': { - 'openstack': ['os-ops-database', 'os-ops-messaging'], - }, - 'cluster': '1', - 'run_list': ['role[os-ops-database]', 'role[os-ops-messaging]'] - }, - 'host7.1': { - 'roles_per_target_system': { - 'openstack': ['os-network'], - }, - 'cluster': '1', - 'run_list': ['role[os-network]'] - }, - 'host8.1': { - 'roles_per_target_system': { - 'openstack': ['os-compute-worker'], - }, - 'cluster': '1', - 'run_list': ['role[os-compute-worker]'] - }, - 'host9.1': { - 'roles_per_target_system': { - 'openstack': ['os-compute-worker'], - }, - 'cluster': '1', - 'run_list': ['role[os-compute-worker]'] - }, - 'host10.1': { - 'roles_per_target_system': { - 'openstack': ['os-compute-worker'], - }, - 'cluster': '1', - 'run_list': ['role[os-compute-worker]'] - }, - 'openstack': { - '1': { - 'credential': { - 'identity': { - 'users': { - 'compute': {'username': 'service', 'password': 'huawei'}, - 'network': {'username': 'service', 'password': 'huawei'}, - 'admin': {'username': 'admin', 'password': 'huawei'}, - 'image': {'username': 'service', 'password': 'huawei'}, - 'metering': {'username': 'service', 'password': 'huawei'}, - 'volume': {'username': 'service', 'password': 'huawei'}, - 'object-store': {'username': 'service', 'password': 'huawei'} - } - }, - 'mysql': { - 'compute': {'username': 'service', 'password': 'huawei'}, - 'network': {'username': 'service', 'password': 'huawei'}, - 'image': {'username': 'service', 'password': 'huawei'}, - 'metering': {'username': 'service', 'password': 'huawei'}, - 'volume': {'username': 'service', 'password': 'huawei'}, - 'dashboard': {'username': 'service', 'password': 'huawei'}, - 'super': {'password': 'huawei'}, - 'identity': {'username': 'service', 'password': 'huawei'} - } - }, - 'networking': { - 'control': {'interface': 'eth0'}, - 'storage': {'interface': 'eth0'}, - 'public': {'interface': 'eth2'}, - 'tenant': {'interface': 'eth0'} - }, - 'ntp': {'ntpserver': '192.168.20.254'}, - 'db': { - 'mysql': { - 'bind_address': '192.168.20.105' - } - }, - 'dashboard_roles': ['os-controller'], - 'mq': { - 'rabbitmq': {'bind_address': '192.168.20.105'} - }, - 'endpoints': { - 'compute': { - 'novnc': {'host': '192.168.20.253'}, - 'xvpvnc': {'host': '192.168.20.253'}, - 'service': {'host': '192.168.20.253'}, - 'metadata': {'host': '192.168.20.253'} - }, - 'network': { - 'service': {'host': '192.168.20.253'} - }, - 'image': { - 'registry': {'host': '192.168.20.253'}, - 'service': {'host': '192.168.20.253'} - }, - 'metering': { - 'service': {'host': '192.168.20.253'} - }, - 'volume': { - 'service': {'host': '192.168.20.253'} - }, - 'ec2': { - 'admin': {'host': '192.168.20.253'}, - 'service': {'host': '192.168.20.253'} - }, - 'identity': { - 'admin': {'host': u'192.168.20.253'}, - 'service': {'host': u'192.168.20.253'} - }, - }, - }, - }, - }, -} diff --git a/compass/tests/actions/deploy/test_deploy.py b/compass/tests/actions/deploy/test_deploy.py deleted file mode 100755 index 33cf73f8..00000000 --- a/compass/tests/actions/deploy/test_deploy.py +++ /dev/null @@ -1,484 +0,0 @@ -#!/usr/bin/python -# -# Copyright 2014 Huawei Technologies Co. Ltd -# -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. - -"""integration test for action deploy. - - .. moduleauthor:: Xiaodong Wang -""" -import chef -import logging -import mock -import os -import os.path -import shutil -import unittest2 -import xmlrpclib - -from contextlib import contextmanager - - -os.environ['COMPASS_IGNORE_SETTING'] = 'true' - - -from compass.utils import setting_wrapper as setting -reload(setting) - - -from compass.actions import deploy -from compass.actions import util -from compass.db import database -from compass.db.model import Adapter -from compass.db.model import Cluster -from compass.db.model import ClusterHost -from compass.db.model import Machine -from compass.db.model import Role -from compass.db.model import Switch -from compass.utils import flags -from compass.utils import logsetting - - -class TestEndToEnd(unittest2.TestCase): - """Integration test class.""" - - def _contains(self, origin_config, expected_config): - """check if expected config contains in origin config.""" - if isinstance(expected_config, dict): - for key, value in expected_config.items(): - if not isinstance(origin_config, dict): - logging.error('%s type is not dict', - origin_config) - return False - - if key not in origin_config: - logging.error('%s is not in config:\n%s', - key, origin_config.keys()) - return False - - if not self._contains(origin_config[key], value): - logging.error('%s is not match:\n%s\nvs\n%s', - key, origin_config[key], value) - return False - - return True - elif callable(expected_config): - return expected_config(origin_config) - else: - return expected_config == origin_config - - def _mock_lock(self): - @contextmanager - def _lock(lock_name, blocking=True, timeout=10): - """mock lock.""" - try: - yield lock_name - finally: - pass - - self.lock_backup_ = util.lock - util.lock = mock.Mock(side_effect=_lock) - - def _unmock_lock(self): - util.lock = self.lock_backup_ - - def _unmock_cobbler(self): - xmlrpclib.Server = self.cobbler_server_backup_ - - def _mock_cobbler(self, host_configs): - """mock cobbler.""" - self.cobbler_server_backup_ = xmlrpclib.Server - mock_server = mock.Mock() - xmlrpclib.Server = mock_server - mock_server.return_value.login.return_value = '' - mock_server.return_value.sync = mock.Mock() - mock_server.return_value.find_profile = mock.Mock( - side_effect=lambda x: [x['name']]) - - def _get_system_handle(sys_name, token): - """mock get_system_handle.""" - for i, config in enumerate(host_configs): - if config['name'] == sys_name: - return i - - raise Exception('Not Found %s' % sys_name) - - mock_server.return_value.get_system_handle = mock.Mock( - side_effect=_get_system_handle) - - def _new_system(token): - """mock new_system.""" - host_configs.append({'name': ''}) - return len(host_configs) - 1 - - mock_server.return_value.new_system = mock.Mock( - side_effect=_new_system) - - def _remove_system(sys_name, token): - """mock remove system.""" - for i, config in host_configs: - if config['name'] == sys_name: - del host_configs[i] - return - - raise Exception('Not Found %s' % sys_name) - - mock_server.return_value.remove_system = mock.Mock( - side_effect=_remove_system) - - mock_server.return_value.save_system = mock.Mock() - - def _modify_system(sys_id, key, value, token): - """mock modify_system.""" - host_configs[sys_id][key] = value - - mock_server.return_value.modify_system = mock.Mock( - side_effect=_modify_system) - - def _check_cobbler(self, host_configs, expected_host_configs): - """check cobbler config generated correctly.""" - self.assertEqual(len(host_configs), len(expected_host_configs)) - for i in range(len(host_configs)): - self.assertTrue( - self._contains(host_configs[i], expected_host_configs[i]), - 'host %s config is\n%s\nwhile expected config is\n%s' % ( - i, host_configs[i], expected_host_configs[i] - ) - ) - - def _unmock_chef(self): - chef.autoconfigure = self.chef_autoconfigure_backup_ - chef.DataBag = chef.chef_databag_backup_ - chef.DataBagItem = self.chef_databagitem_backup_ - chef.Client = self.chef_client_backup_ - chef.Node = self.chef_node_backup_ - - def _mock_chef(self, configs): - """mock chef.""" - self.chef_autoconfigure_backup_ = chef.autoconfigure - chef.autoconfigure = mock.Mock() - import collections - - class _mockDataBag(object): - """mock databag class.""" - def __init__(in_self, bag_name, api): - in_self.name = bag_name - - class _mockDataBagItem(collections.Mapping): - """mock databag item class.""" - - def __init__(in_self, bag, bag_item_name, api): - in_self.bag_name_ = bag.name - in_self.bag_item_name_ = bag_item_name - in_self.config_ = configs.get( - in_self.bag_name_, {} - ).get( - bag_item_name, {} - ) - - def __len__(in_self): - return len(in_self.config_) - - def __iter__(in_self): - return iter(in_self.config_) - - def __getitem__(in_self, name): - return in_self.config_[name] - - def __setitem__(in_self, name, value): - in_self.config_[name] = value - - def __delitem__(in_self, name): - del in_self.config_[name] - - def delete(in_self): - """mock delete.""" - del configs[in_self.bag_item_name_] - - def save(in_self): - """mock save.""" - configs.setdefault( - in_self.bag_name_, {} - )[ - in_self.bag_item_name_ - ] = in_self.config_ - - class _mockClient(object): - def __init__(in_self, client_name, api): - pass - - def delete(in_self): - pass - - class _mockNode(collections.Mapping): - """mock node class.""" - - def __init__(in_self, node_name, api): - in_self.node_name_ = node_name - in_self.config_ = configs.get(node_name, {}) - in_self.run_list = [] - - def __len__(in_self): - return len(in_self.config_) - - def __iter__(in_self): - return iter(in_self.config_) - - def __getitem__(in_self, name): - return in_self.config_[name] - - def __setitem__(in_self, name, value): - in_self.config_[name] = value - - def delete(in_self): - del configs[in_self.node_name_] - - def to_dict(in_self): - return in_self.config_ - - def get(in_self, key, default=None): - return in_self.config_.get(key, default) - - def save(in_self): - """mock save.""" - configs[in_self.node_name_] = in_self.config_ - configs[in_self.node_name_]['run_list'] = in_self.run_list - - chef.chef_databag_backup_ = chef.DataBag - chef.DataBag = mock.Mock(side_effect=_mockDataBag) - self.chef_databagitem_backup_ = chef.DataBagItem - chef.DataBagItem = mock.Mock(side_effect=_mockDataBagItem) - self.chef_client_backup_ = chef.Client - chef.Client = mock.Mock(side_effect=_mockClient) - self.chef_node_backup_ = chef.Node - chef.Node = mock.Mock(side_effect=_mockNode) - - def _check_chef(self, configs, expected_configs): - """check chef config is generated correctly.""" - self.assertTrue( - self._contains(configs, expected_configs), - 'configs\n%s\nwhile expected configs\n%s' % ( - configs, expected_configs - ) - ) - - def _mock_os_installer(self, config_locals): - """mock os installer.""" - self.os_installer_mock_[setting.OS_INSTALLER]( - **config_locals['%s_MOCK' % setting.OS_INSTALLER]) - - def _unmock_os_installer(self): - self.os_installer_unmock_[setting.OS_INSTALLER]() - - def _mock_package_installer(self, config_locals): - """mock package installer.""" - self.package_installer_mock_[setting.PACKAGE_INSTALLER]( - **config_locals['%s_MOCK' % setting.PACKAGE_INSTALLER]) - - def _unmock_package_installer(self): - self.package_installer_unmock_[setting.PACKAGE_INSTALLER]() - - def _check_os_installer(self, config_locals): - """check os installer generate correct configs.""" - mock_kwargs = config_locals['%s_MOCK' % setting.OS_INSTALLER] - expected_kwargs = config_locals['%s_EXPECTED' % setting.OS_INSTALLER] - kwargs = {} - kwargs.update(mock_kwargs) - kwargs.update(expected_kwargs) - self.os_installer_checker_[setting.OS_INSTALLER](**kwargs) - - def _check_package_installer(self, config_locals): - """check package installer generate correct configs.""" - mock_kwargs = config_locals['%s_MOCK' % setting.PACKAGE_INSTALLER] - expected_kwargs = config_locals[ - '%s_EXPECTED' % setting.PACKAGE_INSTALLER] - kwargs = {} - kwargs.update(mock_kwargs) - kwargs.update(expected_kwargs) - self.package_installer_checker_[setting.PACKAGE_INSTALLER](**kwargs) - - def _test(self, config_filename): - """run the test.""" - full_path = '%s/data/%s' % ( - os.path.dirname(os.path.abspath(__file__)), - config_filename) - config_globals = {} - config_locals = {} - execfile(full_path, config_globals, config_locals) - self._prepare_database(config_locals) - self._mock_os_installer(config_locals) - self._mock_package_installer(config_locals) - cluster_hosts = {} - with database.session() as session: - clusters = session.query(Cluster).all() - for cluster in clusters: - cluster_hosts[cluster.id] = [ - host.id for host in cluster.hosts] - - deploy.deploy(cluster_hosts) - - self._check_os_installer(config_locals) - self._check_package_installer(config_locals) - self._unmock_os_installer() - self._unmock_package_installer() - - def _prepare_database(self, config_locals): - """prepare database.""" - with database.session() as session: - adapters = {} - for adapter_config in config_locals['ADAPTERS']: - adapter = Adapter(**adapter_config) - session.add(adapter) - adapters[adapter_config['name']] = adapter - - roles = {} - for role_config in config_locals['ROLES']: - role = Role(**role_config) - session.add(role) - roles[role_config['name']] = role - - switches = {} - for switch_config in config_locals['SWITCHES']: - switch = Switch(**switch_config) - session.add(switch) - switches[switch_config['ip']] = switch - - machines = {} - for switch_ip, machine_configs in ( - config_locals['MACHINES_BY_SWITCH'].items() - ): - for machine_config in machine_configs: - machine = Machine(**machine_config) - machines[machine_config['mac']] = machine - machine.switch = switches[switch_ip] - session.add(machine) - - clusters = {} - for cluster_config in config_locals['CLUSTERS']: - adapter_name = cluster_config['adapter'] - del cluster_config['adapter'] - cluster = Cluster(**cluster_config) - clusters[cluster_config['name']] = cluster - cluster.adapter = adapters[adapter_name] - session.add(cluster) - - hosts = {} - for cluster_name, host_configs in ( - config_locals['HOSTS_BY_CLUSTER'].items() - ): - for host_config in host_configs: - mac = host_config['mac'] - del host_config['mac'] - host = ClusterHost(**host_config) - hosts['%s.%s' % ( - host_config['hostname'], cluster_name)] = host - host.machine = machines[mac] - host.cluster = clusters[cluster_name] - session.add(host) - - def _mock_setting(self, mock_global_config_filename='global_config'): - self.backup_os_installer_ = setting.OS_INSTALLER - self.backup_package_installer_ = setting.PACKAGE_INSTALLER - self.backup_cobbler_url_ = setting.COBBLER_INSTALLER_URL - self.backup_chef_url_ = setting.CHEF_INSTALLER_URL - self.backup_config_dir_ = setting.CONFIG_DIR - self.backup_global_config_filename_ = setting.GLOBAL_CONFIG_FILENAME - self.backup_config_file_format_ = setting.CONFIG_FILE_FORMAT - setting.OS_INSTALLER = 'cobbler' - setting.PACKAGE_INSTALLER = 'chef' - setting.COBBLER_INSTALLER_URL = 'http://localhost/cobbler_api' - setting.CHEF_INSTALLER_URL = 'https://localhost/' - setting.CONFIG_DIR = os.path.join( - os.path.dirname(os.path.abspath(__file__)), - 'data') - setting.GLOBAL_CONFIG_FILENAME = mock_global_config_filename - setting.CONFIG_FILE_FORMAT = 'python' - - def _unmock_setting(self): - setting.OS_INSTALLER = self.backup_os_installer_ - setting.PACKAGE_INSTALLER = self.backup_package_installer_ - setting.COBBLER_INSTALLER_URL = self.backup_cobbler_url_ - setting.CHEF_INSTALLER_URL = self.backup_chef_url_ - setting.CONFIG_DIR = self.backup_config_dir_ - setting.GLOBAL_CONFIG_FILENAME = self.backup_global_config_filename_ - self.backup_config_file_format_ = setting.CONFIG_FILE_FORMAT - - def setUp(self): - """test setup.""" - super(TestEndToEnd, self).setUp() - self._mock_setting() - logsetting.init() - database.create_db() - self._mock_lock() - self.rmtree_backup_ = shutil.rmtree - shutil.rmtree = mock.Mock() - self.system_backup_ = os.system - os.system = mock.Mock() - self.os_installer_mock_ = {} - self.os_installer_mock_['cobbler'] = self._mock_cobbler - self.os_installer_unmock_ = {} - self.os_installer_unmock_['cobbler'] = self._unmock_cobbler - self.package_installer_mock_ = {} - self.package_installer_mock_['chef'] = self._mock_chef - self.package_installer_unmock_ = {} - self.package_installer_unmock_['chef'] = self._unmock_chef - self.os_installer_checker_ = {} - self.os_installer_checker_['cobbler'] = self._check_cobbler - self.package_installer_checker_ = {} - self.package_installer_checker_['chef'] = self._check_chef - - def tearDown(self): - """test teardown.""" - database.drop_db() - self._unmock_lock() - shutil.rmtree = self.rmtree_backup_ - os.system = self.system_backup_ - self._unmock_setting() - super(TestEndToEnd, self).tearDown() - - def test_1(self): - """test one cluster one host.""" - self._test('test1') - - def test_2(self): - """test one cluster multi hosts.""" - self._test('test2') - - def test_3(self): - """test multi clusters multi hosts.""" - self._test('test3') - - def test_4(self): - """test deploy unexist roles.""" - self._test('test4') - - def test_5(self): - """test deploy roles with testmode disabled.""" - self._unmock_setting() - self._mock_setting('global_config2') - self._test('test5') - - def test_6(self): - """test deploy on 10 host.""" - self._test('test6') - - def test_7(self): - """test deploy on 10 host with ha support.""" - self._test('test7') - - -if __name__ == '__main__': - flags.init() - logsetting.init() - unittest2.main() diff --git a/compass/tests/actions/test_poll_switch.py b/compass/tests/actions/test_poll_switch.py deleted file mode 100755 index 202f74ca..00000000 --- a/compass/tests/actions/test_poll_switch.py +++ /dev/null @@ -1,126 +0,0 @@ -#!/usr/bin/python -# -# Copyright 2014 Huawei Technologies Co. Ltd -# -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. - -"""test poll_switch action module.""" -from mock import patch -import os -import unittest2 - - -os.environ['COMPASS_IGNORE_SETTING'] = 'true' - - -from compass.utils import setting_wrapper as setting -reload(setting) - - -from compass.actions import poll_switch -from compass.api import app -from compass.db import database -from compass.db.model import Machine -from compass.db.model import Switch -from compass.db.model import SwitchConfig -from compass.utils import flags -from compass.utils import logsetting - - -class TestPollSwitch(unittest2.TestCase): - """base api test class.""" - - CLUSTER_NAME = "Test1" - SWITCH_CREDENTIAL = {'version': '2c', - 'community': 'public'} - DATABASE_URL = 'sqlite://' - - def setUp(self): - super(TestPollSwitch, self).setUp() - logsetting.init() - database.init(self.DATABASE_URL) - database.create_db() - self.test_client = app.test_client() - - with database.session() as session: - # Add one switch to DB - switch = Switch(ip="127.0.0.1", - credential=self.SWITCH_CREDENTIAL) - session.add(switch) - # Add filter port to SwitchConfig table - filter_list = [ - SwitchConfig(ip="127.0.0.1", filter_port='6'), - SwitchConfig(ip="127.0.0.1", filter_port='7') - ] - session.add_all(filter_list) - - def tearDown(self): - database.drop_db() - super(TestPollSwitch, self).tearDown() - - @patch("compass.hdsdiscovery.hdmanager.HDManager.learn") - @patch("compass.hdsdiscovery.hdmanager.HDManager.get_vendor") - def test_poll_switch(self, mock_get_vendor, mock_learn): - # Incorrect IP address format - poll_switch.poll_switch("xxx") - with database.session() as session: - machines = session.query(Machine).filter_by(switch_id=1).all() - self.assertEqual([], machines) - - # Switch is unreachable - mock_get_vendor.return_value = (None, 'unreachable', 'Timeout') - poll_switch.poll_switch('127.0.0.1') - with database.session() as session: - machines = session.query(Machine).filter_by(switch_id=1).all() - self.assertEqual([], machines) - - switch = session.query(Switch).filter_by(id=1).first() - self.assertEqual(switch.state, 'unreachable') - - # Successfully retrieve machines from the switch - mock_get_vendor.return_value = ('xxx', 'Found', "") - mock_learn.return_value = [ - {'mac': '00:01:02:03:04:05', 'vlan': '1', 'port': '1'}, - {'mac': '00:01:02:03:04:06', 'vlan': '1', 'port': '2'}, - {'mac': '00:01:02:03:04:07', 'vlan': '2', 'port': '3'}, - {'mac': '00:01:02:03:04:08', 'vlan': '2', 'port': '4'}, - {'mac': '00:01:02:03:04:09', 'vlan': '3', 'port': '5'} - ] - poll_switch.poll_switch('127.0.0.1') - with database.session() as session: - machines = session.query(Machine).filter_by(switch_id=1).all() - self.assertEqual(5, len(machines)) - # The state and err_msg of the switch should be reset. - switch = session.query(Switch).filter_by(id=1).first() - self.assertEqual(switch.state, "under_monitoring") - self.assertEqual(switch.err_msg, "") - - # Successfully retrieve and filter some machines - # In the following case, machines with port 6, 7 will be filtered. - mock_learn.return_value = [ - {'mac': '00:01:02:03:04:10', 'vlan': '3', 'port': '6'}, - {'mac': '00:01:02:03:04:0a', 'vlan': '4', 'port': '7'}, - {'mac': '00:01:02:03:04:0b', 'vlan': '4', 'port': '8'}, - {'mac': '00:01:02:03:04:0c', 'vlan': '5', 'port': '9'}, - {'mac': '00:01:02:03:04:0d', 'vlan': '5', 'port': '10'} - ] - poll_switch.poll_switch('127.0.0.1') - with database.session() as session: - machines = session.query(Machine).filter_by(switch_id=1).all() - self.assertEqual(8, len(machines)) - - -if __name__ == '__main__': - flags.init() - logsetting.init() - unittest2.main() diff --git a/compass/tests/actions/update_progress/data/global_config b/compass/tests/actions/update_progress/data/global_config deleted file mode 100644 index eb1e7b5f..00000000 --- a/compass/tests/actions/update_progress/data/global_config +++ /dev/null @@ -1,62 +0,0 @@ -networking = { - 'global': { - 'default_no_proxy': ['127.0.0.1', 'localhost'], - 'search_path_pattern': '%(clusterid)s.%(search_path)s %(search_path)s', - 'noproxy_pattern': '%(hostname)s.%(clusterid)s,%(ip)s' - }, - 'interfaces': { - 'management': { - 'dns_pattern': '%(hostname)s.%(clusterid)s.%(search_path)s', - 'netmask': '255.255.255.0', - 'nic': 'eth0', - 'promisc': 0, - }, - 'tenant': { - 'netmask': '255.255.255.0', - 'nic': 'eth0', - 'dns_pattern': 'virtual-%(hostname)s.%(clusterid)s.%(search_path)s', - 'promisc': 0, - }, - 'public': { - 'netmask': '255.255.255.0', - 'nic': 'eth1', - 'dns_pattern': 'floating-%(hostname)s.%(clusterid)s.%(search_path)s', - 'promisc': 1, - }, - 'storage': { - 'netmask': '255.255.255.0', - 'nic': 'eth0', - 'dns_pattern': 'storage-%(hostname)s.%(clusterid)s.%(search_path)s', - 'promisc': 0, - }, - }, -} - -security = { - 'server_credentials': { - 'username': 'root', - 'password': 'huawei', - }, - 'console_credentials': { - 'username': 'admin', - 'password': 'huawei', - }, - 'service_credentials': { - 'username': 'admin', - 'password': 'huawei', - }, -} - -role_assign_policy = { - 'policy_by_host_numbers': { - }, - 'default': { - 'roles': [], - 'maxs': {}, - 'mins': {}, - 'default_max': -1, - 'default_min': 0, - 'exclusives': [], - 'bundles': [], - }, -} diff --git a/compass/tests/actions/update_progress/data/test1/anamon/checkpoint_1/server1.1/sys.log.template b/compass/tests/actions/update_progress/data/test1/anamon/checkpoint_1/server1.1/sys.log.template deleted file mode 100644 index 7390276a..00000000 --- a/compass/tests/actions/update_progress/data/test1/anamon/checkpoint_1/server1.1/sys.log.template +++ /dev/null @@ -1,1726 +0,0 @@ -05:51:18,517 INFO kernel:imklog 5.8.10, log source = /proc/kmsg started. -05:51:18,517 INFO rsyslogd: [origin software="rsyslogd" swVersion="5.8.10" x-pid="68" x-info="http://www.rsyslog.com"] start -05:51:18,517 INFO kernel:Initializing cgroup subsys cpuset -05:51:18,517 INFO kernel:Initializing cgroup subsys cpu -05:51:18,517 NOTICE kernel:Linux version 2.6.32-431.el6.x86_64 (mockbuild@c6b8.bsys.dev.centos.org) (gcc version 4.4.7 20120313 (Red Hat 4.4.7-4) (GCC) ) #1 SMP Fri Nov 22 03:15:09 UTC 2013 -05:51:18,517 INFO kernel:Command line: initrd=/images/CentOS-6.5-x86_64/initrd.img ksdevice=bootif lang= kssendmac text ks=http://10.145.88.211/cblr/svc/op/ks/system/server1.1 BOOT_IMAGE=/images/CentOS-6.5-x86_64/vmlinuz BOOTIF=01-00-0c-29-21-89-af -05:51:18,517 INFO kernel:KERNEL supported cpus: -05:51:18,517 INFO kernel: Intel GenuineIntel -05:51:18,517 INFO kernel: AMD AuthenticAMD -05:51:18,517 INFO kernel: Centaur CentaurHauls -05:51:18,517 INFO kernel:Disabled fast string operations -05:51:18,517 INFO kernel:BIOS-provided physical RAM map: -05:51:18,517 INFO kernel: BIOS-e820: 0000000000000000 - 000000000009f400 (usable) -05:51:18,517 INFO kernel: BIOS-e820: 000000000009f400 - 00000000000a0000 (reserved) -05:51:18,517 INFO kernel: BIOS-e820: 00000000000ca000 - 00000000000cc000 (reserved) -05:51:18,517 INFO kernel: BIOS-e820: 00000000000dc000 - 0000000000100000 (reserved) -05:51:18,517 INFO kernel: BIOS-e820: 0000000000100000 - 000000007fef0000 (usable) -05:51:18,517 INFO kernel: BIOS-e820: 000000007fef0000 - 000000007feff000 (ACPI data) -05:51:18,517 INFO kernel: BIOS-e820: 000000007feff000 - 000000007ff00000 (ACPI NVS) -05:51:18,517 INFO kernel: BIOS-e820: 000000007ff00000 - 0000000080000000 (usable) -05:51:18,517 INFO kernel: BIOS-e820: 00000000e0000000 - 00000000f0000000 (reserved) -05:51:18,517 INFO kernel: BIOS-e820: 00000000fec00000 - 00000000fec10000 (reserved) -05:51:18,517 INFO kernel: BIOS-e820: 00000000fee00000 - 00000000fee01000 (reserved) -05:51:18,517 INFO kernel: BIOS-e820: 00000000fffe0000 - 0000000100000000 (reserved) -05:51:18,517 INFO kernel:DMI present. -05:51:18,517 WARNING kernel:SMBIOS version 2.4 @ 0xF68F0 -05:51:18,517 DEBUG kernel:DMI: VMware, Inc. VMware Virtual Platform/440BX Desktop Reference Platform, BIOS 6.00 01/07/2011 -05:51:18,517 NOTICE kernel:Phoenix BIOS detected: BIOS may corrupt low RAM, working around it. -05:51:18,517 DEBUG kernel:e820 update range: 0000000000000000 - 0000000000010000 (usable) ==> (reserved) -05:51:18,517 INFO kernel:Hypervisor detected: VMware -05:51:18,517 DEBUG kernel:e820 update range: 0000000000000000 - 0000000000001000 (usable) ==> (reserved) -05:51:18,517 DEBUG kernel:e820 remove range: 00000000000a0000 - 0000000000100000 (usable) -05:51:18,517 INFO kernel:last_pfn = 0x80000 max_arch_pfn = 0x400000000 -05:51:18,517 DEBUG kernel:MTRR default type: uncachable -05:51:18,517 DEBUG kernel:MTRR fixed ranges enabled: -05:51:18,517 DEBUG kernel: 00000-9FFFF write-back -05:51:18,517 DEBUG kernel: A0000-BFFFF uncachable -05:51:18,517 DEBUG kernel: C0000-CFFFF write-protect -05:51:18,517 DEBUG kernel: D0000-EFFFF uncachable -05:51:18,517 DEBUG kernel: F0000-FFFFF write-protect -05:51:18,517 DEBUG kernel:MTRR variable ranges enabled: -05:51:18,517 DEBUG kernel: 0 base 0000000000 mask FF80000000 write-back -05:51:18,517 DEBUG kernel: 1 disabled -05:51:18,517 DEBUG kernel: 2 disabled -05:51:18,517 DEBUG kernel: 3 disabled -05:51:18,517 DEBUG kernel: 4 disabled -05:51:18,517 DEBUG kernel: 5 disabled -05:51:18,517 DEBUG kernel: 6 disabled -05:51:18,517 DEBUG kernel: 7 disabled -05:51:18,517 INFO kernel:x86 PAT enabled: cpu 0, old 0x0, new 0x7010600070106 -05:51:18,517 DEBUG kernel:initial memory mapped : 0 - 20000000 -05:51:18,517 INFO kernel:init_memory_mapping: 0000000000000000-0000000080000000 -05:51:18,517 DEBUG kernel: 0000000000 - 0080000000 page 2M -05:51:18,517 DEBUG kernel:kernel direct mapping tables up to 80000000 @ 10000-13000 -05:51:18,517 INFO kernel:RAMDISK: 7def9000 - 7fecf4ff -05:51:18,517 WARNING kernel:ACPI: RSDP 00000000000f6940 00024 (v02 PTLTD ) -05:51:18,517 WARNING kernel:ACPI: XSDT 000000007fef0333 00054 (v01 INTEL 440BX 06040000 VMW 01324272) -05:51:18,517 WARNING kernel:ACPI: FACP 000000007fefee98 000F4 (v04 INTEL 440BX 06040000 PTL 000F4240) -05:51:18,517 WARNING kernel:ACPI: DSDT 000000007fef055d 0E93B (v01 PTLTD Custom 06040000 MSFT 03000001) -05:51:18,517 WARNING kernel:ACPI: FACS 000000007fefffc0 00040 -05:51:18,517 WARNING kernel:ACPI: BOOT 000000007fef0535 00028 (v01 PTLTD $SBFTBL$ 06040000 LTP 00000001) -05:51:18,517 WARNING kernel:ACPI: APIC 000000007fef04d7 0005E (v01 PTLTD ? APIC 06040000 LTP 00000000) -05:51:18,517 WARNING kernel:ACPI: MCFG 000000007fef049b 0003C (v01 PTLTD $PCITBL$ 06040000 LTP 00000001) -05:51:18,517 WARNING kernel:ACPI: SRAT 000000007fef03fb 000A0 (v02 VMWARE MEMPLUG 06040000 VMW 00000001) -05:51:18,517 WARNING kernel:ACPI: HPET 000000007fef03c3 00038 (v01 VMWARE VMW HPET 06040000 WMV 00000001) -05:51:18,517 DEBUG kernel:ACPI: Local APIC address 0xfee00000 -05:51:18,517 INFO kernel:Setting APIC routing to flat. -05:51:18,517 INFO kernel:SRAT: PXM 0 -> APIC 0 -> Node 0 -05:51:18,517 INFO kernel:SRAT: PXM 0 -> APIC 1 -> Node 0 -05:51:18,517 INFO kernel:SRAT: Node 0 PXM 0 0-a0000 -05:51:18,517 INFO kernel:SRAT: Node 0 PXM 0 100000-80000000 -05:51:18,517 DEBUG kernel:NUMA: Allocated memnodemap from 11000 - 12040 -05:51:18,517 DEBUG kernel:NUMA: Using 20 for the hash shift. -05:51:18,517 INFO kernel:Bootmem setup node 0 0000000000000000-0000000080000000 -05:51:18,517 INFO kernel: NODE_DATA [0000000000012040 - 000000000004603f] -05:51:18,517 INFO kernel: bootmap [0000000000047000 - 0000000000056fff] pages 10 -05:51:18,517 INFO kernel:(8 early reservations) ==> bootmem [0000000000 - 0080000000] -05:51:18,517 INFO kernel: #0 [0000000000 - 0000001000] BIOS data page ==> [0000000000 - 0000001000] -05:51:18,517 INFO kernel: #1 [0000006000 - 0000008000] TRAMPOLINE ==> [0000006000 - 0000008000] -05:51:18,517 INFO kernel: #2 [0001000000 - 000201faa4] TEXT DATA BSS ==> [0001000000 - 000201faa4] -05:51:18,517 INFO kernel: #3 [007def9000 - 007fecf4ff] RAMDISK ==> [007def9000 - 007fecf4ff] -05:51:18,517 INFO kernel: #4 [000009f400 - 0000100000] BIOS reserved ==> [000009f400 - 0000100000] -05:51:18,517 INFO kernel: #5 [0002020000 - 00020201f0] BRK ==> [0002020000 - 00020201f0] -05:51:18,517 INFO kernel: #6 [0000010000 - 0000011000] PGTABLE ==> [0000010000 - 0000011000] -05:51:18,517 INFO kernel: #7 [0000011000 - 0000012040] MEMNODEMAP ==> [0000011000 - 0000012040] -05:51:18,517 INFO kernel:found SMP MP-table at [ffff8800000f69b0] f69b0 -05:51:18,517 DEBUG kernel: [ffffea0000000000-ffffea0001bfffff] PMD -> [ffff880002600000-ffff8800041fffff] on node 0 -05:51:18,517 WARNING kernel:Zone PFN ranges: -05:51:18,517 WARNING kernel: DMA 0x00000010 -> 0x00001000 -05:51:18,517 WARNING kernel: DMA32 0x00001000 -> 0x00100000 -05:51:18,517 WARNING kernel: Normal 0x00100000 -> 0x00100000 -05:51:18,517 WARNING kernel:Movable zone start PFN for each node -05:51:18,517 WARNING kernel:early_node_map[3] active PFN ranges -05:51:18,517 WARNING kernel: 0: 0x00000010 -> 0x0000009f -05:51:18,517 WARNING kernel: 0: 0x00000100 -> 0x0007fef0 -05:51:18,517 WARNING kernel: 0: 0x0007ff00 -> 0x00080000 -05:51:18,517 DEBUG kernel:On node 0 totalpages: 524159 -05:51:18,517 DEBUG kernel: DMA zone: 56 pages used for memmap -05:51:18,517 DEBUG kernel: DMA zone: 101 pages reserved -05:51:18,517 DEBUG kernel: DMA zone: 3826 pages, LIFO batch:0 -05:51:18,517 DEBUG kernel: DMA32 zone: 7112 pages used for memmap -05:51:18,517 DEBUG kernel: DMA32 zone: 513064 pages, LIFO batch:31 -05:51:18,517 INFO kernel:ACPI: PM-Timer IO Port: 0x1008 -05:51:18,517 DEBUG kernel:ACPI: Local APIC address 0xfee00000 -05:51:18,517 INFO kernel:Setting APIC routing to flat. -05:51:18,517 INFO kernel:ACPI: LAPIC (acpi_id[0x00] lapic_id[0x00] enabled) -05:51:18,517 INFO kernel:ACPI: LAPIC (acpi_id[0x01] lapic_id[0x01] enabled) -05:51:18,517 INFO kernel:ACPI: LAPIC_NMI (acpi_id[0x00] high edge lint[0x1]) -05:51:18,517 INFO kernel:ACPI: LAPIC_NMI (acpi_id[0x01] high edge lint[0x1]) -05:51:18,517 INFO kernel:ACPI: IOAPIC (id[0x02] address[0xfec00000] gsi_base[0]) -05:51:18,518 INFO kernel:IOAPIC[0]: apic_id 2, version 17, address 0xfec00000, GSI 0-23 -05:51:18,518 INFO kernel:ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 high edge) -05:51:18,518 DEBUG kernel:ACPI: IRQ0 used by override. -05:51:18,518 DEBUG kernel:ACPI: IRQ2 used by override. -05:51:18,518 DEBUG kernel:ACPI: IRQ9 used by override. -05:51:18,518 INFO kernel:Using ACPI (MADT) for SMP configuration information -05:51:18,518 INFO kernel:ACPI: HPET id: 0x8086af01 base: 0xfed00000 -05:51:18,518 INFO kernel:SMP: Allowing 2 CPUs, 0 hotplug CPUs -05:51:18,518 DEBUG kernel:nr_irqs_gsi: 24 -05:51:18,518 INFO kernel:PM: Registered nosave memory: 000000000009f000 - 00000000000a0000 -05:51:18,518 INFO kernel:PM: Registered nosave memory: 00000000000a0000 - 00000000000ca000 -05:51:18,518 INFO kernel:PM: Registered nosave memory: 00000000000ca000 - 00000000000cc000 -05:51:18,518 INFO kernel:PM: Registered nosave memory: 00000000000cc000 - 00000000000dc000 -05:51:18,518 INFO kernel:PM: Registered nosave memory: 00000000000dc000 - 0000000000100000 -05:51:18,518 INFO kernel:PM: Registered nosave memory: 000000007fef0000 - 000000007feff000 -05:51:18,518 INFO kernel:PM: Registered nosave memory: 000000007feff000 - 000000007ff00000 -05:51:18,518 INFO kernel:Allocating PCI resources starting at 80000000 (gap: 80000000:60000000) -05:51:18,518 INFO kernel:Booting paravirtualized kernel on bare hardware -05:51:18,518 INFO kernel:NR_CPUS:4096 nr_cpumask_bits:2 nr_cpu_ids:2 nr_node_ids:1 -05:51:18,518 INFO kernel:PERCPU: Embedded 31 pages/cpu @ffff880002200000 s94872 r8192 d23912 u1048576 -05:51:18,518 INFO kernel:pcpu-alloc: s94872 r8192 d23912 u1048576 alloc=1*2097152 -05:51:18,518 INFO kernel:pcpu-alloc: [0] 0 1 -05:51:18,518 WARNING kernel:Built 1 zonelists in Node order, mobility grouping on. Total pages: 516890 -05:51:18,520 WARNING kernel:Policy zone: DMA32 -05:51:18,520 NOTICE kernel:Kernel command line: initrd=/images/CentOS-6.5-x86_64/initrd.img ksdevice=bootif lang= kssendmac text ks=http://10.145.88.211/cblr/svc/op/ks/system/server1.1 BOOT_IMAGE=/images/CentOS-6.5-x86_64/vmlinuz BOOTIF=01-00-0c-29-21-89-af -05:51:18,520 INFO kernel:PID hash table entries: 4096 (order: 3, 32768 bytes) -05:51:18,520 INFO kernel:Checking aperture... -05:51:18,520 INFO kernel:No AGP bridge found -05:51:18,520 INFO kernel:Memory: 2018096k/2097152k available (5325k kernel code, 516k absent, 78540k reserved, 7013k data, 1276k init) -05:51:18,520 INFO kernel:Hierarchical RCU implementation. -05:51:18,520 INFO kernel:NR_IRQS:33024 nr_irqs:424 -05:51:18,520 INFO kernel:Extended CMOS year: 2000 -05:51:18,520 WARNING kernel:Console: colour VGA+ 80x25 -05:51:18,520 INFO kernel:console [tty0] enabled -05:51:18,520 INFO kernel:allocated 8388608 bytes of page_cgroup -05:51:18,520 INFO kernel:please try 'cgroup_disable=memory' option if you don't want memory cgroups -05:51:18,520 DEBUG kernel:hpet clockevent registered -05:51:18,520 INFO kernel:TSC freq read from hypervisor : 2400.085 MHz -05:51:18,520 WARNING kernel:Detected 2400.085 MHz processor. -05:51:18,520 INFO kernel:Calibrating delay loop (skipped) preset value.. 4800.17 BogoMIPS (lpj=2400085) -05:51:18,520 INFO kernel:pid_max: default: 32768 minimum: 301 -05:51:18,520 INFO kernel:Security Framework initialized -05:51:18,520 INFO kernel:SELinux: Initializing. -05:51:18,520 DEBUG kernel:SELinux: Starting in permissive mode -05:51:18,520 INFO kernel:Dentry cache hash table entries: 262144 (order: 9, 2097152 bytes) -05:51:18,520 INFO kernel:Inode-cache hash table entries: 131072 (order: 8, 1048576 bytes) -05:51:18,520 WARNING kernel:Mount-cache hash table entries: 256 -05:51:18,520 INFO kernel:Initializing cgroup subsys ns -05:51:18,520 INFO kernel:Initializing cgroup subsys cpuacct -05:51:18,520 INFO kernel:Initializing cgroup subsys memory -05:51:18,520 INFO kernel:Initializing cgroup subsys devices -05:51:18,520 INFO kernel:Initializing cgroup subsys freezer -05:51:18,520 INFO kernel:Initializing cgroup subsys net_cls -05:51:18,520 INFO kernel:Initializing cgroup subsys blkio -05:51:18,520 INFO kernel:Initializing cgroup subsys perf_event -05:51:18,520 INFO kernel:Initializing cgroup subsys net_prio -05:51:18,520 INFO kernel:Disabled fast string operations -05:51:18,520 INFO kernel:CPU: Physical Processor ID: 0 -05:51:18,520 INFO kernel:mce: CPU supports 0 MCE banks -05:51:18,520 INFO kernel:alternatives: switching to unfair spinlock -05:51:18,520 INFO kernel:ACPI: Core revision 20090903 -05:51:18,520 INFO kernel:ftrace: converting mcount calls to 0f 1f 44 00 00 -05:51:18,520 INFO kernel:ftrace: allocating 21769 entries in 86 pages -05:51:18,520 INFO kernel:APIC routing finalized to flat. -05:51:18,520 INFO kernel:..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1 -05:51:18,520 INFO kernel:CPU0: Intel(R) Xeon(R) CPU E5620 @ 2.40GHz stepping 02 -05:51:18,520 INFO kernel:Performance Events: 16-deep LBR, Westmere events, Intel PMU driver. -05:51:18,520 WARNING kernel:CPUID marked event: 'cpu cycles' unavailable -05:51:18,520 WARNING kernel:CPUID marked event: 'instructions' unavailable -05:51:18,520 WARNING kernel:CPUID marked event: 'bus cycles' unavailable -05:51:18,520 WARNING kernel:CPUID marked event: 'cache references' unavailable -05:51:18,520 WARNING kernel:CPUID marked event: 'cache misses' unavailable -05:51:18,520 WARNING kernel:CPUID marked event: 'branch instructions' unavailable -05:51:18,520 WARNING kernel:CPUID marked event: 'branch misses' unavailable -05:51:18,520 INFO kernel:... version: 3 -05:51:18,520 INFO kernel:... bit width: 48 -05:51:18,520 INFO kernel:... generic registers: 4 -05:51:18,520 INFO kernel:... value mask: 0000ffffffffffff -05:51:18,520 INFO kernel:... max period: 000000007fffffff -05:51:18,520 INFO kernel:... fixed-purpose events: 3 -05:51:18,520 INFO kernel:... event mask: 000000070000000f -05:51:18,520 WARNING kernel:NMI watchdog disabled (cpu0): hardware events not enabled -05:51:18,520 INFO kernel:Booting Node 0, Processors #1 Ok. -05:51:18,520 INFO kernel:Disabled fast string operations -05:51:18,520 INFO kernel:mce: CPU supports 0 MCE banks -05:51:18,520 INFO kernel:Skipped synchronization checks as TSC is reliable. -05:51:18,520 INFO kernel:Brought up 2 CPUs -05:51:18,520 INFO kernel:Total of 2 processors activated (9600.34 BogoMIPS). -05:51:18,520 INFO kernel:x86 PAT enabled: cpu 0, old 0x0, new 0x7010600070106 -05:51:18,520 INFO kernel:x86 PAT enabled: cpu 1, old 0x0, new 0x7010600070106 -05:51:18,520 DEBUG kernel:sizeof(vma)=200 bytes -05:51:18,520 DEBUG kernel:sizeof(page)=56 bytes -05:51:18,520 DEBUG kernel:sizeof(inode)=592 bytes -05:51:18,520 DEBUG kernel:sizeof(dentry)=192 bytes -05:51:18,520 DEBUG kernel:sizeof(ext3inode)=800 bytes -05:51:18,520 DEBUG kernel:sizeof(buffer_head)=104 bytes -05:51:18,520 DEBUG kernel:sizeof(skbuff)=232 bytes -05:51:18,520 DEBUG kernel:sizeof(task_struct)=2648 bytes -05:51:18,520 INFO kernel:devtmpfs: initialized -05:51:18,520 INFO kernel:PM: Registering ACPI NVS region at 7feff000 (4096 bytes) -05:51:18,520 INFO kernel:regulator: core version 0.5 -05:51:18,520 INFO kernel:NET: Registered protocol family 16 -05:51:18,520 INFO kernel:ACPI: bus type pci registered -05:51:18,520 NOTICE kernel:PCI: MCFG configuration 0: base e0000000 segment 0 buses 0 - 255 -05:51:18,520 NOTICE kernel:PCI: MCFG area at e0000000 reserved in E820 -05:51:18,520 INFO kernel:PCI: Using MMCONFIG at e0000000 - efffffff -05:51:18,520 INFO kernel:PCI: Using configuration type 1 for base access -05:51:18,520 WARNING kernel:bio: create slab at 0 -05:51:18,520 DEBUG kernel:ACPI: EC: Look up EC in DSDT -05:51:18,520 NOTICE kernel:ACPI: BIOS _OSI(Linux) query ignored -05:51:18,520 INFO kernel:ACPI: Interpreter enabled -05:51:18,520 INFO kernel:ACPI: (supports S0 S1 S4 S5) -05:51:18,520 INFO kernel:ACPI: Using IOAPIC for interrupt routing -05:51:18,520 INFO kernel:ACPI: No dock devices found. -05:51:18,520 INFO kernel:PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug -05:51:18,520 INFO kernel:ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-ff]) -05:51:18,520 INFO kernel:pci_root PNP0A03:00: host bridge window [mem 0x000a0000-0x000bffff] -05:51:18,520 INFO kernel:pci_root PNP0A03:00: host bridge window [mem 0x000d0000-0x000d3fff] -05:51:18,520 INFO kernel:pci_root PNP0A03:00: host bridge window [mem 0x000d4000-0x000d7fff] -05:51:18,520 INFO kernel:pci_root PNP0A03:00: host bridge window [mem 0x000d8000-0x000dbfff] -05:51:18,520 INFO kernel:pci_root PNP0A03:00: host bridge window [mem 0x80000000-0xfebfffff] -05:51:18,520 INFO kernel:pci_root PNP0A03:00: host bridge window [io 0x0000-0x0cf7] -05:51:18,520 INFO kernel:pci_root PNP0A03:00: host bridge window [io 0x0d00-0xfeff] -05:51:18,520 INFO kernel:PCI host bridge to bus 0000:00 -05:51:18,520 INFO kernel:pci_bus 0000:00: root bus resource [mem 0x000a0000-0x000bffff] -05:51:18,520 INFO kernel:pci_bus 0000:00: root bus resource [mem 0x000d0000-0x000d3fff] -05:51:18,520 INFO kernel:pci_bus 0000:00: root bus resource [mem 0x000d4000-0x000d7fff] -05:51:18,520 INFO kernel:pci_bus 0000:00: root bus resource [mem 0x000d8000-0x000dbfff] -05:51:18,520 INFO kernel:pci_bus 0000:00: root bus resource [mem 0x80000000-0xfebfffff] -05:51:18,520 INFO kernel:pci_bus 0000:00: root bus resource [io 0x0000-0x0cf7] -05:51:18,520 INFO kernel:pci_bus 0000:00: root bus resource [io 0x0d00-0xfeff] -05:51:18,520 DEBUG kernel:pci 0000:00:07.1: reg 20: [io 0x10c0-0x10cf] -05:51:18,520 INFO kernel:pci 0000:00:07.3: quirk: [io 0x1000-0x103f] claimed by PIIX4 ACPI -05:51:18,520 INFO kernel:pci 0000:00:07.3: quirk: [io 0x1040-0x104f] claimed by PIIX4 SMB -05:51:18,520 DEBUG kernel:pci 0000:00:07.7: reg 10: [io 0x1080-0x10bf] -05:51:18,520 DEBUG kernel:pci 0000:00:07.7: reg 14: [mem 0xd0000000-0xd0001fff 64bit] -05:51:18,520 DEBUG kernel:pci 0000:00:0f.0: reg 10: [io 0x10d0-0x10df] -05:51:18,520 DEBUG kernel:pci 0000:00:0f.0: reg 14: [mem 0xd8000000-0xdbffffff pref] -05:51:18,520 DEBUG kernel:pci 0000:00:0f.0: reg 18: [mem 0xd0800000-0xd0ffffff] -05:51:18,520 DEBUG kernel:pci 0000:00:0f.0: reg 30: [mem 0x00000000-0x00007fff pref] -05:51:18,520 DEBUG kernel:pci 0000:00:10.0: reg 10: [io 0x1400-0x14ff] -05:51:18,520 DEBUG kernel:pci 0000:00:10.0: reg 14: [mem 0xd0040000-0xd005ffff 64bit] -05:51:18,520 DEBUG kernel:pci 0000:00:10.0: reg 1c: [mem 0xd0020000-0xd003ffff 64bit] -05:51:18,520 DEBUG kernel:pci 0000:00:10.0: reg 30: [mem 0x00000000-0x00003fff pref] -05:51:18,520 INFO kernel:pci 0000:00:15.0: PME# supported from D0 D3hot D3cold -05:51:18,520 INFO kernel:pci 0000:00:15.0: PME# disabled -05:51:18,520 INFO kernel:pci 0000:00:15.1: PME# supported from D0 D3hot D3cold -05:51:18,520 INFO kernel:pci 0000:00:15.1: PME# disabled -05:51:18,520 INFO kernel:pci 0000:00:15.2: PME# supported from D0 D3hot D3cold -05:51:18,520 INFO kernel:pci 0000:00:15.2: PME# disabled -05:51:18,520 INFO kernel:pci 0000:00:15.3: PME# supported from D0 D3hot D3cold -05:51:18,520 INFO kernel:pci 0000:00:15.3: PME# disabled -05:51:18,520 INFO kernel:pci 0000:00:15.4: PME# supported from D0 D3hot D3cold -05:51:18,520 INFO kernel:pci 0000:00:15.4: PME# disabled -05:51:18,520 INFO kernel:pci 0000:00:15.5: PME# supported from D0 D3hot D3cold -05:51:18,520 INFO kernel:pci 0000:00:15.5: PME# disabled -05:51:18,520 INFO kernel:pci 0000:00:15.6: PME# supported from D0 D3hot D3cold -05:51:18,520 INFO kernel:pci 0000:00:15.6: PME# disabled -05:51:18,520 INFO kernel:pci 0000:00:15.7: PME# supported from D0 D3hot D3cold -05:51:18,520 INFO kernel:pci 0000:00:15.7: PME# disabled -05:51:18,520 INFO kernel:pci 0000:00:16.0: PME# supported from D0 D3hot D3cold -05:51:18,520 INFO kernel:pci 0000:00:16.0: PME# disabled -05:51:18,520 INFO kernel:pci 0000:00:16.1: PME# supported from D0 D3hot D3cold -05:51:18,520 INFO kernel:pci 0000:00:16.1: PME# disabled -05:51:18,520 INFO kernel:pci 0000:00:16.2: PME# supported from D0 D3hot D3cold -05:51:18,520 INFO kernel:pci 0000:00:16.2: PME# disabled -05:51:18,520 INFO kernel:pci 0000:00:16.3: PME# supported from D0 D3hot D3cold -05:51:18,520 INFO kernel:pci 0000:00:16.3: PME# disabled -05:51:18,520 INFO kernel:pci 0000:00:16.4: PME# supported from D0 D3hot D3cold -05:51:18,520 INFO kernel:pci 0000:00:16.4: PME# disabled -05:51:18,520 INFO kernel:pci 0000:00:16.5: PME# supported from D0 D3hot D3cold -05:51:18,520 INFO kernel:pci 0000:00:16.5: PME# disabled -05:51:18,520 INFO kernel:pci 0000:00:16.6: PME# supported from D0 D3hot D3cold -05:51:18,520 INFO kernel:pci 0000:00:16.6: PME# disabled -05:51:18,520 INFO kernel:pci 0000:00:16.7: PME# supported from D0 D3hot D3cold -05:51:18,520 INFO kernel:pci 0000:00:16.7: PME# disabled -05:51:18,520 INFO kernel:pci 0000:00:17.0: PME# supported from D0 D3hot D3cold -05:51:18,520 INFO kernel:pci 0000:00:17.0: PME# disabled -05:51:18,520 INFO kernel:pci 0000:00:17.1: PME# supported from D0 D3hot D3cold -05:51:18,520 INFO kernel:pci 0000:00:17.1: PME# disabled -05:51:18,520 INFO kernel:pci 0000:00:17.2: PME# supported from D0 D3hot D3cold -05:51:18,520 INFO kernel:pci 0000:00:17.2: PME# disabled -05:51:18,520 INFO kernel:pci 0000:00:17.3: PME# supported from D0 D3hot D3cold -05:51:18,520 INFO kernel:pci 0000:00:17.3: PME# disabled -05:51:18,520 INFO kernel:pci 0000:00:17.4: PME# supported from D0 D3hot D3cold -05:51:18,520 INFO kernel:pci 0000:00:17.4: PME# disabled -05:51:18,520 INFO kernel:pci 0000:00:17.5: PME# supported from D0 D3hot D3cold -05:51:18,520 INFO kernel:pci 0000:00:17.5: PME# disabled -05:51:18,520 INFO kernel:pci 0000:00:17.6: PME# supported from D0 D3hot D3cold -05:51:18,520 INFO kernel:pci 0000:00:17.6: PME# disabled -05:51:18,520 INFO kernel:pci 0000:00:17.7: PME# supported from D0 D3hot D3cold -05:51:18,520 INFO kernel:pci 0000:00:17.7: PME# disabled -05:51:18,520 INFO kernel:pci 0000:00:18.0: PME# supported from D0 D3hot D3cold -05:51:18,520 INFO kernel:pci 0000:00:18.0: PME# disabled -05:51:18,520 INFO kernel:pci 0000:00:18.1: PME# supported from D0 D3hot D3cold -05:51:18,520 INFO kernel:pci 0000:00:18.1: PME# disabled -05:51:18,520 INFO kernel:pci 0000:00:18.2: PME# supported from D0 D3hot D3cold -05:51:18,520 INFO kernel:pci 0000:00:18.2: PME# disabled -05:51:18,520 INFO kernel:pci 0000:00:18.3: PME# supported from D0 D3hot D3cold -05:51:18,520 INFO kernel:pci 0000:00:18.3: PME# disabled -05:51:18,520 INFO kernel:pci 0000:00:18.4: PME# supported from D0 D3hot D3cold -05:51:18,520 INFO kernel:pci 0000:00:18.4: PME# disabled -05:51:18,520 INFO kernel:pci 0000:00:18.5: PME# supported from D0 D3hot D3cold -05:51:18,520 INFO kernel:pci 0000:00:18.5: PME# disabled -05:51:18,520 INFO kernel:pci 0000:00:18.6: PME# supported from D0 D3hot D3cold -05:51:18,520 INFO kernel:pci 0000:00:18.6: PME# disabled -05:51:18,520 INFO kernel:pci 0000:00:18.7: PME# supported from D0 D3hot D3cold -05:51:18,520 INFO kernel:pci 0000:00:18.7: PME# disabled -05:51:18,520 INFO kernel:pci 0000:00:01.0: PCI bridge to [bus 01-01] -05:51:18,520 DEBUG kernel:pci 0000:00:01.0: bridge window [io 0xf000-0x0000] (disabled) -05:51:18,520 DEBUG kernel:pci 0000:00:01.0: bridge window [mem 0xfff00000-0x000fffff] (disabled) -05:51:18,520 DEBUG kernel:pci 0000:00:01.0: bridge window [mem 0xfff00000-0x000fffff pref] (disabled) -05:51:18,520 DEBUG kernel:pci 0000:02:00.0: reg 10: [mem 0xd1020000-0xd103ffff 64bit] -05:51:18,520 DEBUG kernel:pci 0000:02:00.0: reg 18: [mem 0xd1000000-0xd100ffff 64bit] -05:51:18,520 DEBUG kernel:pci 0000:02:00.0: reg 20: [io 0x2000-0x203f] -05:51:18,520 DEBUG kernel:pci 0000:02:00.0: reg 30: [mem 0x00000000-0x0000ffff pref] -05:51:18,520 INFO kernel:pci 0000:02:00.0: PME# supported from D0 D3hot D3cold -05:51:18,520 INFO kernel:pci 0000:02:00.0: PME# disabled -05:51:18,520 DEBUG kernel:pci 0000:02:01.0: reg 10: [mem 0xd1040000-0xd105ffff 64bit] -05:51:18,520 DEBUG kernel:pci 0000:02:01.0: reg 18: [mem 0xd1010000-0xd101ffff 64bit] -05:51:18,520 DEBUG kernel:pci 0000:02:01.0: reg 20: [io 0x2040-0x207f] -05:51:18,520 DEBUG kernel:pci 0000:02:01.0: reg 30: [mem 0x00000000-0x0000ffff pref] -05:51:18,520 INFO kernel:pci 0000:02:01.0: PME# supported from D0 D3hot D3cold -05:51:18,520 INFO kernel:pci 0000:02:01.0: PME# disabled -05:51:18,520 DEBUG kernel:pci 0000:02:02.0: reg 10: [mem 0xd1080000-0xd109ffff 64bit] -05:51:18,520 DEBUG kernel:pci 0000:02:02.0: reg 18: [mem 0xd1060000-0xd106ffff 64bit] -05:51:18,520 DEBUG kernel:pci 0000:02:02.0: reg 20: [io 0x2080-0x20bf] -05:51:18,520 DEBUG kernel:pci 0000:02:02.0: reg 30: [mem 0x00000000-0x0000ffff pref] -05:51:18,520 INFO kernel:pci 0000:02:02.0: PME# supported from D0 D3hot D3cold -05:51:18,520 INFO kernel:pci 0000:02:02.0: PME# disabled -05:51:18,520 DEBUG kernel:pci 0000:02:03.0: reg 10: [mem 0xd10a0000-0xd10bffff 64bit] -05:51:18,520 DEBUG kernel:pci 0000:02:03.0: reg 18: [mem 0xd1070000-0xd107ffff 64bit] -05:51:18,520 DEBUG kernel:pci 0000:02:03.0: reg 20: [io 0x20c0-0x20ff] -05:51:18,520 DEBUG kernel:pci 0000:02:03.0: reg 30: [mem 0x00000000-0x0000ffff pref] -05:51:18,520 INFO kernel:pci 0000:02:03.0: PME# supported from D0 D3hot D3cold -05:51:18,520 INFO kernel:pci 0000:02:03.0: PME# disabled -05:51:18,520 INFO kernel:pci 0000:00:11.0: PCI bridge to [bus 02-02] (subtractive decode) -05:51:18,520 DEBUG kernel:pci 0000:00:11.0: bridge window [io 0x2000-0x3fff] -05:51:18,520 DEBUG kernel:pci 0000:00:11.0: bridge window [mem 0xd1000000-0xd23fffff] -05:51:18,520 DEBUG kernel:pci 0000:00:11.0: bridge window [mem 0xdc400000-0xdc9fffff 64bit pref] -05:51:18,520 DEBUG kernel:pci 0000:00:11.0: bridge window [mem 0x000a0000-0x000bffff] (subtractive decode) -05:51:18,520 DEBUG kernel:pci 0000:00:11.0: bridge window [mem 0x000d0000-0x000d3fff] (subtractive decode) -05:51:18,520 DEBUG kernel:pci 0000:00:11.0: bridge window [mem 0x000d4000-0x000d7fff] (subtractive decode) -05:51:18,520 DEBUG kernel:pci 0000:00:11.0: bridge window [mem 0x000d8000-0x000dbfff] (subtractive decode) -05:51:18,520 DEBUG kernel:pci 0000:00:11.0: bridge window [mem 0x80000000-0xfebfffff] (subtractive decode) -05:51:18,520 DEBUG kernel:pci 0000:00:11.0: bridge window [io 0x0000-0x0cf7] (subtractive decode) -05:51:18,520 DEBUG kernel:pci 0000:00:11.0: bridge window [io 0x0d00-0xfeff] (subtractive decode) -05:51:18,520 INFO kernel:pci 0000:00:15.0: PCI bridge to [bus 03-03] -05:51:18,520 DEBUG kernel:pci 0000:00:15.0: bridge window [io 0x4000-0x4fff] -05:51:18,520 DEBUG kernel:pci 0000:00:15.0: bridge window [mem 0xd2400000-0xd24fffff] -05:51:18,520 DEBUG kernel:pci 0000:00:15.0: bridge window [mem 0xd4400000-0xd44fffff 64bit pref] -05:51:18,520 INFO kernel:pci 0000:00:15.1: PCI bridge to [bus 04-04] -05:51:18,520 DEBUG kernel:pci 0000:00:15.1: bridge window [io 0x8000-0x8fff] -05:51:18,520 DEBUG kernel:pci 0000:00:15.1: bridge window [mem 0xd2800000-0xd28fffff] -05:51:18,520 DEBUG kernel:pci 0000:00:15.1: bridge window [mem 0xd4800000-0xd48fffff 64bit pref] -05:51:18,520 INFO kernel:pci 0000:00:15.2: PCI bridge to [bus 05-05] -05:51:18,520 DEBUG kernel:pci 0000:00:15.2: bridge window [io 0xc000-0xcfff] -05:51:18,520 DEBUG kernel:pci 0000:00:15.2: bridge window [mem 0xd2c00000-0xd2cfffff] -05:51:18,520 DEBUG kernel:pci 0000:00:15.2: bridge window [mem 0xdcb00000-0xdcbfffff 64bit pref] -05:51:18,520 INFO kernel:pci 0000:00:15.3: PCI bridge to [bus 06-06] -05:51:18,520 DEBUG kernel:pci 0000:00:15.3: bridge window [io 0xf000-0x0000] (disabled) -05:51:18,520 DEBUG kernel:pci 0000:00:15.3: bridge window [mem 0xd3000000-0xd30fffff] -05:51:18,520 DEBUG kernel:pci 0000:00:15.3: bridge window [mem 0xdcd00000-0xdcdfffff 64bit pref] -05:51:18,520 INFO kernel:pci 0000:00:15.4: PCI bridge to [bus 07-07] -05:51:18,520 DEBUG kernel:pci 0000:00:15.4: bridge window [io 0xf000-0x0000] (disabled) -05:51:18,520 DEBUG kernel:pci 0000:00:15.4: bridge window [mem 0xd3400000-0xd34fffff] -05:51:18,520 DEBUG kernel:pci 0000:00:15.4: bridge window [mem 0xdcf00000-0xdcffffff 64bit pref] -05:51:18,520 INFO kernel:pci 0000:00:15.5: PCI bridge to [bus 08-08] -05:51:18,520 DEBUG kernel:pci 0000:00:15.5: bridge window [io 0xf000-0x0000] (disabled) -05:51:18,520 DEBUG kernel:pci 0000:00:15.5: bridge window [mem 0xd3800000-0xd38fffff] -05:51:18,520 DEBUG kernel:pci 0000:00:15.5: bridge window [mem 0xdd100000-0xdd1fffff 64bit pref] -05:51:18,520 INFO kernel:pci 0000:00:15.6: PCI bridge to [bus 09-09] -05:51:18,520 DEBUG kernel:pci 0000:00:15.6: bridge window [io 0xf000-0x0000] (disabled) -05:51:18,520 DEBUG kernel:pci 0000:00:15.6: bridge window [mem 0xd3c00000-0xd3cfffff] -05:51:18,520 DEBUG kernel:pci 0000:00:15.6: bridge window [mem 0xdd300000-0xdd3fffff 64bit pref] -05:51:18,520 INFO kernel:pci 0000:00:15.7: PCI bridge to [bus 0a-0a] -05:51:18,520 DEBUG kernel:pci 0000:00:15.7: bridge window [io 0xf000-0x0000] (disabled) -05:51:18,520 DEBUG kernel:pci 0000:00:15.7: bridge window [mem 0xd4000000-0xd40fffff] -05:51:18,520 DEBUG kernel:pci 0000:00:15.7: bridge window [mem 0xdd500000-0xdd5fffff 64bit pref] -05:51:18,520 INFO kernel:pci 0000:00:16.0: PCI bridge to [bus 0b-0b] -05:51:18,520 DEBUG kernel:pci 0000:00:16.0: bridge window [io 0x5000-0x5fff] -05:51:18,520 DEBUG kernel:pci 0000:00:16.0: bridge window [mem 0xd2500000-0xd25fffff] -05:51:18,520 DEBUG kernel:pci 0000:00:16.0: bridge window [mem 0xd4500000-0xd45fffff 64bit pref] -05:51:18,521 INFO kernel:pci 0000:00:16.1: PCI bridge to [bus 0c-0c] -05:51:18,521 DEBUG kernel:pci 0000:00:16.1: bridge window [io 0x9000-0x9fff] -05:51:18,521 DEBUG kernel:pci 0000:00:16.1: bridge window [mem 0xd2900000-0xd29fffff] -05:51:18,521 DEBUG kernel:pci 0000:00:16.1: bridge window [mem 0xd4900000-0xd49fffff 64bit pref] -05:51:18,521 INFO kernel:pci 0000:00:16.2: PCI bridge to [bus 0d-0d] -05:51:18,521 DEBUG kernel:pci 0000:00:16.2: bridge window [io 0xd000-0xdfff] -05:51:18,521 DEBUG kernel:pci 0000:00:16.2: bridge window [mem 0xd2d00000-0xd2dfffff] -05:51:18,521 DEBUG kernel:pci 0000:00:16.2: bridge window [mem 0xd4b00000-0xd4bfffff 64bit pref] -05:51:18,521 INFO kernel:pci 0000:00:16.3: PCI bridge to [bus 0e-0e] -05:51:18,521 DEBUG kernel:pci 0000:00:16.3: bridge window [io 0xf000-0x0000] (disabled) -05:51:18,521 DEBUG kernel:pci 0000:00:16.3: bridge window [mem 0xd3100000-0xd31fffff] -05:51:18,521 DEBUG kernel:pci 0000:00:16.3: bridge window [mem 0xd4d00000-0xd4dfffff 64bit pref] -05:51:18,521 INFO kernel:pci 0000:00:16.4: PCI bridge to [bus 0f-0f] -05:51:18,521 DEBUG kernel:pci 0000:00:16.4: bridge window [io 0xf000-0x0000] (disabled) -05:51:18,521 DEBUG kernel:pci 0000:00:16.4: bridge window [mem 0xd3500000-0xd35fffff] -05:51:18,521 DEBUG kernel:pci 0000:00:16.4: bridge window [mem 0xd4f00000-0xd4ffffff 64bit pref] -05:51:18,521 INFO kernel:pci 0000:00:16.5: PCI bridge to [bus 10-10] -05:51:18,521 DEBUG kernel:pci 0000:00:16.5: bridge window [io 0xf000-0x0000] (disabled) -05:51:18,521 DEBUG kernel:pci 0000:00:16.5: bridge window [mem 0xd3900000-0xd39fffff] -05:51:18,521 DEBUG kernel:pci 0000:00:16.5: bridge window [mem 0xd5100000-0xd51fffff 64bit pref] -05:51:18,521 INFO kernel:pci 0000:00:16.6: PCI bridge to [bus 11-11] -05:51:18,521 DEBUG kernel:pci 0000:00:16.6: bridge window [io 0xf000-0x0000] (disabled) -05:51:18,521 DEBUG kernel:pci 0000:00:16.6: bridge window [mem 0xd3d00000-0xd3dfffff] -05:51:18,521 DEBUG kernel:pci 0000:00:16.6: bridge window [mem 0xd5300000-0xd53fffff 64bit pref] -05:51:18,521 INFO kernel:pci 0000:00:16.7: PCI bridge to [bus 12-12] -05:51:18,521 DEBUG kernel:pci 0000:00:16.7: bridge window [io 0xf000-0x0000] (disabled) -05:51:18,521 DEBUG kernel:pci 0000:00:16.7: bridge window [mem 0xd4100000-0xd41fffff] -05:51:18,521 DEBUG kernel:pci 0000:00:16.7: bridge window [mem 0xd5500000-0xd55fffff 64bit pref] -05:51:18,521 INFO kernel:pci 0000:00:17.0: PCI bridge to [bus 13-13] -05:51:18,521 DEBUG kernel:pci 0000:00:17.0: bridge window [io 0x6000-0x6fff] -05:51:18,521 DEBUG kernel:pci 0000:00:17.0: bridge window [mem 0xd2600000-0xd26fffff] -05:51:18,521 DEBUG kernel:pci 0000:00:17.0: bridge window [mem 0xd4600000-0xd46fffff 64bit pref] -05:51:18,521 INFO kernel:pci 0000:00:17.1: PCI bridge to [bus 14-14] -05:51:18,521 DEBUG kernel:pci 0000:00:17.1: bridge window [io 0xa000-0xafff] -05:51:18,521 DEBUG kernel:pci 0000:00:17.1: bridge window [mem 0xd2a00000-0xd2afffff] -05:51:18,521 DEBUG kernel:pci 0000:00:17.1: bridge window [mem 0xdca00000-0xdcafffff 64bit pref] -05:51:18,521 INFO kernel:pci 0000:00:17.2: PCI bridge to [bus 15-15] -05:51:18,521 DEBUG kernel:pci 0000:00:17.2: bridge window [io 0xe000-0xefff] -05:51:18,521 DEBUG kernel:pci 0000:00:17.2: bridge window [mem 0xd2e00000-0xd2efffff] -05:51:18,521 DEBUG kernel:pci 0000:00:17.2: bridge window [mem 0xdcc00000-0xdccfffff 64bit pref] -05:51:18,521 INFO kernel:pci 0000:00:17.3: PCI bridge to [bus 16-16] -05:51:18,521 DEBUG kernel:pci 0000:00:17.3: bridge window [io 0xf000-0x0000] (disabled) -05:51:18,521 DEBUG kernel:pci 0000:00:17.3: bridge window [mem 0xd3200000-0xd32fffff] -05:51:18,521 DEBUG kernel:pci 0000:00:17.3: bridge window [mem 0xdce00000-0xdcefffff 64bit pref] -05:51:18,521 INFO kernel:pci 0000:00:17.4: PCI bridge to [bus 17-17] -05:51:18,521 DEBUG kernel:pci 0000:00:17.4: bridge window [io 0xf000-0x0000] (disabled) -05:51:18,521 DEBUG kernel:pci 0000:00:17.4: bridge window [mem 0xd3600000-0xd36fffff] -05:51:18,521 DEBUG kernel:pci 0000:00:17.4: bridge window [mem 0xdd000000-0xdd0fffff 64bit pref] -05:51:18,521 INFO kernel:pci 0000:00:17.5: PCI bridge to [bus 18-18] -05:51:18,521 DEBUG kernel:pci 0000:00:17.5: bridge window [io 0xf000-0x0000] (disabled) -05:51:18,521 DEBUG kernel:pci 0000:00:17.5: bridge window [mem 0xd3a00000-0xd3afffff] -05:51:18,521 DEBUG kernel:pci 0000:00:17.5: bridge window [mem 0xdd200000-0xdd2fffff 64bit pref] -05:51:18,521 INFO kernel:pci 0000:00:17.6: PCI bridge to [bus 19-19] -05:51:18,521 DEBUG kernel:pci 0000:00:17.6: bridge window [io 0xf000-0x0000] (disabled) -05:51:18,521 DEBUG kernel:pci 0000:00:17.6: bridge window [mem 0xd3e00000-0xd3efffff] -05:51:18,521 DEBUG kernel:pci 0000:00:17.6: bridge window [mem 0xdd400000-0xdd4fffff 64bit pref] -05:51:18,521 INFO kernel:pci 0000:00:17.7: PCI bridge to [bus 1a-1a] -05:51:18,521 DEBUG kernel:pci 0000:00:17.7: bridge window [io 0xf000-0x0000] (disabled) -05:51:18,521 DEBUG kernel:pci 0000:00:17.7: bridge window [mem 0xd4200000-0xd42fffff] -05:51:18,521 DEBUG kernel:pci 0000:00:17.7: bridge window [mem 0xdd600000-0xdd6fffff 64bit pref] -05:51:18,521 INFO kernel:pci 0000:00:18.0: PCI bridge to [bus 1b-1b] -05:51:18,521 DEBUG kernel:pci 0000:00:18.0: bridge window [io 0x7000-0x7fff] -05:51:18,521 DEBUG kernel:pci 0000:00:18.0: bridge window [mem 0xd2700000-0xd27fffff] -05:51:18,521 DEBUG kernel:pci 0000:00:18.0: bridge window [mem 0xd4700000-0xd47fffff 64bit pref] -05:51:18,521 INFO kernel:pci 0000:00:18.1: PCI bridge to [bus 1c-1c] -05:51:18,521 DEBUG kernel:pci 0000:00:18.1: bridge window [io 0xb000-0xbfff] -05:51:18,521 DEBUG kernel:pci 0000:00:18.1: bridge window [mem 0xd2b00000-0xd2bfffff] -05:51:18,521 DEBUG kernel:pci 0000:00:18.1: bridge window [mem 0xd4a00000-0xd4afffff 64bit pref] -05:51:18,521 INFO kernel:pci 0000:00:18.2: PCI bridge to [bus 1d-1d] -05:51:18,521 DEBUG kernel:pci 0000:00:18.2: bridge window [io 0xf000-0xffff] -05:51:18,521 DEBUG kernel:pci 0000:00:18.2: bridge window [mem 0xd2f00000-0xd2ffffff] -05:51:18,521 DEBUG kernel:pci 0000:00:18.2: bridge window [mem 0xd4c00000-0xd4cfffff 64bit pref] -05:51:18,521 INFO kernel:pci 0000:00:18.3: PCI bridge to [bus 1e-1e] -05:51:18,521 DEBUG kernel:pci 0000:00:18.3: bridge window [io 0xf000-0x0000] (disabled) -05:51:18,521 DEBUG kernel:pci 0000:00:18.3: bridge window [mem 0xd3300000-0xd33fffff] -05:51:18,521 DEBUG kernel:pci 0000:00:18.3: bridge window [mem 0xd4e00000-0xd4efffff 64bit pref] -05:51:18,521 INFO kernel:pci 0000:00:18.4: PCI bridge to [bus 1f-1f] -05:51:18,521 DEBUG kernel:pci 0000:00:18.4: bridge window [io 0xf000-0x0000] (disabled) -05:51:18,521 DEBUG kernel:pci 0000:00:18.4: bridge window [mem 0xd3700000-0xd37fffff] -05:51:18,521 DEBUG kernel:pci 0000:00:18.4: bridge window [mem 0xd5000000-0xd50fffff 64bit pref] -05:51:18,521 INFO kernel:pci 0000:00:18.5: PCI bridge to [bus 20-20] -05:51:18,521 DEBUG kernel:pci 0000:00:18.5: bridge window [io 0xf000-0x0000] (disabled) -05:51:18,521 DEBUG kernel:pci 0000:00:18.5: bridge window [mem 0xd3b00000-0xd3bfffff] -05:51:18,521 DEBUG kernel:pci 0000:00:18.5: bridge window [mem 0xd5200000-0xd52fffff 64bit pref] -05:51:18,521 INFO kernel:pci 0000:00:18.6: PCI bridge to [bus 21-21] -05:51:18,521 DEBUG kernel:pci 0000:00:18.6: bridge window [io 0xf000-0x0000] (disabled) -05:51:18,521 DEBUG kernel:pci 0000:00:18.6: bridge window [mem 0xd3f00000-0xd3ffffff] -05:51:18,521 DEBUG kernel:pci 0000:00:18.6: bridge window [mem 0xd5400000-0xd54fffff 64bit pref] -05:51:18,521 INFO kernel:pci 0000:00:18.7: PCI bridge to [bus 22-22] -05:51:18,521 DEBUG kernel:pci 0000:00:18.7: bridge window [io 0xf000-0x0000] (disabled) -05:51:18,521 DEBUG kernel:pci 0000:00:18.7: bridge window [mem 0xd4300000-0xd43fffff] -05:51:18,521 DEBUG kernel:pci 0000:00:18.7: bridge window [mem 0xd5600000-0xd56fffff 64bit pref] -05:51:18,521 DEBUG kernel:ACPI: PCI Interrupt Routing Table [\_SB_.PCI0._PRT] -05:51:18,521 INFO kernel: pci0000:00: Requesting ACPI _OSC control (0x1d) -05:51:18,521 INFO kernel: pci0000:00: ACPI _OSC control (0x15) granted -05:51:18,521 INFO kernel:ACPI: PCI Interrupt Link [LNKA] (IRQs 3 4 5 6 7 *9 10 11 14 15) -05:51:18,521 INFO kernel:ACPI: PCI Interrupt Link [LNKB] (IRQs 3 4 5 6 7 9 10 *11 14 15) -05:51:18,521 INFO kernel:ACPI: PCI Interrupt Link [LNKC] (IRQs 3 4 5 6 7 9 *10 11 14 15) -05:51:18,521 INFO kernel:ACPI: PCI Interrupt Link [LNKD] (IRQs 3 4 *5 6 7 9 10 11 14 15) -05:51:18,521 INFO kernel:vgaarb: device added: PCI:0000:00:0f.0,decodes=io+mem,owns=io+mem,locks=none -05:51:18,521 INFO kernel:vgaarb: loaded -05:51:18,521 INFO kernel:vgaarb: bridge control possible 0000:00:0f.0 -05:51:18,521 NOTICE kernel:SCSI subsystem initialized -05:51:18,521 DEBUG kernel:libata version 3.00 loaded. -05:51:18,521 INFO kernel:usbcore: registered new interface driver usbfs -05:51:18,521 INFO kernel:usbcore: registered new interface driver hub -05:51:18,521 INFO kernel:usbcore: registered new device driver usb -05:51:18,521 INFO kernel:PCI: Using ACPI for IRQ routing -05:51:18,521 DEBUG kernel:PCI: old code would have set cacheline size to 32 bytes, but clflush_size = 64 -05:51:18,521 DEBUG kernel:PCI: pci_cache_line_size set to 64 bytes -05:51:18,521 INFO kernel:pci 0000:00:18.2: no compatible bridge window for [io 0xf000-0xffff] -05:51:18,521 INFO kernel:pci 0000:00:18.2: can't reserve window [io 0xf000-0xffff] -05:51:18,521 NOTICE kernel:lo: Dropping TSO features since no CSUM feature. -05:51:18,521 INFO kernel:NetLabel: Initializing -05:51:18,521 INFO kernel:NetLabel: domain hash size = 128 -05:51:18,521 INFO kernel:NetLabel: protocols = UNLABELED CIPSOv4 -05:51:18,521 INFO kernel:NetLabel: unlabeled traffic allowed by default -05:51:18,521 INFO kernel:HPET: 16 timers in total, 0 timers will be used for per-cpu timer -05:51:18,521 INFO kernel:hpet0: at MMIO 0xfed00000, IRQs 2, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 -05:51:18,521 INFO kernel:hpet0: 16 comparators, 64-bit 14.318180 MHz counter -05:51:18,521 INFO kernel:Switching to clocksource hpet -05:51:18,521 INFO kernel:pnp: PnP ACPI init -05:51:18,521 INFO kernel:ACPI: bus type pnp registered -05:51:18,521 DEBUG kernel:pnp 00:00: [io 0x0cf8-0x0cff] -05:51:18,521 DEBUG kernel:pnp 00:00: Plug and Play ACPI device, IDs PNP0a03 PNP0a08 (active) -05:51:18,521 DEBUG kernel:pnp 00:01: [io 0x0010-0x001f] -05:51:18,521 DEBUG kernel:pnp 00:01: [io 0x0024-0x0025] -05:51:18,521 DEBUG kernel:pnp 00:01: [io 0x0028-0x0029] -05:51:18,521 DEBUG kernel:pnp 00:01: [io 0x002c-0x002d] -05:51:18,521 DEBUG kernel:pnp 00:01: [io 0x002e-0x002f] -05:51:18,521 DEBUG kernel:pnp 00:01: [io 0x0030-0x0031] -05:51:18,521 DEBUG kernel:pnp 00:01: [io 0x0034-0x0035] -05:51:18,521 DEBUG kernel:pnp 00:01: [io 0x0038-0x0039] -05:51:18,521 DEBUG kernel:pnp 00:01: [io 0x003c-0x003d] -05:51:18,521 DEBUG kernel:pnp 00:01: [io 0x0050-0x0053] -05:51:18,521 DEBUG kernel:pnp 00:01: [io 0x0072-0x0077] -05:51:18,521 DEBUG kernel:pnp 00:01: [io 0x0080] -05:51:18,521 DEBUG kernel:pnp 00:01: [io 0x0090-0x009f] -05:51:18,521 DEBUG kernel:pnp 00:01: [io 0x00a4-0x00a5] -05:51:18,521 DEBUG kernel:pnp 00:01: [io 0x00a8-0x00a9] -05:51:18,521 DEBUG kernel:pnp 00:01: [io 0x00ac-0x00ad] -05:51:18,521 DEBUG kernel:pnp 00:01: [io 0x00b0-0x00b5] -05:51:18,521 DEBUG kernel:pnp 00:01: [io 0x00b8-0x00b9] -05:51:18,521 DEBUG kernel:pnp 00:01: [io 0x00bc-0x00bd] -05:51:18,521 DEBUG kernel:pnp 00:01: [io 0x1000-0x103f] -05:51:18,521 DEBUG kernel:pnp 00:01: [io 0x1040-0x104f] -05:51:18,521 DEBUG kernel:pnp 00:01: [io 0x0cf0-0x0cf1] -05:51:18,521 DEBUG kernel:pnp 00:01: Plug and Play ACPI device, IDs PNP0c02 (active) -05:51:18,521 DEBUG kernel:pnp 00:02: [io 0x0000-0x000f] -05:51:18,521 DEBUG kernel:pnp 00:02: [io 0x0081-0x008f] -05:51:18,521 DEBUG kernel:pnp 00:02: [io 0x00c0-0x00df] -05:51:18,521 DEBUG kernel:pnp 00:02: [dma 4] -05:51:18,521 DEBUG kernel:pnp 00:02: Plug and Play ACPI device, IDs PNP0200 (active) -05:51:18,521 DEBUG kernel:pnp 00:03: [io 0x0020-0x0021] -05:51:18,521 DEBUG kernel:pnp 00:03: [io 0x00a0-0x00a1] -05:51:18,521 DEBUG kernel:pnp 00:03: [io 0x04d0-0x04d1] -05:51:18,521 DEBUG kernel:pnp 00:03: [irq 2 disabled] -05:51:18,521 DEBUG kernel:pnp 00:03: Plug and Play ACPI device, IDs PNP0001 (active) -05:51:18,521 DEBUG kernel:pnp 00:04: [io 0x0070-0x0071] -05:51:18,521 DEBUG kernel:pnp 00:04: [irq 8] -05:51:18,521 DEBUG kernel:pnp 00:04: Plug and Play ACPI device, IDs PNP0b00 (active) -05:51:18,521 DEBUG kernel:pnp 00:05: [io 0x0061] -05:51:18,521 DEBUG kernel:pnp 00:05: Plug and Play ACPI device, IDs PNP0800 (active) -05:51:18,521 DEBUG kernel:pnp 00:06: [io 0x0060] -05:51:18,521 DEBUG kernel:pnp 00:06: [io 0x0064] -05:51:18,521 DEBUG kernel:pnp 00:06: [irq 1] -05:51:18,521 DEBUG kernel:pnp 00:06: Plug and Play ACPI device, IDs PNP0303 (active) -05:51:18,521 DEBUG kernel:pnp 00:07: [irq 12] -05:51:18,521 DEBUG kernel:pnp 00:07: Plug and Play ACPI device, IDs PNP0f13 (active) -05:51:18,521 DEBUG kernel:pnp 00:08: [mem 0xfed00000-0xfed003ff] -05:51:18,521 DEBUG kernel:pnp 00:08: Plug and Play ACPI device, IDs PNP0103 PNP0c01 (active) -05:51:18,521 DEBUG kernel:pnp 00:09: [io 0x0378-0x037f] -05:51:18,521 DEBUG kernel:pnp 00:09: [irq 7] -05:51:18,521 DEBUG kernel:pnp 00:09: Plug and Play ACPI device, IDs PNP0400 (active) -05:51:18,521 DEBUG kernel:pnp 00:0a: [io 0x03f8-0x03ff] -05:51:18,521 DEBUG kernel:pnp 00:0a: [irq 4] -05:51:18,521 DEBUG kernel:pnp 00:0a: Plug and Play ACPI device, IDs PNP0501 (active) -05:51:18,521 DEBUG kernel:pnp 00:0b: [io 0x02f8-0x02ff] -05:51:18,521 DEBUG kernel:pnp 00:0b: [irq 3] -05:51:18,521 DEBUG kernel:pnp 00:0b: Plug and Play ACPI device, IDs PNP0501 (active) -05:51:18,521 DEBUG kernel:pnp 00:0c: [io 0x03f0-0x03f5] -05:51:18,521 DEBUG kernel:pnp 00:0c: [io 0x03f7] -05:51:18,521 DEBUG kernel:pnp 00:0c: [irq 6] -05:51:18,521 DEBUG kernel:pnp 00:0c: [dma 2] -05:51:18,521 DEBUG kernel:pnp 00:0c: Plug and Play ACPI device, IDs PNP0700 (active) -05:51:18,521 DEBUG kernel:pnp 00:0d: [mem 0xe0000000-0xefffffff] -05:51:18,521 DEBUG kernel:pnp 00:0d: [io 0x1060-0x107f] -05:51:18,521 DEBUG kernel:pnp 00:0d: [mem 0xd0200000-0xd03fffff] -05:51:18,521 DEBUG kernel:pnp 00:0d: Plug and Play ACPI device, IDs PNP0c02 (active) -05:51:18,521 INFO kernel:pnp: PnP ACPI: found 14 devices -05:51:18,521 INFO kernel:ACPI: ACPI bus type pnp unregistered -05:51:18,521 INFO kernel:system 00:01: [io 0x1000-0x103f] has been reserved -05:51:18,521 INFO kernel:system 00:01: [io 0x1040-0x104f] has been reserved -05:51:18,521 INFO kernel:system 00:01: [io 0x0cf0-0x0cf1] has been reserved -05:51:18,521 INFO kernel:system 00:08: [mem 0xfed00000-0xfed003ff] has been reserved -05:51:18,521 INFO kernel:system 00:0d: [io 0x1060-0x107f] has been reserved -05:51:18,521 INFO kernel:system 00:0d: [mem 0xe0000000-0xefffffff] has been reserved -05:51:18,521 INFO kernel:system 00:0d: [mem 0xd0200000-0xd03fffff] has been reserved -05:51:18,521 DEBUG kernel:PCI: max bus depth: 1 pci_try_num: 2 -05:51:18,521 INFO kernel:pci 0000:00:0f.0: BAR 6: assigned [mem 0x80000000-0x80007fff pref] -05:51:18,521 INFO kernel:pci 0000:00:10.0: BAR 6: assigned [mem 0x80008000-0x8000bfff pref] -05:51:18,521 INFO kernel:pci 0000:00:18.2: BAR 13: can't assign io (size 0x1000) -05:51:18,521 INFO kernel:pci 0000:00:18.7: BAR 13: can't assign io (size 0x1000) -05:51:18,521 INFO kernel:pci 0000:00:18.6: BAR 13: can't assign io (size 0x1000) -05:51:18,521 INFO kernel:pci 0000:00:18.5: BAR 13: can't assign io (size 0x1000) -05:51:18,521 INFO kernel:pci 0000:00:18.4: BAR 13: can't assign io (size 0x1000) -05:51:18,521 INFO kernel:pci 0000:00:18.3: BAR 13: can't assign io (size 0x1000) -05:51:18,521 INFO kernel:pci 0000:00:17.7: BAR 13: can't assign io (size 0x1000) -05:51:18,521 INFO kernel:pci 0000:00:17.6: BAR 13: can't assign io (size 0x1000) -05:51:18,521 INFO kernel:pci 0000:00:17.5: BAR 13: can't assign io (size 0x1000) -05:51:18,521 INFO kernel:pci 0000:00:17.4: BAR 13: can't assign io (size 0x1000) -05:51:18,521 INFO kernel:pci 0000:00:17.3: BAR 13: can't assign io (size 0x1000) -05:51:18,521 INFO kernel:pci 0000:00:16.7: BAR 13: can't assign io (size 0x1000) -05:51:18,521 INFO kernel:pci 0000:00:16.6: BAR 13: can't assign io (size 0x1000) -05:51:18,521 INFO kernel:pci 0000:00:16.5: BAR 13: can't assign io (size 0x1000) -05:51:18,521 INFO kernel:pci 0000:00:16.4: BAR 13: can't assign io (size 0x1000) -05:51:18,521 INFO kernel:pci 0000:00:16.3: BAR 13: can't assign io (size 0x1000) -05:51:18,521 INFO kernel:pci 0000:00:15.7: BAR 13: can't assign io (size 0x1000) -05:51:18,521 INFO kernel:pci 0000:00:15.6: BAR 13: can't assign io (size 0x1000) -05:51:18,521 INFO kernel:pci 0000:00:15.5: BAR 13: can't assign io (size 0x1000) -05:51:18,521 INFO kernel:pci 0000:00:15.4: BAR 13: can't assign io (size 0x1000) -05:51:18,521 INFO kernel:pci 0000:00:15.3: BAR 13: can't assign io (size 0x1000) -05:51:18,521 INFO kernel:pci 0000:00:01.0: PCI bridge to [bus 01-01] -05:51:18,521 INFO kernel:pci 0000:00:01.0: PCI bridge to [bus 01-01] -05:51:18,521 INFO kernel:pci 0000:00:01.0: bridge window [io disabled] -05:51:18,521 INFO kernel:pci 0000:00:01.0: bridge window [mem disabled] -05:51:18,521 INFO kernel:pci 0000:00:01.0: bridge window [mem pref disabled] -05:51:18,521 INFO kernel:pci 0000:02:00.0: BAR 6: assigned [mem 0xdc400000-0xdc40ffff pref] -05:51:18,521 INFO kernel:pci 0000:02:01.0: BAR 6: assigned [mem 0xdc410000-0xdc41ffff pref] -05:51:18,521 INFO kernel:pci 0000:02:02.0: BAR 6: assigned [mem 0xdc420000-0xdc42ffff pref] -05:51:18,521 INFO kernel:pci 0000:02:03.0: BAR 6: assigned [mem 0xdc430000-0xdc43ffff pref] -05:51:18,521 INFO kernel:pci 0000:00:11.0: PCI bridge to [bus 02-02] -05:51:18,521 INFO kernel:pci 0000:00:11.0: PCI bridge to [bus 02-02] -05:51:18,521 INFO kernel:pci 0000:00:11.0: bridge window [io 0x2000-0x3fff] -05:51:18,521 INFO kernel:pci 0000:00:11.0: bridge window [mem 0xd1000000-0xd23fffff] -05:51:18,521 INFO kernel:pci 0000:00:11.0: bridge window [mem 0xdc400000-0xdc9fffff 64bit pref] -05:51:18,521 INFO kernel:pci 0000:00:15.0: PCI bridge to [bus 03-03] -05:51:18,521 INFO kernel:pci 0000:00:15.0: PCI bridge to [bus 03-03] -05:51:18,521 INFO kernel:pci 0000:00:15.0: bridge window [io 0x4000-0x4fff] -05:51:18,521 INFO kernel:pci 0000:00:15.0: bridge window [mem 0xd2400000-0xd24fffff] -05:51:18,521 INFO kernel:pci 0000:00:15.0: bridge window [mem 0xd4400000-0xd44fffff 64bit pref] -05:51:18,521 INFO kernel:pci 0000:00:15.1: PCI bridge to [bus 04-04] -05:51:18,521 INFO kernel:pci 0000:00:15.1: PCI bridge to [bus 04-04] -05:51:18,521 INFO kernel:pci 0000:00:15.1: bridge window [io 0x8000-0x8fff] -05:51:18,521 INFO kernel:pci 0000:00:15.1: bridge window [mem 0xd2800000-0xd28fffff] -05:51:18,521 INFO kernel:pci 0000:00:15.1: bridge window [mem 0xd4800000-0xd48fffff 64bit pref] -05:51:18,521 INFO kernel:pci 0000:00:15.2: PCI bridge to [bus 05-05] -05:51:18,521 INFO kernel:pci 0000:00:15.2: PCI bridge to [bus 05-05] -05:51:18,521 INFO kernel:pci 0000:00:15.2: bridge window [io 0xc000-0xcfff] -05:51:18,521 INFO kernel:pci 0000:00:15.2: bridge window [mem 0xd2c00000-0xd2cfffff] -05:51:18,521 INFO kernel:pci 0000:00:15.2: bridge window [mem 0xdcb00000-0xdcbfffff 64bit pref] -05:51:18,521 INFO kernel:pci 0000:00:15.3: PCI bridge to [bus 06-06] -05:51:18,521 INFO kernel:pci 0000:00:15.3: PCI bridge to [bus 06-06] -05:51:18,521 INFO kernel:pci 0000:00:15.3: bridge window [io disabled] -05:51:18,521 INFO kernel:pci 0000:00:15.3: bridge window [mem 0xd3000000-0xd30fffff] -05:51:18,521 INFO kernel:pci 0000:00:15.3: bridge window [mem 0xdcd00000-0xdcdfffff 64bit pref] -05:51:18,521 INFO kernel:pci 0000:00:15.4: PCI bridge to [bus 07-07] -05:51:18,521 INFO kernel:pci 0000:00:15.4: PCI bridge to [bus 07-07] -05:51:18,521 INFO kernel:pci 0000:00:15.4: bridge window [io disabled] -05:51:18,521 INFO kernel:pci 0000:00:15.4: bridge window [mem 0xd3400000-0xd34fffff] -05:51:18,521 INFO kernel:pci 0000:00:15.4: bridge window [mem 0xdcf00000-0xdcffffff 64bit pref] -05:51:18,521 INFO kernel:pci 0000:00:15.5: PCI bridge to [bus 08-08] -05:51:18,521 INFO kernel:pci 0000:00:15.5: PCI bridge to [bus 08-08] -05:51:18,521 INFO kernel:pci 0000:00:15.5: bridge window [io disabled] -05:51:18,521 INFO kernel:pci 0000:00:15.5: bridge window [mem 0xd3800000-0xd38fffff] -05:51:18,521 INFO kernel:pci 0000:00:15.5: bridge window [mem 0xdd100000-0xdd1fffff 64bit pref] -05:51:18,521 INFO kernel:pci 0000:00:15.6: PCI bridge to [bus 09-09] -05:51:18,521 INFO kernel:pci 0000:00:15.6: PCI bridge to [bus 09-09] -05:51:18,521 INFO kernel:pci 0000:00:15.6: bridge window [io disabled] -05:51:18,521 INFO kernel:pci 0000:00:15.6: bridge window [mem 0xd3c00000-0xd3cfffff] -05:51:18,521 INFO kernel:pci 0000:00:15.6: bridge window [mem 0xdd300000-0xdd3fffff 64bit pref] -05:51:18,521 INFO kernel:pci 0000:00:15.7: PCI bridge to [bus 0a-0a] -05:51:18,521 INFO kernel:pci 0000:00:15.7: PCI bridge to [bus 0a-0a] -05:51:18,521 INFO kernel:pci 0000:00:15.7: bridge window [io disabled] -05:51:18,521 INFO kernel:pci 0000:00:15.7: bridge window [mem 0xd4000000-0xd40fffff] -05:51:18,521 INFO kernel:pci 0000:00:15.7: bridge window [mem 0xdd500000-0xdd5fffff 64bit pref] -05:51:18,521 INFO kernel:pci 0000:00:16.0: PCI bridge to [bus 0b-0b] -05:51:18,521 INFO kernel:pci 0000:00:16.0: PCI bridge to [bus 0b-0b] -05:51:18,521 INFO kernel:pci 0000:00:16.0: bridge window [io 0x5000-0x5fff] -05:51:18,521 INFO kernel:pci 0000:00:16.0: bridge window [mem 0xd2500000-0xd25fffff] -05:51:18,521 INFO kernel:pci 0000:00:16.0: bridge window [mem 0xd4500000-0xd45fffff 64bit pref] -05:51:18,521 INFO kernel:pci 0000:00:16.1: PCI bridge to [bus 0c-0c] -05:51:18,521 INFO kernel:pci 0000:00:16.1: PCI bridge to [bus 0c-0c] -05:51:18,521 INFO kernel:pci 0000:00:16.1: bridge window [io 0x9000-0x9fff] -05:51:18,521 INFO kernel:pci 0000:00:16.1: bridge window [mem 0xd2900000-0xd29fffff] -05:51:18,521 INFO kernel:pci 0000:00:16.1: bridge window [mem 0xd4900000-0xd49fffff 64bit pref] -05:51:18,521 INFO kernel:pci 0000:00:16.2: PCI bridge to [bus 0d-0d] -05:51:18,521 INFO kernel:pci 0000:00:16.2: PCI bridge to [bus 0d-0d] -05:51:18,521 INFO kernel:pci 0000:00:16.2: bridge window [io 0xd000-0xdfff] -05:51:18,521 INFO kernel:pci 0000:00:16.2: bridge window [mem 0xd2d00000-0xd2dfffff] -05:51:18,521 INFO kernel:pci 0000:00:16.2: bridge window [mem 0xd4b00000-0xd4bfffff 64bit pref] -05:51:18,521 INFO kernel:pci 0000:00:16.3: PCI bridge to [bus 0e-0e] -05:51:18,521 INFO kernel:pci 0000:00:16.3: PCI bridge to [bus 0e-0e] -05:51:18,521 INFO kernel:pci 0000:00:16.3: bridge window [io disabled] -05:51:18,521 INFO kernel:pci 0000:00:16.3: bridge window [mem 0xd3100000-0xd31fffff] -05:51:18,521 INFO kernel:pci 0000:00:16.3: bridge window [mem 0xd4d00000-0xd4dfffff 64bit pref] -05:51:18,521 INFO kernel:pci 0000:00:16.4: PCI bridge to [bus 0f-0f] -05:51:18,521 INFO kernel:pci 0000:00:16.4: PCI bridge to [bus 0f-0f] -05:51:18,521 INFO kernel:pci 0000:00:16.4: bridge window [io disabled] -05:51:18,521 INFO kernel:pci 0000:00:16.4: bridge window [mem 0xd3500000-0xd35fffff] -05:51:18,521 INFO kernel:pci 0000:00:16.4: bridge window [mem 0xd4f00000-0xd4ffffff 64bit pref] -05:51:18,521 INFO kernel:pci 0000:00:16.5: PCI bridge to [bus 10-10] -05:51:18,521 INFO kernel:pci 0000:00:16.5: PCI bridge to [bus 10-10] -05:51:18,521 INFO kernel:pci 0000:00:16.5: bridge window [io disabled] -05:51:18,521 INFO kernel:pci 0000:00:16.5: bridge window [mem 0xd3900000-0xd39fffff] -05:51:18,521 INFO kernel:pci 0000:00:16.5: bridge window [mem 0xd5100000-0xd51fffff 64bit pref] -05:51:18,521 INFO kernel:pci 0000:00:16.6: PCI bridge to [bus 11-11] -05:51:18,521 INFO kernel:pci 0000:00:16.6: PCI bridge to [bus 11-11] -05:51:18,521 INFO kernel:pci 0000:00:16.6: bridge window [io disabled] -05:51:18,521 INFO kernel:pci 0000:00:16.6: bridge window [mem 0xd3d00000-0xd3dfffff] -05:51:18,521 INFO kernel:pci 0000:00:16.6: bridge window [mem 0xd5300000-0xd53fffff 64bit pref] -05:51:18,521 INFO kernel:pci 0000:00:16.7: PCI bridge to [bus 12-12] -05:51:18,521 INFO kernel:pci 0000:00:16.7: PCI bridge to [bus 12-12] -05:51:18,521 INFO kernel:pci 0000:00:16.7: bridge window [io disabled] -05:51:18,521 INFO kernel:pci 0000:00:16.7: bridge window [mem 0xd4100000-0xd41fffff] -05:51:18,521 INFO kernel:pci 0000:00:16.7: bridge window [mem 0xd5500000-0xd55fffff 64bit pref] -05:51:18,521 INFO kernel:pci 0000:00:17.0: PCI bridge to [bus 13-13] -05:51:18,521 INFO kernel:pci 0000:00:17.0: PCI bridge to [bus 13-13] -05:51:18,521 INFO kernel:pci 0000:00:17.0: bridge window [io 0x6000-0x6fff] -05:51:18,521 INFO kernel:pci 0000:00:17.0: bridge window [mem 0xd2600000-0xd26fffff] -05:51:18,521 INFO kernel:pci 0000:00:17.0: bridge window [mem 0xd4600000-0xd46fffff 64bit pref] -05:51:18,521 INFO kernel:pci 0000:00:17.1: PCI bridge to [bus 14-14] -05:51:18,521 INFO kernel:pci 0000:00:17.1: PCI bridge to [bus 14-14] -05:51:18,521 INFO kernel:pci 0000:00:17.1: bridge window [io 0xa000-0xafff] -05:51:18,521 INFO kernel:pci 0000:00:17.1: bridge window [mem 0xd2a00000-0xd2afffff] -05:51:18,521 INFO kernel:pci 0000:00:17.1: bridge window [mem 0xdca00000-0xdcafffff 64bit pref] -05:51:18,521 INFO kernel:pci 0000:00:17.2: PCI bridge to [bus 15-15] -05:51:18,521 INFO kernel:pci 0000:00:17.2: PCI bridge to [bus 15-15] -05:51:18,521 INFO kernel:pci 0000:00:17.2: bridge window [io 0xe000-0xefff] -05:51:18,521 INFO kernel:pci 0000:00:17.2: bridge window [mem 0xd2e00000-0xd2efffff] -05:51:18,521 INFO kernel:pci 0000:00:17.2: bridge window [mem 0xdcc00000-0xdccfffff 64bit pref] -05:51:18,521 INFO kernel:pci 0000:00:17.3: PCI bridge to [bus 16-16] -05:51:18,521 INFO kernel:pci 0000:00:17.3: PCI bridge to [bus 16-16] -05:51:18,521 INFO kernel:pci 0000:00:17.3: bridge window [io disabled] -05:51:18,521 INFO kernel:pci 0000:00:17.3: bridge window [mem 0xd3200000-0xd32fffff] -05:51:18,521 INFO kernel:pci 0000:00:17.3: bridge window [mem 0xdce00000-0xdcefffff 64bit pref] -05:51:18,521 INFO kernel:pci 0000:00:17.4: PCI bridge to [bus 17-17] -05:51:18,521 INFO kernel:pci 0000:00:17.4: PCI bridge to [bus 17-17] -05:51:18,521 INFO kernel:pci 0000:00:17.4: bridge window [io disabled] -05:51:18,521 INFO kernel:pci 0000:00:17.4: bridge window [mem 0xd3600000-0xd36fffff] -05:51:18,521 INFO kernel:pci 0000:00:17.4: bridge window [mem 0xdd000000-0xdd0fffff 64bit pref] -05:51:18,521 INFO kernel:pci 0000:00:17.5: PCI bridge to [bus 18-18] -05:51:18,521 INFO kernel:pci 0000:00:17.5: PCI bridge to [bus 18-18] -05:51:18,521 INFO kernel:pci 0000:00:17.5: bridge window [io disabled] -05:51:18,521 INFO kernel:pci 0000:00:17.5: bridge window [mem 0xd3a00000-0xd3afffff] -05:51:18,521 INFO kernel:pci 0000:00:17.5: bridge window [mem 0xdd200000-0xdd2fffff 64bit pref] -05:51:18,521 INFO kernel:pci 0000:00:17.6: PCI bridge to [bus 19-19] -05:51:18,521 INFO kernel:pci 0000:00:17.6: PCI bridge to [bus 19-19] -05:51:18,521 INFO kernel:pci 0000:00:17.6: bridge window [io disabled] -05:51:18,521 INFO kernel:pci 0000:00:17.6: bridge window [mem 0xd3e00000-0xd3efffff] -05:51:18,521 INFO kernel:pci 0000:00:17.6: bridge window [mem 0xdd400000-0xdd4fffff 64bit pref] -05:51:18,521 INFO kernel:pci 0000:00:17.7: PCI bridge to [bus 1a-1a] -05:51:18,521 INFO kernel:pci 0000:00:17.7: PCI bridge to [bus 1a-1a] -05:51:18,521 INFO kernel:pci 0000:00:17.7: bridge window [io disabled] -05:51:18,521 INFO kernel:pci 0000:00:17.7: bridge window [mem 0xd4200000-0xd42fffff] -05:51:18,521 INFO kernel:pci 0000:00:17.7: bridge window [mem 0xdd600000-0xdd6fffff 64bit pref] -05:51:18,521 INFO kernel:pci 0000:00:18.0: PCI bridge to [bus 1b-1b] -05:51:18,521 INFO kernel:pci 0000:00:18.0: PCI bridge to [bus 1b-1b] -05:51:18,521 INFO kernel:pci 0000:00:18.0: bridge window [io 0x7000-0x7fff] -05:51:18,521 INFO kernel:pci 0000:00:18.0: bridge window [mem 0xd2700000-0xd27fffff] -05:51:18,521 INFO kernel:pci 0000:00:18.0: bridge window [mem 0xd4700000-0xd47fffff 64bit pref] -05:51:18,521 INFO kernel:pci 0000:00:18.1: PCI bridge to [bus 1c-1c] -05:51:18,521 INFO kernel:pci 0000:00:18.1: PCI bridge to [bus 1c-1c] -05:51:18,521 INFO kernel:pci 0000:00:18.1: bridge window [io 0xb000-0xbfff] -05:51:18,521 INFO kernel:pci 0000:00:18.1: bridge window [mem 0xd2b00000-0xd2bfffff] -05:51:18,521 INFO kernel:pci 0000:00:18.1: bridge window [mem 0xd4a00000-0xd4afffff 64bit pref] -05:51:18,521 INFO kernel:pci 0000:00:18.2: PCI bridge to [bus 1d-1d] -05:51:18,521 INFO kernel:pci 0000:00:18.2: PCI bridge to [bus 1d-1d] -05:51:18,521 INFO kernel:pci 0000:00:18.2: bridge window [io disabled] -05:51:18,521 INFO kernel:pci 0000:00:18.2: bridge window [mem 0xd2f00000-0xd2ffffff] -05:51:18,521 INFO kernel:pci 0000:00:18.2: bridge window [mem 0xd4c00000-0xd4cfffff 64bit pref] -05:51:18,521 INFO kernel:pci 0000:00:18.3: PCI bridge to [bus 1e-1e] -05:51:18,521 INFO kernel:pci 0000:00:18.3: PCI bridge to [bus 1e-1e] -05:51:18,521 INFO kernel:pci 0000:00:18.3: bridge window [io disabled] -05:51:18,521 INFO kernel:pci 0000:00:18.3: bridge window [mem 0xd3300000-0xd33fffff] -05:51:18,521 INFO kernel:pci 0000:00:18.3: bridge window [mem 0xd4e00000-0xd4efffff 64bit pref] -05:51:18,521 INFO kernel:pci 0000:00:18.4: PCI bridge to [bus 1f-1f] -05:51:18,521 INFO kernel:pci 0000:00:18.4: PCI bridge to [bus 1f-1f] -05:51:18,521 INFO kernel:pci 0000:00:18.4: bridge window [io disabled] -05:51:18,521 INFO kernel:pci 0000:00:18.4: bridge window [mem 0xd3700000-0xd37fffff] -05:51:18,521 INFO kernel:pci 0000:00:18.4: bridge window [mem 0xd5000000-0xd50fffff 64bit pref] -05:51:18,521 INFO kernel:pci 0000:00:18.5: PCI bridge to [bus 20-20] -05:51:18,521 INFO kernel:pci 0000:00:18.5: PCI bridge to [bus 20-20] -05:51:18,521 INFO kernel:pci 0000:00:18.5: bridge window [io disabled] -05:51:18,521 INFO kernel:pci 0000:00:18.5: bridge window [mem 0xd3b00000-0xd3bfffff] -05:51:18,521 INFO kernel:pci 0000:00:18.5: bridge window [mem 0xd5200000-0xd52fffff 64bit pref] -05:51:18,521 INFO kernel:pci 0000:00:18.6: PCI bridge to [bus 21-21] -05:51:18,521 INFO kernel:pci 0000:00:18.6: PCI bridge to [bus 21-21] -05:51:18,521 INFO kernel:pci 0000:00:18.6: bridge window [io disabled] -05:51:18,521 INFO kernel:pci 0000:00:18.6: bridge window [mem 0xd3f00000-0xd3ffffff] -05:51:18,521 INFO kernel:pci 0000:00:18.6: bridge window [mem 0xd5400000-0xd54fffff 64bit pref] -05:51:18,521 INFO kernel:pci 0000:00:18.7: PCI bridge to [bus 22-22] -05:51:18,521 INFO kernel:pci 0000:00:18.7: PCI bridge to [bus 22-22] -05:51:18,521 INFO kernel:pci 0000:00:18.7: bridge window [io disabled] -05:51:18,521 INFO kernel:pci 0000:00:18.7: bridge window [mem 0xd4300000-0xd43fffff] -05:51:18,521 INFO kernel:pci 0000:00:18.7: bridge window [mem 0xd5600000-0xd56fffff 64bit pref] -05:51:18,521 DEBUG kernel:pci 0000:00:01.0: setting latency timer to 64 -05:51:18,521 DEBUG kernel:pci 0000:00:15.0: setting latency timer to 64 -05:51:18,521 DEBUG kernel:pci 0000:00:15.1: setting latency timer to 64 -05:51:18,521 DEBUG kernel:pci 0000:00:15.2: setting latency timer to 64 -05:51:18,521 DEBUG kernel:pci 0000:00:15.3: setting latency timer to 64 -05:51:18,521 DEBUG kernel:pci 0000:00:15.4: setting latency timer to 64 -05:51:18,521 DEBUG kernel:pci 0000:00:15.5: setting latency timer to 64 -05:51:18,521 DEBUG kernel:pci 0000:00:15.6: setting latency timer to 64 -05:51:18,521 DEBUG kernel:pci 0000:00:15.7: setting latency timer to 64 -05:51:18,521 DEBUG kernel:pci 0000:00:16.0: setting latency timer to 64 -05:51:18,521 DEBUG kernel:pci 0000:00:16.1: setting latency timer to 64 -05:51:18,521 DEBUG kernel:pci 0000:00:16.2: setting latency timer to 64 -05:51:18,521 DEBUG kernel:pci 0000:00:16.3: setting latency timer to 64 -05:51:18,521 DEBUG kernel:pci 0000:00:16.4: setting latency timer to 64 -05:51:18,521 DEBUG kernel:pci 0000:00:16.5: setting latency timer to 64 -05:51:18,521 DEBUG kernel:pci 0000:00:16.6: setting latency timer to 64 -05:51:18,521 DEBUG kernel:pci 0000:00:16.7: setting latency timer to 64 -05:51:18,521 DEBUG kernel:pci 0000:00:17.0: setting latency timer to 64 -05:51:18,521 DEBUG kernel:pci 0000:00:17.1: setting latency timer to 64 -05:51:18,522 DEBUG kernel:pci 0000:00:17.2: setting latency timer to 64 -05:51:18,522 DEBUG kernel:pci 0000:00:17.3: setting latency timer to 64 -05:51:18,522 DEBUG kernel:pci 0000:00:17.4: setting latency timer to 64 -05:51:18,522 DEBUG kernel:pci 0000:00:17.5: setting latency timer to 64 -05:51:18,522 DEBUG kernel:pci 0000:00:17.6: setting latency timer to 64 -05:51:18,522 DEBUG kernel:pci 0000:00:17.7: setting latency timer to 64 -05:51:18,522 DEBUG kernel:pci 0000:00:18.0: setting latency timer to 64 -05:51:18,522 DEBUG kernel:pci 0000:00:18.1: setting latency timer to 64 -05:51:18,522 DEBUG kernel:pci 0000:00:18.2: setting latency timer to 64 -05:51:18,522 DEBUG kernel:pci 0000:00:18.3: setting latency timer to 64 -05:51:18,522 DEBUG kernel:pci 0000:00:18.4: setting latency timer to 64 -05:51:18,522 DEBUG kernel:pci 0000:00:18.5: setting latency timer to 64 -05:51:18,522 DEBUG kernel:pci 0000:00:18.6: setting latency timer to 64 -05:51:18,522 DEBUG kernel:pci 0000:00:18.7: setting latency timer to 64 -05:51:18,522 DEBUG kernel:pci_bus 0000:00: resource 4 [mem 0x000a0000-0x000bffff] -05:51:18,522 DEBUG kernel:pci_bus 0000:00: resource 5 [mem 0x000d0000-0x000d3fff] -05:51:18,522 DEBUG kernel:pci_bus 0000:00: resource 6 [mem 0x000d4000-0x000d7fff] -05:51:18,522 DEBUG kernel:pci_bus 0000:00: resource 7 [mem 0x000d8000-0x000dbfff] -05:51:18,522 DEBUG kernel:pci_bus 0000:00: resource 8 [mem 0x80000000-0xfebfffff] -05:51:18,522 DEBUG kernel:pci_bus 0000:00: resource 9 [io 0x0000-0x0cf7] -05:51:18,522 DEBUG kernel:pci_bus 0000:00: resource 10 [io 0x0d00-0xfeff] -05:51:18,522 DEBUG kernel:pci_bus 0000:02: resource 0 [io 0x2000-0x3fff] -05:51:18,522 DEBUG kernel:pci_bus 0000:02: resource 1 [mem 0xd1000000-0xd23fffff] -05:51:18,522 DEBUG kernel:pci_bus 0000:02: resource 2 [mem 0xdc400000-0xdc9fffff 64bit pref] -05:51:18,522 DEBUG kernel:pci_bus 0000:02: resource 4 [mem 0x000a0000-0x000bffff] -05:51:18,522 DEBUG kernel:pci_bus 0000:02: resource 5 [mem 0x000d0000-0x000d3fff] -05:51:18,522 DEBUG kernel:pci_bus 0000:02: resource 6 [mem 0x000d4000-0x000d7fff] -05:51:18,522 DEBUG kernel:pci_bus 0000:02: resource 7 [mem 0x000d8000-0x000dbfff] -05:51:18,522 DEBUG kernel:pci_bus 0000:02: resource 8 [mem 0x80000000-0xfebfffff] -05:51:18,522 DEBUG kernel:pci_bus 0000:02: resource 9 [io 0x0000-0x0cf7] -05:51:18,522 DEBUG kernel:pci_bus 0000:02: resource 10 [io 0x0d00-0xfeff] -05:51:18,522 DEBUG kernel:pci_bus 0000:03: resource 0 [io 0x4000-0x4fff] -05:51:18,522 DEBUG kernel:pci_bus 0000:03: resource 1 [mem 0xd2400000-0xd24fffff] -05:51:18,522 DEBUG kernel:pci_bus 0000:03: resource 2 [mem 0xd4400000-0xd44fffff 64bit pref] -05:51:18,522 DEBUG kernel:pci_bus 0000:04: resource 0 [io 0x8000-0x8fff] -05:51:18,522 DEBUG kernel:pci_bus 0000:04: resource 1 [mem 0xd2800000-0xd28fffff] -05:51:18,522 DEBUG kernel:pci_bus 0000:04: resource 2 [mem 0xd4800000-0xd48fffff 64bit pref] -05:51:18,522 DEBUG kernel:pci_bus 0000:05: resource 0 [io 0xc000-0xcfff] -05:51:18,522 DEBUG kernel:pci_bus 0000:05: resource 1 [mem 0xd2c00000-0xd2cfffff] -05:51:18,522 DEBUG kernel:pci_bus 0000:05: resource 2 [mem 0xdcb00000-0xdcbfffff 64bit pref] -05:51:18,522 DEBUG kernel:pci_bus 0000:06: resource 1 [mem 0xd3000000-0xd30fffff] -05:51:18,522 DEBUG kernel:pci_bus 0000:06: resource 2 [mem 0xdcd00000-0xdcdfffff 64bit pref] -05:51:18,522 DEBUG kernel:pci_bus 0000:07: resource 1 [mem 0xd3400000-0xd34fffff] -05:51:18,522 DEBUG kernel:pci_bus 0000:07: resource 2 [mem 0xdcf00000-0xdcffffff 64bit pref] -05:51:18,522 DEBUG kernel:pci_bus 0000:08: resource 1 [mem 0xd3800000-0xd38fffff] -05:51:18,522 DEBUG kernel:pci_bus 0000:08: resource 2 [mem 0xdd100000-0xdd1fffff 64bit pref] -05:51:18,522 DEBUG kernel:pci_bus 0000:09: resource 1 [mem 0xd3c00000-0xd3cfffff] -05:51:18,522 DEBUG kernel:pci_bus 0000:09: resource 2 [mem 0xdd300000-0xdd3fffff 64bit pref] -05:51:18,522 DEBUG kernel:pci_bus 0000:0a: resource 1 [mem 0xd4000000-0xd40fffff] -05:51:18,522 DEBUG kernel:pci_bus 0000:0a: resource 2 [mem 0xdd500000-0xdd5fffff 64bit pref] -05:51:18,522 DEBUG kernel:pci_bus 0000:0b: resource 0 [io 0x5000-0x5fff] -05:51:18,522 DEBUG kernel:pci_bus 0000:0b: resource 1 [mem 0xd2500000-0xd25fffff] -05:51:18,522 DEBUG kernel:pci_bus 0000:0b: resource 2 [mem 0xd4500000-0xd45fffff 64bit pref] -05:51:18,522 DEBUG kernel:pci_bus 0000:0c: resource 0 [io 0x9000-0x9fff] -05:51:18,522 DEBUG kernel:pci_bus 0000:0c: resource 1 [mem 0xd2900000-0xd29fffff] -05:51:18,522 DEBUG kernel:pci_bus 0000:0c: resource 2 [mem 0xd4900000-0xd49fffff 64bit pref] -05:51:18,522 DEBUG kernel:pci_bus 0000:0d: resource 0 [io 0xd000-0xdfff] -05:51:18,522 DEBUG kernel:pci_bus 0000:0d: resource 1 [mem 0xd2d00000-0xd2dfffff] -05:51:18,522 DEBUG kernel:pci_bus 0000:0d: resource 2 [mem 0xd4b00000-0xd4bfffff 64bit pref] -05:51:18,522 DEBUG kernel:pci_bus 0000:0e: resource 1 [mem 0xd3100000-0xd31fffff] -05:51:18,522 DEBUG kernel:pci_bus 0000:0e: resource 2 [mem 0xd4d00000-0xd4dfffff 64bit pref] -05:51:18,522 DEBUG kernel:pci_bus 0000:0f: resource 1 [mem 0xd3500000-0xd35fffff] -05:51:18,522 DEBUG kernel:pci_bus 0000:0f: resource 2 [mem 0xd4f00000-0xd4ffffff 64bit pref] -05:51:18,522 DEBUG kernel:pci_bus 0000:10: resource 1 [mem 0xd3900000-0xd39fffff] -05:51:18,522 DEBUG kernel:pci_bus 0000:10: resource 2 [mem 0xd5100000-0xd51fffff 64bit pref] -05:51:18,522 DEBUG kernel:pci_bus 0000:11: resource 1 [mem 0xd3d00000-0xd3dfffff] -05:51:18,522 DEBUG kernel:pci_bus 0000:11: resource 2 [mem 0xd5300000-0xd53fffff 64bit pref] -05:51:18,522 DEBUG kernel:pci_bus 0000:12: resource 1 [mem 0xd4100000-0xd41fffff] -05:51:18,522 DEBUG kernel:pci_bus 0000:12: resource 2 [mem 0xd5500000-0xd55fffff 64bit pref] -05:51:18,522 DEBUG kernel:pci_bus 0000:13: resource 0 [io 0x6000-0x6fff] -05:51:18,522 DEBUG kernel:pci_bus 0000:13: resource 1 [mem 0xd2600000-0xd26fffff] -05:51:18,522 DEBUG kernel:pci_bus 0000:13: resource 2 [mem 0xd4600000-0xd46fffff 64bit pref] -05:51:18,522 DEBUG kernel:pci_bus 0000:14: resource 0 [io 0xa000-0xafff] -05:51:18,522 DEBUG kernel:pci_bus 0000:14: resource 1 [mem 0xd2a00000-0xd2afffff] -05:51:18,522 DEBUG kernel:pci_bus 0000:14: resource 2 [mem 0xdca00000-0xdcafffff 64bit pref] -05:51:18,522 DEBUG kernel:pci_bus 0000:15: resource 0 [io 0xe000-0xefff] -05:51:18,522 DEBUG kernel:pci_bus 0000:15: resource 1 [mem 0xd2e00000-0xd2efffff] -05:51:18,522 DEBUG kernel:pci_bus 0000:15: resource 2 [mem 0xdcc00000-0xdccfffff 64bit pref] -05:51:18,522 DEBUG kernel:pci_bus 0000:16: resource 1 [mem 0xd3200000-0xd32fffff] -05:51:18,522 DEBUG kernel:pci_bus 0000:16: resource 2 [mem 0xdce00000-0xdcefffff 64bit pref] -05:51:18,522 DEBUG kernel:pci_bus 0000:17: resource 1 [mem 0xd3600000-0xd36fffff] -05:51:18,522 DEBUG kernel:pci_bus 0000:17: resource 2 [mem 0xdd000000-0xdd0fffff 64bit pref] -05:51:18,522 DEBUG kernel:pci_bus 0000:18: resource 1 [mem 0xd3a00000-0xd3afffff] -05:51:18,522 DEBUG kernel:pci_bus 0000:18: resource 2 [mem 0xdd200000-0xdd2fffff 64bit pref] -05:51:18,522 DEBUG kernel:pci_bus 0000:19: resource 1 [mem 0xd3e00000-0xd3efffff] -05:51:18,522 DEBUG kernel:pci_bus 0000:19: resource 2 [mem 0xdd400000-0xdd4fffff 64bit pref] -05:51:18,522 DEBUG kernel:pci_bus 0000:1a: resource 1 [mem 0xd4200000-0xd42fffff] -05:51:18,522 DEBUG kernel:pci_bus 0000:1a: resource 2 [mem 0xdd600000-0xdd6fffff 64bit pref] -05:51:18,522 DEBUG kernel:pci_bus 0000:1b: resource 0 [io 0x7000-0x7fff] -05:51:18,522 DEBUG kernel:pci_bus 0000:1b: resource 1 [mem 0xd2700000-0xd27fffff] -05:51:18,522 DEBUG kernel:pci_bus 0000:1b: resource 2 [mem 0xd4700000-0xd47fffff 64bit pref] -05:51:18,522 DEBUG kernel:pci_bus 0000:1c: resource 0 [io 0xb000-0xbfff] -05:51:18,522 DEBUG kernel:pci_bus 0000:1c: resource 1 [mem 0xd2b00000-0xd2bfffff] -05:51:18,522 DEBUG kernel:pci_bus 0000:1c: resource 2 [mem 0xd4a00000-0xd4afffff 64bit pref] -05:51:18,522 DEBUG kernel:pci_bus 0000:1d: resource 1 [mem 0xd2f00000-0xd2ffffff] -05:51:18,522 DEBUG kernel:pci_bus 0000:1d: resource 2 [mem 0xd4c00000-0xd4cfffff 64bit pref] -05:51:18,522 DEBUG kernel:pci_bus 0000:1e: resource 1 [mem 0xd3300000-0xd33fffff] -05:51:18,522 DEBUG kernel:pci_bus 0000:1e: resource 2 [mem 0xd4e00000-0xd4efffff 64bit pref] -05:51:18,522 DEBUG kernel:pci_bus 0000:1f: resource 1 [mem 0xd3700000-0xd37fffff] -05:51:18,522 DEBUG kernel:pci_bus 0000:1f: resource 2 [mem 0xd5000000-0xd50fffff 64bit pref] -05:51:18,522 DEBUG kernel:pci_bus 0000:20: resource 1 [mem 0xd3b00000-0xd3bfffff] -05:51:18,522 DEBUG kernel:pci_bus 0000:20: resource 2 [mem 0xd5200000-0xd52fffff 64bit pref] -05:51:18,522 DEBUG kernel:pci_bus 0000:21: resource 1 [mem 0xd3f00000-0xd3ffffff] -05:51:18,522 DEBUG kernel:pci_bus 0000:21: resource 2 [mem 0xd5400000-0xd54fffff 64bit pref] -05:51:18,522 DEBUG kernel:pci_bus 0000:22: resource 1 [mem 0xd4300000-0xd43fffff] -05:51:18,522 DEBUG kernel:pci_bus 0000:22: resource 2 [mem 0xd5600000-0xd56fffff 64bit pref] -05:51:18,522 INFO kernel:NET: Registered protocol family 2 -05:51:18,522 INFO kernel:IP route cache hash table entries: 65536 (order: 7, 524288 bytes) -05:51:18,522 INFO kernel:TCP established hash table entries: 262144 (order: 10, 4194304 bytes) -05:51:18,527 INFO kernel:TCP bind hash table entries: 65536 (order: 8, 1048576 bytes) -05:51:18,527 INFO kernel:TCP: Hash tables configured (established 262144 bind 65536) -05:51:18,527 INFO kernel:TCP reno registered -05:51:18,527 INFO kernel:NET: Registered protocol family 1 -05:51:18,527 INFO kernel:pci 0000:00:00.0: Limiting direct PCI/PCI transfers -05:51:18,527 DEBUG kernel:pci 0000:00:0f.0: Boot video device -05:51:18,527 INFO kernel:Trying to unpack rootfs image as initramfs... -05:51:18,527 INFO kernel:Freeing initrd memory: 32601k freed -05:51:18,527 INFO kernel:Simple Boot Flag at 0x36 set to 0x80 -05:51:18,527 INFO kernel:audit: initializing netlink socket (disabled) -05:51:18,527 NOTICE kernel:type=2000 audit(1021096275.782:1): initialized -05:51:18,527 INFO kernel:HugeTLB registered 2 MB page size, pre-allocated 0 pages -05:51:18,527 NOTICE kernel:VFS: Disk quotas dquot_6.5.2 -05:51:18,527 WARNING kernel:Dquot-cache hash table entries: 512 (order 0, 4096 bytes) -05:51:18,527 INFO kernel:msgmni has been set to 4005 -05:51:18,527 DEBUG kernel:SELinux: Registering netfilter hooks -05:51:18,527 INFO kernel:alg: No test for stdrng (krng) -05:51:18,527 WARNING kernel:ksign: Installing public key data -05:51:18,527 WARNING kernel:Loading keyring -05:51:18,527 WARNING kernel:- Added public key 8A44323FB303E068 -05:51:18,527 WARNING kernel: - key was been created 363988184 seconds in future -05:51:18,527 WARNING kernel:- User ID: CentOS (Kernel Module GPG key) -05:51:18,527 INFO kernel:Block layer SCSI generic (bsg) driver version 0.4 loaded (major 251) -05:51:18,527 INFO kernel:io scheduler noop registered -05:51:18,527 INFO kernel:io scheduler anticipatory registered -05:51:18,527 INFO kernel:io scheduler deadline registered -05:51:18,527 INFO kernel:io scheduler cfq registered (default) -05:51:18,527 DEBUG kernel:pcieport 0000:00:15.0: setting latency timer to 64 -05:51:18,527 DEBUG kernel: alloc irq_desc for 24 on node -1 -05:51:18,527 DEBUG kernel: alloc kstat_irqs on node -1 -05:51:18,527 DEBUG kernel:pcieport 0000:00:15.0: irq 24 for MSI/MSI-X -05:51:18,527 DEBUG kernel:pcieport 0000:00:15.1: setting latency timer to 64 -05:51:18,527 DEBUG kernel: alloc irq_desc for 25 on node -1 -05:51:18,527 DEBUG kernel: alloc kstat_irqs on node -1 -05:51:18,527 DEBUG kernel:pcieport 0000:00:15.1: irq 25 for MSI/MSI-X -05:51:18,527 DEBUG kernel:pcieport 0000:00:15.2: setting latency timer to 64 -05:51:18,527 DEBUG kernel: alloc irq_desc for 26 on node -1 -05:51:18,527 DEBUG kernel: alloc kstat_irqs on node -1 -05:51:18,527 DEBUG kernel:pcieport 0000:00:15.2: irq 26 for MSI/MSI-X -05:51:18,527 DEBUG kernel:pcieport 0000:00:15.3: setting latency timer to 64 -05:51:18,527 DEBUG kernel: alloc irq_desc for 27 on node -1 -05:51:18,527 DEBUG kernel: alloc kstat_irqs on node -1 -05:51:18,527 DEBUG kernel:pcieport 0000:00:15.3: irq 27 for MSI/MSI-X -05:51:18,527 DEBUG kernel:pcieport 0000:00:15.4: setting latency timer to 64 -05:51:18,527 DEBUG kernel: alloc irq_desc for 28 on node -1 -05:51:18,527 DEBUG kernel: alloc kstat_irqs on node -1 -05:51:18,527 DEBUG kernel:pcieport 0000:00:15.4: irq 28 for MSI/MSI-X -05:51:18,527 DEBUG kernel:pcieport 0000:00:15.5: setting latency timer to 64 -05:51:18,527 DEBUG kernel: alloc irq_desc for 29 on node -1 -05:51:18,527 DEBUG kernel: alloc kstat_irqs on node -1 -05:51:18,527 DEBUG kernel:pcieport 0000:00:15.5: irq 29 for MSI/MSI-X -05:51:18,527 DEBUG kernel:pcieport 0000:00:15.6: setting latency timer to 64 -05:51:18,527 DEBUG kernel: alloc irq_desc for 30 on node -1 -05:51:18,527 DEBUG kernel: alloc kstat_irqs on node -1 -05:51:18,527 DEBUG kernel:pcieport 0000:00:15.6: irq 30 for MSI/MSI-X -05:51:18,527 DEBUG kernel:pcieport 0000:00:15.7: setting latency timer to 64 -05:51:18,527 DEBUG kernel: alloc irq_desc for 31 on node -1 -05:51:18,527 DEBUG kernel: alloc kstat_irqs on node -1 -05:51:18,527 DEBUG kernel:pcieport 0000:00:15.7: irq 31 for MSI/MSI-X -05:51:18,527 DEBUG kernel:pcieport 0000:00:16.0: setting latency timer to 64 -05:51:18,527 DEBUG kernel: alloc irq_desc for 32 on node -1 -05:51:18,527 DEBUG kernel: alloc kstat_irqs on node -1 -05:51:18,527 DEBUG kernel:pcieport 0000:00:16.0: irq 32 for MSI/MSI-X -05:51:18,527 DEBUG kernel:pcieport 0000:00:16.1: setting latency timer to 64 -05:51:18,527 DEBUG kernel: alloc irq_desc for 33 on node -1 -05:51:18,527 DEBUG kernel: alloc kstat_irqs on node -1 -05:51:18,527 DEBUG kernel:pcieport 0000:00:16.1: irq 33 for MSI/MSI-X -05:51:18,527 DEBUG kernel:pcieport 0000:00:16.2: setting latency timer to 64 -05:51:18,527 DEBUG kernel: alloc irq_desc for 34 on node -1 -05:51:18,527 DEBUG kernel: alloc kstat_irqs on node -1 -05:51:18,527 DEBUG kernel:pcieport 0000:00:16.2: irq 34 for MSI/MSI-X -05:51:18,527 DEBUG kernel:pcieport 0000:00:16.3: setting latency timer to 64 -05:51:18,527 DEBUG kernel: alloc irq_desc for 35 on node -1 -05:51:18,527 DEBUG kernel: alloc kstat_irqs on node -1 -05:51:18,527 DEBUG kernel:pcieport 0000:00:16.3: irq 35 for MSI/MSI-X -05:51:18,527 DEBUG kernel:pcieport 0000:00:16.4: setting latency timer to 64 -05:51:18,527 DEBUG kernel: alloc irq_desc for 36 on node -1 -05:51:18,527 DEBUG kernel: alloc kstat_irqs on node -1 -05:51:18,527 DEBUG kernel:pcieport 0000:00:16.4: irq 36 for MSI/MSI-X -05:51:18,527 DEBUG kernel:pcieport 0000:00:16.5: setting latency timer to 64 -05:51:18,527 DEBUG kernel: alloc irq_desc for 37 on node -1 -05:51:18,527 DEBUG kernel: alloc kstat_irqs on node -1 -05:51:18,527 DEBUG kernel:pcieport 0000:00:16.5: irq 37 for MSI/MSI-X -05:51:18,527 DEBUG kernel:pcieport 0000:00:16.6: setting latency timer to 64 -05:51:18,527 DEBUG kernel: alloc irq_desc for 38 on node -1 -05:51:18,527 DEBUG kernel: alloc kstat_irqs on node -1 -05:51:18,527 DEBUG kernel:pcieport 0000:00:16.6: irq 38 for MSI/MSI-X -05:51:18,527 DEBUG kernel:pcieport 0000:00:16.7: setting latency timer to 64 -05:51:18,527 DEBUG kernel: alloc irq_desc for 39 on node -1 -05:51:18,527 DEBUG kernel: alloc kstat_irqs on node -1 -05:51:18,527 DEBUG kernel:pcieport 0000:00:16.7: irq 39 for MSI/MSI-X -05:51:18,527 DEBUG kernel:pcieport 0000:00:17.0: setting latency timer to 64 -05:51:18,527 DEBUG kernel: alloc irq_desc for 40 on node -1 -05:51:18,527 DEBUG kernel: alloc kstat_irqs on node -1 -05:51:18,527 DEBUG kernel:pcieport 0000:00:17.0: irq 40 for MSI/MSI-X -05:51:18,527 DEBUG kernel:pcieport 0000:00:17.1: setting latency timer to 64 -05:51:18,527 DEBUG kernel: alloc irq_desc for 41 on node -1 -05:51:18,527 DEBUG kernel: alloc kstat_irqs on node -1 -05:51:18,527 DEBUG kernel:pcieport 0000:00:17.1: irq 41 for MSI/MSI-X -05:51:18,527 DEBUG kernel:pcieport 0000:00:17.2: setting latency timer to 64 -05:51:18,527 DEBUG kernel: alloc irq_desc for 42 on node -1 -05:51:18,527 DEBUG kernel: alloc kstat_irqs on node -1 -05:51:18,527 DEBUG kernel:pcieport 0000:00:17.2: irq 42 for MSI/MSI-X -05:51:18,527 DEBUG kernel:pcieport 0000:00:17.3: setting latency timer to 64 -05:51:18,527 DEBUG kernel: alloc irq_desc for 43 on node -1 -05:51:18,527 DEBUG kernel: alloc kstat_irqs on node -1 -05:51:18,527 DEBUG kernel:pcieport 0000:00:17.3: irq 43 for MSI/MSI-X -05:51:18,527 DEBUG kernel:pcieport 0000:00:17.4: setting latency timer to 64 -05:51:18,527 DEBUG kernel: alloc irq_desc for 44 on node -1 -05:51:18,527 DEBUG kernel: alloc kstat_irqs on node -1 -05:51:18,527 DEBUG kernel:pcieport 0000:00:17.4: irq 44 for MSI/MSI-X -05:51:18,527 DEBUG kernel:pcieport 0000:00:17.5: setting latency timer to 64 -05:51:18,527 DEBUG kernel: alloc irq_desc for 45 on node -1 -05:51:18,527 DEBUG kernel: alloc kstat_irqs on node -1 -05:51:18,527 DEBUG kernel:pcieport 0000:00:17.5: irq 45 for MSI/MSI-X -05:51:18,527 DEBUG kernel:pcieport 0000:00:17.6: setting latency timer to 64 -05:51:18,527 DEBUG kernel: alloc irq_desc for 46 on node -1 -05:51:18,527 DEBUG kernel: alloc kstat_irqs on node -1 -05:51:18,527 DEBUG kernel:pcieport 0000:00:17.6: irq 46 for MSI/MSI-X -05:51:18,527 DEBUG kernel:pcieport 0000:00:17.7: setting latency timer to 64 -05:51:18,527 DEBUG kernel: alloc irq_desc for 47 on node -1 -05:51:18,527 DEBUG kernel: alloc kstat_irqs on node -1 -05:51:18,527 DEBUG kernel:pcieport 0000:00:17.7: irq 47 for MSI/MSI-X -05:51:18,527 DEBUG kernel:pcieport 0000:00:18.0: setting latency timer to 64 -05:51:18,527 DEBUG kernel: alloc irq_desc for 48 on node -1 -05:51:18,527 DEBUG kernel: alloc kstat_irqs on node -1 -05:51:18,527 DEBUG kernel:pcieport 0000:00:18.0: irq 48 for MSI/MSI-X -05:51:18,527 DEBUG kernel:pcieport 0000:00:18.1: setting latency timer to 64 -05:51:18,527 DEBUG kernel: alloc irq_desc for 49 on node -1 -05:51:18,527 DEBUG kernel: alloc kstat_irqs on node -1 -05:51:18,527 DEBUG kernel:pcieport 0000:00:18.1: irq 49 for MSI/MSI-X -05:51:18,527 DEBUG kernel:pcieport 0000:00:18.2: setting latency timer to 64 -05:51:18,527 DEBUG kernel: alloc irq_desc for 50 on node -1 -05:51:18,527 DEBUG kernel: alloc kstat_irqs on node -1 -05:51:18,527 DEBUG kernel:pcieport 0000:00:18.2: irq 50 for MSI/MSI-X -05:51:18,527 DEBUG kernel:pcieport 0000:00:18.3: setting latency timer to 64 -05:51:18,527 DEBUG kernel: alloc irq_desc for 51 on node -1 -05:51:18,527 DEBUG kernel: alloc kstat_irqs on node -1 -05:51:18,527 DEBUG kernel:pcieport 0000:00:18.3: irq 51 for MSI/MSI-X -05:51:18,527 DEBUG kernel:pcieport 0000:00:18.4: setting latency timer to 64 -05:51:18,527 DEBUG kernel: alloc irq_desc for 52 on node -1 -05:51:18,527 DEBUG kernel: alloc kstat_irqs on node -1 -05:51:18,527 DEBUG kernel:pcieport 0000:00:18.4: irq 52 for MSI/MSI-X -05:51:18,527 DEBUG kernel:pcieport 0000:00:18.5: setting latency timer to 64 -05:51:18,527 DEBUG kernel: alloc irq_desc for 53 on node -1 -05:51:18,527 DEBUG kernel: alloc kstat_irqs on node -1 -05:51:18,527 DEBUG kernel:pcieport 0000:00:18.5: irq 53 for MSI/MSI-X -05:51:18,527 DEBUG kernel:pcieport 0000:00:18.6: setting latency timer to 64 -05:51:18,527 DEBUG kernel: alloc irq_desc for 54 on node -1 -05:51:18,527 DEBUG kernel: alloc kstat_irqs on node -1 -05:51:18,527 DEBUG kernel:pcieport 0000:00:18.6: irq 54 for MSI/MSI-X -05:51:18,527 DEBUG kernel:pcieport 0000:00:18.7: setting latency timer to 64 -05:51:18,527 DEBUG kernel: alloc irq_desc for 55 on node -1 -05:51:18,527 DEBUG kernel: alloc kstat_irqs on node -1 -05:51:18,527 DEBUG kernel:pcieport 0000:00:18.7: irq 55 for MSI/MSI-X -05:51:18,527 INFO kernel:pci_hotplug: PCI Hot Plug PCI Core version: 0.5 -05:51:18,527 INFO kernel:pciehp 0000:00:15.0:pcie04: HPC vendor_id 15ad device_id 7a0 ss_vid 0 ss_did 0 -05:51:18,527 DEBUG kernel:pciehp 0000:00:15.0:pcie04: service driver pciehp loaded -05:51:18,527 INFO kernel:pciehp 0000:00:15.1:pcie04: HPC vendor_id 15ad device_id 7a0 ss_vid 0 ss_did 0 -05:51:18,527 DEBUG kernel:pciehp 0000:00:15.1:pcie04: service driver pciehp loaded -05:51:18,527 INFO kernel:pciehp 0000:00:15.2:pcie04: HPC vendor_id 15ad device_id 7a0 ss_vid 0 ss_did 0 -05:51:18,527 DEBUG kernel:pciehp 0000:00:15.2:pcie04: service driver pciehp loaded -05:51:18,527 INFO kernel:pciehp 0000:00:15.3:pcie04: HPC vendor_id 15ad device_id 7a0 ss_vid 0 ss_did 0 -05:51:18,527 DEBUG kernel:pciehp 0000:00:15.3:pcie04: service driver pciehp loaded -05:51:18,527 INFO kernel:pciehp 0000:00:15.4:pcie04: HPC vendor_id 15ad device_id 7a0 ss_vid 0 ss_did 0 -05:51:18,527 DEBUG kernel:pciehp 0000:00:15.4:pcie04: service driver pciehp loaded -05:51:18,527 INFO kernel:pciehp 0000:00:15.5:pcie04: HPC vendor_id 15ad device_id 7a0 ss_vid 0 ss_did 0 -05:51:18,527 DEBUG kernel:pciehp 0000:00:15.5:pcie04: service driver pciehp loaded -05:51:18,527 INFO kernel:pciehp 0000:00:15.6:pcie04: HPC vendor_id 15ad device_id 7a0 ss_vid 0 ss_did 0 -05:51:18,527 DEBUG kernel:pciehp 0000:00:15.6:pcie04: service driver pciehp loaded -05:51:18,527 INFO kernel:pciehp 0000:00:15.7:pcie04: HPC vendor_id 15ad device_id 7a0 ss_vid 0 ss_did 0 -05:51:18,527 DEBUG kernel:pciehp 0000:00:15.7:pcie04: service driver pciehp loaded -05:51:18,527 INFO kernel:pciehp 0000:00:16.0:pcie04: HPC vendor_id 15ad device_id 7a0 ss_vid 0 ss_did 0 -05:51:18,527 DEBUG kernel:pciehp 0000:00:16.0:pcie04: service driver pciehp loaded -05:51:18,527 INFO kernel:pciehp 0000:00:16.1:pcie04: HPC vendor_id 15ad device_id 7a0 ss_vid 0 ss_did 0 -05:51:18,527 DEBUG kernel:pciehp 0000:00:16.1:pcie04: service driver pciehp loaded -05:51:18,527 INFO kernel:pciehp 0000:00:16.2:pcie04: HPC vendor_id 15ad device_id 7a0 ss_vid 0 ss_did 0 -05:51:18,527 DEBUG kernel:pciehp 0000:00:16.2:pcie04: service driver pciehp loaded -05:51:18,527 INFO kernel:pciehp 0000:00:16.3:pcie04: HPC vendor_id 15ad device_id 7a0 ss_vid 0 ss_did 0 -05:51:18,527 DEBUG kernel:pciehp 0000:00:16.3:pcie04: service driver pciehp loaded -05:51:18,527 INFO kernel:pciehp 0000:00:16.4:pcie04: HPC vendor_id 15ad device_id 7a0 ss_vid 0 ss_did 0 -05:51:18,527 DEBUG kernel:pciehp 0000:00:16.4:pcie04: service driver pciehp loaded -05:51:18,527 INFO kernel:pciehp 0000:00:16.5:pcie04: HPC vendor_id 15ad device_id 7a0 ss_vid 0 ss_did 0 -05:51:18,527 DEBUG kernel:pciehp 0000:00:16.5:pcie04: service driver pciehp loaded -05:51:18,527 INFO kernel:pciehp 0000:00:16.6:pcie04: HPC vendor_id 15ad device_id 7a0 ss_vid 0 ss_did 0 -05:51:18,527 DEBUG kernel:pciehp 0000:00:16.6:pcie04: service driver pciehp loaded -05:51:18,527 INFO kernel:pciehp 0000:00:16.7:pcie04: HPC vendor_id 15ad device_id 7a0 ss_vid 0 ss_did 0 -05:51:18,527 DEBUG kernel:pciehp 0000:00:16.7:pcie04: service driver pciehp loaded -05:51:18,527 INFO kernel:pciehp 0000:00:17.0:pcie04: HPC vendor_id 15ad device_id 7a0 ss_vid 0 ss_did 0 -05:51:18,527 DEBUG kernel:pciehp 0000:00:17.0:pcie04: service driver pciehp loaded -05:51:18,527 INFO kernel:pciehp 0000:00:17.1:pcie04: HPC vendor_id 15ad device_id 7a0 ss_vid 0 ss_did 0 -05:51:18,527 DEBUG kernel:pciehp 0000:00:17.1:pcie04: service driver pciehp loaded -05:51:18,527 INFO kernel:pciehp 0000:00:17.2:pcie04: HPC vendor_id 15ad device_id 7a0 ss_vid 0 ss_did 0 -05:51:18,527 DEBUG kernel:pciehp 0000:00:17.2:pcie04: service driver pciehp loaded -05:51:18,527 INFO kernel:pciehp 0000:00:17.3:pcie04: HPC vendor_id 15ad device_id 7a0 ss_vid 0 ss_did 0 -05:51:18,527 DEBUG kernel:pciehp 0000:00:17.3:pcie04: service driver pciehp loaded -05:51:18,527 INFO kernel:pciehp 0000:00:17.4:pcie04: HPC vendor_id 15ad device_id 7a0 ss_vid 0 ss_did 0 -05:51:18,527 DEBUG kernel:pciehp 0000:00:17.4:pcie04: service driver pciehp loaded -05:51:18,527 INFO kernel:pciehp 0000:00:17.5:pcie04: HPC vendor_id 15ad device_id 7a0 ss_vid 0 ss_did 0 -05:51:18,527 DEBUG kernel:pciehp 0000:00:17.5:pcie04: service driver pciehp loaded -05:51:18,527 INFO kernel:pciehp 0000:00:17.6:pcie04: HPC vendor_id 15ad device_id 7a0 ss_vid 0 ss_did 0 -05:51:18,527 DEBUG kernel:pciehp 0000:00:17.6:pcie04: service driver pciehp loaded -05:51:18,527 INFO kernel:pciehp 0000:00:17.7:pcie04: HPC vendor_id 15ad device_id 7a0 ss_vid 0 ss_did 0 -05:51:18,527 DEBUG kernel:pciehp 0000:00:17.7:pcie04: service driver pciehp loaded -05:51:18,527 INFO kernel:pciehp 0000:00:18.0:pcie04: HPC vendor_id 15ad device_id 7a0 ss_vid 0 ss_did 0 -05:51:18,527 DEBUG kernel:pciehp 0000:00:18.0:pcie04: service driver pciehp loaded -05:51:18,527 INFO kernel:pciehp 0000:00:18.1:pcie04: HPC vendor_id 15ad device_id 7a0 ss_vid 0 ss_did 0 -05:51:18,527 DEBUG kernel:pciehp 0000:00:18.1:pcie04: service driver pciehp loaded -05:51:18,527 INFO kernel:pciehp 0000:00:18.2:pcie04: HPC vendor_id 15ad device_id 7a0 ss_vid 0 ss_did 0 -05:51:18,527 DEBUG kernel:pciehp 0000:00:18.2:pcie04: service driver pciehp loaded -05:51:18,527 INFO kernel:pciehp 0000:00:18.3:pcie04: HPC vendor_id 15ad device_id 7a0 ss_vid 0 ss_did 0 -05:51:18,527 DEBUG kernel:pciehp 0000:00:18.3:pcie04: service driver pciehp loaded -05:51:18,527 INFO kernel:pciehp 0000:00:18.4:pcie04: HPC vendor_id 15ad device_id 7a0 ss_vid 0 ss_did 0 -05:51:18,527 DEBUG kernel:pciehp 0000:00:18.4:pcie04: service driver pciehp loaded -05:51:18,527 INFO kernel:pciehp 0000:00:18.5:pcie04: HPC vendor_id 15ad device_id 7a0 ss_vid 0 ss_did 0 -05:51:18,527 DEBUG kernel:pciehp 0000:00:18.5:pcie04: service driver pciehp loaded -05:51:18,527 INFO kernel:pciehp 0000:00:18.6:pcie04: HPC vendor_id 15ad device_id 7a0 ss_vid 0 ss_did 0 -05:51:18,527 DEBUG kernel:pciehp 0000:00:18.6:pcie04: service driver pciehp loaded -05:51:18,527 INFO kernel:pciehp 0000:00:18.7:pcie04: HPC vendor_id 15ad device_id 7a0 ss_vid 0 ss_did 0 -05:51:18,527 DEBUG kernel:pciehp 0000:00:18.7:pcie04: service driver pciehp loaded -05:51:18,527 INFO kernel:pciehp: PCI Express Hot Plug Controller Driver version: 0.4 -05:51:18,527 INFO kernel:acpiphp: ACPI Hot Plug PCI Controller Driver version: 0.5 -05:51:18,527 INFO kernel:acpiphp: Slot [32] registered -05:51:18,527 INFO kernel:acpiphp: Slot [33] registered -05:51:18,527 INFO kernel:acpiphp: Slot [34] registered -05:51:18,527 INFO kernel:acpiphp: Slot [35] registered -05:51:18,527 INFO kernel:acpiphp: Slot [36] registered -05:51:18,527 INFO kernel:acpiphp: Slot [37] registered -05:51:18,527 INFO kernel:acpiphp: Slot [38] registered -05:51:18,527 INFO kernel:acpiphp: Slot [39] registered -05:51:18,527 INFO kernel:acpiphp: Slot [40] registered -05:51:18,527 INFO kernel:acpiphp: Slot [41] registered -05:51:18,527 INFO kernel:acpiphp: Slot [42] registered -05:51:18,527 INFO kernel:acpiphp: Slot [43] registered -05:51:18,527 INFO kernel:acpiphp: Slot [44] registered -05:51:18,527 INFO kernel:acpiphp: Slot [45] registered -05:51:18,527 INFO kernel:acpiphp: Slot [46] registered -05:51:18,527 INFO kernel:acpiphp: Slot [47] registered -05:51:18,527 INFO kernel:acpiphp: Slot [48] registered -05:51:18,527 INFO kernel:acpiphp: Slot [49] registered -05:51:18,527 INFO kernel:acpiphp: Slot [50] registered -05:51:18,527 INFO kernel:acpiphp: Slot [51] registered -05:51:18,527 INFO kernel:acpiphp: Slot [52] registered -05:51:18,527 INFO kernel:acpiphp: Slot [53] registered -05:51:18,527 INFO kernel:acpiphp: Slot [54] registered -05:51:18,527 INFO kernel:acpiphp: Slot [55] registered -05:51:18,527 INFO kernel:acpiphp: Slot [56] registered -05:51:18,527 INFO kernel:acpiphp: Slot [57] registered -05:51:18,527 INFO kernel:acpiphp: Slot [58] registered -05:51:18,527 INFO kernel:acpiphp: Slot [59] registered -05:51:18,527 INFO kernel:acpiphp: Slot [60] registered -05:51:18,527 INFO kernel:acpiphp: Slot [61] registered -05:51:18,527 INFO kernel:acpiphp: Slot [62] registered -05:51:18,527 INFO kernel:acpiphp: Slot [63] registered -05:51:18,527 WARNING kernel:acpiphp_glue: Slot 160 already registered by another hotplug driver -05:51:18,527 WARNING kernel:acpiphp_glue: Slot 192 already registered by another hotplug driver -05:51:18,527 WARNING kernel:acpiphp_glue: Slot 224 already registered by another hotplug driver -05:51:18,527 WARNING kernel:acpiphp_glue: Slot 256 already registered by another hotplug driver -05:51:18,527 WARNING kernel:acpiphp_glue: Slot 161 already registered by another hotplug driver -05:51:18,527 WARNING kernel:acpiphp_glue: Slot 162 already registered by another hotplug driver -05:51:18,527 WARNING kernel:acpiphp_glue: Slot 163 already registered by another hotplug driver -05:51:18,527 WARNING kernel:acpiphp_glue: Slot 164 already registered by another hotplug driver -05:51:18,527 WARNING kernel:acpiphp_glue: Slot 165 already registered by another hotplug driver -05:51:18,527 WARNING kernel:acpiphp_glue: Slot 166 already registered by another hotplug driver -05:51:18,527 WARNING kernel:acpiphp_glue: Slot 167 already registered by another hotplug driver -05:51:18,527 WARNING kernel:acpiphp_glue: Slot 193 already registered by another hotplug driver -05:51:18,527 WARNING kernel:acpiphp_glue: Slot 194 already registered by another hotplug driver -05:51:18,527 WARNING kernel:acpiphp_glue: Slot 195 already registered by another hotplug driver -05:51:18,527 WARNING kernel:acpiphp_glue: Slot 196 already registered by another hotplug driver -05:51:18,527 WARNING kernel:acpiphp_glue: Slot 197 already registered by another hotplug driver -05:51:18,527 WARNING kernel:acpiphp_glue: Slot 198 already registered by another hotplug driver -05:51:18,527 WARNING kernel:acpiphp_glue: Slot 199 already registered by another hotplug driver -05:51:18,527 WARNING kernel:acpiphp_glue: Slot 225 already registered by another hotplug driver -05:51:18,527 WARNING kernel:acpiphp_glue: Slot 226 already registered by another hotplug driver -05:51:18,527 WARNING kernel:acpiphp_glue: Slot 227 already registered by another hotplug driver -05:51:18,527 WARNING kernel:acpiphp_glue: Slot 228 already registered by another hotplug driver -05:51:18,527 WARNING kernel:acpiphp_glue: Slot 229 already registered by another hotplug driver -05:51:18,527 WARNING kernel:acpiphp_glue: Slot 230 already registered by another hotplug driver -05:51:18,527 WARNING kernel:acpiphp_glue: Slot 231 already registered by another hotplug driver -05:51:18,527 WARNING kernel:acpiphp_glue: Slot 257 already registered by another hotplug driver -05:51:18,527 WARNING kernel:acpiphp_glue: Slot 258 already registered by another hotplug driver -05:51:18,527 WARNING kernel:acpiphp_glue: Slot 259 already registered by another hotplug driver -05:51:18,527 WARNING kernel:acpiphp_glue: Slot 260 already registered by another hotplug driver -05:51:18,527 WARNING kernel:acpiphp_glue: Slot 261 already registered by another hotplug driver -05:51:18,527 WARNING kernel:acpiphp_glue: Slot 262 already registered by another hotplug driver -05:51:18,527 WARNING kernel:acpiphp_glue: Slot 263 already registered by another hotplug driver -05:51:18,527 INFO kernel:ipmi message handler version 39.2 -05:51:18,527 INFO kernel:IPMI System Interface driver. -05:51:18,527 INFO kernel:ipmi_si: Adding default-specified kcs state machine -05:51:18,527 INFO kernel:ipmi_si: Trying default-specified kcs state machine at i/o address 0xca2, slave address 0x0, irq 0 -05:51:18,527 INFO kernel:ipmi_si: Interface detection failed -05:51:18,527 INFO kernel:ipmi_si: Adding default-specified smic state machine -05:51:18,527 INFO kernel:ipmi_si: Trying default-specified smic state machine at i/o address 0xca9, slave address 0x0, irq 0 -05:51:18,527 INFO kernel:ipmi_si: Interface detection failed -05:51:18,527 INFO kernel:ipmi_si: Adding default-specified bt state machine -05:51:18,527 INFO kernel:ipmi_si: Trying default-specified bt state machine at i/o address 0xe4, slave address 0x0, irq 0 -05:51:18,527 INFO kernel:ipmi_si: Interface detection failed -05:51:18,527 WARNING kernel:ipmi_si: Unable to find any System Interface(s) -05:51:18,527 INFO kernel:ACPI: AC Adapter [ACAD] (on-line) -05:51:18,527 INFO kernel:input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input0 -05:51:18,527 INFO kernel:ACPI: Power Button [PWRF] -05:51:18,527 DEBUG kernel:ACPI: acpi_idle registered with cpuidle -05:51:18,527 WARNING kernel:ACPI Exception: AE_NOT_FOUND, No or invalid critical threshold (20090903/thermal-386) -05:51:18,527 INFO kernel:GHES: HEST is not enabled! -05:51:18,527 INFO kernel:Non-volatile memory driver v1.3 -05:51:18,527 INFO kernel:Linux agpgart interface v0.103 -05:51:18,527 INFO kernel:agpgart-intel 0000:00:00.0: Intel 440BX Chipset -05:51:18,527 INFO kernel:agpgart-intel 0000:00:00.0: AGP aperture is 256M @ 0x0 -05:51:18,527 INFO kernel:crash memory driver: version 1.1 -05:51:18,527 INFO kernel:Serial: 8250/16550 driver, 4 ports, IRQ sharing enabled -05:51:18,527 INFO kernel:serial8250: ttyS0 at I/O 0x3f8 (irq = 4) is a 16550A -05:51:18,527 INFO kernel:serial8250: ttyS1 at I/O 0x2f8 (irq = 3) is a 16550A -05:51:18,527 INFO kernel:00:0a: ttyS0 at I/O 0x3f8 (irq = 4) is a 16550A -05:51:18,527 INFO kernel:00:0b: ttyS1 at I/O 0x2f8 (irq = 3) is a 16550A -05:51:18,527 INFO kernel:brd: module loaded -05:51:18,527 INFO kernel:loop: module loaded -05:51:18,527 INFO kernel:input: Macintosh mouse button emulation as /devices/virtual/input/input1 -05:51:18,527 INFO kernel:Fixed MDIO Bus: probed -05:51:18,527 INFO kernel:ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver -05:51:18,527 INFO kernel:ohci_hcd: USB 1.1 'Open' Host Controller (OHCI) Driver -05:51:18,527 INFO kernel:uhci_hcd: USB Universal Host Controller Interface driver -05:51:18,527 INFO kernel:PNP: PS/2 Controller [PNP0303:KBC,PNP0f13:MOUS] at 0x60,0x64 irq 1,12 -05:51:18,527 INFO kernel:Refined TSC clocksource calibration: 2400.080 MHz. -05:51:18,527 INFO kernel:Switching to clocksource tsc -05:51:18,527 INFO kernel:serio: i8042 KBD port at 0x60,0x64 irq 1 -05:51:18,527 INFO kernel:serio: i8042 AUX port at 0x60,0x64 irq 12 -05:51:18,527 INFO kernel:mice: PS/2 mouse device common for all mice -05:51:18,527 INFO kernel:rtc_cmos 00:04: rtc core: registered rtc_cmos as rtc0 -05:51:18,527 INFO kernel:rtc0: alarms up to one month, y3k, 114 bytes nvram, hpet irqs -05:51:18,527 INFO kernel:cpuidle: using governor ladder -05:51:18,527 INFO kernel:cpuidle: using governor menu -05:51:18,527 INFO kernel:EFI Variables Facility v0.08 2004-May-17 -05:51:18,527 INFO kernel:usbcore: registered new interface driver hiddev -05:51:18,527 INFO kernel:usbcore: registered new interface driver usbhid -05:51:18,527 INFO kernel:usbhid: v2.6:USB HID core driver -05:51:18,527 INFO kernel:GRE over IPv4 demultiplexor driver -05:51:18,527 INFO kernel:TCP cubic registered -05:51:18,527 INFO kernel:input: AT Translated Set 2 keyboard as /devices/platform/i8042/serio0/input/input2 -05:51:18,527 INFO kernel:Initializing XFRM netlink socket -05:51:18,527 INFO kernel:NET: Registered protocol family 17 -05:51:18,527 WARNING kernel:registered taskstats version 1 -05:51:18,527 INFO kernel:input: ImPS/2 Generic Wheel Mouse as /devices/platform/i8042/serio1/input/input3 -05:51:18,527 INFO kernel:rtc_cmos 00:04: setting system clock to 2002-05-11 05:51:18 UTC (1021096278) -05:51:18,527 INFO kernel:Initalizing network drop monitor service -05:51:18,527 INFO kernel:Freeing unused kernel memory: 1276k freed -05:51:18,527 INFO kernel:Write protecting the kernel read-only data: 10240k -05:51:18,527 INFO kernel:Freeing unused kernel memory: 800k freed -05:51:18,527 INFO kernel:Freeing unused kernel memory: 1588k freed -05:51:20,557 INFO kernel:squashfs: version 4.0 (2009/01/31) Phillip Lougher -05:51:20,568 INFO kernel:Loading iSCSI transport class v2.0-870. -05:51:20,587 NOTICE kernel:iscsi: registered transport (tcp) -05:51:20,594 INFO kernel:Floppy drive(s): fd0 is 1.44M -05:51:20,605 INFO kernel:FDC 0 is a post-1991 82077 -05:51:20,610 INFO kernel:BIOS EDD facility v0.16 2004-Jun-25, 2 devices found -05:51:20,614 INFO kernel:input: PC Speaker as /devices/platform/pcspkr/input/input4 -05:51:20,620 INFO kernel:No iBFT detected. -05:51:20,655 INFO kernel:NET: Registered protocol family 10 -05:51:20,657 INFO kernel:lo: Disabled Privacy Extensions -05:51:20,739 DEBUG kernel:ata_piix 0000:00:07.1: version 2.13 -05:51:20,740 INFO kernel:scsi0 : ata_piix -05:51:20,740 INFO kernel:scsi1 : ata_piix -05:51:20,740 INFO kernel:ata1: PATA max UDMA/33 cmd 0x1f0 ctl 0x3f6 bmdma 0x10c0 irq 14 -05:51:20,740 INFO kernel:ata2: PATA max UDMA/33 cmd 0x170 ctl 0x376 bmdma 0x10c8 irq 15 -05:51:20,750 ERR udevd-work: device node '/dev/rtc' already exists, link to '/dev/rtc0' will not overwrite it -05:51:20,926 INFO kernel:ata2.00: ATAPI: VMware Virtual IDE CDROM Drive, 00000001, max UDMA/33 -05:51:20,934 INFO kernel:ata2.00: configured for UDMA/33 -05:51:20,934 NOTICE kernel:scsi 1:0:0:0: CD-ROM NECVMWar VMware IDE CDR10 1.00 PQ: 0 ANSI: 5 -05:51:20,959 INFO kernel:Fusion MPT base driver 3.04.20 -05:51:20,959 INFO kernel:Copyright (c) 1999-2008 LSI Corporation -05:51:20,971 INFO kernel:Fusion MPT SPI Host driver 3.04.20 -05:51:20,971 DEBUG kernel: alloc irq_desc for 17 on node -1 -05:51:20,971 DEBUG kernel: alloc kstat_irqs on node -1 -05:51:20,971 INFO kernel:mptspi 0000:00:10.0: PCI INT A -> GSI 17 (level, low) -> IRQ 17 -05:51:20,972 INFO kernel:mptbase: ioc0: Initiating bringup -05:51:20,990 INFO kernel:ioc0: LSI53C1030 B0: Capabilities={Initiator} -05:51:21,031 INFO kernel:scsi2 : ioc0: LSI53C1030 B0, FwRev=01032920h, Ports=1, MaxQ=128, IRQ=17 -05:51:21,061 NOTICE kernel:scsi 2:0:0:0: Direct-Access VMware Virtual disk 1.0 PQ: 0 ANSI: 2 -05:51:21,061 INFO kernel:scsi target2:0:0: Beginning Domain Validation -05:51:21,061 INFO kernel:scsi target2:0:0: Domain Validation skipping write tests -05:51:21,061 INFO kernel:scsi target2:0:0: Ending Domain Validation -05:51:21,061 INFO kernel:scsi target2:0:0: FAST-40 WIDE SCSI 80.0 MB/s ST (25 ns, offset 127) -05:51:21,061 NOTICE kernel:scsi 2:0:1:0: Direct-Access VMware Virtual disk 1.0 PQ: 0 ANSI: 2 -05:51:21,061 INFO kernel:scsi target2:0:1: Beginning Domain Validation -05:51:21,061 INFO kernel:scsi target2:0:1: Domain Validation skipping write tests -05:51:21,061 INFO kernel:scsi target2:0:1: Ending Domain Validation -05:51:21,061 INFO kernel:scsi target2:0:1: FAST-40 WIDE SCSI 80.0 MB/s ST (25 ns, offset 127) -05:51:21,088 WARNING kernel:sr0: scsi3-mmc drive: 1x/1x writer dvd-ram cd/rw xa/form2 cdda tray -05:51:21,088 INFO kernel:Uniform CD-ROM driver Revision: 3.20 -05:51:21,088 DEBUG kernel:sr 1:0:0:0: Attached scsi CD-ROM sr0 -05:51:21,098 INFO kernel:e1000: Intel(R) PRO/1000 Network Driver - version 7.3.21-k8-NAPI -05:51:21,098 INFO kernel:e1000: Copyright (c) 1999-2006 Intel Corporation. -05:51:21,098 DEBUG kernel: alloc irq_desc for 18 on node -1 -05:51:21,098 DEBUG kernel: alloc kstat_irqs on node -1 -05:51:21,098 INFO kernel:e1000 0000:02:00.0: PCI INT A -> GSI 18 (level, low) -> IRQ 18 -05:51:21,098 DEBUG kernel:e1000 0000:02:00.0: setting latency timer to 64 -05:51:21,447 INFO kernel:e1000 0000:02:00.0: eth0: (PCI:66MHz:32-bit) 00:0c:29:21:89:af -05:51:21,447 INFO kernel:e1000 0000:02:00.0: eth0: Intel(R) PRO/1000 Network Connection -05:51:21,447 DEBUG kernel: alloc irq_desc for 19 on node -1 -05:51:21,447 DEBUG kernel: alloc kstat_irqs on node -1 -05:51:21,447 INFO kernel:e1000 0000:02:01.0: PCI INT A -> GSI 19 (level, low) -> IRQ 19 -05:51:21,447 DEBUG kernel:e1000 0000:02:01.0: setting latency timer to 64 -05:51:21,793 INFO kernel:e1000 0000:02:01.0: eth1: (PCI:66MHz:32-bit) 00:0c:29:21:89:b9 -05:51:21,793 INFO kernel:e1000 0000:02:01.0: eth1: Intel(R) PRO/1000 Network Connection -05:51:21,793 DEBUG kernel: alloc irq_desc for 16 on node -1 -05:51:21,793 DEBUG kernel: alloc kstat_irqs on node -1 -05:51:21,793 INFO kernel:e1000 0000:02:02.0: PCI INT A -> GSI 16 (level, low) -> IRQ 16 -05:51:21,793 DEBUG kernel:e1000 0000:02:02.0: setting latency timer to 64 -05:51:22,142 INFO kernel:e1000 0000:02:02.0: eth2: (PCI:66MHz:32-bit) 00:0c:29:21:89:c3 -05:51:22,142 INFO kernel:e1000 0000:02:02.0: eth2: Intel(R) PRO/1000 Network Connection -05:51:22,142 INFO kernel:e1000 0000:02:03.0: PCI INT A -> GSI 17 (level, low) -> IRQ 17 -05:51:22,142 DEBUG kernel:e1000 0000:02:03.0: setting latency timer to 64 -05:51:22,485 INFO kernel:e1000 0000:02:03.0: eth3: (PCI:66MHz:32-bit) 00:0c:29:21:89:cd -05:51:22,485 INFO kernel:e1000 0000:02:03.0: eth3: Intel(R) PRO/1000 Network Connection -05:51:22,515 NOTICE kernel:sd 2:0:0:0: [sda] 33554432 512-byte logical blocks: (17.1 GB/16.0 GiB) -05:51:22,515 NOTICE kernel:sd 2:0:0:0: [sda] Write Protect is off -05:51:22,515 DEBUG kernel:sd 2:0:0:0: [sda] Mode Sense: 61 00 00 00 -05:51:22,515 NOTICE kernel:sd 2:0:0:0: [sda] Cache data unavailable -05:51:22,515 ERR kernel:sd 2:0:0:0: [sda] Assuming drive cache: write through -05:51:22,515 NOTICE kernel:sd 2:0:0:0: [sda] Cache data unavailable -05:51:22,515 ERR kernel:sd 2:0:0:0: [sda] Assuming drive cache: write through -05:51:22,516 INFO kernel: sda: -05:51:22,516 NOTICE kernel:sd 2:0:1:0: [sdb] 33554432 512-byte logical blocks: (17.1 GB/16.0 GiB) -05:51:22,516 NOTICE kernel:sd 2:0:1:0: [sdb] Write Protect is off -05:51:22,516 DEBUG kernel:sd 2:0:1:0: [sdb] Mode Sense: 61 00 00 00 -05:51:22,516 NOTICE kernel:sd 2:0:1:0: [sdb] Cache data unavailable -05:51:22,516 ERR kernel:sd 2:0:1:0: [sdb] Assuming drive cache: write through -05:51:22,516 NOTICE kernel:sd 2:0:1:0: [sdb] Cache data unavailable -05:51:22,516 ERR kernel:sd 2:0:1:0: [sdb] Assuming drive cache: write through -05:51:22,522 INFO kernel: sdb: -05:51:22,522 NOTICE kernel:sd 2:0:1:0: [sdb] Cache data unavailable -05:51:22,522 ERR kernel:sd 2:0:1:0: [sdb] Assuming drive cache: write through -05:51:22,522 NOTICE kernel:sd 2:0:1:0: [sdb] Attached SCSI disk -05:51:22,577 WARNING kernel: sda1 sda2 sda3 -05:51:22,598 NOTICE kernel:sd 2:0:0:0: [sda] Cache data unavailable -05:51:22,598 ERR kernel:sd 2:0:0:0: [sda] Assuming drive cache: write through -05:51:22,598 NOTICE kernel:sd 2:0:0:0: [sda] Attached SCSI disk -05:51:22,606 NOTICE kernel:sr 1:0:0:0: Attached scsi generic sg0 type 5 -05:51:22,606 NOTICE kernel:sd 2:0:0:0: Attached scsi generic sg1 type 0 -05:51:22,606 NOTICE kernel:sd 2:0:1:0: Attached scsi generic sg2 type 0 -05:51:28,012 ERR udevd-work: device node '/dev/rtc' already exists, link to '/dev/rtc0' will not overwrite it -05:51:46,181 INFO NetworkManager: NetworkManager (version 0.8.1-66.el6) is starting... -05:51:46,181 INFO NetworkManager: Read config file /etc/NetworkManager/NetworkManager.conf -05:51:46,183 INFO NetworkManager: trying to start the modem manager... -05:51:46,186 INFO NetworkManager: monitoring kernel firmware directory '/lib/firmware'. -05:51:46,186 INFO NetworkManager: Bonding/Bridging/VLAN support enabled -05:51:46,188 NOTICE NetworkManager: ifcfg-rh: Acquired D-Bus service com.redhat.ifcfgrh1 -05:51:46,188 INFO NetworkManager: Loaded plugin ifcfg-rh: (c) 2007 - 2008 Red Hat, Inc. To report bugs please use the NetworkManager mailing list. -05:51:46,188 INFO NetworkManager: Loaded plugin keyfile: (c) 2007 - 2008 Red Hat, Inc. To report bugs please use the NetworkManager mailing list. -05:51:46,188 NOTICE NetworkManager: ifcfg-rh: parsing /etc/sysconfig/network-scripts/ifcfg-eth3 ... -05:51:46,190 NOTICE NetworkManager: ifcfg-rh: read connection 'System eth3' -05:51:46,190 NOTICE NetworkManager: ifcfg-rh: parsing /etc/sysconfig/network-scripts/ifcfg-eth2 ... -05:51:46,190 NOTICE NetworkManager: ifcfg-rh: read connection 'System eth2' -05:51:46,190 NOTICE NetworkManager: ifcfg-rh: parsing /etc/sysconfig/network-scripts/ifcfg-eth1 ... -05:51:46,191 NOTICE NetworkManager: ifcfg-rh: read connection 'System eth1' -05:51:46,191 NOTICE NetworkManager: ifcfg-rh: parsing /etc/sysconfig/network-scripts/ifcfg-eth0 ... -05:51:46,192 NOTICE NetworkManager: ifcfg-rh: read connection 'System eth0' -05:51:46,192 WARNING NetworkManager: Can not read directory '/etc/NetworkManager/system-connections': Error opening directory '/etc/NetworkManager/system-connections': No such file or directory -05:51:46,194 INFO NetworkManager: WiFi enabled by radio killswitch; enabled by state file -05:51:46,194 INFO NetworkManager: WWAN enabled by radio killswitch; enabled by state file -05:51:46,194 INFO NetworkManager: WiMAX enabled by radio killswitch; enabled by state file -05:51:46,194 INFO NetworkManager: Networking is enabled by state file -05:51:46,212 INFO kernel:802.1Q VLAN Support v1.8 Ben Greear -05:51:46,212 INFO kernel:All bugs added by David S. Miller -05:51:46,217 INFO kernel:e1000: eth0 NIC Link is Up 1000 Mbps Full Duplex, Flow Control: None -05:51:46,218 INFO NetworkManager: (eth0): carrier is OFF -05:51:46,218 INFO NetworkManager: (eth0): new Ethernet device (driver: 'e1000' ifindex: 2) -05:51:46,218 INFO NetworkManager: (eth0): exported as /org/freedesktop/NetworkManager/Devices/0 -05:51:46,218 INFO NetworkManager: (eth0): now managed -05:51:46,218 INFO NetworkManager: (eth0): device state change: 1 -> 2 (reason 2) -05:51:46,218 INFO NetworkManager: (eth0): bringing up device. -05:51:46,221 INFO kernel:8021q: adding VLAN 0 to HW filter on device eth0 -05:51:46,222 INFO NetworkManager: (eth0): carrier now ON (device state 2) -05:51:46,222 INFO NetworkManager: (eth0): preparing device. -05:51:46,222 INFO NetworkManager: (eth0): deactivating device (reason: 2). -05:51:46,223 INFO NetworkManager: (eth1): carrier is OFF -05:51:46,224 INFO NetworkManager: (eth1): new Ethernet device (driver: 'e1000' ifindex: 3) -05:51:46,224 INFO NetworkManager: (eth1): exported as /org/freedesktop/NetworkManager/Devices/1 -05:51:46,224 INFO NetworkManager: (eth1): now managed -05:51:46,224 INFO NetworkManager: (eth1): device state change: 1 -> 2 (reason 2) -05:51:46,224 INFO NetworkManager: (eth1): bringing up device. -05:51:46,229 INFO kernel:e1000: eth1 NIC Link is Up 1000 Mbps Full Duplex, Flow Control: None -05:51:46,233 INFO kernel:8021q: adding VLAN 0 to HW filter on device eth1 -05:51:46,233 INFO NetworkManager: (eth1): carrier now ON (device state 2) -05:51:46,234 INFO NetworkManager: (eth1): preparing device. -05:51:46,234 INFO NetworkManager: (eth1): deactivating device (reason: 2). -05:51:46,235 INFO NetworkManager: (eth2): carrier is OFF -05:51:46,235 INFO NetworkManager: (eth2): new Ethernet device (driver: 'e1000' ifindex: 4) -05:51:46,235 INFO NetworkManager: (eth2): exported as /org/freedesktop/NetworkManager/Devices/2 -05:51:46,235 INFO NetworkManager: (eth2): now managed -05:51:46,235 INFO NetworkManager: (eth2): device state change: 1 -> 2 (reason 2) -05:51:46,235 INFO NetworkManager: (eth2): bringing up device. -05:51:46,240 INFO kernel:e1000: eth2 NIC Link is Up 1000 Mbps Full Duplex, Flow Control: None -05:51:46,244 INFO kernel:8021q: adding VLAN 0 to HW filter on device eth2 -05:51:46,245 INFO NetworkManager: (eth2): carrier now ON (device state 2) -05:51:46,245 INFO NetworkManager: (eth2): preparing device. -05:51:46,245 INFO NetworkManager: (eth2): deactivating device (reason: 2). -05:51:46,246 INFO NetworkManager: (eth3): carrier is OFF -05:51:46,247 INFO NetworkManager: (eth3): new Ethernet device (driver: 'e1000' ifindex: 5) -05:51:46,247 INFO NetworkManager: (eth3): exported as /org/freedesktop/NetworkManager/Devices/3 -05:51:46,247 INFO NetworkManager: (eth3): now managed -05:51:46,247 INFO NetworkManager: (eth3): device state change: 1 -> 2 (reason 2) -05:51:46,247 INFO NetworkManager: (eth3): bringing up device. -05:51:46,251 INFO kernel:e1000: eth3 NIC Link is Up 1000 Mbps Full Duplex, Flow Control: None -05:51:46,255 INFO kernel:8021q: adding VLAN 0 to HW filter on device eth3 -05:51:46,256 INFO NetworkManager: (eth3): carrier now ON (device state 2) -05:51:46,256 INFO NetworkManager: (eth3): preparing device. -05:51:46,256 INFO NetworkManager: (eth3): deactivating device (reason: 2). -05:51:46,258 INFO NetworkManager: (eth0): carrier now OFF (device state 2) -05:51:46,258 INFO NetworkManager: (eth0): carrier now ON (device state 2) -05:51:46,258 WARNING NetworkManager: (nm-device.c:4447):nm_device_queue_state: runtime check failed: (priv->queued_state.id == 0) -05:51:46,258 INFO NetworkManager: (eth1): carrier now OFF (device state 2) -05:51:46,259 INFO NetworkManager: (eth1): carrier now ON (device state 2) -05:51:46,259 WARNING NetworkManager: (nm-device.c:4447):nm_device_queue_state: runtime check failed: (priv->queued_state.id == 0) -05:51:46,259 INFO NetworkManager: (eth2): carrier now OFF (device state 2) -05:51:46,259 INFO NetworkManager: (eth2): carrier now ON (device state 2) -05:51:46,259 WARNING NetworkManager: (nm-device.c:4447):nm_device_queue_state: runtime check failed: (priv->queued_state.id == 0) -05:51:46,259 INFO NetworkManager: (eth3): carrier now OFF (device state 2) -05:51:46,259 INFO NetworkManager: (eth3): carrier now ON (device state 2) -05:51:46,259 WARNING NetworkManager: (nm-device.c:4447):nm_device_queue_state: runtime check failed: (priv->queued_state.id == 0) -05:51:46,260 INFO NetworkManager: Trying to start the supplicant... -05:51:46,261 INFO NetworkManager: (eth0): device state change: 2 -> 3 (reason 40) -05:51:46,261 INFO NetworkManager: (eth1): device state change: 2 -> 3 (reason 40) -05:51:46,261 INFO NetworkManager: (eth2): device state change: 2 -> 3 (reason 40) -05:51:46,262 INFO NetworkManager: (eth3): device state change: 2 -> 3 (reason 40) -05:51:46,268 INFO NetworkManager: wpa_supplicant started -05:51:47,181 WARNING NetworkManager: error requesting auth for org.freedesktop.NetworkManager.enable-disable-network: (26) Remote Exception invoking org.freedesktop.PolicyKit1.Authority.CheckAuthorization() on /org/freedesktop/PolicyKit1/Authority at name org.freedesktop.PolicyKit1: org.freedesktop.DBus.Error.Spawn.ExecFailed: Cannot launch daemon, file not found or permissions invalid -05:51:47,182 WARNING NetworkManager: error requesting auth for org.freedesktop.NetworkManager.sleep-wake: (26) Remote Exception invoking org.freedesktop.PolicyKit1.Authority.CheckAuthorization() on /org/freedesktop/PolicyKit1/Authority at name org.freedesktop.PolicyKit1: org.freedesktop.DBus.Error.Spawn.ExecFailed: Cannot launch daemon, file not found or permissions invalid -05:51:47,182 WARNING NetworkManager: error requesting auth for org.freedesktop.NetworkManager.enable-disable-wifi: (26) Remote Exception invoking org.freedesktop.PolicyKit1.Authority.CheckAuthorization() on /org/freedesktop/PolicyKit1/Authority at name org.freedesktop.PolicyKit1: org.freedesktop.DBus.Error.Spawn.ExecFailed: Cannot launch daemon, file not found or permissions invalid -05:51:47,182 WARNING NetworkManager: error requesting auth for org.freedesktop.NetworkManager.enable-disable-wwan: (26) Remote Exception invoking org.freedesktop.PolicyKit1.Authority.CheckAuthorization() on /org/freedesktop/PolicyKit1/Authority at name org.freedesktop.PolicyKit1: org.freedesktop.DBus.Error.Spawn.ExecFailed: Cannot launch daemon, file not found or permissions invalid -05:51:47,182 WARNING NetworkManager: error requesting auth for org.freedesktop.NetworkManager.use-user-connections: (26) Remote Exception invoking org.freedesktop.PolicyKit1.Authority.CheckAuthorization() on /org/freedesktop/PolicyKit1/Authority at name org.freedesktop.PolicyKit1: org.freedesktop.DBus.Error.Spawn.ExecFailed: Cannot launch daemon, file not found or permissions invalid -05:51:47,182 WARNING NetworkManager: error requesting auth for org.freedesktop.NetworkManager.network-control: (26) Remote Exception invoking org.freedesktop.PolicyKit1.Authority.CheckAuthorization() on /org/freedesktop/PolicyKit1/Authority at name org.freedesktop.PolicyKit1: org.freedesktop.DBus.Error.Spawn.ExecFailed: Cannot launch daemon, file not found or permissions invalid -05:51:47,182 WARNING NetworkManager: error requesting auth for org.freedesktop.network-manager-settings.system.wifi.share.open: (26) Remote Exception invoking org.freedesktop.PolicyKit1.Authority.CheckAuthorization() on /org/freedesktop/PolicyKit1/Authority at name org.freedesktop.PolicyKit1: org.freedesktop.DBus.Error.Spawn.ExecFailed: Cannot launch daemon, file not found or permissions invalid -05:51:47,183 WARNING NetworkManager: error requesting auth for org.freedesktop.network-manager-settings.system.wifi.share.protected: (26) Remote Exception invoking org.freedesktop.PolicyKit1.Authority.CheckAuthorization() on /org/freedesktop/PolicyKit1/Authority at name org.freedesktop.PolicyKit1: org.freedesktop.DBus.Error.Spawn.ExecFailed: Cannot launch daemon, file not found or permissions invalid -05:51:47,191 WARNING NetworkManager: error requesting auth for org.freedesktop.NetworkManager.enable-disable-network: (26) Remote Exception invoking org.freedesktop.PolicyKit1.Authority.CheckAuthorization() on /org/freedesktop/PolicyKit1/Authority at name org.freedesktop.PolicyKit1: org.freedesktop.DBus.Error.Spawn.ExecFailed: Cannot launch daemon, file not found or permissions invalid -05:51:47,191 WARNING NetworkManager: error requesting auth for org.freedesktop.NetworkManager.sleep-wake: (26) Remote Exception invoking org.freedesktop.PolicyKit1.Authority.CheckAuthorization() on /org/freedesktop/PolicyKit1/Authority at name org.freedesktop.PolicyKit1: org.freedesktop.DBus.Error.Spawn.ExecFailed: Cannot launch daemon, file not found or permissions invalid -05:51:47,191 WARNING NetworkManager: error requesting auth for org.freedesktop.NetworkManager.enable-disable-wifi: (26) Remote Exception invoking org.freedesktop.PolicyKit1.Authority.CheckAuthorization() on /org/freedesktop/PolicyKit1/Authority at name org.freedesktop.PolicyKit1: org.freedesktop.DBus.Error.Spawn.ExecFailed: Cannot launch daemon, file not found or permissions invalid -05:51:47,191 WARNING NetworkManager: error requesting auth for org.freedesktop.NetworkManager.enable-disable-wwan: (26) Remote Exception invoking org.freedesktop.PolicyKit1.Authority.CheckAuthorization() on /org/freedesktop/PolicyKit1/Authority at name org.freedesktop.PolicyKit1: org.freedesktop.DBus.Error.Spawn.ExecFailed: Cannot launch daemon, file not found or permissions invalid -05:51:47,191 WARNING NetworkManager: error requesting auth for org.freedesktop.NetworkManager.use-user-connections: (26) Remote Exception invoking org.freedesktop.PolicyKit1.Authority.CheckAuthorization() on /org/freedesktop/PolicyKit1/Authority at name org.freedesktop.PolicyKit1: org.freedesktop.DBus.Error.Spawn.ExecFailed: Cannot launch daemon, file not found or permissions invalid -05:51:47,191 WARNING NetworkManager: error requesting auth for org.freedesktop.NetworkManager.network-control: (26) Remote Exception invoking org.freedesktop.PolicyKit1.Authority.CheckAuthorization() on /org/freedesktop/PolicyKit1/Authority at name org.freedesktop.PolicyKit1: org.freedesktop.DBus.Error.Spawn.ExecFailed: Cannot launch daemon, file not found or permissions invalid -05:51:47,192 WARNING NetworkManager: error requesting auth for org.freedesktop.network-manager-settings.system.wifi.share.open: (26) Remote Exception invoking org.freedesktop.PolicyKit1.Authority.CheckAuthorization() on /org/freedesktop/PolicyKit1/Authority at name org.freedesktop.PolicyKit1: org.freedesktop.DBus.Error.Spawn.ExecFailed: Cannot launch daemon, file not found or permissions invalid -05:51:47,192 WARNING NetworkManager: error requesting auth for org.freedesktop.network-manager-settings.system.wifi.share.protected: (26) Remote Exception invoking org.freedesktop.PolicyKit1.Authority.CheckAuthorization() on /org/freedesktop/PolicyKit1/Authority at name org.freedesktop.PolicyKit1: org.freedesktop.DBus.Error.Spawn.ExecFailed: Cannot launch daemon, file not found or permissions invalid -05:51:47,200 WARNING NetworkManager: error requesting auth for org.freedesktop.NetworkManager.enable-disable-network: (26) Remote Exception invoking org.freedesktop.PolicyKit1.Authority.CheckAuthorization() on /org/freedesktop/PolicyKit1/Authority at name org.freedesktop.PolicyKit1: org.freedesktop.DBus.Error.Spawn.ExecFailed: Cannot launch daemon, file not found or permissions invalid -05:51:47,200 WARNING NetworkManager: error requesting auth for org.freedesktop.NetworkManager.sleep-wake: (26) Remote Exception invoking org.freedesktop.PolicyKit1.Authority.CheckAuthorization() on /org/freedesktop/PolicyKit1/Authority at name org.freedesktop.PolicyKit1: org.freedesktop.DBus.Error.Spawn.ExecFailed: Cannot launch daemon, file not found or permissions invalid -05:51:47,200 WARNING NetworkManager: error requesting auth for org.freedesktop.NetworkManager.enable-disable-wifi: (26) Remote Exception invoking org.freedesktop.PolicyKit1.Authority.CheckAuthorization() on /org/freedesktop/PolicyKit1/Authority at name org.freedesktop.PolicyKit1: org.freedesktop.DBus.Error.Spawn.ExecFailed: Cannot launch daemon, file not found or permissions invalid -05:51:47,200 WARNING NetworkManager: error requesting auth for org.freedesktop.NetworkManager.enable-disable-wwan: (26) Remote Exception invoking org.freedesktop.PolicyKit1.Authority.CheckAuthorization() on /org/freedesktop/PolicyKit1/Authority at name org.freedesktop.PolicyKit1: org.freedesktop.DBus.Error.Spawn.ExecFailed: Cannot launch daemon, file not found or permissions invalid -05:51:47,200 WARNING NetworkManager: error requesting auth for org.freedesktop.NetworkManager.use-user-connections: (26) Remote Exception invoking org.freedesktop.PolicyKit1.Authority.CheckAuthorization() on /org/freedesktop/PolicyKit1/Authority at name org.freedesktop.PolicyKit1: org.freedesktop.DBus.Error.Spawn.ExecFailed: Cannot launch daemon, file not found or permissions invalid -05:51:47,201 WARNING NetworkManager: error requesting auth for org.freedesktop.NetworkManager.network-control: (26) Remote Exception invoking org.freedesktop.PolicyKit1.Authority.CheckAuthorization() on /org/freedesktop/PolicyKit1/Authority at name org.freedesktop.PolicyKit1: org.freedesktop.DBus.Error.Spawn.ExecFailed: Cannot launch daemon, file not found or permissions invalid -05:51:47,201 WARNING NetworkManager: error requesting auth for org.freedesktop.network-manager-settings.system.wifi.share.open: (26) Remote Exception invoking org.freedesktop.PolicyKit1.Authority.CheckAuthorization() on /org/freedesktop/PolicyKit1/Authority at name org.freedesktop.PolicyKit1: org.freedesktop.DBus.Error.Spawn.ExecFailed: Cannot launch daemon, file not found or permissions invalid -05:51:47,201 WARNING NetworkManager: error requesting auth for org.freedesktop.network-manager-settings.system.wifi.share.protected: (26) Remote Exception invoking org.freedesktop.PolicyKit1.Authority.CheckAuthorization() on /org/freedesktop/PolicyKit1/Authority at name org.freedesktop.PolicyKit1: org.freedesktop.DBus.Error.Spawn.ExecFailed: Cannot launch daemon, file not found or permissions invalid -05:51:47,212 WARNING NetworkManager: error requesting auth for org.freedesktop.NetworkManager.enable-disable-network: (26) Remote Exception invoking org.freedesktop.PolicyKit1.Authority.CheckAuthorization() on /org/freedesktop/PolicyKit1/Authority at name org.freedesktop.PolicyKit1: org.freedesktop.DBus.Error.Spawn.ExecFailed: Cannot launch daemon, file not found or permissions invalid -05:51:47,212 WARNING NetworkManager: error requesting auth for org.freedesktop.NetworkManager.sleep-wake: (26) Remote Exception invoking org.freedesktop.PolicyKit1.Authority.CheckAuthorization() on /org/freedesktop/PolicyKit1/Authority at name org.freedesktop.PolicyKit1: org.freedesktop.DBus.Error.Spawn.ExecFailed: Cannot launch daemon, file not found or permissions invalid -05:51:47,212 WARNING NetworkManager: error requesting auth for org.freedesktop.NetworkManager.enable-disable-wifi: (26) Remote Exception invoking org.freedesktop.PolicyKit1.Authority.CheckAuthorization() on /org/freedesktop/PolicyKit1/Authority at name org.freedesktop.PolicyKit1: org.freedesktop.DBus.Error.Spawn.ExecFailed: Cannot launch daemon, file not found or permissions invalid -05:51:47,212 WARNING NetworkManager: error requesting auth for org.freedesktop.NetworkManager.enable-disable-wwan: (26) Remote Exception invoking org.freedesktop.PolicyKit1.Authority.CheckAuthorization() on /org/freedesktop/PolicyKit1/Authority at name org.freedesktop.PolicyKit1: org.freedesktop.DBus.Error.Spawn.ExecFailed: Cannot launch daemon, file not found or permissions invalid -05:51:47,212 WARNING NetworkManager: error requesting auth for org.freedesktop.NetworkManager.use-user-connections: (26) Remote Exception invoking org.freedesktop.PolicyKit1.Authority.CheckAuthorization() on /org/freedesktop/PolicyKit1/Authority at name org.freedesktop.PolicyKit1: org.freedesktop.DBus.Error.Spawn.ExecFailed: Cannot launch daemon, file not found or permissions invalid -05:51:47,212 WARNING NetworkManager: error requesting auth for org.freedesktop.NetworkManager.network-control: (26) Remote Exception invoking org.freedesktop.PolicyKit1.Authority.CheckAuthorization() on /org/freedesktop/PolicyKit1/Authority at name org.freedesktop.PolicyKit1: org.freedesktop.DBus.Error.Spawn.ExecFailed: Cannot launch daemon, file not found or permissions invalid -05:51:47,213 WARNING NetworkManager: error requesting auth for org.freedesktop.network-manager-settings.system.wifi.share.open: (26) Remote Exception invoking org.freedesktop.PolicyKit1.Authority.CheckAuthorization() on /org/freedesktop/PolicyKit1/Authority at name org.freedesktop.PolicyKit1: org.freedesktop.DBus.Error.Spawn.ExecFailed: Cannot launch daemon, file not found or permissions invalid -05:51:47,213 WARNING NetworkManager: error requesting auth for org.freedesktop.network-manager-settings.system.wifi.share.protected: (26) Remote Exception invoking org.freedesktop.PolicyKit1.Authority.CheckAuthorization() on /org/freedesktop/PolicyKit1/Authority at name org.freedesktop.PolicyKit1: org.freedesktop.DBus.Error.Spawn.ExecFailed: Cannot launch daemon, file not found or permissions invalid -05:51:48,220 NOTICE NetworkManager: ifcfg-rh: updating /etc/sysconfig/network-scripts/ifcfg-eth0 -05:51:48,223 INFO NetworkManager: Auto-activating connection 'System eth0'. -05:51:48,224 INFO NetworkManager: Activation (eth0) starting connection 'System eth0' -05:51:48,224 INFO NetworkManager: (eth0): device state change: 3 -> 4 (reason 0) -05:51:48,224 INFO NetworkManager: Activation (eth0) Stage 1 of 5 (Device Prepare) scheduled... -05:51:48,224 INFO NetworkManager: Activation (eth0) Stage 1 of 5 (Device Prepare) started... -05:51:48,224 INFO NetworkManager: Activation (eth0) Stage 2 of 5 (Device Configure) scheduled... -05:51:48,225 INFO NetworkManager: Activation (eth0) Stage 1 of 5 (Device Prepare) complete. -05:51:48,225 INFO NetworkManager: Activation (eth0) Stage 2 of 5 (Device Configure) starting... -05:51:48,225 INFO NetworkManager: (eth0): device state change: 4 -> 5 (reason 0) -05:51:48,225 INFO NetworkManager: Activation (eth0) Stage 2 of 5 (Device Configure) successful. -05:51:48,225 INFO NetworkManager: Activation (eth0) Stage 3 of 5 (IP Configure Start) scheduled. -05:51:48,225 INFO NetworkManager: Activation (eth0) Stage 2 of 5 (Device Configure) complete. -05:51:48,225 INFO NetworkManager: Activation (eth0) Stage 3 of 5 (IP Configure Start) started... -05:51:48,225 INFO NetworkManager: (eth0): device state change: 5 -> 7 (reason 0) -05:51:48,225 INFO NetworkManager: Activation (eth0) Beginning DHCPv4 transaction -05:51:48,228 INFO dhclient: Internet Systems Consortium DHCP Client 4.1.1-P1 -05:51:48,228 INFO NetworkManager: dhclient started with pid 670 -05:51:48,228 INFO NetworkManager: Activation (eth0) DHCPv4 will time out in 45 seconds -05:51:48,228 INFO NetworkManager: Activation (eth0) Stage 3 of 5 (IP Configure Start) complete. -05:51:48,228 INFO dhclient: Copyright 2004-2010 Internet Systems Consortium. -05:51:48,228 INFO dhclient: All rights reserved. -05:51:48,228 INFO dhclient: For info, please visit https://www.isc.org/software/dhcp/ -05:51:48,229 INFO dhclient: -05:51:48,232 INFO NetworkManager: (eth0): DHCPv4 state changed nbi -> preinit -05:51:48,238 INFO dhclient: Listening on LPF/eth0/00:0c:29:21:89:af -05:51:48,238 INFO dhclient: Sending on LPF/eth0/00:0c:29:21:89:af -05:51:48,238 INFO dhclient: Sending on Socket/fallback -05:51:48,238 INFO dhclient: DHCPDISCOVER on eth0 to 255.255.255.255 port 67 interval 7 (xid=0x4cbfa09c) -05:51:48,266 INFO dhclient: DHCPOFFER from 10.145.88.211 -05:51:48,267 INFO dhclient: DHCPREQUEST on eth0 to 255.255.255.255 port 67 (xid=0x4cbfa09c) -05:51:50,624 INFO dhclient: DHCPACK from 10.145.88.211 (xid=0x4cbfa09c) -05:51:50,627 INFO NetworkManager: (eth0): DHCPv4 state changed preinit -> bound -05:51:50,627 INFO NetworkManager: Activation (eth0) Stage 4 of 5 (IP4 Configure Get) scheduled... -05:51:50,627 INFO NetworkManager: Activation (eth0) Stage 4 of 5 (IP4 Configure Get) started... -05:51:50,627 INFO NetworkManager: address 10.145.88.106 -05:51:50,627 INFO NetworkManager: prefix 23 (255.255.254.0) -05:51:50,627 INFO NetworkManager: gateway 10.145.88.1 -05:51:50,627 INFO NetworkManager: hostname 'server1' -05:51:50,627 INFO NetworkManager: nameserver '10.145.88.211' -05:51:50,628 INFO NetworkManager: Activation (eth0) Stage 5 of 5 (IP Configure Commit) scheduled... -05:51:50,628 INFO NetworkManager: Activation (eth0) Stage 4 of 5 (IP4 Configure Get) complete. -05:51:50,628 INFO NetworkManager: Activation (eth0) Stage 5 of 5 (IP Configure Commit) started... -05:51:50,628 INFO dhclient: bound to 10.145.88.106 -- renewal in 10408 seconds. -05:51:51,629 INFO NetworkManager: (eth0): device state change: 7 -> 8 (reason 0) -05:51:51,629 INFO NetworkManager: Policy set 'System eth0' (eth0) as default for IPv4 routing and DNS. -05:51:51,630 INFO NetworkManager: Setting system hostname to 'server1' (from DHCPv4) -05:51:51,630 INFO NetworkManager: Activation (eth0) successful, device activated. -05:51:51,631 INFO NetworkManager: Activation (eth0) Stage 5 of 5 (IP Configure Commit) complete. -05:52:07,660 WARNING NetworkManager: error requesting auth for org.freedesktop.NetworkManager.enable-disable-network: (26) Remote Exception invoking org.freedesktop.PolicyKit1.Authority.CheckAuthorization() on /org/freedesktop/PolicyKit1/Authority at name org.freedesktop.PolicyKit1: org.freedesktop.DBus.Error.Spawn.ExecFailed: Cannot launch daemon, file not found or permissions invalid -05:52:07,660 WARNING NetworkManager: error requesting auth for org.freedesktop.NetworkManager.sleep-wake: (26) Remote Exception invoking org.freedesktop.PolicyKit1.Authority.CheckAuthorization() on /org/freedesktop/PolicyKit1/Authority at name org.freedesktop.PolicyKit1: org.freedesktop.DBus.Error.Spawn.ExecFailed: Cannot launch daemon, file not found or permissions invalid -05:52:07,660 WARNING NetworkManager: error requesting auth for org.freedesktop.NetworkManager.enable-disable-wifi: (26) Remote Exception invoking org.freedesktop.PolicyKit1.Authority.CheckAuthorization() on /org/freedesktop/PolicyKit1/Authority at name org.freedesktop.PolicyKit1: org.freedesktop.DBus.Error.Spawn.ExecFailed: Cannot launch daemon, file not found or permissions invalid -05:52:07,660 WARNING NetworkManager: error requesting auth for org.freedesktop.NetworkManager.enable-disable-wwan: (26) Remote Exception invoking org.freedesktop.PolicyKit1.Authority.CheckAuthorization() on /org/freedesktop/PolicyKit1/Authority at name org.freedesktop.PolicyKit1: org.freedesktop.DBus.Error.Spawn.ExecFailed: Cannot launch daemon, file not found or permissions invalid -05:52:07,660 WARNING NetworkManager: error requesting auth for org.freedesktop.NetworkManager.use-user-connections: (26) Remote Exception invoking org.freedesktop.PolicyKit1.Authority.CheckAuthorization() on /org/freedesktop/PolicyKit1/Authority at name org.freedesktop.PolicyKit1: org.freedesktop.DBus.Error.Spawn.ExecFailed: Cannot launch daemon, file not found or permissions invalid -05:52:07,660 WARNING NetworkManager: error requesting auth for org.freedesktop.NetworkManager.network-control: (26) Remote Exception invoking org.freedesktop.PolicyKit1.Authority.CheckAuthorization() on /org/freedesktop/PolicyKit1/Authority at name org.freedesktop.PolicyKit1: org.freedesktop.DBus.Error.Spawn.ExecFailed: Cannot launch daemon, file not found or permissions invalid -05:52:07,660 WARNING NetworkManager: error requesting auth for org.freedesktop.network-manager-settings.system.wifi.share.open: (26) Remote Exception invoking org.freedesktop.PolicyKit1.Authority.CheckAuthorization() on /org/freedesktop/PolicyKit1/Authority at name org.freedesktop.PolicyKit1: org.freedesktop.DBus.Error.Spawn.ExecFailed: Cannot launch daemon, file not found or permissions invalid -05:52:07,660 WARNING NetworkManager: error requesting auth for org.freedesktop.network-manager-settings.system.wifi.share.protected: (26) Remote Exception invoking org.freedesktop.PolicyKit1.Authority.CheckAuthorization() on /org/freedesktop/PolicyKit1/Authority at name org.freedesktop.PolicyKit1: org.freedesktop.DBus.Error.Spawn.ExecFailed: Cannot launch daemon, file not found or permissions invalid -05:52:47,362 NOTICE dbus-daemon: [system] Reloaded configuration -05:52:47,364 NOTICE dbus-daemon: [system] Reloaded configuration -05:52:47,512 DEBUG kernel:SELinux: 2048 avtab hash slots, 277800 rules. -05:52:47,588 DEBUG kernel:SELinux: 2048 avtab hash slots, 277800 rules. -05:52:48,083 DEBUG kernel:SELinux: 9 users, 12 roles, 3917 types, 217 bools, 1 sens, 1024 cats -05:52:48,083 DEBUG kernel:SELinux: 81 classes, 277800 rules -05:52:48,088 DEBUG kernel:SELinux: Completing initialization. -05:52:48,088 DEBUG kernel:SELinux: Setting up existing superblocks. -05:52:48,088 DEBUG kernel:SELinux: initialized (dev loop0, type squashfs), not configured for labeling -05:52:48,088 DEBUG kernel:SELinux: initialized (dev tmpfs, type tmpfs), uses transition SIDs -05:52:48,088 DEBUG kernel:SELinux: initialized (dev tmpfs, type tmpfs), uses transition SIDs -05:52:48,089 DEBUG kernel:SELinux: initialized (dev selinuxfs, type selinuxfs), uses genfs_contexts -05:52:48,089 DEBUG kernel:SELinux: initialized (dev mqueue, type mqueue), uses transition SIDs -05:52:48,089 DEBUG kernel:SELinux: initialized (dev hugetlbfs, type hugetlbfs), uses transition SIDs -05:52:48,089 DEBUG kernel:SELinux: initialized (dev devpts, type devpts), uses transition SIDs -05:52:48,089 DEBUG kernel:SELinux: initialized (dev inotifyfs, type inotifyfs), uses genfs_contexts -05:52:48,089 DEBUG kernel:SELinux: initialized (dev anon_inodefs, type anon_inodefs), uses genfs_contexts -05:52:48,089 DEBUG kernel:SELinux: initialized (dev pipefs, type pipefs), uses task SIDs -05:52:48,089 DEBUG kernel:SELinux: initialized (dev debugfs, type debugfs), uses genfs_contexts -05:52:48,090 DEBUG kernel:SELinux: initialized (dev sockfs, type sockfs), uses task SIDs -05:52:48,090 DEBUG kernel:SELinux: initialized (dev devtmpfs, type devtmpfs), uses transition SIDs -05:52:48,090 DEBUG kernel:SELinux: initialized (dev tmpfs, type tmpfs), uses transition SIDs -05:52:48,090 DEBUG kernel:SELinux: initialized (dev proc, type proc), uses genfs_contexts -05:52:48,090 DEBUG kernel:SELinux: initialized (dev bdev, type bdev), uses genfs_contexts -05:52:48,090 DEBUG kernel:SELinux: initialized (dev rootfs, type rootfs), uses genfs_contexts -05:52:48,090 DEBUG kernel:SELinux: initialized (dev sysfs, type sysfs), uses genfs_contexts -05:52:48,116 NOTICE kernel:type=1403 audit(1021096368.114:2): policy loaded auid=4294967295 ses=4294967295 -05:52:48,165 INFO kernel:md: raid0 personality registered for level 0 -05:52:48,172 INFO kernel:md: raid1 personality registered for level 1 -05:52:48,176 INFO kernel:async_tx: api initialized (async) -05:52:48,188 INFO kernel:xor: automatically using best checksumming function: generic_sse -05:52:48,191 INFO kernel: generic_sse: 9112.000 MB/sec -05:52:48,191 INFO kernel:xor: using function: generic_sse (9112.000 MB/sec) -05:52:48,212 WARNING kernel:raid6: sse2x1 5777 MB/s -05:52:48,229 WARNING kernel:raid6: sse2x2 7031 MB/s -05:52:48,247 WARNING kernel:raid6: sse2x4 7550 MB/s -05:52:48,247 WARNING kernel:raid6: using algorithm sse2x4 (7550 MB/s) -05:52:48,247 WARNING kernel:raid6: using ssse3x2 recovery algorithm -05:52:48,261 INFO kernel:md: raid6 personality registered for level 6 -05:52:48,261 INFO kernel:md: raid5 personality registered for level 5 -05:52:48,261 INFO kernel:md: raid4 personality registered for level 4 -05:52:48,273 INFO kernel:md: raid10 personality registered for level 10 -05:52:48,277 INFO kernel:md: linear personality registered for level -1 -05:52:48,290 INFO kernel:device-mapper: uevent: version 1.0.3 -05:52:48,291 INFO kernel:device-mapper: ioctl: 4.24.6-ioctl (2013-01-15) initialised: dm-devel@redhat.com -05:52:48,324 INFO kernel:device-mapper: multipath: version 1.5.0 loaded -05:52:48,328 INFO kernel:device-mapper: multipath round-robin: version 1.0.0 loaded -05:53:05,608 WARNING kernel:hpet1: lost 5 rtc interrupts -05:53:05,608 WARNING kernel:hpet1: lost 1 rtc interrupts -05:53:21,197 NOTICE kernel:sd 2:0:0:0: [sda] Cache data unavailable -05:53:21,197 ERR kernel:sd 2:0:0:0: [sda] Assuming drive cache: write through -05:53:21,238 INFO kernel: sda: sda1 sda2 -05:53:25,106 NOTICE kernel:sd 2:0:0:0: [sda] Cache data unavailable -05:53:25,106 ERR kernel:sd 2:0:0:0: [sda] Assuming drive cache: write through -05:53:25,117 INFO kernel: sda: sda1 -05:53:31,920 NOTICE kernel:sd 2:0:0:0: [sda] Cache data unavailable -05:53:31,920 ERR kernel:sd 2:0:0:0: [sda] Assuming drive cache: write through -05:53:31,962 INFO kernel: sda: -05:53:33,120 NOTICE kernel:sd 2:0:0:0: [sda] Cache data unavailable -05:53:33,120 ERR kernel:sd 2:0:0:0: [sda] Assuming drive cache: write through -05:53:33,120 INFO kernel: sda: sda1 -05:53:50,037 NOTICE kernel:sd 2:0:0:0: [sda] Cache data unavailable -05:53:50,037 ERR kernel:sd 2:0:0:0: [sda] Assuming drive cache: write through -05:53:50,037 INFO kernel: sda: sda1 sda2 -05:53:55,178 NOTICE kernel:sd 2:0:0:0: [sda] Cache data unavailable -05:53:55,178 ERR kernel:sd 2:0:0:0: [sda] Assuming drive cache: write through -05:53:55,211 INFO kernel: sda: sda1 sda2 sda3 -05:54:41,918 INFO kernel:Adding 3354616k swap on /dev/sda2. Priority:-1 extents:1 across:3354616k -05:54:42,441 INFO kernel:kjournald starting. Commit interval 5 seconds -05:54:42,489 INFO kernel:EXT3-fs (dm-0): using internal journal -05:54:42,489 INFO kernel:EXT3-fs (dm-0): mounted filesystem with ordered data mode -05:54:42,489 DEBUG kernel:SELinux: initialized (dev dm-0, type ext3), uses xattr -05:54:42,913 INFO kernel:kjournald starting. Commit interval 5 seconds -05:54:42,977 INFO kernel:EXT3-fs (sda1): using internal journal -05:54:42,977 INFO kernel:EXT3-fs (sda1): mounted filesystem with ordered data mode -05:54:42,977 DEBUG kernel:SELinux: initialized (dev sda1, type ext3), uses xattr -05:54:43,167 DEBUG kernel:SELinux: initialized (dev tmpfs, type tmpfs), uses transition SIDs -05:54:43,255 INFO kernel:kjournald starting. Commit interval 5 seconds -05:54:43,268 INFO kernel:EXT3-fs (dm-1): using internal journal -05:54:43,268 INFO kernel:EXT3-fs (dm-1): mounted filesystem with ordered data mode -05:54:43,268 DEBUG kernel:SELinux: initialized (dev dm-1, type ext3), uses xattr -05:54:43,657 INFO kernel:kjournald starting. Commit interval 5 seconds -05:54:43,719 INFO kernel:EXT3-fs (dm-2): using internal journal -05:54:43,719 INFO kernel:EXT3-fs (dm-2): mounted filesystem with ordered data mode -05:54:43,719 DEBUG kernel:SELinux: initialized (dev dm-2, type ext3), uses xattr -05:54:43,913 INFO kernel:kjournald starting. Commit interval 5 seconds -05:54:43,949 INFO kernel:EXT3-fs (dm-3): using internal journal -05:54:43,949 INFO kernel:EXT3-fs (dm-3): mounted filesystem with ordered data mode -05:54:43,949 DEBUG kernel:SELinux: initialized (dev dm-3, type ext3), uses xattr -05:55:08,095 DEBUG kernel:SELinux: initialized (dev usbfs, type usbfs), uses genfs_contexts -05:55:08,106 NOTICE NetworkManager: ifcfg-rh: updating /etc/sysconfig/network-scripts/ifcfg-eth3 -05:55:08,107 NOTICE NetworkManager: ifcfg-rh: updating /etc/sysconfig/network-scripts/ifcfg-eth2 -05:55:08,109 NOTICE NetworkManager: ifcfg-rh: updating /etc/sysconfig/network-scripts/ifcfg-eth1 -05:55:09,125 NOTICE NetworkManager: ifcfg-rh: updating /etc/sysconfig/network-scripts/ifcfg-eth3 -05:55:09,126 NOTICE NetworkManager: ifcfg-rh: updating /etc/sysconfig/network-scripts/ifcfg-eth2 -05:55:09,127 NOTICE NetworkManager: ifcfg-rh: updating /etc/sysconfig/network-scripts/ifcfg-eth1 -05:55:09,128 NOTICE NetworkManager: ifcfg-rh: updating /etc/sysconfig/network-scripts/ifcfg-eth0 -05:59:16,883 ERR kernel:INFO: task flush-253:0:1525 blocked for more than 120 seconds. -05:59:16,883 ERR kernel: Not tainted 2.6.32-431.el6.x86_64 #1 -05:59:16,883 ERR kernel:"echo 0 > /proc/sys/kernel/hung_task_timeout_secs" disables this message. -05:59:16,883 INFO kernel:flush-253:0 D 0000000000000000 0 1525 2 0x00000080 -05:59:16,883 WARNING kernel: ffff8800592df6e0 0000000000000046 0000000000000000 ffff880079226080 -05:59:16,883 WARNING kernel: 0000000000000001 ffff880064ed8e40 ffff880079226080 ffff880079269dd0 -05:59:16,883 WARNING kernel: ffff880079226638 ffff8800592dffd8 000000000000fbc8 ffff880079226638 -05:59:16,883 WARNING kernel:Call Trace: -05:59:16,883 WARNING kernel: [] io_schedule+0x73/0xc0 -05:59:16,883 WARNING kernel: [] get_request_wait+0x108/0x1d0 -05:59:16,883 WARNING kernel: [] ? autoremove_wake_function+0x0/0x40 -05:59:16,883 WARNING kernel: [] ? elv_merge+0x17e/0x1c0 -05:59:16,883 WARNING kernel: [] blk_queue_bio+0x99/0x620 -05:59:16,883 WARNING kernel: [] generic_make_request+0x240/0x5a0 -05:59:16,883 WARNING kernel: [] ? mempool_alloc_slab+0x15/0x20 -05:59:16,883 WARNING kernel: [] submit_bio+0x70/0x120 -05:59:16,883 WARNING kernel: [] submit_bh+0x11d/0x1f0 -05:59:16,883 WARNING kernel: [] __block_write_full_page+0x1c8/0x330 -05:59:16,883 WARNING kernel: [] ? end_buffer_async_write+0x0/0x190 -05:59:16,883 WARNING kernel: [] ? blkdev_get_block+0x0/0x20 -05:59:16,883 WARNING kernel: [] ? blkdev_get_block+0x0/0x20 -05:59:16,883 WARNING kernel: [] block_write_full_page_endio+0xe0/0x120 -05:59:16,883 WARNING kernel: [] ? find_get_pages_tag+0x40/0x130 -05:59:16,883 WARNING kernel: [] block_write_full_page+0x15/0x20 -05:59:16,883 WARNING kernel: [] blkdev_writepage+0x18/0x20 -05:59:16,883 WARNING kernel: [] __writepage+0x17/0x40 -05:59:16,883 WARNING kernel: [] write_cache_pages+0x1fd/0x4c0 -05:59:16,883 WARNING kernel: [] ? __writepage+0x0/0x40 -05:59:16,883 WARNING kernel: [] generic_writepages+0x24/0x30 -05:59:16,883 WARNING kernel: [] do_writepages+0x21/0x40 -05:59:16,883 WARNING kernel: [] writeback_single_inode+0xdd/0x290 -05:59:16,883 WARNING kernel: [] writeback_sb_inodes+0xbd/0x170 -05:59:16,883 WARNING kernel: [] writeback_inodes_wb+0xab/0x1b0 -05:59:16,883 WARNING kernel: [] wb_writeback+0x2f3/0x410 -05:59:16,883 WARNING kernel: [] ? thread_return+0x4e/0x76e -05:59:16,883 WARNING kernel: [] ? del_timer_sync+0x22/0x30 -05:59:16,883 WARNING kernel: [] wb_do_writeback+0x1a5/0x240 -05:59:16,883 WARNING kernel: [] bdi_writeback_task+0x63/0x1b0 -05:59:16,883 WARNING kernel: [] ? bit_waitqueue+0x17/0xd0 -05:59:16,883 WARNING kernel: [] ? bdi_start_fn+0x0/0x100 -05:59:16,883 WARNING kernel: [] bdi_start_fn+0x86/0x100 -05:59:16,883 WARNING kernel: [] ? bdi_start_fn+0x0/0x100 -05:59:16,883 WARNING kernel: [] kthread+0x96/0xa0 -05:59:16,883 WARNING kernel: [] child_rip+0xa/0x20 -05:59:16,883 WARNING kernel: [] ? kthread+0x0/0xa0 -05:59:16,883 WARNING kernel: [] ? child_rip+0x0/0x20 -05:59:16,883 ERR kernel:INFO: task flush-253:3:1622 blocked for more than 120 seconds. -05:59:16,883 ERR kernel: Not tainted 2.6.32-431.el6.x86_64 #1 -05:59:16,883 ERR kernel:"echo 0 > /proc/sys/kernel/hung_task_timeout_secs" disables this message. -05:59:16,883 INFO kernel:flush-253:3 D 0000000000000001 0 1622 2 0x00000080 -05:59:16,883 WARNING kernel: ffff88005a5636e0 0000000000000046 0000000000000000 ffff8800790e6ae0 -05:59:16,883 WARNING kernel: 0000000000000001 ffff8800615bc080 ffff8800790e6ae0 ffff880079269dd0 -05:59:16,883 WARNING kernel: ffff8800790e7098 ffff88005a563fd8 000000000000fbc8 ffff8800790e7098 -05:59:16,883 WARNING kernel:Call Trace: -05:59:16,883 WARNING kernel: [] io_schedule+0x73/0xc0 -05:59:16,883 WARNING kernel: [] get_request_wait+0x108/0x1d0 -05:59:16,883 WARNING kernel: [] ? autoremove_wake_function+0x0/0x40 -05:59:16,883 WARNING kernel: [] ? elv_merge+0x17e/0x1c0 -05:59:16,883 WARNING kernel: [] blk_queue_bio+0x99/0x620 -05:59:16,883 WARNING kernel: [] ? read_tsc+0x9/0x20 -05:59:16,883 WARNING kernel: [] generic_make_request+0x240/0x5a0 -05:59:16,883 WARNING kernel: [] ? mempool_alloc_slab+0x15/0x20 -05:59:16,883 WARNING kernel: [] ? __dec_zone_page_state+0x2e/0x30 -05:59:16,883 WARNING kernel: [] submit_bio+0x70/0x120 -05:59:16,883 WARNING kernel: [] submit_bh+0x11d/0x1f0 -05:59:16,883 WARNING kernel: [] __block_write_full_page+0x1c8/0x330 -05:59:16,883 WARNING kernel: [] ? end_buffer_async_write+0x0/0x190 -05:59:16,883 WARNING kernel: [] ? blkdev_get_block+0x0/0x20 -05:59:16,883 WARNING kernel: [] ? blkdev_get_block+0x0/0x20 -05:59:16,883 WARNING kernel: [] block_write_full_page_endio+0xe0/0x120 -05:59:16,883 WARNING kernel: [] ? find_get_pages_tag+0x40/0x130 -05:59:16,883 WARNING kernel: [] block_write_full_page+0x15/0x20 -05:59:16,883 WARNING kernel: [] blkdev_writepage+0x18/0x20 -05:59:16,883 WARNING kernel: [] __writepage+0x17/0x40 -05:59:16,883 WARNING kernel: [] write_cache_pages+0x1fd/0x4c0 -05:59:16,883 WARNING kernel: [] ? __writepage+0x0/0x40 -05:59:16,883 WARNING kernel: [] generic_writepages+0x24/0x30 -05:59:16,883 WARNING kernel: [] do_writepages+0x21/0x40 -05:59:16,883 WARNING kernel: [] writeback_single_inode+0xdd/0x290 -05:59:16,883 WARNING kernel: [] writeback_sb_inodes+0xbd/0x170 -05:59:16,883 WARNING kernel: [] writeback_inodes_wb+0xab/0x1b0 -05:59:16,883 WARNING kernel: [] wb_writeback+0x2f3/0x410 -05:59:16,883 WARNING kernel: [] ? thread_return+0x4e/0x76e -05:59:16,883 WARNING kernel: [] ? del_timer_sync+0x22/0x30 -05:59:16,883 WARNING kernel: [] wb_do_writeback+0x1a5/0x240 -05:59:16,883 WARNING kernel: [] bdi_writeback_task+0x63/0x1b0 -05:59:16,883 WARNING kernel: [] ? bit_waitqueue+0x17/0xd0 -05:59:16,883 WARNING kernel: [] ? bdi_start_fn+0x0/0x100 -05:59:16,883 WARNING kernel: [] bdi_start_fn+0x86/0x100 -05:59:16,883 WARNING kernel: [] ? bdi_start_fn+0x0/0x100 -05:59:16,883 WARNING kernel: [] kthread+0x96/0xa0 -05:59:16,883 WARNING kernel: [] child_rip+0xa/0x20 -05:59:16,883 WARNING kernel: [] ? kthread+0x0/0xa0 -05:59:16,883 WARNING kernel: [] ? child_rip+0x0/0x20 -06:11:26,657 DEBUG kernel:SELinux: 2048 avtab hash slots, 277800 rules. -06:11:26,705 DEBUG kernel:SELinux: 2048 avtab hash slots, 277800 rules. -06:11:27,220 DEBUG kernel:SELinux: 9 users, 12 roles, 3917 types, 217 bools, 1 sens, 1024 cats -06:11:27,220 DEBUG kernel:SELinux: 81 classes, 277800 rules diff --git a/compass/tests/actions/update_progress/data/test1/anamon/checkpoint_2/server1.1/anaconda.log.template b/compass/tests/actions/update_progress/data/test1/anamon/checkpoint_2/server1.1/anaconda.log.template deleted file mode 100644 index b6762738..00000000 --- a/compass/tests/actions/update_progress/data/test1/anamon/checkpoint_2/server1.1/anaconda.log.template +++ /dev/null @@ -1,61 +0,0 @@ -05:51:20,534 INFO : kernel command line: initrd=/images/CentOS-6.5-x86_64/initrd.img ksdevice=bootif lang= kssendmac text ks=http://10.145.88.211/cblr/svc/op/ks/system/server1.1 BOOT_IMAGE=/images/CentOS-6.5-x86_64/vmlinuz BOOTIF=01-00-0c-29-21-89-af - -05:51:20,534 INFO : text mode forced from cmdline -05:51:20,534 DEBUG : readNetInfo /tmp/s390net not found, early return -05:51:20,534 INFO : anaconda version 13.21.215 on x86_64 starting -05:51:20,656 DEBUG : Saving module ipv6 -05:51:20,656 DEBUG : Saving module iscsi_ibft -05:51:20,656 DEBUG : Saving module iscsi_boot_sysfs -05:51:20,656 DEBUG : Saving module pcspkr -05:51:20,656 DEBUG : Saving module edd -05:51:20,656 DEBUG : Saving module floppy -05:51:20,656 DEBUG : Saving module iscsi_tcp -05:51:20,656 DEBUG : Saving module libiscsi_tcp -05:51:20,656 DEBUG : Saving module libiscsi -05:51:20,656 DEBUG : Saving module scsi_transport_iscsi -05:51:20,656 DEBUG : Saving module squashfs -05:51:20,656 DEBUG : Saving module cramfs -05:51:20,656 DEBUG : probing buses -05:51:20,693 DEBUG : waiting for hardware to initialize -05:51:27,902 DEBUG : probing buses -05:51:27,925 DEBUG : waiting for hardware to initialize -05:51:47,187 INFO : getting kickstart file -05:51:47,196 INFO : eth0 has link, using it -05:51:47,208 INFO : doing kickstart... setting it up -05:51:47,208 DEBUG : activating device eth0 -05:51:52,221 INFO : wait_for_iface_activation (2502): device eth0 activated -05:51:52,222 INFO : file location: http://10.145.88.211/cblr/svc/op/ks/system/server1.1 -05:51:52,223 INFO : transferring http://10.145.88.211/cblr/svc/op/ks/system/server1.1 -05:51:52,611 INFO : setting up kickstart -05:51:52,611 INFO : kickstart forcing text mode -05:51:52,611 INFO : kickstartFromUrl -05:51:52,612 INFO : results of url ks, url http://10.145.88.211/cblr/links/CentOS-6.5-x86_64 -05:51:52,612 INFO : trying to mount CD device /dev/sr0 on /mnt/stage2 -05:51:52,616 INFO : drive status is CDS_TRAY_OPEN -05:51:52,616 ERROR : Drive tray reports open when it should be closed -05:52:07,635 INFO : no stage2= given, assuming http://10.145.88.211/cblr/links/CentOS-6.5-x86_64/images/install.img -05:52:07,636 DEBUG : going to set language to en_US.UTF-8 -05:52:07,636 INFO : setting language to en_US.UTF-8 -05:52:07,654 INFO : starting STEP_METHOD -05:52:07,654 DEBUG : loaderData->method is set, adding skipMethodDialog -05:52:07,654 DEBUG : skipMethodDialog is set -05:52:07,663 INFO : starting STEP_STAGE2 -05:52:07,663 INFO : URL_STAGE_MAIN: url is http://10.145.88.211/cblr/links/CentOS-6.5-x86_64/images/install.img -05:52:07,663 INFO : transferring http://10.145.88.211/cblr/links/CentOS-6.5-x86_64/images/updates.img -05:52:07,780 ERROR : failed to mount loopback device /dev/loop7 on /tmp/update-disk as /tmp/updates-disk.img: (null) -05:52:07,780 ERROR : Error mounting /dev/loop7 on /tmp/update-disk: No such file or directory -05:52:07,780 INFO : transferring http://10.145.88.211/cblr/links/CentOS-6.5-x86_64/images/product.img -05:52:07,814 ERROR : Error downloading http://10.145.88.211/cblr/links/CentOS-6.5-x86_64/images/product.img: HTTP response code said error -05:52:07,815 INFO : transferring http://10.145.88.211/cblr/links/CentOS-6.5-x86_64/images/install.img -05:52:47,354 INFO : mounted loopback device /mnt/runtime on /dev/loop0 as /tmp/install.img -05:52:47,354 INFO : got stage2 at url http://10.145.88.211/cblr/links/CentOS-6.5-x86_64/images/install.img -05:52:47,403 INFO : Loading SELinux policy -05:52:48,130 INFO : getting ready to spawn shell now -05:52:48,359 INFO : Running anaconda script /usr/bin/anaconda -05:52:54,804 INFO : CentOS Linux is the highest priority installclass, using it -05:52:54,867 WARNING : /usr/lib/python2.6/site-packages/pykickstart/parser.py:713: DeprecationWarning: Script does not end with %end. This syntax has been deprecated. It may be removed from future releases, which will result in a fatal error from kickstart. Please modify your kickstart file to use this updated syntax. - warnings.warn(_("%s does not end with %%end. This syntax has been deprecated. It may be removed from future releases, which will result in a fatal error from kickstart. Please modify your kickstart file to use this updated syntax.") % _("Script"), DeprecationWarning) - -05:52:54,868 INFO : Running kickstart %%pre script(s) -05:52:54,868 WARNING : '/bin/sh' specified as full path -05:52:56,966 INFO : All kickstart %%pre script(s) have been run diff --git a/compass/tests/actions/update_progress/data/test1/anamon/checkpoint_2/server1.1/sys.log.template b/compass/tests/actions/update_progress/data/test1/anamon/checkpoint_2/server1.1/sys.log.template deleted file mode 100644 index 7390276a..00000000 --- a/compass/tests/actions/update_progress/data/test1/anamon/checkpoint_2/server1.1/sys.log.template +++ /dev/null @@ -1,1726 +0,0 @@ -05:51:18,517 INFO kernel:imklog 5.8.10, log source = /proc/kmsg started. -05:51:18,517 INFO rsyslogd: [origin software="rsyslogd" swVersion="5.8.10" x-pid="68" x-info="http://www.rsyslog.com"] start -05:51:18,517 INFO kernel:Initializing cgroup subsys cpuset -05:51:18,517 INFO kernel:Initializing cgroup subsys cpu -05:51:18,517 NOTICE kernel:Linux version 2.6.32-431.el6.x86_64 (mockbuild@c6b8.bsys.dev.centos.org) (gcc version 4.4.7 20120313 (Red Hat 4.4.7-4) (GCC) ) #1 SMP Fri Nov 22 03:15:09 UTC 2013 -05:51:18,517 INFO kernel:Command line: initrd=/images/CentOS-6.5-x86_64/initrd.img ksdevice=bootif lang= kssendmac text ks=http://10.145.88.211/cblr/svc/op/ks/system/server1.1 BOOT_IMAGE=/images/CentOS-6.5-x86_64/vmlinuz BOOTIF=01-00-0c-29-21-89-af -05:51:18,517 INFO kernel:KERNEL supported cpus: -05:51:18,517 INFO kernel: Intel GenuineIntel -05:51:18,517 INFO kernel: AMD AuthenticAMD -05:51:18,517 INFO kernel: Centaur CentaurHauls -05:51:18,517 INFO kernel:Disabled fast string operations -05:51:18,517 INFO kernel:BIOS-provided physical RAM map: -05:51:18,517 INFO kernel: BIOS-e820: 0000000000000000 - 000000000009f400 (usable) -05:51:18,517 INFO kernel: BIOS-e820: 000000000009f400 - 00000000000a0000 (reserved) -05:51:18,517 INFO kernel: BIOS-e820: 00000000000ca000 - 00000000000cc000 (reserved) -05:51:18,517 INFO kernel: BIOS-e820: 00000000000dc000 - 0000000000100000 (reserved) -05:51:18,517 INFO kernel: BIOS-e820: 0000000000100000 - 000000007fef0000 (usable) -05:51:18,517 INFO kernel: BIOS-e820: 000000007fef0000 - 000000007feff000 (ACPI data) -05:51:18,517 INFO kernel: BIOS-e820: 000000007feff000 - 000000007ff00000 (ACPI NVS) -05:51:18,517 INFO kernel: BIOS-e820: 000000007ff00000 - 0000000080000000 (usable) -05:51:18,517 INFO kernel: BIOS-e820: 00000000e0000000 - 00000000f0000000 (reserved) -05:51:18,517 INFO kernel: BIOS-e820: 00000000fec00000 - 00000000fec10000 (reserved) -05:51:18,517 INFO kernel: BIOS-e820: 00000000fee00000 - 00000000fee01000 (reserved) -05:51:18,517 INFO kernel: BIOS-e820: 00000000fffe0000 - 0000000100000000 (reserved) -05:51:18,517 INFO kernel:DMI present. -05:51:18,517 WARNING kernel:SMBIOS version 2.4 @ 0xF68F0 -05:51:18,517 DEBUG kernel:DMI: VMware, Inc. VMware Virtual Platform/440BX Desktop Reference Platform, BIOS 6.00 01/07/2011 -05:51:18,517 NOTICE kernel:Phoenix BIOS detected: BIOS may corrupt low RAM, working around it. -05:51:18,517 DEBUG kernel:e820 update range: 0000000000000000 - 0000000000010000 (usable) ==> (reserved) -05:51:18,517 INFO kernel:Hypervisor detected: VMware -05:51:18,517 DEBUG kernel:e820 update range: 0000000000000000 - 0000000000001000 (usable) ==> (reserved) -05:51:18,517 DEBUG kernel:e820 remove range: 00000000000a0000 - 0000000000100000 (usable) -05:51:18,517 INFO kernel:last_pfn = 0x80000 max_arch_pfn = 0x400000000 -05:51:18,517 DEBUG kernel:MTRR default type: uncachable -05:51:18,517 DEBUG kernel:MTRR fixed ranges enabled: -05:51:18,517 DEBUG kernel: 00000-9FFFF write-back -05:51:18,517 DEBUG kernel: A0000-BFFFF uncachable -05:51:18,517 DEBUG kernel: C0000-CFFFF write-protect -05:51:18,517 DEBUG kernel: D0000-EFFFF uncachable -05:51:18,517 DEBUG kernel: F0000-FFFFF write-protect -05:51:18,517 DEBUG kernel:MTRR variable ranges enabled: -05:51:18,517 DEBUG kernel: 0 base 0000000000 mask FF80000000 write-back -05:51:18,517 DEBUG kernel: 1 disabled -05:51:18,517 DEBUG kernel: 2 disabled -05:51:18,517 DEBUG kernel: 3 disabled -05:51:18,517 DEBUG kernel: 4 disabled -05:51:18,517 DEBUG kernel: 5 disabled -05:51:18,517 DEBUG kernel: 6 disabled -05:51:18,517 DEBUG kernel: 7 disabled -05:51:18,517 INFO kernel:x86 PAT enabled: cpu 0, old 0x0, new 0x7010600070106 -05:51:18,517 DEBUG kernel:initial memory mapped : 0 - 20000000 -05:51:18,517 INFO kernel:init_memory_mapping: 0000000000000000-0000000080000000 -05:51:18,517 DEBUG kernel: 0000000000 - 0080000000 page 2M -05:51:18,517 DEBUG kernel:kernel direct mapping tables up to 80000000 @ 10000-13000 -05:51:18,517 INFO kernel:RAMDISK: 7def9000 - 7fecf4ff -05:51:18,517 WARNING kernel:ACPI: RSDP 00000000000f6940 00024 (v02 PTLTD ) -05:51:18,517 WARNING kernel:ACPI: XSDT 000000007fef0333 00054 (v01 INTEL 440BX 06040000 VMW 01324272) -05:51:18,517 WARNING kernel:ACPI: FACP 000000007fefee98 000F4 (v04 INTEL 440BX 06040000 PTL 000F4240) -05:51:18,517 WARNING kernel:ACPI: DSDT 000000007fef055d 0E93B (v01 PTLTD Custom 06040000 MSFT 03000001) -05:51:18,517 WARNING kernel:ACPI: FACS 000000007fefffc0 00040 -05:51:18,517 WARNING kernel:ACPI: BOOT 000000007fef0535 00028 (v01 PTLTD $SBFTBL$ 06040000 LTP 00000001) -05:51:18,517 WARNING kernel:ACPI: APIC 000000007fef04d7 0005E (v01 PTLTD ? APIC 06040000 LTP 00000000) -05:51:18,517 WARNING kernel:ACPI: MCFG 000000007fef049b 0003C (v01 PTLTD $PCITBL$ 06040000 LTP 00000001) -05:51:18,517 WARNING kernel:ACPI: SRAT 000000007fef03fb 000A0 (v02 VMWARE MEMPLUG 06040000 VMW 00000001) -05:51:18,517 WARNING kernel:ACPI: HPET 000000007fef03c3 00038 (v01 VMWARE VMW HPET 06040000 WMV 00000001) -05:51:18,517 DEBUG kernel:ACPI: Local APIC address 0xfee00000 -05:51:18,517 INFO kernel:Setting APIC routing to flat. -05:51:18,517 INFO kernel:SRAT: PXM 0 -> APIC 0 -> Node 0 -05:51:18,517 INFO kernel:SRAT: PXM 0 -> APIC 1 -> Node 0 -05:51:18,517 INFO kernel:SRAT: Node 0 PXM 0 0-a0000 -05:51:18,517 INFO kernel:SRAT: Node 0 PXM 0 100000-80000000 -05:51:18,517 DEBUG kernel:NUMA: Allocated memnodemap from 11000 - 12040 -05:51:18,517 DEBUG kernel:NUMA: Using 20 for the hash shift. -05:51:18,517 INFO kernel:Bootmem setup node 0 0000000000000000-0000000080000000 -05:51:18,517 INFO kernel: NODE_DATA [0000000000012040 - 000000000004603f] -05:51:18,517 INFO kernel: bootmap [0000000000047000 - 0000000000056fff] pages 10 -05:51:18,517 INFO kernel:(8 early reservations) ==> bootmem [0000000000 - 0080000000] -05:51:18,517 INFO kernel: #0 [0000000000 - 0000001000] BIOS data page ==> [0000000000 - 0000001000] -05:51:18,517 INFO kernel: #1 [0000006000 - 0000008000] TRAMPOLINE ==> [0000006000 - 0000008000] -05:51:18,517 INFO kernel: #2 [0001000000 - 000201faa4] TEXT DATA BSS ==> [0001000000 - 000201faa4] -05:51:18,517 INFO kernel: #3 [007def9000 - 007fecf4ff] RAMDISK ==> [007def9000 - 007fecf4ff] -05:51:18,517 INFO kernel: #4 [000009f400 - 0000100000] BIOS reserved ==> [000009f400 - 0000100000] -05:51:18,517 INFO kernel: #5 [0002020000 - 00020201f0] BRK ==> [0002020000 - 00020201f0] -05:51:18,517 INFO kernel: #6 [0000010000 - 0000011000] PGTABLE ==> [0000010000 - 0000011000] -05:51:18,517 INFO kernel: #7 [0000011000 - 0000012040] MEMNODEMAP ==> [0000011000 - 0000012040] -05:51:18,517 INFO kernel:found SMP MP-table at [ffff8800000f69b0] f69b0 -05:51:18,517 DEBUG kernel: [ffffea0000000000-ffffea0001bfffff] PMD -> [ffff880002600000-ffff8800041fffff] on node 0 -05:51:18,517 WARNING kernel:Zone PFN ranges: -05:51:18,517 WARNING kernel: DMA 0x00000010 -> 0x00001000 -05:51:18,517 WARNING kernel: DMA32 0x00001000 -> 0x00100000 -05:51:18,517 WARNING kernel: Normal 0x00100000 -> 0x00100000 -05:51:18,517 WARNING kernel:Movable zone start PFN for each node -05:51:18,517 WARNING kernel:early_node_map[3] active PFN ranges -05:51:18,517 WARNING kernel: 0: 0x00000010 -> 0x0000009f -05:51:18,517 WARNING kernel: 0: 0x00000100 -> 0x0007fef0 -05:51:18,517 WARNING kernel: 0: 0x0007ff00 -> 0x00080000 -05:51:18,517 DEBUG kernel:On node 0 totalpages: 524159 -05:51:18,517 DEBUG kernel: DMA zone: 56 pages used for memmap -05:51:18,517 DEBUG kernel: DMA zone: 101 pages reserved -05:51:18,517 DEBUG kernel: DMA zone: 3826 pages, LIFO batch:0 -05:51:18,517 DEBUG kernel: DMA32 zone: 7112 pages used for memmap -05:51:18,517 DEBUG kernel: DMA32 zone: 513064 pages, LIFO batch:31 -05:51:18,517 INFO kernel:ACPI: PM-Timer IO Port: 0x1008 -05:51:18,517 DEBUG kernel:ACPI: Local APIC address 0xfee00000 -05:51:18,517 INFO kernel:Setting APIC routing to flat. -05:51:18,517 INFO kernel:ACPI: LAPIC (acpi_id[0x00] lapic_id[0x00] enabled) -05:51:18,517 INFO kernel:ACPI: LAPIC (acpi_id[0x01] lapic_id[0x01] enabled) -05:51:18,517 INFO kernel:ACPI: LAPIC_NMI (acpi_id[0x00] high edge lint[0x1]) -05:51:18,517 INFO kernel:ACPI: LAPIC_NMI (acpi_id[0x01] high edge lint[0x1]) -05:51:18,517 INFO kernel:ACPI: IOAPIC (id[0x02] address[0xfec00000] gsi_base[0]) -05:51:18,518 INFO kernel:IOAPIC[0]: apic_id 2, version 17, address 0xfec00000, GSI 0-23 -05:51:18,518 INFO kernel:ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 high edge) -05:51:18,518 DEBUG kernel:ACPI: IRQ0 used by override. -05:51:18,518 DEBUG kernel:ACPI: IRQ2 used by override. -05:51:18,518 DEBUG kernel:ACPI: IRQ9 used by override. -05:51:18,518 INFO kernel:Using ACPI (MADT) for SMP configuration information -05:51:18,518 INFO kernel:ACPI: HPET id: 0x8086af01 base: 0xfed00000 -05:51:18,518 INFO kernel:SMP: Allowing 2 CPUs, 0 hotplug CPUs -05:51:18,518 DEBUG kernel:nr_irqs_gsi: 24 -05:51:18,518 INFO kernel:PM: Registered nosave memory: 000000000009f000 - 00000000000a0000 -05:51:18,518 INFO kernel:PM: Registered nosave memory: 00000000000a0000 - 00000000000ca000 -05:51:18,518 INFO kernel:PM: Registered nosave memory: 00000000000ca000 - 00000000000cc000 -05:51:18,518 INFO kernel:PM: Registered nosave memory: 00000000000cc000 - 00000000000dc000 -05:51:18,518 INFO kernel:PM: Registered nosave memory: 00000000000dc000 - 0000000000100000 -05:51:18,518 INFO kernel:PM: Registered nosave memory: 000000007fef0000 - 000000007feff000 -05:51:18,518 INFO kernel:PM: Registered nosave memory: 000000007feff000 - 000000007ff00000 -05:51:18,518 INFO kernel:Allocating PCI resources starting at 80000000 (gap: 80000000:60000000) -05:51:18,518 INFO kernel:Booting paravirtualized kernel on bare hardware -05:51:18,518 INFO kernel:NR_CPUS:4096 nr_cpumask_bits:2 nr_cpu_ids:2 nr_node_ids:1 -05:51:18,518 INFO kernel:PERCPU: Embedded 31 pages/cpu @ffff880002200000 s94872 r8192 d23912 u1048576 -05:51:18,518 INFO kernel:pcpu-alloc: s94872 r8192 d23912 u1048576 alloc=1*2097152 -05:51:18,518 INFO kernel:pcpu-alloc: [0] 0 1 -05:51:18,518 WARNING kernel:Built 1 zonelists in Node order, mobility grouping on. Total pages: 516890 -05:51:18,520 WARNING kernel:Policy zone: DMA32 -05:51:18,520 NOTICE kernel:Kernel command line: initrd=/images/CentOS-6.5-x86_64/initrd.img ksdevice=bootif lang= kssendmac text ks=http://10.145.88.211/cblr/svc/op/ks/system/server1.1 BOOT_IMAGE=/images/CentOS-6.5-x86_64/vmlinuz BOOTIF=01-00-0c-29-21-89-af -05:51:18,520 INFO kernel:PID hash table entries: 4096 (order: 3, 32768 bytes) -05:51:18,520 INFO kernel:Checking aperture... -05:51:18,520 INFO kernel:No AGP bridge found -05:51:18,520 INFO kernel:Memory: 2018096k/2097152k available (5325k kernel code, 516k absent, 78540k reserved, 7013k data, 1276k init) -05:51:18,520 INFO kernel:Hierarchical RCU implementation. -05:51:18,520 INFO kernel:NR_IRQS:33024 nr_irqs:424 -05:51:18,520 INFO kernel:Extended CMOS year: 2000 -05:51:18,520 WARNING kernel:Console: colour VGA+ 80x25 -05:51:18,520 INFO kernel:console [tty0] enabled -05:51:18,520 INFO kernel:allocated 8388608 bytes of page_cgroup -05:51:18,520 INFO kernel:please try 'cgroup_disable=memory' option if you don't want memory cgroups -05:51:18,520 DEBUG kernel:hpet clockevent registered -05:51:18,520 INFO kernel:TSC freq read from hypervisor : 2400.085 MHz -05:51:18,520 WARNING kernel:Detected 2400.085 MHz processor. -05:51:18,520 INFO kernel:Calibrating delay loop (skipped) preset value.. 4800.17 BogoMIPS (lpj=2400085) -05:51:18,520 INFO kernel:pid_max: default: 32768 minimum: 301 -05:51:18,520 INFO kernel:Security Framework initialized -05:51:18,520 INFO kernel:SELinux: Initializing. -05:51:18,520 DEBUG kernel:SELinux: Starting in permissive mode -05:51:18,520 INFO kernel:Dentry cache hash table entries: 262144 (order: 9, 2097152 bytes) -05:51:18,520 INFO kernel:Inode-cache hash table entries: 131072 (order: 8, 1048576 bytes) -05:51:18,520 WARNING kernel:Mount-cache hash table entries: 256 -05:51:18,520 INFO kernel:Initializing cgroup subsys ns -05:51:18,520 INFO kernel:Initializing cgroup subsys cpuacct -05:51:18,520 INFO kernel:Initializing cgroup subsys memory -05:51:18,520 INFO kernel:Initializing cgroup subsys devices -05:51:18,520 INFO kernel:Initializing cgroup subsys freezer -05:51:18,520 INFO kernel:Initializing cgroup subsys net_cls -05:51:18,520 INFO kernel:Initializing cgroup subsys blkio -05:51:18,520 INFO kernel:Initializing cgroup subsys perf_event -05:51:18,520 INFO kernel:Initializing cgroup subsys net_prio -05:51:18,520 INFO kernel:Disabled fast string operations -05:51:18,520 INFO kernel:CPU: Physical Processor ID: 0 -05:51:18,520 INFO kernel:mce: CPU supports 0 MCE banks -05:51:18,520 INFO kernel:alternatives: switching to unfair spinlock -05:51:18,520 INFO kernel:ACPI: Core revision 20090903 -05:51:18,520 INFO kernel:ftrace: converting mcount calls to 0f 1f 44 00 00 -05:51:18,520 INFO kernel:ftrace: allocating 21769 entries in 86 pages -05:51:18,520 INFO kernel:APIC routing finalized to flat. -05:51:18,520 INFO kernel:..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1 -05:51:18,520 INFO kernel:CPU0: Intel(R) Xeon(R) CPU E5620 @ 2.40GHz stepping 02 -05:51:18,520 INFO kernel:Performance Events: 16-deep LBR, Westmere events, Intel PMU driver. -05:51:18,520 WARNING kernel:CPUID marked event: 'cpu cycles' unavailable -05:51:18,520 WARNING kernel:CPUID marked event: 'instructions' unavailable -05:51:18,520 WARNING kernel:CPUID marked event: 'bus cycles' unavailable -05:51:18,520 WARNING kernel:CPUID marked event: 'cache references' unavailable -05:51:18,520 WARNING kernel:CPUID marked event: 'cache misses' unavailable -05:51:18,520 WARNING kernel:CPUID marked event: 'branch instructions' unavailable -05:51:18,520 WARNING kernel:CPUID marked event: 'branch misses' unavailable -05:51:18,520 INFO kernel:... version: 3 -05:51:18,520 INFO kernel:... bit width: 48 -05:51:18,520 INFO kernel:... generic registers: 4 -05:51:18,520 INFO kernel:... value mask: 0000ffffffffffff -05:51:18,520 INFO kernel:... max period: 000000007fffffff -05:51:18,520 INFO kernel:... fixed-purpose events: 3 -05:51:18,520 INFO kernel:... event mask: 000000070000000f -05:51:18,520 WARNING kernel:NMI watchdog disabled (cpu0): hardware events not enabled -05:51:18,520 INFO kernel:Booting Node 0, Processors #1 Ok. -05:51:18,520 INFO kernel:Disabled fast string operations -05:51:18,520 INFO kernel:mce: CPU supports 0 MCE banks -05:51:18,520 INFO kernel:Skipped synchronization checks as TSC is reliable. -05:51:18,520 INFO kernel:Brought up 2 CPUs -05:51:18,520 INFO kernel:Total of 2 processors activated (9600.34 BogoMIPS). -05:51:18,520 INFO kernel:x86 PAT enabled: cpu 0, old 0x0, new 0x7010600070106 -05:51:18,520 INFO kernel:x86 PAT enabled: cpu 1, old 0x0, new 0x7010600070106 -05:51:18,520 DEBUG kernel:sizeof(vma)=200 bytes -05:51:18,520 DEBUG kernel:sizeof(page)=56 bytes -05:51:18,520 DEBUG kernel:sizeof(inode)=592 bytes -05:51:18,520 DEBUG kernel:sizeof(dentry)=192 bytes -05:51:18,520 DEBUG kernel:sizeof(ext3inode)=800 bytes -05:51:18,520 DEBUG kernel:sizeof(buffer_head)=104 bytes -05:51:18,520 DEBUG kernel:sizeof(skbuff)=232 bytes -05:51:18,520 DEBUG kernel:sizeof(task_struct)=2648 bytes -05:51:18,520 INFO kernel:devtmpfs: initialized -05:51:18,520 INFO kernel:PM: Registering ACPI NVS region at 7feff000 (4096 bytes) -05:51:18,520 INFO kernel:regulator: core version 0.5 -05:51:18,520 INFO kernel:NET: Registered protocol family 16 -05:51:18,520 INFO kernel:ACPI: bus type pci registered -05:51:18,520 NOTICE kernel:PCI: MCFG configuration 0: base e0000000 segment 0 buses 0 - 255 -05:51:18,520 NOTICE kernel:PCI: MCFG area at e0000000 reserved in E820 -05:51:18,520 INFO kernel:PCI: Using MMCONFIG at e0000000 - efffffff -05:51:18,520 INFO kernel:PCI: Using configuration type 1 for base access -05:51:18,520 WARNING kernel:bio: create slab at 0 -05:51:18,520 DEBUG kernel:ACPI: EC: Look up EC in DSDT -05:51:18,520 NOTICE kernel:ACPI: BIOS _OSI(Linux) query ignored -05:51:18,520 INFO kernel:ACPI: Interpreter enabled -05:51:18,520 INFO kernel:ACPI: (supports S0 S1 S4 S5) -05:51:18,520 INFO kernel:ACPI: Using IOAPIC for interrupt routing -05:51:18,520 INFO kernel:ACPI: No dock devices found. -05:51:18,520 INFO kernel:PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug -05:51:18,520 INFO kernel:ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-ff]) -05:51:18,520 INFO kernel:pci_root PNP0A03:00: host bridge window [mem 0x000a0000-0x000bffff] -05:51:18,520 INFO kernel:pci_root PNP0A03:00: host bridge window [mem 0x000d0000-0x000d3fff] -05:51:18,520 INFO kernel:pci_root PNP0A03:00: host bridge window [mem 0x000d4000-0x000d7fff] -05:51:18,520 INFO kernel:pci_root PNP0A03:00: host bridge window [mem 0x000d8000-0x000dbfff] -05:51:18,520 INFO kernel:pci_root PNP0A03:00: host bridge window [mem 0x80000000-0xfebfffff] -05:51:18,520 INFO kernel:pci_root PNP0A03:00: host bridge window [io 0x0000-0x0cf7] -05:51:18,520 INFO kernel:pci_root PNP0A03:00: host bridge window [io 0x0d00-0xfeff] -05:51:18,520 INFO kernel:PCI host bridge to bus 0000:00 -05:51:18,520 INFO kernel:pci_bus 0000:00: root bus resource [mem 0x000a0000-0x000bffff] -05:51:18,520 INFO kernel:pci_bus 0000:00: root bus resource [mem 0x000d0000-0x000d3fff] -05:51:18,520 INFO kernel:pci_bus 0000:00: root bus resource [mem 0x000d4000-0x000d7fff] -05:51:18,520 INFO kernel:pci_bus 0000:00: root bus resource [mem 0x000d8000-0x000dbfff] -05:51:18,520 INFO kernel:pci_bus 0000:00: root bus resource [mem 0x80000000-0xfebfffff] -05:51:18,520 INFO kernel:pci_bus 0000:00: root bus resource [io 0x0000-0x0cf7] -05:51:18,520 INFO kernel:pci_bus 0000:00: root bus resource [io 0x0d00-0xfeff] -05:51:18,520 DEBUG kernel:pci 0000:00:07.1: reg 20: [io 0x10c0-0x10cf] -05:51:18,520 INFO kernel:pci 0000:00:07.3: quirk: [io 0x1000-0x103f] claimed by PIIX4 ACPI -05:51:18,520 INFO kernel:pci 0000:00:07.3: quirk: [io 0x1040-0x104f] claimed by PIIX4 SMB -05:51:18,520 DEBUG kernel:pci 0000:00:07.7: reg 10: [io 0x1080-0x10bf] -05:51:18,520 DEBUG kernel:pci 0000:00:07.7: reg 14: [mem 0xd0000000-0xd0001fff 64bit] -05:51:18,520 DEBUG kernel:pci 0000:00:0f.0: reg 10: [io 0x10d0-0x10df] -05:51:18,520 DEBUG kernel:pci 0000:00:0f.0: reg 14: [mem 0xd8000000-0xdbffffff pref] -05:51:18,520 DEBUG kernel:pci 0000:00:0f.0: reg 18: [mem 0xd0800000-0xd0ffffff] -05:51:18,520 DEBUG kernel:pci 0000:00:0f.0: reg 30: [mem 0x00000000-0x00007fff pref] -05:51:18,520 DEBUG kernel:pci 0000:00:10.0: reg 10: [io 0x1400-0x14ff] -05:51:18,520 DEBUG kernel:pci 0000:00:10.0: reg 14: [mem 0xd0040000-0xd005ffff 64bit] -05:51:18,520 DEBUG kernel:pci 0000:00:10.0: reg 1c: [mem 0xd0020000-0xd003ffff 64bit] -05:51:18,520 DEBUG kernel:pci 0000:00:10.0: reg 30: [mem 0x00000000-0x00003fff pref] -05:51:18,520 INFO kernel:pci 0000:00:15.0: PME# supported from D0 D3hot D3cold -05:51:18,520 INFO kernel:pci 0000:00:15.0: PME# disabled -05:51:18,520 INFO kernel:pci 0000:00:15.1: PME# supported from D0 D3hot D3cold -05:51:18,520 INFO kernel:pci 0000:00:15.1: PME# disabled -05:51:18,520 INFO kernel:pci 0000:00:15.2: PME# supported from D0 D3hot D3cold -05:51:18,520 INFO kernel:pci 0000:00:15.2: PME# disabled -05:51:18,520 INFO kernel:pci 0000:00:15.3: PME# supported from D0 D3hot D3cold -05:51:18,520 INFO kernel:pci 0000:00:15.3: PME# disabled -05:51:18,520 INFO kernel:pci 0000:00:15.4: PME# supported from D0 D3hot D3cold -05:51:18,520 INFO kernel:pci 0000:00:15.4: PME# disabled -05:51:18,520 INFO kernel:pci 0000:00:15.5: PME# supported from D0 D3hot D3cold -05:51:18,520 INFO kernel:pci 0000:00:15.5: PME# disabled -05:51:18,520 INFO kernel:pci 0000:00:15.6: PME# supported from D0 D3hot D3cold -05:51:18,520 INFO kernel:pci 0000:00:15.6: PME# disabled -05:51:18,520 INFO kernel:pci 0000:00:15.7: PME# supported from D0 D3hot D3cold -05:51:18,520 INFO kernel:pci 0000:00:15.7: PME# disabled -05:51:18,520 INFO kernel:pci 0000:00:16.0: PME# supported from D0 D3hot D3cold -05:51:18,520 INFO kernel:pci 0000:00:16.0: PME# disabled -05:51:18,520 INFO kernel:pci 0000:00:16.1: PME# supported from D0 D3hot D3cold -05:51:18,520 INFO kernel:pci 0000:00:16.1: PME# disabled -05:51:18,520 INFO kernel:pci 0000:00:16.2: PME# supported from D0 D3hot D3cold -05:51:18,520 INFO kernel:pci 0000:00:16.2: PME# disabled -05:51:18,520 INFO kernel:pci 0000:00:16.3: PME# supported from D0 D3hot D3cold -05:51:18,520 INFO kernel:pci 0000:00:16.3: PME# disabled -05:51:18,520 INFO kernel:pci 0000:00:16.4: PME# supported from D0 D3hot D3cold -05:51:18,520 INFO kernel:pci 0000:00:16.4: PME# disabled -05:51:18,520 INFO kernel:pci 0000:00:16.5: PME# supported from D0 D3hot D3cold -05:51:18,520 INFO kernel:pci 0000:00:16.5: PME# disabled -05:51:18,520 INFO kernel:pci 0000:00:16.6: PME# supported from D0 D3hot D3cold -05:51:18,520 INFO kernel:pci 0000:00:16.6: PME# disabled -05:51:18,520 INFO kernel:pci 0000:00:16.7: PME# supported from D0 D3hot D3cold -05:51:18,520 INFO kernel:pci 0000:00:16.7: PME# disabled -05:51:18,520 INFO kernel:pci 0000:00:17.0: PME# supported from D0 D3hot D3cold -05:51:18,520 INFO kernel:pci 0000:00:17.0: PME# disabled -05:51:18,520 INFO kernel:pci 0000:00:17.1: PME# supported from D0 D3hot D3cold -05:51:18,520 INFO kernel:pci 0000:00:17.1: PME# disabled -05:51:18,520 INFO kernel:pci 0000:00:17.2: PME# supported from D0 D3hot D3cold -05:51:18,520 INFO kernel:pci 0000:00:17.2: PME# disabled -05:51:18,520 INFO kernel:pci 0000:00:17.3: PME# supported from D0 D3hot D3cold -05:51:18,520 INFO kernel:pci 0000:00:17.3: PME# disabled -05:51:18,520 INFO kernel:pci 0000:00:17.4: PME# supported from D0 D3hot D3cold -05:51:18,520 INFO kernel:pci 0000:00:17.4: PME# disabled -05:51:18,520 INFO kernel:pci 0000:00:17.5: PME# supported from D0 D3hot D3cold -05:51:18,520 INFO kernel:pci 0000:00:17.5: PME# disabled -05:51:18,520 INFO kernel:pci 0000:00:17.6: PME# supported from D0 D3hot D3cold -05:51:18,520 INFO kernel:pci 0000:00:17.6: PME# disabled -05:51:18,520 INFO kernel:pci 0000:00:17.7: PME# supported from D0 D3hot D3cold -05:51:18,520 INFO kernel:pci 0000:00:17.7: PME# disabled -05:51:18,520 INFO kernel:pci 0000:00:18.0: PME# supported from D0 D3hot D3cold -05:51:18,520 INFO kernel:pci 0000:00:18.0: PME# disabled -05:51:18,520 INFO kernel:pci 0000:00:18.1: PME# supported from D0 D3hot D3cold -05:51:18,520 INFO kernel:pci 0000:00:18.1: PME# disabled -05:51:18,520 INFO kernel:pci 0000:00:18.2: PME# supported from D0 D3hot D3cold -05:51:18,520 INFO kernel:pci 0000:00:18.2: PME# disabled -05:51:18,520 INFO kernel:pci 0000:00:18.3: PME# supported from D0 D3hot D3cold -05:51:18,520 INFO kernel:pci 0000:00:18.3: PME# disabled -05:51:18,520 INFO kernel:pci 0000:00:18.4: PME# supported from D0 D3hot D3cold -05:51:18,520 INFO kernel:pci 0000:00:18.4: PME# disabled -05:51:18,520 INFO kernel:pci 0000:00:18.5: PME# supported from D0 D3hot D3cold -05:51:18,520 INFO kernel:pci 0000:00:18.5: PME# disabled -05:51:18,520 INFO kernel:pci 0000:00:18.6: PME# supported from D0 D3hot D3cold -05:51:18,520 INFO kernel:pci 0000:00:18.6: PME# disabled -05:51:18,520 INFO kernel:pci 0000:00:18.7: PME# supported from D0 D3hot D3cold -05:51:18,520 INFO kernel:pci 0000:00:18.7: PME# disabled -05:51:18,520 INFO kernel:pci 0000:00:01.0: PCI bridge to [bus 01-01] -05:51:18,520 DEBUG kernel:pci 0000:00:01.0: bridge window [io 0xf000-0x0000] (disabled) -05:51:18,520 DEBUG kernel:pci 0000:00:01.0: bridge window [mem 0xfff00000-0x000fffff] (disabled) -05:51:18,520 DEBUG kernel:pci 0000:00:01.0: bridge window [mem 0xfff00000-0x000fffff pref] (disabled) -05:51:18,520 DEBUG kernel:pci 0000:02:00.0: reg 10: [mem 0xd1020000-0xd103ffff 64bit] -05:51:18,520 DEBUG kernel:pci 0000:02:00.0: reg 18: [mem 0xd1000000-0xd100ffff 64bit] -05:51:18,520 DEBUG kernel:pci 0000:02:00.0: reg 20: [io 0x2000-0x203f] -05:51:18,520 DEBUG kernel:pci 0000:02:00.0: reg 30: [mem 0x00000000-0x0000ffff pref] -05:51:18,520 INFO kernel:pci 0000:02:00.0: PME# supported from D0 D3hot D3cold -05:51:18,520 INFO kernel:pci 0000:02:00.0: PME# disabled -05:51:18,520 DEBUG kernel:pci 0000:02:01.0: reg 10: [mem 0xd1040000-0xd105ffff 64bit] -05:51:18,520 DEBUG kernel:pci 0000:02:01.0: reg 18: [mem 0xd1010000-0xd101ffff 64bit] -05:51:18,520 DEBUG kernel:pci 0000:02:01.0: reg 20: [io 0x2040-0x207f] -05:51:18,520 DEBUG kernel:pci 0000:02:01.0: reg 30: [mem 0x00000000-0x0000ffff pref] -05:51:18,520 INFO kernel:pci 0000:02:01.0: PME# supported from D0 D3hot D3cold -05:51:18,520 INFO kernel:pci 0000:02:01.0: PME# disabled -05:51:18,520 DEBUG kernel:pci 0000:02:02.0: reg 10: [mem 0xd1080000-0xd109ffff 64bit] -05:51:18,520 DEBUG kernel:pci 0000:02:02.0: reg 18: [mem 0xd1060000-0xd106ffff 64bit] -05:51:18,520 DEBUG kernel:pci 0000:02:02.0: reg 20: [io 0x2080-0x20bf] -05:51:18,520 DEBUG kernel:pci 0000:02:02.0: reg 30: [mem 0x00000000-0x0000ffff pref] -05:51:18,520 INFO kernel:pci 0000:02:02.0: PME# supported from D0 D3hot D3cold -05:51:18,520 INFO kernel:pci 0000:02:02.0: PME# disabled -05:51:18,520 DEBUG kernel:pci 0000:02:03.0: reg 10: [mem 0xd10a0000-0xd10bffff 64bit] -05:51:18,520 DEBUG kernel:pci 0000:02:03.0: reg 18: [mem 0xd1070000-0xd107ffff 64bit] -05:51:18,520 DEBUG kernel:pci 0000:02:03.0: reg 20: [io 0x20c0-0x20ff] -05:51:18,520 DEBUG kernel:pci 0000:02:03.0: reg 30: [mem 0x00000000-0x0000ffff pref] -05:51:18,520 INFO kernel:pci 0000:02:03.0: PME# supported from D0 D3hot D3cold -05:51:18,520 INFO kernel:pci 0000:02:03.0: PME# disabled -05:51:18,520 INFO kernel:pci 0000:00:11.0: PCI bridge to [bus 02-02] (subtractive decode) -05:51:18,520 DEBUG kernel:pci 0000:00:11.0: bridge window [io 0x2000-0x3fff] -05:51:18,520 DEBUG kernel:pci 0000:00:11.0: bridge window [mem 0xd1000000-0xd23fffff] -05:51:18,520 DEBUG kernel:pci 0000:00:11.0: bridge window [mem 0xdc400000-0xdc9fffff 64bit pref] -05:51:18,520 DEBUG kernel:pci 0000:00:11.0: bridge window [mem 0x000a0000-0x000bffff] (subtractive decode) -05:51:18,520 DEBUG kernel:pci 0000:00:11.0: bridge window [mem 0x000d0000-0x000d3fff] (subtractive decode) -05:51:18,520 DEBUG kernel:pci 0000:00:11.0: bridge window [mem 0x000d4000-0x000d7fff] (subtractive decode) -05:51:18,520 DEBUG kernel:pci 0000:00:11.0: bridge window [mem 0x000d8000-0x000dbfff] (subtractive decode) -05:51:18,520 DEBUG kernel:pci 0000:00:11.0: bridge window [mem 0x80000000-0xfebfffff] (subtractive decode) -05:51:18,520 DEBUG kernel:pci 0000:00:11.0: bridge window [io 0x0000-0x0cf7] (subtractive decode) -05:51:18,520 DEBUG kernel:pci 0000:00:11.0: bridge window [io 0x0d00-0xfeff] (subtractive decode) -05:51:18,520 INFO kernel:pci 0000:00:15.0: PCI bridge to [bus 03-03] -05:51:18,520 DEBUG kernel:pci 0000:00:15.0: bridge window [io 0x4000-0x4fff] -05:51:18,520 DEBUG kernel:pci 0000:00:15.0: bridge window [mem 0xd2400000-0xd24fffff] -05:51:18,520 DEBUG kernel:pci 0000:00:15.0: bridge window [mem 0xd4400000-0xd44fffff 64bit pref] -05:51:18,520 INFO kernel:pci 0000:00:15.1: PCI bridge to [bus 04-04] -05:51:18,520 DEBUG kernel:pci 0000:00:15.1: bridge window [io 0x8000-0x8fff] -05:51:18,520 DEBUG kernel:pci 0000:00:15.1: bridge window [mem 0xd2800000-0xd28fffff] -05:51:18,520 DEBUG kernel:pci 0000:00:15.1: bridge window [mem 0xd4800000-0xd48fffff 64bit pref] -05:51:18,520 INFO kernel:pci 0000:00:15.2: PCI bridge to [bus 05-05] -05:51:18,520 DEBUG kernel:pci 0000:00:15.2: bridge window [io 0xc000-0xcfff] -05:51:18,520 DEBUG kernel:pci 0000:00:15.2: bridge window [mem 0xd2c00000-0xd2cfffff] -05:51:18,520 DEBUG kernel:pci 0000:00:15.2: bridge window [mem 0xdcb00000-0xdcbfffff 64bit pref] -05:51:18,520 INFO kernel:pci 0000:00:15.3: PCI bridge to [bus 06-06] -05:51:18,520 DEBUG kernel:pci 0000:00:15.3: bridge window [io 0xf000-0x0000] (disabled) -05:51:18,520 DEBUG kernel:pci 0000:00:15.3: bridge window [mem 0xd3000000-0xd30fffff] -05:51:18,520 DEBUG kernel:pci 0000:00:15.3: bridge window [mem 0xdcd00000-0xdcdfffff 64bit pref] -05:51:18,520 INFO kernel:pci 0000:00:15.4: PCI bridge to [bus 07-07] -05:51:18,520 DEBUG kernel:pci 0000:00:15.4: bridge window [io 0xf000-0x0000] (disabled) -05:51:18,520 DEBUG kernel:pci 0000:00:15.4: bridge window [mem 0xd3400000-0xd34fffff] -05:51:18,520 DEBUG kernel:pci 0000:00:15.4: bridge window [mem 0xdcf00000-0xdcffffff 64bit pref] -05:51:18,520 INFO kernel:pci 0000:00:15.5: PCI bridge to [bus 08-08] -05:51:18,520 DEBUG kernel:pci 0000:00:15.5: bridge window [io 0xf000-0x0000] (disabled) -05:51:18,520 DEBUG kernel:pci 0000:00:15.5: bridge window [mem 0xd3800000-0xd38fffff] -05:51:18,520 DEBUG kernel:pci 0000:00:15.5: bridge window [mem 0xdd100000-0xdd1fffff 64bit pref] -05:51:18,520 INFO kernel:pci 0000:00:15.6: PCI bridge to [bus 09-09] -05:51:18,520 DEBUG kernel:pci 0000:00:15.6: bridge window [io 0xf000-0x0000] (disabled) -05:51:18,520 DEBUG kernel:pci 0000:00:15.6: bridge window [mem 0xd3c00000-0xd3cfffff] -05:51:18,520 DEBUG kernel:pci 0000:00:15.6: bridge window [mem 0xdd300000-0xdd3fffff 64bit pref] -05:51:18,520 INFO kernel:pci 0000:00:15.7: PCI bridge to [bus 0a-0a] -05:51:18,520 DEBUG kernel:pci 0000:00:15.7: bridge window [io 0xf000-0x0000] (disabled) -05:51:18,520 DEBUG kernel:pci 0000:00:15.7: bridge window [mem 0xd4000000-0xd40fffff] -05:51:18,520 DEBUG kernel:pci 0000:00:15.7: bridge window [mem 0xdd500000-0xdd5fffff 64bit pref] -05:51:18,520 INFO kernel:pci 0000:00:16.0: PCI bridge to [bus 0b-0b] -05:51:18,520 DEBUG kernel:pci 0000:00:16.0: bridge window [io 0x5000-0x5fff] -05:51:18,520 DEBUG kernel:pci 0000:00:16.0: bridge window [mem 0xd2500000-0xd25fffff] -05:51:18,520 DEBUG kernel:pci 0000:00:16.0: bridge window [mem 0xd4500000-0xd45fffff 64bit pref] -05:51:18,521 INFO kernel:pci 0000:00:16.1: PCI bridge to [bus 0c-0c] -05:51:18,521 DEBUG kernel:pci 0000:00:16.1: bridge window [io 0x9000-0x9fff] -05:51:18,521 DEBUG kernel:pci 0000:00:16.1: bridge window [mem 0xd2900000-0xd29fffff] -05:51:18,521 DEBUG kernel:pci 0000:00:16.1: bridge window [mem 0xd4900000-0xd49fffff 64bit pref] -05:51:18,521 INFO kernel:pci 0000:00:16.2: PCI bridge to [bus 0d-0d] -05:51:18,521 DEBUG kernel:pci 0000:00:16.2: bridge window [io 0xd000-0xdfff] -05:51:18,521 DEBUG kernel:pci 0000:00:16.2: bridge window [mem 0xd2d00000-0xd2dfffff] -05:51:18,521 DEBUG kernel:pci 0000:00:16.2: bridge window [mem 0xd4b00000-0xd4bfffff 64bit pref] -05:51:18,521 INFO kernel:pci 0000:00:16.3: PCI bridge to [bus 0e-0e] -05:51:18,521 DEBUG kernel:pci 0000:00:16.3: bridge window [io 0xf000-0x0000] (disabled) -05:51:18,521 DEBUG kernel:pci 0000:00:16.3: bridge window [mem 0xd3100000-0xd31fffff] -05:51:18,521 DEBUG kernel:pci 0000:00:16.3: bridge window [mem 0xd4d00000-0xd4dfffff 64bit pref] -05:51:18,521 INFO kernel:pci 0000:00:16.4: PCI bridge to [bus 0f-0f] -05:51:18,521 DEBUG kernel:pci 0000:00:16.4: bridge window [io 0xf000-0x0000] (disabled) -05:51:18,521 DEBUG kernel:pci 0000:00:16.4: bridge window [mem 0xd3500000-0xd35fffff] -05:51:18,521 DEBUG kernel:pci 0000:00:16.4: bridge window [mem 0xd4f00000-0xd4ffffff 64bit pref] -05:51:18,521 INFO kernel:pci 0000:00:16.5: PCI bridge to [bus 10-10] -05:51:18,521 DEBUG kernel:pci 0000:00:16.5: bridge window [io 0xf000-0x0000] (disabled) -05:51:18,521 DEBUG kernel:pci 0000:00:16.5: bridge window [mem 0xd3900000-0xd39fffff] -05:51:18,521 DEBUG kernel:pci 0000:00:16.5: bridge window [mem 0xd5100000-0xd51fffff 64bit pref] -05:51:18,521 INFO kernel:pci 0000:00:16.6: PCI bridge to [bus 11-11] -05:51:18,521 DEBUG kernel:pci 0000:00:16.6: bridge window [io 0xf000-0x0000] (disabled) -05:51:18,521 DEBUG kernel:pci 0000:00:16.6: bridge window [mem 0xd3d00000-0xd3dfffff] -05:51:18,521 DEBUG kernel:pci 0000:00:16.6: bridge window [mem 0xd5300000-0xd53fffff 64bit pref] -05:51:18,521 INFO kernel:pci 0000:00:16.7: PCI bridge to [bus 12-12] -05:51:18,521 DEBUG kernel:pci 0000:00:16.7: bridge window [io 0xf000-0x0000] (disabled) -05:51:18,521 DEBUG kernel:pci 0000:00:16.7: bridge window [mem 0xd4100000-0xd41fffff] -05:51:18,521 DEBUG kernel:pci 0000:00:16.7: bridge window [mem 0xd5500000-0xd55fffff 64bit pref] -05:51:18,521 INFO kernel:pci 0000:00:17.0: PCI bridge to [bus 13-13] -05:51:18,521 DEBUG kernel:pci 0000:00:17.0: bridge window [io 0x6000-0x6fff] -05:51:18,521 DEBUG kernel:pci 0000:00:17.0: bridge window [mem 0xd2600000-0xd26fffff] -05:51:18,521 DEBUG kernel:pci 0000:00:17.0: bridge window [mem 0xd4600000-0xd46fffff 64bit pref] -05:51:18,521 INFO kernel:pci 0000:00:17.1: PCI bridge to [bus 14-14] -05:51:18,521 DEBUG kernel:pci 0000:00:17.1: bridge window [io 0xa000-0xafff] -05:51:18,521 DEBUG kernel:pci 0000:00:17.1: bridge window [mem 0xd2a00000-0xd2afffff] -05:51:18,521 DEBUG kernel:pci 0000:00:17.1: bridge window [mem 0xdca00000-0xdcafffff 64bit pref] -05:51:18,521 INFO kernel:pci 0000:00:17.2: PCI bridge to [bus 15-15] -05:51:18,521 DEBUG kernel:pci 0000:00:17.2: bridge window [io 0xe000-0xefff] -05:51:18,521 DEBUG kernel:pci 0000:00:17.2: bridge window [mem 0xd2e00000-0xd2efffff] -05:51:18,521 DEBUG kernel:pci 0000:00:17.2: bridge window [mem 0xdcc00000-0xdccfffff 64bit pref] -05:51:18,521 INFO kernel:pci 0000:00:17.3: PCI bridge to [bus 16-16] -05:51:18,521 DEBUG kernel:pci 0000:00:17.3: bridge window [io 0xf000-0x0000] (disabled) -05:51:18,521 DEBUG kernel:pci 0000:00:17.3: bridge window [mem 0xd3200000-0xd32fffff] -05:51:18,521 DEBUG kernel:pci 0000:00:17.3: bridge window [mem 0xdce00000-0xdcefffff 64bit pref] -05:51:18,521 INFO kernel:pci 0000:00:17.4: PCI bridge to [bus 17-17] -05:51:18,521 DEBUG kernel:pci 0000:00:17.4: bridge window [io 0xf000-0x0000] (disabled) -05:51:18,521 DEBUG kernel:pci 0000:00:17.4: bridge window [mem 0xd3600000-0xd36fffff] -05:51:18,521 DEBUG kernel:pci 0000:00:17.4: bridge window [mem 0xdd000000-0xdd0fffff 64bit pref] -05:51:18,521 INFO kernel:pci 0000:00:17.5: PCI bridge to [bus 18-18] -05:51:18,521 DEBUG kernel:pci 0000:00:17.5: bridge window [io 0xf000-0x0000] (disabled) -05:51:18,521 DEBUG kernel:pci 0000:00:17.5: bridge window [mem 0xd3a00000-0xd3afffff] -05:51:18,521 DEBUG kernel:pci 0000:00:17.5: bridge window [mem 0xdd200000-0xdd2fffff 64bit pref] -05:51:18,521 INFO kernel:pci 0000:00:17.6: PCI bridge to [bus 19-19] -05:51:18,521 DEBUG kernel:pci 0000:00:17.6: bridge window [io 0xf000-0x0000] (disabled) -05:51:18,521 DEBUG kernel:pci 0000:00:17.6: bridge window [mem 0xd3e00000-0xd3efffff] -05:51:18,521 DEBUG kernel:pci 0000:00:17.6: bridge window [mem 0xdd400000-0xdd4fffff 64bit pref] -05:51:18,521 INFO kernel:pci 0000:00:17.7: PCI bridge to [bus 1a-1a] -05:51:18,521 DEBUG kernel:pci 0000:00:17.7: bridge window [io 0xf000-0x0000] (disabled) -05:51:18,521 DEBUG kernel:pci 0000:00:17.7: bridge window [mem 0xd4200000-0xd42fffff] -05:51:18,521 DEBUG kernel:pci 0000:00:17.7: bridge window [mem 0xdd600000-0xdd6fffff 64bit pref] -05:51:18,521 INFO kernel:pci 0000:00:18.0: PCI bridge to [bus 1b-1b] -05:51:18,521 DEBUG kernel:pci 0000:00:18.0: bridge window [io 0x7000-0x7fff] -05:51:18,521 DEBUG kernel:pci 0000:00:18.0: bridge window [mem 0xd2700000-0xd27fffff] -05:51:18,521 DEBUG kernel:pci 0000:00:18.0: bridge window [mem 0xd4700000-0xd47fffff 64bit pref] -05:51:18,521 INFO kernel:pci 0000:00:18.1: PCI bridge to [bus 1c-1c] -05:51:18,521 DEBUG kernel:pci 0000:00:18.1: bridge window [io 0xb000-0xbfff] -05:51:18,521 DEBUG kernel:pci 0000:00:18.1: bridge window [mem 0xd2b00000-0xd2bfffff] -05:51:18,521 DEBUG kernel:pci 0000:00:18.1: bridge window [mem 0xd4a00000-0xd4afffff 64bit pref] -05:51:18,521 INFO kernel:pci 0000:00:18.2: PCI bridge to [bus 1d-1d] -05:51:18,521 DEBUG kernel:pci 0000:00:18.2: bridge window [io 0xf000-0xffff] -05:51:18,521 DEBUG kernel:pci 0000:00:18.2: bridge window [mem 0xd2f00000-0xd2ffffff] -05:51:18,521 DEBUG kernel:pci 0000:00:18.2: bridge window [mem 0xd4c00000-0xd4cfffff 64bit pref] -05:51:18,521 INFO kernel:pci 0000:00:18.3: PCI bridge to [bus 1e-1e] -05:51:18,521 DEBUG kernel:pci 0000:00:18.3: bridge window [io 0xf000-0x0000] (disabled) -05:51:18,521 DEBUG kernel:pci 0000:00:18.3: bridge window [mem 0xd3300000-0xd33fffff] -05:51:18,521 DEBUG kernel:pci 0000:00:18.3: bridge window [mem 0xd4e00000-0xd4efffff 64bit pref] -05:51:18,521 INFO kernel:pci 0000:00:18.4: PCI bridge to [bus 1f-1f] -05:51:18,521 DEBUG kernel:pci 0000:00:18.4: bridge window [io 0xf000-0x0000] (disabled) -05:51:18,521 DEBUG kernel:pci 0000:00:18.4: bridge window [mem 0xd3700000-0xd37fffff] -05:51:18,521 DEBUG kernel:pci 0000:00:18.4: bridge window [mem 0xd5000000-0xd50fffff 64bit pref] -05:51:18,521 INFO kernel:pci 0000:00:18.5: PCI bridge to [bus 20-20] -05:51:18,521 DEBUG kernel:pci 0000:00:18.5: bridge window [io 0xf000-0x0000] (disabled) -05:51:18,521 DEBUG kernel:pci 0000:00:18.5: bridge window [mem 0xd3b00000-0xd3bfffff] -05:51:18,521 DEBUG kernel:pci 0000:00:18.5: bridge window [mem 0xd5200000-0xd52fffff 64bit pref] -05:51:18,521 INFO kernel:pci 0000:00:18.6: PCI bridge to [bus 21-21] -05:51:18,521 DEBUG kernel:pci 0000:00:18.6: bridge window [io 0xf000-0x0000] (disabled) -05:51:18,521 DEBUG kernel:pci 0000:00:18.6: bridge window [mem 0xd3f00000-0xd3ffffff] -05:51:18,521 DEBUG kernel:pci 0000:00:18.6: bridge window [mem 0xd5400000-0xd54fffff 64bit pref] -05:51:18,521 INFO kernel:pci 0000:00:18.7: PCI bridge to [bus 22-22] -05:51:18,521 DEBUG kernel:pci 0000:00:18.7: bridge window [io 0xf000-0x0000] (disabled) -05:51:18,521 DEBUG kernel:pci 0000:00:18.7: bridge window [mem 0xd4300000-0xd43fffff] -05:51:18,521 DEBUG kernel:pci 0000:00:18.7: bridge window [mem 0xd5600000-0xd56fffff 64bit pref] -05:51:18,521 DEBUG kernel:ACPI: PCI Interrupt Routing Table [\_SB_.PCI0._PRT] -05:51:18,521 INFO kernel: pci0000:00: Requesting ACPI _OSC control (0x1d) -05:51:18,521 INFO kernel: pci0000:00: ACPI _OSC control (0x15) granted -05:51:18,521 INFO kernel:ACPI: PCI Interrupt Link [LNKA] (IRQs 3 4 5 6 7 *9 10 11 14 15) -05:51:18,521 INFO kernel:ACPI: PCI Interrupt Link [LNKB] (IRQs 3 4 5 6 7 9 10 *11 14 15) -05:51:18,521 INFO kernel:ACPI: PCI Interrupt Link [LNKC] (IRQs 3 4 5 6 7 9 *10 11 14 15) -05:51:18,521 INFO kernel:ACPI: PCI Interrupt Link [LNKD] (IRQs 3 4 *5 6 7 9 10 11 14 15) -05:51:18,521 INFO kernel:vgaarb: device added: PCI:0000:00:0f.0,decodes=io+mem,owns=io+mem,locks=none -05:51:18,521 INFO kernel:vgaarb: loaded -05:51:18,521 INFO kernel:vgaarb: bridge control possible 0000:00:0f.0 -05:51:18,521 NOTICE kernel:SCSI subsystem initialized -05:51:18,521 DEBUG kernel:libata version 3.00 loaded. -05:51:18,521 INFO kernel:usbcore: registered new interface driver usbfs -05:51:18,521 INFO kernel:usbcore: registered new interface driver hub -05:51:18,521 INFO kernel:usbcore: registered new device driver usb -05:51:18,521 INFO kernel:PCI: Using ACPI for IRQ routing -05:51:18,521 DEBUG kernel:PCI: old code would have set cacheline size to 32 bytes, but clflush_size = 64 -05:51:18,521 DEBUG kernel:PCI: pci_cache_line_size set to 64 bytes -05:51:18,521 INFO kernel:pci 0000:00:18.2: no compatible bridge window for [io 0xf000-0xffff] -05:51:18,521 INFO kernel:pci 0000:00:18.2: can't reserve window [io 0xf000-0xffff] -05:51:18,521 NOTICE kernel:lo: Dropping TSO features since no CSUM feature. -05:51:18,521 INFO kernel:NetLabel: Initializing -05:51:18,521 INFO kernel:NetLabel: domain hash size = 128 -05:51:18,521 INFO kernel:NetLabel: protocols = UNLABELED CIPSOv4 -05:51:18,521 INFO kernel:NetLabel: unlabeled traffic allowed by default -05:51:18,521 INFO kernel:HPET: 16 timers in total, 0 timers will be used for per-cpu timer -05:51:18,521 INFO kernel:hpet0: at MMIO 0xfed00000, IRQs 2, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 -05:51:18,521 INFO kernel:hpet0: 16 comparators, 64-bit 14.318180 MHz counter -05:51:18,521 INFO kernel:Switching to clocksource hpet -05:51:18,521 INFO kernel:pnp: PnP ACPI init -05:51:18,521 INFO kernel:ACPI: bus type pnp registered -05:51:18,521 DEBUG kernel:pnp 00:00: [io 0x0cf8-0x0cff] -05:51:18,521 DEBUG kernel:pnp 00:00: Plug and Play ACPI device, IDs PNP0a03 PNP0a08 (active) -05:51:18,521 DEBUG kernel:pnp 00:01: [io 0x0010-0x001f] -05:51:18,521 DEBUG kernel:pnp 00:01: [io 0x0024-0x0025] -05:51:18,521 DEBUG kernel:pnp 00:01: [io 0x0028-0x0029] -05:51:18,521 DEBUG kernel:pnp 00:01: [io 0x002c-0x002d] -05:51:18,521 DEBUG kernel:pnp 00:01: [io 0x002e-0x002f] -05:51:18,521 DEBUG kernel:pnp 00:01: [io 0x0030-0x0031] -05:51:18,521 DEBUG kernel:pnp 00:01: [io 0x0034-0x0035] -05:51:18,521 DEBUG kernel:pnp 00:01: [io 0x0038-0x0039] -05:51:18,521 DEBUG kernel:pnp 00:01: [io 0x003c-0x003d] -05:51:18,521 DEBUG kernel:pnp 00:01: [io 0x0050-0x0053] -05:51:18,521 DEBUG kernel:pnp 00:01: [io 0x0072-0x0077] -05:51:18,521 DEBUG kernel:pnp 00:01: [io 0x0080] -05:51:18,521 DEBUG kernel:pnp 00:01: [io 0x0090-0x009f] -05:51:18,521 DEBUG kernel:pnp 00:01: [io 0x00a4-0x00a5] -05:51:18,521 DEBUG kernel:pnp 00:01: [io 0x00a8-0x00a9] -05:51:18,521 DEBUG kernel:pnp 00:01: [io 0x00ac-0x00ad] -05:51:18,521 DEBUG kernel:pnp 00:01: [io 0x00b0-0x00b5] -05:51:18,521 DEBUG kernel:pnp 00:01: [io 0x00b8-0x00b9] -05:51:18,521 DEBUG kernel:pnp 00:01: [io 0x00bc-0x00bd] -05:51:18,521 DEBUG kernel:pnp 00:01: [io 0x1000-0x103f] -05:51:18,521 DEBUG kernel:pnp 00:01: [io 0x1040-0x104f] -05:51:18,521 DEBUG kernel:pnp 00:01: [io 0x0cf0-0x0cf1] -05:51:18,521 DEBUG kernel:pnp 00:01: Plug and Play ACPI device, IDs PNP0c02 (active) -05:51:18,521 DEBUG kernel:pnp 00:02: [io 0x0000-0x000f] -05:51:18,521 DEBUG kernel:pnp 00:02: [io 0x0081-0x008f] -05:51:18,521 DEBUG kernel:pnp 00:02: [io 0x00c0-0x00df] -05:51:18,521 DEBUG kernel:pnp 00:02: [dma 4] -05:51:18,521 DEBUG kernel:pnp 00:02: Plug and Play ACPI device, IDs PNP0200 (active) -05:51:18,521 DEBUG kernel:pnp 00:03: [io 0x0020-0x0021] -05:51:18,521 DEBUG kernel:pnp 00:03: [io 0x00a0-0x00a1] -05:51:18,521 DEBUG kernel:pnp 00:03: [io 0x04d0-0x04d1] -05:51:18,521 DEBUG kernel:pnp 00:03: [irq 2 disabled] -05:51:18,521 DEBUG kernel:pnp 00:03: Plug and Play ACPI device, IDs PNP0001 (active) -05:51:18,521 DEBUG kernel:pnp 00:04: [io 0x0070-0x0071] -05:51:18,521 DEBUG kernel:pnp 00:04: [irq 8] -05:51:18,521 DEBUG kernel:pnp 00:04: Plug and Play ACPI device, IDs PNP0b00 (active) -05:51:18,521 DEBUG kernel:pnp 00:05: [io 0x0061] -05:51:18,521 DEBUG kernel:pnp 00:05: Plug and Play ACPI device, IDs PNP0800 (active) -05:51:18,521 DEBUG kernel:pnp 00:06: [io 0x0060] -05:51:18,521 DEBUG kernel:pnp 00:06: [io 0x0064] -05:51:18,521 DEBUG kernel:pnp 00:06: [irq 1] -05:51:18,521 DEBUG kernel:pnp 00:06: Plug and Play ACPI device, IDs PNP0303 (active) -05:51:18,521 DEBUG kernel:pnp 00:07: [irq 12] -05:51:18,521 DEBUG kernel:pnp 00:07: Plug and Play ACPI device, IDs PNP0f13 (active) -05:51:18,521 DEBUG kernel:pnp 00:08: [mem 0xfed00000-0xfed003ff] -05:51:18,521 DEBUG kernel:pnp 00:08: Plug and Play ACPI device, IDs PNP0103 PNP0c01 (active) -05:51:18,521 DEBUG kernel:pnp 00:09: [io 0x0378-0x037f] -05:51:18,521 DEBUG kernel:pnp 00:09: [irq 7] -05:51:18,521 DEBUG kernel:pnp 00:09: Plug and Play ACPI device, IDs PNP0400 (active) -05:51:18,521 DEBUG kernel:pnp 00:0a: [io 0x03f8-0x03ff] -05:51:18,521 DEBUG kernel:pnp 00:0a: [irq 4] -05:51:18,521 DEBUG kernel:pnp 00:0a: Plug and Play ACPI device, IDs PNP0501 (active) -05:51:18,521 DEBUG kernel:pnp 00:0b: [io 0x02f8-0x02ff] -05:51:18,521 DEBUG kernel:pnp 00:0b: [irq 3] -05:51:18,521 DEBUG kernel:pnp 00:0b: Plug and Play ACPI device, IDs PNP0501 (active) -05:51:18,521 DEBUG kernel:pnp 00:0c: [io 0x03f0-0x03f5] -05:51:18,521 DEBUG kernel:pnp 00:0c: [io 0x03f7] -05:51:18,521 DEBUG kernel:pnp 00:0c: [irq 6] -05:51:18,521 DEBUG kernel:pnp 00:0c: [dma 2] -05:51:18,521 DEBUG kernel:pnp 00:0c: Plug and Play ACPI device, IDs PNP0700 (active) -05:51:18,521 DEBUG kernel:pnp 00:0d: [mem 0xe0000000-0xefffffff] -05:51:18,521 DEBUG kernel:pnp 00:0d: [io 0x1060-0x107f] -05:51:18,521 DEBUG kernel:pnp 00:0d: [mem 0xd0200000-0xd03fffff] -05:51:18,521 DEBUG kernel:pnp 00:0d: Plug and Play ACPI device, IDs PNP0c02 (active) -05:51:18,521 INFO kernel:pnp: PnP ACPI: found 14 devices -05:51:18,521 INFO kernel:ACPI: ACPI bus type pnp unregistered -05:51:18,521 INFO kernel:system 00:01: [io 0x1000-0x103f] has been reserved -05:51:18,521 INFO kernel:system 00:01: [io 0x1040-0x104f] has been reserved -05:51:18,521 INFO kernel:system 00:01: [io 0x0cf0-0x0cf1] has been reserved -05:51:18,521 INFO kernel:system 00:08: [mem 0xfed00000-0xfed003ff] has been reserved -05:51:18,521 INFO kernel:system 00:0d: [io 0x1060-0x107f] has been reserved -05:51:18,521 INFO kernel:system 00:0d: [mem 0xe0000000-0xefffffff] has been reserved -05:51:18,521 INFO kernel:system 00:0d: [mem 0xd0200000-0xd03fffff] has been reserved -05:51:18,521 DEBUG kernel:PCI: max bus depth: 1 pci_try_num: 2 -05:51:18,521 INFO kernel:pci 0000:00:0f.0: BAR 6: assigned [mem 0x80000000-0x80007fff pref] -05:51:18,521 INFO kernel:pci 0000:00:10.0: BAR 6: assigned [mem 0x80008000-0x8000bfff pref] -05:51:18,521 INFO kernel:pci 0000:00:18.2: BAR 13: can't assign io (size 0x1000) -05:51:18,521 INFO kernel:pci 0000:00:18.7: BAR 13: can't assign io (size 0x1000) -05:51:18,521 INFO kernel:pci 0000:00:18.6: BAR 13: can't assign io (size 0x1000) -05:51:18,521 INFO kernel:pci 0000:00:18.5: BAR 13: can't assign io (size 0x1000) -05:51:18,521 INFO kernel:pci 0000:00:18.4: BAR 13: can't assign io (size 0x1000) -05:51:18,521 INFO kernel:pci 0000:00:18.3: BAR 13: can't assign io (size 0x1000) -05:51:18,521 INFO kernel:pci 0000:00:17.7: BAR 13: can't assign io (size 0x1000) -05:51:18,521 INFO kernel:pci 0000:00:17.6: BAR 13: can't assign io (size 0x1000) -05:51:18,521 INFO kernel:pci 0000:00:17.5: BAR 13: can't assign io (size 0x1000) -05:51:18,521 INFO kernel:pci 0000:00:17.4: BAR 13: can't assign io (size 0x1000) -05:51:18,521 INFO kernel:pci 0000:00:17.3: BAR 13: can't assign io (size 0x1000) -05:51:18,521 INFO kernel:pci 0000:00:16.7: BAR 13: can't assign io (size 0x1000) -05:51:18,521 INFO kernel:pci 0000:00:16.6: BAR 13: can't assign io (size 0x1000) -05:51:18,521 INFO kernel:pci 0000:00:16.5: BAR 13: can't assign io (size 0x1000) -05:51:18,521 INFO kernel:pci 0000:00:16.4: BAR 13: can't assign io (size 0x1000) -05:51:18,521 INFO kernel:pci 0000:00:16.3: BAR 13: can't assign io (size 0x1000) -05:51:18,521 INFO kernel:pci 0000:00:15.7: BAR 13: can't assign io (size 0x1000) -05:51:18,521 INFO kernel:pci 0000:00:15.6: BAR 13: can't assign io (size 0x1000) -05:51:18,521 INFO kernel:pci 0000:00:15.5: BAR 13: can't assign io (size 0x1000) -05:51:18,521 INFO kernel:pci 0000:00:15.4: BAR 13: can't assign io (size 0x1000) -05:51:18,521 INFO kernel:pci 0000:00:15.3: BAR 13: can't assign io (size 0x1000) -05:51:18,521 INFO kernel:pci 0000:00:01.0: PCI bridge to [bus 01-01] -05:51:18,521 INFO kernel:pci 0000:00:01.0: PCI bridge to [bus 01-01] -05:51:18,521 INFO kernel:pci 0000:00:01.0: bridge window [io disabled] -05:51:18,521 INFO kernel:pci 0000:00:01.0: bridge window [mem disabled] -05:51:18,521 INFO kernel:pci 0000:00:01.0: bridge window [mem pref disabled] -05:51:18,521 INFO kernel:pci 0000:02:00.0: BAR 6: assigned [mem 0xdc400000-0xdc40ffff pref] -05:51:18,521 INFO kernel:pci 0000:02:01.0: BAR 6: assigned [mem 0xdc410000-0xdc41ffff pref] -05:51:18,521 INFO kernel:pci 0000:02:02.0: BAR 6: assigned [mem 0xdc420000-0xdc42ffff pref] -05:51:18,521 INFO kernel:pci 0000:02:03.0: BAR 6: assigned [mem 0xdc430000-0xdc43ffff pref] -05:51:18,521 INFO kernel:pci 0000:00:11.0: PCI bridge to [bus 02-02] -05:51:18,521 INFO kernel:pci 0000:00:11.0: PCI bridge to [bus 02-02] -05:51:18,521 INFO kernel:pci 0000:00:11.0: bridge window [io 0x2000-0x3fff] -05:51:18,521 INFO kernel:pci 0000:00:11.0: bridge window [mem 0xd1000000-0xd23fffff] -05:51:18,521 INFO kernel:pci 0000:00:11.0: bridge window [mem 0xdc400000-0xdc9fffff 64bit pref] -05:51:18,521 INFO kernel:pci 0000:00:15.0: PCI bridge to [bus 03-03] -05:51:18,521 INFO kernel:pci 0000:00:15.0: PCI bridge to [bus 03-03] -05:51:18,521 INFO kernel:pci 0000:00:15.0: bridge window [io 0x4000-0x4fff] -05:51:18,521 INFO kernel:pci 0000:00:15.0: bridge window [mem 0xd2400000-0xd24fffff] -05:51:18,521 INFO kernel:pci 0000:00:15.0: bridge window [mem 0xd4400000-0xd44fffff 64bit pref] -05:51:18,521 INFO kernel:pci 0000:00:15.1: PCI bridge to [bus 04-04] -05:51:18,521 INFO kernel:pci 0000:00:15.1: PCI bridge to [bus 04-04] -05:51:18,521 INFO kernel:pci 0000:00:15.1: bridge window [io 0x8000-0x8fff] -05:51:18,521 INFO kernel:pci 0000:00:15.1: bridge window [mem 0xd2800000-0xd28fffff] -05:51:18,521 INFO kernel:pci 0000:00:15.1: bridge window [mem 0xd4800000-0xd48fffff 64bit pref] -05:51:18,521 INFO kernel:pci 0000:00:15.2: PCI bridge to [bus 05-05] -05:51:18,521 INFO kernel:pci 0000:00:15.2: PCI bridge to [bus 05-05] -05:51:18,521 INFO kernel:pci 0000:00:15.2: bridge window [io 0xc000-0xcfff] -05:51:18,521 INFO kernel:pci 0000:00:15.2: bridge window [mem 0xd2c00000-0xd2cfffff] -05:51:18,521 INFO kernel:pci 0000:00:15.2: bridge window [mem 0xdcb00000-0xdcbfffff 64bit pref] -05:51:18,521 INFO kernel:pci 0000:00:15.3: PCI bridge to [bus 06-06] -05:51:18,521 INFO kernel:pci 0000:00:15.3: PCI bridge to [bus 06-06] -05:51:18,521 INFO kernel:pci 0000:00:15.3: bridge window [io disabled] -05:51:18,521 INFO kernel:pci 0000:00:15.3: bridge window [mem 0xd3000000-0xd30fffff] -05:51:18,521 INFO kernel:pci 0000:00:15.3: bridge window [mem 0xdcd00000-0xdcdfffff 64bit pref] -05:51:18,521 INFO kernel:pci 0000:00:15.4: PCI bridge to [bus 07-07] -05:51:18,521 INFO kernel:pci 0000:00:15.4: PCI bridge to [bus 07-07] -05:51:18,521 INFO kernel:pci 0000:00:15.4: bridge window [io disabled] -05:51:18,521 INFO kernel:pci 0000:00:15.4: bridge window [mem 0xd3400000-0xd34fffff] -05:51:18,521 INFO kernel:pci 0000:00:15.4: bridge window [mem 0xdcf00000-0xdcffffff 64bit pref] -05:51:18,521 INFO kernel:pci 0000:00:15.5: PCI bridge to [bus 08-08] -05:51:18,521 INFO kernel:pci 0000:00:15.5: PCI bridge to [bus 08-08] -05:51:18,521 INFO kernel:pci 0000:00:15.5: bridge window [io disabled] -05:51:18,521 INFO kernel:pci 0000:00:15.5: bridge window [mem 0xd3800000-0xd38fffff] -05:51:18,521 INFO kernel:pci 0000:00:15.5: bridge window [mem 0xdd100000-0xdd1fffff 64bit pref] -05:51:18,521 INFO kernel:pci 0000:00:15.6: PCI bridge to [bus 09-09] -05:51:18,521 INFO kernel:pci 0000:00:15.6: PCI bridge to [bus 09-09] -05:51:18,521 INFO kernel:pci 0000:00:15.6: bridge window [io disabled] -05:51:18,521 INFO kernel:pci 0000:00:15.6: bridge window [mem 0xd3c00000-0xd3cfffff] -05:51:18,521 INFO kernel:pci 0000:00:15.6: bridge window [mem 0xdd300000-0xdd3fffff 64bit pref] -05:51:18,521 INFO kernel:pci 0000:00:15.7: PCI bridge to [bus 0a-0a] -05:51:18,521 INFO kernel:pci 0000:00:15.7: PCI bridge to [bus 0a-0a] -05:51:18,521 INFO kernel:pci 0000:00:15.7: bridge window [io disabled] -05:51:18,521 INFO kernel:pci 0000:00:15.7: bridge window [mem 0xd4000000-0xd40fffff] -05:51:18,521 INFO kernel:pci 0000:00:15.7: bridge window [mem 0xdd500000-0xdd5fffff 64bit pref] -05:51:18,521 INFO kernel:pci 0000:00:16.0: PCI bridge to [bus 0b-0b] -05:51:18,521 INFO kernel:pci 0000:00:16.0: PCI bridge to [bus 0b-0b] -05:51:18,521 INFO kernel:pci 0000:00:16.0: bridge window [io 0x5000-0x5fff] -05:51:18,521 INFO kernel:pci 0000:00:16.0: bridge window [mem 0xd2500000-0xd25fffff] -05:51:18,521 INFO kernel:pci 0000:00:16.0: bridge window [mem 0xd4500000-0xd45fffff 64bit pref] -05:51:18,521 INFO kernel:pci 0000:00:16.1: PCI bridge to [bus 0c-0c] -05:51:18,521 INFO kernel:pci 0000:00:16.1: PCI bridge to [bus 0c-0c] -05:51:18,521 INFO kernel:pci 0000:00:16.1: bridge window [io 0x9000-0x9fff] -05:51:18,521 INFO kernel:pci 0000:00:16.1: bridge window [mem 0xd2900000-0xd29fffff] -05:51:18,521 INFO kernel:pci 0000:00:16.1: bridge window [mem 0xd4900000-0xd49fffff 64bit pref] -05:51:18,521 INFO kernel:pci 0000:00:16.2: PCI bridge to [bus 0d-0d] -05:51:18,521 INFO kernel:pci 0000:00:16.2: PCI bridge to [bus 0d-0d] -05:51:18,521 INFO kernel:pci 0000:00:16.2: bridge window [io 0xd000-0xdfff] -05:51:18,521 INFO kernel:pci 0000:00:16.2: bridge window [mem 0xd2d00000-0xd2dfffff] -05:51:18,521 INFO kernel:pci 0000:00:16.2: bridge window [mem 0xd4b00000-0xd4bfffff 64bit pref] -05:51:18,521 INFO kernel:pci 0000:00:16.3: PCI bridge to [bus 0e-0e] -05:51:18,521 INFO kernel:pci 0000:00:16.3: PCI bridge to [bus 0e-0e] -05:51:18,521 INFO kernel:pci 0000:00:16.3: bridge window [io disabled] -05:51:18,521 INFO kernel:pci 0000:00:16.3: bridge window [mem 0xd3100000-0xd31fffff] -05:51:18,521 INFO kernel:pci 0000:00:16.3: bridge window [mem 0xd4d00000-0xd4dfffff 64bit pref] -05:51:18,521 INFO kernel:pci 0000:00:16.4: PCI bridge to [bus 0f-0f] -05:51:18,521 INFO kernel:pci 0000:00:16.4: PCI bridge to [bus 0f-0f] -05:51:18,521 INFO kernel:pci 0000:00:16.4: bridge window [io disabled] -05:51:18,521 INFO kernel:pci 0000:00:16.4: bridge window [mem 0xd3500000-0xd35fffff] -05:51:18,521 INFO kernel:pci 0000:00:16.4: bridge window [mem 0xd4f00000-0xd4ffffff 64bit pref] -05:51:18,521 INFO kernel:pci 0000:00:16.5: PCI bridge to [bus 10-10] -05:51:18,521 INFO kernel:pci 0000:00:16.5: PCI bridge to [bus 10-10] -05:51:18,521 INFO kernel:pci 0000:00:16.5: bridge window [io disabled] -05:51:18,521 INFO kernel:pci 0000:00:16.5: bridge window [mem 0xd3900000-0xd39fffff] -05:51:18,521 INFO kernel:pci 0000:00:16.5: bridge window [mem 0xd5100000-0xd51fffff 64bit pref] -05:51:18,521 INFO kernel:pci 0000:00:16.6: PCI bridge to [bus 11-11] -05:51:18,521 INFO kernel:pci 0000:00:16.6: PCI bridge to [bus 11-11] -05:51:18,521 INFO kernel:pci 0000:00:16.6: bridge window [io disabled] -05:51:18,521 INFO kernel:pci 0000:00:16.6: bridge window [mem 0xd3d00000-0xd3dfffff] -05:51:18,521 INFO kernel:pci 0000:00:16.6: bridge window [mem 0xd5300000-0xd53fffff 64bit pref] -05:51:18,521 INFO kernel:pci 0000:00:16.7: PCI bridge to [bus 12-12] -05:51:18,521 INFO kernel:pci 0000:00:16.7: PCI bridge to [bus 12-12] -05:51:18,521 INFO kernel:pci 0000:00:16.7: bridge window [io disabled] -05:51:18,521 INFO kernel:pci 0000:00:16.7: bridge window [mem 0xd4100000-0xd41fffff] -05:51:18,521 INFO kernel:pci 0000:00:16.7: bridge window [mem 0xd5500000-0xd55fffff 64bit pref] -05:51:18,521 INFO kernel:pci 0000:00:17.0: PCI bridge to [bus 13-13] -05:51:18,521 INFO kernel:pci 0000:00:17.0: PCI bridge to [bus 13-13] -05:51:18,521 INFO kernel:pci 0000:00:17.0: bridge window [io 0x6000-0x6fff] -05:51:18,521 INFO kernel:pci 0000:00:17.0: bridge window [mem 0xd2600000-0xd26fffff] -05:51:18,521 INFO kernel:pci 0000:00:17.0: bridge window [mem 0xd4600000-0xd46fffff 64bit pref] -05:51:18,521 INFO kernel:pci 0000:00:17.1: PCI bridge to [bus 14-14] -05:51:18,521 INFO kernel:pci 0000:00:17.1: PCI bridge to [bus 14-14] -05:51:18,521 INFO kernel:pci 0000:00:17.1: bridge window [io 0xa000-0xafff] -05:51:18,521 INFO kernel:pci 0000:00:17.1: bridge window [mem 0xd2a00000-0xd2afffff] -05:51:18,521 INFO kernel:pci 0000:00:17.1: bridge window [mem 0xdca00000-0xdcafffff 64bit pref] -05:51:18,521 INFO kernel:pci 0000:00:17.2: PCI bridge to [bus 15-15] -05:51:18,521 INFO kernel:pci 0000:00:17.2: PCI bridge to [bus 15-15] -05:51:18,521 INFO kernel:pci 0000:00:17.2: bridge window [io 0xe000-0xefff] -05:51:18,521 INFO kernel:pci 0000:00:17.2: bridge window [mem 0xd2e00000-0xd2efffff] -05:51:18,521 INFO kernel:pci 0000:00:17.2: bridge window [mem 0xdcc00000-0xdccfffff 64bit pref] -05:51:18,521 INFO kernel:pci 0000:00:17.3: PCI bridge to [bus 16-16] -05:51:18,521 INFO kernel:pci 0000:00:17.3: PCI bridge to [bus 16-16] -05:51:18,521 INFO kernel:pci 0000:00:17.3: bridge window [io disabled] -05:51:18,521 INFO kernel:pci 0000:00:17.3: bridge window [mem 0xd3200000-0xd32fffff] -05:51:18,521 INFO kernel:pci 0000:00:17.3: bridge window [mem 0xdce00000-0xdcefffff 64bit pref] -05:51:18,521 INFO kernel:pci 0000:00:17.4: PCI bridge to [bus 17-17] -05:51:18,521 INFO kernel:pci 0000:00:17.4: PCI bridge to [bus 17-17] -05:51:18,521 INFO kernel:pci 0000:00:17.4: bridge window [io disabled] -05:51:18,521 INFO kernel:pci 0000:00:17.4: bridge window [mem 0xd3600000-0xd36fffff] -05:51:18,521 INFO kernel:pci 0000:00:17.4: bridge window [mem 0xdd000000-0xdd0fffff 64bit pref] -05:51:18,521 INFO kernel:pci 0000:00:17.5: PCI bridge to [bus 18-18] -05:51:18,521 INFO kernel:pci 0000:00:17.5: PCI bridge to [bus 18-18] -05:51:18,521 INFO kernel:pci 0000:00:17.5: bridge window [io disabled] -05:51:18,521 INFO kernel:pci 0000:00:17.5: bridge window [mem 0xd3a00000-0xd3afffff] -05:51:18,521 INFO kernel:pci 0000:00:17.5: bridge window [mem 0xdd200000-0xdd2fffff 64bit pref] -05:51:18,521 INFO kernel:pci 0000:00:17.6: PCI bridge to [bus 19-19] -05:51:18,521 INFO kernel:pci 0000:00:17.6: PCI bridge to [bus 19-19] -05:51:18,521 INFO kernel:pci 0000:00:17.6: bridge window [io disabled] -05:51:18,521 INFO kernel:pci 0000:00:17.6: bridge window [mem 0xd3e00000-0xd3efffff] -05:51:18,521 INFO kernel:pci 0000:00:17.6: bridge window [mem 0xdd400000-0xdd4fffff 64bit pref] -05:51:18,521 INFO kernel:pci 0000:00:17.7: PCI bridge to [bus 1a-1a] -05:51:18,521 INFO kernel:pci 0000:00:17.7: PCI bridge to [bus 1a-1a] -05:51:18,521 INFO kernel:pci 0000:00:17.7: bridge window [io disabled] -05:51:18,521 INFO kernel:pci 0000:00:17.7: bridge window [mem 0xd4200000-0xd42fffff] -05:51:18,521 INFO kernel:pci 0000:00:17.7: bridge window [mem 0xdd600000-0xdd6fffff 64bit pref] -05:51:18,521 INFO kernel:pci 0000:00:18.0: PCI bridge to [bus 1b-1b] -05:51:18,521 INFO kernel:pci 0000:00:18.0: PCI bridge to [bus 1b-1b] -05:51:18,521 INFO kernel:pci 0000:00:18.0: bridge window [io 0x7000-0x7fff] -05:51:18,521 INFO kernel:pci 0000:00:18.0: bridge window [mem 0xd2700000-0xd27fffff] -05:51:18,521 INFO kernel:pci 0000:00:18.0: bridge window [mem 0xd4700000-0xd47fffff 64bit pref] -05:51:18,521 INFO kernel:pci 0000:00:18.1: PCI bridge to [bus 1c-1c] -05:51:18,521 INFO kernel:pci 0000:00:18.1: PCI bridge to [bus 1c-1c] -05:51:18,521 INFO kernel:pci 0000:00:18.1: bridge window [io 0xb000-0xbfff] -05:51:18,521 INFO kernel:pci 0000:00:18.1: bridge window [mem 0xd2b00000-0xd2bfffff] -05:51:18,521 INFO kernel:pci 0000:00:18.1: bridge window [mem 0xd4a00000-0xd4afffff 64bit pref] -05:51:18,521 INFO kernel:pci 0000:00:18.2: PCI bridge to [bus 1d-1d] -05:51:18,521 INFO kernel:pci 0000:00:18.2: PCI bridge to [bus 1d-1d] -05:51:18,521 INFO kernel:pci 0000:00:18.2: bridge window [io disabled] -05:51:18,521 INFO kernel:pci 0000:00:18.2: bridge window [mem 0xd2f00000-0xd2ffffff] -05:51:18,521 INFO kernel:pci 0000:00:18.2: bridge window [mem 0xd4c00000-0xd4cfffff 64bit pref] -05:51:18,521 INFO kernel:pci 0000:00:18.3: PCI bridge to [bus 1e-1e] -05:51:18,521 INFO kernel:pci 0000:00:18.3: PCI bridge to [bus 1e-1e] -05:51:18,521 INFO kernel:pci 0000:00:18.3: bridge window [io disabled] -05:51:18,521 INFO kernel:pci 0000:00:18.3: bridge window [mem 0xd3300000-0xd33fffff] -05:51:18,521 INFO kernel:pci 0000:00:18.3: bridge window [mem 0xd4e00000-0xd4efffff 64bit pref] -05:51:18,521 INFO kernel:pci 0000:00:18.4: PCI bridge to [bus 1f-1f] -05:51:18,521 INFO kernel:pci 0000:00:18.4: PCI bridge to [bus 1f-1f] -05:51:18,521 INFO kernel:pci 0000:00:18.4: bridge window [io disabled] -05:51:18,521 INFO kernel:pci 0000:00:18.4: bridge window [mem 0xd3700000-0xd37fffff] -05:51:18,521 INFO kernel:pci 0000:00:18.4: bridge window [mem 0xd5000000-0xd50fffff 64bit pref] -05:51:18,521 INFO kernel:pci 0000:00:18.5: PCI bridge to [bus 20-20] -05:51:18,521 INFO kernel:pci 0000:00:18.5: PCI bridge to [bus 20-20] -05:51:18,521 INFO kernel:pci 0000:00:18.5: bridge window [io disabled] -05:51:18,521 INFO kernel:pci 0000:00:18.5: bridge window [mem 0xd3b00000-0xd3bfffff] -05:51:18,521 INFO kernel:pci 0000:00:18.5: bridge window [mem 0xd5200000-0xd52fffff 64bit pref] -05:51:18,521 INFO kernel:pci 0000:00:18.6: PCI bridge to [bus 21-21] -05:51:18,521 INFO kernel:pci 0000:00:18.6: PCI bridge to [bus 21-21] -05:51:18,521 INFO kernel:pci 0000:00:18.6: bridge window [io disabled] -05:51:18,521 INFO kernel:pci 0000:00:18.6: bridge window [mem 0xd3f00000-0xd3ffffff] -05:51:18,521 INFO kernel:pci 0000:00:18.6: bridge window [mem 0xd5400000-0xd54fffff 64bit pref] -05:51:18,521 INFO kernel:pci 0000:00:18.7: PCI bridge to [bus 22-22] -05:51:18,521 INFO kernel:pci 0000:00:18.7: PCI bridge to [bus 22-22] -05:51:18,521 INFO kernel:pci 0000:00:18.7: bridge window [io disabled] -05:51:18,521 INFO kernel:pci 0000:00:18.7: bridge window [mem 0xd4300000-0xd43fffff] -05:51:18,521 INFO kernel:pci 0000:00:18.7: bridge window [mem 0xd5600000-0xd56fffff 64bit pref] -05:51:18,521 DEBUG kernel:pci 0000:00:01.0: setting latency timer to 64 -05:51:18,521 DEBUG kernel:pci 0000:00:15.0: setting latency timer to 64 -05:51:18,521 DEBUG kernel:pci 0000:00:15.1: setting latency timer to 64 -05:51:18,521 DEBUG kernel:pci 0000:00:15.2: setting latency timer to 64 -05:51:18,521 DEBUG kernel:pci 0000:00:15.3: setting latency timer to 64 -05:51:18,521 DEBUG kernel:pci 0000:00:15.4: setting latency timer to 64 -05:51:18,521 DEBUG kernel:pci 0000:00:15.5: setting latency timer to 64 -05:51:18,521 DEBUG kernel:pci 0000:00:15.6: setting latency timer to 64 -05:51:18,521 DEBUG kernel:pci 0000:00:15.7: setting latency timer to 64 -05:51:18,521 DEBUG kernel:pci 0000:00:16.0: setting latency timer to 64 -05:51:18,521 DEBUG kernel:pci 0000:00:16.1: setting latency timer to 64 -05:51:18,521 DEBUG kernel:pci 0000:00:16.2: setting latency timer to 64 -05:51:18,521 DEBUG kernel:pci 0000:00:16.3: setting latency timer to 64 -05:51:18,521 DEBUG kernel:pci 0000:00:16.4: setting latency timer to 64 -05:51:18,521 DEBUG kernel:pci 0000:00:16.5: setting latency timer to 64 -05:51:18,521 DEBUG kernel:pci 0000:00:16.6: setting latency timer to 64 -05:51:18,521 DEBUG kernel:pci 0000:00:16.7: setting latency timer to 64 -05:51:18,521 DEBUG kernel:pci 0000:00:17.0: setting latency timer to 64 -05:51:18,521 DEBUG kernel:pci 0000:00:17.1: setting latency timer to 64 -05:51:18,522 DEBUG kernel:pci 0000:00:17.2: setting latency timer to 64 -05:51:18,522 DEBUG kernel:pci 0000:00:17.3: setting latency timer to 64 -05:51:18,522 DEBUG kernel:pci 0000:00:17.4: setting latency timer to 64 -05:51:18,522 DEBUG kernel:pci 0000:00:17.5: setting latency timer to 64 -05:51:18,522 DEBUG kernel:pci 0000:00:17.6: setting latency timer to 64 -05:51:18,522 DEBUG kernel:pci 0000:00:17.7: setting latency timer to 64 -05:51:18,522 DEBUG kernel:pci 0000:00:18.0: setting latency timer to 64 -05:51:18,522 DEBUG kernel:pci 0000:00:18.1: setting latency timer to 64 -05:51:18,522 DEBUG kernel:pci 0000:00:18.2: setting latency timer to 64 -05:51:18,522 DEBUG kernel:pci 0000:00:18.3: setting latency timer to 64 -05:51:18,522 DEBUG kernel:pci 0000:00:18.4: setting latency timer to 64 -05:51:18,522 DEBUG kernel:pci 0000:00:18.5: setting latency timer to 64 -05:51:18,522 DEBUG kernel:pci 0000:00:18.6: setting latency timer to 64 -05:51:18,522 DEBUG kernel:pci 0000:00:18.7: setting latency timer to 64 -05:51:18,522 DEBUG kernel:pci_bus 0000:00: resource 4 [mem 0x000a0000-0x000bffff] -05:51:18,522 DEBUG kernel:pci_bus 0000:00: resource 5 [mem 0x000d0000-0x000d3fff] -05:51:18,522 DEBUG kernel:pci_bus 0000:00: resource 6 [mem 0x000d4000-0x000d7fff] -05:51:18,522 DEBUG kernel:pci_bus 0000:00: resource 7 [mem 0x000d8000-0x000dbfff] -05:51:18,522 DEBUG kernel:pci_bus 0000:00: resource 8 [mem 0x80000000-0xfebfffff] -05:51:18,522 DEBUG kernel:pci_bus 0000:00: resource 9 [io 0x0000-0x0cf7] -05:51:18,522 DEBUG kernel:pci_bus 0000:00: resource 10 [io 0x0d00-0xfeff] -05:51:18,522 DEBUG kernel:pci_bus 0000:02: resource 0 [io 0x2000-0x3fff] -05:51:18,522 DEBUG kernel:pci_bus 0000:02: resource 1 [mem 0xd1000000-0xd23fffff] -05:51:18,522 DEBUG kernel:pci_bus 0000:02: resource 2 [mem 0xdc400000-0xdc9fffff 64bit pref] -05:51:18,522 DEBUG kernel:pci_bus 0000:02: resource 4 [mem 0x000a0000-0x000bffff] -05:51:18,522 DEBUG kernel:pci_bus 0000:02: resource 5 [mem 0x000d0000-0x000d3fff] -05:51:18,522 DEBUG kernel:pci_bus 0000:02: resource 6 [mem 0x000d4000-0x000d7fff] -05:51:18,522 DEBUG kernel:pci_bus 0000:02: resource 7 [mem 0x000d8000-0x000dbfff] -05:51:18,522 DEBUG kernel:pci_bus 0000:02: resource 8 [mem 0x80000000-0xfebfffff] -05:51:18,522 DEBUG kernel:pci_bus 0000:02: resource 9 [io 0x0000-0x0cf7] -05:51:18,522 DEBUG kernel:pci_bus 0000:02: resource 10 [io 0x0d00-0xfeff] -05:51:18,522 DEBUG kernel:pci_bus 0000:03: resource 0 [io 0x4000-0x4fff] -05:51:18,522 DEBUG kernel:pci_bus 0000:03: resource 1 [mem 0xd2400000-0xd24fffff] -05:51:18,522 DEBUG kernel:pci_bus 0000:03: resource 2 [mem 0xd4400000-0xd44fffff 64bit pref] -05:51:18,522 DEBUG kernel:pci_bus 0000:04: resource 0 [io 0x8000-0x8fff] -05:51:18,522 DEBUG kernel:pci_bus 0000:04: resource 1 [mem 0xd2800000-0xd28fffff] -05:51:18,522 DEBUG kernel:pci_bus 0000:04: resource 2 [mem 0xd4800000-0xd48fffff 64bit pref] -05:51:18,522 DEBUG kernel:pci_bus 0000:05: resource 0 [io 0xc000-0xcfff] -05:51:18,522 DEBUG kernel:pci_bus 0000:05: resource 1 [mem 0xd2c00000-0xd2cfffff] -05:51:18,522 DEBUG kernel:pci_bus 0000:05: resource 2 [mem 0xdcb00000-0xdcbfffff 64bit pref] -05:51:18,522 DEBUG kernel:pci_bus 0000:06: resource 1 [mem 0xd3000000-0xd30fffff] -05:51:18,522 DEBUG kernel:pci_bus 0000:06: resource 2 [mem 0xdcd00000-0xdcdfffff 64bit pref] -05:51:18,522 DEBUG kernel:pci_bus 0000:07: resource 1 [mem 0xd3400000-0xd34fffff] -05:51:18,522 DEBUG kernel:pci_bus 0000:07: resource 2 [mem 0xdcf00000-0xdcffffff 64bit pref] -05:51:18,522 DEBUG kernel:pci_bus 0000:08: resource 1 [mem 0xd3800000-0xd38fffff] -05:51:18,522 DEBUG kernel:pci_bus 0000:08: resource 2 [mem 0xdd100000-0xdd1fffff 64bit pref] -05:51:18,522 DEBUG kernel:pci_bus 0000:09: resource 1 [mem 0xd3c00000-0xd3cfffff] -05:51:18,522 DEBUG kernel:pci_bus 0000:09: resource 2 [mem 0xdd300000-0xdd3fffff 64bit pref] -05:51:18,522 DEBUG kernel:pci_bus 0000:0a: resource 1 [mem 0xd4000000-0xd40fffff] -05:51:18,522 DEBUG kernel:pci_bus 0000:0a: resource 2 [mem 0xdd500000-0xdd5fffff 64bit pref] -05:51:18,522 DEBUG kernel:pci_bus 0000:0b: resource 0 [io 0x5000-0x5fff] -05:51:18,522 DEBUG kernel:pci_bus 0000:0b: resource 1 [mem 0xd2500000-0xd25fffff] -05:51:18,522 DEBUG kernel:pci_bus 0000:0b: resource 2 [mem 0xd4500000-0xd45fffff 64bit pref] -05:51:18,522 DEBUG kernel:pci_bus 0000:0c: resource 0 [io 0x9000-0x9fff] -05:51:18,522 DEBUG kernel:pci_bus 0000:0c: resource 1 [mem 0xd2900000-0xd29fffff] -05:51:18,522 DEBUG kernel:pci_bus 0000:0c: resource 2 [mem 0xd4900000-0xd49fffff 64bit pref] -05:51:18,522 DEBUG kernel:pci_bus 0000:0d: resource 0 [io 0xd000-0xdfff] -05:51:18,522 DEBUG kernel:pci_bus 0000:0d: resource 1 [mem 0xd2d00000-0xd2dfffff] -05:51:18,522 DEBUG kernel:pci_bus 0000:0d: resource 2 [mem 0xd4b00000-0xd4bfffff 64bit pref] -05:51:18,522 DEBUG kernel:pci_bus 0000:0e: resource 1 [mem 0xd3100000-0xd31fffff] -05:51:18,522 DEBUG kernel:pci_bus 0000:0e: resource 2 [mem 0xd4d00000-0xd4dfffff 64bit pref] -05:51:18,522 DEBUG kernel:pci_bus 0000:0f: resource 1 [mem 0xd3500000-0xd35fffff] -05:51:18,522 DEBUG kernel:pci_bus 0000:0f: resource 2 [mem 0xd4f00000-0xd4ffffff 64bit pref] -05:51:18,522 DEBUG kernel:pci_bus 0000:10: resource 1 [mem 0xd3900000-0xd39fffff] -05:51:18,522 DEBUG kernel:pci_bus 0000:10: resource 2 [mem 0xd5100000-0xd51fffff 64bit pref] -05:51:18,522 DEBUG kernel:pci_bus 0000:11: resource 1 [mem 0xd3d00000-0xd3dfffff] -05:51:18,522 DEBUG kernel:pci_bus 0000:11: resource 2 [mem 0xd5300000-0xd53fffff 64bit pref] -05:51:18,522 DEBUG kernel:pci_bus 0000:12: resource 1 [mem 0xd4100000-0xd41fffff] -05:51:18,522 DEBUG kernel:pci_bus 0000:12: resource 2 [mem 0xd5500000-0xd55fffff 64bit pref] -05:51:18,522 DEBUG kernel:pci_bus 0000:13: resource 0 [io 0x6000-0x6fff] -05:51:18,522 DEBUG kernel:pci_bus 0000:13: resource 1 [mem 0xd2600000-0xd26fffff] -05:51:18,522 DEBUG kernel:pci_bus 0000:13: resource 2 [mem 0xd4600000-0xd46fffff 64bit pref] -05:51:18,522 DEBUG kernel:pci_bus 0000:14: resource 0 [io 0xa000-0xafff] -05:51:18,522 DEBUG kernel:pci_bus 0000:14: resource 1 [mem 0xd2a00000-0xd2afffff] -05:51:18,522 DEBUG kernel:pci_bus 0000:14: resource 2 [mem 0xdca00000-0xdcafffff 64bit pref] -05:51:18,522 DEBUG kernel:pci_bus 0000:15: resource 0 [io 0xe000-0xefff] -05:51:18,522 DEBUG kernel:pci_bus 0000:15: resource 1 [mem 0xd2e00000-0xd2efffff] -05:51:18,522 DEBUG kernel:pci_bus 0000:15: resource 2 [mem 0xdcc00000-0xdccfffff 64bit pref] -05:51:18,522 DEBUG kernel:pci_bus 0000:16: resource 1 [mem 0xd3200000-0xd32fffff] -05:51:18,522 DEBUG kernel:pci_bus 0000:16: resource 2 [mem 0xdce00000-0xdcefffff 64bit pref] -05:51:18,522 DEBUG kernel:pci_bus 0000:17: resource 1 [mem 0xd3600000-0xd36fffff] -05:51:18,522 DEBUG kernel:pci_bus 0000:17: resource 2 [mem 0xdd000000-0xdd0fffff 64bit pref] -05:51:18,522 DEBUG kernel:pci_bus 0000:18: resource 1 [mem 0xd3a00000-0xd3afffff] -05:51:18,522 DEBUG kernel:pci_bus 0000:18: resource 2 [mem 0xdd200000-0xdd2fffff 64bit pref] -05:51:18,522 DEBUG kernel:pci_bus 0000:19: resource 1 [mem 0xd3e00000-0xd3efffff] -05:51:18,522 DEBUG kernel:pci_bus 0000:19: resource 2 [mem 0xdd400000-0xdd4fffff 64bit pref] -05:51:18,522 DEBUG kernel:pci_bus 0000:1a: resource 1 [mem 0xd4200000-0xd42fffff] -05:51:18,522 DEBUG kernel:pci_bus 0000:1a: resource 2 [mem 0xdd600000-0xdd6fffff 64bit pref] -05:51:18,522 DEBUG kernel:pci_bus 0000:1b: resource 0 [io 0x7000-0x7fff] -05:51:18,522 DEBUG kernel:pci_bus 0000:1b: resource 1 [mem 0xd2700000-0xd27fffff] -05:51:18,522 DEBUG kernel:pci_bus 0000:1b: resource 2 [mem 0xd4700000-0xd47fffff 64bit pref] -05:51:18,522 DEBUG kernel:pci_bus 0000:1c: resource 0 [io 0xb000-0xbfff] -05:51:18,522 DEBUG kernel:pci_bus 0000:1c: resource 1 [mem 0xd2b00000-0xd2bfffff] -05:51:18,522 DEBUG kernel:pci_bus 0000:1c: resource 2 [mem 0xd4a00000-0xd4afffff 64bit pref] -05:51:18,522 DEBUG kernel:pci_bus 0000:1d: resource 1 [mem 0xd2f00000-0xd2ffffff] -05:51:18,522 DEBUG kernel:pci_bus 0000:1d: resource 2 [mem 0xd4c00000-0xd4cfffff 64bit pref] -05:51:18,522 DEBUG kernel:pci_bus 0000:1e: resource 1 [mem 0xd3300000-0xd33fffff] -05:51:18,522 DEBUG kernel:pci_bus 0000:1e: resource 2 [mem 0xd4e00000-0xd4efffff 64bit pref] -05:51:18,522 DEBUG kernel:pci_bus 0000:1f: resource 1 [mem 0xd3700000-0xd37fffff] -05:51:18,522 DEBUG kernel:pci_bus 0000:1f: resource 2 [mem 0xd5000000-0xd50fffff 64bit pref] -05:51:18,522 DEBUG kernel:pci_bus 0000:20: resource 1 [mem 0xd3b00000-0xd3bfffff] -05:51:18,522 DEBUG kernel:pci_bus 0000:20: resource 2 [mem 0xd5200000-0xd52fffff 64bit pref] -05:51:18,522 DEBUG kernel:pci_bus 0000:21: resource 1 [mem 0xd3f00000-0xd3ffffff] -05:51:18,522 DEBUG kernel:pci_bus 0000:21: resource 2 [mem 0xd5400000-0xd54fffff 64bit pref] -05:51:18,522 DEBUG kernel:pci_bus 0000:22: resource 1 [mem 0xd4300000-0xd43fffff] -05:51:18,522 DEBUG kernel:pci_bus 0000:22: resource 2 [mem 0xd5600000-0xd56fffff 64bit pref] -05:51:18,522 INFO kernel:NET: Registered protocol family 2 -05:51:18,522 INFO kernel:IP route cache hash table entries: 65536 (order: 7, 524288 bytes) -05:51:18,522 INFO kernel:TCP established hash table entries: 262144 (order: 10, 4194304 bytes) -05:51:18,527 INFO kernel:TCP bind hash table entries: 65536 (order: 8, 1048576 bytes) -05:51:18,527 INFO kernel:TCP: Hash tables configured (established 262144 bind 65536) -05:51:18,527 INFO kernel:TCP reno registered -05:51:18,527 INFO kernel:NET: Registered protocol family 1 -05:51:18,527 INFO kernel:pci 0000:00:00.0: Limiting direct PCI/PCI transfers -05:51:18,527 DEBUG kernel:pci 0000:00:0f.0: Boot video device -05:51:18,527 INFO kernel:Trying to unpack rootfs image as initramfs... -05:51:18,527 INFO kernel:Freeing initrd memory: 32601k freed -05:51:18,527 INFO kernel:Simple Boot Flag at 0x36 set to 0x80 -05:51:18,527 INFO kernel:audit: initializing netlink socket (disabled) -05:51:18,527 NOTICE kernel:type=2000 audit(1021096275.782:1): initialized -05:51:18,527 INFO kernel:HugeTLB registered 2 MB page size, pre-allocated 0 pages -05:51:18,527 NOTICE kernel:VFS: Disk quotas dquot_6.5.2 -05:51:18,527 WARNING kernel:Dquot-cache hash table entries: 512 (order 0, 4096 bytes) -05:51:18,527 INFO kernel:msgmni has been set to 4005 -05:51:18,527 DEBUG kernel:SELinux: Registering netfilter hooks -05:51:18,527 INFO kernel:alg: No test for stdrng (krng) -05:51:18,527 WARNING kernel:ksign: Installing public key data -05:51:18,527 WARNING kernel:Loading keyring -05:51:18,527 WARNING kernel:- Added public key 8A44323FB303E068 -05:51:18,527 WARNING kernel: - key was been created 363988184 seconds in future -05:51:18,527 WARNING kernel:- User ID: CentOS (Kernel Module GPG key) -05:51:18,527 INFO kernel:Block layer SCSI generic (bsg) driver version 0.4 loaded (major 251) -05:51:18,527 INFO kernel:io scheduler noop registered -05:51:18,527 INFO kernel:io scheduler anticipatory registered -05:51:18,527 INFO kernel:io scheduler deadline registered -05:51:18,527 INFO kernel:io scheduler cfq registered (default) -05:51:18,527 DEBUG kernel:pcieport 0000:00:15.0: setting latency timer to 64 -05:51:18,527 DEBUG kernel: alloc irq_desc for 24 on node -1 -05:51:18,527 DEBUG kernel: alloc kstat_irqs on node -1 -05:51:18,527 DEBUG kernel:pcieport 0000:00:15.0: irq 24 for MSI/MSI-X -05:51:18,527 DEBUG kernel:pcieport 0000:00:15.1: setting latency timer to 64 -05:51:18,527 DEBUG kernel: alloc irq_desc for 25 on node -1 -05:51:18,527 DEBUG kernel: alloc kstat_irqs on node -1 -05:51:18,527 DEBUG kernel:pcieport 0000:00:15.1: irq 25 for MSI/MSI-X -05:51:18,527 DEBUG kernel:pcieport 0000:00:15.2: setting latency timer to 64 -05:51:18,527 DEBUG kernel: alloc irq_desc for 26 on node -1 -05:51:18,527 DEBUG kernel: alloc kstat_irqs on node -1 -05:51:18,527 DEBUG kernel:pcieport 0000:00:15.2: irq 26 for MSI/MSI-X -05:51:18,527 DEBUG kernel:pcieport 0000:00:15.3: setting latency timer to 64 -05:51:18,527 DEBUG kernel: alloc irq_desc for 27 on node -1 -05:51:18,527 DEBUG kernel: alloc kstat_irqs on node -1 -05:51:18,527 DEBUG kernel:pcieport 0000:00:15.3: irq 27 for MSI/MSI-X -05:51:18,527 DEBUG kernel:pcieport 0000:00:15.4: setting latency timer to 64 -05:51:18,527 DEBUG kernel: alloc irq_desc for 28 on node -1 -05:51:18,527 DEBUG kernel: alloc kstat_irqs on node -1 -05:51:18,527 DEBUG kernel:pcieport 0000:00:15.4: irq 28 for MSI/MSI-X -05:51:18,527 DEBUG kernel:pcieport 0000:00:15.5: setting latency timer to 64 -05:51:18,527 DEBUG kernel: alloc irq_desc for 29 on node -1 -05:51:18,527 DEBUG kernel: alloc kstat_irqs on node -1 -05:51:18,527 DEBUG kernel:pcieport 0000:00:15.5: irq 29 for MSI/MSI-X -05:51:18,527 DEBUG kernel:pcieport 0000:00:15.6: setting latency timer to 64 -05:51:18,527 DEBUG kernel: alloc irq_desc for 30 on node -1 -05:51:18,527 DEBUG kernel: alloc kstat_irqs on node -1 -05:51:18,527 DEBUG kernel:pcieport 0000:00:15.6: irq 30 for MSI/MSI-X -05:51:18,527 DEBUG kernel:pcieport 0000:00:15.7: setting latency timer to 64 -05:51:18,527 DEBUG kernel: alloc irq_desc for 31 on node -1 -05:51:18,527 DEBUG kernel: alloc kstat_irqs on node -1 -05:51:18,527 DEBUG kernel:pcieport 0000:00:15.7: irq 31 for MSI/MSI-X -05:51:18,527 DEBUG kernel:pcieport 0000:00:16.0: setting latency timer to 64 -05:51:18,527 DEBUG kernel: alloc irq_desc for 32 on node -1 -05:51:18,527 DEBUG kernel: alloc kstat_irqs on node -1 -05:51:18,527 DEBUG kernel:pcieport 0000:00:16.0: irq 32 for MSI/MSI-X -05:51:18,527 DEBUG kernel:pcieport 0000:00:16.1: setting latency timer to 64 -05:51:18,527 DEBUG kernel: alloc irq_desc for 33 on node -1 -05:51:18,527 DEBUG kernel: alloc kstat_irqs on node -1 -05:51:18,527 DEBUG kernel:pcieport 0000:00:16.1: irq 33 for MSI/MSI-X -05:51:18,527 DEBUG kernel:pcieport 0000:00:16.2: setting latency timer to 64 -05:51:18,527 DEBUG kernel: alloc irq_desc for 34 on node -1 -05:51:18,527 DEBUG kernel: alloc kstat_irqs on node -1 -05:51:18,527 DEBUG kernel:pcieport 0000:00:16.2: irq 34 for MSI/MSI-X -05:51:18,527 DEBUG kernel:pcieport 0000:00:16.3: setting latency timer to 64 -05:51:18,527 DEBUG kernel: alloc irq_desc for 35 on node -1 -05:51:18,527 DEBUG kernel: alloc kstat_irqs on node -1 -05:51:18,527 DEBUG kernel:pcieport 0000:00:16.3: irq 35 for MSI/MSI-X -05:51:18,527 DEBUG kernel:pcieport 0000:00:16.4: setting latency timer to 64 -05:51:18,527 DEBUG kernel: alloc irq_desc for 36 on node -1 -05:51:18,527 DEBUG kernel: alloc kstat_irqs on node -1 -05:51:18,527 DEBUG kernel:pcieport 0000:00:16.4: irq 36 for MSI/MSI-X -05:51:18,527 DEBUG kernel:pcieport 0000:00:16.5: setting latency timer to 64 -05:51:18,527 DEBUG kernel: alloc irq_desc for 37 on node -1 -05:51:18,527 DEBUG kernel: alloc kstat_irqs on node -1 -05:51:18,527 DEBUG kernel:pcieport 0000:00:16.5: irq 37 for MSI/MSI-X -05:51:18,527 DEBUG kernel:pcieport 0000:00:16.6: setting latency timer to 64 -05:51:18,527 DEBUG kernel: alloc irq_desc for 38 on node -1 -05:51:18,527 DEBUG kernel: alloc kstat_irqs on node -1 -05:51:18,527 DEBUG kernel:pcieport 0000:00:16.6: irq 38 for MSI/MSI-X -05:51:18,527 DEBUG kernel:pcieport 0000:00:16.7: setting latency timer to 64 -05:51:18,527 DEBUG kernel: alloc irq_desc for 39 on node -1 -05:51:18,527 DEBUG kernel: alloc kstat_irqs on node -1 -05:51:18,527 DEBUG kernel:pcieport 0000:00:16.7: irq 39 for MSI/MSI-X -05:51:18,527 DEBUG kernel:pcieport 0000:00:17.0: setting latency timer to 64 -05:51:18,527 DEBUG kernel: alloc irq_desc for 40 on node -1 -05:51:18,527 DEBUG kernel: alloc kstat_irqs on node -1 -05:51:18,527 DEBUG kernel:pcieport 0000:00:17.0: irq 40 for MSI/MSI-X -05:51:18,527 DEBUG kernel:pcieport 0000:00:17.1: setting latency timer to 64 -05:51:18,527 DEBUG kernel: alloc irq_desc for 41 on node -1 -05:51:18,527 DEBUG kernel: alloc kstat_irqs on node -1 -05:51:18,527 DEBUG kernel:pcieport 0000:00:17.1: irq 41 for MSI/MSI-X -05:51:18,527 DEBUG kernel:pcieport 0000:00:17.2: setting latency timer to 64 -05:51:18,527 DEBUG kernel: alloc irq_desc for 42 on node -1 -05:51:18,527 DEBUG kernel: alloc kstat_irqs on node -1 -05:51:18,527 DEBUG kernel:pcieport 0000:00:17.2: irq 42 for MSI/MSI-X -05:51:18,527 DEBUG kernel:pcieport 0000:00:17.3: setting latency timer to 64 -05:51:18,527 DEBUG kernel: alloc irq_desc for 43 on node -1 -05:51:18,527 DEBUG kernel: alloc kstat_irqs on node -1 -05:51:18,527 DEBUG kernel:pcieport 0000:00:17.3: irq 43 for MSI/MSI-X -05:51:18,527 DEBUG kernel:pcieport 0000:00:17.4: setting latency timer to 64 -05:51:18,527 DEBUG kernel: alloc irq_desc for 44 on node -1 -05:51:18,527 DEBUG kernel: alloc kstat_irqs on node -1 -05:51:18,527 DEBUG kernel:pcieport 0000:00:17.4: irq 44 for MSI/MSI-X -05:51:18,527 DEBUG kernel:pcieport 0000:00:17.5: setting latency timer to 64 -05:51:18,527 DEBUG kernel: alloc irq_desc for 45 on node -1 -05:51:18,527 DEBUG kernel: alloc kstat_irqs on node -1 -05:51:18,527 DEBUG kernel:pcieport 0000:00:17.5: irq 45 for MSI/MSI-X -05:51:18,527 DEBUG kernel:pcieport 0000:00:17.6: setting latency timer to 64 -05:51:18,527 DEBUG kernel: alloc irq_desc for 46 on node -1 -05:51:18,527 DEBUG kernel: alloc kstat_irqs on node -1 -05:51:18,527 DEBUG kernel:pcieport 0000:00:17.6: irq 46 for MSI/MSI-X -05:51:18,527 DEBUG kernel:pcieport 0000:00:17.7: setting latency timer to 64 -05:51:18,527 DEBUG kernel: alloc irq_desc for 47 on node -1 -05:51:18,527 DEBUG kernel: alloc kstat_irqs on node -1 -05:51:18,527 DEBUG kernel:pcieport 0000:00:17.7: irq 47 for MSI/MSI-X -05:51:18,527 DEBUG kernel:pcieport 0000:00:18.0: setting latency timer to 64 -05:51:18,527 DEBUG kernel: alloc irq_desc for 48 on node -1 -05:51:18,527 DEBUG kernel: alloc kstat_irqs on node -1 -05:51:18,527 DEBUG kernel:pcieport 0000:00:18.0: irq 48 for MSI/MSI-X -05:51:18,527 DEBUG kernel:pcieport 0000:00:18.1: setting latency timer to 64 -05:51:18,527 DEBUG kernel: alloc irq_desc for 49 on node -1 -05:51:18,527 DEBUG kernel: alloc kstat_irqs on node -1 -05:51:18,527 DEBUG kernel:pcieport 0000:00:18.1: irq 49 for MSI/MSI-X -05:51:18,527 DEBUG kernel:pcieport 0000:00:18.2: setting latency timer to 64 -05:51:18,527 DEBUG kernel: alloc irq_desc for 50 on node -1 -05:51:18,527 DEBUG kernel: alloc kstat_irqs on node -1 -05:51:18,527 DEBUG kernel:pcieport 0000:00:18.2: irq 50 for MSI/MSI-X -05:51:18,527 DEBUG kernel:pcieport 0000:00:18.3: setting latency timer to 64 -05:51:18,527 DEBUG kernel: alloc irq_desc for 51 on node -1 -05:51:18,527 DEBUG kernel: alloc kstat_irqs on node -1 -05:51:18,527 DEBUG kernel:pcieport 0000:00:18.3: irq 51 for MSI/MSI-X -05:51:18,527 DEBUG kernel:pcieport 0000:00:18.4: setting latency timer to 64 -05:51:18,527 DEBUG kernel: alloc irq_desc for 52 on node -1 -05:51:18,527 DEBUG kernel: alloc kstat_irqs on node -1 -05:51:18,527 DEBUG kernel:pcieport 0000:00:18.4: irq 52 for MSI/MSI-X -05:51:18,527 DEBUG kernel:pcieport 0000:00:18.5: setting latency timer to 64 -05:51:18,527 DEBUG kernel: alloc irq_desc for 53 on node -1 -05:51:18,527 DEBUG kernel: alloc kstat_irqs on node -1 -05:51:18,527 DEBUG kernel:pcieport 0000:00:18.5: irq 53 for MSI/MSI-X -05:51:18,527 DEBUG kernel:pcieport 0000:00:18.6: setting latency timer to 64 -05:51:18,527 DEBUG kernel: alloc irq_desc for 54 on node -1 -05:51:18,527 DEBUG kernel: alloc kstat_irqs on node -1 -05:51:18,527 DEBUG kernel:pcieport 0000:00:18.6: irq 54 for MSI/MSI-X -05:51:18,527 DEBUG kernel:pcieport 0000:00:18.7: setting latency timer to 64 -05:51:18,527 DEBUG kernel: alloc irq_desc for 55 on node -1 -05:51:18,527 DEBUG kernel: alloc kstat_irqs on node -1 -05:51:18,527 DEBUG kernel:pcieport 0000:00:18.7: irq 55 for MSI/MSI-X -05:51:18,527 INFO kernel:pci_hotplug: PCI Hot Plug PCI Core version: 0.5 -05:51:18,527 INFO kernel:pciehp 0000:00:15.0:pcie04: HPC vendor_id 15ad device_id 7a0 ss_vid 0 ss_did 0 -05:51:18,527 DEBUG kernel:pciehp 0000:00:15.0:pcie04: service driver pciehp loaded -05:51:18,527 INFO kernel:pciehp 0000:00:15.1:pcie04: HPC vendor_id 15ad device_id 7a0 ss_vid 0 ss_did 0 -05:51:18,527 DEBUG kernel:pciehp 0000:00:15.1:pcie04: service driver pciehp loaded -05:51:18,527 INFO kernel:pciehp 0000:00:15.2:pcie04: HPC vendor_id 15ad device_id 7a0 ss_vid 0 ss_did 0 -05:51:18,527 DEBUG kernel:pciehp 0000:00:15.2:pcie04: service driver pciehp loaded -05:51:18,527 INFO kernel:pciehp 0000:00:15.3:pcie04: HPC vendor_id 15ad device_id 7a0 ss_vid 0 ss_did 0 -05:51:18,527 DEBUG kernel:pciehp 0000:00:15.3:pcie04: service driver pciehp loaded -05:51:18,527 INFO kernel:pciehp 0000:00:15.4:pcie04: HPC vendor_id 15ad device_id 7a0 ss_vid 0 ss_did 0 -05:51:18,527 DEBUG kernel:pciehp 0000:00:15.4:pcie04: service driver pciehp loaded -05:51:18,527 INFO kernel:pciehp 0000:00:15.5:pcie04: HPC vendor_id 15ad device_id 7a0 ss_vid 0 ss_did 0 -05:51:18,527 DEBUG kernel:pciehp 0000:00:15.5:pcie04: service driver pciehp loaded -05:51:18,527 INFO kernel:pciehp 0000:00:15.6:pcie04: HPC vendor_id 15ad device_id 7a0 ss_vid 0 ss_did 0 -05:51:18,527 DEBUG kernel:pciehp 0000:00:15.6:pcie04: service driver pciehp loaded -05:51:18,527 INFO kernel:pciehp 0000:00:15.7:pcie04: HPC vendor_id 15ad device_id 7a0 ss_vid 0 ss_did 0 -05:51:18,527 DEBUG kernel:pciehp 0000:00:15.7:pcie04: service driver pciehp loaded -05:51:18,527 INFO kernel:pciehp 0000:00:16.0:pcie04: HPC vendor_id 15ad device_id 7a0 ss_vid 0 ss_did 0 -05:51:18,527 DEBUG kernel:pciehp 0000:00:16.0:pcie04: service driver pciehp loaded -05:51:18,527 INFO kernel:pciehp 0000:00:16.1:pcie04: HPC vendor_id 15ad device_id 7a0 ss_vid 0 ss_did 0 -05:51:18,527 DEBUG kernel:pciehp 0000:00:16.1:pcie04: service driver pciehp loaded -05:51:18,527 INFO kernel:pciehp 0000:00:16.2:pcie04: HPC vendor_id 15ad device_id 7a0 ss_vid 0 ss_did 0 -05:51:18,527 DEBUG kernel:pciehp 0000:00:16.2:pcie04: service driver pciehp loaded -05:51:18,527 INFO kernel:pciehp 0000:00:16.3:pcie04: HPC vendor_id 15ad device_id 7a0 ss_vid 0 ss_did 0 -05:51:18,527 DEBUG kernel:pciehp 0000:00:16.3:pcie04: service driver pciehp loaded -05:51:18,527 INFO kernel:pciehp 0000:00:16.4:pcie04: HPC vendor_id 15ad device_id 7a0 ss_vid 0 ss_did 0 -05:51:18,527 DEBUG kernel:pciehp 0000:00:16.4:pcie04: service driver pciehp loaded -05:51:18,527 INFO kernel:pciehp 0000:00:16.5:pcie04: HPC vendor_id 15ad device_id 7a0 ss_vid 0 ss_did 0 -05:51:18,527 DEBUG kernel:pciehp 0000:00:16.5:pcie04: service driver pciehp loaded -05:51:18,527 INFO kernel:pciehp 0000:00:16.6:pcie04: HPC vendor_id 15ad device_id 7a0 ss_vid 0 ss_did 0 -05:51:18,527 DEBUG kernel:pciehp 0000:00:16.6:pcie04: service driver pciehp loaded -05:51:18,527 INFO kernel:pciehp 0000:00:16.7:pcie04: HPC vendor_id 15ad device_id 7a0 ss_vid 0 ss_did 0 -05:51:18,527 DEBUG kernel:pciehp 0000:00:16.7:pcie04: service driver pciehp loaded -05:51:18,527 INFO kernel:pciehp 0000:00:17.0:pcie04: HPC vendor_id 15ad device_id 7a0 ss_vid 0 ss_did 0 -05:51:18,527 DEBUG kernel:pciehp 0000:00:17.0:pcie04: service driver pciehp loaded -05:51:18,527 INFO kernel:pciehp 0000:00:17.1:pcie04: HPC vendor_id 15ad device_id 7a0 ss_vid 0 ss_did 0 -05:51:18,527 DEBUG kernel:pciehp 0000:00:17.1:pcie04: service driver pciehp loaded -05:51:18,527 INFO kernel:pciehp 0000:00:17.2:pcie04: HPC vendor_id 15ad device_id 7a0 ss_vid 0 ss_did 0 -05:51:18,527 DEBUG kernel:pciehp 0000:00:17.2:pcie04: service driver pciehp loaded -05:51:18,527 INFO kernel:pciehp 0000:00:17.3:pcie04: HPC vendor_id 15ad device_id 7a0 ss_vid 0 ss_did 0 -05:51:18,527 DEBUG kernel:pciehp 0000:00:17.3:pcie04: service driver pciehp loaded -05:51:18,527 INFO kernel:pciehp 0000:00:17.4:pcie04: HPC vendor_id 15ad device_id 7a0 ss_vid 0 ss_did 0 -05:51:18,527 DEBUG kernel:pciehp 0000:00:17.4:pcie04: service driver pciehp loaded -05:51:18,527 INFO kernel:pciehp 0000:00:17.5:pcie04: HPC vendor_id 15ad device_id 7a0 ss_vid 0 ss_did 0 -05:51:18,527 DEBUG kernel:pciehp 0000:00:17.5:pcie04: service driver pciehp loaded -05:51:18,527 INFO kernel:pciehp 0000:00:17.6:pcie04: HPC vendor_id 15ad device_id 7a0 ss_vid 0 ss_did 0 -05:51:18,527 DEBUG kernel:pciehp 0000:00:17.6:pcie04: service driver pciehp loaded -05:51:18,527 INFO kernel:pciehp 0000:00:17.7:pcie04: HPC vendor_id 15ad device_id 7a0 ss_vid 0 ss_did 0 -05:51:18,527 DEBUG kernel:pciehp 0000:00:17.7:pcie04: service driver pciehp loaded -05:51:18,527 INFO kernel:pciehp 0000:00:18.0:pcie04: HPC vendor_id 15ad device_id 7a0 ss_vid 0 ss_did 0 -05:51:18,527 DEBUG kernel:pciehp 0000:00:18.0:pcie04: service driver pciehp loaded -05:51:18,527 INFO kernel:pciehp 0000:00:18.1:pcie04: HPC vendor_id 15ad device_id 7a0 ss_vid 0 ss_did 0 -05:51:18,527 DEBUG kernel:pciehp 0000:00:18.1:pcie04: service driver pciehp loaded -05:51:18,527 INFO kernel:pciehp 0000:00:18.2:pcie04: HPC vendor_id 15ad device_id 7a0 ss_vid 0 ss_did 0 -05:51:18,527 DEBUG kernel:pciehp 0000:00:18.2:pcie04: service driver pciehp loaded -05:51:18,527 INFO kernel:pciehp 0000:00:18.3:pcie04: HPC vendor_id 15ad device_id 7a0 ss_vid 0 ss_did 0 -05:51:18,527 DEBUG kernel:pciehp 0000:00:18.3:pcie04: service driver pciehp loaded -05:51:18,527 INFO kernel:pciehp 0000:00:18.4:pcie04: HPC vendor_id 15ad device_id 7a0 ss_vid 0 ss_did 0 -05:51:18,527 DEBUG kernel:pciehp 0000:00:18.4:pcie04: service driver pciehp loaded -05:51:18,527 INFO kernel:pciehp 0000:00:18.5:pcie04: HPC vendor_id 15ad device_id 7a0 ss_vid 0 ss_did 0 -05:51:18,527 DEBUG kernel:pciehp 0000:00:18.5:pcie04: service driver pciehp loaded -05:51:18,527 INFO kernel:pciehp 0000:00:18.6:pcie04: HPC vendor_id 15ad device_id 7a0 ss_vid 0 ss_did 0 -05:51:18,527 DEBUG kernel:pciehp 0000:00:18.6:pcie04: service driver pciehp loaded -05:51:18,527 INFO kernel:pciehp 0000:00:18.7:pcie04: HPC vendor_id 15ad device_id 7a0 ss_vid 0 ss_did 0 -05:51:18,527 DEBUG kernel:pciehp 0000:00:18.7:pcie04: service driver pciehp loaded -05:51:18,527 INFO kernel:pciehp: PCI Express Hot Plug Controller Driver version: 0.4 -05:51:18,527 INFO kernel:acpiphp: ACPI Hot Plug PCI Controller Driver version: 0.5 -05:51:18,527 INFO kernel:acpiphp: Slot [32] registered -05:51:18,527 INFO kernel:acpiphp: Slot [33] registered -05:51:18,527 INFO kernel:acpiphp: Slot [34] registered -05:51:18,527 INFO kernel:acpiphp: Slot [35] registered -05:51:18,527 INFO kernel:acpiphp: Slot [36] registered -05:51:18,527 INFO kernel:acpiphp: Slot [37] registered -05:51:18,527 INFO kernel:acpiphp: Slot [38] registered -05:51:18,527 INFO kernel:acpiphp: Slot [39] registered -05:51:18,527 INFO kernel:acpiphp: Slot [40] registered -05:51:18,527 INFO kernel:acpiphp: Slot [41] registered -05:51:18,527 INFO kernel:acpiphp: Slot [42] registered -05:51:18,527 INFO kernel:acpiphp: Slot [43] registered -05:51:18,527 INFO kernel:acpiphp: Slot [44] registered -05:51:18,527 INFO kernel:acpiphp: Slot [45] registered -05:51:18,527 INFO kernel:acpiphp: Slot [46] registered -05:51:18,527 INFO kernel:acpiphp: Slot [47] registered -05:51:18,527 INFO kernel:acpiphp: Slot [48] registered -05:51:18,527 INFO kernel:acpiphp: Slot [49] registered -05:51:18,527 INFO kernel:acpiphp: Slot [50] registered -05:51:18,527 INFO kernel:acpiphp: Slot [51] registered -05:51:18,527 INFO kernel:acpiphp: Slot [52] registered -05:51:18,527 INFO kernel:acpiphp: Slot [53] registered -05:51:18,527 INFO kernel:acpiphp: Slot [54] registered -05:51:18,527 INFO kernel:acpiphp: Slot [55] registered -05:51:18,527 INFO kernel:acpiphp: Slot [56] registered -05:51:18,527 INFO kernel:acpiphp: Slot [57] registered -05:51:18,527 INFO kernel:acpiphp: Slot [58] registered -05:51:18,527 INFO kernel:acpiphp: Slot [59] registered -05:51:18,527 INFO kernel:acpiphp: Slot [60] registered -05:51:18,527 INFO kernel:acpiphp: Slot [61] registered -05:51:18,527 INFO kernel:acpiphp: Slot [62] registered -05:51:18,527 INFO kernel:acpiphp: Slot [63] registered -05:51:18,527 WARNING kernel:acpiphp_glue: Slot 160 already registered by another hotplug driver -05:51:18,527 WARNING kernel:acpiphp_glue: Slot 192 already registered by another hotplug driver -05:51:18,527 WARNING kernel:acpiphp_glue: Slot 224 already registered by another hotplug driver -05:51:18,527 WARNING kernel:acpiphp_glue: Slot 256 already registered by another hotplug driver -05:51:18,527 WARNING kernel:acpiphp_glue: Slot 161 already registered by another hotplug driver -05:51:18,527 WARNING kernel:acpiphp_glue: Slot 162 already registered by another hotplug driver -05:51:18,527 WARNING kernel:acpiphp_glue: Slot 163 already registered by another hotplug driver -05:51:18,527 WARNING kernel:acpiphp_glue: Slot 164 already registered by another hotplug driver -05:51:18,527 WARNING kernel:acpiphp_glue: Slot 165 already registered by another hotplug driver -05:51:18,527 WARNING kernel:acpiphp_glue: Slot 166 already registered by another hotplug driver -05:51:18,527 WARNING kernel:acpiphp_glue: Slot 167 already registered by another hotplug driver -05:51:18,527 WARNING kernel:acpiphp_glue: Slot 193 already registered by another hotplug driver -05:51:18,527 WARNING kernel:acpiphp_glue: Slot 194 already registered by another hotplug driver -05:51:18,527 WARNING kernel:acpiphp_glue: Slot 195 already registered by another hotplug driver -05:51:18,527 WARNING kernel:acpiphp_glue: Slot 196 already registered by another hotplug driver -05:51:18,527 WARNING kernel:acpiphp_glue: Slot 197 already registered by another hotplug driver -05:51:18,527 WARNING kernel:acpiphp_glue: Slot 198 already registered by another hotplug driver -05:51:18,527 WARNING kernel:acpiphp_glue: Slot 199 already registered by another hotplug driver -05:51:18,527 WARNING kernel:acpiphp_glue: Slot 225 already registered by another hotplug driver -05:51:18,527 WARNING kernel:acpiphp_glue: Slot 226 already registered by another hotplug driver -05:51:18,527 WARNING kernel:acpiphp_glue: Slot 227 already registered by another hotplug driver -05:51:18,527 WARNING kernel:acpiphp_glue: Slot 228 already registered by another hotplug driver -05:51:18,527 WARNING kernel:acpiphp_glue: Slot 229 already registered by another hotplug driver -05:51:18,527 WARNING kernel:acpiphp_glue: Slot 230 already registered by another hotplug driver -05:51:18,527 WARNING kernel:acpiphp_glue: Slot 231 already registered by another hotplug driver -05:51:18,527 WARNING kernel:acpiphp_glue: Slot 257 already registered by another hotplug driver -05:51:18,527 WARNING kernel:acpiphp_glue: Slot 258 already registered by another hotplug driver -05:51:18,527 WARNING kernel:acpiphp_glue: Slot 259 already registered by another hotplug driver -05:51:18,527 WARNING kernel:acpiphp_glue: Slot 260 already registered by another hotplug driver -05:51:18,527 WARNING kernel:acpiphp_glue: Slot 261 already registered by another hotplug driver -05:51:18,527 WARNING kernel:acpiphp_glue: Slot 262 already registered by another hotplug driver -05:51:18,527 WARNING kernel:acpiphp_glue: Slot 263 already registered by another hotplug driver -05:51:18,527 INFO kernel:ipmi message handler version 39.2 -05:51:18,527 INFO kernel:IPMI System Interface driver. -05:51:18,527 INFO kernel:ipmi_si: Adding default-specified kcs state machine -05:51:18,527 INFO kernel:ipmi_si: Trying default-specified kcs state machine at i/o address 0xca2, slave address 0x0, irq 0 -05:51:18,527 INFO kernel:ipmi_si: Interface detection failed -05:51:18,527 INFO kernel:ipmi_si: Adding default-specified smic state machine -05:51:18,527 INFO kernel:ipmi_si: Trying default-specified smic state machine at i/o address 0xca9, slave address 0x0, irq 0 -05:51:18,527 INFO kernel:ipmi_si: Interface detection failed -05:51:18,527 INFO kernel:ipmi_si: Adding default-specified bt state machine -05:51:18,527 INFO kernel:ipmi_si: Trying default-specified bt state machine at i/o address 0xe4, slave address 0x0, irq 0 -05:51:18,527 INFO kernel:ipmi_si: Interface detection failed -05:51:18,527 WARNING kernel:ipmi_si: Unable to find any System Interface(s) -05:51:18,527 INFO kernel:ACPI: AC Adapter [ACAD] (on-line) -05:51:18,527 INFO kernel:input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input0 -05:51:18,527 INFO kernel:ACPI: Power Button [PWRF] -05:51:18,527 DEBUG kernel:ACPI: acpi_idle registered with cpuidle -05:51:18,527 WARNING kernel:ACPI Exception: AE_NOT_FOUND, No or invalid critical threshold (20090903/thermal-386) -05:51:18,527 INFO kernel:GHES: HEST is not enabled! -05:51:18,527 INFO kernel:Non-volatile memory driver v1.3 -05:51:18,527 INFO kernel:Linux agpgart interface v0.103 -05:51:18,527 INFO kernel:agpgart-intel 0000:00:00.0: Intel 440BX Chipset -05:51:18,527 INFO kernel:agpgart-intel 0000:00:00.0: AGP aperture is 256M @ 0x0 -05:51:18,527 INFO kernel:crash memory driver: version 1.1 -05:51:18,527 INFO kernel:Serial: 8250/16550 driver, 4 ports, IRQ sharing enabled -05:51:18,527 INFO kernel:serial8250: ttyS0 at I/O 0x3f8 (irq = 4) is a 16550A -05:51:18,527 INFO kernel:serial8250: ttyS1 at I/O 0x2f8 (irq = 3) is a 16550A -05:51:18,527 INFO kernel:00:0a: ttyS0 at I/O 0x3f8 (irq = 4) is a 16550A -05:51:18,527 INFO kernel:00:0b: ttyS1 at I/O 0x2f8 (irq = 3) is a 16550A -05:51:18,527 INFO kernel:brd: module loaded -05:51:18,527 INFO kernel:loop: module loaded -05:51:18,527 INFO kernel:input: Macintosh mouse button emulation as /devices/virtual/input/input1 -05:51:18,527 INFO kernel:Fixed MDIO Bus: probed -05:51:18,527 INFO kernel:ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver -05:51:18,527 INFO kernel:ohci_hcd: USB 1.1 'Open' Host Controller (OHCI) Driver -05:51:18,527 INFO kernel:uhci_hcd: USB Universal Host Controller Interface driver -05:51:18,527 INFO kernel:PNP: PS/2 Controller [PNP0303:KBC,PNP0f13:MOUS] at 0x60,0x64 irq 1,12 -05:51:18,527 INFO kernel:Refined TSC clocksource calibration: 2400.080 MHz. -05:51:18,527 INFO kernel:Switching to clocksource tsc -05:51:18,527 INFO kernel:serio: i8042 KBD port at 0x60,0x64 irq 1 -05:51:18,527 INFO kernel:serio: i8042 AUX port at 0x60,0x64 irq 12 -05:51:18,527 INFO kernel:mice: PS/2 mouse device common for all mice -05:51:18,527 INFO kernel:rtc_cmos 00:04: rtc core: registered rtc_cmos as rtc0 -05:51:18,527 INFO kernel:rtc0: alarms up to one month, y3k, 114 bytes nvram, hpet irqs -05:51:18,527 INFO kernel:cpuidle: using governor ladder -05:51:18,527 INFO kernel:cpuidle: using governor menu -05:51:18,527 INFO kernel:EFI Variables Facility v0.08 2004-May-17 -05:51:18,527 INFO kernel:usbcore: registered new interface driver hiddev -05:51:18,527 INFO kernel:usbcore: registered new interface driver usbhid -05:51:18,527 INFO kernel:usbhid: v2.6:USB HID core driver -05:51:18,527 INFO kernel:GRE over IPv4 demultiplexor driver -05:51:18,527 INFO kernel:TCP cubic registered -05:51:18,527 INFO kernel:input: AT Translated Set 2 keyboard as /devices/platform/i8042/serio0/input/input2 -05:51:18,527 INFO kernel:Initializing XFRM netlink socket -05:51:18,527 INFO kernel:NET: Registered protocol family 17 -05:51:18,527 WARNING kernel:registered taskstats version 1 -05:51:18,527 INFO kernel:input: ImPS/2 Generic Wheel Mouse as /devices/platform/i8042/serio1/input/input3 -05:51:18,527 INFO kernel:rtc_cmos 00:04: setting system clock to 2002-05-11 05:51:18 UTC (1021096278) -05:51:18,527 INFO kernel:Initalizing network drop monitor service -05:51:18,527 INFO kernel:Freeing unused kernel memory: 1276k freed -05:51:18,527 INFO kernel:Write protecting the kernel read-only data: 10240k -05:51:18,527 INFO kernel:Freeing unused kernel memory: 800k freed -05:51:18,527 INFO kernel:Freeing unused kernel memory: 1588k freed -05:51:20,557 INFO kernel:squashfs: version 4.0 (2009/01/31) Phillip Lougher -05:51:20,568 INFO kernel:Loading iSCSI transport class v2.0-870. -05:51:20,587 NOTICE kernel:iscsi: registered transport (tcp) -05:51:20,594 INFO kernel:Floppy drive(s): fd0 is 1.44M -05:51:20,605 INFO kernel:FDC 0 is a post-1991 82077 -05:51:20,610 INFO kernel:BIOS EDD facility v0.16 2004-Jun-25, 2 devices found -05:51:20,614 INFO kernel:input: PC Speaker as /devices/platform/pcspkr/input/input4 -05:51:20,620 INFO kernel:No iBFT detected. -05:51:20,655 INFO kernel:NET: Registered protocol family 10 -05:51:20,657 INFO kernel:lo: Disabled Privacy Extensions -05:51:20,739 DEBUG kernel:ata_piix 0000:00:07.1: version 2.13 -05:51:20,740 INFO kernel:scsi0 : ata_piix -05:51:20,740 INFO kernel:scsi1 : ata_piix -05:51:20,740 INFO kernel:ata1: PATA max UDMA/33 cmd 0x1f0 ctl 0x3f6 bmdma 0x10c0 irq 14 -05:51:20,740 INFO kernel:ata2: PATA max UDMA/33 cmd 0x170 ctl 0x376 bmdma 0x10c8 irq 15 -05:51:20,750 ERR udevd-work: device node '/dev/rtc' already exists, link to '/dev/rtc0' will not overwrite it -05:51:20,926 INFO kernel:ata2.00: ATAPI: VMware Virtual IDE CDROM Drive, 00000001, max UDMA/33 -05:51:20,934 INFO kernel:ata2.00: configured for UDMA/33 -05:51:20,934 NOTICE kernel:scsi 1:0:0:0: CD-ROM NECVMWar VMware IDE CDR10 1.00 PQ: 0 ANSI: 5 -05:51:20,959 INFO kernel:Fusion MPT base driver 3.04.20 -05:51:20,959 INFO kernel:Copyright (c) 1999-2008 LSI Corporation -05:51:20,971 INFO kernel:Fusion MPT SPI Host driver 3.04.20 -05:51:20,971 DEBUG kernel: alloc irq_desc for 17 on node -1 -05:51:20,971 DEBUG kernel: alloc kstat_irqs on node -1 -05:51:20,971 INFO kernel:mptspi 0000:00:10.0: PCI INT A -> GSI 17 (level, low) -> IRQ 17 -05:51:20,972 INFO kernel:mptbase: ioc0: Initiating bringup -05:51:20,990 INFO kernel:ioc0: LSI53C1030 B0: Capabilities={Initiator} -05:51:21,031 INFO kernel:scsi2 : ioc0: LSI53C1030 B0, FwRev=01032920h, Ports=1, MaxQ=128, IRQ=17 -05:51:21,061 NOTICE kernel:scsi 2:0:0:0: Direct-Access VMware Virtual disk 1.0 PQ: 0 ANSI: 2 -05:51:21,061 INFO kernel:scsi target2:0:0: Beginning Domain Validation -05:51:21,061 INFO kernel:scsi target2:0:0: Domain Validation skipping write tests -05:51:21,061 INFO kernel:scsi target2:0:0: Ending Domain Validation -05:51:21,061 INFO kernel:scsi target2:0:0: FAST-40 WIDE SCSI 80.0 MB/s ST (25 ns, offset 127) -05:51:21,061 NOTICE kernel:scsi 2:0:1:0: Direct-Access VMware Virtual disk 1.0 PQ: 0 ANSI: 2 -05:51:21,061 INFO kernel:scsi target2:0:1: Beginning Domain Validation -05:51:21,061 INFO kernel:scsi target2:0:1: Domain Validation skipping write tests -05:51:21,061 INFO kernel:scsi target2:0:1: Ending Domain Validation -05:51:21,061 INFO kernel:scsi target2:0:1: FAST-40 WIDE SCSI 80.0 MB/s ST (25 ns, offset 127) -05:51:21,088 WARNING kernel:sr0: scsi3-mmc drive: 1x/1x writer dvd-ram cd/rw xa/form2 cdda tray -05:51:21,088 INFO kernel:Uniform CD-ROM driver Revision: 3.20 -05:51:21,088 DEBUG kernel:sr 1:0:0:0: Attached scsi CD-ROM sr0 -05:51:21,098 INFO kernel:e1000: Intel(R) PRO/1000 Network Driver - version 7.3.21-k8-NAPI -05:51:21,098 INFO kernel:e1000: Copyright (c) 1999-2006 Intel Corporation. -05:51:21,098 DEBUG kernel: alloc irq_desc for 18 on node -1 -05:51:21,098 DEBUG kernel: alloc kstat_irqs on node -1 -05:51:21,098 INFO kernel:e1000 0000:02:00.0: PCI INT A -> GSI 18 (level, low) -> IRQ 18 -05:51:21,098 DEBUG kernel:e1000 0000:02:00.0: setting latency timer to 64 -05:51:21,447 INFO kernel:e1000 0000:02:00.0: eth0: (PCI:66MHz:32-bit) 00:0c:29:21:89:af -05:51:21,447 INFO kernel:e1000 0000:02:00.0: eth0: Intel(R) PRO/1000 Network Connection -05:51:21,447 DEBUG kernel: alloc irq_desc for 19 on node -1 -05:51:21,447 DEBUG kernel: alloc kstat_irqs on node -1 -05:51:21,447 INFO kernel:e1000 0000:02:01.0: PCI INT A -> GSI 19 (level, low) -> IRQ 19 -05:51:21,447 DEBUG kernel:e1000 0000:02:01.0: setting latency timer to 64 -05:51:21,793 INFO kernel:e1000 0000:02:01.0: eth1: (PCI:66MHz:32-bit) 00:0c:29:21:89:b9 -05:51:21,793 INFO kernel:e1000 0000:02:01.0: eth1: Intel(R) PRO/1000 Network Connection -05:51:21,793 DEBUG kernel: alloc irq_desc for 16 on node -1 -05:51:21,793 DEBUG kernel: alloc kstat_irqs on node -1 -05:51:21,793 INFO kernel:e1000 0000:02:02.0: PCI INT A -> GSI 16 (level, low) -> IRQ 16 -05:51:21,793 DEBUG kernel:e1000 0000:02:02.0: setting latency timer to 64 -05:51:22,142 INFO kernel:e1000 0000:02:02.0: eth2: (PCI:66MHz:32-bit) 00:0c:29:21:89:c3 -05:51:22,142 INFO kernel:e1000 0000:02:02.0: eth2: Intel(R) PRO/1000 Network Connection -05:51:22,142 INFO kernel:e1000 0000:02:03.0: PCI INT A -> GSI 17 (level, low) -> IRQ 17 -05:51:22,142 DEBUG kernel:e1000 0000:02:03.0: setting latency timer to 64 -05:51:22,485 INFO kernel:e1000 0000:02:03.0: eth3: (PCI:66MHz:32-bit) 00:0c:29:21:89:cd -05:51:22,485 INFO kernel:e1000 0000:02:03.0: eth3: Intel(R) PRO/1000 Network Connection -05:51:22,515 NOTICE kernel:sd 2:0:0:0: [sda] 33554432 512-byte logical blocks: (17.1 GB/16.0 GiB) -05:51:22,515 NOTICE kernel:sd 2:0:0:0: [sda] Write Protect is off -05:51:22,515 DEBUG kernel:sd 2:0:0:0: [sda] Mode Sense: 61 00 00 00 -05:51:22,515 NOTICE kernel:sd 2:0:0:0: [sda] Cache data unavailable -05:51:22,515 ERR kernel:sd 2:0:0:0: [sda] Assuming drive cache: write through -05:51:22,515 NOTICE kernel:sd 2:0:0:0: [sda] Cache data unavailable -05:51:22,515 ERR kernel:sd 2:0:0:0: [sda] Assuming drive cache: write through -05:51:22,516 INFO kernel: sda: -05:51:22,516 NOTICE kernel:sd 2:0:1:0: [sdb] 33554432 512-byte logical blocks: (17.1 GB/16.0 GiB) -05:51:22,516 NOTICE kernel:sd 2:0:1:0: [sdb] Write Protect is off -05:51:22,516 DEBUG kernel:sd 2:0:1:0: [sdb] Mode Sense: 61 00 00 00 -05:51:22,516 NOTICE kernel:sd 2:0:1:0: [sdb] Cache data unavailable -05:51:22,516 ERR kernel:sd 2:0:1:0: [sdb] Assuming drive cache: write through -05:51:22,516 NOTICE kernel:sd 2:0:1:0: [sdb] Cache data unavailable -05:51:22,516 ERR kernel:sd 2:0:1:0: [sdb] Assuming drive cache: write through -05:51:22,522 INFO kernel: sdb: -05:51:22,522 NOTICE kernel:sd 2:0:1:0: [sdb] Cache data unavailable -05:51:22,522 ERR kernel:sd 2:0:1:0: [sdb] Assuming drive cache: write through -05:51:22,522 NOTICE kernel:sd 2:0:1:0: [sdb] Attached SCSI disk -05:51:22,577 WARNING kernel: sda1 sda2 sda3 -05:51:22,598 NOTICE kernel:sd 2:0:0:0: [sda] Cache data unavailable -05:51:22,598 ERR kernel:sd 2:0:0:0: [sda] Assuming drive cache: write through -05:51:22,598 NOTICE kernel:sd 2:0:0:0: [sda] Attached SCSI disk -05:51:22,606 NOTICE kernel:sr 1:0:0:0: Attached scsi generic sg0 type 5 -05:51:22,606 NOTICE kernel:sd 2:0:0:0: Attached scsi generic sg1 type 0 -05:51:22,606 NOTICE kernel:sd 2:0:1:0: Attached scsi generic sg2 type 0 -05:51:28,012 ERR udevd-work: device node '/dev/rtc' already exists, link to '/dev/rtc0' will not overwrite it -05:51:46,181 INFO NetworkManager: NetworkManager (version 0.8.1-66.el6) is starting... -05:51:46,181 INFO NetworkManager: Read config file /etc/NetworkManager/NetworkManager.conf -05:51:46,183 INFO NetworkManager: trying to start the modem manager... -05:51:46,186 INFO NetworkManager: monitoring kernel firmware directory '/lib/firmware'. -05:51:46,186 INFO NetworkManager: Bonding/Bridging/VLAN support enabled -05:51:46,188 NOTICE NetworkManager: ifcfg-rh: Acquired D-Bus service com.redhat.ifcfgrh1 -05:51:46,188 INFO NetworkManager: Loaded plugin ifcfg-rh: (c) 2007 - 2008 Red Hat, Inc. To report bugs please use the NetworkManager mailing list. -05:51:46,188 INFO NetworkManager: Loaded plugin keyfile: (c) 2007 - 2008 Red Hat, Inc. To report bugs please use the NetworkManager mailing list. -05:51:46,188 NOTICE NetworkManager: ifcfg-rh: parsing /etc/sysconfig/network-scripts/ifcfg-eth3 ... -05:51:46,190 NOTICE NetworkManager: ifcfg-rh: read connection 'System eth3' -05:51:46,190 NOTICE NetworkManager: ifcfg-rh: parsing /etc/sysconfig/network-scripts/ifcfg-eth2 ... -05:51:46,190 NOTICE NetworkManager: ifcfg-rh: read connection 'System eth2' -05:51:46,190 NOTICE NetworkManager: ifcfg-rh: parsing /etc/sysconfig/network-scripts/ifcfg-eth1 ... -05:51:46,191 NOTICE NetworkManager: ifcfg-rh: read connection 'System eth1' -05:51:46,191 NOTICE NetworkManager: ifcfg-rh: parsing /etc/sysconfig/network-scripts/ifcfg-eth0 ... -05:51:46,192 NOTICE NetworkManager: ifcfg-rh: read connection 'System eth0' -05:51:46,192 WARNING NetworkManager: Can not read directory '/etc/NetworkManager/system-connections': Error opening directory '/etc/NetworkManager/system-connections': No such file or directory -05:51:46,194 INFO NetworkManager: WiFi enabled by radio killswitch; enabled by state file -05:51:46,194 INFO NetworkManager: WWAN enabled by radio killswitch; enabled by state file -05:51:46,194 INFO NetworkManager: WiMAX enabled by radio killswitch; enabled by state file -05:51:46,194 INFO NetworkManager: Networking is enabled by state file -05:51:46,212 INFO kernel:802.1Q VLAN Support v1.8 Ben Greear -05:51:46,212 INFO kernel:All bugs added by David S. Miller -05:51:46,217 INFO kernel:e1000: eth0 NIC Link is Up 1000 Mbps Full Duplex, Flow Control: None -05:51:46,218 INFO NetworkManager: (eth0): carrier is OFF -05:51:46,218 INFO NetworkManager: (eth0): new Ethernet device (driver: 'e1000' ifindex: 2) -05:51:46,218 INFO NetworkManager: (eth0): exported as /org/freedesktop/NetworkManager/Devices/0 -05:51:46,218 INFO NetworkManager: (eth0): now managed -05:51:46,218 INFO NetworkManager: (eth0): device state change: 1 -> 2 (reason 2) -05:51:46,218 INFO NetworkManager: (eth0): bringing up device. -05:51:46,221 INFO kernel:8021q: adding VLAN 0 to HW filter on device eth0 -05:51:46,222 INFO NetworkManager: (eth0): carrier now ON (device state 2) -05:51:46,222 INFO NetworkManager: (eth0): preparing device. -05:51:46,222 INFO NetworkManager: (eth0): deactivating device (reason: 2). -05:51:46,223 INFO NetworkManager: (eth1): carrier is OFF -05:51:46,224 INFO NetworkManager: (eth1): new Ethernet device (driver: 'e1000' ifindex: 3) -05:51:46,224 INFO NetworkManager: (eth1): exported as /org/freedesktop/NetworkManager/Devices/1 -05:51:46,224 INFO NetworkManager: (eth1): now managed -05:51:46,224 INFO NetworkManager: (eth1): device state change: 1 -> 2 (reason 2) -05:51:46,224 INFO NetworkManager: (eth1): bringing up device. -05:51:46,229 INFO kernel:e1000: eth1 NIC Link is Up 1000 Mbps Full Duplex, Flow Control: None -05:51:46,233 INFO kernel:8021q: adding VLAN 0 to HW filter on device eth1 -05:51:46,233 INFO NetworkManager: (eth1): carrier now ON (device state 2) -05:51:46,234 INFO NetworkManager: (eth1): preparing device. -05:51:46,234 INFO NetworkManager: (eth1): deactivating device (reason: 2). -05:51:46,235 INFO NetworkManager: (eth2): carrier is OFF -05:51:46,235 INFO NetworkManager: (eth2): new Ethernet device (driver: 'e1000' ifindex: 4) -05:51:46,235 INFO NetworkManager: (eth2): exported as /org/freedesktop/NetworkManager/Devices/2 -05:51:46,235 INFO NetworkManager: (eth2): now managed -05:51:46,235 INFO NetworkManager: (eth2): device state change: 1 -> 2 (reason 2) -05:51:46,235 INFO NetworkManager: (eth2): bringing up device. -05:51:46,240 INFO kernel:e1000: eth2 NIC Link is Up 1000 Mbps Full Duplex, Flow Control: None -05:51:46,244 INFO kernel:8021q: adding VLAN 0 to HW filter on device eth2 -05:51:46,245 INFO NetworkManager: (eth2): carrier now ON (device state 2) -05:51:46,245 INFO NetworkManager: (eth2): preparing device. -05:51:46,245 INFO NetworkManager: (eth2): deactivating device (reason: 2). -05:51:46,246 INFO NetworkManager: (eth3): carrier is OFF -05:51:46,247 INFO NetworkManager: (eth3): new Ethernet device (driver: 'e1000' ifindex: 5) -05:51:46,247 INFO NetworkManager: (eth3): exported as /org/freedesktop/NetworkManager/Devices/3 -05:51:46,247 INFO NetworkManager: (eth3): now managed -05:51:46,247 INFO NetworkManager: (eth3): device state change: 1 -> 2 (reason 2) -05:51:46,247 INFO NetworkManager: (eth3): bringing up device. -05:51:46,251 INFO kernel:e1000: eth3 NIC Link is Up 1000 Mbps Full Duplex, Flow Control: None -05:51:46,255 INFO kernel:8021q: adding VLAN 0 to HW filter on device eth3 -05:51:46,256 INFO NetworkManager: (eth3): carrier now ON (device state 2) -05:51:46,256 INFO NetworkManager: (eth3): preparing device. -05:51:46,256 INFO NetworkManager: (eth3): deactivating device (reason: 2). -05:51:46,258 INFO NetworkManager: (eth0): carrier now OFF (device state 2) -05:51:46,258 INFO NetworkManager: (eth0): carrier now ON (device state 2) -05:51:46,258 WARNING NetworkManager: (nm-device.c:4447):nm_device_queue_state: runtime check failed: (priv->queued_state.id == 0) -05:51:46,258 INFO NetworkManager: (eth1): carrier now OFF (device state 2) -05:51:46,259 INFO NetworkManager: (eth1): carrier now ON (device state 2) -05:51:46,259 WARNING NetworkManager: (nm-device.c:4447):nm_device_queue_state: runtime check failed: (priv->queued_state.id == 0) -05:51:46,259 INFO NetworkManager: (eth2): carrier now OFF (device state 2) -05:51:46,259 INFO NetworkManager: (eth2): carrier now ON (device state 2) -05:51:46,259 WARNING NetworkManager: (nm-device.c:4447):nm_device_queue_state: runtime check failed: (priv->queued_state.id == 0) -05:51:46,259 INFO NetworkManager: (eth3): carrier now OFF (device state 2) -05:51:46,259 INFO NetworkManager: (eth3): carrier now ON (device state 2) -05:51:46,259 WARNING NetworkManager: (nm-device.c:4447):nm_device_queue_state: runtime check failed: (priv->queued_state.id == 0) -05:51:46,260 INFO NetworkManager: Trying to start the supplicant... -05:51:46,261 INFO NetworkManager: (eth0): device state change: 2 -> 3 (reason 40) -05:51:46,261 INFO NetworkManager: (eth1): device state change: 2 -> 3 (reason 40) -05:51:46,261 INFO NetworkManager: (eth2): device state change: 2 -> 3 (reason 40) -05:51:46,262 INFO NetworkManager: (eth3): device state change: 2 -> 3 (reason 40) -05:51:46,268 INFO NetworkManager: wpa_supplicant started -05:51:47,181 WARNING NetworkManager: error requesting auth for org.freedesktop.NetworkManager.enable-disable-network: (26) Remote Exception invoking org.freedesktop.PolicyKit1.Authority.CheckAuthorization() on /org/freedesktop/PolicyKit1/Authority at name org.freedesktop.PolicyKit1: org.freedesktop.DBus.Error.Spawn.ExecFailed: Cannot launch daemon, file not found or permissions invalid -05:51:47,182 WARNING NetworkManager: error requesting auth for org.freedesktop.NetworkManager.sleep-wake: (26) Remote Exception invoking org.freedesktop.PolicyKit1.Authority.CheckAuthorization() on /org/freedesktop/PolicyKit1/Authority at name org.freedesktop.PolicyKit1: org.freedesktop.DBus.Error.Spawn.ExecFailed: Cannot launch daemon, file not found or permissions invalid -05:51:47,182 WARNING NetworkManager: error requesting auth for org.freedesktop.NetworkManager.enable-disable-wifi: (26) Remote Exception invoking org.freedesktop.PolicyKit1.Authority.CheckAuthorization() on /org/freedesktop/PolicyKit1/Authority at name org.freedesktop.PolicyKit1: org.freedesktop.DBus.Error.Spawn.ExecFailed: Cannot launch daemon, file not found or permissions invalid -05:51:47,182 WARNING NetworkManager: error requesting auth for org.freedesktop.NetworkManager.enable-disable-wwan: (26) Remote Exception invoking org.freedesktop.PolicyKit1.Authority.CheckAuthorization() on /org/freedesktop/PolicyKit1/Authority at name org.freedesktop.PolicyKit1: org.freedesktop.DBus.Error.Spawn.ExecFailed: Cannot launch daemon, file not found or permissions invalid -05:51:47,182 WARNING NetworkManager: error requesting auth for org.freedesktop.NetworkManager.use-user-connections: (26) Remote Exception invoking org.freedesktop.PolicyKit1.Authority.CheckAuthorization() on /org/freedesktop/PolicyKit1/Authority at name org.freedesktop.PolicyKit1: org.freedesktop.DBus.Error.Spawn.ExecFailed: Cannot launch daemon, file not found or permissions invalid -05:51:47,182 WARNING NetworkManager: error requesting auth for org.freedesktop.NetworkManager.network-control: (26) Remote Exception invoking org.freedesktop.PolicyKit1.Authority.CheckAuthorization() on /org/freedesktop/PolicyKit1/Authority at name org.freedesktop.PolicyKit1: org.freedesktop.DBus.Error.Spawn.ExecFailed: Cannot launch daemon, file not found or permissions invalid -05:51:47,182 WARNING NetworkManager: error requesting auth for org.freedesktop.network-manager-settings.system.wifi.share.open: (26) Remote Exception invoking org.freedesktop.PolicyKit1.Authority.CheckAuthorization() on /org/freedesktop/PolicyKit1/Authority at name org.freedesktop.PolicyKit1: org.freedesktop.DBus.Error.Spawn.ExecFailed: Cannot launch daemon, file not found or permissions invalid -05:51:47,183 WARNING NetworkManager: error requesting auth for org.freedesktop.network-manager-settings.system.wifi.share.protected: (26) Remote Exception invoking org.freedesktop.PolicyKit1.Authority.CheckAuthorization() on /org/freedesktop/PolicyKit1/Authority at name org.freedesktop.PolicyKit1: org.freedesktop.DBus.Error.Spawn.ExecFailed: Cannot launch daemon, file not found or permissions invalid -05:51:47,191 WARNING NetworkManager: error requesting auth for org.freedesktop.NetworkManager.enable-disable-network: (26) Remote Exception invoking org.freedesktop.PolicyKit1.Authority.CheckAuthorization() on /org/freedesktop/PolicyKit1/Authority at name org.freedesktop.PolicyKit1: org.freedesktop.DBus.Error.Spawn.ExecFailed: Cannot launch daemon, file not found or permissions invalid -05:51:47,191 WARNING NetworkManager: error requesting auth for org.freedesktop.NetworkManager.sleep-wake: (26) Remote Exception invoking org.freedesktop.PolicyKit1.Authority.CheckAuthorization() on /org/freedesktop/PolicyKit1/Authority at name org.freedesktop.PolicyKit1: org.freedesktop.DBus.Error.Spawn.ExecFailed: Cannot launch daemon, file not found or permissions invalid -05:51:47,191 WARNING NetworkManager: error requesting auth for org.freedesktop.NetworkManager.enable-disable-wifi: (26) Remote Exception invoking org.freedesktop.PolicyKit1.Authority.CheckAuthorization() on /org/freedesktop/PolicyKit1/Authority at name org.freedesktop.PolicyKit1: org.freedesktop.DBus.Error.Spawn.ExecFailed: Cannot launch daemon, file not found or permissions invalid -05:51:47,191 WARNING NetworkManager: error requesting auth for org.freedesktop.NetworkManager.enable-disable-wwan: (26) Remote Exception invoking org.freedesktop.PolicyKit1.Authority.CheckAuthorization() on /org/freedesktop/PolicyKit1/Authority at name org.freedesktop.PolicyKit1: org.freedesktop.DBus.Error.Spawn.ExecFailed: Cannot launch daemon, file not found or permissions invalid -05:51:47,191 WARNING NetworkManager: error requesting auth for org.freedesktop.NetworkManager.use-user-connections: (26) Remote Exception invoking org.freedesktop.PolicyKit1.Authority.CheckAuthorization() on /org/freedesktop/PolicyKit1/Authority at name org.freedesktop.PolicyKit1: org.freedesktop.DBus.Error.Spawn.ExecFailed: Cannot launch daemon, file not found or permissions invalid -05:51:47,191 WARNING NetworkManager: error requesting auth for org.freedesktop.NetworkManager.network-control: (26) Remote Exception invoking org.freedesktop.PolicyKit1.Authority.CheckAuthorization() on /org/freedesktop/PolicyKit1/Authority at name org.freedesktop.PolicyKit1: org.freedesktop.DBus.Error.Spawn.ExecFailed: Cannot launch daemon, file not found or permissions invalid -05:51:47,192 WARNING NetworkManager: error requesting auth for org.freedesktop.network-manager-settings.system.wifi.share.open: (26) Remote Exception invoking org.freedesktop.PolicyKit1.Authority.CheckAuthorization() on /org/freedesktop/PolicyKit1/Authority at name org.freedesktop.PolicyKit1: org.freedesktop.DBus.Error.Spawn.ExecFailed: Cannot launch daemon, file not found or permissions invalid -05:51:47,192 WARNING NetworkManager: error requesting auth for org.freedesktop.network-manager-settings.system.wifi.share.protected: (26) Remote Exception invoking org.freedesktop.PolicyKit1.Authority.CheckAuthorization() on /org/freedesktop/PolicyKit1/Authority at name org.freedesktop.PolicyKit1: org.freedesktop.DBus.Error.Spawn.ExecFailed: Cannot launch daemon, file not found or permissions invalid -05:51:47,200 WARNING NetworkManager: error requesting auth for org.freedesktop.NetworkManager.enable-disable-network: (26) Remote Exception invoking org.freedesktop.PolicyKit1.Authority.CheckAuthorization() on /org/freedesktop/PolicyKit1/Authority at name org.freedesktop.PolicyKit1: org.freedesktop.DBus.Error.Spawn.ExecFailed: Cannot launch daemon, file not found or permissions invalid -05:51:47,200 WARNING NetworkManager: error requesting auth for org.freedesktop.NetworkManager.sleep-wake: (26) Remote Exception invoking org.freedesktop.PolicyKit1.Authority.CheckAuthorization() on /org/freedesktop/PolicyKit1/Authority at name org.freedesktop.PolicyKit1: org.freedesktop.DBus.Error.Spawn.ExecFailed: Cannot launch daemon, file not found or permissions invalid -05:51:47,200 WARNING NetworkManager: error requesting auth for org.freedesktop.NetworkManager.enable-disable-wifi: (26) Remote Exception invoking org.freedesktop.PolicyKit1.Authority.CheckAuthorization() on /org/freedesktop/PolicyKit1/Authority at name org.freedesktop.PolicyKit1: org.freedesktop.DBus.Error.Spawn.ExecFailed: Cannot launch daemon, file not found or permissions invalid -05:51:47,200 WARNING NetworkManager: error requesting auth for org.freedesktop.NetworkManager.enable-disable-wwan: (26) Remote Exception invoking org.freedesktop.PolicyKit1.Authority.CheckAuthorization() on /org/freedesktop/PolicyKit1/Authority at name org.freedesktop.PolicyKit1: org.freedesktop.DBus.Error.Spawn.ExecFailed: Cannot launch daemon, file not found or permissions invalid -05:51:47,200 WARNING NetworkManager: error requesting auth for org.freedesktop.NetworkManager.use-user-connections: (26) Remote Exception invoking org.freedesktop.PolicyKit1.Authority.CheckAuthorization() on /org/freedesktop/PolicyKit1/Authority at name org.freedesktop.PolicyKit1: org.freedesktop.DBus.Error.Spawn.ExecFailed: Cannot launch daemon, file not found or permissions invalid -05:51:47,201 WARNING NetworkManager: error requesting auth for org.freedesktop.NetworkManager.network-control: (26) Remote Exception invoking org.freedesktop.PolicyKit1.Authority.CheckAuthorization() on /org/freedesktop/PolicyKit1/Authority at name org.freedesktop.PolicyKit1: org.freedesktop.DBus.Error.Spawn.ExecFailed: Cannot launch daemon, file not found or permissions invalid -05:51:47,201 WARNING NetworkManager: error requesting auth for org.freedesktop.network-manager-settings.system.wifi.share.open: (26) Remote Exception invoking org.freedesktop.PolicyKit1.Authority.CheckAuthorization() on /org/freedesktop/PolicyKit1/Authority at name org.freedesktop.PolicyKit1: org.freedesktop.DBus.Error.Spawn.ExecFailed: Cannot launch daemon, file not found or permissions invalid -05:51:47,201 WARNING NetworkManager: error requesting auth for org.freedesktop.network-manager-settings.system.wifi.share.protected: (26) Remote Exception invoking org.freedesktop.PolicyKit1.Authority.CheckAuthorization() on /org/freedesktop/PolicyKit1/Authority at name org.freedesktop.PolicyKit1: org.freedesktop.DBus.Error.Spawn.ExecFailed: Cannot launch daemon, file not found or permissions invalid -05:51:47,212 WARNING NetworkManager: error requesting auth for org.freedesktop.NetworkManager.enable-disable-network: (26) Remote Exception invoking org.freedesktop.PolicyKit1.Authority.CheckAuthorization() on /org/freedesktop/PolicyKit1/Authority at name org.freedesktop.PolicyKit1: org.freedesktop.DBus.Error.Spawn.ExecFailed: Cannot launch daemon, file not found or permissions invalid -05:51:47,212 WARNING NetworkManager: error requesting auth for org.freedesktop.NetworkManager.sleep-wake: (26) Remote Exception invoking org.freedesktop.PolicyKit1.Authority.CheckAuthorization() on /org/freedesktop/PolicyKit1/Authority at name org.freedesktop.PolicyKit1: org.freedesktop.DBus.Error.Spawn.ExecFailed: Cannot launch daemon, file not found or permissions invalid -05:51:47,212 WARNING NetworkManager: error requesting auth for org.freedesktop.NetworkManager.enable-disable-wifi: (26) Remote Exception invoking org.freedesktop.PolicyKit1.Authority.CheckAuthorization() on /org/freedesktop/PolicyKit1/Authority at name org.freedesktop.PolicyKit1: org.freedesktop.DBus.Error.Spawn.ExecFailed: Cannot launch daemon, file not found or permissions invalid -05:51:47,212 WARNING NetworkManager: error requesting auth for org.freedesktop.NetworkManager.enable-disable-wwan: (26) Remote Exception invoking org.freedesktop.PolicyKit1.Authority.CheckAuthorization() on /org/freedesktop/PolicyKit1/Authority at name org.freedesktop.PolicyKit1: org.freedesktop.DBus.Error.Spawn.ExecFailed: Cannot launch daemon, file not found or permissions invalid -05:51:47,212 WARNING NetworkManager: error requesting auth for org.freedesktop.NetworkManager.use-user-connections: (26) Remote Exception invoking org.freedesktop.PolicyKit1.Authority.CheckAuthorization() on /org/freedesktop/PolicyKit1/Authority at name org.freedesktop.PolicyKit1: org.freedesktop.DBus.Error.Spawn.ExecFailed: Cannot launch daemon, file not found or permissions invalid -05:51:47,212 WARNING NetworkManager: error requesting auth for org.freedesktop.NetworkManager.network-control: (26) Remote Exception invoking org.freedesktop.PolicyKit1.Authority.CheckAuthorization() on /org/freedesktop/PolicyKit1/Authority at name org.freedesktop.PolicyKit1: org.freedesktop.DBus.Error.Spawn.ExecFailed: Cannot launch daemon, file not found or permissions invalid -05:51:47,213 WARNING NetworkManager: error requesting auth for org.freedesktop.network-manager-settings.system.wifi.share.open: (26) Remote Exception invoking org.freedesktop.PolicyKit1.Authority.CheckAuthorization() on /org/freedesktop/PolicyKit1/Authority at name org.freedesktop.PolicyKit1: org.freedesktop.DBus.Error.Spawn.ExecFailed: Cannot launch daemon, file not found or permissions invalid -05:51:47,213 WARNING NetworkManager: error requesting auth for org.freedesktop.network-manager-settings.system.wifi.share.protected: (26) Remote Exception invoking org.freedesktop.PolicyKit1.Authority.CheckAuthorization() on /org/freedesktop/PolicyKit1/Authority at name org.freedesktop.PolicyKit1: org.freedesktop.DBus.Error.Spawn.ExecFailed: Cannot launch daemon, file not found or permissions invalid -05:51:48,220 NOTICE NetworkManager: ifcfg-rh: updating /etc/sysconfig/network-scripts/ifcfg-eth0 -05:51:48,223 INFO NetworkManager: Auto-activating connection 'System eth0'. -05:51:48,224 INFO NetworkManager: Activation (eth0) starting connection 'System eth0' -05:51:48,224 INFO NetworkManager: (eth0): device state change: 3 -> 4 (reason 0) -05:51:48,224 INFO NetworkManager: Activation (eth0) Stage 1 of 5 (Device Prepare) scheduled... -05:51:48,224 INFO NetworkManager: Activation (eth0) Stage 1 of 5 (Device Prepare) started... -05:51:48,224 INFO NetworkManager: Activation (eth0) Stage 2 of 5 (Device Configure) scheduled... -05:51:48,225 INFO NetworkManager: Activation (eth0) Stage 1 of 5 (Device Prepare) complete. -05:51:48,225 INFO NetworkManager: Activation (eth0) Stage 2 of 5 (Device Configure) starting... -05:51:48,225 INFO NetworkManager: (eth0): device state change: 4 -> 5 (reason 0) -05:51:48,225 INFO NetworkManager: Activation (eth0) Stage 2 of 5 (Device Configure) successful. -05:51:48,225 INFO NetworkManager: Activation (eth0) Stage 3 of 5 (IP Configure Start) scheduled. -05:51:48,225 INFO NetworkManager: Activation (eth0) Stage 2 of 5 (Device Configure) complete. -05:51:48,225 INFO NetworkManager: Activation (eth0) Stage 3 of 5 (IP Configure Start) started... -05:51:48,225 INFO NetworkManager: (eth0): device state change: 5 -> 7 (reason 0) -05:51:48,225 INFO NetworkManager: Activation (eth0) Beginning DHCPv4 transaction -05:51:48,228 INFO dhclient: Internet Systems Consortium DHCP Client 4.1.1-P1 -05:51:48,228 INFO NetworkManager: dhclient started with pid 670 -05:51:48,228 INFO NetworkManager: Activation (eth0) DHCPv4 will time out in 45 seconds -05:51:48,228 INFO NetworkManager: Activation (eth0) Stage 3 of 5 (IP Configure Start) complete. -05:51:48,228 INFO dhclient: Copyright 2004-2010 Internet Systems Consortium. -05:51:48,228 INFO dhclient: All rights reserved. -05:51:48,228 INFO dhclient: For info, please visit https://www.isc.org/software/dhcp/ -05:51:48,229 INFO dhclient: -05:51:48,232 INFO NetworkManager: (eth0): DHCPv4 state changed nbi -> preinit -05:51:48,238 INFO dhclient: Listening on LPF/eth0/00:0c:29:21:89:af -05:51:48,238 INFO dhclient: Sending on LPF/eth0/00:0c:29:21:89:af -05:51:48,238 INFO dhclient: Sending on Socket/fallback -05:51:48,238 INFO dhclient: DHCPDISCOVER on eth0 to 255.255.255.255 port 67 interval 7 (xid=0x4cbfa09c) -05:51:48,266 INFO dhclient: DHCPOFFER from 10.145.88.211 -05:51:48,267 INFO dhclient: DHCPREQUEST on eth0 to 255.255.255.255 port 67 (xid=0x4cbfa09c) -05:51:50,624 INFO dhclient: DHCPACK from 10.145.88.211 (xid=0x4cbfa09c) -05:51:50,627 INFO NetworkManager: (eth0): DHCPv4 state changed preinit -> bound -05:51:50,627 INFO NetworkManager: Activation (eth0) Stage 4 of 5 (IP4 Configure Get) scheduled... -05:51:50,627 INFO NetworkManager: Activation (eth0) Stage 4 of 5 (IP4 Configure Get) started... -05:51:50,627 INFO NetworkManager: address 10.145.88.106 -05:51:50,627 INFO NetworkManager: prefix 23 (255.255.254.0) -05:51:50,627 INFO NetworkManager: gateway 10.145.88.1 -05:51:50,627 INFO NetworkManager: hostname 'server1' -05:51:50,627 INFO NetworkManager: nameserver '10.145.88.211' -05:51:50,628 INFO NetworkManager: Activation (eth0) Stage 5 of 5 (IP Configure Commit) scheduled... -05:51:50,628 INFO NetworkManager: Activation (eth0) Stage 4 of 5 (IP4 Configure Get) complete. -05:51:50,628 INFO NetworkManager: Activation (eth0) Stage 5 of 5 (IP Configure Commit) started... -05:51:50,628 INFO dhclient: bound to 10.145.88.106 -- renewal in 10408 seconds. -05:51:51,629 INFO NetworkManager: (eth0): device state change: 7 -> 8 (reason 0) -05:51:51,629 INFO NetworkManager: Policy set 'System eth0' (eth0) as default for IPv4 routing and DNS. -05:51:51,630 INFO NetworkManager: Setting system hostname to 'server1' (from DHCPv4) -05:51:51,630 INFO NetworkManager: Activation (eth0) successful, device activated. -05:51:51,631 INFO NetworkManager: Activation (eth0) Stage 5 of 5 (IP Configure Commit) complete. -05:52:07,660 WARNING NetworkManager: error requesting auth for org.freedesktop.NetworkManager.enable-disable-network: (26) Remote Exception invoking org.freedesktop.PolicyKit1.Authority.CheckAuthorization() on /org/freedesktop/PolicyKit1/Authority at name org.freedesktop.PolicyKit1: org.freedesktop.DBus.Error.Spawn.ExecFailed: Cannot launch daemon, file not found or permissions invalid -05:52:07,660 WARNING NetworkManager: error requesting auth for org.freedesktop.NetworkManager.sleep-wake: (26) Remote Exception invoking org.freedesktop.PolicyKit1.Authority.CheckAuthorization() on /org/freedesktop/PolicyKit1/Authority at name org.freedesktop.PolicyKit1: org.freedesktop.DBus.Error.Spawn.ExecFailed: Cannot launch daemon, file not found or permissions invalid -05:52:07,660 WARNING NetworkManager: error requesting auth for org.freedesktop.NetworkManager.enable-disable-wifi: (26) Remote Exception invoking org.freedesktop.PolicyKit1.Authority.CheckAuthorization() on /org/freedesktop/PolicyKit1/Authority at name org.freedesktop.PolicyKit1: org.freedesktop.DBus.Error.Spawn.ExecFailed: Cannot launch daemon, file not found or permissions invalid -05:52:07,660 WARNING NetworkManager: error requesting auth for org.freedesktop.NetworkManager.enable-disable-wwan: (26) Remote Exception invoking org.freedesktop.PolicyKit1.Authority.CheckAuthorization() on /org/freedesktop/PolicyKit1/Authority at name org.freedesktop.PolicyKit1: org.freedesktop.DBus.Error.Spawn.ExecFailed: Cannot launch daemon, file not found or permissions invalid -05:52:07,660 WARNING NetworkManager: error requesting auth for org.freedesktop.NetworkManager.use-user-connections: (26) Remote Exception invoking org.freedesktop.PolicyKit1.Authority.CheckAuthorization() on /org/freedesktop/PolicyKit1/Authority at name org.freedesktop.PolicyKit1: org.freedesktop.DBus.Error.Spawn.ExecFailed: Cannot launch daemon, file not found or permissions invalid -05:52:07,660 WARNING NetworkManager: error requesting auth for org.freedesktop.NetworkManager.network-control: (26) Remote Exception invoking org.freedesktop.PolicyKit1.Authority.CheckAuthorization() on /org/freedesktop/PolicyKit1/Authority at name org.freedesktop.PolicyKit1: org.freedesktop.DBus.Error.Spawn.ExecFailed: Cannot launch daemon, file not found or permissions invalid -05:52:07,660 WARNING NetworkManager: error requesting auth for org.freedesktop.network-manager-settings.system.wifi.share.open: (26) Remote Exception invoking org.freedesktop.PolicyKit1.Authority.CheckAuthorization() on /org/freedesktop/PolicyKit1/Authority at name org.freedesktop.PolicyKit1: org.freedesktop.DBus.Error.Spawn.ExecFailed: Cannot launch daemon, file not found or permissions invalid -05:52:07,660 WARNING NetworkManager: error requesting auth for org.freedesktop.network-manager-settings.system.wifi.share.protected: (26) Remote Exception invoking org.freedesktop.PolicyKit1.Authority.CheckAuthorization() on /org/freedesktop/PolicyKit1/Authority at name org.freedesktop.PolicyKit1: org.freedesktop.DBus.Error.Spawn.ExecFailed: Cannot launch daemon, file not found or permissions invalid -05:52:47,362 NOTICE dbus-daemon: [system] Reloaded configuration -05:52:47,364 NOTICE dbus-daemon: [system] Reloaded configuration -05:52:47,512 DEBUG kernel:SELinux: 2048 avtab hash slots, 277800 rules. -05:52:47,588 DEBUG kernel:SELinux: 2048 avtab hash slots, 277800 rules. -05:52:48,083 DEBUG kernel:SELinux: 9 users, 12 roles, 3917 types, 217 bools, 1 sens, 1024 cats -05:52:48,083 DEBUG kernel:SELinux: 81 classes, 277800 rules -05:52:48,088 DEBUG kernel:SELinux: Completing initialization. -05:52:48,088 DEBUG kernel:SELinux: Setting up existing superblocks. -05:52:48,088 DEBUG kernel:SELinux: initialized (dev loop0, type squashfs), not configured for labeling -05:52:48,088 DEBUG kernel:SELinux: initialized (dev tmpfs, type tmpfs), uses transition SIDs -05:52:48,088 DEBUG kernel:SELinux: initialized (dev tmpfs, type tmpfs), uses transition SIDs -05:52:48,089 DEBUG kernel:SELinux: initialized (dev selinuxfs, type selinuxfs), uses genfs_contexts -05:52:48,089 DEBUG kernel:SELinux: initialized (dev mqueue, type mqueue), uses transition SIDs -05:52:48,089 DEBUG kernel:SELinux: initialized (dev hugetlbfs, type hugetlbfs), uses transition SIDs -05:52:48,089 DEBUG kernel:SELinux: initialized (dev devpts, type devpts), uses transition SIDs -05:52:48,089 DEBUG kernel:SELinux: initialized (dev inotifyfs, type inotifyfs), uses genfs_contexts -05:52:48,089 DEBUG kernel:SELinux: initialized (dev anon_inodefs, type anon_inodefs), uses genfs_contexts -05:52:48,089 DEBUG kernel:SELinux: initialized (dev pipefs, type pipefs), uses task SIDs -05:52:48,089 DEBUG kernel:SELinux: initialized (dev debugfs, type debugfs), uses genfs_contexts -05:52:48,090 DEBUG kernel:SELinux: initialized (dev sockfs, type sockfs), uses task SIDs -05:52:48,090 DEBUG kernel:SELinux: initialized (dev devtmpfs, type devtmpfs), uses transition SIDs -05:52:48,090 DEBUG kernel:SELinux: initialized (dev tmpfs, type tmpfs), uses transition SIDs -05:52:48,090 DEBUG kernel:SELinux: initialized (dev proc, type proc), uses genfs_contexts -05:52:48,090 DEBUG kernel:SELinux: initialized (dev bdev, type bdev), uses genfs_contexts -05:52:48,090 DEBUG kernel:SELinux: initialized (dev rootfs, type rootfs), uses genfs_contexts -05:52:48,090 DEBUG kernel:SELinux: initialized (dev sysfs, type sysfs), uses genfs_contexts -05:52:48,116 NOTICE kernel:type=1403 audit(1021096368.114:2): policy loaded auid=4294967295 ses=4294967295 -05:52:48,165 INFO kernel:md: raid0 personality registered for level 0 -05:52:48,172 INFO kernel:md: raid1 personality registered for level 1 -05:52:48,176 INFO kernel:async_tx: api initialized (async) -05:52:48,188 INFO kernel:xor: automatically using best checksumming function: generic_sse -05:52:48,191 INFO kernel: generic_sse: 9112.000 MB/sec -05:52:48,191 INFO kernel:xor: using function: generic_sse (9112.000 MB/sec) -05:52:48,212 WARNING kernel:raid6: sse2x1 5777 MB/s -05:52:48,229 WARNING kernel:raid6: sse2x2 7031 MB/s -05:52:48,247 WARNING kernel:raid6: sse2x4 7550 MB/s -05:52:48,247 WARNING kernel:raid6: using algorithm sse2x4 (7550 MB/s) -05:52:48,247 WARNING kernel:raid6: using ssse3x2 recovery algorithm -05:52:48,261 INFO kernel:md: raid6 personality registered for level 6 -05:52:48,261 INFO kernel:md: raid5 personality registered for level 5 -05:52:48,261 INFO kernel:md: raid4 personality registered for level 4 -05:52:48,273 INFO kernel:md: raid10 personality registered for level 10 -05:52:48,277 INFO kernel:md: linear personality registered for level -1 -05:52:48,290 INFO kernel:device-mapper: uevent: version 1.0.3 -05:52:48,291 INFO kernel:device-mapper: ioctl: 4.24.6-ioctl (2013-01-15) initialised: dm-devel@redhat.com -05:52:48,324 INFO kernel:device-mapper: multipath: version 1.5.0 loaded -05:52:48,328 INFO kernel:device-mapper: multipath round-robin: version 1.0.0 loaded -05:53:05,608 WARNING kernel:hpet1: lost 5 rtc interrupts -05:53:05,608 WARNING kernel:hpet1: lost 1 rtc interrupts -05:53:21,197 NOTICE kernel:sd 2:0:0:0: [sda] Cache data unavailable -05:53:21,197 ERR kernel:sd 2:0:0:0: [sda] Assuming drive cache: write through -05:53:21,238 INFO kernel: sda: sda1 sda2 -05:53:25,106 NOTICE kernel:sd 2:0:0:0: [sda] Cache data unavailable -05:53:25,106 ERR kernel:sd 2:0:0:0: [sda] Assuming drive cache: write through -05:53:25,117 INFO kernel: sda: sda1 -05:53:31,920 NOTICE kernel:sd 2:0:0:0: [sda] Cache data unavailable -05:53:31,920 ERR kernel:sd 2:0:0:0: [sda] Assuming drive cache: write through -05:53:31,962 INFO kernel: sda: -05:53:33,120 NOTICE kernel:sd 2:0:0:0: [sda] Cache data unavailable -05:53:33,120 ERR kernel:sd 2:0:0:0: [sda] Assuming drive cache: write through -05:53:33,120 INFO kernel: sda: sda1 -05:53:50,037 NOTICE kernel:sd 2:0:0:0: [sda] Cache data unavailable -05:53:50,037 ERR kernel:sd 2:0:0:0: [sda] Assuming drive cache: write through -05:53:50,037 INFO kernel: sda: sda1 sda2 -05:53:55,178 NOTICE kernel:sd 2:0:0:0: [sda] Cache data unavailable -05:53:55,178 ERR kernel:sd 2:0:0:0: [sda] Assuming drive cache: write through -05:53:55,211 INFO kernel: sda: sda1 sda2 sda3 -05:54:41,918 INFO kernel:Adding 3354616k swap on /dev/sda2. Priority:-1 extents:1 across:3354616k -05:54:42,441 INFO kernel:kjournald starting. Commit interval 5 seconds -05:54:42,489 INFO kernel:EXT3-fs (dm-0): using internal journal -05:54:42,489 INFO kernel:EXT3-fs (dm-0): mounted filesystem with ordered data mode -05:54:42,489 DEBUG kernel:SELinux: initialized (dev dm-0, type ext3), uses xattr -05:54:42,913 INFO kernel:kjournald starting. Commit interval 5 seconds -05:54:42,977 INFO kernel:EXT3-fs (sda1): using internal journal -05:54:42,977 INFO kernel:EXT3-fs (sda1): mounted filesystem with ordered data mode -05:54:42,977 DEBUG kernel:SELinux: initialized (dev sda1, type ext3), uses xattr -05:54:43,167 DEBUG kernel:SELinux: initialized (dev tmpfs, type tmpfs), uses transition SIDs -05:54:43,255 INFO kernel:kjournald starting. Commit interval 5 seconds -05:54:43,268 INFO kernel:EXT3-fs (dm-1): using internal journal -05:54:43,268 INFO kernel:EXT3-fs (dm-1): mounted filesystem with ordered data mode -05:54:43,268 DEBUG kernel:SELinux: initialized (dev dm-1, type ext3), uses xattr -05:54:43,657 INFO kernel:kjournald starting. Commit interval 5 seconds -05:54:43,719 INFO kernel:EXT3-fs (dm-2): using internal journal -05:54:43,719 INFO kernel:EXT3-fs (dm-2): mounted filesystem with ordered data mode -05:54:43,719 DEBUG kernel:SELinux: initialized (dev dm-2, type ext3), uses xattr -05:54:43,913 INFO kernel:kjournald starting. Commit interval 5 seconds -05:54:43,949 INFO kernel:EXT3-fs (dm-3): using internal journal -05:54:43,949 INFO kernel:EXT3-fs (dm-3): mounted filesystem with ordered data mode -05:54:43,949 DEBUG kernel:SELinux: initialized (dev dm-3, type ext3), uses xattr -05:55:08,095 DEBUG kernel:SELinux: initialized (dev usbfs, type usbfs), uses genfs_contexts -05:55:08,106 NOTICE NetworkManager: ifcfg-rh: updating /etc/sysconfig/network-scripts/ifcfg-eth3 -05:55:08,107 NOTICE NetworkManager: ifcfg-rh: updating /etc/sysconfig/network-scripts/ifcfg-eth2 -05:55:08,109 NOTICE NetworkManager: ifcfg-rh: updating /etc/sysconfig/network-scripts/ifcfg-eth1 -05:55:09,125 NOTICE NetworkManager: ifcfg-rh: updating /etc/sysconfig/network-scripts/ifcfg-eth3 -05:55:09,126 NOTICE NetworkManager: ifcfg-rh: updating /etc/sysconfig/network-scripts/ifcfg-eth2 -05:55:09,127 NOTICE NetworkManager: ifcfg-rh: updating /etc/sysconfig/network-scripts/ifcfg-eth1 -05:55:09,128 NOTICE NetworkManager: ifcfg-rh: updating /etc/sysconfig/network-scripts/ifcfg-eth0 -05:59:16,883 ERR kernel:INFO: task flush-253:0:1525 blocked for more than 120 seconds. -05:59:16,883 ERR kernel: Not tainted 2.6.32-431.el6.x86_64 #1 -05:59:16,883 ERR kernel:"echo 0 > /proc/sys/kernel/hung_task_timeout_secs" disables this message. -05:59:16,883 INFO kernel:flush-253:0 D 0000000000000000 0 1525 2 0x00000080 -05:59:16,883 WARNING kernel: ffff8800592df6e0 0000000000000046 0000000000000000 ffff880079226080 -05:59:16,883 WARNING kernel: 0000000000000001 ffff880064ed8e40 ffff880079226080 ffff880079269dd0 -05:59:16,883 WARNING kernel: ffff880079226638 ffff8800592dffd8 000000000000fbc8 ffff880079226638 -05:59:16,883 WARNING kernel:Call Trace: -05:59:16,883 WARNING kernel: [] io_schedule+0x73/0xc0 -05:59:16,883 WARNING kernel: [] get_request_wait+0x108/0x1d0 -05:59:16,883 WARNING kernel: [] ? autoremove_wake_function+0x0/0x40 -05:59:16,883 WARNING kernel: [] ? elv_merge+0x17e/0x1c0 -05:59:16,883 WARNING kernel: [] blk_queue_bio+0x99/0x620 -05:59:16,883 WARNING kernel: [] generic_make_request+0x240/0x5a0 -05:59:16,883 WARNING kernel: [] ? mempool_alloc_slab+0x15/0x20 -05:59:16,883 WARNING kernel: [] submit_bio+0x70/0x120 -05:59:16,883 WARNING kernel: [] submit_bh+0x11d/0x1f0 -05:59:16,883 WARNING kernel: [] __block_write_full_page+0x1c8/0x330 -05:59:16,883 WARNING kernel: [] ? end_buffer_async_write+0x0/0x190 -05:59:16,883 WARNING kernel: [] ? blkdev_get_block+0x0/0x20 -05:59:16,883 WARNING kernel: [] ? blkdev_get_block+0x0/0x20 -05:59:16,883 WARNING kernel: [] block_write_full_page_endio+0xe0/0x120 -05:59:16,883 WARNING kernel: [] ? find_get_pages_tag+0x40/0x130 -05:59:16,883 WARNING kernel: [] block_write_full_page+0x15/0x20 -05:59:16,883 WARNING kernel: [] blkdev_writepage+0x18/0x20 -05:59:16,883 WARNING kernel: [] __writepage+0x17/0x40 -05:59:16,883 WARNING kernel: [] write_cache_pages+0x1fd/0x4c0 -05:59:16,883 WARNING kernel: [] ? __writepage+0x0/0x40 -05:59:16,883 WARNING kernel: [] generic_writepages+0x24/0x30 -05:59:16,883 WARNING kernel: [] do_writepages+0x21/0x40 -05:59:16,883 WARNING kernel: [] writeback_single_inode+0xdd/0x290 -05:59:16,883 WARNING kernel: [] writeback_sb_inodes+0xbd/0x170 -05:59:16,883 WARNING kernel: [] writeback_inodes_wb+0xab/0x1b0 -05:59:16,883 WARNING kernel: [] wb_writeback+0x2f3/0x410 -05:59:16,883 WARNING kernel: [] ? thread_return+0x4e/0x76e -05:59:16,883 WARNING kernel: [] ? del_timer_sync+0x22/0x30 -05:59:16,883 WARNING kernel: [] wb_do_writeback+0x1a5/0x240 -05:59:16,883 WARNING kernel: [] bdi_writeback_task+0x63/0x1b0 -05:59:16,883 WARNING kernel: [] ? bit_waitqueue+0x17/0xd0 -05:59:16,883 WARNING kernel: [] ? bdi_start_fn+0x0/0x100 -05:59:16,883 WARNING kernel: [] bdi_start_fn+0x86/0x100 -05:59:16,883 WARNING kernel: [] ? bdi_start_fn+0x0/0x100 -05:59:16,883 WARNING kernel: [] kthread+0x96/0xa0 -05:59:16,883 WARNING kernel: [] child_rip+0xa/0x20 -05:59:16,883 WARNING kernel: [] ? kthread+0x0/0xa0 -05:59:16,883 WARNING kernel: [] ? child_rip+0x0/0x20 -05:59:16,883 ERR kernel:INFO: task flush-253:3:1622 blocked for more than 120 seconds. -05:59:16,883 ERR kernel: Not tainted 2.6.32-431.el6.x86_64 #1 -05:59:16,883 ERR kernel:"echo 0 > /proc/sys/kernel/hung_task_timeout_secs" disables this message. -05:59:16,883 INFO kernel:flush-253:3 D 0000000000000001 0 1622 2 0x00000080 -05:59:16,883 WARNING kernel: ffff88005a5636e0 0000000000000046 0000000000000000 ffff8800790e6ae0 -05:59:16,883 WARNING kernel: 0000000000000001 ffff8800615bc080 ffff8800790e6ae0 ffff880079269dd0 -05:59:16,883 WARNING kernel: ffff8800790e7098 ffff88005a563fd8 000000000000fbc8 ffff8800790e7098 -05:59:16,883 WARNING kernel:Call Trace: -05:59:16,883 WARNING kernel: [] io_schedule+0x73/0xc0 -05:59:16,883 WARNING kernel: [] get_request_wait+0x108/0x1d0 -05:59:16,883 WARNING kernel: [] ? autoremove_wake_function+0x0/0x40 -05:59:16,883 WARNING kernel: [] ? elv_merge+0x17e/0x1c0 -05:59:16,883 WARNING kernel: [] blk_queue_bio+0x99/0x620 -05:59:16,883 WARNING kernel: [] ? read_tsc+0x9/0x20 -05:59:16,883 WARNING kernel: [] generic_make_request+0x240/0x5a0 -05:59:16,883 WARNING kernel: [] ? mempool_alloc_slab+0x15/0x20 -05:59:16,883 WARNING kernel: [] ? __dec_zone_page_state+0x2e/0x30 -05:59:16,883 WARNING kernel: [] submit_bio+0x70/0x120 -05:59:16,883 WARNING kernel: [] submit_bh+0x11d/0x1f0 -05:59:16,883 WARNING kernel: [] __block_write_full_page+0x1c8/0x330 -05:59:16,883 WARNING kernel: [] ? end_buffer_async_write+0x0/0x190 -05:59:16,883 WARNING kernel: [] ? blkdev_get_block+0x0/0x20 -05:59:16,883 WARNING kernel: [] ? blkdev_get_block+0x0/0x20 -05:59:16,883 WARNING kernel: [] block_write_full_page_endio+0xe0/0x120 -05:59:16,883 WARNING kernel: [] ? find_get_pages_tag+0x40/0x130 -05:59:16,883 WARNING kernel: [] block_write_full_page+0x15/0x20 -05:59:16,883 WARNING kernel: [] blkdev_writepage+0x18/0x20 -05:59:16,883 WARNING kernel: [] __writepage+0x17/0x40 -05:59:16,883 WARNING kernel: [] write_cache_pages+0x1fd/0x4c0 -05:59:16,883 WARNING kernel: [] ? __writepage+0x0/0x40 -05:59:16,883 WARNING kernel: [] generic_writepages+0x24/0x30 -05:59:16,883 WARNING kernel: [] do_writepages+0x21/0x40 -05:59:16,883 WARNING kernel: [] writeback_single_inode+0xdd/0x290 -05:59:16,883 WARNING kernel: [] writeback_sb_inodes+0xbd/0x170 -05:59:16,883 WARNING kernel: [] writeback_inodes_wb+0xab/0x1b0 -05:59:16,883 WARNING kernel: [] wb_writeback+0x2f3/0x410 -05:59:16,883 WARNING kernel: [] ? thread_return+0x4e/0x76e -05:59:16,883 WARNING kernel: [] ? del_timer_sync+0x22/0x30 -05:59:16,883 WARNING kernel: [] wb_do_writeback+0x1a5/0x240 -05:59:16,883 WARNING kernel: [] bdi_writeback_task+0x63/0x1b0 -05:59:16,883 WARNING kernel: [] ? bit_waitqueue+0x17/0xd0 -05:59:16,883 WARNING kernel: [] ? bdi_start_fn+0x0/0x100 -05:59:16,883 WARNING kernel: [] bdi_start_fn+0x86/0x100 -05:59:16,883 WARNING kernel: [] ? bdi_start_fn+0x0/0x100 -05:59:16,883 WARNING kernel: [] kthread+0x96/0xa0 -05:59:16,883 WARNING kernel: [] child_rip+0xa/0x20 -05:59:16,883 WARNING kernel: [] ? kthread+0x0/0xa0 -05:59:16,883 WARNING kernel: [] ? child_rip+0x0/0x20 -06:11:26,657 DEBUG kernel:SELinux: 2048 avtab hash slots, 277800 rules. -06:11:26,705 DEBUG kernel:SELinux: 2048 avtab hash slots, 277800 rules. -06:11:27,220 DEBUG kernel:SELinux: 9 users, 12 roles, 3917 types, 217 bools, 1 sens, 1024 cats -06:11:27,220 DEBUG kernel:SELinux: 81 classes, 277800 rules diff --git a/compass/tests/actions/update_progress/data/test1/anamon/checkpoint_3/server1.1/anaconda.log.template b/compass/tests/actions/update_progress/data/test1/anamon/checkpoint_3/server1.1/anaconda.log.template deleted file mode 100644 index f04da66a..00000000 --- a/compass/tests/actions/update_progress/data/test1/anamon/checkpoint_3/server1.1/anaconda.log.template +++ /dev/null @@ -1,286 +0,0 @@ -05:51:20,534 INFO : kernel command line: initrd=/images/CentOS-6.5-x86_64/initrd.img ksdevice=bootif lang= kssendmac text ks=http://10.145.88.211/cblr/svc/op/ks/system/server1.1 BOOT_IMAGE=/images/CentOS-6.5-x86_64/vmlinuz BOOTIF=01-00-0c-29-21-89-af - -05:51:20,534 INFO : text mode forced from cmdline -05:51:20,534 DEBUG : readNetInfo /tmp/s390net not found, early return -05:51:20,534 INFO : anaconda version 13.21.215 on x86_64 starting -05:51:20,656 DEBUG : Saving module ipv6 -05:51:20,656 DEBUG : Saving module iscsi_ibft -05:51:20,656 DEBUG : Saving module iscsi_boot_sysfs -05:51:20,656 DEBUG : Saving module pcspkr -05:51:20,656 DEBUG : Saving module edd -05:51:20,656 DEBUG : Saving module floppy -05:51:20,656 DEBUG : Saving module iscsi_tcp -05:51:20,656 DEBUG : Saving module libiscsi_tcp -05:51:20,656 DEBUG : Saving module libiscsi -05:51:20,656 DEBUG : Saving module scsi_transport_iscsi -05:51:20,656 DEBUG : Saving module squashfs -05:51:20,656 DEBUG : Saving module cramfs -05:51:20,656 DEBUG : probing buses -05:51:20,693 DEBUG : waiting for hardware to initialize -05:51:27,902 DEBUG : probing buses -05:51:27,925 DEBUG : waiting for hardware to initialize -05:51:47,187 INFO : getting kickstart file -05:51:47,196 INFO : eth0 has link, using it -05:51:47,208 INFO : doing kickstart... setting it up -05:51:47,208 DEBUG : activating device eth0 -05:51:52,221 INFO : wait_for_iface_activation (2502): device eth0 activated -05:51:52,222 INFO : file location: http://10.145.88.211/cblr/svc/op/ks/system/server1.1 -05:51:52,223 INFO : transferring http://10.145.88.211/cblr/svc/op/ks/system/server1.1 -05:51:52,611 INFO : setting up kickstart -05:51:52,611 INFO : kickstart forcing text mode -05:51:52,611 INFO : kickstartFromUrl -05:51:52,612 INFO : results of url ks, url http://10.145.88.211/cblr/links/CentOS-6.5-x86_64 -05:51:52,612 INFO : trying to mount CD device /dev/sr0 on /mnt/stage2 -05:51:52,616 INFO : drive status is CDS_TRAY_OPEN -05:51:52,616 ERROR : Drive tray reports open when it should be closed -05:52:07,635 INFO : no stage2= given, assuming http://10.145.88.211/cblr/links/CentOS-6.5-x86_64/images/install.img -05:52:07,636 DEBUG : going to set language to en_US.UTF-8 -05:52:07,636 INFO : setting language to en_US.UTF-8 -05:52:07,654 INFO : starting STEP_METHOD -05:52:07,654 DEBUG : loaderData->method is set, adding skipMethodDialog -05:52:07,654 DEBUG : skipMethodDialog is set -05:52:07,663 INFO : starting STEP_STAGE2 -05:52:07,663 INFO : URL_STAGE_MAIN: url is http://10.145.88.211/cblr/links/CentOS-6.5-x86_64/images/install.img -05:52:07,663 INFO : transferring http://10.145.88.211/cblr/links/CentOS-6.5-x86_64/images/updates.img -05:52:07,780 ERROR : failed to mount loopback device /dev/loop7 on /tmp/update-disk as /tmp/updates-disk.img: (null) -05:52:07,780 ERROR : Error mounting /dev/loop7 on /tmp/update-disk: No such file or directory -05:52:07,780 INFO : transferring http://10.145.88.211/cblr/links/CentOS-6.5-x86_64/images/product.img -05:52:07,814 ERROR : Error downloading http://10.145.88.211/cblr/links/CentOS-6.5-x86_64/images/product.img: HTTP response code said error -05:52:07,815 INFO : transferring http://10.145.88.211/cblr/links/CentOS-6.5-x86_64/images/install.img -05:52:47,354 INFO : mounted loopback device /mnt/runtime on /dev/loop0 as /tmp/install.img -05:52:47,354 INFO : got stage2 at url http://10.145.88.211/cblr/links/CentOS-6.5-x86_64/images/install.img -05:52:47,403 INFO : Loading SELinux policy -05:52:48,130 INFO : getting ready to spawn shell now -05:52:48,359 INFO : Running anaconda script /usr/bin/anaconda -05:52:54,804 INFO : CentOS Linux is the highest priority installclass, using it -05:52:54,867 WARNING : /usr/lib/python2.6/site-packages/pykickstart/parser.py:713: DeprecationWarning: Script does not end with %end. This syntax has been deprecated. It may be removed from future releases, which will result in a fatal error from kickstart. Please modify your kickstart file to use this updated syntax. - warnings.warn(_("%s does not end with %%end. This syntax has been deprecated. It may be removed from future releases, which will result in a fatal error from kickstart. Please modify your kickstart file to use this updated syntax.") % _("Script"), DeprecationWarning) - -05:52:54,868 INFO : Running kickstart %%pre script(s) -05:52:54,868 WARNING : '/bin/sh' specified as full path -05:52:56,966 INFO : All kickstart %%pre script(s) have been run -05:52:57,017 INFO : ISCSID is /usr/sbin/iscsid -05:52:57,017 INFO : no initiator set -05:52:57,128 WARNING : '/usr/libexec/fcoe/fcoe_edd.sh' specified as full path -05:52:57,137 INFO : No FCoE EDD info found: No FCoE boot disk information is found in EDD! - -05:52:57,138 INFO : no /etc/zfcp.conf; not configuring zfcp -05:53:00,902 INFO : created new libuser.conf at /tmp/libuser.WMDW9M with instPath="/mnt/sysimage" -05:53:00,903 INFO : anaconda called with cmdline = ['/usr/bin/anaconda', '--stage2', 'http://10.145.88.211/cblr/links/CentOS-6.5-x86_64/images/install.img', '--kickstart', '/tmp/ks.cfg', '-T', '--selinux', '--lang', 'en_US', '--keymap', 'us', '--repo', 'http://10.145.88.211/cblr/links/CentOS-6.5-x86_64'] -05:53:00,903 INFO : Display mode = t -05:53:00,903 INFO : Default encoding = utf-8 -05:53:01,064 INFO : Detected 2016M of memory -05:53:01,064 INFO : Swap attempt of 4032M -05:53:01,398 INFO : ISCSID is /usr/sbin/iscsid -05:53:01,399 INFO : no initiator set -05:53:05,059 INFO : setting installation environment hostname to server1 -05:53:05,104 WARNING : Timezone US/Pacific set in kickstart is not valid. -05:53:05,276 INFO : Detected 2016M of memory -05:53:05,277 INFO : Suggested swap size (4032 M) exceeds 10 % of disk space, using 10 % of disk space (3276 M) instead. -05:53:05,277 INFO : Swap attempt of 3276M -05:53:05,453 WARNING : step installtype does not exist -05:53:05,454 WARNING : step confirminstall does not exist -05:53:05,454 WARNING : step complete does not exist -05:53:05,454 WARNING : step complete does not exist -05:53:05,454 WARNING : step complete does not exist -05:53:05,454 WARNING : step complete does not exist -05:53:05,455 WARNING : step complete does not exist -05:53:05,455 WARNING : step complete does not exist -05:53:05,455 WARNING : step complete does not exist -05:53:05,455 WARNING : step complete does not exist -05:53:05,455 WARNING : step complete does not exist -05:53:05,456 WARNING : step complete does not exist -05:53:05,456 WARNING : step complete does not exist -05:53:05,456 WARNING : step complete does not exist -05:53:05,456 WARNING : step complete does not exist -05:53:05,456 WARNING : step complete does not exist -05:53:05,457 WARNING : step complete does not exist -05:53:05,457 INFO : moving (1) to step setuptime -05:53:05,458 DEBUG : setuptime is a direct step -22:53:05,458 WARNING : '/usr/sbin/hwclock' specified as full path -22:53:06,002 INFO : leaving (1) step setuptime -22:53:06,003 INFO : moving (1) to step autopartitionexecute -22:53:06,003 DEBUG : autopartitionexecute is a direct step -22:53:06,138 INFO : leaving (1) step autopartitionexecute -22:53:06,138 INFO : moving (1) to step storagedone -22:53:06,138 DEBUG : storagedone is a direct step -22:53:06,138 INFO : leaving (1) step storagedone -22:53:06,139 INFO : moving (1) to step enablefilesystems -22:53:06,139 DEBUG : enablefilesystems is a direct step -22:53:10,959 DEBUG : notifying kernel of 'change' event on device /sys/class/block/sda3 -22:53:41,215 DEBUG : notifying kernel of 'change' event on device /sys/class/block/sda1 -22:53:57,388 DEBUG : notifying kernel of 'change' event on device /sys/class/block/sda3 -22:54:14,838 DEBUG : notifying kernel of 'change' event on device /sys/class/block/dm-0 -22:54:21,717 DEBUG : notifying kernel of 'change' event on device /sys/class/block/dm-1 -22:54:27,576 DEBUG : notifying kernel of 'change' event on device /sys/class/block/dm-2 -22:54:40,058 DEBUG : notifying kernel of 'change' event on device /sys/class/block/dm-3 -22:54:41,949 INFO : failed to set SELinux context for /mnt/sysimage: [Errno 95] Operation not supported -22:54:41,950 DEBUG : isys.py:mount()- going to mount /dev/mapper/server1-rootvol on /mnt/sysimage as ext3 with options defaults -22:54:42,826 DEBUG : isys.py:mount()- going to mount /dev/sda1 on /mnt/sysimage/boot as ext3 with options defaults -22:54:43,148 DEBUG : isys.py:mount()- going to mount //dev on /mnt/sysimage/dev as bind with options defaults,bind -22:54:43,158 DEBUG : isys.py:mount()- going to mount devpts on /mnt/sysimage/dev/pts as devpts with options gid=5,mode=620 -22:54:43,164 DEBUG : isys.py:mount()- going to mount tmpfs on /mnt/sysimage/dev/shm as tmpfs with options defaults -22:54:43,207 DEBUG : isys.py:mount()- going to mount /dev/mapper/server1-homevol on /mnt/sysimage/home as ext3 with options defaults -22:54:43,434 INFO : failed to get default SELinux context for /proc: [Errno 2] No such file or directory -22:54:43,435 DEBUG : isys.py:mount()- going to mount proc on /mnt/sysimage/proc as proc with options defaults -22:54:43,439 INFO : failed to get default SELinux context for /proc: [Errno 2] No such file or directory -22:54:43,496 DEBUG : isys.py:mount()- going to mount sysfs on /mnt/sysimage/sys as sysfs with options defaults -22:54:43,609 DEBUG : isys.py:mount()- going to mount /dev/mapper/server1-tmpvol on /mnt/sysimage/tmp as ext3 with options defaults -22:54:43,874 DEBUG : isys.py:mount()- going to mount /dev/mapper/server1-varvol on /mnt/sysimage/var as ext3 with options defaults -22:54:44,056 INFO : leaving (1) step enablefilesystems -22:54:44,057 INFO : moving (1) to step bootloadersetup -22:54:44,057 DEBUG : bootloadersetup is a direct step -22:54:44,061 INFO : leaving (1) step bootloadersetup -22:54:44,061 INFO : moving (1) to step reposetup -22:54:44,061 DEBUG : reposetup is a direct step -22:54:56,952 ERROR : Error downloading treeinfo file: [Errno 14] PYCURL ERROR 22 - "The requested URL returned error: 404 Not Found" -22:54:56,953 INFO : added repository ppa_repo with URL http://10.145.88.211:80/cobbler/repo_mirror/ppa_repo/ -22:54:57,133 DEBUG : Grabbing http://10.145.88.211/cblr/links/CentOS-6.5-x86_64/repodata/repomd.xml -22:54:57,454 DEBUG : Grabbing http://10.145.88.211/cblr/links/CentOS-6.5-x86_64/repodata/0e371b19e547b9d7a7e8acc4b8c0c7c074509d33653cfaef9e8f4fd1d62d95de-primary.sqlite.bz2 -22:54:58,637 DEBUG : Grabbing http://10.145.88.211/cblr/links/CentOS-6.5-x86_64/repodata/34bae2d3c9c78e04ed2429923bc095005af1b166d1a354422c4c04274bae0f59-c6-minimal-x86_64.xml -22:54:58,971 INFO : leaving (1) step reposetup -22:54:58,971 INFO : moving (1) to step basepkgsel -22:54:58,972 DEBUG : basepkgsel is a direct step -22:54:58,986 WARNING : not adding Base group -22:54:59,388 INFO : leaving (1) step basepkgsel -22:54:59,388 INFO : moving (1) to step postselection -22:54:59,388 DEBUG : postselection is a direct step -22:54:59,390 INFO : selected kernel package for kernel -22:54:59,848 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/fs/ext3/ext3.ko.gz -22:54:59,848 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/fs/jbd/jbd.ko.gz -22:54:59,848 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/fs/mbcache.ko.gz -22:54:59,848 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/scsi/fcoe/fcoe.ko.gz -22:54:59,848 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/scsi/fcoe/libfcoe.ko.gz -22:54:59,849 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/scsi/libfc/libfc.ko.gz -22:54:59,849 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/scsi/scsi_transport_fc.ko.gz -22:54:59,849 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/scsi/scsi_tgt.ko.gz -22:54:59,849 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/crypto/xts.ko.gz -22:54:59,849 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/crypto/lrw.ko.gz -22:54:59,849 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/crypto/gf128mul.ko.gz -22:54:59,849 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/crypto/sha256_generic.ko.gz -22:54:59,849 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/crypto/cbc.ko.gz -22:54:59,849 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/md/dm-raid.ko.gz -22:54:59,849 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/md/dm-crypt.ko.gz -22:54:59,850 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/md/dm-round-robin.ko.gz -22:54:59,850 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/md/dm-multipath.ko.gz -22:54:59,850 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/md/dm-snapshot.ko.gz -22:54:59,850 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/md/dm-mirror.ko.gz -22:54:59,850 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/md/dm-region-hash.ko.gz -22:54:59,850 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/md/dm-log.ko.gz -22:54:59,850 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/md/dm-zero.ko.gz -22:54:59,850 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/md/dm-mod.ko.gz -22:54:59,850 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/md/linear.ko.gz -22:54:59,850 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/md/raid10.ko.gz -22:54:59,850 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/md/raid456.ko.gz -22:54:59,851 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/crypto/async_tx/async_raid6_recov.ko.gz -22:54:59,851 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/crypto/async_tx/async_pq.ko.gz -22:54:59,851 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/lib/raid6/raid6_pq.ko.gz -22:54:59,851 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/crypto/async_tx/async_xor.ko.gz -22:54:59,851 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/crypto/xor.ko.gz -22:54:59,851 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/crypto/async_tx/async_memcpy.ko.gz -22:54:59,851 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/crypto/async_tx/async_tx.ko.gz -22:54:59,851 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/md/raid1.ko.gz -22:54:59,851 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/md/raid0.ko.gz -22:54:59,852 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/net/8021q/8021q.ko.gz -22:54:59,852 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/net/802/garp.ko.gz -22:54:59,852 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/net/802/stp.ko.gz -22:54:59,852 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/net/llc/llc.ko.gz -22:54:59,852 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/infiniband/hw/mlx4/mlx4_ib.ko.gz -22:54:59,852 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/net/mlx4/mlx4_en.ko.gz -22:54:59,852 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/net/mlx4/mlx4_core.ko.gz -22:54:59,852 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/infiniband/ulp/ipoib/ib_ipoib.ko.gz -22:54:59,852 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/infiniband/core/ib_cm.ko.gz -22:54:59,853 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/infiniband/core/ib_sa.ko.gz -22:54:59,853 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/infiniband/core/ib_mad.ko.gz -22:54:59,853 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/infiniband/core/ib_core.ko.gz -22:54:59,853 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/scsi/sg.ko.gz -22:54:59,853 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/scsi/sd_mod.ko.gz -22:54:59,853 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/lib/crc-t10dif.ko.gz -22:54:59,853 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/net/e1000/e1000.ko.gz -22:54:59,853 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/scsi/sr_mod.ko.gz -22:54:59,853 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/cdrom/cdrom.ko.gz -22:54:59,853 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/misc/vmware_balloon.ko.gz -22:54:59,853 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/message/fusion/mptspi.ko.gz -22:54:59,854 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/message/fusion/mptscsih.ko.gz -22:54:59,854 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/message/fusion/mptbase.ko.gz -22:54:59,854 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/scsi/scsi_transport_spi.ko.gz -22:54:59,854 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/ata/pata_acpi.ko.gz -22:54:59,854 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/ata/ata_generic.ko.gz -22:54:59,854 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/ata/ata_piix.ko.gz -22:54:59,854 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/net/ipv6/ipv6.ko.gz -22:54:59,854 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/firmware/iscsi_ibft.ko.gz -22:54:59,854 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/scsi/iscsi_boot_sysfs.ko.gz -22:54:59,854 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/input/misc/pcspkr.ko.gz -22:54:59,855 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/firmware/edd.ko.gz -22:54:59,855 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/block/floppy.ko.gz -22:54:59,855 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/scsi/iscsi_tcp.ko.gz -22:54:59,855 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/scsi/libiscsi_tcp.ko.gz -22:54:59,855 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/scsi/libiscsi.ko.gz -22:54:59,855 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/scsi/scsi_transport_iscsi.ko.gz -22:54:59,855 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/fs/squashfs/squashfs.ko.gz -22:54:59,855 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/fs/cramfs/cramfs.ko.gz -22:55:07,745 INFO : leaving (1) step postselection -22:55:07,745 INFO : moving (1) to step install -22:55:07,748 INFO : leaving (1) step install -22:55:07,748 INFO : moving (1) to step preinstallconfig -22:55:07,748 DEBUG : preinstallconfig is a direct step -22:55:08,087 DEBUG : isys.py:mount()- going to mount /selinux on /mnt/sysimage/selinux as selinuxfs with options defaults -22:55:08,091 DEBUG : isys.py:mount()- going to mount /proc/bus/usb on /mnt/sysimage/proc/bus/usb as usbfs with options defaults -22:55:08,102 INFO : copy_to_sysimage: source '/etc/multipath/wwids' does not exist. -22:55:08,102 INFO : copy_to_sysimage: source '/etc/multipath/bindings' does not exist. -22:55:08,118 INFO : copy_to_sysimage: source '/etc/multipath/wwids' does not exist. -22:55:08,118 INFO : copy_to_sysimage: source '/etc/multipath/bindings' does not exist. -22:55:08,122 INFO : leaving (1) step preinstallconfig -22:55:08,122 INFO : moving (1) to step installpackages -22:55:08,122 DEBUG : installpackages is a direct step -22:55:08,122 INFO : Preparing to install packages -23:17:06,152 INFO : leaving (1) step installpackages -23:17:06,153 INFO : moving (1) to step postinstallconfig -23:17:06,153 DEBUG : postinstallconfig is a direct step -23:17:06,162 DEBUG : Removing cachedir: /mnt/sysimage/var/cache/yum/anaconda-CentOS-201311291202.x86_64 -23:17:06,181 DEBUG : Removing headers and packages from /mnt/sysimage/var/cache/yum/ppa_repo -23:17:06,183 INFO : leaving (1) step postinstallconfig -23:17:06,184 INFO : moving (1) to step writeconfig -23:17:06,184 DEBUG : writeconfig is a direct step -23:17:06,184 INFO : Writing main configuration -23:17:06,219 WARNING : '/usr/sbin/authconfig' specified as full path -23:17:11,643 WARNING : '/usr/sbin/lokkit' specified as full path -23:17:11,703 WARNING : '/usr/sbin/lokkit' specified as full path -23:17:11,885 INFO : removing libuser.conf at /tmp/libuser.WMDW9M -23:17:11,885 INFO : created new libuser.conf at /tmp/libuser.WMDW9M with instPath="/mnt/sysimage" -23:17:12,722 INFO : leaving (1) step writeconfig -23:17:12,722 INFO : moving (1) to step firstboot -23:17:12,723 DEBUG : firstboot is a direct step -23:17:12,723 INFO : leaving (1) step firstboot -23:17:12,723 INFO : moving (1) to step instbootloader -23:17:12,724 DEBUG : instbootloader is a direct step -23:17:14,664 WARNING : '/sbin/grub-install' specified as full path -23:17:15,006 WARNING : '/sbin/grub' specified as full path -23:17:16,039 INFO : leaving (1) step instbootloader -23:17:16,040 INFO : moving (1) to step reipl -23:17:16,040 DEBUG : reipl is a direct step -23:17:16,040 INFO : leaving (1) step reipl -23:17:16,040 INFO : moving (1) to step writeksconfig -23:17:16,040 DEBUG : writeksconfig is a direct step -23:17:16,041 INFO : Writing autokickstart file -23:17:16,070 INFO : leaving (1) step writeksconfig -23:17:16,071 INFO : moving (1) to step setfilecon -23:17:16,071 DEBUG : setfilecon is a direct step -23:17:16,071 INFO : setting SELinux contexts for anaconda created files -23:17:17,822 INFO : leaving (1) step setfilecon -23:17:17,822 INFO : moving (1) to step copylogs -23:17:17,822 DEBUG : copylogs is a direct step -23:17:17,822 INFO : Copying anaconda logs -23:17:17,825 INFO : leaving (1) step copylogs -23:17:17,825 INFO : moving (1) to step methodcomplete -23:17:17,825 DEBUG : methodcomplete is a direct step -23:17:17,825 INFO : leaving (1) step methodcomplete -23:17:17,826 INFO : moving (1) to step postscripts -23:17:17,826 DEBUG : postscripts is a direct step -23:17:17,826 INFO : Running kickstart %%post script(s) -23:17:17,858 WARNING : '/bin/sh' specified as full path -23:17:21,002 INFO : All kickstart %%post script(s) have been run -23:17:21,002 INFO : leaving (1) step postscripts -23:17:21,002 INFO : moving (1) to step dopostaction -23:17:21,002 DEBUG : dopostaction is a direct step -23:17:21,003 INFO : leaving (1) step dopostaction diff --git a/compass/tests/actions/update_progress/data/test1/anamon/checkpoint_3/server1.1/install.log.template b/compass/tests/actions/update_progress/data/test1/anamon/checkpoint_3/server1.1/install.log.template deleted file mode 100644 index ee9d40c2..00000000 --- a/compass/tests/actions/update_progress/data/test1/anamon/checkpoint_3/server1.1/install.log.template +++ /dev/null @@ -1,141 +0,0 @@ -Installing libgcc-4.4.7-4.el6.x86_64 -warning: libgcc-4.4.7-4.el6.x86_64: Header V3 RSA/SHA1 Signature, key ID c105b9de: NOKEY -Installing setup-2.8.14-20.el6_4.1.noarch -Installing filesystem-2.4.30-3.el6.x86_64 -Installing basesystem-10.0-4.el6.noarch -Installing ncurses-base-5.7-3.20090208.el6.x86_64 -Installing kernel-firmware-2.6.32-431.el6.noarch -Installing tzdata-2013g-1.el6.noarch -Installing nss-softokn-freebl-3.14.3-9.el6.x86_64 -Installing glibc-common-2.12-1.132.el6.x86_64 -Installing glibc-2.12-1.132.el6.x86_64 -Installing ncurses-libs-5.7-3.20090208.el6.x86_64 -Installing bash-4.1.2-15.el6_4.x86_64 -Installing libattr-2.4.44-7.el6.x86_64 -Installing libcap-2.16-5.5.el6.x86_64 -Installing zlib-1.2.3-29.el6.x86_64 -Installing info-4.13a-8.el6.x86_64 -Installing popt-1.13-7.el6.x86_64 -Installing chkconfig-1.3.49.3-2.el6_4.1.x86_64 -Installing audit-libs-2.2-2.el6.x86_64 -Installing libcom_err-1.41.12-18.el6.x86_64 -Installing libacl-2.2.49-6.el6.x86_64 -Installing db4-4.7.25-18.el6_4.x86_64 -Installing nspr-4.10.0-1.el6.x86_64 -Installing nss-util-3.15.1-3.el6.x86_64 -Installing readline-6.0-4.el6.x86_64 -Installing libsepol-2.0.41-4.el6.x86_64 -Installing libselinux-2.0.94-5.3.el6_4.1.x86_64 -Installing shadow-utils-4.1.4.2-13.el6.x86_64 -Installing sed-4.2.1-10.el6.x86_64 -Installing bzip2-libs-1.0.5-7.el6_0.x86_64 -Installing libuuid-2.17.2-12.14.el6.x86_64 -Installing libstdc++-4.4.7-4.el6.x86_64 -Installing libblkid-2.17.2-12.14.el6.x86_64 -Installing gawk-3.1.7-10.el6.x86_64 -Installing file-libs-5.04-15.el6.x86_64 -Installing libgpg-error-1.7-4.el6.x86_64 -Installing dbus-libs-1.2.24-7.el6_3.x86_64 -Installing libudev-147-2.51.el6.x86_64 -Installing pcre-7.8-6.el6.x86_64 -Installing grep-2.6.3-4.el6.x86_64 -Installing lua-5.1.4-4.1.el6.x86_64 -Installing sqlite-3.6.20-1.el6.x86_64 -Installing cyrus-sasl-lib-2.1.23-13.el6_3.1.x86_64 -Installing libidn-1.18-2.el6.x86_64 -Installing expat-2.0.1-11.el6_2.x86_64 -Installing xz-libs-4.999.9-0.3.beta.20091007git.el6.x86_64 -Installing elfutils-libelf-0.152-1.el6.x86_64 -Installing libgcrypt-1.4.5-11.el6_4.x86_64 -Installing bzip2-1.0.5-7.el6_0.x86_64 -Installing findutils-4.4.2-6.el6.x86_64 -Installing libselinux-utils-2.0.94-5.3.el6_4.1.x86_64 -Installing checkpolicy-2.0.22-1.el6.x86_64 -Installing cpio-2.10-11.el6_3.x86_64 -Installing which-2.19-6.el6.x86_64 -Installing libxml2-2.7.6-14.el6.x86_64 -Installing libedit-2.11-4.20080712cvs.1.el6.x86_64 -Installing pth-2.0.7-9.3.el6.x86_64 -Installing tcp_wrappers-libs-7.6-57.el6.x86_64 -Installing sysvinit-tools-2.87-5.dsf.el6.x86_64 -Installing libtasn1-2.3-3.el6_2.1.x86_64 -Installing p11-kit-0.18.5-2.el6.x86_64 -Installing p11-kit-trust-0.18.5-2.el6.x86_64 -Installing ca-certificates-2013.1.94-65.0.el6.noarch -Installing device-mapper-persistent-data-0.2.8-2.el6.x86_64 -Installing nss-softokn-3.14.3-9.el6.x86_64 -Installing libnih-1.0.1-7.el6.x86_64 -Installing upstart-0.6.5-12.el6_4.1.x86_64 -Installing file-5.04-15.el6.x86_64 -Installing gmp-4.3.1-7.el6_2.2.x86_64 -Installing libusb-0.1.12-23.el6.x86_64 -Installing MAKEDEV-3.24-6.el6.x86_64 -Installing libutempter-1.1.5-4.1.el6.x86_64 -Installing psmisc-22.6-15.el6_0.1.x86_64 -Installing net-tools-1.60-110.el6_2.x86_64 -Installing vim-minimal-7.2.411-1.8.el6.x86_64 -Installing tar-1.23-11.el6.x86_64 -Installing procps-3.2.8-25.el6.x86_64 -Installing db4-utils-4.7.25-18.el6_4.x86_64 -Installing e2fsprogs-libs-1.41.12-18.el6.x86_64 -Installing libss-1.41.12-18.el6.x86_64 -Installing pinentry-0.7.6-6.el6.x86_64 -Installing binutils-2.20.51.0.2-5.36.el6.x86_64 -Installing m4-1.4.13-5.el6.x86_64 -Installing diffutils-2.8.1-28.el6.x86_64 -Installing make-3.81-20.el6.x86_64 -Installing dash-0.5.5.1-4.el6.x86_64 -Installing ncurses-5.7-3.20090208.el6.x86_64 -Installing groff-1.18.1.4-21.el6.x86_64 -Installing less-436-10.el6.x86_64 -Installing coreutils-libs-8.4-31.el6.x86_64 -Installing gzip-1.3.12-19.el6_4.x86_64 -Installing cracklib-2.8.16-4.el6.x86_64 -Installing cracklib-dicts-2.8.16-4.el6.x86_64 -Installing coreutils-8.4-31.el6.x86_64 -Installing pam-1.1.1-17.el6.x86_64 -Installing module-init-tools-3.9-21.el6_4.x86_64 -Installing hwdata-0.233-9.1.el6.noarch -Installing redhat-logos-60.0.14-12.el6.centos.noarch -Installing plymouth-scripts-0.8.3-27.el6.centos.x86_64 -Installing libpciaccess-0.13.1-2.el6.x86_64 -Installing nss-3.15.1-15.el6.x86_64 -Installing nss-sysinit-3.15.1-15.el6.x86_64 -Installing nss-tools-3.15.1-15.el6.x86_64 -Installing openldap-2.4.23-32.el6_4.1.x86_64 -Installing logrotate-3.7.8-17.el6.x86_64 -Installing gdbm-1.8.0-36.el6.x86_64 -Installing mingetty-1.08-5.el6.x86_64 -Installing keyutils-libs-1.4-4.el6.x86_64 -Installing krb5-libs-1.10.3-10.el6_4.6.x86_64 -Installing openssl-1.0.1e-15.el6.x86_64 -Installing libssh2-1.4.2-1.el6.x86_64 -Installing libcurl-7.19.7-37.el6_4.x86_64 -Installing gnupg2-2.0.14-6.el6_4.x86_64 -Installing gpgme-1.1.8-3.el6.x86_64 -Installing curl-7.19.7-37.el6_4.x86_64 -Installing rpm-libs-4.8.0-37.el6.x86_64 -Installing rpm-4.8.0-37.el6.x86_64 -Installing fipscheck-lib-1.2.0-7.el6.x86_64 -Installing fipscheck-1.2.0-7.el6.x86_64 -Installing mysql-libs-5.1.71-1.el6.x86_64 -Installing ethtool-3.5-1.el6.x86_64 -Installing pciutils-libs-3.1.10-2.el6.x86_64 -Installing plymouth-core-libs-0.8.3-27.el6.centos.x86_64 -Installing libcap-ng-0.6.4-3.el6_0.1.x86_64 -Installing libffi-3.0.5-3.2.el6.x86_64 -Installing python-2.6.6-51.el6.x86_64 -Installing python-libs-2.6.6-51.el6.x86_64 -Installing python-pycurl-7.19.0-8.el6.x86_64 -Installing python-urlgrabber-3.9.1-9.el6.noarch -Installing pygpgme-0.1-18.20090824bzr68.el6.x86_64 -Installing rpm-python-4.8.0-37.el6.x86_64 -Installing python-iniparse-0.3.1-2.1.el6.noarch -Installing slang-2.2.1-1.el6.x86_64 -Installing newt-0.52.11-3.el6.x86_64 -Installing newt-python-0.52.11-3.el6.x86_64 -Installing ustr-1.0.4-9.1.el6.x86_64 -Installing libsemanage-2.0.43-4.2.el6.x86_64 -Installing libaio-0.3.107-10.el6.x86_64 -Installing pkgconfig-0.23-9.1.el6.x86_64 -Installing gamin-0.1.10-9.el6.x86_64 diff --git a/compass/tests/actions/update_progress/data/test1/anamon/checkpoint_3/server1.1/sys.log.template b/compass/tests/actions/update_progress/data/test1/anamon/checkpoint_3/server1.1/sys.log.template deleted file mode 100644 index 7390276a..00000000 --- a/compass/tests/actions/update_progress/data/test1/anamon/checkpoint_3/server1.1/sys.log.template +++ /dev/null @@ -1,1726 +0,0 @@ -05:51:18,517 INFO kernel:imklog 5.8.10, log source = /proc/kmsg started. -05:51:18,517 INFO rsyslogd: [origin software="rsyslogd" swVersion="5.8.10" x-pid="68" x-info="http://www.rsyslog.com"] start -05:51:18,517 INFO kernel:Initializing cgroup subsys cpuset -05:51:18,517 INFO kernel:Initializing cgroup subsys cpu -05:51:18,517 NOTICE kernel:Linux version 2.6.32-431.el6.x86_64 (mockbuild@c6b8.bsys.dev.centos.org) (gcc version 4.4.7 20120313 (Red Hat 4.4.7-4) (GCC) ) #1 SMP Fri Nov 22 03:15:09 UTC 2013 -05:51:18,517 INFO kernel:Command line: initrd=/images/CentOS-6.5-x86_64/initrd.img ksdevice=bootif lang= kssendmac text ks=http://10.145.88.211/cblr/svc/op/ks/system/server1.1 BOOT_IMAGE=/images/CentOS-6.5-x86_64/vmlinuz BOOTIF=01-00-0c-29-21-89-af -05:51:18,517 INFO kernel:KERNEL supported cpus: -05:51:18,517 INFO kernel: Intel GenuineIntel -05:51:18,517 INFO kernel: AMD AuthenticAMD -05:51:18,517 INFO kernel: Centaur CentaurHauls -05:51:18,517 INFO kernel:Disabled fast string operations -05:51:18,517 INFO kernel:BIOS-provided physical RAM map: -05:51:18,517 INFO kernel: BIOS-e820: 0000000000000000 - 000000000009f400 (usable) -05:51:18,517 INFO kernel: BIOS-e820: 000000000009f400 - 00000000000a0000 (reserved) -05:51:18,517 INFO kernel: BIOS-e820: 00000000000ca000 - 00000000000cc000 (reserved) -05:51:18,517 INFO kernel: BIOS-e820: 00000000000dc000 - 0000000000100000 (reserved) -05:51:18,517 INFO kernel: BIOS-e820: 0000000000100000 - 000000007fef0000 (usable) -05:51:18,517 INFO kernel: BIOS-e820: 000000007fef0000 - 000000007feff000 (ACPI data) -05:51:18,517 INFO kernel: BIOS-e820: 000000007feff000 - 000000007ff00000 (ACPI NVS) -05:51:18,517 INFO kernel: BIOS-e820: 000000007ff00000 - 0000000080000000 (usable) -05:51:18,517 INFO kernel: BIOS-e820: 00000000e0000000 - 00000000f0000000 (reserved) -05:51:18,517 INFO kernel: BIOS-e820: 00000000fec00000 - 00000000fec10000 (reserved) -05:51:18,517 INFO kernel: BIOS-e820: 00000000fee00000 - 00000000fee01000 (reserved) -05:51:18,517 INFO kernel: BIOS-e820: 00000000fffe0000 - 0000000100000000 (reserved) -05:51:18,517 INFO kernel:DMI present. -05:51:18,517 WARNING kernel:SMBIOS version 2.4 @ 0xF68F0 -05:51:18,517 DEBUG kernel:DMI: VMware, Inc. VMware Virtual Platform/440BX Desktop Reference Platform, BIOS 6.00 01/07/2011 -05:51:18,517 NOTICE kernel:Phoenix BIOS detected: BIOS may corrupt low RAM, working around it. -05:51:18,517 DEBUG kernel:e820 update range: 0000000000000000 - 0000000000010000 (usable) ==> (reserved) -05:51:18,517 INFO kernel:Hypervisor detected: VMware -05:51:18,517 DEBUG kernel:e820 update range: 0000000000000000 - 0000000000001000 (usable) ==> (reserved) -05:51:18,517 DEBUG kernel:e820 remove range: 00000000000a0000 - 0000000000100000 (usable) -05:51:18,517 INFO kernel:last_pfn = 0x80000 max_arch_pfn = 0x400000000 -05:51:18,517 DEBUG kernel:MTRR default type: uncachable -05:51:18,517 DEBUG kernel:MTRR fixed ranges enabled: -05:51:18,517 DEBUG kernel: 00000-9FFFF write-back -05:51:18,517 DEBUG kernel: A0000-BFFFF uncachable -05:51:18,517 DEBUG kernel: C0000-CFFFF write-protect -05:51:18,517 DEBUG kernel: D0000-EFFFF uncachable -05:51:18,517 DEBUG kernel: F0000-FFFFF write-protect -05:51:18,517 DEBUG kernel:MTRR variable ranges enabled: -05:51:18,517 DEBUG kernel: 0 base 0000000000 mask FF80000000 write-back -05:51:18,517 DEBUG kernel: 1 disabled -05:51:18,517 DEBUG kernel: 2 disabled -05:51:18,517 DEBUG kernel: 3 disabled -05:51:18,517 DEBUG kernel: 4 disabled -05:51:18,517 DEBUG kernel: 5 disabled -05:51:18,517 DEBUG kernel: 6 disabled -05:51:18,517 DEBUG kernel: 7 disabled -05:51:18,517 INFO kernel:x86 PAT enabled: cpu 0, old 0x0, new 0x7010600070106 -05:51:18,517 DEBUG kernel:initial memory mapped : 0 - 20000000 -05:51:18,517 INFO kernel:init_memory_mapping: 0000000000000000-0000000080000000 -05:51:18,517 DEBUG kernel: 0000000000 - 0080000000 page 2M -05:51:18,517 DEBUG kernel:kernel direct mapping tables up to 80000000 @ 10000-13000 -05:51:18,517 INFO kernel:RAMDISK: 7def9000 - 7fecf4ff -05:51:18,517 WARNING kernel:ACPI: RSDP 00000000000f6940 00024 (v02 PTLTD ) -05:51:18,517 WARNING kernel:ACPI: XSDT 000000007fef0333 00054 (v01 INTEL 440BX 06040000 VMW 01324272) -05:51:18,517 WARNING kernel:ACPI: FACP 000000007fefee98 000F4 (v04 INTEL 440BX 06040000 PTL 000F4240) -05:51:18,517 WARNING kernel:ACPI: DSDT 000000007fef055d 0E93B (v01 PTLTD Custom 06040000 MSFT 03000001) -05:51:18,517 WARNING kernel:ACPI: FACS 000000007fefffc0 00040 -05:51:18,517 WARNING kernel:ACPI: BOOT 000000007fef0535 00028 (v01 PTLTD $SBFTBL$ 06040000 LTP 00000001) -05:51:18,517 WARNING kernel:ACPI: APIC 000000007fef04d7 0005E (v01 PTLTD ? APIC 06040000 LTP 00000000) -05:51:18,517 WARNING kernel:ACPI: MCFG 000000007fef049b 0003C (v01 PTLTD $PCITBL$ 06040000 LTP 00000001) -05:51:18,517 WARNING kernel:ACPI: SRAT 000000007fef03fb 000A0 (v02 VMWARE MEMPLUG 06040000 VMW 00000001) -05:51:18,517 WARNING kernel:ACPI: HPET 000000007fef03c3 00038 (v01 VMWARE VMW HPET 06040000 WMV 00000001) -05:51:18,517 DEBUG kernel:ACPI: Local APIC address 0xfee00000 -05:51:18,517 INFO kernel:Setting APIC routing to flat. -05:51:18,517 INFO kernel:SRAT: PXM 0 -> APIC 0 -> Node 0 -05:51:18,517 INFO kernel:SRAT: PXM 0 -> APIC 1 -> Node 0 -05:51:18,517 INFO kernel:SRAT: Node 0 PXM 0 0-a0000 -05:51:18,517 INFO kernel:SRAT: Node 0 PXM 0 100000-80000000 -05:51:18,517 DEBUG kernel:NUMA: Allocated memnodemap from 11000 - 12040 -05:51:18,517 DEBUG kernel:NUMA: Using 20 for the hash shift. -05:51:18,517 INFO kernel:Bootmem setup node 0 0000000000000000-0000000080000000 -05:51:18,517 INFO kernel: NODE_DATA [0000000000012040 - 000000000004603f] -05:51:18,517 INFO kernel: bootmap [0000000000047000 - 0000000000056fff] pages 10 -05:51:18,517 INFO kernel:(8 early reservations) ==> bootmem [0000000000 - 0080000000] -05:51:18,517 INFO kernel: #0 [0000000000 - 0000001000] BIOS data page ==> [0000000000 - 0000001000] -05:51:18,517 INFO kernel: #1 [0000006000 - 0000008000] TRAMPOLINE ==> [0000006000 - 0000008000] -05:51:18,517 INFO kernel: #2 [0001000000 - 000201faa4] TEXT DATA BSS ==> [0001000000 - 000201faa4] -05:51:18,517 INFO kernel: #3 [007def9000 - 007fecf4ff] RAMDISK ==> [007def9000 - 007fecf4ff] -05:51:18,517 INFO kernel: #4 [000009f400 - 0000100000] BIOS reserved ==> [000009f400 - 0000100000] -05:51:18,517 INFO kernel: #5 [0002020000 - 00020201f0] BRK ==> [0002020000 - 00020201f0] -05:51:18,517 INFO kernel: #6 [0000010000 - 0000011000] PGTABLE ==> [0000010000 - 0000011000] -05:51:18,517 INFO kernel: #7 [0000011000 - 0000012040] MEMNODEMAP ==> [0000011000 - 0000012040] -05:51:18,517 INFO kernel:found SMP MP-table at [ffff8800000f69b0] f69b0 -05:51:18,517 DEBUG kernel: [ffffea0000000000-ffffea0001bfffff] PMD -> [ffff880002600000-ffff8800041fffff] on node 0 -05:51:18,517 WARNING kernel:Zone PFN ranges: -05:51:18,517 WARNING kernel: DMA 0x00000010 -> 0x00001000 -05:51:18,517 WARNING kernel: DMA32 0x00001000 -> 0x00100000 -05:51:18,517 WARNING kernel: Normal 0x00100000 -> 0x00100000 -05:51:18,517 WARNING kernel:Movable zone start PFN for each node -05:51:18,517 WARNING kernel:early_node_map[3] active PFN ranges -05:51:18,517 WARNING kernel: 0: 0x00000010 -> 0x0000009f -05:51:18,517 WARNING kernel: 0: 0x00000100 -> 0x0007fef0 -05:51:18,517 WARNING kernel: 0: 0x0007ff00 -> 0x00080000 -05:51:18,517 DEBUG kernel:On node 0 totalpages: 524159 -05:51:18,517 DEBUG kernel: DMA zone: 56 pages used for memmap -05:51:18,517 DEBUG kernel: DMA zone: 101 pages reserved -05:51:18,517 DEBUG kernel: DMA zone: 3826 pages, LIFO batch:0 -05:51:18,517 DEBUG kernel: DMA32 zone: 7112 pages used for memmap -05:51:18,517 DEBUG kernel: DMA32 zone: 513064 pages, LIFO batch:31 -05:51:18,517 INFO kernel:ACPI: PM-Timer IO Port: 0x1008 -05:51:18,517 DEBUG kernel:ACPI: Local APIC address 0xfee00000 -05:51:18,517 INFO kernel:Setting APIC routing to flat. -05:51:18,517 INFO kernel:ACPI: LAPIC (acpi_id[0x00] lapic_id[0x00] enabled) -05:51:18,517 INFO kernel:ACPI: LAPIC (acpi_id[0x01] lapic_id[0x01] enabled) -05:51:18,517 INFO kernel:ACPI: LAPIC_NMI (acpi_id[0x00] high edge lint[0x1]) -05:51:18,517 INFO kernel:ACPI: LAPIC_NMI (acpi_id[0x01] high edge lint[0x1]) -05:51:18,517 INFO kernel:ACPI: IOAPIC (id[0x02] address[0xfec00000] gsi_base[0]) -05:51:18,518 INFO kernel:IOAPIC[0]: apic_id 2, version 17, address 0xfec00000, GSI 0-23 -05:51:18,518 INFO kernel:ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 high edge) -05:51:18,518 DEBUG kernel:ACPI: IRQ0 used by override. -05:51:18,518 DEBUG kernel:ACPI: IRQ2 used by override. -05:51:18,518 DEBUG kernel:ACPI: IRQ9 used by override. -05:51:18,518 INFO kernel:Using ACPI (MADT) for SMP configuration information -05:51:18,518 INFO kernel:ACPI: HPET id: 0x8086af01 base: 0xfed00000 -05:51:18,518 INFO kernel:SMP: Allowing 2 CPUs, 0 hotplug CPUs -05:51:18,518 DEBUG kernel:nr_irqs_gsi: 24 -05:51:18,518 INFO kernel:PM: Registered nosave memory: 000000000009f000 - 00000000000a0000 -05:51:18,518 INFO kernel:PM: Registered nosave memory: 00000000000a0000 - 00000000000ca000 -05:51:18,518 INFO kernel:PM: Registered nosave memory: 00000000000ca000 - 00000000000cc000 -05:51:18,518 INFO kernel:PM: Registered nosave memory: 00000000000cc000 - 00000000000dc000 -05:51:18,518 INFO kernel:PM: Registered nosave memory: 00000000000dc000 - 0000000000100000 -05:51:18,518 INFO kernel:PM: Registered nosave memory: 000000007fef0000 - 000000007feff000 -05:51:18,518 INFO kernel:PM: Registered nosave memory: 000000007feff000 - 000000007ff00000 -05:51:18,518 INFO kernel:Allocating PCI resources starting at 80000000 (gap: 80000000:60000000) -05:51:18,518 INFO kernel:Booting paravirtualized kernel on bare hardware -05:51:18,518 INFO kernel:NR_CPUS:4096 nr_cpumask_bits:2 nr_cpu_ids:2 nr_node_ids:1 -05:51:18,518 INFO kernel:PERCPU: Embedded 31 pages/cpu @ffff880002200000 s94872 r8192 d23912 u1048576 -05:51:18,518 INFO kernel:pcpu-alloc: s94872 r8192 d23912 u1048576 alloc=1*2097152 -05:51:18,518 INFO kernel:pcpu-alloc: [0] 0 1 -05:51:18,518 WARNING kernel:Built 1 zonelists in Node order, mobility grouping on. Total pages: 516890 -05:51:18,520 WARNING kernel:Policy zone: DMA32 -05:51:18,520 NOTICE kernel:Kernel command line: initrd=/images/CentOS-6.5-x86_64/initrd.img ksdevice=bootif lang= kssendmac text ks=http://10.145.88.211/cblr/svc/op/ks/system/server1.1 BOOT_IMAGE=/images/CentOS-6.5-x86_64/vmlinuz BOOTIF=01-00-0c-29-21-89-af -05:51:18,520 INFO kernel:PID hash table entries: 4096 (order: 3, 32768 bytes) -05:51:18,520 INFO kernel:Checking aperture... -05:51:18,520 INFO kernel:No AGP bridge found -05:51:18,520 INFO kernel:Memory: 2018096k/2097152k available (5325k kernel code, 516k absent, 78540k reserved, 7013k data, 1276k init) -05:51:18,520 INFO kernel:Hierarchical RCU implementation. -05:51:18,520 INFO kernel:NR_IRQS:33024 nr_irqs:424 -05:51:18,520 INFO kernel:Extended CMOS year: 2000 -05:51:18,520 WARNING kernel:Console: colour VGA+ 80x25 -05:51:18,520 INFO kernel:console [tty0] enabled -05:51:18,520 INFO kernel:allocated 8388608 bytes of page_cgroup -05:51:18,520 INFO kernel:please try 'cgroup_disable=memory' option if you don't want memory cgroups -05:51:18,520 DEBUG kernel:hpet clockevent registered -05:51:18,520 INFO kernel:TSC freq read from hypervisor : 2400.085 MHz -05:51:18,520 WARNING kernel:Detected 2400.085 MHz processor. -05:51:18,520 INFO kernel:Calibrating delay loop (skipped) preset value.. 4800.17 BogoMIPS (lpj=2400085) -05:51:18,520 INFO kernel:pid_max: default: 32768 minimum: 301 -05:51:18,520 INFO kernel:Security Framework initialized -05:51:18,520 INFO kernel:SELinux: Initializing. -05:51:18,520 DEBUG kernel:SELinux: Starting in permissive mode -05:51:18,520 INFO kernel:Dentry cache hash table entries: 262144 (order: 9, 2097152 bytes) -05:51:18,520 INFO kernel:Inode-cache hash table entries: 131072 (order: 8, 1048576 bytes) -05:51:18,520 WARNING kernel:Mount-cache hash table entries: 256 -05:51:18,520 INFO kernel:Initializing cgroup subsys ns -05:51:18,520 INFO kernel:Initializing cgroup subsys cpuacct -05:51:18,520 INFO kernel:Initializing cgroup subsys memory -05:51:18,520 INFO kernel:Initializing cgroup subsys devices -05:51:18,520 INFO kernel:Initializing cgroup subsys freezer -05:51:18,520 INFO kernel:Initializing cgroup subsys net_cls -05:51:18,520 INFO kernel:Initializing cgroup subsys blkio -05:51:18,520 INFO kernel:Initializing cgroup subsys perf_event -05:51:18,520 INFO kernel:Initializing cgroup subsys net_prio -05:51:18,520 INFO kernel:Disabled fast string operations -05:51:18,520 INFO kernel:CPU: Physical Processor ID: 0 -05:51:18,520 INFO kernel:mce: CPU supports 0 MCE banks -05:51:18,520 INFO kernel:alternatives: switching to unfair spinlock -05:51:18,520 INFO kernel:ACPI: Core revision 20090903 -05:51:18,520 INFO kernel:ftrace: converting mcount calls to 0f 1f 44 00 00 -05:51:18,520 INFO kernel:ftrace: allocating 21769 entries in 86 pages -05:51:18,520 INFO kernel:APIC routing finalized to flat. -05:51:18,520 INFO kernel:..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1 -05:51:18,520 INFO kernel:CPU0: Intel(R) Xeon(R) CPU E5620 @ 2.40GHz stepping 02 -05:51:18,520 INFO kernel:Performance Events: 16-deep LBR, Westmere events, Intel PMU driver. -05:51:18,520 WARNING kernel:CPUID marked event: 'cpu cycles' unavailable -05:51:18,520 WARNING kernel:CPUID marked event: 'instructions' unavailable -05:51:18,520 WARNING kernel:CPUID marked event: 'bus cycles' unavailable -05:51:18,520 WARNING kernel:CPUID marked event: 'cache references' unavailable -05:51:18,520 WARNING kernel:CPUID marked event: 'cache misses' unavailable -05:51:18,520 WARNING kernel:CPUID marked event: 'branch instructions' unavailable -05:51:18,520 WARNING kernel:CPUID marked event: 'branch misses' unavailable -05:51:18,520 INFO kernel:... version: 3 -05:51:18,520 INFO kernel:... bit width: 48 -05:51:18,520 INFO kernel:... generic registers: 4 -05:51:18,520 INFO kernel:... value mask: 0000ffffffffffff -05:51:18,520 INFO kernel:... max period: 000000007fffffff -05:51:18,520 INFO kernel:... fixed-purpose events: 3 -05:51:18,520 INFO kernel:... event mask: 000000070000000f -05:51:18,520 WARNING kernel:NMI watchdog disabled (cpu0): hardware events not enabled -05:51:18,520 INFO kernel:Booting Node 0, Processors #1 Ok. -05:51:18,520 INFO kernel:Disabled fast string operations -05:51:18,520 INFO kernel:mce: CPU supports 0 MCE banks -05:51:18,520 INFO kernel:Skipped synchronization checks as TSC is reliable. -05:51:18,520 INFO kernel:Brought up 2 CPUs -05:51:18,520 INFO kernel:Total of 2 processors activated (9600.34 BogoMIPS). -05:51:18,520 INFO kernel:x86 PAT enabled: cpu 0, old 0x0, new 0x7010600070106 -05:51:18,520 INFO kernel:x86 PAT enabled: cpu 1, old 0x0, new 0x7010600070106 -05:51:18,520 DEBUG kernel:sizeof(vma)=200 bytes -05:51:18,520 DEBUG kernel:sizeof(page)=56 bytes -05:51:18,520 DEBUG kernel:sizeof(inode)=592 bytes -05:51:18,520 DEBUG kernel:sizeof(dentry)=192 bytes -05:51:18,520 DEBUG kernel:sizeof(ext3inode)=800 bytes -05:51:18,520 DEBUG kernel:sizeof(buffer_head)=104 bytes -05:51:18,520 DEBUG kernel:sizeof(skbuff)=232 bytes -05:51:18,520 DEBUG kernel:sizeof(task_struct)=2648 bytes -05:51:18,520 INFO kernel:devtmpfs: initialized -05:51:18,520 INFO kernel:PM: Registering ACPI NVS region at 7feff000 (4096 bytes) -05:51:18,520 INFO kernel:regulator: core version 0.5 -05:51:18,520 INFO kernel:NET: Registered protocol family 16 -05:51:18,520 INFO kernel:ACPI: bus type pci registered -05:51:18,520 NOTICE kernel:PCI: MCFG configuration 0: base e0000000 segment 0 buses 0 - 255 -05:51:18,520 NOTICE kernel:PCI: MCFG area at e0000000 reserved in E820 -05:51:18,520 INFO kernel:PCI: Using MMCONFIG at e0000000 - efffffff -05:51:18,520 INFO kernel:PCI: Using configuration type 1 for base access -05:51:18,520 WARNING kernel:bio: create slab at 0 -05:51:18,520 DEBUG kernel:ACPI: EC: Look up EC in DSDT -05:51:18,520 NOTICE kernel:ACPI: BIOS _OSI(Linux) query ignored -05:51:18,520 INFO kernel:ACPI: Interpreter enabled -05:51:18,520 INFO kernel:ACPI: (supports S0 S1 S4 S5) -05:51:18,520 INFO kernel:ACPI: Using IOAPIC for interrupt routing -05:51:18,520 INFO kernel:ACPI: No dock devices found. -05:51:18,520 INFO kernel:PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug -05:51:18,520 INFO kernel:ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-ff]) -05:51:18,520 INFO kernel:pci_root PNP0A03:00: host bridge window [mem 0x000a0000-0x000bffff] -05:51:18,520 INFO kernel:pci_root PNP0A03:00: host bridge window [mem 0x000d0000-0x000d3fff] -05:51:18,520 INFO kernel:pci_root PNP0A03:00: host bridge window [mem 0x000d4000-0x000d7fff] -05:51:18,520 INFO kernel:pci_root PNP0A03:00: host bridge window [mem 0x000d8000-0x000dbfff] -05:51:18,520 INFO kernel:pci_root PNP0A03:00: host bridge window [mem 0x80000000-0xfebfffff] -05:51:18,520 INFO kernel:pci_root PNP0A03:00: host bridge window [io 0x0000-0x0cf7] -05:51:18,520 INFO kernel:pci_root PNP0A03:00: host bridge window [io 0x0d00-0xfeff] -05:51:18,520 INFO kernel:PCI host bridge to bus 0000:00 -05:51:18,520 INFO kernel:pci_bus 0000:00: root bus resource [mem 0x000a0000-0x000bffff] -05:51:18,520 INFO kernel:pci_bus 0000:00: root bus resource [mem 0x000d0000-0x000d3fff] -05:51:18,520 INFO kernel:pci_bus 0000:00: root bus resource [mem 0x000d4000-0x000d7fff] -05:51:18,520 INFO kernel:pci_bus 0000:00: root bus resource [mem 0x000d8000-0x000dbfff] -05:51:18,520 INFO kernel:pci_bus 0000:00: root bus resource [mem 0x80000000-0xfebfffff] -05:51:18,520 INFO kernel:pci_bus 0000:00: root bus resource [io 0x0000-0x0cf7] -05:51:18,520 INFO kernel:pci_bus 0000:00: root bus resource [io 0x0d00-0xfeff] -05:51:18,520 DEBUG kernel:pci 0000:00:07.1: reg 20: [io 0x10c0-0x10cf] -05:51:18,520 INFO kernel:pci 0000:00:07.3: quirk: [io 0x1000-0x103f] claimed by PIIX4 ACPI -05:51:18,520 INFO kernel:pci 0000:00:07.3: quirk: [io 0x1040-0x104f] claimed by PIIX4 SMB -05:51:18,520 DEBUG kernel:pci 0000:00:07.7: reg 10: [io 0x1080-0x10bf] -05:51:18,520 DEBUG kernel:pci 0000:00:07.7: reg 14: [mem 0xd0000000-0xd0001fff 64bit] -05:51:18,520 DEBUG kernel:pci 0000:00:0f.0: reg 10: [io 0x10d0-0x10df] -05:51:18,520 DEBUG kernel:pci 0000:00:0f.0: reg 14: [mem 0xd8000000-0xdbffffff pref] -05:51:18,520 DEBUG kernel:pci 0000:00:0f.0: reg 18: [mem 0xd0800000-0xd0ffffff] -05:51:18,520 DEBUG kernel:pci 0000:00:0f.0: reg 30: [mem 0x00000000-0x00007fff pref] -05:51:18,520 DEBUG kernel:pci 0000:00:10.0: reg 10: [io 0x1400-0x14ff] -05:51:18,520 DEBUG kernel:pci 0000:00:10.0: reg 14: [mem 0xd0040000-0xd005ffff 64bit] -05:51:18,520 DEBUG kernel:pci 0000:00:10.0: reg 1c: [mem 0xd0020000-0xd003ffff 64bit] -05:51:18,520 DEBUG kernel:pci 0000:00:10.0: reg 30: [mem 0x00000000-0x00003fff pref] -05:51:18,520 INFO kernel:pci 0000:00:15.0: PME# supported from D0 D3hot D3cold -05:51:18,520 INFO kernel:pci 0000:00:15.0: PME# disabled -05:51:18,520 INFO kernel:pci 0000:00:15.1: PME# supported from D0 D3hot D3cold -05:51:18,520 INFO kernel:pci 0000:00:15.1: PME# disabled -05:51:18,520 INFO kernel:pci 0000:00:15.2: PME# supported from D0 D3hot D3cold -05:51:18,520 INFO kernel:pci 0000:00:15.2: PME# disabled -05:51:18,520 INFO kernel:pci 0000:00:15.3: PME# supported from D0 D3hot D3cold -05:51:18,520 INFO kernel:pci 0000:00:15.3: PME# disabled -05:51:18,520 INFO kernel:pci 0000:00:15.4: PME# supported from D0 D3hot D3cold -05:51:18,520 INFO kernel:pci 0000:00:15.4: PME# disabled -05:51:18,520 INFO kernel:pci 0000:00:15.5: PME# supported from D0 D3hot D3cold -05:51:18,520 INFO kernel:pci 0000:00:15.5: PME# disabled -05:51:18,520 INFO kernel:pci 0000:00:15.6: PME# supported from D0 D3hot D3cold -05:51:18,520 INFO kernel:pci 0000:00:15.6: PME# disabled -05:51:18,520 INFO kernel:pci 0000:00:15.7: PME# supported from D0 D3hot D3cold -05:51:18,520 INFO kernel:pci 0000:00:15.7: PME# disabled -05:51:18,520 INFO kernel:pci 0000:00:16.0: PME# supported from D0 D3hot D3cold -05:51:18,520 INFO kernel:pci 0000:00:16.0: PME# disabled -05:51:18,520 INFO kernel:pci 0000:00:16.1: PME# supported from D0 D3hot D3cold -05:51:18,520 INFO kernel:pci 0000:00:16.1: PME# disabled -05:51:18,520 INFO kernel:pci 0000:00:16.2: PME# supported from D0 D3hot D3cold -05:51:18,520 INFO kernel:pci 0000:00:16.2: PME# disabled -05:51:18,520 INFO kernel:pci 0000:00:16.3: PME# supported from D0 D3hot D3cold -05:51:18,520 INFO kernel:pci 0000:00:16.3: PME# disabled -05:51:18,520 INFO kernel:pci 0000:00:16.4: PME# supported from D0 D3hot D3cold -05:51:18,520 INFO kernel:pci 0000:00:16.4: PME# disabled -05:51:18,520 INFO kernel:pci 0000:00:16.5: PME# supported from D0 D3hot D3cold -05:51:18,520 INFO kernel:pci 0000:00:16.5: PME# disabled -05:51:18,520 INFO kernel:pci 0000:00:16.6: PME# supported from D0 D3hot D3cold -05:51:18,520 INFO kernel:pci 0000:00:16.6: PME# disabled -05:51:18,520 INFO kernel:pci 0000:00:16.7: PME# supported from D0 D3hot D3cold -05:51:18,520 INFO kernel:pci 0000:00:16.7: PME# disabled -05:51:18,520 INFO kernel:pci 0000:00:17.0: PME# supported from D0 D3hot D3cold -05:51:18,520 INFO kernel:pci 0000:00:17.0: PME# disabled -05:51:18,520 INFO kernel:pci 0000:00:17.1: PME# supported from D0 D3hot D3cold -05:51:18,520 INFO kernel:pci 0000:00:17.1: PME# disabled -05:51:18,520 INFO kernel:pci 0000:00:17.2: PME# supported from D0 D3hot D3cold -05:51:18,520 INFO kernel:pci 0000:00:17.2: PME# disabled -05:51:18,520 INFO kernel:pci 0000:00:17.3: PME# supported from D0 D3hot D3cold -05:51:18,520 INFO kernel:pci 0000:00:17.3: PME# disabled -05:51:18,520 INFO kernel:pci 0000:00:17.4: PME# supported from D0 D3hot D3cold -05:51:18,520 INFO kernel:pci 0000:00:17.4: PME# disabled -05:51:18,520 INFO kernel:pci 0000:00:17.5: PME# supported from D0 D3hot D3cold -05:51:18,520 INFO kernel:pci 0000:00:17.5: PME# disabled -05:51:18,520 INFO kernel:pci 0000:00:17.6: PME# supported from D0 D3hot D3cold -05:51:18,520 INFO kernel:pci 0000:00:17.6: PME# disabled -05:51:18,520 INFO kernel:pci 0000:00:17.7: PME# supported from D0 D3hot D3cold -05:51:18,520 INFO kernel:pci 0000:00:17.7: PME# disabled -05:51:18,520 INFO kernel:pci 0000:00:18.0: PME# supported from D0 D3hot D3cold -05:51:18,520 INFO kernel:pci 0000:00:18.0: PME# disabled -05:51:18,520 INFO kernel:pci 0000:00:18.1: PME# supported from D0 D3hot D3cold -05:51:18,520 INFO kernel:pci 0000:00:18.1: PME# disabled -05:51:18,520 INFO kernel:pci 0000:00:18.2: PME# supported from D0 D3hot D3cold -05:51:18,520 INFO kernel:pci 0000:00:18.2: PME# disabled -05:51:18,520 INFO kernel:pci 0000:00:18.3: PME# supported from D0 D3hot D3cold -05:51:18,520 INFO kernel:pci 0000:00:18.3: PME# disabled -05:51:18,520 INFO kernel:pci 0000:00:18.4: PME# supported from D0 D3hot D3cold -05:51:18,520 INFO kernel:pci 0000:00:18.4: PME# disabled -05:51:18,520 INFO kernel:pci 0000:00:18.5: PME# supported from D0 D3hot D3cold -05:51:18,520 INFO kernel:pci 0000:00:18.5: PME# disabled -05:51:18,520 INFO kernel:pci 0000:00:18.6: PME# supported from D0 D3hot D3cold -05:51:18,520 INFO kernel:pci 0000:00:18.6: PME# disabled -05:51:18,520 INFO kernel:pci 0000:00:18.7: PME# supported from D0 D3hot D3cold -05:51:18,520 INFO kernel:pci 0000:00:18.7: PME# disabled -05:51:18,520 INFO kernel:pci 0000:00:01.0: PCI bridge to [bus 01-01] -05:51:18,520 DEBUG kernel:pci 0000:00:01.0: bridge window [io 0xf000-0x0000] (disabled) -05:51:18,520 DEBUG kernel:pci 0000:00:01.0: bridge window [mem 0xfff00000-0x000fffff] (disabled) -05:51:18,520 DEBUG kernel:pci 0000:00:01.0: bridge window [mem 0xfff00000-0x000fffff pref] (disabled) -05:51:18,520 DEBUG kernel:pci 0000:02:00.0: reg 10: [mem 0xd1020000-0xd103ffff 64bit] -05:51:18,520 DEBUG kernel:pci 0000:02:00.0: reg 18: [mem 0xd1000000-0xd100ffff 64bit] -05:51:18,520 DEBUG kernel:pci 0000:02:00.0: reg 20: [io 0x2000-0x203f] -05:51:18,520 DEBUG kernel:pci 0000:02:00.0: reg 30: [mem 0x00000000-0x0000ffff pref] -05:51:18,520 INFO kernel:pci 0000:02:00.0: PME# supported from D0 D3hot D3cold -05:51:18,520 INFO kernel:pci 0000:02:00.0: PME# disabled -05:51:18,520 DEBUG kernel:pci 0000:02:01.0: reg 10: [mem 0xd1040000-0xd105ffff 64bit] -05:51:18,520 DEBUG kernel:pci 0000:02:01.0: reg 18: [mem 0xd1010000-0xd101ffff 64bit] -05:51:18,520 DEBUG kernel:pci 0000:02:01.0: reg 20: [io 0x2040-0x207f] -05:51:18,520 DEBUG kernel:pci 0000:02:01.0: reg 30: [mem 0x00000000-0x0000ffff pref] -05:51:18,520 INFO kernel:pci 0000:02:01.0: PME# supported from D0 D3hot D3cold -05:51:18,520 INFO kernel:pci 0000:02:01.0: PME# disabled -05:51:18,520 DEBUG kernel:pci 0000:02:02.0: reg 10: [mem 0xd1080000-0xd109ffff 64bit] -05:51:18,520 DEBUG kernel:pci 0000:02:02.0: reg 18: [mem 0xd1060000-0xd106ffff 64bit] -05:51:18,520 DEBUG kernel:pci 0000:02:02.0: reg 20: [io 0x2080-0x20bf] -05:51:18,520 DEBUG kernel:pci 0000:02:02.0: reg 30: [mem 0x00000000-0x0000ffff pref] -05:51:18,520 INFO kernel:pci 0000:02:02.0: PME# supported from D0 D3hot D3cold -05:51:18,520 INFO kernel:pci 0000:02:02.0: PME# disabled -05:51:18,520 DEBUG kernel:pci 0000:02:03.0: reg 10: [mem 0xd10a0000-0xd10bffff 64bit] -05:51:18,520 DEBUG kernel:pci 0000:02:03.0: reg 18: [mem 0xd1070000-0xd107ffff 64bit] -05:51:18,520 DEBUG kernel:pci 0000:02:03.0: reg 20: [io 0x20c0-0x20ff] -05:51:18,520 DEBUG kernel:pci 0000:02:03.0: reg 30: [mem 0x00000000-0x0000ffff pref] -05:51:18,520 INFO kernel:pci 0000:02:03.0: PME# supported from D0 D3hot D3cold -05:51:18,520 INFO kernel:pci 0000:02:03.0: PME# disabled -05:51:18,520 INFO kernel:pci 0000:00:11.0: PCI bridge to [bus 02-02] (subtractive decode) -05:51:18,520 DEBUG kernel:pci 0000:00:11.0: bridge window [io 0x2000-0x3fff] -05:51:18,520 DEBUG kernel:pci 0000:00:11.0: bridge window [mem 0xd1000000-0xd23fffff] -05:51:18,520 DEBUG kernel:pci 0000:00:11.0: bridge window [mem 0xdc400000-0xdc9fffff 64bit pref] -05:51:18,520 DEBUG kernel:pci 0000:00:11.0: bridge window [mem 0x000a0000-0x000bffff] (subtractive decode) -05:51:18,520 DEBUG kernel:pci 0000:00:11.0: bridge window [mem 0x000d0000-0x000d3fff] (subtractive decode) -05:51:18,520 DEBUG kernel:pci 0000:00:11.0: bridge window [mem 0x000d4000-0x000d7fff] (subtractive decode) -05:51:18,520 DEBUG kernel:pci 0000:00:11.0: bridge window [mem 0x000d8000-0x000dbfff] (subtractive decode) -05:51:18,520 DEBUG kernel:pci 0000:00:11.0: bridge window [mem 0x80000000-0xfebfffff] (subtractive decode) -05:51:18,520 DEBUG kernel:pci 0000:00:11.0: bridge window [io 0x0000-0x0cf7] (subtractive decode) -05:51:18,520 DEBUG kernel:pci 0000:00:11.0: bridge window [io 0x0d00-0xfeff] (subtractive decode) -05:51:18,520 INFO kernel:pci 0000:00:15.0: PCI bridge to [bus 03-03] -05:51:18,520 DEBUG kernel:pci 0000:00:15.0: bridge window [io 0x4000-0x4fff] -05:51:18,520 DEBUG kernel:pci 0000:00:15.0: bridge window [mem 0xd2400000-0xd24fffff] -05:51:18,520 DEBUG kernel:pci 0000:00:15.0: bridge window [mem 0xd4400000-0xd44fffff 64bit pref] -05:51:18,520 INFO kernel:pci 0000:00:15.1: PCI bridge to [bus 04-04] -05:51:18,520 DEBUG kernel:pci 0000:00:15.1: bridge window [io 0x8000-0x8fff] -05:51:18,520 DEBUG kernel:pci 0000:00:15.1: bridge window [mem 0xd2800000-0xd28fffff] -05:51:18,520 DEBUG kernel:pci 0000:00:15.1: bridge window [mem 0xd4800000-0xd48fffff 64bit pref] -05:51:18,520 INFO kernel:pci 0000:00:15.2: PCI bridge to [bus 05-05] -05:51:18,520 DEBUG kernel:pci 0000:00:15.2: bridge window [io 0xc000-0xcfff] -05:51:18,520 DEBUG kernel:pci 0000:00:15.2: bridge window [mem 0xd2c00000-0xd2cfffff] -05:51:18,520 DEBUG kernel:pci 0000:00:15.2: bridge window [mem 0xdcb00000-0xdcbfffff 64bit pref] -05:51:18,520 INFO kernel:pci 0000:00:15.3: PCI bridge to [bus 06-06] -05:51:18,520 DEBUG kernel:pci 0000:00:15.3: bridge window [io 0xf000-0x0000] (disabled) -05:51:18,520 DEBUG kernel:pci 0000:00:15.3: bridge window [mem 0xd3000000-0xd30fffff] -05:51:18,520 DEBUG kernel:pci 0000:00:15.3: bridge window [mem 0xdcd00000-0xdcdfffff 64bit pref] -05:51:18,520 INFO kernel:pci 0000:00:15.4: PCI bridge to [bus 07-07] -05:51:18,520 DEBUG kernel:pci 0000:00:15.4: bridge window [io 0xf000-0x0000] (disabled) -05:51:18,520 DEBUG kernel:pci 0000:00:15.4: bridge window [mem 0xd3400000-0xd34fffff] -05:51:18,520 DEBUG kernel:pci 0000:00:15.4: bridge window [mem 0xdcf00000-0xdcffffff 64bit pref] -05:51:18,520 INFO kernel:pci 0000:00:15.5: PCI bridge to [bus 08-08] -05:51:18,520 DEBUG kernel:pci 0000:00:15.5: bridge window [io 0xf000-0x0000] (disabled) -05:51:18,520 DEBUG kernel:pci 0000:00:15.5: bridge window [mem 0xd3800000-0xd38fffff] -05:51:18,520 DEBUG kernel:pci 0000:00:15.5: bridge window [mem 0xdd100000-0xdd1fffff 64bit pref] -05:51:18,520 INFO kernel:pci 0000:00:15.6: PCI bridge to [bus 09-09] -05:51:18,520 DEBUG kernel:pci 0000:00:15.6: bridge window [io 0xf000-0x0000] (disabled) -05:51:18,520 DEBUG kernel:pci 0000:00:15.6: bridge window [mem 0xd3c00000-0xd3cfffff] -05:51:18,520 DEBUG kernel:pci 0000:00:15.6: bridge window [mem 0xdd300000-0xdd3fffff 64bit pref] -05:51:18,520 INFO kernel:pci 0000:00:15.7: PCI bridge to [bus 0a-0a] -05:51:18,520 DEBUG kernel:pci 0000:00:15.7: bridge window [io 0xf000-0x0000] (disabled) -05:51:18,520 DEBUG kernel:pci 0000:00:15.7: bridge window [mem 0xd4000000-0xd40fffff] -05:51:18,520 DEBUG kernel:pci 0000:00:15.7: bridge window [mem 0xdd500000-0xdd5fffff 64bit pref] -05:51:18,520 INFO kernel:pci 0000:00:16.0: PCI bridge to [bus 0b-0b] -05:51:18,520 DEBUG kernel:pci 0000:00:16.0: bridge window [io 0x5000-0x5fff] -05:51:18,520 DEBUG kernel:pci 0000:00:16.0: bridge window [mem 0xd2500000-0xd25fffff] -05:51:18,520 DEBUG kernel:pci 0000:00:16.0: bridge window [mem 0xd4500000-0xd45fffff 64bit pref] -05:51:18,521 INFO kernel:pci 0000:00:16.1: PCI bridge to [bus 0c-0c] -05:51:18,521 DEBUG kernel:pci 0000:00:16.1: bridge window [io 0x9000-0x9fff] -05:51:18,521 DEBUG kernel:pci 0000:00:16.1: bridge window [mem 0xd2900000-0xd29fffff] -05:51:18,521 DEBUG kernel:pci 0000:00:16.1: bridge window [mem 0xd4900000-0xd49fffff 64bit pref] -05:51:18,521 INFO kernel:pci 0000:00:16.2: PCI bridge to [bus 0d-0d] -05:51:18,521 DEBUG kernel:pci 0000:00:16.2: bridge window [io 0xd000-0xdfff] -05:51:18,521 DEBUG kernel:pci 0000:00:16.2: bridge window [mem 0xd2d00000-0xd2dfffff] -05:51:18,521 DEBUG kernel:pci 0000:00:16.2: bridge window [mem 0xd4b00000-0xd4bfffff 64bit pref] -05:51:18,521 INFO kernel:pci 0000:00:16.3: PCI bridge to [bus 0e-0e] -05:51:18,521 DEBUG kernel:pci 0000:00:16.3: bridge window [io 0xf000-0x0000] (disabled) -05:51:18,521 DEBUG kernel:pci 0000:00:16.3: bridge window [mem 0xd3100000-0xd31fffff] -05:51:18,521 DEBUG kernel:pci 0000:00:16.3: bridge window [mem 0xd4d00000-0xd4dfffff 64bit pref] -05:51:18,521 INFO kernel:pci 0000:00:16.4: PCI bridge to [bus 0f-0f] -05:51:18,521 DEBUG kernel:pci 0000:00:16.4: bridge window [io 0xf000-0x0000] (disabled) -05:51:18,521 DEBUG kernel:pci 0000:00:16.4: bridge window [mem 0xd3500000-0xd35fffff] -05:51:18,521 DEBUG kernel:pci 0000:00:16.4: bridge window [mem 0xd4f00000-0xd4ffffff 64bit pref] -05:51:18,521 INFO kernel:pci 0000:00:16.5: PCI bridge to [bus 10-10] -05:51:18,521 DEBUG kernel:pci 0000:00:16.5: bridge window [io 0xf000-0x0000] (disabled) -05:51:18,521 DEBUG kernel:pci 0000:00:16.5: bridge window [mem 0xd3900000-0xd39fffff] -05:51:18,521 DEBUG kernel:pci 0000:00:16.5: bridge window [mem 0xd5100000-0xd51fffff 64bit pref] -05:51:18,521 INFO kernel:pci 0000:00:16.6: PCI bridge to [bus 11-11] -05:51:18,521 DEBUG kernel:pci 0000:00:16.6: bridge window [io 0xf000-0x0000] (disabled) -05:51:18,521 DEBUG kernel:pci 0000:00:16.6: bridge window [mem 0xd3d00000-0xd3dfffff] -05:51:18,521 DEBUG kernel:pci 0000:00:16.6: bridge window [mem 0xd5300000-0xd53fffff 64bit pref] -05:51:18,521 INFO kernel:pci 0000:00:16.7: PCI bridge to [bus 12-12] -05:51:18,521 DEBUG kernel:pci 0000:00:16.7: bridge window [io 0xf000-0x0000] (disabled) -05:51:18,521 DEBUG kernel:pci 0000:00:16.7: bridge window [mem 0xd4100000-0xd41fffff] -05:51:18,521 DEBUG kernel:pci 0000:00:16.7: bridge window [mem 0xd5500000-0xd55fffff 64bit pref] -05:51:18,521 INFO kernel:pci 0000:00:17.0: PCI bridge to [bus 13-13] -05:51:18,521 DEBUG kernel:pci 0000:00:17.0: bridge window [io 0x6000-0x6fff] -05:51:18,521 DEBUG kernel:pci 0000:00:17.0: bridge window [mem 0xd2600000-0xd26fffff] -05:51:18,521 DEBUG kernel:pci 0000:00:17.0: bridge window [mem 0xd4600000-0xd46fffff 64bit pref] -05:51:18,521 INFO kernel:pci 0000:00:17.1: PCI bridge to [bus 14-14] -05:51:18,521 DEBUG kernel:pci 0000:00:17.1: bridge window [io 0xa000-0xafff] -05:51:18,521 DEBUG kernel:pci 0000:00:17.1: bridge window [mem 0xd2a00000-0xd2afffff] -05:51:18,521 DEBUG kernel:pci 0000:00:17.1: bridge window [mem 0xdca00000-0xdcafffff 64bit pref] -05:51:18,521 INFO kernel:pci 0000:00:17.2: PCI bridge to [bus 15-15] -05:51:18,521 DEBUG kernel:pci 0000:00:17.2: bridge window [io 0xe000-0xefff] -05:51:18,521 DEBUG kernel:pci 0000:00:17.2: bridge window [mem 0xd2e00000-0xd2efffff] -05:51:18,521 DEBUG kernel:pci 0000:00:17.2: bridge window [mem 0xdcc00000-0xdccfffff 64bit pref] -05:51:18,521 INFO kernel:pci 0000:00:17.3: PCI bridge to [bus 16-16] -05:51:18,521 DEBUG kernel:pci 0000:00:17.3: bridge window [io 0xf000-0x0000] (disabled) -05:51:18,521 DEBUG kernel:pci 0000:00:17.3: bridge window [mem 0xd3200000-0xd32fffff] -05:51:18,521 DEBUG kernel:pci 0000:00:17.3: bridge window [mem 0xdce00000-0xdcefffff 64bit pref] -05:51:18,521 INFO kernel:pci 0000:00:17.4: PCI bridge to [bus 17-17] -05:51:18,521 DEBUG kernel:pci 0000:00:17.4: bridge window [io 0xf000-0x0000] (disabled) -05:51:18,521 DEBUG kernel:pci 0000:00:17.4: bridge window [mem 0xd3600000-0xd36fffff] -05:51:18,521 DEBUG kernel:pci 0000:00:17.4: bridge window [mem 0xdd000000-0xdd0fffff 64bit pref] -05:51:18,521 INFO kernel:pci 0000:00:17.5: PCI bridge to [bus 18-18] -05:51:18,521 DEBUG kernel:pci 0000:00:17.5: bridge window [io 0xf000-0x0000] (disabled) -05:51:18,521 DEBUG kernel:pci 0000:00:17.5: bridge window [mem 0xd3a00000-0xd3afffff] -05:51:18,521 DEBUG kernel:pci 0000:00:17.5: bridge window [mem 0xdd200000-0xdd2fffff 64bit pref] -05:51:18,521 INFO kernel:pci 0000:00:17.6: PCI bridge to [bus 19-19] -05:51:18,521 DEBUG kernel:pci 0000:00:17.6: bridge window [io 0xf000-0x0000] (disabled) -05:51:18,521 DEBUG kernel:pci 0000:00:17.6: bridge window [mem 0xd3e00000-0xd3efffff] -05:51:18,521 DEBUG kernel:pci 0000:00:17.6: bridge window [mem 0xdd400000-0xdd4fffff 64bit pref] -05:51:18,521 INFO kernel:pci 0000:00:17.7: PCI bridge to [bus 1a-1a] -05:51:18,521 DEBUG kernel:pci 0000:00:17.7: bridge window [io 0xf000-0x0000] (disabled) -05:51:18,521 DEBUG kernel:pci 0000:00:17.7: bridge window [mem 0xd4200000-0xd42fffff] -05:51:18,521 DEBUG kernel:pci 0000:00:17.7: bridge window [mem 0xdd600000-0xdd6fffff 64bit pref] -05:51:18,521 INFO kernel:pci 0000:00:18.0: PCI bridge to [bus 1b-1b] -05:51:18,521 DEBUG kernel:pci 0000:00:18.0: bridge window [io 0x7000-0x7fff] -05:51:18,521 DEBUG kernel:pci 0000:00:18.0: bridge window [mem 0xd2700000-0xd27fffff] -05:51:18,521 DEBUG kernel:pci 0000:00:18.0: bridge window [mem 0xd4700000-0xd47fffff 64bit pref] -05:51:18,521 INFO kernel:pci 0000:00:18.1: PCI bridge to [bus 1c-1c] -05:51:18,521 DEBUG kernel:pci 0000:00:18.1: bridge window [io 0xb000-0xbfff] -05:51:18,521 DEBUG kernel:pci 0000:00:18.1: bridge window [mem 0xd2b00000-0xd2bfffff] -05:51:18,521 DEBUG kernel:pci 0000:00:18.1: bridge window [mem 0xd4a00000-0xd4afffff 64bit pref] -05:51:18,521 INFO kernel:pci 0000:00:18.2: PCI bridge to [bus 1d-1d] -05:51:18,521 DEBUG kernel:pci 0000:00:18.2: bridge window [io 0xf000-0xffff] -05:51:18,521 DEBUG kernel:pci 0000:00:18.2: bridge window [mem 0xd2f00000-0xd2ffffff] -05:51:18,521 DEBUG kernel:pci 0000:00:18.2: bridge window [mem 0xd4c00000-0xd4cfffff 64bit pref] -05:51:18,521 INFO kernel:pci 0000:00:18.3: PCI bridge to [bus 1e-1e] -05:51:18,521 DEBUG kernel:pci 0000:00:18.3: bridge window [io 0xf000-0x0000] (disabled) -05:51:18,521 DEBUG kernel:pci 0000:00:18.3: bridge window [mem 0xd3300000-0xd33fffff] -05:51:18,521 DEBUG kernel:pci 0000:00:18.3: bridge window [mem 0xd4e00000-0xd4efffff 64bit pref] -05:51:18,521 INFO kernel:pci 0000:00:18.4: PCI bridge to [bus 1f-1f] -05:51:18,521 DEBUG kernel:pci 0000:00:18.4: bridge window [io 0xf000-0x0000] (disabled) -05:51:18,521 DEBUG kernel:pci 0000:00:18.4: bridge window [mem 0xd3700000-0xd37fffff] -05:51:18,521 DEBUG kernel:pci 0000:00:18.4: bridge window [mem 0xd5000000-0xd50fffff 64bit pref] -05:51:18,521 INFO kernel:pci 0000:00:18.5: PCI bridge to [bus 20-20] -05:51:18,521 DEBUG kernel:pci 0000:00:18.5: bridge window [io 0xf000-0x0000] (disabled) -05:51:18,521 DEBUG kernel:pci 0000:00:18.5: bridge window [mem 0xd3b00000-0xd3bfffff] -05:51:18,521 DEBUG kernel:pci 0000:00:18.5: bridge window [mem 0xd5200000-0xd52fffff 64bit pref] -05:51:18,521 INFO kernel:pci 0000:00:18.6: PCI bridge to [bus 21-21] -05:51:18,521 DEBUG kernel:pci 0000:00:18.6: bridge window [io 0xf000-0x0000] (disabled) -05:51:18,521 DEBUG kernel:pci 0000:00:18.6: bridge window [mem 0xd3f00000-0xd3ffffff] -05:51:18,521 DEBUG kernel:pci 0000:00:18.6: bridge window [mem 0xd5400000-0xd54fffff 64bit pref] -05:51:18,521 INFO kernel:pci 0000:00:18.7: PCI bridge to [bus 22-22] -05:51:18,521 DEBUG kernel:pci 0000:00:18.7: bridge window [io 0xf000-0x0000] (disabled) -05:51:18,521 DEBUG kernel:pci 0000:00:18.7: bridge window [mem 0xd4300000-0xd43fffff] -05:51:18,521 DEBUG kernel:pci 0000:00:18.7: bridge window [mem 0xd5600000-0xd56fffff 64bit pref] -05:51:18,521 DEBUG kernel:ACPI: PCI Interrupt Routing Table [\_SB_.PCI0._PRT] -05:51:18,521 INFO kernel: pci0000:00: Requesting ACPI _OSC control (0x1d) -05:51:18,521 INFO kernel: pci0000:00: ACPI _OSC control (0x15) granted -05:51:18,521 INFO kernel:ACPI: PCI Interrupt Link [LNKA] (IRQs 3 4 5 6 7 *9 10 11 14 15) -05:51:18,521 INFO kernel:ACPI: PCI Interrupt Link [LNKB] (IRQs 3 4 5 6 7 9 10 *11 14 15) -05:51:18,521 INFO kernel:ACPI: PCI Interrupt Link [LNKC] (IRQs 3 4 5 6 7 9 *10 11 14 15) -05:51:18,521 INFO kernel:ACPI: PCI Interrupt Link [LNKD] (IRQs 3 4 *5 6 7 9 10 11 14 15) -05:51:18,521 INFO kernel:vgaarb: device added: PCI:0000:00:0f.0,decodes=io+mem,owns=io+mem,locks=none -05:51:18,521 INFO kernel:vgaarb: loaded -05:51:18,521 INFO kernel:vgaarb: bridge control possible 0000:00:0f.0 -05:51:18,521 NOTICE kernel:SCSI subsystem initialized -05:51:18,521 DEBUG kernel:libata version 3.00 loaded. -05:51:18,521 INFO kernel:usbcore: registered new interface driver usbfs -05:51:18,521 INFO kernel:usbcore: registered new interface driver hub -05:51:18,521 INFO kernel:usbcore: registered new device driver usb -05:51:18,521 INFO kernel:PCI: Using ACPI for IRQ routing -05:51:18,521 DEBUG kernel:PCI: old code would have set cacheline size to 32 bytes, but clflush_size = 64 -05:51:18,521 DEBUG kernel:PCI: pci_cache_line_size set to 64 bytes -05:51:18,521 INFO kernel:pci 0000:00:18.2: no compatible bridge window for [io 0xf000-0xffff] -05:51:18,521 INFO kernel:pci 0000:00:18.2: can't reserve window [io 0xf000-0xffff] -05:51:18,521 NOTICE kernel:lo: Dropping TSO features since no CSUM feature. -05:51:18,521 INFO kernel:NetLabel: Initializing -05:51:18,521 INFO kernel:NetLabel: domain hash size = 128 -05:51:18,521 INFO kernel:NetLabel: protocols = UNLABELED CIPSOv4 -05:51:18,521 INFO kernel:NetLabel: unlabeled traffic allowed by default -05:51:18,521 INFO kernel:HPET: 16 timers in total, 0 timers will be used for per-cpu timer -05:51:18,521 INFO kernel:hpet0: at MMIO 0xfed00000, IRQs 2, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 -05:51:18,521 INFO kernel:hpet0: 16 comparators, 64-bit 14.318180 MHz counter -05:51:18,521 INFO kernel:Switching to clocksource hpet -05:51:18,521 INFO kernel:pnp: PnP ACPI init -05:51:18,521 INFO kernel:ACPI: bus type pnp registered -05:51:18,521 DEBUG kernel:pnp 00:00: [io 0x0cf8-0x0cff] -05:51:18,521 DEBUG kernel:pnp 00:00: Plug and Play ACPI device, IDs PNP0a03 PNP0a08 (active) -05:51:18,521 DEBUG kernel:pnp 00:01: [io 0x0010-0x001f] -05:51:18,521 DEBUG kernel:pnp 00:01: [io 0x0024-0x0025] -05:51:18,521 DEBUG kernel:pnp 00:01: [io 0x0028-0x0029] -05:51:18,521 DEBUG kernel:pnp 00:01: [io 0x002c-0x002d] -05:51:18,521 DEBUG kernel:pnp 00:01: [io 0x002e-0x002f] -05:51:18,521 DEBUG kernel:pnp 00:01: [io 0x0030-0x0031] -05:51:18,521 DEBUG kernel:pnp 00:01: [io 0x0034-0x0035] -05:51:18,521 DEBUG kernel:pnp 00:01: [io 0x0038-0x0039] -05:51:18,521 DEBUG kernel:pnp 00:01: [io 0x003c-0x003d] -05:51:18,521 DEBUG kernel:pnp 00:01: [io 0x0050-0x0053] -05:51:18,521 DEBUG kernel:pnp 00:01: [io 0x0072-0x0077] -05:51:18,521 DEBUG kernel:pnp 00:01: [io 0x0080] -05:51:18,521 DEBUG kernel:pnp 00:01: [io 0x0090-0x009f] -05:51:18,521 DEBUG kernel:pnp 00:01: [io 0x00a4-0x00a5] -05:51:18,521 DEBUG kernel:pnp 00:01: [io 0x00a8-0x00a9] -05:51:18,521 DEBUG kernel:pnp 00:01: [io 0x00ac-0x00ad] -05:51:18,521 DEBUG kernel:pnp 00:01: [io 0x00b0-0x00b5] -05:51:18,521 DEBUG kernel:pnp 00:01: [io 0x00b8-0x00b9] -05:51:18,521 DEBUG kernel:pnp 00:01: [io 0x00bc-0x00bd] -05:51:18,521 DEBUG kernel:pnp 00:01: [io 0x1000-0x103f] -05:51:18,521 DEBUG kernel:pnp 00:01: [io 0x1040-0x104f] -05:51:18,521 DEBUG kernel:pnp 00:01: [io 0x0cf0-0x0cf1] -05:51:18,521 DEBUG kernel:pnp 00:01: Plug and Play ACPI device, IDs PNP0c02 (active) -05:51:18,521 DEBUG kernel:pnp 00:02: [io 0x0000-0x000f] -05:51:18,521 DEBUG kernel:pnp 00:02: [io 0x0081-0x008f] -05:51:18,521 DEBUG kernel:pnp 00:02: [io 0x00c0-0x00df] -05:51:18,521 DEBUG kernel:pnp 00:02: [dma 4] -05:51:18,521 DEBUG kernel:pnp 00:02: Plug and Play ACPI device, IDs PNP0200 (active) -05:51:18,521 DEBUG kernel:pnp 00:03: [io 0x0020-0x0021] -05:51:18,521 DEBUG kernel:pnp 00:03: [io 0x00a0-0x00a1] -05:51:18,521 DEBUG kernel:pnp 00:03: [io 0x04d0-0x04d1] -05:51:18,521 DEBUG kernel:pnp 00:03: [irq 2 disabled] -05:51:18,521 DEBUG kernel:pnp 00:03: Plug and Play ACPI device, IDs PNP0001 (active) -05:51:18,521 DEBUG kernel:pnp 00:04: [io 0x0070-0x0071] -05:51:18,521 DEBUG kernel:pnp 00:04: [irq 8] -05:51:18,521 DEBUG kernel:pnp 00:04: Plug and Play ACPI device, IDs PNP0b00 (active) -05:51:18,521 DEBUG kernel:pnp 00:05: [io 0x0061] -05:51:18,521 DEBUG kernel:pnp 00:05: Plug and Play ACPI device, IDs PNP0800 (active) -05:51:18,521 DEBUG kernel:pnp 00:06: [io 0x0060] -05:51:18,521 DEBUG kernel:pnp 00:06: [io 0x0064] -05:51:18,521 DEBUG kernel:pnp 00:06: [irq 1] -05:51:18,521 DEBUG kernel:pnp 00:06: Plug and Play ACPI device, IDs PNP0303 (active) -05:51:18,521 DEBUG kernel:pnp 00:07: [irq 12] -05:51:18,521 DEBUG kernel:pnp 00:07: Plug and Play ACPI device, IDs PNP0f13 (active) -05:51:18,521 DEBUG kernel:pnp 00:08: [mem 0xfed00000-0xfed003ff] -05:51:18,521 DEBUG kernel:pnp 00:08: Plug and Play ACPI device, IDs PNP0103 PNP0c01 (active) -05:51:18,521 DEBUG kernel:pnp 00:09: [io 0x0378-0x037f] -05:51:18,521 DEBUG kernel:pnp 00:09: [irq 7] -05:51:18,521 DEBUG kernel:pnp 00:09: Plug and Play ACPI device, IDs PNP0400 (active) -05:51:18,521 DEBUG kernel:pnp 00:0a: [io 0x03f8-0x03ff] -05:51:18,521 DEBUG kernel:pnp 00:0a: [irq 4] -05:51:18,521 DEBUG kernel:pnp 00:0a: Plug and Play ACPI device, IDs PNP0501 (active) -05:51:18,521 DEBUG kernel:pnp 00:0b: [io 0x02f8-0x02ff] -05:51:18,521 DEBUG kernel:pnp 00:0b: [irq 3] -05:51:18,521 DEBUG kernel:pnp 00:0b: Plug and Play ACPI device, IDs PNP0501 (active) -05:51:18,521 DEBUG kernel:pnp 00:0c: [io 0x03f0-0x03f5] -05:51:18,521 DEBUG kernel:pnp 00:0c: [io 0x03f7] -05:51:18,521 DEBUG kernel:pnp 00:0c: [irq 6] -05:51:18,521 DEBUG kernel:pnp 00:0c: [dma 2] -05:51:18,521 DEBUG kernel:pnp 00:0c: Plug and Play ACPI device, IDs PNP0700 (active) -05:51:18,521 DEBUG kernel:pnp 00:0d: [mem 0xe0000000-0xefffffff] -05:51:18,521 DEBUG kernel:pnp 00:0d: [io 0x1060-0x107f] -05:51:18,521 DEBUG kernel:pnp 00:0d: [mem 0xd0200000-0xd03fffff] -05:51:18,521 DEBUG kernel:pnp 00:0d: Plug and Play ACPI device, IDs PNP0c02 (active) -05:51:18,521 INFO kernel:pnp: PnP ACPI: found 14 devices -05:51:18,521 INFO kernel:ACPI: ACPI bus type pnp unregistered -05:51:18,521 INFO kernel:system 00:01: [io 0x1000-0x103f] has been reserved -05:51:18,521 INFO kernel:system 00:01: [io 0x1040-0x104f] has been reserved -05:51:18,521 INFO kernel:system 00:01: [io 0x0cf0-0x0cf1] has been reserved -05:51:18,521 INFO kernel:system 00:08: [mem 0xfed00000-0xfed003ff] has been reserved -05:51:18,521 INFO kernel:system 00:0d: [io 0x1060-0x107f] has been reserved -05:51:18,521 INFO kernel:system 00:0d: [mem 0xe0000000-0xefffffff] has been reserved -05:51:18,521 INFO kernel:system 00:0d: [mem 0xd0200000-0xd03fffff] has been reserved -05:51:18,521 DEBUG kernel:PCI: max bus depth: 1 pci_try_num: 2 -05:51:18,521 INFO kernel:pci 0000:00:0f.0: BAR 6: assigned [mem 0x80000000-0x80007fff pref] -05:51:18,521 INFO kernel:pci 0000:00:10.0: BAR 6: assigned [mem 0x80008000-0x8000bfff pref] -05:51:18,521 INFO kernel:pci 0000:00:18.2: BAR 13: can't assign io (size 0x1000) -05:51:18,521 INFO kernel:pci 0000:00:18.7: BAR 13: can't assign io (size 0x1000) -05:51:18,521 INFO kernel:pci 0000:00:18.6: BAR 13: can't assign io (size 0x1000) -05:51:18,521 INFO kernel:pci 0000:00:18.5: BAR 13: can't assign io (size 0x1000) -05:51:18,521 INFO kernel:pci 0000:00:18.4: BAR 13: can't assign io (size 0x1000) -05:51:18,521 INFO kernel:pci 0000:00:18.3: BAR 13: can't assign io (size 0x1000) -05:51:18,521 INFO kernel:pci 0000:00:17.7: BAR 13: can't assign io (size 0x1000) -05:51:18,521 INFO kernel:pci 0000:00:17.6: BAR 13: can't assign io (size 0x1000) -05:51:18,521 INFO kernel:pci 0000:00:17.5: BAR 13: can't assign io (size 0x1000) -05:51:18,521 INFO kernel:pci 0000:00:17.4: BAR 13: can't assign io (size 0x1000) -05:51:18,521 INFO kernel:pci 0000:00:17.3: BAR 13: can't assign io (size 0x1000) -05:51:18,521 INFO kernel:pci 0000:00:16.7: BAR 13: can't assign io (size 0x1000) -05:51:18,521 INFO kernel:pci 0000:00:16.6: BAR 13: can't assign io (size 0x1000) -05:51:18,521 INFO kernel:pci 0000:00:16.5: BAR 13: can't assign io (size 0x1000) -05:51:18,521 INFO kernel:pci 0000:00:16.4: BAR 13: can't assign io (size 0x1000) -05:51:18,521 INFO kernel:pci 0000:00:16.3: BAR 13: can't assign io (size 0x1000) -05:51:18,521 INFO kernel:pci 0000:00:15.7: BAR 13: can't assign io (size 0x1000) -05:51:18,521 INFO kernel:pci 0000:00:15.6: BAR 13: can't assign io (size 0x1000) -05:51:18,521 INFO kernel:pci 0000:00:15.5: BAR 13: can't assign io (size 0x1000) -05:51:18,521 INFO kernel:pci 0000:00:15.4: BAR 13: can't assign io (size 0x1000) -05:51:18,521 INFO kernel:pci 0000:00:15.3: BAR 13: can't assign io (size 0x1000) -05:51:18,521 INFO kernel:pci 0000:00:01.0: PCI bridge to [bus 01-01] -05:51:18,521 INFO kernel:pci 0000:00:01.0: PCI bridge to [bus 01-01] -05:51:18,521 INFO kernel:pci 0000:00:01.0: bridge window [io disabled] -05:51:18,521 INFO kernel:pci 0000:00:01.0: bridge window [mem disabled] -05:51:18,521 INFO kernel:pci 0000:00:01.0: bridge window [mem pref disabled] -05:51:18,521 INFO kernel:pci 0000:02:00.0: BAR 6: assigned [mem 0xdc400000-0xdc40ffff pref] -05:51:18,521 INFO kernel:pci 0000:02:01.0: BAR 6: assigned [mem 0xdc410000-0xdc41ffff pref] -05:51:18,521 INFO kernel:pci 0000:02:02.0: BAR 6: assigned [mem 0xdc420000-0xdc42ffff pref] -05:51:18,521 INFO kernel:pci 0000:02:03.0: BAR 6: assigned [mem 0xdc430000-0xdc43ffff pref] -05:51:18,521 INFO kernel:pci 0000:00:11.0: PCI bridge to [bus 02-02] -05:51:18,521 INFO kernel:pci 0000:00:11.0: PCI bridge to [bus 02-02] -05:51:18,521 INFO kernel:pci 0000:00:11.0: bridge window [io 0x2000-0x3fff] -05:51:18,521 INFO kernel:pci 0000:00:11.0: bridge window [mem 0xd1000000-0xd23fffff] -05:51:18,521 INFO kernel:pci 0000:00:11.0: bridge window [mem 0xdc400000-0xdc9fffff 64bit pref] -05:51:18,521 INFO kernel:pci 0000:00:15.0: PCI bridge to [bus 03-03] -05:51:18,521 INFO kernel:pci 0000:00:15.0: PCI bridge to [bus 03-03] -05:51:18,521 INFO kernel:pci 0000:00:15.0: bridge window [io 0x4000-0x4fff] -05:51:18,521 INFO kernel:pci 0000:00:15.0: bridge window [mem 0xd2400000-0xd24fffff] -05:51:18,521 INFO kernel:pci 0000:00:15.0: bridge window [mem 0xd4400000-0xd44fffff 64bit pref] -05:51:18,521 INFO kernel:pci 0000:00:15.1: PCI bridge to [bus 04-04] -05:51:18,521 INFO kernel:pci 0000:00:15.1: PCI bridge to [bus 04-04] -05:51:18,521 INFO kernel:pci 0000:00:15.1: bridge window [io 0x8000-0x8fff] -05:51:18,521 INFO kernel:pci 0000:00:15.1: bridge window [mem 0xd2800000-0xd28fffff] -05:51:18,521 INFO kernel:pci 0000:00:15.1: bridge window [mem 0xd4800000-0xd48fffff 64bit pref] -05:51:18,521 INFO kernel:pci 0000:00:15.2: PCI bridge to [bus 05-05] -05:51:18,521 INFO kernel:pci 0000:00:15.2: PCI bridge to [bus 05-05] -05:51:18,521 INFO kernel:pci 0000:00:15.2: bridge window [io 0xc000-0xcfff] -05:51:18,521 INFO kernel:pci 0000:00:15.2: bridge window [mem 0xd2c00000-0xd2cfffff] -05:51:18,521 INFO kernel:pci 0000:00:15.2: bridge window [mem 0xdcb00000-0xdcbfffff 64bit pref] -05:51:18,521 INFO kernel:pci 0000:00:15.3: PCI bridge to [bus 06-06] -05:51:18,521 INFO kernel:pci 0000:00:15.3: PCI bridge to [bus 06-06] -05:51:18,521 INFO kernel:pci 0000:00:15.3: bridge window [io disabled] -05:51:18,521 INFO kernel:pci 0000:00:15.3: bridge window [mem 0xd3000000-0xd30fffff] -05:51:18,521 INFO kernel:pci 0000:00:15.3: bridge window [mem 0xdcd00000-0xdcdfffff 64bit pref] -05:51:18,521 INFO kernel:pci 0000:00:15.4: PCI bridge to [bus 07-07] -05:51:18,521 INFO kernel:pci 0000:00:15.4: PCI bridge to [bus 07-07] -05:51:18,521 INFO kernel:pci 0000:00:15.4: bridge window [io disabled] -05:51:18,521 INFO kernel:pci 0000:00:15.4: bridge window [mem 0xd3400000-0xd34fffff] -05:51:18,521 INFO kernel:pci 0000:00:15.4: bridge window [mem 0xdcf00000-0xdcffffff 64bit pref] -05:51:18,521 INFO kernel:pci 0000:00:15.5: PCI bridge to [bus 08-08] -05:51:18,521 INFO kernel:pci 0000:00:15.5: PCI bridge to [bus 08-08] -05:51:18,521 INFO kernel:pci 0000:00:15.5: bridge window [io disabled] -05:51:18,521 INFO kernel:pci 0000:00:15.5: bridge window [mem 0xd3800000-0xd38fffff] -05:51:18,521 INFO kernel:pci 0000:00:15.5: bridge window [mem 0xdd100000-0xdd1fffff 64bit pref] -05:51:18,521 INFO kernel:pci 0000:00:15.6: PCI bridge to [bus 09-09] -05:51:18,521 INFO kernel:pci 0000:00:15.6: PCI bridge to [bus 09-09] -05:51:18,521 INFO kernel:pci 0000:00:15.6: bridge window [io disabled] -05:51:18,521 INFO kernel:pci 0000:00:15.6: bridge window [mem 0xd3c00000-0xd3cfffff] -05:51:18,521 INFO kernel:pci 0000:00:15.6: bridge window [mem 0xdd300000-0xdd3fffff 64bit pref] -05:51:18,521 INFO kernel:pci 0000:00:15.7: PCI bridge to [bus 0a-0a] -05:51:18,521 INFO kernel:pci 0000:00:15.7: PCI bridge to [bus 0a-0a] -05:51:18,521 INFO kernel:pci 0000:00:15.7: bridge window [io disabled] -05:51:18,521 INFO kernel:pci 0000:00:15.7: bridge window [mem 0xd4000000-0xd40fffff] -05:51:18,521 INFO kernel:pci 0000:00:15.7: bridge window [mem 0xdd500000-0xdd5fffff 64bit pref] -05:51:18,521 INFO kernel:pci 0000:00:16.0: PCI bridge to [bus 0b-0b] -05:51:18,521 INFO kernel:pci 0000:00:16.0: PCI bridge to [bus 0b-0b] -05:51:18,521 INFO kernel:pci 0000:00:16.0: bridge window [io 0x5000-0x5fff] -05:51:18,521 INFO kernel:pci 0000:00:16.0: bridge window [mem 0xd2500000-0xd25fffff] -05:51:18,521 INFO kernel:pci 0000:00:16.0: bridge window [mem 0xd4500000-0xd45fffff 64bit pref] -05:51:18,521 INFO kernel:pci 0000:00:16.1: PCI bridge to [bus 0c-0c] -05:51:18,521 INFO kernel:pci 0000:00:16.1: PCI bridge to [bus 0c-0c] -05:51:18,521 INFO kernel:pci 0000:00:16.1: bridge window [io 0x9000-0x9fff] -05:51:18,521 INFO kernel:pci 0000:00:16.1: bridge window [mem 0xd2900000-0xd29fffff] -05:51:18,521 INFO kernel:pci 0000:00:16.1: bridge window [mem 0xd4900000-0xd49fffff 64bit pref] -05:51:18,521 INFO kernel:pci 0000:00:16.2: PCI bridge to [bus 0d-0d] -05:51:18,521 INFO kernel:pci 0000:00:16.2: PCI bridge to [bus 0d-0d] -05:51:18,521 INFO kernel:pci 0000:00:16.2: bridge window [io 0xd000-0xdfff] -05:51:18,521 INFO kernel:pci 0000:00:16.2: bridge window [mem 0xd2d00000-0xd2dfffff] -05:51:18,521 INFO kernel:pci 0000:00:16.2: bridge window [mem 0xd4b00000-0xd4bfffff 64bit pref] -05:51:18,521 INFO kernel:pci 0000:00:16.3: PCI bridge to [bus 0e-0e] -05:51:18,521 INFO kernel:pci 0000:00:16.3: PCI bridge to [bus 0e-0e] -05:51:18,521 INFO kernel:pci 0000:00:16.3: bridge window [io disabled] -05:51:18,521 INFO kernel:pci 0000:00:16.3: bridge window [mem 0xd3100000-0xd31fffff] -05:51:18,521 INFO kernel:pci 0000:00:16.3: bridge window [mem 0xd4d00000-0xd4dfffff 64bit pref] -05:51:18,521 INFO kernel:pci 0000:00:16.4: PCI bridge to [bus 0f-0f] -05:51:18,521 INFO kernel:pci 0000:00:16.4: PCI bridge to [bus 0f-0f] -05:51:18,521 INFO kernel:pci 0000:00:16.4: bridge window [io disabled] -05:51:18,521 INFO kernel:pci 0000:00:16.4: bridge window [mem 0xd3500000-0xd35fffff] -05:51:18,521 INFO kernel:pci 0000:00:16.4: bridge window [mem 0xd4f00000-0xd4ffffff 64bit pref] -05:51:18,521 INFO kernel:pci 0000:00:16.5: PCI bridge to [bus 10-10] -05:51:18,521 INFO kernel:pci 0000:00:16.5: PCI bridge to [bus 10-10] -05:51:18,521 INFO kernel:pci 0000:00:16.5: bridge window [io disabled] -05:51:18,521 INFO kernel:pci 0000:00:16.5: bridge window [mem 0xd3900000-0xd39fffff] -05:51:18,521 INFO kernel:pci 0000:00:16.5: bridge window [mem 0xd5100000-0xd51fffff 64bit pref] -05:51:18,521 INFO kernel:pci 0000:00:16.6: PCI bridge to [bus 11-11] -05:51:18,521 INFO kernel:pci 0000:00:16.6: PCI bridge to [bus 11-11] -05:51:18,521 INFO kernel:pci 0000:00:16.6: bridge window [io disabled] -05:51:18,521 INFO kernel:pci 0000:00:16.6: bridge window [mem 0xd3d00000-0xd3dfffff] -05:51:18,521 INFO kernel:pci 0000:00:16.6: bridge window [mem 0xd5300000-0xd53fffff 64bit pref] -05:51:18,521 INFO kernel:pci 0000:00:16.7: PCI bridge to [bus 12-12] -05:51:18,521 INFO kernel:pci 0000:00:16.7: PCI bridge to [bus 12-12] -05:51:18,521 INFO kernel:pci 0000:00:16.7: bridge window [io disabled] -05:51:18,521 INFO kernel:pci 0000:00:16.7: bridge window [mem 0xd4100000-0xd41fffff] -05:51:18,521 INFO kernel:pci 0000:00:16.7: bridge window [mem 0xd5500000-0xd55fffff 64bit pref] -05:51:18,521 INFO kernel:pci 0000:00:17.0: PCI bridge to [bus 13-13] -05:51:18,521 INFO kernel:pci 0000:00:17.0: PCI bridge to [bus 13-13] -05:51:18,521 INFO kernel:pci 0000:00:17.0: bridge window [io 0x6000-0x6fff] -05:51:18,521 INFO kernel:pci 0000:00:17.0: bridge window [mem 0xd2600000-0xd26fffff] -05:51:18,521 INFO kernel:pci 0000:00:17.0: bridge window [mem 0xd4600000-0xd46fffff 64bit pref] -05:51:18,521 INFO kernel:pci 0000:00:17.1: PCI bridge to [bus 14-14] -05:51:18,521 INFO kernel:pci 0000:00:17.1: PCI bridge to [bus 14-14] -05:51:18,521 INFO kernel:pci 0000:00:17.1: bridge window [io 0xa000-0xafff] -05:51:18,521 INFO kernel:pci 0000:00:17.1: bridge window [mem 0xd2a00000-0xd2afffff] -05:51:18,521 INFO kernel:pci 0000:00:17.1: bridge window [mem 0xdca00000-0xdcafffff 64bit pref] -05:51:18,521 INFO kernel:pci 0000:00:17.2: PCI bridge to [bus 15-15] -05:51:18,521 INFO kernel:pci 0000:00:17.2: PCI bridge to [bus 15-15] -05:51:18,521 INFO kernel:pci 0000:00:17.2: bridge window [io 0xe000-0xefff] -05:51:18,521 INFO kernel:pci 0000:00:17.2: bridge window [mem 0xd2e00000-0xd2efffff] -05:51:18,521 INFO kernel:pci 0000:00:17.2: bridge window [mem 0xdcc00000-0xdccfffff 64bit pref] -05:51:18,521 INFO kernel:pci 0000:00:17.3: PCI bridge to [bus 16-16] -05:51:18,521 INFO kernel:pci 0000:00:17.3: PCI bridge to [bus 16-16] -05:51:18,521 INFO kernel:pci 0000:00:17.3: bridge window [io disabled] -05:51:18,521 INFO kernel:pci 0000:00:17.3: bridge window [mem 0xd3200000-0xd32fffff] -05:51:18,521 INFO kernel:pci 0000:00:17.3: bridge window [mem 0xdce00000-0xdcefffff 64bit pref] -05:51:18,521 INFO kernel:pci 0000:00:17.4: PCI bridge to [bus 17-17] -05:51:18,521 INFO kernel:pci 0000:00:17.4: PCI bridge to [bus 17-17] -05:51:18,521 INFO kernel:pci 0000:00:17.4: bridge window [io disabled] -05:51:18,521 INFO kernel:pci 0000:00:17.4: bridge window [mem 0xd3600000-0xd36fffff] -05:51:18,521 INFO kernel:pci 0000:00:17.4: bridge window [mem 0xdd000000-0xdd0fffff 64bit pref] -05:51:18,521 INFO kernel:pci 0000:00:17.5: PCI bridge to [bus 18-18] -05:51:18,521 INFO kernel:pci 0000:00:17.5: PCI bridge to [bus 18-18] -05:51:18,521 INFO kernel:pci 0000:00:17.5: bridge window [io disabled] -05:51:18,521 INFO kernel:pci 0000:00:17.5: bridge window [mem 0xd3a00000-0xd3afffff] -05:51:18,521 INFO kernel:pci 0000:00:17.5: bridge window [mem 0xdd200000-0xdd2fffff 64bit pref] -05:51:18,521 INFO kernel:pci 0000:00:17.6: PCI bridge to [bus 19-19] -05:51:18,521 INFO kernel:pci 0000:00:17.6: PCI bridge to [bus 19-19] -05:51:18,521 INFO kernel:pci 0000:00:17.6: bridge window [io disabled] -05:51:18,521 INFO kernel:pci 0000:00:17.6: bridge window [mem 0xd3e00000-0xd3efffff] -05:51:18,521 INFO kernel:pci 0000:00:17.6: bridge window [mem 0xdd400000-0xdd4fffff 64bit pref] -05:51:18,521 INFO kernel:pci 0000:00:17.7: PCI bridge to [bus 1a-1a] -05:51:18,521 INFO kernel:pci 0000:00:17.7: PCI bridge to [bus 1a-1a] -05:51:18,521 INFO kernel:pci 0000:00:17.7: bridge window [io disabled] -05:51:18,521 INFO kernel:pci 0000:00:17.7: bridge window [mem 0xd4200000-0xd42fffff] -05:51:18,521 INFO kernel:pci 0000:00:17.7: bridge window [mem 0xdd600000-0xdd6fffff 64bit pref] -05:51:18,521 INFO kernel:pci 0000:00:18.0: PCI bridge to [bus 1b-1b] -05:51:18,521 INFO kernel:pci 0000:00:18.0: PCI bridge to [bus 1b-1b] -05:51:18,521 INFO kernel:pci 0000:00:18.0: bridge window [io 0x7000-0x7fff] -05:51:18,521 INFO kernel:pci 0000:00:18.0: bridge window [mem 0xd2700000-0xd27fffff] -05:51:18,521 INFO kernel:pci 0000:00:18.0: bridge window [mem 0xd4700000-0xd47fffff 64bit pref] -05:51:18,521 INFO kernel:pci 0000:00:18.1: PCI bridge to [bus 1c-1c] -05:51:18,521 INFO kernel:pci 0000:00:18.1: PCI bridge to [bus 1c-1c] -05:51:18,521 INFO kernel:pci 0000:00:18.1: bridge window [io 0xb000-0xbfff] -05:51:18,521 INFO kernel:pci 0000:00:18.1: bridge window [mem 0xd2b00000-0xd2bfffff] -05:51:18,521 INFO kernel:pci 0000:00:18.1: bridge window [mem 0xd4a00000-0xd4afffff 64bit pref] -05:51:18,521 INFO kernel:pci 0000:00:18.2: PCI bridge to [bus 1d-1d] -05:51:18,521 INFO kernel:pci 0000:00:18.2: PCI bridge to [bus 1d-1d] -05:51:18,521 INFO kernel:pci 0000:00:18.2: bridge window [io disabled] -05:51:18,521 INFO kernel:pci 0000:00:18.2: bridge window [mem 0xd2f00000-0xd2ffffff] -05:51:18,521 INFO kernel:pci 0000:00:18.2: bridge window [mem 0xd4c00000-0xd4cfffff 64bit pref] -05:51:18,521 INFO kernel:pci 0000:00:18.3: PCI bridge to [bus 1e-1e] -05:51:18,521 INFO kernel:pci 0000:00:18.3: PCI bridge to [bus 1e-1e] -05:51:18,521 INFO kernel:pci 0000:00:18.3: bridge window [io disabled] -05:51:18,521 INFO kernel:pci 0000:00:18.3: bridge window [mem 0xd3300000-0xd33fffff] -05:51:18,521 INFO kernel:pci 0000:00:18.3: bridge window [mem 0xd4e00000-0xd4efffff 64bit pref] -05:51:18,521 INFO kernel:pci 0000:00:18.4: PCI bridge to [bus 1f-1f] -05:51:18,521 INFO kernel:pci 0000:00:18.4: PCI bridge to [bus 1f-1f] -05:51:18,521 INFO kernel:pci 0000:00:18.4: bridge window [io disabled] -05:51:18,521 INFO kernel:pci 0000:00:18.4: bridge window [mem 0xd3700000-0xd37fffff] -05:51:18,521 INFO kernel:pci 0000:00:18.4: bridge window [mem 0xd5000000-0xd50fffff 64bit pref] -05:51:18,521 INFO kernel:pci 0000:00:18.5: PCI bridge to [bus 20-20] -05:51:18,521 INFO kernel:pci 0000:00:18.5: PCI bridge to [bus 20-20] -05:51:18,521 INFO kernel:pci 0000:00:18.5: bridge window [io disabled] -05:51:18,521 INFO kernel:pci 0000:00:18.5: bridge window [mem 0xd3b00000-0xd3bfffff] -05:51:18,521 INFO kernel:pci 0000:00:18.5: bridge window [mem 0xd5200000-0xd52fffff 64bit pref] -05:51:18,521 INFO kernel:pci 0000:00:18.6: PCI bridge to [bus 21-21] -05:51:18,521 INFO kernel:pci 0000:00:18.6: PCI bridge to [bus 21-21] -05:51:18,521 INFO kernel:pci 0000:00:18.6: bridge window [io disabled] -05:51:18,521 INFO kernel:pci 0000:00:18.6: bridge window [mem 0xd3f00000-0xd3ffffff] -05:51:18,521 INFO kernel:pci 0000:00:18.6: bridge window [mem 0xd5400000-0xd54fffff 64bit pref] -05:51:18,521 INFO kernel:pci 0000:00:18.7: PCI bridge to [bus 22-22] -05:51:18,521 INFO kernel:pci 0000:00:18.7: PCI bridge to [bus 22-22] -05:51:18,521 INFO kernel:pci 0000:00:18.7: bridge window [io disabled] -05:51:18,521 INFO kernel:pci 0000:00:18.7: bridge window [mem 0xd4300000-0xd43fffff] -05:51:18,521 INFO kernel:pci 0000:00:18.7: bridge window [mem 0xd5600000-0xd56fffff 64bit pref] -05:51:18,521 DEBUG kernel:pci 0000:00:01.0: setting latency timer to 64 -05:51:18,521 DEBUG kernel:pci 0000:00:15.0: setting latency timer to 64 -05:51:18,521 DEBUG kernel:pci 0000:00:15.1: setting latency timer to 64 -05:51:18,521 DEBUG kernel:pci 0000:00:15.2: setting latency timer to 64 -05:51:18,521 DEBUG kernel:pci 0000:00:15.3: setting latency timer to 64 -05:51:18,521 DEBUG kernel:pci 0000:00:15.4: setting latency timer to 64 -05:51:18,521 DEBUG kernel:pci 0000:00:15.5: setting latency timer to 64 -05:51:18,521 DEBUG kernel:pci 0000:00:15.6: setting latency timer to 64 -05:51:18,521 DEBUG kernel:pci 0000:00:15.7: setting latency timer to 64 -05:51:18,521 DEBUG kernel:pci 0000:00:16.0: setting latency timer to 64 -05:51:18,521 DEBUG kernel:pci 0000:00:16.1: setting latency timer to 64 -05:51:18,521 DEBUG kernel:pci 0000:00:16.2: setting latency timer to 64 -05:51:18,521 DEBUG kernel:pci 0000:00:16.3: setting latency timer to 64 -05:51:18,521 DEBUG kernel:pci 0000:00:16.4: setting latency timer to 64 -05:51:18,521 DEBUG kernel:pci 0000:00:16.5: setting latency timer to 64 -05:51:18,521 DEBUG kernel:pci 0000:00:16.6: setting latency timer to 64 -05:51:18,521 DEBUG kernel:pci 0000:00:16.7: setting latency timer to 64 -05:51:18,521 DEBUG kernel:pci 0000:00:17.0: setting latency timer to 64 -05:51:18,521 DEBUG kernel:pci 0000:00:17.1: setting latency timer to 64 -05:51:18,522 DEBUG kernel:pci 0000:00:17.2: setting latency timer to 64 -05:51:18,522 DEBUG kernel:pci 0000:00:17.3: setting latency timer to 64 -05:51:18,522 DEBUG kernel:pci 0000:00:17.4: setting latency timer to 64 -05:51:18,522 DEBUG kernel:pci 0000:00:17.5: setting latency timer to 64 -05:51:18,522 DEBUG kernel:pci 0000:00:17.6: setting latency timer to 64 -05:51:18,522 DEBUG kernel:pci 0000:00:17.7: setting latency timer to 64 -05:51:18,522 DEBUG kernel:pci 0000:00:18.0: setting latency timer to 64 -05:51:18,522 DEBUG kernel:pci 0000:00:18.1: setting latency timer to 64 -05:51:18,522 DEBUG kernel:pci 0000:00:18.2: setting latency timer to 64 -05:51:18,522 DEBUG kernel:pci 0000:00:18.3: setting latency timer to 64 -05:51:18,522 DEBUG kernel:pci 0000:00:18.4: setting latency timer to 64 -05:51:18,522 DEBUG kernel:pci 0000:00:18.5: setting latency timer to 64 -05:51:18,522 DEBUG kernel:pci 0000:00:18.6: setting latency timer to 64 -05:51:18,522 DEBUG kernel:pci 0000:00:18.7: setting latency timer to 64 -05:51:18,522 DEBUG kernel:pci_bus 0000:00: resource 4 [mem 0x000a0000-0x000bffff] -05:51:18,522 DEBUG kernel:pci_bus 0000:00: resource 5 [mem 0x000d0000-0x000d3fff] -05:51:18,522 DEBUG kernel:pci_bus 0000:00: resource 6 [mem 0x000d4000-0x000d7fff] -05:51:18,522 DEBUG kernel:pci_bus 0000:00: resource 7 [mem 0x000d8000-0x000dbfff] -05:51:18,522 DEBUG kernel:pci_bus 0000:00: resource 8 [mem 0x80000000-0xfebfffff] -05:51:18,522 DEBUG kernel:pci_bus 0000:00: resource 9 [io 0x0000-0x0cf7] -05:51:18,522 DEBUG kernel:pci_bus 0000:00: resource 10 [io 0x0d00-0xfeff] -05:51:18,522 DEBUG kernel:pci_bus 0000:02: resource 0 [io 0x2000-0x3fff] -05:51:18,522 DEBUG kernel:pci_bus 0000:02: resource 1 [mem 0xd1000000-0xd23fffff] -05:51:18,522 DEBUG kernel:pci_bus 0000:02: resource 2 [mem 0xdc400000-0xdc9fffff 64bit pref] -05:51:18,522 DEBUG kernel:pci_bus 0000:02: resource 4 [mem 0x000a0000-0x000bffff] -05:51:18,522 DEBUG kernel:pci_bus 0000:02: resource 5 [mem 0x000d0000-0x000d3fff] -05:51:18,522 DEBUG kernel:pci_bus 0000:02: resource 6 [mem 0x000d4000-0x000d7fff] -05:51:18,522 DEBUG kernel:pci_bus 0000:02: resource 7 [mem 0x000d8000-0x000dbfff] -05:51:18,522 DEBUG kernel:pci_bus 0000:02: resource 8 [mem 0x80000000-0xfebfffff] -05:51:18,522 DEBUG kernel:pci_bus 0000:02: resource 9 [io 0x0000-0x0cf7] -05:51:18,522 DEBUG kernel:pci_bus 0000:02: resource 10 [io 0x0d00-0xfeff] -05:51:18,522 DEBUG kernel:pci_bus 0000:03: resource 0 [io 0x4000-0x4fff] -05:51:18,522 DEBUG kernel:pci_bus 0000:03: resource 1 [mem 0xd2400000-0xd24fffff] -05:51:18,522 DEBUG kernel:pci_bus 0000:03: resource 2 [mem 0xd4400000-0xd44fffff 64bit pref] -05:51:18,522 DEBUG kernel:pci_bus 0000:04: resource 0 [io 0x8000-0x8fff] -05:51:18,522 DEBUG kernel:pci_bus 0000:04: resource 1 [mem 0xd2800000-0xd28fffff] -05:51:18,522 DEBUG kernel:pci_bus 0000:04: resource 2 [mem 0xd4800000-0xd48fffff 64bit pref] -05:51:18,522 DEBUG kernel:pci_bus 0000:05: resource 0 [io 0xc000-0xcfff] -05:51:18,522 DEBUG kernel:pci_bus 0000:05: resource 1 [mem 0xd2c00000-0xd2cfffff] -05:51:18,522 DEBUG kernel:pci_bus 0000:05: resource 2 [mem 0xdcb00000-0xdcbfffff 64bit pref] -05:51:18,522 DEBUG kernel:pci_bus 0000:06: resource 1 [mem 0xd3000000-0xd30fffff] -05:51:18,522 DEBUG kernel:pci_bus 0000:06: resource 2 [mem 0xdcd00000-0xdcdfffff 64bit pref] -05:51:18,522 DEBUG kernel:pci_bus 0000:07: resource 1 [mem 0xd3400000-0xd34fffff] -05:51:18,522 DEBUG kernel:pci_bus 0000:07: resource 2 [mem 0xdcf00000-0xdcffffff 64bit pref] -05:51:18,522 DEBUG kernel:pci_bus 0000:08: resource 1 [mem 0xd3800000-0xd38fffff] -05:51:18,522 DEBUG kernel:pci_bus 0000:08: resource 2 [mem 0xdd100000-0xdd1fffff 64bit pref] -05:51:18,522 DEBUG kernel:pci_bus 0000:09: resource 1 [mem 0xd3c00000-0xd3cfffff] -05:51:18,522 DEBUG kernel:pci_bus 0000:09: resource 2 [mem 0xdd300000-0xdd3fffff 64bit pref] -05:51:18,522 DEBUG kernel:pci_bus 0000:0a: resource 1 [mem 0xd4000000-0xd40fffff] -05:51:18,522 DEBUG kernel:pci_bus 0000:0a: resource 2 [mem 0xdd500000-0xdd5fffff 64bit pref] -05:51:18,522 DEBUG kernel:pci_bus 0000:0b: resource 0 [io 0x5000-0x5fff] -05:51:18,522 DEBUG kernel:pci_bus 0000:0b: resource 1 [mem 0xd2500000-0xd25fffff] -05:51:18,522 DEBUG kernel:pci_bus 0000:0b: resource 2 [mem 0xd4500000-0xd45fffff 64bit pref] -05:51:18,522 DEBUG kernel:pci_bus 0000:0c: resource 0 [io 0x9000-0x9fff] -05:51:18,522 DEBUG kernel:pci_bus 0000:0c: resource 1 [mem 0xd2900000-0xd29fffff] -05:51:18,522 DEBUG kernel:pci_bus 0000:0c: resource 2 [mem 0xd4900000-0xd49fffff 64bit pref] -05:51:18,522 DEBUG kernel:pci_bus 0000:0d: resource 0 [io 0xd000-0xdfff] -05:51:18,522 DEBUG kernel:pci_bus 0000:0d: resource 1 [mem 0xd2d00000-0xd2dfffff] -05:51:18,522 DEBUG kernel:pci_bus 0000:0d: resource 2 [mem 0xd4b00000-0xd4bfffff 64bit pref] -05:51:18,522 DEBUG kernel:pci_bus 0000:0e: resource 1 [mem 0xd3100000-0xd31fffff] -05:51:18,522 DEBUG kernel:pci_bus 0000:0e: resource 2 [mem 0xd4d00000-0xd4dfffff 64bit pref] -05:51:18,522 DEBUG kernel:pci_bus 0000:0f: resource 1 [mem 0xd3500000-0xd35fffff] -05:51:18,522 DEBUG kernel:pci_bus 0000:0f: resource 2 [mem 0xd4f00000-0xd4ffffff 64bit pref] -05:51:18,522 DEBUG kernel:pci_bus 0000:10: resource 1 [mem 0xd3900000-0xd39fffff] -05:51:18,522 DEBUG kernel:pci_bus 0000:10: resource 2 [mem 0xd5100000-0xd51fffff 64bit pref] -05:51:18,522 DEBUG kernel:pci_bus 0000:11: resource 1 [mem 0xd3d00000-0xd3dfffff] -05:51:18,522 DEBUG kernel:pci_bus 0000:11: resource 2 [mem 0xd5300000-0xd53fffff 64bit pref] -05:51:18,522 DEBUG kernel:pci_bus 0000:12: resource 1 [mem 0xd4100000-0xd41fffff] -05:51:18,522 DEBUG kernel:pci_bus 0000:12: resource 2 [mem 0xd5500000-0xd55fffff 64bit pref] -05:51:18,522 DEBUG kernel:pci_bus 0000:13: resource 0 [io 0x6000-0x6fff] -05:51:18,522 DEBUG kernel:pci_bus 0000:13: resource 1 [mem 0xd2600000-0xd26fffff] -05:51:18,522 DEBUG kernel:pci_bus 0000:13: resource 2 [mem 0xd4600000-0xd46fffff 64bit pref] -05:51:18,522 DEBUG kernel:pci_bus 0000:14: resource 0 [io 0xa000-0xafff] -05:51:18,522 DEBUG kernel:pci_bus 0000:14: resource 1 [mem 0xd2a00000-0xd2afffff] -05:51:18,522 DEBUG kernel:pci_bus 0000:14: resource 2 [mem 0xdca00000-0xdcafffff 64bit pref] -05:51:18,522 DEBUG kernel:pci_bus 0000:15: resource 0 [io 0xe000-0xefff] -05:51:18,522 DEBUG kernel:pci_bus 0000:15: resource 1 [mem 0xd2e00000-0xd2efffff] -05:51:18,522 DEBUG kernel:pci_bus 0000:15: resource 2 [mem 0xdcc00000-0xdccfffff 64bit pref] -05:51:18,522 DEBUG kernel:pci_bus 0000:16: resource 1 [mem 0xd3200000-0xd32fffff] -05:51:18,522 DEBUG kernel:pci_bus 0000:16: resource 2 [mem 0xdce00000-0xdcefffff 64bit pref] -05:51:18,522 DEBUG kernel:pci_bus 0000:17: resource 1 [mem 0xd3600000-0xd36fffff] -05:51:18,522 DEBUG kernel:pci_bus 0000:17: resource 2 [mem 0xdd000000-0xdd0fffff 64bit pref] -05:51:18,522 DEBUG kernel:pci_bus 0000:18: resource 1 [mem 0xd3a00000-0xd3afffff] -05:51:18,522 DEBUG kernel:pci_bus 0000:18: resource 2 [mem 0xdd200000-0xdd2fffff 64bit pref] -05:51:18,522 DEBUG kernel:pci_bus 0000:19: resource 1 [mem 0xd3e00000-0xd3efffff] -05:51:18,522 DEBUG kernel:pci_bus 0000:19: resource 2 [mem 0xdd400000-0xdd4fffff 64bit pref] -05:51:18,522 DEBUG kernel:pci_bus 0000:1a: resource 1 [mem 0xd4200000-0xd42fffff] -05:51:18,522 DEBUG kernel:pci_bus 0000:1a: resource 2 [mem 0xdd600000-0xdd6fffff 64bit pref] -05:51:18,522 DEBUG kernel:pci_bus 0000:1b: resource 0 [io 0x7000-0x7fff] -05:51:18,522 DEBUG kernel:pci_bus 0000:1b: resource 1 [mem 0xd2700000-0xd27fffff] -05:51:18,522 DEBUG kernel:pci_bus 0000:1b: resource 2 [mem 0xd4700000-0xd47fffff 64bit pref] -05:51:18,522 DEBUG kernel:pci_bus 0000:1c: resource 0 [io 0xb000-0xbfff] -05:51:18,522 DEBUG kernel:pci_bus 0000:1c: resource 1 [mem 0xd2b00000-0xd2bfffff] -05:51:18,522 DEBUG kernel:pci_bus 0000:1c: resource 2 [mem 0xd4a00000-0xd4afffff 64bit pref] -05:51:18,522 DEBUG kernel:pci_bus 0000:1d: resource 1 [mem 0xd2f00000-0xd2ffffff] -05:51:18,522 DEBUG kernel:pci_bus 0000:1d: resource 2 [mem 0xd4c00000-0xd4cfffff 64bit pref] -05:51:18,522 DEBUG kernel:pci_bus 0000:1e: resource 1 [mem 0xd3300000-0xd33fffff] -05:51:18,522 DEBUG kernel:pci_bus 0000:1e: resource 2 [mem 0xd4e00000-0xd4efffff 64bit pref] -05:51:18,522 DEBUG kernel:pci_bus 0000:1f: resource 1 [mem 0xd3700000-0xd37fffff] -05:51:18,522 DEBUG kernel:pci_bus 0000:1f: resource 2 [mem 0xd5000000-0xd50fffff 64bit pref] -05:51:18,522 DEBUG kernel:pci_bus 0000:20: resource 1 [mem 0xd3b00000-0xd3bfffff] -05:51:18,522 DEBUG kernel:pci_bus 0000:20: resource 2 [mem 0xd5200000-0xd52fffff 64bit pref] -05:51:18,522 DEBUG kernel:pci_bus 0000:21: resource 1 [mem 0xd3f00000-0xd3ffffff] -05:51:18,522 DEBUG kernel:pci_bus 0000:21: resource 2 [mem 0xd5400000-0xd54fffff 64bit pref] -05:51:18,522 DEBUG kernel:pci_bus 0000:22: resource 1 [mem 0xd4300000-0xd43fffff] -05:51:18,522 DEBUG kernel:pci_bus 0000:22: resource 2 [mem 0xd5600000-0xd56fffff 64bit pref] -05:51:18,522 INFO kernel:NET: Registered protocol family 2 -05:51:18,522 INFO kernel:IP route cache hash table entries: 65536 (order: 7, 524288 bytes) -05:51:18,522 INFO kernel:TCP established hash table entries: 262144 (order: 10, 4194304 bytes) -05:51:18,527 INFO kernel:TCP bind hash table entries: 65536 (order: 8, 1048576 bytes) -05:51:18,527 INFO kernel:TCP: Hash tables configured (established 262144 bind 65536) -05:51:18,527 INFO kernel:TCP reno registered -05:51:18,527 INFO kernel:NET: Registered protocol family 1 -05:51:18,527 INFO kernel:pci 0000:00:00.0: Limiting direct PCI/PCI transfers -05:51:18,527 DEBUG kernel:pci 0000:00:0f.0: Boot video device -05:51:18,527 INFO kernel:Trying to unpack rootfs image as initramfs... -05:51:18,527 INFO kernel:Freeing initrd memory: 32601k freed -05:51:18,527 INFO kernel:Simple Boot Flag at 0x36 set to 0x80 -05:51:18,527 INFO kernel:audit: initializing netlink socket (disabled) -05:51:18,527 NOTICE kernel:type=2000 audit(1021096275.782:1): initialized -05:51:18,527 INFO kernel:HugeTLB registered 2 MB page size, pre-allocated 0 pages -05:51:18,527 NOTICE kernel:VFS: Disk quotas dquot_6.5.2 -05:51:18,527 WARNING kernel:Dquot-cache hash table entries: 512 (order 0, 4096 bytes) -05:51:18,527 INFO kernel:msgmni has been set to 4005 -05:51:18,527 DEBUG kernel:SELinux: Registering netfilter hooks -05:51:18,527 INFO kernel:alg: No test for stdrng (krng) -05:51:18,527 WARNING kernel:ksign: Installing public key data -05:51:18,527 WARNING kernel:Loading keyring -05:51:18,527 WARNING kernel:- Added public key 8A44323FB303E068 -05:51:18,527 WARNING kernel: - key was been created 363988184 seconds in future -05:51:18,527 WARNING kernel:- User ID: CentOS (Kernel Module GPG key) -05:51:18,527 INFO kernel:Block layer SCSI generic (bsg) driver version 0.4 loaded (major 251) -05:51:18,527 INFO kernel:io scheduler noop registered -05:51:18,527 INFO kernel:io scheduler anticipatory registered -05:51:18,527 INFO kernel:io scheduler deadline registered -05:51:18,527 INFO kernel:io scheduler cfq registered (default) -05:51:18,527 DEBUG kernel:pcieport 0000:00:15.0: setting latency timer to 64 -05:51:18,527 DEBUG kernel: alloc irq_desc for 24 on node -1 -05:51:18,527 DEBUG kernel: alloc kstat_irqs on node -1 -05:51:18,527 DEBUG kernel:pcieport 0000:00:15.0: irq 24 for MSI/MSI-X -05:51:18,527 DEBUG kernel:pcieport 0000:00:15.1: setting latency timer to 64 -05:51:18,527 DEBUG kernel: alloc irq_desc for 25 on node -1 -05:51:18,527 DEBUG kernel: alloc kstat_irqs on node -1 -05:51:18,527 DEBUG kernel:pcieport 0000:00:15.1: irq 25 for MSI/MSI-X -05:51:18,527 DEBUG kernel:pcieport 0000:00:15.2: setting latency timer to 64 -05:51:18,527 DEBUG kernel: alloc irq_desc for 26 on node -1 -05:51:18,527 DEBUG kernel: alloc kstat_irqs on node -1 -05:51:18,527 DEBUG kernel:pcieport 0000:00:15.2: irq 26 for MSI/MSI-X -05:51:18,527 DEBUG kernel:pcieport 0000:00:15.3: setting latency timer to 64 -05:51:18,527 DEBUG kernel: alloc irq_desc for 27 on node -1 -05:51:18,527 DEBUG kernel: alloc kstat_irqs on node -1 -05:51:18,527 DEBUG kernel:pcieport 0000:00:15.3: irq 27 for MSI/MSI-X -05:51:18,527 DEBUG kernel:pcieport 0000:00:15.4: setting latency timer to 64 -05:51:18,527 DEBUG kernel: alloc irq_desc for 28 on node -1 -05:51:18,527 DEBUG kernel: alloc kstat_irqs on node -1 -05:51:18,527 DEBUG kernel:pcieport 0000:00:15.4: irq 28 for MSI/MSI-X -05:51:18,527 DEBUG kernel:pcieport 0000:00:15.5: setting latency timer to 64 -05:51:18,527 DEBUG kernel: alloc irq_desc for 29 on node -1 -05:51:18,527 DEBUG kernel: alloc kstat_irqs on node -1 -05:51:18,527 DEBUG kernel:pcieport 0000:00:15.5: irq 29 for MSI/MSI-X -05:51:18,527 DEBUG kernel:pcieport 0000:00:15.6: setting latency timer to 64 -05:51:18,527 DEBUG kernel: alloc irq_desc for 30 on node -1 -05:51:18,527 DEBUG kernel: alloc kstat_irqs on node -1 -05:51:18,527 DEBUG kernel:pcieport 0000:00:15.6: irq 30 for MSI/MSI-X -05:51:18,527 DEBUG kernel:pcieport 0000:00:15.7: setting latency timer to 64 -05:51:18,527 DEBUG kernel: alloc irq_desc for 31 on node -1 -05:51:18,527 DEBUG kernel: alloc kstat_irqs on node -1 -05:51:18,527 DEBUG kernel:pcieport 0000:00:15.7: irq 31 for MSI/MSI-X -05:51:18,527 DEBUG kernel:pcieport 0000:00:16.0: setting latency timer to 64 -05:51:18,527 DEBUG kernel: alloc irq_desc for 32 on node -1 -05:51:18,527 DEBUG kernel: alloc kstat_irqs on node -1 -05:51:18,527 DEBUG kernel:pcieport 0000:00:16.0: irq 32 for MSI/MSI-X -05:51:18,527 DEBUG kernel:pcieport 0000:00:16.1: setting latency timer to 64 -05:51:18,527 DEBUG kernel: alloc irq_desc for 33 on node -1 -05:51:18,527 DEBUG kernel: alloc kstat_irqs on node -1 -05:51:18,527 DEBUG kernel:pcieport 0000:00:16.1: irq 33 for MSI/MSI-X -05:51:18,527 DEBUG kernel:pcieport 0000:00:16.2: setting latency timer to 64 -05:51:18,527 DEBUG kernel: alloc irq_desc for 34 on node -1 -05:51:18,527 DEBUG kernel: alloc kstat_irqs on node -1 -05:51:18,527 DEBUG kernel:pcieport 0000:00:16.2: irq 34 for MSI/MSI-X -05:51:18,527 DEBUG kernel:pcieport 0000:00:16.3: setting latency timer to 64 -05:51:18,527 DEBUG kernel: alloc irq_desc for 35 on node -1 -05:51:18,527 DEBUG kernel: alloc kstat_irqs on node -1 -05:51:18,527 DEBUG kernel:pcieport 0000:00:16.3: irq 35 for MSI/MSI-X -05:51:18,527 DEBUG kernel:pcieport 0000:00:16.4: setting latency timer to 64 -05:51:18,527 DEBUG kernel: alloc irq_desc for 36 on node -1 -05:51:18,527 DEBUG kernel: alloc kstat_irqs on node -1 -05:51:18,527 DEBUG kernel:pcieport 0000:00:16.4: irq 36 for MSI/MSI-X -05:51:18,527 DEBUG kernel:pcieport 0000:00:16.5: setting latency timer to 64 -05:51:18,527 DEBUG kernel: alloc irq_desc for 37 on node -1 -05:51:18,527 DEBUG kernel: alloc kstat_irqs on node -1 -05:51:18,527 DEBUG kernel:pcieport 0000:00:16.5: irq 37 for MSI/MSI-X -05:51:18,527 DEBUG kernel:pcieport 0000:00:16.6: setting latency timer to 64 -05:51:18,527 DEBUG kernel: alloc irq_desc for 38 on node -1 -05:51:18,527 DEBUG kernel: alloc kstat_irqs on node -1 -05:51:18,527 DEBUG kernel:pcieport 0000:00:16.6: irq 38 for MSI/MSI-X -05:51:18,527 DEBUG kernel:pcieport 0000:00:16.7: setting latency timer to 64 -05:51:18,527 DEBUG kernel: alloc irq_desc for 39 on node -1 -05:51:18,527 DEBUG kernel: alloc kstat_irqs on node -1 -05:51:18,527 DEBUG kernel:pcieport 0000:00:16.7: irq 39 for MSI/MSI-X -05:51:18,527 DEBUG kernel:pcieport 0000:00:17.0: setting latency timer to 64 -05:51:18,527 DEBUG kernel: alloc irq_desc for 40 on node -1 -05:51:18,527 DEBUG kernel: alloc kstat_irqs on node -1 -05:51:18,527 DEBUG kernel:pcieport 0000:00:17.0: irq 40 for MSI/MSI-X -05:51:18,527 DEBUG kernel:pcieport 0000:00:17.1: setting latency timer to 64 -05:51:18,527 DEBUG kernel: alloc irq_desc for 41 on node -1 -05:51:18,527 DEBUG kernel: alloc kstat_irqs on node -1 -05:51:18,527 DEBUG kernel:pcieport 0000:00:17.1: irq 41 for MSI/MSI-X -05:51:18,527 DEBUG kernel:pcieport 0000:00:17.2: setting latency timer to 64 -05:51:18,527 DEBUG kernel: alloc irq_desc for 42 on node -1 -05:51:18,527 DEBUG kernel: alloc kstat_irqs on node -1 -05:51:18,527 DEBUG kernel:pcieport 0000:00:17.2: irq 42 for MSI/MSI-X -05:51:18,527 DEBUG kernel:pcieport 0000:00:17.3: setting latency timer to 64 -05:51:18,527 DEBUG kernel: alloc irq_desc for 43 on node -1 -05:51:18,527 DEBUG kernel: alloc kstat_irqs on node -1 -05:51:18,527 DEBUG kernel:pcieport 0000:00:17.3: irq 43 for MSI/MSI-X -05:51:18,527 DEBUG kernel:pcieport 0000:00:17.4: setting latency timer to 64 -05:51:18,527 DEBUG kernel: alloc irq_desc for 44 on node -1 -05:51:18,527 DEBUG kernel: alloc kstat_irqs on node -1 -05:51:18,527 DEBUG kernel:pcieport 0000:00:17.4: irq 44 for MSI/MSI-X -05:51:18,527 DEBUG kernel:pcieport 0000:00:17.5: setting latency timer to 64 -05:51:18,527 DEBUG kernel: alloc irq_desc for 45 on node -1 -05:51:18,527 DEBUG kernel: alloc kstat_irqs on node -1 -05:51:18,527 DEBUG kernel:pcieport 0000:00:17.5: irq 45 for MSI/MSI-X -05:51:18,527 DEBUG kernel:pcieport 0000:00:17.6: setting latency timer to 64 -05:51:18,527 DEBUG kernel: alloc irq_desc for 46 on node -1 -05:51:18,527 DEBUG kernel: alloc kstat_irqs on node -1 -05:51:18,527 DEBUG kernel:pcieport 0000:00:17.6: irq 46 for MSI/MSI-X -05:51:18,527 DEBUG kernel:pcieport 0000:00:17.7: setting latency timer to 64 -05:51:18,527 DEBUG kernel: alloc irq_desc for 47 on node -1 -05:51:18,527 DEBUG kernel: alloc kstat_irqs on node -1 -05:51:18,527 DEBUG kernel:pcieport 0000:00:17.7: irq 47 for MSI/MSI-X -05:51:18,527 DEBUG kernel:pcieport 0000:00:18.0: setting latency timer to 64 -05:51:18,527 DEBUG kernel: alloc irq_desc for 48 on node -1 -05:51:18,527 DEBUG kernel: alloc kstat_irqs on node -1 -05:51:18,527 DEBUG kernel:pcieport 0000:00:18.0: irq 48 for MSI/MSI-X -05:51:18,527 DEBUG kernel:pcieport 0000:00:18.1: setting latency timer to 64 -05:51:18,527 DEBUG kernel: alloc irq_desc for 49 on node -1 -05:51:18,527 DEBUG kernel: alloc kstat_irqs on node -1 -05:51:18,527 DEBUG kernel:pcieport 0000:00:18.1: irq 49 for MSI/MSI-X -05:51:18,527 DEBUG kernel:pcieport 0000:00:18.2: setting latency timer to 64 -05:51:18,527 DEBUG kernel: alloc irq_desc for 50 on node -1 -05:51:18,527 DEBUG kernel: alloc kstat_irqs on node -1 -05:51:18,527 DEBUG kernel:pcieport 0000:00:18.2: irq 50 for MSI/MSI-X -05:51:18,527 DEBUG kernel:pcieport 0000:00:18.3: setting latency timer to 64 -05:51:18,527 DEBUG kernel: alloc irq_desc for 51 on node -1 -05:51:18,527 DEBUG kernel: alloc kstat_irqs on node -1 -05:51:18,527 DEBUG kernel:pcieport 0000:00:18.3: irq 51 for MSI/MSI-X -05:51:18,527 DEBUG kernel:pcieport 0000:00:18.4: setting latency timer to 64 -05:51:18,527 DEBUG kernel: alloc irq_desc for 52 on node -1 -05:51:18,527 DEBUG kernel: alloc kstat_irqs on node -1 -05:51:18,527 DEBUG kernel:pcieport 0000:00:18.4: irq 52 for MSI/MSI-X -05:51:18,527 DEBUG kernel:pcieport 0000:00:18.5: setting latency timer to 64 -05:51:18,527 DEBUG kernel: alloc irq_desc for 53 on node -1 -05:51:18,527 DEBUG kernel: alloc kstat_irqs on node -1 -05:51:18,527 DEBUG kernel:pcieport 0000:00:18.5: irq 53 for MSI/MSI-X -05:51:18,527 DEBUG kernel:pcieport 0000:00:18.6: setting latency timer to 64 -05:51:18,527 DEBUG kernel: alloc irq_desc for 54 on node -1 -05:51:18,527 DEBUG kernel: alloc kstat_irqs on node -1 -05:51:18,527 DEBUG kernel:pcieport 0000:00:18.6: irq 54 for MSI/MSI-X -05:51:18,527 DEBUG kernel:pcieport 0000:00:18.7: setting latency timer to 64 -05:51:18,527 DEBUG kernel: alloc irq_desc for 55 on node -1 -05:51:18,527 DEBUG kernel: alloc kstat_irqs on node -1 -05:51:18,527 DEBUG kernel:pcieport 0000:00:18.7: irq 55 for MSI/MSI-X -05:51:18,527 INFO kernel:pci_hotplug: PCI Hot Plug PCI Core version: 0.5 -05:51:18,527 INFO kernel:pciehp 0000:00:15.0:pcie04: HPC vendor_id 15ad device_id 7a0 ss_vid 0 ss_did 0 -05:51:18,527 DEBUG kernel:pciehp 0000:00:15.0:pcie04: service driver pciehp loaded -05:51:18,527 INFO kernel:pciehp 0000:00:15.1:pcie04: HPC vendor_id 15ad device_id 7a0 ss_vid 0 ss_did 0 -05:51:18,527 DEBUG kernel:pciehp 0000:00:15.1:pcie04: service driver pciehp loaded -05:51:18,527 INFO kernel:pciehp 0000:00:15.2:pcie04: HPC vendor_id 15ad device_id 7a0 ss_vid 0 ss_did 0 -05:51:18,527 DEBUG kernel:pciehp 0000:00:15.2:pcie04: service driver pciehp loaded -05:51:18,527 INFO kernel:pciehp 0000:00:15.3:pcie04: HPC vendor_id 15ad device_id 7a0 ss_vid 0 ss_did 0 -05:51:18,527 DEBUG kernel:pciehp 0000:00:15.3:pcie04: service driver pciehp loaded -05:51:18,527 INFO kernel:pciehp 0000:00:15.4:pcie04: HPC vendor_id 15ad device_id 7a0 ss_vid 0 ss_did 0 -05:51:18,527 DEBUG kernel:pciehp 0000:00:15.4:pcie04: service driver pciehp loaded -05:51:18,527 INFO kernel:pciehp 0000:00:15.5:pcie04: HPC vendor_id 15ad device_id 7a0 ss_vid 0 ss_did 0 -05:51:18,527 DEBUG kernel:pciehp 0000:00:15.5:pcie04: service driver pciehp loaded -05:51:18,527 INFO kernel:pciehp 0000:00:15.6:pcie04: HPC vendor_id 15ad device_id 7a0 ss_vid 0 ss_did 0 -05:51:18,527 DEBUG kernel:pciehp 0000:00:15.6:pcie04: service driver pciehp loaded -05:51:18,527 INFO kernel:pciehp 0000:00:15.7:pcie04: HPC vendor_id 15ad device_id 7a0 ss_vid 0 ss_did 0 -05:51:18,527 DEBUG kernel:pciehp 0000:00:15.7:pcie04: service driver pciehp loaded -05:51:18,527 INFO kernel:pciehp 0000:00:16.0:pcie04: HPC vendor_id 15ad device_id 7a0 ss_vid 0 ss_did 0 -05:51:18,527 DEBUG kernel:pciehp 0000:00:16.0:pcie04: service driver pciehp loaded -05:51:18,527 INFO kernel:pciehp 0000:00:16.1:pcie04: HPC vendor_id 15ad device_id 7a0 ss_vid 0 ss_did 0 -05:51:18,527 DEBUG kernel:pciehp 0000:00:16.1:pcie04: service driver pciehp loaded -05:51:18,527 INFO kernel:pciehp 0000:00:16.2:pcie04: HPC vendor_id 15ad device_id 7a0 ss_vid 0 ss_did 0 -05:51:18,527 DEBUG kernel:pciehp 0000:00:16.2:pcie04: service driver pciehp loaded -05:51:18,527 INFO kernel:pciehp 0000:00:16.3:pcie04: HPC vendor_id 15ad device_id 7a0 ss_vid 0 ss_did 0 -05:51:18,527 DEBUG kernel:pciehp 0000:00:16.3:pcie04: service driver pciehp loaded -05:51:18,527 INFO kernel:pciehp 0000:00:16.4:pcie04: HPC vendor_id 15ad device_id 7a0 ss_vid 0 ss_did 0 -05:51:18,527 DEBUG kernel:pciehp 0000:00:16.4:pcie04: service driver pciehp loaded -05:51:18,527 INFO kernel:pciehp 0000:00:16.5:pcie04: HPC vendor_id 15ad device_id 7a0 ss_vid 0 ss_did 0 -05:51:18,527 DEBUG kernel:pciehp 0000:00:16.5:pcie04: service driver pciehp loaded -05:51:18,527 INFO kernel:pciehp 0000:00:16.6:pcie04: HPC vendor_id 15ad device_id 7a0 ss_vid 0 ss_did 0 -05:51:18,527 DEBUG kernel:pciehp 0000:00:16.6:pcie04: service driver pciehp loaded -05:51:18,527 INFO kernel:pciehp 0000:00:16.7:pcie04: HPC vendor_id 15ad device_id 7a0 ss_vid 0 ss_did 0 -05:51:18,527 DEBUG kernel:pciehp 0000:00:16.7:pcie04: service driver pciehp loaded -05:51:18,527 INFO kernel:pciehp 0000:00:17.0:pcie04: HPC vendor_id 15ad device_id 7a0 ss_vid 0 ss_did 0 -05:51:18,527 DEBUG kernel:pciehp 0000:00:17.0:pcie04: service driver pciehp loaded -05:51:18,527 INFO kernel:pciehp 0000:00:17.1:pcie04: HPC vendor_id 15ad device_id 7a0 ss_vid 0 ss_did 0 -05:51:18,527 DEBUG kernel:pciehp 0000:00:17.1:pcie04: service driver pciehp loaded -05:51:18,527 INFO kernel:pciehp 0000:00:17.2:pcie04: HPC vendor_id 15ad device_id 7a0 ss_vid 0 ss_did 0 -05:51:18,527 DEBUG kernel:pciehp 0000:00:17.2:pcie04: service driver pciehp loaded -05:51:18,527 INFO kernel:pciehp 0000:00:17.3:pcie04: HPC vendor_id 15ad device_id 7a0 ss_vid 0 ss_did 0 -05:51:18,527 DEBUG kernel:pciehp 0000:00:17.3:pcie04: service driver pciehp loaded -05:51:18,527 INFO kernel:pciehp 0000:00:17.4:pcie04: HPC vendor_id 15ad device_id 7a0 ss_vid 0 ss_did 0 -05:51:18,527 DEBUG kernel:pciehp 0000:00:17.4:pcie04: service driver pciehp loaded -05:51:18,527 INFO kernel:pciehp 0000:00:17.5:pcie04: HPC vendor_id 15ad device_id 7a0 ss_vid 0 ss_did 0 -05:51:18,527 DEBUG kernel:pciehp 0000:00:17.5:pcie04: service driver pciehp loaded -05:51:18,527 INFO kernel:pciehp 0000:00:17.6:pcie04: HPC vendor_id 15ad device_id 7a0 ss_vid 0 ss_did 0 -05:51:18,527 DEBUG kernel:pciehp 0000:00:17.6:pcie04: service driver pciehp loaded -05:51:18,527 INFO kernel:pciehp 0000:00:17.7:pcie04: HPC vendor_id 15ad device_id 7a0 ss_vid 0 ss_did 0 -05:51:18,527 DEBUG kernel:pciehp 0000:00:17.7:pcie04: service driver pciehp loaded -05:51:18,527 INFO kernel:pciehp 0000:00:18.0:pcie04: HPC vendor_id 15ad device_id 7a0 ss_vid 0 ss_did 0 -05:51:18,527 DEBUG kernel:pciehp 0000:00:18.0:pcie04: service driver pciehp loaded -05:51:18,527 INFO kernel:pciehp 0000:00:18.1:pcie04: HPC vendor_id 15ad device_id 7a0 ss_vid 0 ss_did 0 -05:51:18,527 DEBUG kernel:pciehp 0000:00:18.1:pcie04: service driver pciehp loaded -05:51:18,527 INFO kernel:pciehp 0000:00:18.2:pcie04: HPC vendor_id 15ad device_id 7a0 ss_vid 0 ss_did 0 -05:51:18,527 DEBUG kernel:pciehp 0000:00:18.2:pcie04: service driver pciehp loaded -05:51:18,527 INFO kernel:pciehp 0000:00:18.3:pcie04: HPC vendor_id 15ad device_id 7a0 ss_vid 0 ss_did 0 -05:51:18,527 DEBUG kernel:pciehp 0000:00:18.3:pcie04: service driver pciehp loaded -05:51:18,527 INFO kernel:pciehp 0000:00:18.4:pcie04: HPC vendor_id 15ad device_id 7a0 ss_vid 0 ss_did 0 -05:51:18,527 DEBUG kernel:pciehp 0000:00:18.4:pcie04: service driver pciehp loaded -05:51:18,527 INFO kernel:pciehp 0000:00:18.5:pcie04: HPC vendor_id 15ad device_id 7a0 ss_vid 0 ss_did 0 -05:51:18,527 DEBUG kernel:pciehp 0000:00:18.5:pcie04: service driver pciehp loaded -05:51:18,527 INFO kernel:pciehp 0000:00:18.6:pcie04: HPC vendor_id 15ad device_id 7a0 ss_vid 0 ss_did 0 -05:51:18,527 DEBUG kernel:pciehp 0000:00:18.6:pcie04: service driver pciehp loaded -05:51:18,527 INFO kernel:pciehp 0000:00:18.7:pcie04: HPC vendor_id 15ad device_id 7a0 ss_vid 0 ss_did 0 -05:51:18,527 DEBUG kernel:pciehp 0000:00:18.7:pcie04: service driver pciehp loaded -05:51:18,527 INFO kernel:pciehp: PCI Express Hot Plug Controller Driver version: 0.4 -05:51:18,527 INFO kernel:acpiphp: ACPI Hot Plug PCI Controller Driver version: 0.5 -05:51:18,527 INFO kernel:acpiphp: Slot [32] registered -05:51:18,527 INFO kernel:acpiphp: Slot [33] registered -05:51:18,527 INFO kernel:acpiphp: Slot [34] registered -05:51:18,527 INFO kernel:acpiphp: Slot [35] registered -05:51:18,527 INFO kernel:acpiphp: Slot [36] registered -05:51:18,527 INFO kernel:acpiphp: Slot [37] registered -05:51:18,527 INFO kernel:acpiphp: Slot [38] registered -05:51:18,527 INFO kernel:acpiphp: Slot [39] registered -05:51:18,527 INFO kernel:acpiphp: Slot [40] registered -05:51:18,527 INFO kernel:acpiphp: Slot [41] registered -05:51:18,527 INFO kernel:acpiphp: Slot [42] registered -05:51:18,527 INFO kernel:acpiphp: Slot [43] registered -05:51:18,527 INFO kernel:acpiphp: Slot [44] registered -05:51:18,527 INFO kernel:acpiphp: Slot [45] registered -05:51:18,527 INFO kernel:acpiphp: Slot [46] registered -05:51:18,527 INFO kernel:acpiphp: Slot [47] registered -05:51:18,527 INFO kernel:acpiphp: Slot [48] registered -05:51:18,527 INFO kernel:acpiphp: Slot [49] registered -05:51:18,527 INFO kernel:acpiphp: Slot [50] registered -05:51:18,527 INFO kernel:acpiphp: Slot [51] registered -05:51:18,527 INFO kernel:acpiphp: Slot [52] registered -05:51:18,527 INFO kernel:acpiphp: Slot [53] registered -05:51:18,527 INFO kernel:acpiphp: Slot [54] registered -05:51:18,527 INFO kernel:acpiphp: Slot [55] registered -05:51:18,527 INFO kernel:acpiphp: Slot [56] registered -05:51:18,527 INFO kernel:acpiphp: Slot [57] registered -05:51:18,527 INFO kernel:acpiphp: Slot [58] registered -05:51:18,527 INFO kernel:acpiphp: Slot [59] registered -05:51:18,527 INFO kernel:acpiphp: Slot [60] registered -05:51:18,527 INFO kernel:acpiphp: Slot [61] registered -05:51:18,527 INFO kernel:acpiphp: Slot [62] registered -05:51:18,527 INFO kernel:acpiphp: Slot [63] registered -05:51:18,527 WARNING kernel:acpiphp_glue: Slot 160 already registered by another hotplug driver -05:51:18,527 WARNING kernel:acpiphp_glue: Slot 192 already registered by another hotplug driver -05:51:18,527 WARNING kernel:acpiphp_glue: Slot 224 already registered by another hotplug driver -05:51:18,527 WARNING kernel:acpiphp_glue: Slot 256 already registered by another hotplug driver -05:51:18,527 WARNING kernel:acpiphp_glue: Slot 161 already registered by another hotplug driver -05:51:18,527 WARNING kernel:acpiphp_glue: Slot 162 already registered by another hotplug driver -05:51:18,527 WARNING kernel:acpiphp_glue: Slot 163 already registered by another hotplug driver -05:51:18,527 WARNING kernel:acpiphp_glue: Slot 164 already registered by another hotplug driver -05:51:18,527 WARNING kernel:acpiphp_glue: Slot 165 already registered by another hotplug driver -05:51:18,527 WARNING kernel:acpiphp_glue: Slot 166 already registered by another hotplug driver -05:51:18,527 WARNING kernel:acpiphp_glue: Slot 167 already registered by another hotplug driver -05:51:18,527 WARNING kernel:acpiphp_glue: Slot 193 already registered by another hotplug driver -05:51:18,527 WARNING kernel:acpiphp_glue: Slot 194 already registered by another hotplug driver -05:51:18,527 WARNING kernel:acpiphp_glue: Slot 195 already registered by another hotplug driver -05:51:18,527 WARNING kernel:acpiphp_glue: Slot 196 already registered by another hotplug driver -05:51:18,527 WARNING kernel:acpiphp_glue: Slot 197 already registered by another hotplug driver -05:51:18,527 WARNING kernel:acpiphp_glue: Slot 198 already registered by another hotplug driver -05:51:18,527 WARNING kernel:acpiphp_glue: Slot 199 already registered by another hotplug driver -05:51:18,527 WARNING kernel:acpiphp_glue: Slot 225 already registered by another hotplug driver -05:51:18,527 WARNING kernel:acpiphp_glue: Slot 226 already registered by another hotplug driver -05:51:18,527 WARNING kernel:acpiphp_glue: Slot 227 already registered by another hotplug driver -05:51:18,527 WARNING kernel:acpiphp_glue: Slot 228 already registered by another hotplug driver -05:51:18,527 WARNING kernel:acpiphp_glue: Slot 229 already registered by another hotplug driver -05:51:18,527 WARNING kernel:acpiphp_glue: Slot 230 already registered by another hotplug driver -05:51:18,527 WARNING kernel:acpiphp_glue: Slot 231 already registered by another hotplug driver -05:51:18,527 WARNING kernel:acpiphp_glue: Slot 257 already registered by another hotplug driver -05:51:18,527 WARNING kernel:acpiphp_glue: Slot 258 already registered by another hotplug driver -05:51:18,527 WARNING kernel:acpiphp_glue: Slot 259 already registered by another hotplug driver -05:51:18,527 WARNING kernel:acpiphp_glue: Slot 260 already registered by another hotplug driver -05:51:18,527 WARNING kernel:acpiphp_glue: Slot 261 already registered by another hotplug driver -05:51:18,527 WARNING kernel:acpiphp_glue: Slot 262 already registered by another hotplug driver -05:51:18,527 WARNING kernel:acpiphp_glue: Slot 263 already registered by another hotplug driver -05:51:18,527 INFO kernel:ipmi message handler version 39.2 -05:51:18,527 INFO kernel:IPMI System Interface driver. -05:51:18,527 INFO kernel:ipmi_si: Adding default-specified kcs state machine -05:51:18,527 INFO kernel:ipmi_si: Trying default-specified kcs state machine at i/o address 0xca2, slave address 0x0, irq 0 -05:51:18,527 INFO kernel:ipmi_si: Interface detection failed -05:51:18,527 INFO kernel:ipmi_si: Adding default-specified smic state machine -05:51:18,527 INFO kernel:ipmi_si: Trying default-specified smic state machine at i/o address 0xca9, slave address 0x0, irq 0 -05:51:18,527 INFO kernel:ipmi_si: Interface detection failed -05:51:18,527 INFO kernel:ipmi_si: Adding default-specified bt state machine -05:51:18,527 INFO kernel:ipmi_si: Trying default-specified bt state machine at i/o address 0xe4, slave address 0x0, irq 0 -05:51:18,527 INFO kernel:ipmi_si: Interface detection failed -05:51:18,527 WARNING kernel:ipmi_si: Unable to find any System Interface(s) -05:51:18,527 INFO kernel:ACPI: AC Adapter [ACAD] (on-line) -05:51:18,527 INFO kernel:input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input0 -05:51:18,527 INFO kernel:ACPI: Power Button [PWRF] -05:51:18,527 DEBUG kernel:ACPI: acpi_idle registered with cpuidle -05:51:18,527 WARNING kernel:ACPI Exception: AE_NOT_FOUND, No or invalid critical threshold (20090903/thermal-386) -05:51:18,527 INFO kernel:GHES: HEST is not enabled! -05:51:18,527 INFO kernel:Non-volatile memory driver v1.3 -05:51:18,527 INFO kernel:Linux agpgart interface v0.103 -05:51:18,527 INFO kernel:agpgart-intel 0000:00:00.0: Intel 440BX Chipset -05:51:18,527 INFO kernel:agpgart-intel 0000:00:00.0: AGP aperture is 256M @ 0x0 -05:51:18,527 INFO kernel:crash memory driver: version 1.1 -05:51:18,527 INFO kernel:Serial: 8250/16550 driver, 4 ports, IRQ sharing enabled -05:51:18,527 INFO kernel:serial8250: ttyS0 at I/O 0x3f8 (irq = 4) is a 16550A -05:51:18,527 INFO kernel:serial8250: ttyS1 at I/O 0x2f8 (irq = 3) is a 16550A -05:51:18,527 INFO kernel:00:0a: ttyS0 at I/O 0x3f8 (irq = 4) is a 16550A -05:51:18,527 INFO kernel:00:0b: ttyS1 at I/O 0x2f8 (irq = 3) is a 16550A -05:51:18,527 INFO kernel:brd: module loaded -05:51:18,527 INFO kernel:loop: module loaded -05:51:18,527 INFO kernel:input: Macintosh mouse button emulation as /devices/virtual/input/input1 -05:51:18,527 INFO kernel:Fixed MDIO Bus: probed -05:51:18,527 INFO kernel:ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver -05:51:18,527 INFO kernel:ohci_hcd: USB 1.1 'Open' Host Controller (OHCI) Driver -05:51:18,527 INFO kernel:uhci_hcd: USB Universal Host Controller Interface driver -05:51:18,527 INFO kernel:PNP: PS/2 Controller [PNP0303:KBC,PNP0f13:MOUS] at 0x60,0x64 irq 1,12 -05:51:18,527 INFO kernel:Refined TSC clocksource calibration: 2400.080 MHz. -05:51:18,527 INFO kernel:Switching to clocksource tsc -05:51:18,527 INFO kernel:serio: i8042 KBD port at 0x60,0x64 irq 1 -05:51:18,527 INFO kernel:serio: i8042 AUX port at 0x60,0x64 irq 12 -05:51:18,527 INFO kernel:mice: PS/2 mouse device common for all mice -05:51:18,527 INFO kernel:rtc_cmos 00:04: rtc core: registered rtc_cmos as rtc0 -05:51:18,527 INFO kernel:rtc0: alarms up to one month, y3k, 114 bytes nvram, hpet irqs -05:51:18,527 INFO kernel:cpuidle: using governor ladder -05:51:18,527 INFO kernel:cpuidle: using governor menu -05:51:18,527 INFO kernel:EFI Variables Facility v0.08 2004-May-17 -05:51:18,527 INFO kernel:usbcore: registered new interface driver hiddev -05:51:18,527 INFO kernel:usbcore: registered new interface driver usbhid -05:51:18,527 INFO kernel:usbhid: v2.6:USB HID core driver -05:51:18,527 INFO kernel:GRE over IPv4 demultiplexor driver -05:51:18,527 INFO kernel:TCP cubic registered -05:51:18,527 INFO kernel:input: AT Translated Set 2 keyboard as /devices/platform/i8042/serio0/input/input2 -05:51:18,527 INFO kernel:Initializing XFRM netlink socket -05:51:18,527 INFO kernel:NET: Registered protocol family 17 -05:51:18,527 WARNING kernel:registered taskstats version 1 -05:51:18,527 INFO kernel:input: ImPS/2 Generic Wheel Mouse as /devices/platform/i8042/serio1/input/input3 -05:51:18,527 INFO kernel:rtc_cmos 00:04: setting system clock to 2002-05-11 05:51:18 UTC (1021096278) -05:51:18,527 INFO kernel:Initalizing network drop monitor service -05:51:18,527 INFO kernel:Freeing unused kernel memory: 1276k freed -05:51:18,527 INFO kernel:Write protecting the kernel read-only data: 10240k -05:51:18,527 INFO kernel:Freeing unused kernel memory: 800k freed -05:51:18,527 INFO kernel:Freeing unused kernel memory: 1588k freed -05:51:20,557 INFO kernel:squashfs: version 4.0 (2009/01/31) Phillip Lougher -05:51:20,568 INFO kernel:Loading iSCSI transport class v2.0-870. -05:51:20,587 NOTICE kernel:iscsi: registered transport (tcp) -05:51:20,594 INFO kernel:Floppy drive(s): fd0 is 1.44M -05:51:20,605 INFO kernel:FDC 0 is a post-1991 82077 -05:51:20,610 INFO kernel:BIOS EDD facility v0.16 2004-Jun-25, 2 devices found -05:51:20,614 INFO kernel:input: PC Speaker as /devices/platform/pcspkr/input/input4 -05:51:20,620 INFO kernel:No iBFT detected. -05:51:20,655 INFO kernel:NET: Registered protocol family 10 -05:51:20,657 INFO kernel:lo: Disabled Privacy Extensions -05:51:20,739 DEBUG kernel:ata_piix 0000:00:07.1: version 2.13 -05:51:20,740 INFO kernel:scsi0 : ata_piix -05:51:20,740 INFO kernel:scsi1 : ata_piix -05:51:20,740 INFO kernel:ata1: PATA max UDMA/33 cmd 0x1f0 ctl 0x3f6 bmdma 0x10c0 irq 14 -05:51:20,740 INFO kernel:ata2: PATA max UDMA/33 cmd 0x170 ctl 0x376 bmdma 0x10c8 irq 15 -05:51:20,750 ERR udevd-work: device node '/dev/rtc' already exists, link to '/dev/rtc0' will not overwrite it -05:51:20,926 INFO kernel:ata2.00: ATAPI: VMware Virtual IDE CDROM Drive, 00000001, max UDMA/33 -05:51:20,934 INFO kernel:ata2.00: configured for UDMA/33 -05:51:20,934 NOTICE kernel:scsi 1:0:0:0: CD-ROM NECVMWar VMware IDE CDR10 1.00 PQ: 0 ANSI: 5 -05:51:20,959 INFO kernel:Fusion MPT base driver 3.04.20 -05:51:20,959 INFO kernel:Copyright (c) 1999-2008 LSI Corporation -05:51:20,971 INFO kernel:Fusion MPT SPI Host driver 3.04.20 -05:51:20,971 DEBUG kernel: alloc irq_desc for 17 on node -1 -05:51:20,971 DEBUG kernel: alloc kstat_irqs on node -1 -05:51:20,971 INFO kernel:mptspi 0000:00:10.0: PCI INT A -> GSI 17 (level, low) -> IRQ 17 -05:51:20,972 INFO kernel:mptbase: ioc0: Initiating bringup -05:51:20,990 INFO kernel:ioc0: LSI53C1030 B0: Capabilities={Initiator} -05:51:21,031 INFO kernel:scsi2 : ioc0: LSI53C1030 B0, FwRev=01032920h, Ports=1, MaxQ=128, IRQ=17 -05:51:21,061 NOTICE kernel:scsi 2:0:0:0: Direct-Access VMware Virtual disk 1.0 PQ: 0 ANSI: 2 -05:51:21,061 INFO kernel:scsi target2:0:0: Beginning Domain Validation -05:51:21,061 INFO kernel:scsi target2:0:0: Domain Validation skipping write tests -05:51:21,061 INFO kernel:scsi target2:0:0: Ending Domain Validation -05:51:21,061 INFO kernel:scsi target2:0:0: FAST-40 WIDE SCSI 80.0 MB/s ST (25 ns, offset 127) -05:51:21,061 NOTICE kernel:scsi 2:0:1:0: Direct-Access VMware Virtual disk 1.0 PQ: 0 ANSI: 2 -05:51:21,061 INFO kernel:scsi target2:0:1: Beginning Domain Validation -05:51:21,061 INFO kernel:scsi target2:0:1: Domain Validation skipping write tests -05:51:21,061 INFO kernel:scsi target2:0:1: Ending Domain Validation -05:51:21,061 INFO kernel:scsi target2:0:1: FAST-40 WIDE SCSI 80.0 MB/s ST (25 ns, offset 127) -05:51:21,088 WARNING kernel:sr0: scsi3-mmc drive: 1x/1x writer dvd-ram cd/rw xa/form2 cdda tray -05:51:21,088 INFO kernel:Uniform CD-ROM driver Revision: 3.20 -05:51:21,088 DEBUG kernel:sr 1:0:0:0: Attached scsi CD-ROM sr0 -05:51:21,098 INFO kernel:e1000: Intel(R) PRO/1000 Network Driver - version 7.3.21-k8-NAPI -05:51:21,098 INFO kernel:e1000: Copyright (c) 1999-2006 Intel Corporation. -05:51:21,098 DEBUG kernel: alloc irq_desc for 18 on node -1 -05:51:21,098 DEBUG kernel: alloc kstat_irqs on node -1 -05:51:21,098 INFO kernel:e1000 0000:02:00.0: PCI INT A -> GSI 18 (level, low) -> IRQ 18 -05:51:21,098 DEBUG kernel:e1000 0000:02:00.0: setting latency timer to 64 -05:51:21,447 INFO kernel:e1000 0000:02:00.0: eth0: (PCI:66MHz:32-bit) 00:0c:29:21:89:af -05:51:21,447 INFO kernel:e1000 0000:02:00.0: eth0: Intel(R) PRO/1000 Network Connection -05:51:21,447 DEBUG kernel: alloc irq_desc for 19 on node -1 -05:51:21,447 DEBUG kernel: alloc kstat_irqs on node -1 -05:51:21,447 INFO kernel:e1000 0000:02:01.0: PCI INT A -> GSI 19 (level, low) -> IRQ 19 -05:51:21,447 DEBUG kernel:e1000 0000:02:01.0: setting latency timer to 64 -05:51:21,793 INFO kernel:e1000 0000:02:01.0: eth1: (PCI:66MHz:32-bit) 00:0c:29:21:89:b9 -05:51:21,793 INFO kernel:e1000 0000:02:01.0: eth1: Intel(R) PRO/1000 Network Connection -05:51:21,793 DEBUG kernel: alloc irq_desc for 16 on node -1 -05:51:21,793 DEBUG kernel: alloc kstat_irqs on node -1 -05:51:21,793 INFO kernel:e1000 0000:02:02.0: PCI INT A -> GSI 16 (level, low) -> IRQ 16 -05:51:21,793 DEBUG kernel:e1000 0000:02:02.0: setting latency timer to 64 -05:51:22,142 INFO kernel:e1000 0000:02:02.0: eth2: (PCI:66MHz:32-bit) 00:0c:29:21:89:c3 -05:51:22,142 INFO kernel:e1000 0000:02:02.0: eth2: Intel(R) PRO/1000 Network Connection -05:51:22,142 INFO kernel:e1000 0000:02:03.0: PCI INT A -> GSI 17 (level, low) -> IRQ 17 -05:51:22,142 DEBUG kernel:e1000 0000:02:03.0: setting latency timer to 64 -05:51:22,485 INFO kernel:e1000 0000:02:03.0: eth3: (PCI:66MHz:32-bit) 00:0c:29:21:89:cd -05:51:22,485 INFO kernel:e1000 0000:02:03.0: eth3: Intel(R) PRO/1000 Network Connection -05:51:22,515 NOTICE kernel:sd 2:0:0:0: [sda] 33554432 512-byte logical blocks: (17.1 GB/16.0 GiB) -05:51:22,515 NOTICE kernel:sd 2:0:0:0: [sda] Write Protect is off -05:51:22,515 DEBUG kernel:sd 2:0:0:0: [sda] Mode Sense: 61 00 00 00 -05:51:22,515 NOTICE kernel:sd 2:0:0:0: [sda] Cache data unavailable -05:51:22,515 ERR kernel:sd 2:0:0:0: [sda] Assuming drive cache: write through -05:51:22,515 NOTICE kernel:sd 2:0:0:0: [sda] Cache data unavailable -05:51:22,515 ERR kernel:sd 2:0:0:0: [sda] Assuming drive cache: write through -05:51:22,516 INFO kernel: sda: -05:51:22,516 NOTICE kernel:sd 2:0:1:0: [sdb] 33554432 512-byte logical blocks: (17.1 GB/16.0 GiB) -05:51:22,516 NOTICE kernel:sd 2:0:1:0: [sdb] Write Protect is off -05:51:22,516 DEBUG kernel:sd 2:0:1:0: [sdb] Mode Sense: 61 00 00 00 -05:51:22,516 NOTICE kernel:sd 2:0:1:0: [sdb] Cache data unavailable -05:51:22,516 ERR kernel:sd 2:0:1:0: [sdb] Assuming drive cache: write through -05:51:22,516 NOTICE kernel:sd 2:0:1:0: [sdb] Cache data unavailable -05:51:22,516 ERR kernel:sd 2:0:1:0: [sdb] Assuming drive cache: write through -05:51:22,522 INFO kernel: sdb: -05:51:22,522 NOTICE kernel:sd 2:0:1:0: [sdb] Cache data unavailable -05:51:22,522 ERR kernel:sd 2:0:1:0: [sdb] Assuming drive cache: write through -05:51:22,522 NOTICE kernel:sd 2:0:1:0: [sdb] Attached SCSI disk -05:51:22,577 WARNING kernel: sda1 sda2 sda3 -05:51:22,598 NOTICE kernel:sd 2:0:0:0: [sda] Cache data unavailable -05:51:22,598 ERR kernel:sd 2:0:0:0: [sda] Assuming drive cache: write through -05:51:22,598 NOTICE kernel:sd 2:0:0:0: [sda] Attached SCSI disk -05:51:22,606 NOTICE kernel:sr 1:0:0:0: Attached scsi generic sg0 type 5 -05:51:22,606 NOTICE kernel:sd 2:0:0:0: Attached scsi generic sg1 type 0 -05:51:22,606 NOTICE kernel:sd 2:0:1:0: Attached scsi generic sg2 type 0 -05:51:28,012 ERR udevd-work: device node '/dev/rtc' already exists, link to '/dev/rtc0' will not overwrite it -05:51:46,181 INFO NetworkManager: NetworkManager (version 0.8.1-66.el6) is starting... -05:51:46,181 INFO NetworkManager: Read config file /etc/NetworkManager/NetworkManager.conf -05:51:46,183 INFO NetworkManager: trying to start the modem manager... -05:51:46,186 INFO NetworkManager: monitoring kernel firmware directory '/lib/firmware'. -05:51:46,186 INFO NetworkManager: Bonding/Bridging/VLAN support enabled -05:51:46,188 NOTICE NetworkManager: ifcfg-rh: Acquired D-Bus service com.redhat.ifcfgrh1 -05:51:46,188 INFO NetworkManager: Loaded plugin ifcfg-rh: (c) 2007 - 2008 Red Hat, Inc. To report bugs please use the NetworkManager mailing list. -05:51:46,188 INFO NetworkManager: Loaded plugin keyfile: (c) 2007 - 2008 Red Hat, Inc. To report bugs please use the NetworkManager mailing list. -05:51:46,188 NOTICE NetworkManager: ifcfg-rh: parsing /etc/sysconfig/network-scripts/ifcfg-eth3 ... -05:51:46,190 NOTICE NetworkManager: ifcfg-rh: read connection 'System eth3' -05:51:46,190 NOTICE NetworkManager: ifcfg-rh: parsing /etc/sysconfig/network-scripts/ifcfg-eth2 ... -05:51:46,190 NOTICE NetworkManager: ifcfg-rh: read connection 'System eth2' -05:51:46,190 NOTICE NetworkManager: ifcfg-rh: parsing /etc/sysconfig/network-scripts/ifcfg-eth1 ... -05:51:46,191 NOTICE NetworkManager: ifcfg-rh: read connection 'System eth1' -05:51:46,191 NOTICE NetworkManager: ifcfg-rh: parsing /etc/sysconfig/network-scripts/ifcfg-eth0 ... -05:51:46,192 NOTICE NetworkManager: ifcfg-rh: read connection 'System eth0' -05:51:46,192 WARNING NetworkManager: Can not read directory '/etc/NetworkManager/system-connections': Error opening directory '/etc/NetworkManager/system-connections': No such file or directory -05:51:46,194 INFO NetworkManager: WiFi enabled by radio killswitch; enabled by state file -05:51:46,194 INFO NetworkManager: WWAN enabled by radio killswitch; enabled by state file -05:51:46,194 INFO NetworkManager: WiMAX enabled by radio killswitch; enabled by state file -05:51:46,194 INFO NetworkManager: Networking is enabled by state file -05:51:46,212 INFO kernel:802.1Q VLAN Support v1.8 Ben Greear -05:51:46,212 INFO kernel:All bugs added by David S. Miller -05:51:46,217 INFO kernel:e1000: eth0 NIC Link is Up 1000 Mbps Full Duplex, Flow Control: None -05:51:46,218 INFO NetworkManager: (eth0): carrier is OFF -05:51:46,218 INFO NetworkManager: (eth0): new Ethernet device (driver: 'e1000' ifindex: 2) -05:51:46,218 INFO NetworkManager: (eth0): exported as /org/freedesktop/NetworkManager/Devices/0 -05:51:46,218 INFO NetworkManager: (eth0): now managed -05:51:46,218 INFO NetworkManager: (eth0): device state change: 1 -> 2 (reason 2) -05:51:46,218 INFO NetworkManager: (eth0): bringing up device. -05:51:46,221 INFO kernel:8021q: adding VLAN 0 to HW filter on device eth0 -05:51:46,222 INFO NetworkManager: (eth0): carrier now ON (device state 2) -05:51:46,222 INFO NetworkManager: (eth0): preparing device. -05:51:46,222 INFO NetworkManager: (eth0): deactivating device (reason: 2). -05:51:46,223 INFO NetworkManager: (eth1): carrier is OFF -05:51:46,224 INFO NetworkManager: (eth1): new Ethernet device (driver: 'e1000' ifindex: 3) -05:51:46,224 INFO NetworkManager: (eth1): exported as /org/freedesktop/NetworkManager/Devices/1 -05:51:46,224 INFO NetworkManager: (eth1): now managed -05:51:46,224 INFO NetworkManager: (eth1): device state change: 1 -> 2 (reason 2) -05:51:46,224 INFO NetworkManager: (eth1): bringing up device. -05:51:46,229 INFO kernel:e1000: eth1 NIC Link is Up 1000 Mbps Full Duplex, Flow Control: None -05:51:46,233 INFO kernel:8021q: adding VLAN 0 to HW filter on device eth1 -05:51:46,233 INFO NetworkManager: (eth1): carrier now ON (device state 2) -05:51:46,234 INFO NetworkManager: (eth1): preparing device. -05:51:46,234 INFO NetworkManager: (eth1): deactivating device (reason: 2). -05:51:46,235 INFO NetworkManager: (eth2): carrier is OFF -05:51:46,235 INFO NetworkManager: (eth2): new Ethernet device (driver: 'e1000' ifindex: 4) -05:51:46,235 INFO NetworkManager: (eth2): exported as /org/freedesktop/NetworkManager/Devices/2 -05:51:46,235 INFO NetworkManager: (eth2): now managed -05:51:46,235 INFO NetworkManager: (eth2): device state change: 1 -> 2 (reason 2) -05:51:46,235 INFO NetworkManager: (eth2): bringing up device. -05:51:46,240 INFO kernel:e1000: eth2 NIC Link is Up 1000 Mbps Full Duplex, Flow Control: None -05:51:46,244 INFO kernel:8021q: adding VLAN 0 to HW filter on device eth2 -05:51:46,245 INFO NetworkManager: (eth2): carrier now ON (device state 2) -05:51:46,245 INFO NetworkManager: (eth2): preparing device. -05:51:46,245 INFO NetworkManager: (eth2): deactivating device (reason: 2). -05:51:46,246 INFO NetworkManager: (eth3): carrier is OFF -05:51:46,247 INFO NetworkManager: (eth3): new Ethernet device (driver: 'e1000' ifindex: 5) -05:51:46,247 INFO NetworkManager: (eth3): exported as /org/freedesktop/NetworkManager/Devices/3 -05:51:46,247 INFO NetworkManager: (eth3): now managed -05:51:46,247 INFO NetworkManager: (eth3): device state change: 1 -> 2 (reason 2) -05:51:46,247 INFO NetworkManager: (eth3): bringing up device. -05:51:46,251 INFO kernel:e1000: eth3 NIC Link is Up 1000 Mbps Full Duplex, Flow Control: None -05:51:46,255 INFO kernel:8021q: adding VLAN 0 to HW filter on device eth3 -05:51:46,256 INFO NetworkManager: (eth3): carrier now ON (device state 2) -05:51:46,256 INFO NetworkManager: (eth3): preparing device. -05:51:46,256 INFO NetworkManager: (eth3): deactivating device (reason: 2). -05:51:46,258 INFO NetworkManager: (eth0): carrier now OFF (device state 2) -05:51:46,258 INFO NetworkManager: (eth0): carrier now ON (device state 2) -05:51:46,258 WARNING NetworkManager: (nm-device.c:4447):nm_device_queue_state: runtime check failed: (priv->queued_state.id == 0) -05:51:46,258 INFO NetworkManager: (eth1): carrier now OFF (device state 2) -05:51:46,259 INFO NetworkManager: (eth1): carrier now ON (device state 2) -05:51:46,259 WARNING NetworkManager: (nm-device.c:4447):nm_device_queue_state: runtime check failed: (priv->queued_state.id == 0) -05:51:46,259 INFO NetworkManager: (eth2): carrier now OFF (device state 2) -05:51:46,259 INFO NetworkManager: (eth2): carrier now ON (device state 2) -05:51:46,259 WARNING NetworkManager: (nm-device.c:4447):nm_device_queue_state: runtime check failed: (priv->queued_state.id == 0) -05:51:46,259 INFO NetworkManager: (eth3): carrier now OFF (device state 2) -05:51:46,259 INFO NetworkManager: (eth3): carrier now ON (device state 2) -05:51:46,259 WARNING NetworkManager: (nm-device.c:4447):nm_device_queue_state: runtime check failed: (priv->queued_state.id == 0) -05:51:46,260 INFO NetworkManager: Trying to start the supplicant... -05:51:46,261 INFO NetworkManager: (eth0): device state change: 2 -> 3 (reason 40) -05:51:46,261 INFO NetworkManager: (eth1): device state change: 2 -> 3 (reason 40) -05:51:46,261 INFO NetworkManager: (eth2): device state change: 2 -> 3 (reason 40) -05:51:46,262 INFO NetworkManager: (eth3): device state change: 2 -> 3 (reason 40) -05:51:46,268 INFO NetworkManager: wpa_supplicant started -05:51:47,181 WARNING NetworkManager: error requesting auth for org.freedesktop.NetworkManager.enable-disable-network: (26) Remote Exception invoking org.freedesktop.PolicyKit1.Authority.CheckAuthorization() on /org/freedesktop/PolicyKit1/Authority at name org.freedesktop.PolicyKit1: org.freedesktop.DBus.Error.Spawn.ExecFailed: Cannot launch daemon, file not found or permissions invalid -05:51:47,182 WARNING NetworkManager: error requesting auth for org.freedesktop.NetworkManager.sleep-wake: (26) Remote Exception invoking org.freedesktop.PolicyKit1.Authority.CheckAuthorization() on /org/freedesktop/PolicyKit1/Authority at name org.freedesktop.PolicyKit1: org.freedesktop.DBus.Error.Spawn.ExecFailed: Cannot launch daemon, file not found or permissions invalid -05:51:47,182 WARNING NetworkManager: error requesting auth for org.freedesktop.NetworkManager.enable-disable-wifi: (26) Remote Exception invoking org.freedesktop.PolicyKit1.Authority.CheckAuthorization() on /org/freedesktop/PolicyKit1/Authority at name org.freedesktop.PolicyKit1: org.freedesktop.DBus.Error.Spawn.ExecFailed: Cannot launch daemon, file not found or permissions invalid -05:51:47,182 WARNING NetworkManager: error requesting auth for org.freedesktop.NetworkManager.enable-disable-wwan: (26) Remote Exception invoking org.freedesktop.PolicyKit1.Authority.CheckAuthorization() on /org/freedesktop/PolicyKit1/Authority at name org.freedesktop.PolicyKit1: org.freedesktop.DBus.Error.Spawn.ExecFailed: Cannot launch daemon, file not found or permissions invalid -05:51:47,182 WARNING NetworkManager: error requesting auth for org.freedesktop.NetworkManager.use-user-connections: (26) Remote Exception invoking org.freedesktop.PolicyKit1.Authority.CheckAuthorization() on /org/freedesktop/PolicyKit1/Authority at name org.freedesktop.PolicyKit1: org.freedesktop.DBus.Error.Spawn.ExecFailed: Cannot launch daemon, file not found or permissions invalid -05:51:47,182 WARNING NetworkManager: error requesting auth for org.freedesktop.NetworkManager.network-control: (26) Remote Exception invoking org.freedesktop.PolicyKit1.Authority.CheckAuthorization() on /org/freedesktop/PolicyKit1/Authority at name org.freedesktop.PolicyKit1: org.freedesktop.DBus.Error.Spawn.ExecFailed: Cannot launch daemon, file not found or permissions invalid -05:51:47,182 WARNING NetworkManager: error requesting auth for org.freedesktop.network-manager-settings.system.wifi.share.open: (26) Remote Exception invoking org.freedesktop.PolicyKit1.Authority.CheckAuthorization() on /org/freedesktop/PolicyKit1/Authority at name org.freedesktop.PolicyKit1: org.freedesktop.DBus.Error.Spawn.ExecFailed: Cannot launch daemon, file not found or permissions invalid -05:51:47,183 WARNING NetworkManager: error requesting auth for org.freedesktop.network-manager-settings.system.wifi.share.protected: (26) Remote Exception invoking org.freedesktop.PolicyKit1.Authority.CheckAuthorization() on /org/freedesktop/PolicyKit1/Authority at name org.freedesktop.PolicyKit1: org.freedesktop.DBus.Error.Spawn.ExecFailed: Cannot launch daemon, file not found or permissions invalid -05:51:47,191 WARNING NetworkManager: error requesting auth for org.freedesktop.NetworkManager.enable-disable-network: (26) Remote Exception invoking org.freedesktop.PolicyKit1.Authority.CheckAuthorization() on /org/freedesktop/PolicyKit1/Authority at name org.freedesktop.PolicyKit1: org.freedesktop.DBus.Error.Spawn.ExecFailed: Cannot launch daemon, file not found or permissions invalid -05:51:47,191 WARNING NetworkManager: error requesting auth for org.freedesktop.NetworkManager.sleep-wake: (26) Remote Exception invoking org.freedesktop.PolicyKit1.Authority.CheckAuthorization() on /org/freedesktop/PolicyKit1/Authority at name org.freedesktop.PolicyKit1: org.freedesktop.DBus.Error.Spawn.ExecFailed: Cannot launch daemon, file not found or permissions invalid -05:51:47,191 WARNING NetworkManager: error requesting auth for org.freedesktop.NetworkManager.enable-disable-wifi: (26) Remote Exception invoking org.freedesktop.PolicyKit1.Authority.CheckAuthorization() on /org/freedesktop/PolicyKit1/Authority at name org.freedesktop.PolicyKit1: org.freedesktop.DBus.Error.Spawn.ExecFailed: Cannot launch daemon, file not found or permissions invalid -05:51:47,191 WARNING NetworkManager: error requesting auth for org.freedesktop.NetworkManager.enable-disable-wwan: (26) Remote Exception invoking org.freedesktop.PolicyKit1.Authority.CheckAuthorization() on /org/freedesktop/PolicyKit1/Authority at name org.freedesktop.PolicyKit1: org.freedesktop.DBus.Error.Spawn.ExecFailed: Cannot launch daemon, file not found or permissions invalid -05:51:47,191 WARNING NetworkManager: error requesting auth for org.freedesktop.NetworkManager.use-user-connections: (26) Remote Exception invoking org.freedesktop.PolicyKit1.Authority.CheckAuthorization() on /org/freedesktop/PolicyKit1/Authority at name org.freedesktop.PolicyKit1: org.freedesktop.DBus.Error.Spawn.ExecFailed: Cannot launch daemon, file not found or permissions invalid -05:51:47,191 WARNING NetworkManager: error requesting auth for org.freedesktop.NetworkManager.network-control: (26) Remote Exception invoking org.freedesktop.PolicyKit1.Authority.CheckAuthorization() on /org/freedesktop/PolicyKit1/Authority at name org.freedesktop.PolicyKit1: org.freedesktop.DBus.Error.Spawn.ExecFailed: Cannot launch daemon, file not found or permissions invalid -05:51:47,192 WARNING NetworkManager: error requesting auth for org.freedesktop.network-manager-settings.system.wifi.share.open: (26) Remote Exception invoking org.freedesktop.PolicyKit1.Authority.CheckAuthorization() on /org/freedesktop/PolicyKit1/Authority at name org.freedesktop.PolicyKit1: org.freedesktop.DBus.Error.Spawn.ExecFailed: Cannot launch daemon, file not found or permissions invalid -05:51:47,192 WARNING NetworkManager: error requesting auth for org.freedesktop.network-manager-settings.system.wifi.share.protected: (26) Remote Exception invoking org.freedesktop.PolicyKit1.Authority.CheckAuthorization() on /org/freedesktop/PolicyKit1/Authority at name org.freedesktop.PolicyKit1: org.freedesktop.DBus.Error.Spawn.ExecFailed: Cannot launch daemon, file not found or permissions invalid -05:51:47,200 WARNING NetworkManager: error requesting auth for org.freedesktop.NetworkManager.enable-disable-network: (26) Remote Exception invoking org.freedesktop.PolicyKit1.Authority.CheckAuthorization() on /org/freedesktop/PolicyKit1/Authority at name org.freedesktop.PolicyKit1: org.freedesktop.DBus.Error.Spawn.ExecFailed: Cannot launch daemon, file not found or permissions invalid -05:51:47,200 WARNING NetworkManager: error requesting auth for org.freedesktop.NetworkManager.sleep-wake: (26) Remote Exception invoking org.freedesktop.PolicyKit1.Authority.CheckAuthorization() on /org/freedesktop/PolicyKit1/Authority at name org.freedesktop.PolicyKit1: org.freedesktop.DBus.Error.Spawn.ExecFailed: Cannot launch daemon, file not found or permissions invalid -05:51:47,200 WARNING NetworkManager: error requesting auth for org.freedesktop.NetworkManager.enable-disable-wifi: (26) Remote Exception invoking org.freedesktop.PolicyKit1.Authority.CheckAuthorization() on /org/freedesktop/PolicyKit1/Authority at name org.freedesktop.PolicyKit1: org.freedesktop.DBus.Error.Spawn.ExecFailed: Cannot launch daemon, file not found or permissions invalid -05:51:47,200 WARNING NetworkManager: error requesting auth for org.freedesktop.NetworkManager.enable-disable-wwan: (26) Remote Exception invoking org.freedesktop.PolicyKit1.Authority.CheckAuthorization() on /org/freedesktop/PolicyKit1/Authority at name org.freedesktop.PolicyKit1: org.freedesktop.DBus.Error.Spawn.ExecFailed: Cannot launch daemon, file not found or permissions invalid -05:51:47,200 WARNING NetworkManager: error requesting auth for org.freedesktop.NetworkManager.use-user-connections: (26) Remote Exception invoking org.freedesktop.PolicyKit1.Authority.CheckAuthorization() on /org/freedesktop/PolicyKit1/Authority at name org.freedesktop.PolicyKit1: org.freedesktop.DBus.Error.Spawn.ExecFailed: Cannot launch daemon, file not found or permissions invalid -05:51:47,201 WARNING NetworkManager: error requesting auth for org.freedesktop.NetworkManager.network-control: (26) Remote Exception invoking org.freedesktop.PolicyKit1.Authority.CheckAuthorization() on /org/freedesktop/PolicyKit1/Authority at name org.freedesktop.PolicyKit1: org.freedesktop.DBus.Error.Spawn.ExecFailed: Cannot launch daemon, file not found or permissions invalid -05:51:47,201 WARNING NetworkManager: error requesting auth for org.freedesktop.network-manager-settings.system.wifi.share.open: (26) Remote Exception invoking org.freedesktop.PolicyKit1.Authority.CheckAuthorization() on /org/freedesktop/PolicyKit1/Authority at name org.freedesktop.PolicyKit1: org.freedesktop.DBus.Error.Spawn.ExecFailed: Cannot launch daemon, file not found or permissions invalid -05:51:47,201 WARNING NetworkManager: error requesting auth for org.freedesktop.network-manager-settings.system.wifi.share.protected: (26) Remote Exception invoking org.freedesktop.PolicyKit1.Authority.CheckAuthorization() on /org/freedesktop/PolicyKit1/Authority at name org.freedesktop.PolicyKit1: org.freedesktop.DBus.Error.Spawn.ExecFailed: Cannot launch daemon, file not found or permissions invalid -05:51:47,212 WARNING NetworkManager: error requesting auth for org.freedesktop.NetworkManager.enable-disable-network: (26) Remote Exception invoking org.freedesktop.PolicyKit1.Authority.CheckAuthorization() on /org/freedesktop/PolicyKit1/Authority at name org.freedesktop.PolicyKit1: org.freedesktop.DBus.Error.Spawn.ExecFailed: Cannot launch daemon, file not found or permissions invalid -05:51:47,212 WARNING NetworkManager: error requesting auth for org.freedesktop.NetworkManager.sleep-wake: (26) Remote Exception invoking org.freedesktop.PolicyKit1.Authority.CheckAuthorization() on /org/freedesktop/PolicyKit1/Authority at name org.freedesktop.PolicyKit1: org.freedesktop.DBus.Error.Spawn.ExecFailed: Cannot launch daemon, file not found or permissions invalid -05:51:47,212 WARNING NetworkManager: error requesting auth for org.freedesktop.NetworkManager.enable-disable-wifi: (26) Remote Exception invoking org.freedesktop.PolicyKit1.Authority.CheckAuthorization() on /org/freedesktop/PolicyKit1/Authority at name org.freedesktop.PolicyKit1: org.freedesktop.DBus.Error.Spawn.ExecFailed: Cannot launch daemon, file not found or permissions invalid -05:51:47,212 WARNING NetworkManager: error requesting auth for org.freedesktop.NetworkManager.enable-disable-wwan: (26) Remote Exception invoking org.freedesktop.PolicyKit1.Authority.CheckAuthorization() on /org/freedesktop/PolicyKit1/Authority at name org.freedesktop.PolicyKit1: org.freedesktop.DBus.Error.Spawn.ExecFailed: Cannot launch daemon, file not found or permissions invalid -05:51:47,212 WARNING NetworkManager: error requesting auth for org.freedesktop.NetworkManager.use-user-connections: (26) Remote Exception invoking org.freedesktop.PolicyKit1.Authority.CheckAuthorization() on /org/freedesktop/PolicyKit1/Authority at name org.freedesktop.PolicyKit1: org.freedesktop.DBus.Error.Spawn.ExecFailed: Cannot launch daemon, file not found or permissions invalid -05:51:47,212 WARNING NetworkManager: error requesting auth for org.freedesktop.NetworkManager.network-control: (26) Remote Exception invoking org.freedesktop.PolicyKit1.Authority.CheckAuthorization() on /org/freedesktop/PolicyKit1/Authority at name org.freedesktop.PolicyKit1: org.freedesktop.DBus.Error.Spawn.ExecFailed: Cannot launch daemon, file not found or permissions invalid -05:51:47,213 WARNING NetworkManager: error requesting auth for org.freedesktop.network-manager-settings.system.wifi.share.open: (26) Remote Exception invoking org.freedesktop.PolicyKit1.Authority.CheckAuthorization() on /org/freedesktop/PolicyKit1/Authority at name org.freedesktop.PolicyKit1: org.freedesktop.DBus.Error.Spawn.ExecFailed: Cannot launch daemon, file not found or permissions invalid -05:51:47,213 WARNING NetworkManager: error requesting auth for org.freedesktop.network-manager-settings.system.wifi.share.protected: (26) Remote Exception invoking org.freedesktop.PolicyKit1.Authority.CheckAuthorization() on /org/freedesktop/PolicyKit1/Authority at name org.freedesktop.PolicyKit1: org.freedesktop.DBus.Error.Spawn.ExecFailed: Cannot launch daemon, file not found or permissions invalid -05:51:48,220 NOTICE NetworkManager: ifcfg-rh: updating /etc/sysconfig/network-scripts/ifcfg-eth0 -05:51:48,223 INFO NetworkManager: Auto-activating connection 'System eth0'. -05:51:48,224 INFO NetworkManager: Activation (eth0) starting connection 'System eth0' -05:51:48,224 INFO NetworkManager: (eth0): device state change: 3 -> 4 (reason 0) -05:51:48,224 INFO NetworkManager: Activation (eth0) Stage 1 of 5 (Device Prepare) scheduled... -05:51:48,224 INFO NetworkManager: Activation (eth0) Stage 1 of 5 (Device Prepare) started... -05:51:48,224 INFO NetworkManager: Activation (eth0) Stage 2 of 5 (Device Configure) scheduled... -05:51:48,225 INFO NetworkManager: Activation (eth0) Stage 1 of 5 (Device Prepare) complete. -05:51:48,225 INFO NetworkManager: Activation (eth0) Stage 2 of 5 (Device Configure) starting... -05:51:48,225 INFO NetworkManager: (eth0): device state change: 4 -> 5 (reason 0) -05:51:48,225 INFO NetworkManager: Activation (eth0) Stage 2 of 5 (Device Configure) successful. -05:51:48,225 INFO NetworkManager: Activation (eth0) Stage 3 of 5 (IP Configure Start) scheduled. -05:51:48,225 INFO NetworkManager: Activation (eth0) Stage 2 of 5 (Device Configure) complete. -05:51:48,225 INFO NetworkManager: Activation (eth0) Stage 3 of 5 (IP Configure Start) started... -05:51:48,225 INFO NetworkManager: (eth0): device state change: 5 -> 7 (reason 0) -05:51:48,225 INFO NetworkManager: Activation (eth0) Beginning DHCPv4 transaction -05:51:48,228 INFO dhclient: Internet Systems Consortium DHCP Client 4.1.1-P1 -05:51:48,228 INFO NetworkManager: dhclient started with pid 670 -05:51:48,228 INFO NetworkManager: Activation (eth0) DHCPv4 will time out in 45 seconds -05:51:48,228 INFO NetworkManager: Activation (eth0) Stage 3 of 5 (IP Configure Start) complete. -05:51:48,228 INFO dhclient: Copyright 2004-2010 Internet Systems Consortium. -05:51:48,228 INFO dhclient: All rights reserved. -05:51:48,228 INFO dhclient: For info, please visit https://www.isc.org/software/dhcp/ -05:51:48,229 INFO dhclient: -05:51:48,232 INFO NetworkManager: (eth0): DHCPv4 state changed nbi -> preinit -05:51:48,238 INFO dhclient: Listening on LPF/eth0/00:0c:29:21:89:af -05:51:48,238 INFO dhclient: Sending on LPF/eth0/00:0c:29:21:89:af -05:51:48,238 INFO dhclient: Sending on Socket/fallback -05:51:48,238 INFO dhclient: DHCPDISCOVER on eth0 to 255.255.255.255 port 67 interval 7 (xid=0x4cbfa09c) -05:51:48,266 INFO dhclient: DHCPOFFER from 10.145.88.211 -05:51:48,267 INFO dhclient: DHCPREQUEST on eth0 to 255.255.255.255 port 67 (xid=0x4cbfa09c) -05:51:50,624 INFO dhclient: DHCPACK from 10.145.88.211 (xid=0x4cbfa09c) -05:51:50,627 INFO NetworkManager: (eth0): DHCPv4 state changed preinit -> bound -05:51:50,627 INFO NetworkManager: Activation (eth0) Stage 4 of 5 (IP4 Configure Get) scheduled... -05:51:50,627 INFO NetworkManager: Activation (eth0) Stage 4 of 5 (IP4 Configure Get) started... -05:51:50,627 INFO NetworkManager: address 10.145.88.106 -05:51:50,627 INFO NetworkManager: prefix 23 (255.255.254.0) -05:51:50,627 INFO NetworkManager: gateway 10.145.88.1 -05:51:50,627 INFO NetworkManager: hostname 'server1' -05:51:50,627 INFO NetworkManager: nameserver '10.145.88.211' -05:51:50,628 INFO NetworkManager: Activation (eth0) Stage 5 of 5 (IP Configure Commit) scheduled... -05:51:50,628 INFO NetworkManager: Activation (eth0) Stage 4 of 5 (IP4 Configure Get) complete. -05:51:50,628 INFO NetworkManager: Activation (eth0) Stage 5 of 5 (IP Configure Commit) started... -05:51:50,628 INFO dhclient: bound to 10.145.88.106 -- renewal in 10408 seconds. -05:51:51,629 INFO NetworkManager: (eth0): device state change: 7 -> 8 (reason 0) -05:51:51,629 INFO NetworkManager: Policy set 'System eth0' (eth0) as default for IPv4 routing and DNS. -05:51:51,630 INFO NetworkManager: Setting system hostname to 'server1' (from DHCPv4) -05:51:51,630 INFO NetworkManager: Activation (eth0) successful, device activated. -05:51:51,631 INFO NetworkManager: Activation (eth0) Stage 5 of 5 (IP Configure Commit) complete. -05:52:07,660 WARNING NetworkManager: error requesting auth for org.freedesktop.NetworkManager.enable-disable-network: (26) Remote Exception invoking org.freedesktop.PolicyKit1.Authority.CheckAuthorization() on /org/freedesktop/PolicyKit1/Authority at name org.freedesktop.PolicyKit1: org.freedesktop.DBus.Error.Spawn.ExecFailed: Cannot launch daemon, file not found or permissions invalid -05:52:07,660 WARNING NetworkManager: error requesting auth for org.freedesktop.NetworkManager.sleep-wake: (26) Remote Exception invoking org.freedesktop.PolicyKit1.Authority.CheckAuthorization() on /org/freedesktop/PolicyKit1/Authority at name org.freedesktop.PolicyKit1: org.freedesktop.DBus.Error.Spawn.ExecFailed: Cannot launch daemon, file not found or permissions invalid -05:52:07,660 WARNING NetworkManager: error requesting auth for org.freedesktop.NetworkManager.enable-disable-wifi: (26) Remote Exception invoking org.freedesktop.PolicyKit1.Authority.CheckAuthorization() on /org/freedesktop/PolicyKit1/Authority at name org.freedesktop.PolicyKit1: org.freedesktop.DBus.Error.Spawn.ExecFailed: Cannot launch daemon, file not found or permissions invalid -05:52:07,660 WARNING NetworkManager: error requesting auth for org.freedesktop.NetworkManager.enable-disable-wwan: (26) Remote Exception invoking org.freedesktop.PolicyKit1.Authority.CheckAuthorization() on /org/freedesktop/PolicyKit1/Authority at name org.freedesktop.PolicyKit1: org.freedesktop.DBus.Error.Spawn.ExecFailed: Cannot launch daemon, file not found or permissions invalid -05:52:07,660 WARNING NetworkManager: error requesting auth for org.freedesktop.NetworkManager.use-user-connections: (26) Remote Exception invoking org.freedesktop.PolicyKit1.Authority.CheckAuthorization() on /org/freedesktop/PolicyKit1/Authority at name org.freedesktop.PolicyKit1: org.freedesktop.DBus.Error.Spawn.ExecFailed: Cannot launch daemon, file not found or permissions invalid -05:52:07,660 WARNING NetworkManager: error requesting auth for org.freedesktop.NetworkManager.network-control: (26) Remote Exception invoking org.freedesktop.PolicyKit1.Authority.CheckAuthorization() on /org/freedesktop/PolicyKit1/Authority at name org.freedesktop.PolicyKit1: org.freedesktop.DBus.Error.Spawn.ExecFailed: Cannot launch daemon, file not found or permissions invalid -05:52:07,660 WARNING NetworkManager: error requesting auth for org.freedesktop.network-manager-settings.system.wifi.share.open: (26) Remote Exception invoking org.freedesktop.PolicyKit1.Authority.CheckAuthorization() on /org/freedesktop/PolicyKit1/Authority at name org.freedesktop.PolicyKit1: org.freedesktop.DBus.Error.Spawn.ExecFailed: Cannot launch daemon, file not found or permissions invalid -05:52:07,660 WARNING NetworkManager: error requesting auth for org.freedesktop.network-manager-settings.system.wifi.share.protected: (26) Remote Exception invoking org.freedesktop.PolicyKit1.Authority.CheckAuthorization() on /org/freedesktop/PolicyKit1/Authority at name org.freedesktop.PolicyKit1: org.freedesktop.DBus.Error.Spawn.ExecFailed: Cannot launch daemon, file not found or permissions invalid -05:52:47,362 NOTICE dbus-daemon: [system] Reloaded configuration -05:52:47,364 NOTICE dbus-daemon: [system] Reloaded configuration -05:52:47,512 DEBUG kernel:SELinux: 2048 avtab hash slots, 277800 rules. -05:52:47,588 DEBUG kernel:SELinux: 2048 avtab hash slots, 277800 rules. -05:52:48,083 DEBUG kernel:SELinux: 9 users, 12 roles, 3917 types, 217 bools, 1 sens, 1024 cats -05:52:48,083 DEBUG kernel:SELinux: 81 classes, 277800 rules -05:52:48,088 DEBUG kernel:SELinux: Completing initialization. -05:52:48,088 DEBUG kernel:SELinux: Setting up existing superblocks. -05:52:48,088 DEBUG kernel:SELinux: initialized (dev loop0, type squashfs), not configured for labeling -05:52:48,088 DEBUG kernel:SELinux: initialized (dev tmpfs, type tmpfs), uses transition SIDs -05:52:48,088 DEBUG kernel:SELinux: initialized (dev tmpfs, type tmpfs), uses transition SIDs -05:52:48,089 DEBUG kernel:SELinux: initialized (dev selinuxfs, type selinuxfs), uses genfs_contexts -05:52:48,089 DEBUG kernel:SELinux: initialized (dev mqueue, type mqueue), uses transition SIDs -05:52:48,089 DEBUG kernel:SELinux: initialized (dev hugetlbfs, type hugetlbfs), uses transition SIDs -05:52:48,089 DEBUG kernel:SELinux: initialized (dev devpts, type devpts), uses transition SIDs -05:52:48,089 DEBUG kernel:SELinux: initialized (dev inotifyfs, type inotifyfs), uses genfs_contexts -05:52:48,089 DEBUG kernel:SELinux: initialized (dev anon_inodefs, type anon_inodefs), uses genfs_contexts -05:52:48,089 DEBUG kernel:SELinux: initialized (dev pipefs, type pipefs), uses task SIDs -05:52:48,089 DEBUG kernel:SELinux: initialized (dev debugfs, type debugfs), uses genfs_contexts -05:52:48,090 DEBUG kernel:SELinux: initialized (dev sockfs, type sockfs), uses task SIDs -05:52:48,090 DEBUG kernel:SELinux: initialized (dev devtmpfs, type devtmpfs), uses transition SIDs -05:52:48,090 DEBUG kernel:SELinux: initialized (dev tmpfs, type tmpfs), uses transition SIDs -05:52:48,090 DEBUG kernel:SELinux: initialized (dev proc, type proc), uses genfs_contexts -05:52:48,090 DEBUG kernel:SELinux: initialized (dev bdev, type bdev), uses genfs_contexts -05:52:48,090 DEBUG kernel:SELinux: initialized (dev rootfs, type rootfs), uses genfs_contexts -05:52:48,090 DEBUG kernel:SELinux: initialized (dev sysfs, type sysfs), uses genfs_contexts -05:52:48,116 NOTICE kernel:type=1403 audit(1021096368.114:2): policy loaded auid=4294967295 ses=4294967295 -05:52:48,165 INFO kernel:md: raid0 personality registered for level 0 -05:52:48,172 INFO kernel:md: raid1 personality registered for level 1 -05:52:48,176 INFO kernel:async_tx: api initialized (async) -05:52:48,188 INFO kernel:xor: automatically using best checksumming function: generic_sse -05:52:48,191 INFO kernel: generic_sse: 9112.000 MB/sec -05:52:48,191 INFO kernel:xor: using function: generic_sse (9112.000 MB/sec) -05:52:48,212 WARNING kernel:raid6: sse2x1 5777 MB/s -05:52:48,229 WARNING kernel:raid6: sse2x2 7031 MB/s -05:52:48,247 WARNING kernel:raid6: sse2x4 7550 MB/s -05:52:48,247 WARNING kernel:raid6: using algorithm sse2x4 (7550 MB/s) -05:52:48,247 WARNING kernel:raid6: using ssse3x2 recovery algorithm -05:52:48,261 INFO kernel:md: raid6 personality registered for level 6 -05:52:48,261 INFO kernel:md: raid5 personality registered for level 5 -05:52:48,261 INFO kernel:md: raid4 personality registered for level 4 -05:52:48,273 INFO kernel:md: raid10 personality registered for level 10 -05:52:48,277 INFO kernel:md: linear personality registered for level -1 -05:52:48,290 INFO kernel:device-mapper: uevent: version 1.0.3 -05:52:48,291 INFO kernel:device-mapper: ioctl: 4.24.6-ioctl (2013-01-15) initialised: dm-devel@redhat.com -05:52:48,324 INFO kernel:device-mapper: multipath: version 1.5.0 loaded -05:52:48,328 INFO kernel:device-mapper: multipath round-robin: version 1.0.0 loaded -05:53:05,608 WARNING kernel:hpet1: lost 5 rtc interrupts -05:53:05,608 WARNING kernel:hpet1: lost 1 rtc interrupts -05:53:21,197 NOTICE kernel:sd 2:0:0:0: [sda] Cache data unavailable -05:53:21,197 ERR kernel:sd 2:0:0:0: [sda] Assuming drive cache: write through -05:53:21,238 INFO kernel: sda: sda1 sda2 -05:53:25,106 NOTICE kernel:sd 2:0:0:0: [sda] Cache data unavailable -05:53:25,106 ERR kernel:sd 2:0:0:0: [sda] Assuming drive cache: write through -05:53:25,117 INFO kernel: sda: sda1 -05:53:31,920 NOTICE kernel:sd 2:0:0:0: [sda] Cache data unavailable -05:53:31,920 ERR kernel:sd 2:0:0:0: [sda] Assuming drive cache: write through -05:53:31,962 INFO kernel: sda: -05:53:33,120 NOTICE kernel:sd 2:0:0:0: [sda] Cache data unavailable -05:53:33,120 ERR kernel:sd 2:0:0:0: [sda] Assuming drive cache: write through -05:53:33,120 INFO kernel: sda: sda1 -05:53:50,037 NOTICE kernel:sd 2:0:0:0: [sda] Cache data unavailable -05:53:50,037 ERR kernel:sd 2:0:0:0: [sda] Assuming drive cache: write through -05:53:50,037 INFO kernel: sda: sda1 sda2 -05:53:55,178 NOTICE kernel:sd 2:0:0:0: [sda] Cache data unavailable -05:53:55,178 ERR kernel:sd 2:0:0:0: [sda] Assuming drive cache: write through -05:53:55,211 INFO kernel: sda: sda1 sda2 sda3 -05:54:41,918 INFO kernel:Adding 3354616k swap on /dev/sda2. Priority:-1 extents:1 across:3354616k -05:54:42,441 INFO kernel:kjournald starting. Commit interval 5 seconds -05:54:42,489 INFO kernel:EXT3-fs (dm-0): using internal journal -05:54:42,489 INFO kernel:EXT3-fs (dm-0): mounted filesystem with ordered data mode -05:54:42,489 DEBUG kernel:SELinux: initialized (dev dm-0, type ext3), uses xattr -05:54:42,913 INFO kernel:kjournald starting. Commit interval 5 seconds -05:54:42,977 INFO kernel:EXT3-fs (sda1): using internal journal -05:54:42,977 INFO kernel:EXT3-fs (sda1): mounted filesystem with ordered data mode -05:54:42,977 DEBUG kernel:SELinux: initialized (dev sda1, type ext3), uses xattr -05:54:43,167 DEBUG kernel:SELinux: initialized (dev tmpfs, type tmpfs), uses transition SIDs -05:54:43,255 INFO kernel:kjournald starting. Commit interval 5 seconds -05:54:43,268 INFO kernel:EXT3-fs (dm-1): using internal journal -05:54:43,268 INFO kernel:EXT3-fs (dm-1): mounted filesystem with ordered data mode -05:54:43,268 DEBUG kernel:SELinux: initialized (dev dm-1, type ext3), uses xattr -05:54:43,657 INFO kernel:kjournald starting. Commit interval 5 seconds -05:54:43,719 INFO kernel:EXT3-fs (dm-2): using internal journal -05:54:43,719 INFO kernel:EXT3-fs (dm-2): mounted filesystem with ordered data mode -05:54:43,719 DEBUG kernel:SELinux: initialized (dev dm-2, type ext3), uses xattr -05:54:43,913 INFO kernel:kjournald starting. Commit interval 5 seconds -05:54:43,949 INFO kernel:EXT3-fs (dm-3): using internal journal -05:54:43,949 INFO kernel:EXT3-fs (dm-3): mounted filesystem with ordered data mode -05:54:43,949 DEBUG kernel:SELinux: initialized (dev dm-3, type ext3), uses xattr -05:55:08,095 DEBUG kernel:SELinux: initialized (dev usbfs, type usbfs), uses genfs_contexts -05:55:08,106 NOTICE NetworkManager: ifcfg-rh: updating /etc/sysconfig/network-scripts/ifcfg-eth3 -05:55:08,107 NOTICE NetworkManager: ifcfg-rh: updating /etc/sysconfig/network-scripts/ifcfg-eth2 -05:55:08,109 NOTICE NetworkManager: ifcfg-rh: updating /etc/sysconfig/network-scripts/ifcfg-eth1 -05:55:09,125 NOTICE NetworkManager: ifcfg-rh: updating /etc/sysconfig/network-scripts/ifcfg-eth3 -05:55:09,126 NOTICE NetworkManager: ifcfg-rh: updating /etc/sysconfig/network-scripts/ifcfg-eth2 -05:55:09,127 NOTICE NetworkManager: ifcfg-rh: updating /etc/sysconfig/network-scripts/ifcfg-eth1 -05:55:09,128 NOTICE NetworkManager: ifcfg-rh: updating /etc/sysconfig/network-scripts/ifcfg-eth0 -05:59:16,883 ERR kernel:INFO: task flush-253:0:1525 blocked for more than 120 seconds. -05:59:16,883 ERR kernel: Not tainted 2.6.32-431.el6.x86_64 #1 -05:59:16,883 ERR kernel:"echo 0 > /proc/sys/kernel/hung_task_timeout_secs" disables this message. -05:59:16,883 INFO kernel:flush-253:0 D 0000000000000000 0 1525 2 0x00000080 -05:59:16,883 WARNING kernel: ffff8800592df6e0 0000000000000046 0000000000000000 ffff880079226080 -05:59:16,883 WARNING kernel: 0000000000000001 ffff880064ed8e40 ffff880079226080 ffff880079269dd0 -05:59:16,883 WARNING kernel: ffff880079226638 ffff8800592dffd8 000000000000fbc8 ffff880079226638 -05:59:16,883 WARNING kernel:Call Trace: -05:59:16,883 WARNING kernel: [] io_schedule+0x73/0xc0 -05:59:16,883 WARNING kernel: [] get_request_wait+0x108/0x1d0 -05:59:16,883 WARNING kernel: [] ? autoremove_wake_function+0x0/0x40 -05:59:16,883 WARNING kernel: [] ? elv_merge+0x17e/0x1c0 -05:59:16,883 WARNING kernel: [] blk_queue_bio+0x99/0x620 -05:59:16,883 WARNING kernel: [] generic_make_request+0x240/0x5a0 -05:59:16,883 WARNING kernel: [] ? mempool_alloc_slab+0x15/0x20 -05:59:16,883 WARNING kernel: [] submit_bio+0x70/0x120 -05:59:16,883 WARNING kernel: [] submit_bh+0x11d/0x1f0 -05:59:16,883 WARNING kernel: [] __block_write_full_page+0x1c8/0x330 -05:59:16,883 WARNING kernel: [] ? end_buffer_async_write+0x0/0x190 -05:59:16,883 WARNING kernel: [] ? blkdev_get_block+0x0/0x20 -05:59:16,883 WARNING kernel: [] ? blkdev_get_block+0x0/0x20 -05:59:16,883 WARNING kernel: [] block_write_full_page_endio+0xe0/0x120 -05:59:16,883 WARNING kernel: [] ? find_get_pages_tag+0x40/0x130 -05:59:16,883 WARNING kernel: [] block_write_full_page+0x15/0x20 -05:59:16,883 WARNING kernel: [] blkdev_writepage+0x18/0x20 -05:59:16,883 WARNING kernel: [] __writepage+0x17/0x40 -05:59:16,883 WARNING kernel: [] write_cache_pages+0x1fd/0x4c0 -05:59:16,883 WARNING kernel: [] ? __writepage+0x0/0x40 -05:59:16,883 WARNING kernel: [] generic_writepages+0x24/0x30 -05:59:16,883 WARNING kernel: [] do_writepages+0x21/0x40 -05:59:16,883 WARNING kernel: [] writeback_single_inode+0xdd/0x290 -05:59:16,883 WARNING kernel: [] writeback_sb_inodes+0xbd/0x170 -05:59:16,883 WARNING kernel: [] writeback_inodes_wb+0xab/0x1b0 -05:59:16,883 WARNING kernel: [] wb_writeback+0x2f3/0x410 -05:59:16,883 WARNING kernel: [] ? thread_return+0x4e/0x76e -05:59:16,883 WARNING kernel: [] ? del_timer_sync+0x22/0x30 -05:59:16,883 WARNING kernel: [] wb_do_writeback+0x1a5/0x240 -05:59:16,883 WARNING kernel: [] bdi_writeback_task+0x63/0x1b0 -05:59:16,883 WARNING kernel: [] ? bit_waitqueue+0x17/0xd0 -05:59:16,883 WARNING kernel: [] ? bdi_start_fn+0x0/0x100 -05:59:16,883 WARNING kernel: [] bdi_start_fn+0x86/0x100 -05:59:16,883 WARNING kernel: [] ? bdi_start_fn+0x0/0x100 -05:59:16,883 WARNING kernel: [] kthread+0x96/0xa0 -05:59:16,883 WARNING kernel: [] child_rip+0xa/0x20 -05:59:16,883 WARNING kernel: [] ? kthread+0x0/0xa0 -05:59:16,883 WARNING kernel: [] ? child_rip+0x0/0x20 -05:59:16,883 ERR kernel:INFO: task flush-253:3:1622 blocked for more than 120 seconds. -05:59:16,883 ERR kernel: Not tainted 2.6.32-431.el6.x86_64 #1 -05:59:16,883 ERR kernel:"echo 0 > /proc/sys/kernel/hung_task_timeout_secs" disables this message. -05:59:16,883 INFO kernel:flush-253:3 D 0000000000000001 0 1622 2 0x00000080 -05:59:16,883 WARNING kernel: ffff88005a5636e0 0000000000000046 0000000000000000 ffff8800790e6ae0 -05:59:16,883 WARNING kernel: 0000000000000001 ffff8800615bc080 ffff8800790e6ae0 ffff880079269dd0 -05:59:16,883 WARNING kernel: ffff8800790e7098 ffff88005a563fd8 000000000000fbc8 ffff8800790e7098 -05:59:16,883 WARNING kernel:Call Trace: -05:59:16,883 WARNING kernel: [] io_schedule+0x73/0xc0 -05:59:16,883 WARNING kernel: [] get_request_wait+0x108/0x1d0 -05:59:16,883 WARNING kernel: [] ? autoremove_wake_function+0x0/0x40 -05:59:16,883 WARNING kernel: [] ? elv_merge+0x17e/0x1c0 -05:59:16,883 WARNING kernel: [] blk_queue_bio+0x99/0x620 -05:59:16,883 WARNING kernel: [] ? read_tsc+0x9/0x20 -05:59:16,883 WARNING kernel: [] generic_make_request+0x240/0x5a0 -05:59:16,883 WARNING kernel: [] ? mempool_alloc_slab+0x15/0x20 -05:59:16,883 WARNING kernel: [] ? __dec_zone_page_state+0x2e/0x30 -05:59:16,883 WARNING kernel: [] submit_bio+0x70/0x120 -05:59:16,883 WARNING kernel: [] submit_bh+0x11d/0x1f0 -05:59:16,883 WARNING kernel: [] __block_write_full_page+0x1c8/0x330 -05:59:16,883 WARNING kernel: [] ? end_buffer_async_write+0x0/0x190 -05:59:16,883 WARNING kernel: [] ? blkdev_get_block+0x0/0x20 -05:59:16,883 WARNING kernel: [] ? blkdev_get_block+0x0/0x20 -05:59:16,883 WARNING kernel: [] block_write_full_page_endio+0xe0/0x120 -05:59:16,883 WARNING kernel: [] ? find_get_pages_tag+0x40/0x130 -05:59:16,883 WARNING kernel: [] block_write_full_page+0x15/0x20 -05:59:16,883 WARNING kernel: [] blkdev_writepage+0x18/0x20 -05:59:16,883 WARNING kernel: [] __writepage+0x17/0x40 -05:59:16,883 WARNING kernel: [] write_cache_pages+0x1fd/0x4c0 -05:59:16,883 WARNING kernel: [] ? __writepage+0x0/0x40 -05:59:16,883 WARNING kernel: [] generic_writepages+0x24/0x30 -05:59:16,883 WARNING kernel: [] do_writepages+0x21/0x40 -05:59:16,883 WARNING kernel: [] writeback_single_inode+0xdd/0x290 -05:59:16,883 WARNING kernel: [] writeback_sb_inodes+0xbd/0x170 -05:59:16,883 WARNING kernel: [] writeback_inodes_wb+0xab/0x1b0 -05:59:16,883 WARNING kernel: [] wb_writeback+0x2f3/0x410 -05:59:16,883 WARNING kernel: [] ? thread_return+0x4e/0x76e -05:59:16,883 WARNING kernel: [] ? del_timer_sync+0x22/0x30 -05:59:16,883 WARNING kernel: [] wb_do_writeback+0x1a5/0x240 -05:59:16,883 WARNING kernel: [] bdi_writeback_task+0x63/0x1b0 -05:59:16,883 WARNING kernel: [] ? bit_waitqueue+0x17/0xd0 -05:59:16,883 WARNING kernel: [] ? bdi_start_fn+0x0/0x100 -05:59:16,883 WARNING kernel: [] bdi_start_fn+0x86/0x100 -05:59:16,883 WARNING kernel: [] ? bdi_start_fn+0x0/0x100 -05:59:16,883 WARNING kernel: [] kthread+0x96/0xa0 -05:59:16,883 WARNING kernel: [] child_rip+0xa/0x20 -05:59:16,883 WARNING kernel: [] ? kthread+0x0/0xa0 -05:59:16,883 WARNING kernel: [] ? child_rip+0x0/0x20 -06:11:26,657 DEBUG kernel:SELinux: 2048 avtab hash slots, 277800 rules. -06:11:26,705 DEBUG kernel:SELinux: 2048 avtab hash slots, 277800 rules. -06:11:27,220 DEBUG kernel:SELinux: 9 users, 12 roles, 3917 types, 217 bools, 1 sens, 1024 cats -06:11:27,220 DEBUG kernel:SELinux: 81 classes, 277800 rules diff --git a/compass/tests/actions/update_progress/data/test1/anamon/checkpoint_4/server1.1/anaconda.log.template b/compass/tests/actions/update_progress/data/test1/anamon/checkpoint_4/server1.1/anaconda.log.template deleted file mode 100644 index f04da66a..00000000 --- a/compass/tests/actions/update_progress/data/test1/anamon/checkpoint_4/server1.1/anaconda.log.template +++ /dev/null @@ -1,286 +0,0 @@ -05:51:20,534 INFO : kernel command line: initrd=/images/CentOS-6.5-x86_64/initrd.img ksdevice=bootif lang= kssendmac text ks=http://10.145.88.211/cblr/svc/op/ks/system/server1.1 BOOT_IMAGE=/images/CentOS-6.5-x86_64/vmlinuz BOOTIF=01-00-0c-29-21-89-af - -05:51:20,534 INFO : text mode forced from cmdline -05:51:20,534 DEBUG : readNetInfo /tmp/s390net not found, early return -05:51:20,534 INFO : anaconda version 13.21.215 on x86_64 starting -05:51:20,656 DEBUG : Saving module ipv6 -05:51:20,656 DEBUG : Saving module iscsi_ibft -05:51:20,656 DEBUG : Saving module iscsi_boot_sysfs -05:51:20,656 DEBUG : Saving module pcspkr -05:51:20,656 DEBUG : Saving module edd -05:51:20,656 DEBUG : Saving module floppy -05:51:20,656 DEBUG : Saving module iscsi_tcp -05:51:20,656 DEBUG : Saving module libiscsi_tcp -05:51:20,656 DEBUG : Saving module libiscsi -05:51:20,656 DEBUG : Saving module scsi_transport_iscsi -05:51:20,656 DEBUG : Saving module squashfs -05:51:20,656 DEBUG : Saving module cramfs -05:51:20,656 DEBUG : probing buses -05:51:20,693 DEBUG : waiting for hardware to initialize -05:51:27,902 DEBUG : probing buses -05:51:27,925 DEBUG : waiting for hardware to initialize -05:51:47,187 INFO : getting kickstart file -05:51:47,196 INFO : eth0 has link, using it -05:51:47,208 INFO : doing kickstart... setting it up -05:51:47,208 DEBUG : activating device eth0 -05:51:52,221 INFO : wait_for_iface_activation (2502): device eth0 activated -05:51:52,222 INFO : file location: http://10.145.88.211/cblr/svc/op/ks/system/server1.1 -05:51:52,223 INFO : transferring http://10.145.88.211/cblr/svc/op/ks/system/server1.1 -05:51:52,611 INFO : setting up kickstart -05:51:52,611 INFO : kickstart forcing text mode -05:51:52,611 INFO : kickstartFromUrl -05:51:52,612 INFO : results of url ks, url http://10.145.88.211/cblr/links/CentOS-6.5-x86_64 -05:51:52,612 INFO : trying to mount CD device /dev/sr0 on /mnt/stage2 -05:51:52,616 INFO : drive status is CDS_TRAY_OPEN -05:51:52,616 ERROR : Drive tray reports open when it should be closed -05:52:07,635 INFO : no stage2= given, assuming http://10.145.88.211/cblr/links/CentOS-6.5-x86_64/images/install.img -05:52:07,636 DEBUG : going to set language to en_US.UTF-8 -05:52:07,636 INFO : setting language to en_US.UTF-8 -05:52:07,654 INFO : starting STEP_METHOD -05:52:07,654 DEBUG : loaderData->method is set, adding skipMethodDialog -05:52:07,654 DEBUG : skipMethodDialog is set -05:52:07,663 INFO : starting STEP_STAGE2 -05:52:07,663 INFO : URL_STAGE_MAIN: url is http://10.145.88.211/cblr/links/CentOS-6.5-x86_64/images/install.img -05:52:07,663 INFO : transferring http://10.145.88.211/cblr/links/CentOS-6.5-x86_64/images/updates.img -05:52:07,780 ERROR : failed to mount loopback device /dev/loop7 on /tmp/update-disk as /tmp/updates-disk.img: (null) -05:52:07,780 ERROR : Error mounting /dev/loop7 on /tmp/update-disk: No such file or directory -05:52:07,780 INFO : transferring http://10.145.88.211/cblr/links/CentOS-6.5-x86_64/images/product.img -05:52:07,814 ERROR : Error downloading http://10.145.88.211/cblr/links/CentOS-6.5-x86_64/images/product.img: HTTP response code said error -05:52:07,815 INFO : transferring http://10.145.88.211/cblr/links/CentOS-6.5-x86_64/images/install.img -05:52:47,354 INFO : mounted loopback device /mnt/runtime on /dev/loop0 as /tmp/install.img -05:52:47,354 INFO : got stage2 at url http://10.145.88.211/cblr/links/CentOS-6.5-x86_64/images/install.img -05:52:47,403 INFO : Loading SELinux policy -05:52:48,130 INFO : getting ready to spawn shell now -05:52:48,359 INFO : Running anaconda script /usr/bin/anaconda -05:52:54,804 INFO : CentOS Linux is the highest priority installclass, using it -05:52:54,867 WARNING : /usr/lib/python2.6/site-packages/pykickstart/parser.py:713: DeprecationWarning: Script does not end with %end. This syntax has been deprecated. It may be removed from future releases, which will result in a fatal error from kickstart. Please modify your kickstart file to use this updated syntax. - warnings.warn(_("%s does not end with %%end. This syntax has been deprecated. It may be removed from future releases, which will result in a fatal error from kickstart. Please modify your kickstart file to use this updated syntax.") % _("Script"), DeprecationWarning) - -05:52:54,868 INFO : Running kickstart %%pre script(s) -05:52:54,868 WARNING : '/bin/sh' specified as full path -05:52:56,966 INFO : All kickstart %%pre script(s) have been run -05:52:57,017 INFO : ISCSID is /usr/sbin/iscsid -05:52:57,017 INFO : no initiator set -05:52:57,128 WARNING : '/usr/libexec/fcoe/fcoe_edd.sh' specified as full path -05:52:57,137 INFO : No FCoE EDD info found: No FCoE boot disk information is found in EDD! - -05:52:57,138 INFO : no /etc/zfcp.conf; not configuring zfcp -05:53:00,902 INFO : created new libuser.conf at /tmp/libuser.WMDW9M with instPath="/mnt/sysimage" -05:53:00,903 INFO : anaconda called with cmdline = ['/usr/bin/anaconda', '--stage2', 'http://10.145.88.211/cblr/links/CentOS-6.5-x86_64/images/install.img', '--kickstart', '/tmp/ks.cfg', '-T', '--selinux', '--lang', 'en_US', '--keymap', 'us', '--repo', 'http://10.145.88.211/cblr/links/CentOS-6.5-x86_64'] -05:53:00,903 INFO : Display mode = t -05:53:00,903 INFO : Default encoding = utf-8 -05:53:01,064 INFO : Detected 2016M of memory -05:53:01,064 INFO : Swap attempt of 4032M -05:53:01,398 INFO : ISCSID is /usr/sbin/iscsid -05:53:01,399 INFO : no initiator set -05:53:05,059 INFO : setting installation environment hostname to server1 -05:53:05,104 WARNING : Timezone US/Pacific set in kickstart is not valid. -05:53:05,276 INFO : Detected 2016M of memory -05:53:05,277 INFO : Suggested swap size (4032 M) exceeds 10 % of disk space, using 10 % of disk space (3276 M) instead. -05:53:05,277 INFO : Swap attempt of 3276M -05:53:05,453 WARNING : step installtype does not exist -05:53:05,454 WARNING : step confirminstall does not exist -05:53:05,454 WARNING : step complete does not exist -05:53:05,454 WARNING : step complete does not exist -05:53:05,454 WARNING : step complete does not exist -05:53:05,454 WARNING : step complete does not exist -05:53:05,455 WARNING : step complete does not exist -05:53:05,455 WARNING : step complete does not exist -05:53:05,455 WARNING : step complete does not exist -05:53:05,455 WARNING : step complete does not exist -05:53:05,455 WARNING : step complete does not exist -05:53:05,456 WARNING : step complete does not exist -05:53:05,456 WARNING : step complete does not exist -05:53:05,456 WARNING : step complete does not exist -05:53:05,456 WARNING : step complete does not exist -05:53:05,456 WARNING : step complete does not exist -05:53:05,457 WARNING : step complete does not exist -05:53:05,457 INFO : moving (1) to step setuptime -05:53:05,458 DEBUG : setuptime is a direct step -22:53:05,458 WARNING : '/usr/sbin/hwclock' specified as full path -22:53:06,002 INFO : leaving (1) step setuptime -22:53:06,003 INFO : moving (1) to step autopartitionexecute -22:53:06,003 DEBUG : autopartitionexecute is a direct step -22:53:06,138 INFO : leaving (1) step autopartitionexecute -22:53:06,138 INFO : moving (1) to step storagedone -22:53:06,138 DEBUG : storagedone is a direct step -22:53:06,138 INFO : leaving (1) step storagedone -22:53:06,139 INFO : moving (1) to step enablefilesystems -22:53:06,139 DEBUG : enablefilesystems is a direct step -22:53:10,959 DEBUG : notifying kernel of 'change' event on device /sys/class/block/sda3 -22:53:41,215 DEBUG : notifying kernel of 'change' event on device /sys/class/block/sda1 -22:53:57,388 DEBUG : notifying kernel of 'change' event on device /sys/class/block/sda3 -22:54:14,838 DEBUG : notifying kernel of 'change' event on device /sys/class/block/dm-0 -22:54:21,717 DEBUG : notifying kernel of 'change' event on device /sys/class/block/dm-1 -22:54:27,576 DEBUG : notifying kernel of 'change' event on device /sys/class/block/dm-2 -22:54:40,058 DEBUG : notifying kernel of 'change' event on device /sys/class/block/dm-3 -22:54:41,949 INFO : failed to set SELinux context for /mnt/sysimage: [Errno 95] Operation not supported -22:54:41,950 DEBUG : isys.py:mount()- going to mount /dev/mapper/server1-rootvol on /mnt/sysimage as ext3 with options defaults -22:54:42,826 DEBUG : isys.py:mount()- going to mount /dev/sda1 on /mnt/sysimage/boot as ext3 with options defaults -22:54:43,148 DEBUG : isys.py:mount()- going to mount //dev on /mnt/sysimage/dev as bind with options defaults,bind -22:54:43,158 DEBUG : isys.py:mount()- going to mount devpts on /mnt/sysimage/dev/pts as devpts with options gid=5,mode=620 -22:54:43,164 DEBUG : isys.py:mount()- going to mount tmpfs on /mnt/sysimage/dev/shm as tmpfs with options defaults -22:54:43,207 DEBUG : isys.py:mount()- going to mount /dev/mapper/server1-homevol on /mnt/sysimage/home as ext3 with options defaults -22:54:43,434 INFO : failed to get default SELinux context for /proc: [Errno 2] No such file or directory -22:54:43,435 DEBUG : isys.py:mount()- going to mount proc on /mnt/sysimage/proc as proc with options defaults -22:54:43,439 INFO : failed to get default SELinux context for /proc: [Errno 2] No such file or directory -22:54:43,496 DEBUG : isys.py:mount()- going to mount sysfs on /mnt/sysimage/sys as sysfs with options defaults -22:54:43,609 DEBUG : isys.py:mount()- going to mount /dev/mapper/server1-tmpvol on /mnt/sysimage/tmp as ext3 with options defaults -22:54:43,874 DEBUG : isys.py:mount()- going to mount /dev/mapper/server1-varvol on /mnt/sysimage/var as ext3 with options defaults -22:54:44,056 INFO : leaving (1) step enablefilesystems -22:54:44,057 INFO : moving (1) to step bootloadersetup -22:54:44,057 DEBUG : bootloadersetup is a direct step -22:54:44,061 INFO : leaving (1) step bootloadersetup -22:54:44,061 INFO : moving (1) to step reposetup -22:54:44,061 DEBUG : reposetup is a direct step -22:54:56,952 ERROR : Error downloading treeinfo file: [Errno 14] PYCURL ERROR 22 - "The requested URL returned error: 404 Not Found" -22:54:56,953 INFO : added repository ppa_repo with URL http://10.145.88.211:80/cobbler/repo_mirror/ppa_repo/ -22:54:57,133 DEBUG : Grabbing http://10.145.88.211/cblr/links/CentOS-6.5-x86_64/repodata/repomd.xml -22:54:57,454 DEBUG : Grabbing http://10.145.88.211/cblr/links/CentOS-6.5-x86_64/repodata/0e371b19e547b9d7a7e8acc4b8c0c7c074509d33653cfaef9e8f4fd1d62d95de-primary.sqlite.bz2 -22:54:58,637 DEBUG : Grabbing http://10.145.88.211/cblr/links/CentOS-6.5-x86_64/repodata/34bae2d3c9c78e04ed2429923bc095005af1b166d1a354422c4c04274bae0f59-c6-minimal-x86_64.xml -22:54:58,971 INFO : leaving (1) step reposetup -22:54:58,971 INFO : moving (1) to step basepkgsel -22:54:58,972 DEBUG : basepkgsel is a direct step -22:54:58,986 WARNING : not adding Base group -22:54:59,388 INFO : leaving (1) step basepkgsel -22:54:59,388 INFO : moving (1) to step postselection -22:54:59,388 DEBUG : postselection is a direct step -22:54:59,390 INFO : selected kernel package for kernel -22:54:59,848 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/fs/ext3/ext3.ko.gz -22:54:59,848 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/fs/jbd/jbd.ko.gz -22:54:59,848 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/fs/mbcache.ko.gz -22:54:59,848 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/scsi/fcoe/fcoe.ko.gz -22:54:59,848 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/scsi/fcoe/libfcoe.ko.gz -22:54:59,849 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/scsi/libfc/libfc.ko.gz -22:54:59,849 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/scsi/scsi_transport_fc.ko.gz -22:54:59,849 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/scsi/scsi_tgt.ko.gz -22:54:59,849 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/crypto/xts.ko.gz -22:54:59,849 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/crypto/lrw.ko.gz -22:54:59,849 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/crypto/gf128mul.ko.gz -22:54:59,849 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/crypto/sha256_generic.ko.gz -22:54:59,849 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/crypto/cbc.ko.gz -22:54:59,849 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/md/dm-raid.ko.gz -22:54:59,849 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/md/dm-crypt.ko.gz -22:54:59,850 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/md/dm-round-robin.ko.gz -22:54:59,850 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/md/dm-multipath.ko.gz -22:54:59,850 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/md/dm-snapshot.ko.gz -22:54:59,850 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/md/dm-mirror.ko.gz -22:54:59,850 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/md/dm-region-hash.ko.gz -22:54:59,850 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/md/dm-log.ko.gz -22:54:59,850 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/md/dm-zero.ko.gz -22:54:59,850 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/md/dm-mod.ko.gz -22:54:59,850 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/md/linear.ko.gz -22:54:59,850 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/md/raid10.ko.gz -22:54:59,850 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/md/raid456.ko.gz -22:54:59,851 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/crypto/async_tx/async_raid6_recov.ko.gz -22:54:59,851 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/crypto/async_tx/async_pq.ko.gz -22:54:59,851 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/lib/raid6/raid6_pq.ko.gz -22:54:59,851 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/crypto/async_tx/async_xor.ko.gz -22:54:59,851 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/crypto/xor.ko.gz -22:54:59,851 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/crypto/async_tx/async_memcpy.ko.gz -22:54:59,851 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/crypto/async_tx/async_tx.ko.gz -22:54:59,851 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/md/raid1.ko.gz -22:54:59,851 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/md/raid0.ko.gz -22:54:59,852 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/net/8021q/8021q.ko.gz -22:54:59,852 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/net/802/garp.ko.gz -22:54:59,852 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/net/802/stp.ko.gz -22:54:59,852 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/net/llc/llc.ko.gz -22:54:59,852 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/infiniband/hw/mlx4/mlx4_ib.ko.gz -22:54:59,852 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/net/mlx4/mlx4_en.ko.gz -22:54:59,852 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/net/mlx4/mlx4_core.ko.gz -22:54:59,852 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/infiniband/ulp/ipoib/ib_ipoib.ko.gz -22:54:59,852 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/infiniband/core/ib_cm.ko.gz -22:54:59,853 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/infiniband/core/ib_sa.ko.gz -22:54:59,853 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/infiniband/core/ib_mad.ko.gz -22:54:59,853 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/infiniband/core/ib_core.ko.gz -22:54:59,853 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/scsi/sg.ko.gz -22:54:59,853 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/scsi/sd_mod.ko.gz -22:54:59,853 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/lib/crc-t10dif.ko.gz -22:54:59,853 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/net/e1000/e1000.ko.gz -22:54:59,853 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/scsi/sr_mod.ko.gz -22:54:59,853 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/cdrom/cdrom.ko.gz -22:54:59,853 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/misc/vmware_balloon.ko.gz -22:54:59,853 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/message/fusion/mptspi.ko.gz -22:54:59,854 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/message/fusion/mptscsih.ko.gz -22:54:59,854 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/message/fusion/mptbase.ko.gz -22:54:59,854 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/scsi/scsi_transport_spi.ko.gz -22:54:59,854 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/ata/pata_acpi.ko.gz -22:54:59,854 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/ata/ata_generic.ko.gz -22:54:59,854 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/ata/ata_piix.ko.gz -22:54:59,854 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/net/ipv6/ipv6.ko.gz -22:54:59,854 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/firmware/iscsi_ibft.ko.gz -22:54:59,854 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/scsi/iscsi_boot_sysfs.ko.gz -22:54:59,854 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/input/misc/pcspkr.ko.gz -22:54:59,855 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/firmware/edd.ko.gz -22:54:59,855 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/block/floppy.ko.gz -22:54:59,855 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/scsi/iscsi_tcp.ko.gz -22:54:59,855 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/scsi/libiscsi_tcp.ko.gz -22:54:59,855 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/scsi/libiscsi.ko.gz -22:54:59,855 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/scsi/scsi_transport_iscsi.ko.gz -22:54:59,855 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/fs/squashfs/squashfs.ko.gz -22:54:59,855 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/fs/cramfs/cramfs.ko.gz -22:55:07,745 INFO : leaving (1) step postselection -22:55:07,745 INFO : moving (1) to step install -22:55:07,748 INFO : leaving (1) step install -22:55:07,748 INFO : moving (1) to step preinstallconfig -22:55:07,748 DEBUG : preinstallconfig is a direct step -22:55:08,087 DEBUG : isys.py:mount()- going to mount /selinux on /mnt/sysimage/selinux as selinuxfs with options defaults -22:55:08,091 DEBUG : isys.py:mount()- going to mount /proc/bus/usb on /mnt/sysimage/proc/bus/usb as usbfs with options defaults -22:55:08,102 INFO : copy_to_sysimage: source '/etc/multipath/wwids' does not exist. -22:55:08,102 INFO : copy_to_sysimage: source '/etc/multipath/bindings' does not exist. -22:55:08,118 INFO : copy_to_sysimage: source '/etc/multipath/wwids' does not exist. -22:55:08,118 INFO : copy_to_sysimage: source '/etc/multipath/bindings' does not exist. -22:55:08,122 INFO : leaving (1) step preinstallconfig -22:55:08,122 INFO : moving (1) to step installpackages -22:55:08,122 DEBUG : installpackages is a direct step -22:55:08,122 INFO : Preparing to install packages -23:17:06,152 INFO : leaving (1) step installpackages -23:17:06,153 INFO : moving (1) to step postinstallconfig -23:17:06,153 DEBUG : postinstallconfig is a direct step -23:17:06,162 DEBUG : Removing cachedir: /mnt/sysimage/var/cache/yum/anaconda-CentOS-201311291202.x86_64 -23:17:06,181 DEBUG : Removing headers and packages from /mnt/sysimage/var/cache/yum/ppa_repo -23:17:06,183 INFO : leaving (1) step postinstallconfig -23:17:06,184 INFO : moving (1) to step writeconfig -23:17:06,184 DEBUG : writeconfig is a direct step -23:17:06,184 INFO : Writing main configuration -23:17:06,219 WARNING : '/usr/sbin/authconfig' specified as full path -23:17:11,643 WARNING : '/usr/sbin/lokkit' specified as full path -23:17:11,703 WARNING : '/usr/sbin/lokkit' specified as full path -23:17:11,885 INFO : removing libuser.conf at /tmp/libuser.WMDW9M -23:17:11,885 INFO : created new libuser.conf at /tmp/libuser.WMDW9M with instPath="/mnt/sysimage" -23:17:12,722 INFO : leaving (1) step writeconfig -23:17:12,722 INFO : moving (1) to step firstboot -23:17:12,723 DEBUG : firstboot is a direct step -23:17:12,723 INFO : leaving (1) step firstboot -23:17:12,723 INFO : moving (1) to step instbootloader -23:17:12,724 DEBUG : instbootloader is a direct step -23:17:14,664 WARNING : '/sbin/grub-install' specified as full path -23:17:15,006 WARNING : '/sbin/grub' specified as full path -23:17:16,039 INFO : leaving (1) step instbootloader -23:17:16,040 INFO : moving (1) to step reipl -23:17:16,040 DEBUG : reipl is a direct step -23:17:16,040 INFO : leaving (1) step reipl -23:17:16,040 INFO : moving (1) to step writeksconfig -23:17:16,040 DEBUG : writeksconfig is a direct step -23:17:16,041 INFO : Writing autokickstart file -23:17:16,070 INFO : leaving (1) step writeksconfig -23:17:16,071 INFO : moving (1) to step setfilecon -23:17:16,071 DEBUG : setfilecon is a direct step -23:17:16,071 INFO : setting SELinux contexts for anaconda created files -23:17:17,822 INFO : leaving (1) step setfilecon -23:17:17,822 INFO : moving (1) to step copylogs -23:17:17,822 DEBUG : copylogs is a direct step -23:17:17,822 INFO : Copying anaconda logs -23:17:17,825 INFO : leaving (1) step copylogs -23:17:17,825 INFO : moving (1) to step methodcomplete -23:17:17,825 DEBUG : methodcomplete is a direct step -23:17:17,825 INFO : leaving (1) step methodcomplete -23:17:17,826 INFO : moving (1) to step postscripts -23:17:17,826 DEBUG : postscripts is a direct step -23:17:17,826 INFO : Running kickstart %%post script(s) -23:17:17,858 WARNING : '/bin/sh' specified as full path -23:17:21,002 INFO : All kickstart %%post script(s) have been run -23:17:21,002 INFO : leaving (1) step postscripts -23:17:21,002 INFO : moving (1) to step dopostaction -23:17:21,002 DEBUG : dopostaction is a direct step -23:17:21,003 INFO : leaving (1) step dopostaction diff --git a/compass/tests/actions/update_progress/data/test1/anamon/checkpoint_4/server1.1/chef-client.log.template b/compass/tests/actions/update_progress/data/test1/anamon/checkpoint_4/server1.1/chef-client.log.template deleted file mode 100644 index 642c8489..00000000 --- a/compass/tests/actions/update_progress/data/test1/anamon/checkpoint_4/server1.1/chef-client.log.template +++ /dev/null @@ -1,18 +0,0 @@ -Feb 21 20:39:11 server1.1 [2014-02-21T20:39:11-08:00] INFO: execute[Keystone: sleep] ran successfully -Feb 21 20:39:11 server1.1 [2014-02-21T20:39:11-08:00] INFO: Processing directory[/etc/keystone] action create (openstack-identity::server line 73) -Feb 21 20:39:11 server1.1 [2014-02-21T20:39:11-08:00] INFO: directory[/etc/keystone] owner changed to 163 -Feb 21 20:39:11 server1.1 [2014-02-21T20:39:11-08:00] INFO: directory[/etc/keystone] mode changed to 700 -Feb 21 20:39:11 server1.1 [2014-02-21T20:39:11-08:00] INFO: Processing directory[/etc/keystone/ssl] action create (openstack-identity::server line 79) -Feb 21 20:39:11 server1.1 [2014-02-21T20:39:11-08:00] INFO: Processing file[/var/lib/keystone/keystone.db] action delete (openstack-identity::server line 87) -Feb 21 20:39:11 server1.1 [2014-02-21T20:39:11-08:00] INFO: Processing execute[keystone-manage pki_setup] action run (openstack-identity::server line 91) -Feb 21 20:39:11 server1.1 [2014-02-21T20:39:11-08:00] INFO: Processing template[/etc/keystone/keystone.conf] action create (openstack-identity::server line 140) -Feb 21 20:39:11 server1.1 [2014-02-21T20:39:11-08:00] INFO: template[/etc/keystone/keystone.conf] backed up to /var/chef/backup/etc/keystone/keystone.conf.chef-20140221203911.069202 -Feb 21 20:39:11 server1.1 [2014-02-21T20:39:11-08:00] INFO: template[/etc/keystone/keystone.conf] updated file contents /etc/keystone/keystone.conf -Feb 21 20:39:11 server1.1 [2014-02-21T20:39:11-08:00] INFO: template[/etc/keystone/keystone.conf] owner changed to 163 -Feb 21 20:39:11 server1.1 [2014-02-21T20:39:11-08:00] INFO: template[/etc/keystone/keystone.conf] mode changed to 644 -Feb 21 20:39:11 server1.1 [2014-02-21T20:39:11-08:00] INFO: template[/etc/keystone/keystone.conf] sending restart action to service[keystone] (immediate) -Feb 21 20:39:11 server1.1 [2014-02-21T20:39:11-08:00] INFO: Processing service[keystone] action restart (openstack-identity::server line 64) -Feb 21 20:39:12 server1.1 [2014-02-21T20:39:11-08:00] INFO: service[keystone] restarted -Feb 21 20:39:12 server1.1 [2014-02-21T20:39:11-08:00] INFO: service[keystone] sending run action to execute[Keystone: sleep] (immediate) -Feb 21 20:39:12 server1.1 [2014-02-21T20:39:11-08:00] INFO: Processing execute[Keystone: sleep] action run (openstack-identity::server line 58) -Feb 21 20:39:22 server1.1 [2014-02-21T20:39:21-08:00] INFO: execute[Keystone: sleep] ran successfully diff --git a/compass/tests/actions/update_progress/data/test1/anamon/checkpoint_4/server1.1/install.log.template b/compass/tests/actions/update_progress/data/test1/anamon/checkpoint_4/server1.1/install.log.template deleted file mode 100644 index 861b3a53..00000000 --- a/compass/tests/actions/update_progress/data/test1/anamon/checkpoint_4/server1.1/install.log.template +++ /dev/null @@ -1,212 +0,0 @@ -Installing libgcc-4.4.7-4.el6.x86_64 -warning: libgcc-4.4.7-4.el6.x86_64: Header V3 RSA/SHA1 Signature, key ID c105b9de: NOKEY -Installing setup-2.8.14-20.el6_4.1.noarch -Installing filesystem-2.4.30-3.el6.x86_64 -Installing basesystem-10.0-4.el6.noarch -Installing ncurses-base-5.7-3.20090208.el6.x86_64 -Installing kernel-firmware-2.6.32-431.el6.noarch -Installing tzdata-2013g-1.el6.noarch -Installing nss-softokn-freebl-3.14.3-9.el6.x86_64 -Installing glibc-common-2.12-1.132.el6.x86_64 -Installing glibc-2.12-1.132.el6.x86_64 -Installing ncurses-libs-5.7-3.20090208.el6.x86_64 -Installing bash-4.1.2-15.el6_4.x86_64 -Installing libattr-2.4.44-7.el6.x86_64 -Installing libcap-2.16-5.5.el6.x86_64 -Installing zlib-1.2.3-29.el6.x86_64 -Installing info-4.13a-8.el6.x86_64 -Installing popt-1.13-7.el6.x86_64 -Installing chkconfig-1.3.49.3-2.el6_4.1.x86_64 -Installing audit-libs-2.2-2.el6.x86_64 -Installing libcom_err-1.41.12-18.el6.x86_64 -Installing libacl-2.2.49-6.el6.x86_64 -Installing db4-4.7.25-18.el6_4.x86_64 -Installing nspr-4.10.0-1.el6.x86_64 -Installing nss-util-3.15.1-3.el6.x86_64 -Installing readline-6.0-4.el6.x86_64 -Installing libsepol-2.0.41-4.el6.x86_64 -Installing libselinux-2.0.94-5.3.el6_4.1.x86_64 -Installing shadow-utils-4.1.4.2-13.el6.x86_64 -Installing sed-4.2.1-10.el6.x86_64 -Installing bzip2-libs-1.0.5-7.el6_0.x86_64 -Installing libuuid-2.17.2-12.14.el6.x86_64 -Installing libstdc++-4.4.7-4.el6.x86_64 -Installing libblkid-2.17.2-12.14.el6.x86_64 -Installing gawk-3.1.7-10.el6.x86_64 -Installing file-libs-5.04-15.el6.x86_64 -Installing libgpg-error-1.7-4.el6.x86_64 -Installing dbus-libs-1.2.24-7.el6_3.x86_64 -Installing libudev-147-2.51.el6.x86_64 -Installing pcre-7.8-6.el6.x86_64 -Installing grep-2.6.3-4.el6.x86_64 -Installing lua-5.1.4-4.1.el6.x86_64 -Installing sqlite-3.6.20-1.el6.x86_64 -Installing cyrus-sasl-lib-2.1.23-13.el6_3.1.x86_64 -Installing libidn-1.18-2.el6.x86_64 -Installing expat-2.0.1-11.el6_2.x86_64 -Installing xz-libs-4.999.9-0.3.beta.20091007git.el6.x86_64 -Installing elfutils-libelf-0.152-1.el6.x86_64 -Installing libgcrypt-1.4.5-11.el6_4.x86_64 -Installing bzip2-1.0.5-7.el6_0.x86_64 -Installing findutils-4.4.2-6.el6.x86_64 -Installing libselinux-utils-2.0.94-5.3.el6_4.1.x86_64 -Installing checkpolicy-2.0.22-1.el6.x86_64 -Installing cpio-2.10-11.el6_3.x86_64 -Installing which-2.19-6.el6.x86_64 -Installing libxml2-2.7.6-14.el6.x86_64 -Installing libedit-2.11-4.20080712cvs.1.el6.x86_64 -Installing pth-2.0.7-9.3.el6.x86_64 -Installing tcp_wrappers-libs-7.6-57.el6.x86_64 -Installing sysvinit-tools-2.87-5.dsf.el6.x86_64 -Installing libtasn1-2.3-3.el6_2.1.x86_64 -Installing p11-kit-0.18.5-2.el6.x86_64 -Installing p11-kit-trust-0.18.5-2.el6.x86_64 -Installing ca-certificates-2013.1.94-65.0.el6.noarch -Installing device-mapper-persistent-data-0.2.8-2.el6.x86_64 -Installing nss-softokn-3.14.3-9.el6.x86_64 -Installing libnih-1.0.1-7.el6.x86_64 -Installing upstart-0.6.5-12.el6_4.1.x86_64 -Installing file-5.04-15.el6.x86_64 -Installing gmp-4.3.1-7.el6_2.2.x86_64 -Installing libusb-0.1.12-23.el6.x86_64 -Installing MAKEDEV-3.24-6.el6.x86_64 -Installing libutempter-1.1.5-4.1.el6.x86_64 -Installing psmisc-22.6-15.el6_0.1.x86_64 -Installing net-tools-1.60-110.el6_2.x86_64 -Installing vim-minimal-7.2.411-1.8.el6.x86_64 -Installing tar-1.23-11.el6.x86_64 -Installing procps-3.2.8-25.el6.x86_64 -Installing db4-utils-4.7.25-18.el6_4.x86_64 -Installing e2fsprogs-libs-1.41.12-18.el6.x86_64 -Installing libss-1.41.12-18.el6.x86_64 -Installing pinentry-0.7.6-6.el6.x86_64 -Installing binutils-2.20.51.0.2-5.36.el6.x86_64 -Installing m4-1.4.13-5.el6.x86_64 -Installing diffutils-2.8.1-28.el6.x86_64 -Installing make-3.81-20.el6.x86_64 -Installing dash-0.5.5.1-4.el6.x86_64 -Installing ncurses-5.7-3.20090208.el6.x86_64 -Installing groff-1.18.1.4-21.el6.x86_64 -Installing less-436-10.el6.x86_64 -Installing coreutils-libs-8.4-31.el6.x86_64 -Installing gzip-1.3.12-19.el6_4.x86_64 -Installing cracklib-2.8.16-4.el6.x86_64 -Installing cracklib-dicts-2.8.16-4.el6.x86_64 -Installing coreutils-8.4-31.el6.x86_64 -Installing pam-1.1.1-17.el6.x86_64 -Installing module-init-tools-3.9-21.el6_4.x86_64 -Installing hwdata-0.233-9.1.el6.noarch -Installing redhat-logos-60.0.14-12.el6.centos.noarch -Installing plymouth-scripts-0.8.3-27.el6.centos.x86_64 -Installing libpciaccess-0.13.1-2.el6.x86_64 -Installing nss-3.15.1-15.el6.x86_64 -Installing nss-sysinit-3.15.1-15.el6.x86_64 -Installing nss-tools-3.15.1-15.el6.x86_64 -Installing openldap-2.4.23-32.el6_4.1.x86_64 -Installing logrotate-3.7.8-17.el6.x86_64 -Installing gdbm-1.8.0-36.el6.x86_64 -Installing mingetty-1.08-5.el6.x86_64 -Installing keyutils-libs-1.4-4.el6.x86_64 -Installing krb5-libs-1.10.3-10.el6_4.6.x86_64 -Installing openssl-1.0.1e-15.el6.x86_64 -Installing libssh2-1.4.2-1.el6.x86_64 -Installing libcurl-7.19.7-37.el6_4.x86_64 -Installing gnupg2-2.0.14-6.el6_4.x86_64 -Installing gpgme-1.1.8-3.el6.x86_64 -Installing curl-7.19.7-37.el6_4.x86_64 -Installing rpm-libs-4.8.0-37.el6.x86_64 -Installing rpm-4.8.0-37.el6.x86_64 -Installing fipscheck-lib-1.2.0-7.el6.x86_64 -Installing fipscheck-1.2.0-7.el6.x86_64 -Installing mysql-libs-5.1.71-1.el6.x86_64 -Installing ethtool-3.5-1.el6.x86_64 -Installing pciutils-libs-3.1.10-2.el6.x86_64 -Installing plymouth-core-libs-0.8.3-27.el6.centos.x86_64 -Installing libcap-ng-0.6.4-3.el6_0.1.x86_64 -Installing libffi-3.0.5-3.2.el6.x86_64 -Installing python-2.6.6-51.el6.x86_64 -Installing python-libs-2.6.6-51.el6.x86_64 -Installing python-pycurl-7.19.0-8.el6.x86_64 -Installing python-urlgrabber-3.9.1-9.el6.noarch -Installing pygpgme-0.1-18.20090824bzr68.el6.x86_64 -Installing rpm-python-4.8.0-37.el6.x86_64 -Installing python-iniparse-0.3.1-2.1.el6.noarch -Installing slang-2.2.1-1.el6.x86_64 -Installing newt-0.52.11-3.el6.x86_64 -Installing newt-python-0.52.11-3.el6.x86_64 -Installing ustr-1.0.4-9.1.el6.x86_64 -Installing libsemanage-2.0.43-4.2.el6.x86_64 -Installing libaio-0.3.107-10.el6.x86_64 -Installing pkgconfig-0.23-9.1.el6.x86_64 -Installing gamin-0.1.10-9.el6.x86_64 -Installing glib2-2.26.1-3.el6.x86_64 -Installing shared-mime-info-0.70-4.el6.x86_64 -Installing libuser-0.56.13-5.el6.x86_64 -Installing grubby-7.0.15-5.el6.x86_64 -Installing yum-metadata-parser-1.1.2-16.el6.x86_64 -Installing yum-plugin-fastestmirror-1.1.30-14.el6.noarch -Installing yum-3.2.29-40.el6.centos.noarch -Installing dbus-glib-0.86-6.el6.x86_64 -Installing dhcp-common-4.1.1-38.P1.el6.centos.x86_64 -Installing centos-release-6-5.el6.centos.11.1.x86_64 -Installing policycoreutils-2.0.83-19.39.el6.x86_64 -Installing iptables-1.4.7-11.el6.x86_64 -Installing iproute-2.6.32-31.el6.x86_64 -Installing iputils-20071127-17.el6_4.2.x86_64 -Installing util-linux-ng-2.17.2-12.14.el6.x86_64 -Installing initscripts-9.03.40-2.el6.centos.x86_64 -Installing udev-147-2.51.el6.x86_64 -Installing device-mapper-libs-1.02.79-8.el6.x86_64 -Installing device-mapper-1.02.79-8.el6.x86_64 -Installing device-mapper-event-libs-1.02.79-8.el6.x86_64 -Installing openssh-5.3p1-94.el6.x86_64 -Installing device-mapper-event-1.02.79-8.el6.x86_64 -Installing lvm2-libs-2.02.100-8.el6.x86_64 -Installing cryptsetup-luks-libs-1.2.0-7.el6.x86_64 -Installing device-mapper-multipath-libs-0.4.9-72.el6.x86_64 -Installing kpartx-0.4.9-72.el6.x86_64 -Installing libdrm-2.4.45-2.el6.x86_64 -Installing plymouth-0.8.3-27.el6.centos.x86_64 -Installing rsyslog-5.8.10-8.el6.x86_64 -Installing cyrus-sasl-2.1.23-13.el6_3.1.x86_64 -Installing postfix-2.6.6-2.2.el6_1.x86_64 -Installing cronie-anacron-1.4.4-12.el6.x86_64 -Installing cronie-1.4.4-12.el6.x86_64 -Installing crontabs-1.10-33.el6.noarch -Installing ntpdate-4.2.6p5-1.el6.centos.x86_64 -Installing iptables-ipv6-1.4.7-11.el6.x86_64 -Installing selinux-policy-3.7.19-231.el6.noarch -Installing kbd-misc-1.15-11.el6.noarch -Installing kbd-1.15-11.el6.x86_64 -Installing dracut-004-335.el6.noarch -Installing dracut-kernel-004-335.el6.noarch -Installing kernel-2.6.32-431.el6.x86_64 -Installing fuse-2.8.3-4.el6.x86_64 -Installing selinux-policy-targeted-3.7.19-231.el6.noarch -Installing system-config-firewall-base-1.2.27-5.el6.noarch -Installing ntp-4.2.6p5-1.el6.centos.x86_64 -Installing device-mapper-multipath-0.4.9-72.el6.x86_64 -Installing cryptsetup-luks-1.2.0-7.el6.x86_64 -Installing lvm2-2.02.100-8.el6.x86_64 -Installing openssh-clients-5.3p1-94.el6.x86_64 -Installing openssh-server-5.3p1-94.el6.x86_64 -Installing mdadm-3.2.6-7.el6.x86_64 -Installing b43-openfwwf-5.2-4.el6.noarch -Installing dhclient-4.1.1-38.P1.el6.centos.x86_64 -Installing iscsi-initiator-utils-6.2.0.873-10.el6.x86_64 -Installing passwd-0.77-4.el6_2.2.x86_64 -Installing authconfig-6.1.12-13.el6.x86_64 -Installing grub-0.97-83.el6.x86_64 -Installing efibootmgr-0.5.4-11.el6.x86_64 -Installing wget-1.12-1.8.el6.x86_64 -Installing sudo-1.8.6p3-12.el6.x86_64 -Installing audit-2.2-2.el6.x86_64 -Installing e2fsprogs-1.41.12-18.el6.x86_64 -Installing xfsprogs-3.1.1-14.el6.x86_64 -Installing acl-2.2.49-6.el6.x86_64 -Installing attr-2.4.44-7.el6.x86_64 -Installing chef-11.8.0-1.el6.x86_64 -warning: chef-11.8.0-1.el6.x86_64: Header V4 DSA/SHA1 Signature, key ID 83ef826a: NOKEY -Installing bridge-utils-1.2-10.el6.x86_64 -Installing rootfiles-8.1-6.1.el6.noarch -*** FINISHED INSTALLING PACKAGES *** \ No newline at end of file diff --git a/compass/tests/actions/update_progress/data/test1/anamon/checkpoint_4/server1.1/sys.log.template b/compass/tests/actions/update_progress/data/test1/anamon/checkpoint_4/server1.1/sys.log.template deleted file mode 100644 index 7390276a..00000000 --- a/compass/tests/actions/update_progress/data/test1/anamon/checkpoint_4/server1.1/sys.log.template +++ /dev/null @@ -1,1726 +0,0 @@ -05:51:18,517 INFO kernel:imklog 5.8.10, log source = /proc/kmsg started. -05:51:18,517 INFO rsyslogd: [origin software="rsyslogd" swVersion="5.8.10" x-pid="68" x-info="http://www.rsyslog.com"] start -05:51:18,517 INFO kernel:Initializing cgroup subsys cpuset -05:51:18,517 INFO kernel:Initializing cgroup subsys cpu -05:51:18,517 NOTICE kernel:Linux version 2.6.32-431.el6.x86_64 (mockbuild@c6b8.bsys.dev.centos.org) (gcc version 4.4.7 20120313 (Red Hat 4.4.7-4) (GCC) ) #1 SMP Fri Nov 22 03:15:09 UTC 2013 -05:51:18,517 INFO kernel:Command line: initrd=/images/CentOS-6.5-x86_64/initrd.img ksdevice=bootif lang= kssendmac text ks=http://10.145.88.211/cblr/svc/op/ks/system/server1.1 BOOT_IMAGE=/images/CentOS-6.5-x86_64/vmlinuz BOOTIF=01-00-0c-29-21-89-af -05:51:18,517 INFO kernel:KERNEL supported cpus: -05:51:18,517 INFO kernel: Intel GenuineIntel -05:51:18,517 INFO kernel: AMD AuthenticAMD -05:51:18,517 INFO kernel: Centaur CentaurHauls -05:51:18,517 INFO kernel:Disabled fast string operations -05:51:18,517 INFO kernel:BIOS-provided physical RAM map: -05:51:18,517 INFO kernel: BIOS-e820: 0000000000000000 - 000000000009f400 (usable) -05:51:18,517 INFO kernel: BIOS-e820: 000000000009f400 - 00000000000a0000 (reserved) -05:51:18,517 INFO kernel: BIOS-e820: 00000000000ca000 - 00000000000cc000 (reserved) -05:51:18,517 INFO kernel: BIOS-e820: 00000000000dc000 - 0000000000100000 (reserved) -05:51:18,517 INFO kernel: BIOS-e820: 0000000000100000 - 000000007fef0000 (usable) -05:51:18,517 INFO kernel: BIOS-e820: 000000007fef0000 - 000000007feff000 (ACPI data) -05:51:18,517 INFO kernel: BIOS-e820: 000000007feff000 - 000000007ff00000 (ACPI NVS) -05:51:18,517 INFO kernel: BIOS-e820: 000000007ff00000 - 0000000080000000 (usable) -05:51:18,517 INFO kernel: BIOS-e820: 00000000e0000000 - 00000000f0000000 (reserved) -05:51:18,517 INFO kernel: BIOS-e820: 00000000fec00000 - 00000000fec10000 (reserved) -05:51:18,517 INFO kernel: BIOS-e820: 00000000fee00000 - 00000000fee01000 (reserved) -05:51:18,517 INFO kernel: BIOS-e820: 00000000fffe0000 - 0000000100000000 (reserved) -05:51:18,517 INFO kernel:DMI present. -05:51:18,517 WARNING kernel:SMBIOS version 2.4 @ 0xF68F0 -05:51:18,517 DEBUG kernel:DMI: VMware, Inc. VMware Virtual Platform/440BX Desktop Reference Platform, BIOS 6.00 01/07/2011 -05:51:18,517 NOTICE kernel:Phoenix BIOS detected: BIOS may corrupt low RAM, working around it. -05:51:18,517 DEBUG kernel:e820 update range: 0000000000000000 - 0000000000010000 (usable) ==> (reserved) -05:51:18,517 INFO kernel:Hypervisor detected: VMware -05:51:18,517 DEBUG kernel:e820 update range: 0000000000000000 - 0000000000001000 (usable) ==> (reserved) -05:51:18,517 DEBUG kernel:e820 remove range: 00000000000a0000 - 0000000000100000 (usable) -05:51:18,517 INFO kernel:last_pfn = 0x80000 max_arch_pfn = 0x400000000 -05:51:18,517 DEBUG kernel:MTRR default type: uncachable -05:51:18,517 DEBUG kernel:MTRR fixed ranges enabled: -05:51:18,517 DEBUG kernel: 00000-9FFFF write-back -05:51:18,517 DEBUG kernel: A0000-BFFFF uncachable -05:51:18,517 DEBUG kernel: C0000-CFFFF write-protect -05:51:18,517 DEBUG kernel: D0000-EFFFF uncachable -05:51:18,517 DEBUG kernel: F0000-FFFFF write-protect -05:51:18,517 DEBUG kernel:MTRR variable ranges enabled: -05:51:18,517 DEBUG kernel: 0 base 0000000000 mask FF80000000 write-back -05:51:18,517 DEBUG kernel: 1 disabled -05:51:18,517 DEBUG kernel: 2 disabled -05:51:18,517 DEBUG kernel: 3 disabled -05:51:18,517 DEBUG kernel: 4 disabled -05:51:18,517 DEBUG kernel: 5 disabled -05:51:18,517 DEBUG kernel: 6 disabled -05:51:18,517 DEBUG kernel: 7 disabled -05:51:18,517 INFO kernel:x86 PAT enabled: cpu 0, old 0x0, new 0x7010600070106 -05:51:18,517 DEBUG kernel:initial memory mapped : 0 - 20000000 -05:51:18,517 INFO kernel:init_memory_mapping: 0000000000000000-0000000080000000 -05:51:18,517 DEBUG kernel: 0000000000 - 0080000000 page 2M -05:51:18,517 DEBUG kernel:kernel direct mapping tables up to 80000000 @ 10000-13000 -05:51:18,517 INFO kernel:RAMDISK: 7def9000 - 7fecf4ff -05:51:18,517 WARNING kernel:ACPI: RSDP 00000000000f6940 00024 (v02 PTLTD ) -05:51:18,517 WARNING kernel:ACPI: XSDT 000000007fef0333 00054 (v01 INTEL 440BX 06040000 VMW 01324272) -05:51:18,517 WARNING kernel:ACPI: FACP 000000007fefee98 000F4 (v04 INTEL 440BX 06040000 PTL 000F4240) -05:51:18,517 WARNING kernel:ACPI: DSDT 000000007fef055d 0E93B (v01 PTLTD Custom 06040000 MSFT 03000001) -05:51:18,517 WARNING kernel:ACPI: FACS 000000007fefffc0 00040 -05:51:18,517 WARNING kernel:ACPI: BOOT 000000007fef0535 00028 (v01 PTLTD $SBFTBL$ 06040000 LTP 00000001) -05:51:18,517 WARNING kernel:ACPI: APIC 000000007fef04d7 0005E (v01 PTLTD ? APIC 06040000 LTP 00000000) -05:51:18,517 WARNING kernel:ACPI: MCFG 000000007fef049b 0003C (v01 PTLTD $PCITBL$ 06040000 LTP 00000001) -05:51:18,517 WARNING kernel:ACPI: SRAT 000000007fef03fb 000A0 (v02 VMWARE MEMPLUG 06040000 VMW 00000001) -05:51:18,517 WARNING kernel:ACPI: HPET 000000007fef03c3 00038 (v01 VMWARE VMW HPET 06040000 WMV 00000001) -05:51:18,517 DEBUG kernel:ACPI: Local APIC address 0xfee00000 -05:51:18,517 INFO kernel:Setting APIC routing to flat. -05:51:18,517 INFO kernel:SRAT: PXM 0 -> APIC 0 -> Node 0 -05:51:18,517 INFO kernel:SRAT: PXM 0 -> APIC 1 -> Node 0 -05:51:18,517 INFO kernel:SRAT: Node 0 PXM 0 0-a0000 -05:51:18,517 INFO kernel:SRAT: Node 0 PXM 0 100000-80000000 -05:51:18,517 DEBUG kernel:NUMA: Allocated memnodemap from 11000 - 12040 -05:51:18,517 DEBUG kernel:NUMA: Using 20 for the hash shift. -05:51:18,517 INFO kernel:Bootmem setup node 0 0000000000000000-0000000080000000 -05:51:18,517 INFO kernel: NODE_DATA [0000000000012040 - 000000000004603f] -05:51:18,517 INFO kernel: bootmap [0000000000047000 - 0000000000056fff] pages 10 -05:51:18,517 INFO kernel:(8 early reservations) ==> bootmem [0000000000 - 0080000000] -05:51:18,517 INFO kernel: #0 [0000000000 - 0000001000] BIOS data page ==> [0000000000 - 0000001000] -05:51:18,517 INFO kernel: #1 [0000006000 - 0000008000] TRAMPOLINE ==> [0000006000 - 0000008000] -05:51:18,517 INFO kernel: #2 [0001000000 - 000201faa4] TEXT DATA BSS ==> [0001000000 - 000201faa4] -05:51:18,517 INFO kernel: #3 [007def9000 - 007fecf4ff] RAMDISK ==> [007def9000 - 007fecf4ff] -05:51:18,517 INFO kernel: #4 [000009f400 - 0000100000] BIOS reserved ==> [000009f400 - 0000100000] -05:51:18,517 INFO kernel: #5 [0002020000 - 00020201f0] BRK ==> [0002020000 - 00020201f0] -05:51:18,517 INFO kernel: #6 [0000010000 - 0000011000] PGTABLE ==> [0000010000 - 0000011000] -05:51:18,517 INFO kernel: #7 [0000011000 - 0000012040] MEMNODEMAP ==> [0000011000 - 0000012040] -05:51:18,517 INFO kernel:found SMP MP-table at [ffff8800000f69b0] f69b0 -05:51:18,517 DEBUG kernel: [ffffea0000000000-ffffea0001bfffff] PMD -> [ffff880002600000-ffff8800041fffff] on node 0 -05:51:18,517 WARNING kernel:Zone PFN ranges: -05:51:18,517 WARNING kernel: DMA 0x00000010 -> 0x00001000 -05:51:18,517 WARNING kernel: DMA32 0x00001000 -> 0x00100000 -05:51:18,517 WARNING kernel: Normal 0x00100000 -> 0x00100000 -05:51:18,517 WARNING kernel:Movable zone start PFN for each node -05:51:18,517 WARNING kernel:early_node_map[3] active PFN ranges -05:51:18,517 WARNING kernel: 0: 0x00000010 -> 0x0000009f -05:51:18,517 WARNING kernel: 0: 0x00000100 -> 0x0007fef0 -05:51:18,517 WARNING kernel: 0: 0x0007ff00 -> 0x00080000 -05:51:18,517 DEBUG kernel:On node 0 totalpages: 524159 -05:51:18,517 DEBUG kernel: DMA zone: 56 pages used for memmap -05:51:18,517 DEBUG kernel: DMA zone: 101 pages reserved -05:51:18,517 DEBUG kernel: DMA zone: 3826 pages, LIFO batch:0 -05:51:18,517 DEBUG kernel: DMA32 zone: 7112 pages used for memmap -05:51:18,517 DEBUG kernel: DMA32 zone: 513064 pages, LIFO batch:31 -05:51:18,517 INFO kernel:ACPI: PM-Timer IO Port: 0x1008 -05:51:18,517 DEBUG kernel:ACPI: Local APIC address 0xfee00000 -05:51:18,517 INFO kernel:Setting APIC routing to flat. -05:51:18,517 INFO kernel:ACPI: LAPIC (acpi_id[0x00] lapic_id[0x00] enabled) -05:51:18,517 INFO kernel:ACPI: LAPIC (acpi_id[0x01] lapic_id[0x01] enabled) -05:51:18,517 INFO kernel:ACPI: LAPIC_NMI (acpi_id[0x00] high edge lint[0x1]) -05:51:18,517 INFO kernel:ACPI: LAPIC_NMI (acpi_id[0x01] high edge lint[0x1]) -05:51:18,517 INFO kernel:ACPI: IOAPIC (id[0x02] address[0xfec00000] gsi_base[0]) -05:51:18,518 INFO kernel:IOAPIC[0]: apic_id 2, version 17, address 0xfec00000, GSI 0-23 -05:51:18,518 INFO kernel:ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 high edge) -05:51:18,518 DEBUG kernel:ACPI: IRQ0 used by override. -05:51:18,518 DEBUG kernel:ACPI: IRQ2 used by override. -05:51:18,518 DEBUG kernel:ACPI: IRQ9 used by override. -05:51:18,518 INFO kernel:Using ACPI (MADT) for SMP configuration information -05:51:18,518 INFO kernel:ACPI: HPET id: 0x8086af01 base: 0xfed00000 -05:51:18,518 INFO kernel:SMP: Allowing 2 CPUs, 0 hotplug CPUs -05:51:18,518 DEBUG kernel:nr_irqs_gsi: 24 -05:51:18,518 INFO kernel:PM: Registered nosave memory: 000000000009f000 - 00000000000a0000 -05:51:18,518 INFO kernel:PM: Registered nosave memory: 00000000000a0000 - 00000000000ca000 -05:51:18,518 INFO kernel:PM: Registered nosave memory: 00000000000ca000 - 00000000000cc000 -05:51:18,518 INFO kernel:PM: Registered nosave memory: 00000000000cc000 - 00000000000dc000 -05:51:18,518 INFO kernel:PM: Registered nosave memory: 00000000000dc000 - 0000000000100000 -05:51:18,518 INFO kernel:PM: Registered nosave memory: 000000007fef0000 - 000000007feff000 -05:51:18,518 INFO kernel:PM: Registered nosave memory: 000000007feff000 - 000000007ff00000 -05:51:18,518 INFO kernel:Allocating PCI resources starting at 80000000 (gap: 80000000:60000000) -05:51:18,518 INFO kernel:Booting paravirtualized kernel on bare hardware -05:51:18,518 INFO kernel:NR_CPUS:4096 nr_cpumask_bits:2 nr_cpu_ids:2 nr_node_ids:1 -05:51:18,518 INFO kernel:PERCPU: Embedded 31 pages/cpu @ffff880002200000 s94872 r8192 d23912 u1048576 -05:51:18,518 INFO kernel:pcpu-alloc: s94872 r8192 d23912 u1048576 alloc=1*2097152 -05:51:18,518 INFO kernel:pcpu-alloc: [0] 0 1 -05:51:18,518 WARNING kernel:Built 1 zonelists in Node order, mobility grouping on. Total pages: 516890 -05:51:18,520 WARNING kernel:Policy zone: DMA32 -05:51:18,520 NOTICE kernel:Kernel command line: initrd=/images/CentOS-6.5-x86_64/initrd.img ksdevice=bootif lang= kssendmac text ks=http://10.145.88.211/cblr/svc/op/ks/system/server1.1 BOOT_IMAGE=/images/CentOS-6.5-x86_64/vmlinuz BOOTIF=01-00-0c-29-21-89-af -05:51:18,520 INFO kernel:PID hash table entries: 4096 (order: 3, 32768 bytes) -05:51:18,520 INFO kernel:Checking aperture... -05:51:18,520 INFO kernel:No AGP bridge found -05:51:18,520 INFO kernel:Memory: 2018096k/2097152k available (5325k kernel code, 516k absent, 78540k reserved, 7013k data, 1276k init) -05:51:18,520 INFO kernel:Hierarchical RCU implementation. -05:51:18,520 INFO kernel:NR_IRQS:33024 nr_irqs:424 -05:51:18,520 INFO kernel:Extended CMOS year: 2000 -05:51:18,520 WARNING kernel:Console: colour VGA+ 80x25 -05:51:18,520 INFO kernel:console [tty0] enabled -05:51:18,520 INFO kernel:allocated 8388608 bytes of page_cgroup -05:51:18,520 INFO kernel:please try 'cgroup_disable=memory' option if you don't want memory cgroups -05:51:18,520 DEBUG kernel:hpet clockevent registered -05:51:18,520 INFO kernel:TSC freq read from hypervisor : 2400.085 MHz -05:51:18,520 WARNING kernel:Detected 2400.085 MHz processor. -05:51:18,520 INFO kernel:Calibrating delay loop (skipped) preset value.. 4800.17 BogoMIPS (lpj=2400085) -05:51:18,520 INFO kernel:pid_max: default: 32768 minimum: 301 -05:51:18,520 INFO kernel:Security Framework initialized -05:51:18,520 INFO kernel:SELinux: Initializing. -05:51:18,520 DEBUG kernel:SELinux: Starting in permissive mode -05:51:18,520 INFO kernel:Dentry cache hash table entries: 262144 (order: 9, 2097152 bytes) -05:51:18,520 INFO kernel:Inode-cache hash table entries: 131072 (order: 8, 1048576 bytes) -05:51:18,520 WARNING kernel:Mount-cache hash table entries: 256 -05:51:18,520 INFO kernel:Initializing cgroup subsys ns -05:51:18,520 INFO kernel:Initializing cgroup subsys cpuacct -05:51:18,520 INFO kernel:Initializing cgroup subsys memory -05:51:18,520 INFO kernel:Initializing cgroup subsys devices -05:51:18,520 INFO kernel:Initializing cgroup subsys freezer -05:51:18,520 INFO kernel:Initializing cgroup subsys net_cls -05:51:18,520 INFO kernel:Initializing cgroup subsys blkio -05:51:18,520 INFO kernel:Initializing cgroup subsys perf_event -05:51:18,520 INFO kernel:Initializing cgroup subsys net_prio -05:51:18,520 INFO kernel:Disabled fast string operations -05:51:18,520 INFO kernel:CPU: Physical Processor ID: 0 -05:51:18,520 INFO kernel:mce: CPU supports 0 MCE banks -05:51:18,520 INFO kernel:alternatives: switching to unfair spinlock -05:51:18,520 INFO kernel:ACPI: Core revision 20090903 -05:51:18,520 INFO kernel:ftrace: converting mcount calls to 0f 1f 44 00 00 -05:51:18,520 INFO kernel:ftrace: allocating 21769 entries in 86 pages -05:51:18,520 INFO kernel:APIC routing finalized to flat. -05:51:18,520 INFO kernel:..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1 -05:51:18,520 INFO kernel:CPU0: Intel(R) Xeon(R) CPU E5620 @ 2.40GHz stepping 02 -05:51:18,520 INFO kernel:Performance Events: 16-deep LBR, Westmere events, Intel PMU driver. -05:51:18,520 WARNING kernel:CPUID marked event: 'cpu cycles' unavailable -05:51:18,520 WARNING kernel:CPUID marked event: 'instructions' unavailable -05:51:18,520 WARNING kernel:CPUID marked event: 'bus cycles' unavailable -05:51:18,520 WARNING kernel:CPUID marked event: 'cache references' unavailable -05:51:18,520 WARNING kernel:CPUID marked event: 'cache misses' unavailable -05:51:18,520 WARNING kernel:CPUID marked event: 'branch instructions' unavailable -05:51:18,520 WARNING kernel:CPUID marked event: 'branch misses' unavailable -05:51:18,520 INFO kernel:... version: 3 -05:51:18,520 INFO kernel:... bit width: 48 -05:51:18,520 INFO kernel:... generic registers: 4 -05:51:18,520 INFO kernel:... value mask: 0000ffffffffffff -05:51:18,520 INFO kernel:... max period: 000000007fffffff -05:51:18,520 INFO kernel:... fixed-purpose events: 3 -05:51:18,520 INFO kernel:... event mask: 000000070000000f -05:51:18,520 WARNING kernel:NMI watchdog disabled (cpu0): hardware events not enabled -05:51:18,520 INFO kernel:Booting Node 0, Processors #1 Ok. -05:51:18,520 INFO kernel:Disabled fast string operations -05:51:18,520 INFO kernel:mce: CPU supports 0 MCE banks -05:51:18,520 INFO kernel:Skipped synchronization checks as TSC is reliable. -05:51:18,520 INFO kernel:Brought up 2 CPUs -05:51:18,520 INFO kernel:Total of 2 processors activated (9600.34 BogoMIPS). -05:51:18,520 INFO kernel:x86 PAT enabled: cpu 0, old 0x0, new 0x7010600070106 -05:51:18,520 INFO kernel:x86 PAT enabled: cpu 1, old 0x0, new 0x7010600070106 -05:51:18,520 DEBUG kernel:sizeof(vma)=200 bytes -05:51:18,520 DEBUG kernel:sizeof(page)=56 bytes -05:51:18,520 DEBUG kernel:sizeof(inode)=592 bytes -05:51:18,520 DEBUG kernel:sizeof(dentry)=192 bytes -05:51:18,520 DEBUG kernel:sizeof(ext3inode)=800 bytes -05:51:18,520 DEBUG kernel:sizeof(buffer_head)=104 bytes -05:51:18,520 DEBUG kernel:sizeof(skbuff)=232 bytes -05:51:18,520 DEBUG kernel:sizeof(task_struct)=2648 bytes -05:51:18,520 INFO kernel:devtmpfs: initialized -05:51:18,520 INFO kernel:PM: Registering ACPI NVS region at 7feff000 (4096 bytes) -05:51:18,520 INFO kernel:regulator: core version 0.5 -05:51:18,520 INFO kernel:NET: Registered protocol family 16 -05:51:18,520 INFO kernel:ACPI: bus type pci registered -05:51:18,520 NOTICE kernel:PCI: MCFG configuration 0: base e0000000 segment 0 buses 0 - 255 -05:51:18,520 NOTICE kernel:PCI: MCFG area at e0000000 reserved in E820 -05:51:18,520 INFO kernel:PCI: Using MMCONFIG at e0000000 - efffffff -05:51:18,520 INFO kernel:PCI: Using configuration type 1 for base access -05:51:18,520 WARNING kernel:bio: create slab at 0 -05:51:18,520 DEBUG kernel:ACPI: EC: Look up EC in DSDT -05:51:18,520 NOTICE kernel:ACPI: BIOS _OSI(Linux) query ignored -05:51:18,520 INFO kernel:ACPI: Interpreter enabled -05:51:18,520 INFO kernel:ACPI: (supports S0 S1 S4 S5) -05:51:18,520 INFO kernel:ACPI: Using IOAPIC for interrupt routing -05:51:18,520 INFO kernel:ACPI: No dock devices found. -05:51:18,520 INFO kernel:PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug -05:51:18,520 INFO kernel:ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-ff]) -05:51:18,520 INFO kernel:pci_root PNP0A03:00: host bridge window [mem 0x000a0000-0x000bffff] -05:51:18,520 INFO kernel:pci_root PNP0A03:00: host bridge window [mem 0x000d0000-0x000d3fff] -05:51:18,520 INFO kernel:pci_root PNP0A03:00: host bridge window [mem 0x000d4000-0x000d7fff] -05:51:18,520 INFO kernel:pci_root PNP0A03:00: host bridge window [mem 0x000d8000-0x000dbfff] -05:51:18,520 INFO kernel:pci_root PNP0A03:00: host bridge window [mem 0x80000000-0xfebfffff] -05:51:18,520 INFO kernel:pci_root PNP0A03:00: host bridge window [io 0x0000-0x0cf7] -05:51:18,520 INFO kernel:pci_root PNP0A03:00: host bridge window [io 0x0d00-0xfeff] -05:51:18,520 INFO kernel:PCI host bridge to bus 0000:00 -05:51:18,520 INFO kernel:pci_bus 0000:00: root bus resource [mem 0x000a0000-0x000bffff] -05:51:18,520 INFO kernel:pci_bus 0000:00: root bus resource [mem 0x000d0000-0x000d3fff] -05:51:18,520 INFO kernel:pci_bus 0000:00: root bus resource [mem 0x000d4000-0x000d7fff] -05:51:18,520 INFO kernel:pci_bus 0000:00: root bus resource [mem 0x000d8000-0x000dbfff] -05:51:18,520 INFO kernel:pci_bus 0000:00: root bus resource [mem 0x80000000-0xfebfffff] -05:51:18,520 INFO kernel:pci_bus 0000:00: root bus resource [io 0x0000-0x0cf7] -05:51:18,520 INFO kernel:pci_bus 0000:00: root bus resource [io 0x0d00-0xfeff] -05:51:18,520 DEBUG kernel:pci 0000:00:07.1: reg 20: [io 0x10c0-0x10cf] -05:51:18,520 INFO kernel:pci 0000:00:07.3: quirk: [io 0x1000-0x103f] claimed by PIIX4 ACPI -05:51:18,520 INFO kernel:pci 0000:00:07.3: quirk: [io 0x1040-0x104f] claimed by PIIX4 SMB -05:51:18,520 DEBUG kernel:pci 0000:00:07.7: reg 10: [io 0x1080-0x10bf] -05:51:18,520 DEBUG kernel:pci 0000:00:07.7: reg 14: [mem 0xd0000000-0xd0001fff 64bit] -05:51:18,520 DEBUG kernel:pci 0000:00:0f.0: reg 10: [io 0x10d0-0x10df] -05:51:18,520 DEBUG kernel:pci 0000:00:0f.0: reg 14: [mem 0xd8000000-0xdbffffff pref] -05:51:18,520 DEBUG kernel:pci 0000:00:0f.0: reg 18: [mem 0xd0800000-0xd0ffffff] -05:51:18,520 DEBUG kernel:pci 0000:00:0f.0: reg 30: [mem 0x00000000-0x00007fff pref] -05:51:18,520 DEBUG kernel:pci 0000:00:10.0: reg 10: [io 0x1400-0x14ff] -05:51:18,520 DEBUG kernel:pci 0000:00:10.0: reg 14: [mem 0xd0040000-0xd005ffff 64bit] -05:51:18,520 DEBUG kernel:pci 0000:00:10.0: reg 1c: [mem 0xd0020000-0xd003ffff 64bit] -05:51:18,520 DEBUG kernel:pci 0000:00:10.0: reg 30: [mem 0x00000000-0x00003fff pref] -05:51:18,520 INFO kernel:pci 0000:00:15.0: PME# supported from D0 D3hot D3cold -05:51:18,520 INFO kernel:pci 0000:00:15.0: PME# disabled -05:51:18,520 INFO kernel:pci 0000:00:15.1: PME# supported from D0 D3hot D3cold -05:51:18,520 INFO kernel:pci 0000:00:15.1: PME# disabled -05:51:18,520 INFO kernel:pci 0000:00:15.2: PME# supported from D0 D3hot D3cold -05:51:18,520 INFO kernel:pci 0000:00:15.2: PME# disabled -05:51:18,520 INFO kernel:pci 0000:00:15.3: PME# supported from D0 D3hot D3cold -05:51:18,520 INFO kernel:pci 0000:00:15.3: PME# disabled -05:51:18,520 INFO kernel:pci 0000:00:15.4: PME# supported from D0 D3hot D3cold -05:51:18,520 INFO kernel:pci 0000:00:15.4: PME# disabled -05:51:18,520 INFO kernel:pci 0000:00:15.5: PME# supported from D0 D3hot D3cold -05:51:18,520 INFO kernel:pci 0000:00:15.5: PME# disabled -05:51:18,520 INFO kernel:pci 0000:00:15.6: PME# supported from D0 D3hot D3cold -05:51:18,520 INFO kernel:pci 0000:00:15.6: PME# disabled -05:51:18,520 INFO kernel:pci 0000:00:15.7: PME# supported from D0 D3hot D3cold -05:51:18,520 INFO kernel:pci 0000:00:15.7: PME# disabled -05:51:18,520 INFO kernel:pci 0000:00:16.0: PME# supported from D0 D3hot D3cold -05:51:18,520 INFO kernel:pci 0000:00:16.0: PME# disabled -05:51:18,520 INFO kernel:pci 0000:00:16.1: PME# supported from D0 D3hot D3cold -05:51:18,520 INFO kernel:pci 0000:00:16.1: PME# disabled -05:51:18,520 INFO kernel:pci 0000:00:16.2: PME# supported from D0 D3hot D3cold -05:51:18,520 INFO kernel:pci 0000:00:16.2: PME# disabled -05:51:18,520 INFO kernel:pci 0000:00:16.3: PME# supported from D0 D3hot D3cold -05:51:18,520 INFO kernel:pci 0000:00:16.3: PME# disabled -05:51:18,520 INFO kernel:pci 0000:00:16.4: PME# supported from D0 D3hot D3cold -05:51:18,520 INFO kernel:pci 0000:00:16.4: PME# disabled -05:51:18,520 INFO kernel:pci 0000:00:16.5: PME# supported from D0 D3hot D3cold -05:51:18,520 INFO kernel:pci 0000:00:16.5: PME# disabled -05:51:18,520 INFO kernel:pci 0000:00:16.6: PME# supported from D0 D3hot D3cold -05:51:18,520 INFO kernel:pci 0000:00:16.6: PME# disabled -05:51:18,520 INFO kernel:pci 0000:00:16.7: PME# supported from D0 D3hot D3cold -05:51:18,520 INFO kernel:pci 0000:00:16.7: PME# disabled -05:51:18,520 INFO kernel:pci 0000:00:17.0: PME# supported from D0 D3hot D3cold -05:51:18,520 INFO kernel:pci 0000:00:17.0: PME# disabled -05:51:18,520 INFO kernel:pci 0000:00:17.1: PME# supported from D0 D3hot D3cold -05:51:18,520 INFO kernel:pci 0000:00:17.1: PME# disabled -05:51:18,520 INFO kernel:pci 0000:00:17.2: PME# supported from D0 D3hot D3cold -05:51:18,520 INFO kernel:pci 0000:00:17.2: PME# disabled -05:51:18,520 INFO kernel:pci 0000:00:17.3: PME# supported from D0 D3hot D3cold -05:51:18,520 INFO kernel:pci 0000:00:17.3: PME# disabled -05:51:18,520 INFO kernel:pci 0000:00:17.4: PME# supported from D0 D3hot D3cold -05:51:18,520 INFO kernel:pci 0000:00:17.4: PME# disabled -05:51:18,520 INFO kernel:pci 0000:00:17.5: PME# supported from D0 D3hot D3cold -05:51:18,520 INFO kernel:pci 0000:00:17.5: PME# disabled -05:51:18,520 INFO kernel:pci 0000:00:17.6: PME# supported from D0 D3hot D3cold -05:51:18,520 INFO kernel:pci 0000:00:17.6: PME# disabled -05:51:18,520 INFO kernel:pci 0000:00:17.7: PME# supported from D0 D3hot D3cold -05:51:18,520 INFO kernel:pci 0000:00:17.7: PME# disabled -05:51:18,520 INFO kernel:pci 0000:00:18.0: PME# supported from D0 D3hot D3cold -05:51:18,520 INFO kernel:pci 0000:00:18.0: PME# disabled -05:51:18,520 INFO kernel:pci 0000:00:18.1: PME# supported from D0 D3hot D3cold -05:51:18,520 INFO kernel:pci 0000:00:18.1: PME# disabled -05:51:18,520 INFO kernel:pci 0000:00:18.2: PME# supported from D0 D3hot D3cold -05:51:18,520 INFO kernel:pci 0000:00:18.2: PME# disabled -05:51:18,520 INFO kernel:pci 0000:00:18.3: PME# supported from D0 D3hot D3cold -05:51:18,520 INFO kernel:pci 0000:00:18.3: PME# disabled -05:51:18,520 INFO kernel:pci 0000:00:18.4: PME# supported from D0 D3hot D3cold -05:51:18,520 INFO kernel:pci 0000:00:18.4: PME# disabled -05:51:18,520 INFO kernel:pci 0000:00:18.5: PME# supported from D0 D3hot D3cold -05:51:18,520 INFO kernel:pci 0000:00:18.5: PME# disabled -05:51:18,520 INFO kernel:pci 0000:00:18.6: PME# supported from D0 D3hot D3cold -05:51:18,520 INFO kernel:pci 0000:00:18.6: PME# disabled -05:51:18,520 INFO kernel:pci 0000:00:18.7: PME# supported from D0 D3hot D3cold -05:51:18,520 INFO kernel:pci 0000:00:18.7: PME# disabled -05:51:18,520 INFO kernel:pci 0000:00:01.0: PCI bridge to [bus 01-01] -05:51:18,520 DEBUG kernel:pci 0000:00:01.0: bridge window [io 0xf000-0x0000] (disabled) -05:51:18,520 DEBUG kernel:pci 0000:00:01.0: bridge window [mem 0xfff00000-0x000fffff] (disabled) -05:51:18,520 DEBUG kernel:pci 0000:00:01.0: bridge window [mem 0xfff00000-0x000fffff pref] (disabled) -05:51:18,520 DEBUG kernel:pci 0000:02:00.0: reg 10: [mem 0xd1020000-0xd103ffff 64bit] -05:51:18,520 DEBUG kernel:pci 0000:02:00.0: reg 18: [mem 0xd1000000-0xd100ffff 64bit] -05:51:18,520 DEBUG kernel:pci 0000:02:00.0: reg 20: [io 0x2000-0x203f] -05:51:18,520 DEBUG kernel:pci 0000:02:00.0: reg 30: [mem 0x00000000-0x0000ffff pref] -05:51:18,520 INFO kernel:pci 0000:02:00.0: PME# supported from D0 D3hot D3cold -05:51:18,520 INFO kernel:pci 0000:02:00.0: PME# disabled -05:51:18,520 DEBUG kernel:pci 0000:02:01.0: reg 10: [mem 0xd1040000-0xd105ffff 64bit] -05:51:18,520 DEBUG kernel:pci 0000:02:01.0: reg 18: [mem 0xd1010000-0xd101ffff 64bit] -05:51:18,520 DEBUG kernel:pci 0000:02:01.0: reg 20: [io 0x2040-0x207f] -05:51:18,520 DEBUG kernel:pci 0000:02:01.0: reg 30: [mem 0x00000000-0x0000ffff pref] -05:51:18,520 INFO kernel:pci 0000:02:01.0: PME# supported from D0 D3hot D3cold -05:51:18,520 INFO kernel:pci 0000:02:01.0: PME# disabled -05:51:18,520 DEBUG kernel:pci 0000:02:02.0: reg 10: [mem 0xd1080000-0xd109ffff 64bit] -05:51:18,520 DEBUG kernel:pci 0000:02:02.0: reg 18: [mem 0xd1060000-0xd106ffff 64bit] -05:51:18,520 DEBUG kernel:pci 0000:02:02.0: reg 20: [io 0x2080-0x20bf] -05:51:18,520 DEBUG kernel:pci 0000:02:02.0: reg 30: [mem 0x00000000-0x0000ffff pref] -05:51:18,520 INFO kernel:pci 0000:02:02.0: PME# supported from D0 D3hot D3cold -05:51:18,520 INFO kernel:pci 0000:02:02.0: PME# disabled -05:51:18,520 DEBUG kernel:pci 0000:02:03.0: reg 10: [mem 0xd10a0000-0xd10bffff 64bit] -05:51:18,520 DEBUG kernel:pci 0000:02:03.0: reg 18: [mem 0xd1070000-0xd107ffff 64bit] -05:51:18,520 DEBUG kernel:pci 0000:02:03.0: reg 20: [io 0x20c0-0x20ff] -05:51:18,520 DEBUG kernel:pci 0000:02:03.0: reg 30: [mem 0x00000000-0x0000ffff pref] -05:51:18,520 INFO kernel:pci 0000:02:03.0: PME# supported from D0 D3hot D3cold -05:51:18,520 INFO kernel:pci 0000:02:03.0: PME# disabled -05:51:18,520 INFO kernel:pci 0000:00:11.0: PCI bridge to [bus 02-02] (subtractive decode) -05:51:18,520 DEBUG kernel:pci 0000:00:11.0: bridge window [io 0x2000-0x3fff] -05:51:18,520 DEBUG kernel:pci 0000:00:11.0: bridge window [mem 0xd1000000-0xd23fffff] -05:51:18,520 DEBUG kernel:pci 0000:00:11.0: bridge window [mem 0xdc400000-0xdc9fffff 64bit pref] -05:51:18,520 DEBUG kernel:pci 0000:00:11.0: bridge window [mem 0x000a0000-0x000bffff] (subtractive decode) -05:51:18,520 DEBUG kernel:pci 0000:00:11.0: bridge window [mem 0x000d0000-0x000d3fff] (subtractive decode) -05:51:18,520 DEBUG kernel:pci 0000:00:11.0: bridge window [mem 0x000d4000-0x000d7fff] (subtractive decode) -05:51:18,520 DEBUG kernel:pci 0000:00:11.0: bridge window [mem 0x000d8000-0x000dbfff] (subtractive decode) -05:51:18,520 DEBUG kernel:pci 0000:00:11.0: bridge window [mem 0x80000000-0xfebfffff] (subtractive decode) -05:51:18,520 DEBUG kernel:pci 0000:00:11.0: bridge window [io 0x0000-0x0cf7] (subtractive decode) -05:51:18,520 DEBUG kernel:pci 0000:00:11.0: bridge window [io 0x0d00-0xfeff] (subtractive decode) -05:51:18,520 INFO kernel:pci 0000:00:15.0: PCI bridge to [bus 03-03] -05:51:18,520 DEBUG kernel:pci 0000:00:15.0: bridge window [io 0x4000-0x4fff] -05:51:18,520 DEBUG kernel:pci 0000:00:15.0: bridge window [mem 0xd2400000-0xd24fffff] -05:51:18,520 DEBUG kernel:pci 0000:00:15.0: bridge window [mem 0xd4400000-0xd44fffff 64bit pref] -05:51:18,520 INFO kernel:pci 0000:00:15.1: PCI bridge to [bus 04-04] -05:51:18,520 DEBUG kernel:pci 0000:00:15.1: bridge window [io 0x8000-0x8fff] -05:51:18,520 DEBUG kernel:pci 0000:00:15.1: bridge window [mem 0xd2800000-0xd28fffff] -05:51:18,520 DEBUG kernel:pci 0000:00:15.1: bridge window [mem 0xd4800000-0xd48fffff 64bit pref] -05:51:18,520 INFO kernel:pci 0000:00:15.2: PCI bridge to [bus 05-05] -05:51:18,520 DEBUG kernel:pci 0000:00:15.2: bridge window [io 0xc000-0xcfff] -05:51:18,520 DEBUG kernel:pci 0000:00:15.2: bridge window [mem 0xd2c00000-0xd2cfffff] -05:51:18,520 DEBUG kernel:pci 0000:00:15.2: bridge window [mem 0xdcb00000-0xdcbfffff 64bit pref] -05:51:18,520 INFO kernel:pci 0000:00:15.3: PCI bridge to [bus 06-06] -05:51:18,520 DEBUG kernel:pci 0000:00:15.3: bridge window [io 0xf000-0x0000] (disabled) -05:51:18,520 DEBUG kernel:pci 0000:00:15.3: bridge window [mem 0xd3000000-0xd30fffff] -05:51:18,520 DEBUG kernel:pci 0000:00:15.3: bridge window [mem 0xdcd00000-0xdcdfffff 64bit pref] -05:51:18,520 INFO kernel:pci 0000:00:15.4: PCI bridge to [bus 07-07] -05:51:18,520 DEBUG kernel:pci 0000:00:15.4: bridge window [io 0xf000-0x0000] (disabled) -05:51:18,520 DEBUG kernel:pci 0000:00:15.4: bridge window [mem 0xd3400000-0xd34fffff] -05:51:18,520 DEBUG kernel:pci 0000:00:15.4: bridge window [mem 0xdcf00000-0xdcffffff 64bit pref] -05:51:18,520 INFO kernel:pci 0000:00:15.5: PCI bridge to [bus 08-08] -05:51:18,520 DEBUG kernel:pci 0000:00:15.5: bridge window [io 0xf000-0x0000] (disabled) -05:51:18,520 DEBUG kernel:pci 0000:00:15.5: bridge window [mem 0xd3800000-0xd38fffff] -05:51:18,520 DEBUG kernel:pci 0000:00:15.5: bridge window [mem 0xdd100000-0xdd1fffff 64bit pref] -05:51:18,520 INFO kernel:pci 0000:00:15.6: PCI bridge to [bus 09-09] -05:51:18,520 DEBUG kernel:pci 0000:00:15.6: bridge window [io 0xf000-0x0000] (disabled) -05:51:18,520 DEBUG kernel:pci 0000:00:15.6: bridge window [mem 0xd3c00000-0xd3cfffff] -05:51:18,520 DEBUG kernel:pci 0000:00:15.6: bridge window [mem 0xdd300000-0xdd3fffff 64bit pref] -05:51:18,520 INFO kernel:pci 0000:00:15.7: PCI bridge to [bus 0a-0a] -05:51:18,520 DEBUG kernel:pci 0000:00:15.7: bridge window [io 0xf000-0x0000] (disabled) -05:51:18,520 DEBUG kernel:pci 0000:00:15.7: bridge window [mem 0xd4000000-0xd40fffff] -05:51:18,520 DEBUG kernel:pci 0000:00:15.7: bridge window [mem 0xdd500000-0xdd5fffff 64bit pref] -05:51:18,520 INFO kernel:pci 0000:00:16.0: PCI bridge to [bus 0b-0b] -05:51:18,520 DEBUG kernel:pci 0000:00:16.0: bridge window [io 0x5000-0x5fff] -05:51:18,520 DEBUG kernel:pci 0000:00:16.0: bridge window [mem 0xd2500000-0xd25fffff] -05:51:18,520 DEBUG kernel:pci 0000:00:16.0: bridge window [mem 0xd4500000-0xd45fffff 64bit pref] -05:51:18,521 INFO kernel:pci 0000:00:16.1: PCI bridge to [bus 0c-0c] -05:51:18,521 DEBUG kernel:pci 0000:00:16.1: bridge window [io 0x9000-0x9fff] -05:51:18,521 DEBUG kernel:pci 0000:00:16.1: bridge window [mem 0xd2900000-0xd29fffff] -05:51:18,521 DEBUG kernel:pci 0000:00:16.1: bridge window [mem 0xd4900000-0xd49fffff 64bit pref] -05:51:18,521 INFO kernel:pci 0000:00:16.2: PCI bridge to [bus 0d-0d] -05:51:18,521 DEBUG kernel:pci 0000:00:16.2: bridge window [io 0xd000-0xdfff] -05:51:18,521 DEBUG kernel:pci 0000:00:16.2: bridge window [mem 0xd2d00000-0xd2dfffff] -05:51:18,521 DEBUG kernel:pci 0000:00:16.2: bridge window [mem 0xd4b00000-0xd4bfffff 64bit pref] -05:51:18,521 INFO kernel:pci 0000:00:16.3: PCI bridge to [bus 0e-0e] -05:51:18,521 DEBUG kernel:pci 0000:00:16.3: bridge window [io 0xf000-0x0000] (disabled) -05:51:18,521 DEBUG kernel:pci 0000:00:16.3: bridge window [mem 0xd3100000-0xd31fffff] -05:51:18,521 DEBUG kernel:pci 0000:00:16.3: bridge window [mem 0xd4d00000-0xd4dfffff 64bit pref] -05:51:18,521 INFO kernel:pci 0000:00:16.4: PCI bridge to [bus 0f-0f] -05:51:18,521 DEBUG kernel:pci 0000:00:16.4: bridge window [io 0xf000-0x0000] (disabled) -05:51:18,521 DEBUG kernel:pci 0000:00:16.4: bridge window [mem 0xd3500000-0xd35fffff] -05:51:18,521 DEBUG kernel:pci 0000:00:16.4: bridge window [mem 0xd4f00000-0xd4ffffff 64bit pref] -05:51:18,521 INFO kernel:pci 0000:00:16.5: PCI bridge to [bus 10-10] -05:51:18,521 DEBUG kernel:pci 0000:00:16.5: bridge window [io 0xf000-0x0000] (disabled) -05:51:18,521 DEBUG kernel:pci 0000:00:16.5: bridge window [mem 0xd3900000-0xd39fffff] -05:51:18,521 DEBUG kernel:pci 0000:00:16.5: bridge window [mem 0xd5100000-0xd51fffff 64bit pref] -05:51:18,521 INFO kernel:pci 0000:00:16.6: PCI bridge to [bus 11-11] -05:51:18,521 DEBUG kernel:pci 0000:00:16.6: bridge window [io 0xf000-0x0000] (disabled) -05:51:18,521 DEBUG kernel:pci 0000:00:16.6: bridge window [mem 0xd3d00000-0xd3dfffff] -05:51:18,521 DEBUG kernel:pci 0000:00:16.6: bridge window [mem 0xd5300000-0xd53fffff 64bit pref] -05:51:18,521 INFO kernel:pci 0000:00:16.7: PCI bridge to [bus 12-12] -05:51:18,521 DEBUG kernel:pci 0000:00:16.7: bridge window [io 0xf000-0x0000] (disabled) -05:51:18,521 DEBUG kernel:pci 0000:00:16.7: bridge window [mem 0xd4100000-0xd41fffff] -05:51:18,521 DEBUG kernel:pci 0000:00:16.7: bridge window [mem 0xd5500000-0xd55fffff 64bit pref] -05:51:18,521 INFO kernel:pci 0000:00:17.0: PCI bridge to [bus 13-13] -05:51:18,521 DEBUG kernel:pci 0000:00:17.0: bridge window [io 0x6000-0x6fff] -05:51:18,521 DEBUG kernel:pci 0000:00:17.0: bridge window [mem 0xd2600000-0xd26fffff] -05:51:18,521 DEBUG kernel:pci 0000:00:17.0: bridge window [mem 0xd4600000-0xd46fffff 64bit pref] -05:51:18,521 INFO kernel:pci 0000:00:17.1: PCI bridge to [bus 14-14] -05:51:18,521 DEBUG kernel:pci 0000:00:17.1: bridge window [io 0xa000-0xafff] -05:51:18,521 DEBUG kernel:pci 0000:00:17.1: bridge window [mem 0xd2a00000-0xd2afffff] -05:51:18,521 DEBUG kernel:pci 0000:00:17.1: bridge window [mem 0xdca00000-0xdcafffff 64bit pref] -05:51:18,521 INFO kernel:pci 0000:00:17.2: PCI bridge to [bus 15-15] -05:51:18,521 DEBUG kernel:pci 0000:00:17.2: bridge window [io 0xe000-0xefff] -05:51:18,521 DEBUG kernel:pci 0000:00:17.2: bridge window [mem 0xd2e00000-0xd2efffff] -05:51:18,521 DEBUG kernel:pci 0000:00:17.2: bridge window [mem 0xdcc00000-0xdccfffff 64bit pref] -05:51:18,521 INFO kernel:pci 0000:00:17.3: PCI bridge to [bus 16-16] -05:51:18,521 DEBUG kernel:pci 0000:00:17.3: bridge window [io 0xf000-0x0000] (disabled) -05:51:18,521 DEBUG kernel:pci 0000:00:17.3: bridge window [mem 0xd3200000-0xd32fffff] -05:51:18,521 DEBUG kernel:pci 0000:00:17.3: bridge window [mem 0xdce00000-0xdcefffff 64bit pref] -05:51:18,521 INFO kernel:pci 0000:00:17.4: PCI bridge to [bus 17-17] -05:51:18,521 DEBUG kernel:pci 0000:00:17.4: bridge window [io 0xf000-0x0000] (disabled) -05:51:18,521 DEBUG kernel:pci 0000:00:17.4: bridge window [mem 0xd3600000-0xd36fffff] -05:51:18,521 DEBUG kernel:pci 0000:00:17.4: bridge window [mem 0xdd000000-0xdd0fffff 64bit pref] -05:51:18,521 INFO kernel:pci 0000:00:17.5: PCI bridge to [bus 18-18] -05:51:18,521 DEBUG kernel:pci 0000:00:17.5: bridge window [io 0xf000-0x0000] (disabled) -05:51:18,521 DEBUG kernel:pci 0000:00:17.5: bridge window [mem 0xd3a00000-0xd3afffff] -05:51:18,521 DEBUG kernel:pci 0000:00:17.5: bridge window [mem 0xdd200000-0xdd2fffff 64bit pref] -05:51:18,521 INFO kernel:pci 0000:00:17.6: PCI bridge to [bus 19-19] -05:51:18,521 DEBUG kernel:pci 0000:00:17.6: bridge window [io 0xf000-0x0000] (disabled) -05:51:18,521 DEBUG kernel:pci 0000:00:17.6: bridge window [mem 0xd3e00000-0xd3efffff] -05:51:18,521 DEBUG kernel:pci 0000:00:17.6: bridge window [mem 0xdd400000-0xdd4fffff 64bit pref] -05:51:18,521 INFO kernel:pci 0000:00:17.7: PCI bridge to [bus 1a-1a] -05:51:18,521 DEBUG kernel:pci 0000:00:17.7: bridge window [io 0xf000-0x0000] (disabled) -05:51:18,521 DEBUG kernel:pci 0000:00:17.7: bridge window [mem 0xd4200000-0xd42fffff] -05:51:18,521 DEBUG kernel:pci 0000:00:17.7: bridge window [mem 0xdd600000-0xdd6fffff 64bit pref] -05:51:18,521 INFO kernel:pci 0000:00:18.0: PCI bridge to [bus 1b-1b] -05:51:18,521 DEBUG kernel:pci 0000:00:18.0: bridge window [io 0x7000-0x7fff] -05:51:18,521 DEBUG kernel:pci 0000:00:18.0: bridge window [mem 0xd2700000-0xd27fffff] -05:51:18,521 DEBUG kernel:pci 0000:00:18.0: bridge window [mem 0xd4700000-0xd47fffff 64bit pref] -05:51:18,521 INFO kernel:pci 0000:00:18.1: PCI bridge to [bus 1c-1c] -05:51:18,521 DEBUG kernel:pci 0000:00:18.1: bridge window [io 0xb000-0xbfff] -05:51:18,521 DEBUG kernel:pci 0000:00:18.1: bridge window [mem 0xd2b00000-0xd2bfffff] -05:51:18,521 DEBUG kernel:pci 0000:00:18.1: bridge window [mem 0xd4a00000-0xd4afffff 64bit pref] -05:51:18,521 INFO kernel:pci 0000:00:18.2: PCI bridge to [bus 1d-1d] -05:51:18,521 DEBUG kernel:pci 0000:00:18.2: bridge window [io 0xf000-0xffff] -05:51:18,521 DEBUG kernel:pci 0000:00:18.2: bridge window [mem 0xd2f00000-0xd2ffffff] -05:51:18,521 DEBUG kernel:pci 0000:00:18.2: bridge window [mem 0xd4c00000-0xd4cfffff 64bit pref] -05:51:18,521 INFO kernel:pci 0000:00:18.3: PCI bridge to [bus 1e-1e] -05:51:18,521 DEBUG kernel:pci 0000:00:18.3: bridge window [io 0xf000-0x0000] (disabled) -05:51:18,521 DEBUG kernel:pci 0000:00:18.3: bridge window [mem 0xd3300000-0xd33fffff] -05:51:18,521 DEBUG kernel:pci 0000:00:18.3: bridge window [mem 0xd4e00000-0xd4efffff 64bit pref] -05:51:18,521 INFO kernel:pci 0000:00:18.4: PCI bridge to [bus 1f-1f] -05:51:18,521 DEBUG kernel:pci 0000:00:18.4: bridge window [io 0xf000-0x0000] (disabled) -05:51:18,521 DEBUG kernel:pci 0000:00:18.4: bridge window [mem 0xd3700000-0xd37fffff] -05:51:18,521 DEBUG kernel:pci 0000:00:18.4: bridge window [mem 0xd5000000-0xd50fffff 64bit pref] -05:51:18,521 INFO kernel:pci 0000:00:18.5: PCI bridge to [bus 20-20] -05:51:18,521 DEBUG kernel:pci 0000:00:18.5: bridge window [io 0xf000-0x0000] (disabled) -05:51:18,521 DEBUG kernel:pci 0000:00:18.5: bridge window [mem 0xd3b00000-0xd3bfffff] -05:51:18,521 DEBUG kernel:pci 0000:00:18.5: bridge window [mem 0xd5200000-0xd52fffff 64bit pref] -05:51:18,521 INFO kernel:pci 0000:00:18.6: PCI bridge to [bus 21-21] -05:51:18,521 DEBUG kernel:pci 0000:00:18.6: bridge window [io 0xf000-0x0000] (disabled) -05:51:18,521 DEBUG kernel:pci 0000:00:18.6: bridge window [mem 0xd3f00000-0xd3ffffff] -05:51:18,521 DEBUG kernel:pci 0000:00:18.6: bridge window [mem 0xd5400000-0xd54fffff 64bit pref] -05:51:18,521 INFO kernel:pci 0000:00:18.7: PCI bridge to [bus 22-22] -05:51:18,521 DEBUG kernel:pci 0000:00:18.7: bridge window [io 0xf000-0x0000] (disabled) -05:51:18,521 DEBUG kernel:pci 0000:00:18.7: bridge window [mem 0xd4300000-0xd43fffff] -05:51:18,521 DEBUG kernel:pci 0000:00:18.7: bridge window [mem 0xd5600000-0xd56fffff 64bit pref] -05:51:18,521 DEBUG kernel:ACPI: PCI Interrupt Routing Table [\_SB_.PCI0._PRT] -05:51:18,521 INFO kernel: pci0000:00: Requesting ACPI _OSC control (0x1d) -05:51:18,521 INFO kernel: pci0000:00: ACPI _OSC control (0x15) granted -05:51:18,521 INFO kernel:ACPI: PCI Interrupt Link [LNKA] (IRQs 3 4 5 6 7 *9 10 11 14 15) -05:51:18,521 INFO kernel:ACPI: PCI Interrupt Link [LNKB] (IRQs 3 4 5 6 7 9 10 *11 14 15) -05:51:18,521 INFO kernel:ACPI: PCI Interrupt Link [LNKC] (IRQs 3 4 5 6 7 9 *10 11 14 15) -05:51:18,521 INFO kernel:ACPI: PCI Interrupt Link [LNKD] (IRQs 3 4 *5 6 7 9 10 11 14 15) -05:51:18,521 INFO kernel:vgaarb: device added: PCI:0000:00:0f.0,decodes=io+mem,owns=io+mem,locks=none -05:51:18,521 INFO kernel:vgaarb: loaded -05:51:18,521 INFO kernel:vgaarb: bridge control possible 0000:00:0f.0 -05:51:18,521 NOTICE kernel:SCSI subsystem initialized -05:51:18,521 DEBUG kernel:libata version 3.00 loaded. -05:51:18,521 INFO kernel:usbcore: registered new interface driver usbfs -05:51:18,521 INFO kernel:usbcore: registered new interface driver hub -05:51:18,521 INFO kernel:usbcore: registered new device driver usb -05:51:18,521 INFO kernel:PCI: Using ACPI for IRQ routing -05:51:18,521 DEBUG kernel:PCI: old code would have set cacheline size to 32 bytes, but clflush_size = 64 -05:51:18,521 DEBUG kernel:PCI: pci_cache_line_size set to 64 bytes -05:51:18,521 INFO kernel:pci 0000:00:18.2: no compatible bridge window for [io 0xf000-0xffff] -05:51:18,521 INFO kernel:pci 0000:00:18.2: can't reserve window [io 0xf000-0xffff] -05:51:18,521 NOTICE kernel:lo: Dropping TSO features since no CSUM feature. -05:51:18,521 INFO kernel:NetLabel: Initializing -05:51:18,521 INFO kernel:NetLabel: domain hash size = 128 -05:51:18,521 INFO kernel:NetLabel: protocols = UNLABELED CIPSOv4 -05:51:18,521 INFO kernel:NetLabel: unlabeled traffic allowed by default -05:51:18,521 INFO kernel:HPET: 16 timers in total, 0 timers will be used for per-cpu timer -05:51:18,521 INFO kernel:hpet0: at MMIO 0xfed00000, IRQs 2, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 -05:51:18,521 INFO kernel:hpet0: 16 comparators, 64-bit 14.318180 MHz counter -05:51:18,521 INFO kernel:Switching to clocksource hpet -05:51:18,521 INFO kernel:pnp: PnP ACPI init -05:51:18,521 INFO kernel:ACPI: bus type pnp registered -05:51:18,521 DEBUG kernel:pnp 00:00: [io 0x0cf8-0x0cff] -05:51:18,521 DEBUG kernel:pnp 00:00: Plug and Play ACPI device, IDs PNP0a03 PNP0a08 (active) -05:51:18,521 DEBUG kernel:pnp 00:01: [io 0x0010-0x001f] -05:51:18,521 DEBUG kernel:pnp 00:01: [io 0x0024-0x0025] -05:51:18,521 DEBUG kernel:pnp 00:01: [io 0x0028-0x0029] -05:51:18,521 DEBUG kernel:pnp 00:01: [io 0x002c-0x002d] -05:51:18,521 DEBUG kernel:pnp 00:01: [io 0x002e-0x002f] -05:51:18,521 DEBUG kernel:pnp 00:01: [io 0x0030-0x0031] -05:51:18,521 DEBUG kernel:pnp 00:01: [io 0x0034-0x0035] -05:51:18,521 DEBUG kernel:pnp 00:01: [io 0x0038-0x0039] -05:51:18,521 DEBUG kernel:pnp 00:01: [io 0x003c-0x003d] -05:51:18,521 DEBUG kernel:pnp 00:01: [io 0x0050-0x0053] -05:51:18,521 DEBUG kernel:pnp 00:01: [io 0x0072-0x0077] -05:51:18,521 DEBUG kernel:pnp 00:01: [io 0x0080] -05:51:18,521 DEBUG kernel:pnp 00:01: [io 0x0090-0x009f] -05:51:18,521 DEBUG kernel:pnp 00:01: [io 0x00a4-0x00a5] -05:51:18,521 DEBUG kernel:pnp 00:01: [io 0x00a8-0x00a9] -05:51:18,521 DEBUG kernel:pnp 00:01: [io 0x00ac-0x00ad] -05:51:18,521 DEBUG kernel:pnp 00:01: [io 0x00b0-0x00b5] -05:51:18,521 DEBUG kernel:pnp 00:01: [io 0x00b8-0x00b9] -05:51:18,521 DEBUG kernel:pnp 00:01: [io 0x00bc-0x00bd] -05:51:18,521 DEBUG kernel:pnp 00:01: [io 0x1000-0x103f] -05:51:18,521 DEBUG kernel:pnp 00:01: [io 0x1040-0x104f] -05:51:18,521 DEBUG kernel:pnp 00:01: [io 0x0cf0-0x0cf1] -05:51:18,521 DEBUG kernel:pnp 00:01: Plug and Play ACPI device, IDs PNP0c02 (active) -05:51:18,521 DEBUG kernel:pnp 00:02: [io 0x0000-0x000f] -05:51:18,521 DEBUG kernel:pnp 00:02: [io 0x0081-0x008f] -05:51:18,521 DEBUG kernel:pnp 00:02: [io 0x00c0-0x00df] -05:51:18,521 DEBUG kernel:pnp 00:02: [dma 4] -05:51:18,521 DEBUG kernel:pnp 00:02: Plug and Play ACPI device, IDs PNP0200 (active) -05:51:18,521 DEBUG kernel:pnp 00:03: [io 0x0020-0x0021] -05:51:18,521 DEBUG kernel:pnp 00:03: [io 0x00a0-0x00a1] -05:51:18,521 DEBUG kernel:pnp 00:03: [io 0x04d0-0x04d1] -05:51:18,521 DEBUG kernel:pnp 00:03: [irq 2 disabled] -05:51:18,521 DEBUG kernel:pnp 00:03: Plug and Play ACPI device, IDs PNP0001 (active) -05:51:18,521 DEBUG kernel:pnp 00:04: [io 0x0070-0x0071] -05:51:18,521 DEBUG kernel:pnp 00:04: [irq 8] -05:51:18,521 DEBUG kernel:pnp 00:04: Plug and Play ACPI device, IDs PNP0b00 (active) -05:51:18,521 DEBUG kernel:pnp 00:05: [io 0x0061] -05:51:18,521 DEBUG kernel:pnp 00:05: Plug and Play ACPI device, IDs PNP0800 (active) -05:51:18,521 DEBUG kernel:pnp 00:06: [io 0x0060] -05:51:18,521 DEBUG kernel:pnp 00:06: [io 0x0064] -05:51:18,521 DEBUG kernel:pnp 00:06: [irq 1] -05:51:18,521 DEBUG kernel:pnp 00:06: Plug and Play ACPI device, IDs PNP0303 (active) -05:51:18,521 DEBUG kernel:pnp 00:07: [irq 12] -05:51:18,521 DEBUG kernel:pnp 00:07: Plug and Play ACPI device, IDs PNP0f13 (active) -05:51:18,521 DEBUG kernel:pnp 00:08: [mem 0xfed00000-0xfed003ff] -05:51:18,521 DEBUG kernel:pnp 00:08: Plug and Play ACPI device, IDs PNP0103 PNP0c01 (active) -05:51:18,521 DEBUG kernel:pnp 00:09: [io 0x0378-0x037f] -05:51:18,521 DEBUG kernel:pnp 00:09: [irq 7] -05:51:18,521 DEBUG kernel:pnp 00:09: Plug and Play ACPI device, IDs PNP0400 (active) -05:51:18,521 DEBUG kernel:pnp 00:0a: [io 0x03f8-0x03ff] -05:51:18,521 DEBUG kernel:pnp 00:0a: [irq 4] -05:51:18,521 DEBUG kernel:pnp 00:0a: Plug and Play ACPI device, IDs PNP0501 (active) -05:51:18,521 DEBUG kernel:pnp 00:0b: [io 0x02f8-0x02ff] -05:51:18,521 DEBUG kernel:pnp 00:0b: [irq 3] -05:51:18,521 DEBUG kernel:pnp 00:0b: Plug and Play ACPI device, IDs PNP0501 (active) -05:51:18,521 DEBUG kernel:pnp 00:0c: [io 0x03f0-0x03f5] -05:51:18,521 DEBUG kernel:pnp 00:0c: [io 0x03f7] -05:51:18,521 DEBUG kernel:pnp 00:0c: [irq 6] -05:51:18,521 DEBUG kernel:pnp 00:0c: [dma 2] -05:51:18,521 DEBUG kernel:pnp 00:0c: Plug and Play ACPI device, IDs PNP0700 (active) -05:51:18,521 DEBUG kernel:pnp 00:0d: [mem 0xe0000000-0xefffffff] -05:51:18,521 DEBUG kernel:pnp 00:0d: [io 0x1060-0x107f] -05:51:18,521 DEBUG kernel:pnp 00:0d: [mem 0xd0200000-0xd03fffff] -05:51:18,521 DEBUG kernel:pnp 00:0d: Plug and Play ACPI device, IDs PNP0c02 (active) -05:51:18,521 INFO kernel:pnp: PnP ACPI: found 14 devices -05:51:18,521 INFO kernel:ACPI: ACPI bus type pnp unregistered -05:51:18,521 INFO kernel:system 00:01: [io 0x1000-0x103f] has been reserved -05:51:18,521 INFO kernel:system 00:01: [io 0x1040-0x104f] has been reserved -05:51:18,521 INFO kernel:system 00:01: [io 0x0cf0-0x0cf1] has been reserved -05:51:18,521 INFO kernel:system 00:08: [mem 0xfed00000-0xfed003ff] has been reserved -05:51:18,521 INFO kernel:system 00:0d: [io 0x1060-0x107f] has been reserved -05:51:18,521 INFO kernel:system 00:0d: [mem 0xe0000000-0xefffffff] has been reserved -05:51:18,521 INFO kernel:system 00:0d: [mem 0xd0200000-0xd03fffff] has been reserved -05:51:18,521 DEBUG kernel:PCI: max bus depth: 1 pci_try_num: 2 -05:51:18,521 INFO kernel:pci 0000:00:0f.0: BAR 6: assigned [mem 0x80000000-0x80007fff pref] -05:51:18,521 INFO kernel:pci 0000:00:10.0: BAR 6: assigned [mem 0x80008000-0x8000bfff pref] -05:51:18,521 INFO kernel:pci 0000:00:18.2: BAR 13: can't assign io (size 0x1000) -05:51:18,521 INFO kernel:pci 0000:00:18.7: BAR 13: can't assign io (size 0x1000) -05:51:18,521 INFO kernel:pci 0000:00:18.6: BAR 13: can't assign io (size 0x1000) -05:51:18,521 INFO kernel:pci 0000:00:18.5: BAR 13: can't assign io (size 0x1000) -05:51:18,521 INFO kernel:pci 0000:00:18.4: BAR 13: can't assign io (size 0x1000) -05:51:18,521 INFO kernel:pci 0000:00:18.3: BAR 13: can't assign io (size 0x1000) -05:51:18,521 INFO kernel:pci 0000:00:17.7: BAR 13: can't assign io (size 0x1000) -05:51:18,521 INFO kernel:pci 0000:00:17.6: BAR 13: can't assign io (size 0x1000) -05:51:18,521 INFO kernel:pci 0000:00:17.5: BAR 13: can't assign io (size 0x1000) -05:51:18,521 INFO kernel:pci 0000:00:17.4: BAR 13: can't assign io (size 0x1000) -05:51:18,521 INFO kernel:pci 0000:00:17.3: BAR 13: can't assign io (size 0x1000) -05:51:18,521 INFO kernel:pci 0000:00:16.7: BAR 13: can't assign io (size 0x1000) -05:51:18,521 INFO kernel:pci 0000:00:16.6: BAR 13: can't assign io (size 0x1000) -05:51:18,521 INFO kernel:pci 0000:00:16.5: BAR 13: can't assign io (size 0x1000) -05:51:18,521 INFO kernel:pci 0000:00:16.4: BAR 13: can't assign io (size 0x1000) -05:51:18,521 INFO kernel:pci 0000:00:16.3: BAR 13: can't assign io (size 0x1000) -05:51:18,521 INFO kernel:pci 0000:00:15.7: BAR 13: can't assign io (size 0x1000) -05:51:18,521 INFO kernel:pci 0000:00:15.6: BAR 13: can't assign io (size 0x1000) -05:51:18,521 INFO kernel:pci 0000:00:15.5: BAR 13: can't assign io (size 0x1000) -05:51:18,521 INFO kernel:pci 0000:00:15.4: BAR 13: can't assign io (size 0x1000) -05:51:18,521 INFO kernel:pci 0000:00:15.3: BAR 13: can't assign io (size 0x1000) -05:51:18,521 INFO kernel:pci 0000:00:01.0: PCI bridge to [bus 01-01] -05:51:18,521 INFO kernel:pci 0000:00:01.0: PCI bridge to [bus 01-01] -05:51:18,521 INFO kernel:pci 0000:00:01.0: bridge window [io disabled] -05:51:18,521 INFO kernel:pci 0000:00:01.0: bridge window [mem disabled] -05:51:18,521 INFO kernel:pci 0000:00:01.0: bridge window [mem pref disabled] -05:51:18,521 INFO kernel:pci 0000:02:00.0: BAR 6: assigned [mem 0xdc400000-0xdc40ffff pref] -05:51:18,521 INFO kernel:pci 0000:02:01.0: BAR 6: assigned [mem 0xdc410000-0xdc41ffff pref] -05:51:18,521 INFO kernel:pci 0000:02:02.0: BAR 6: assigned [mem 0xdc420000-0xdc42ffff pref] -05:51:18,521 INFO kernel:pci 0000:02:03.0: BAR 6: assigned [mem 0xdc430000-0xdc43ffff pref] -05:51:18,521 INFO kernel:pci 0000:00:11.0: PCI bridge to [bus 02-02] -05:51:18,521 INFO kernel:pci 0000:00:11.0: PCI bridge to [bus 02-02] -05:51:18,521 INFO kernel:pci 0000:00:11.0: bridge window [io 0x2000-0x3fff] -05:51:18,521 INFO kernel:pci 0000:00:11.0: bridge window [mem 0xd1000000-0xd23fffff] -05:51:18,521 INFO kernel:pci 0000:00:11.0: bridge window [mem 0xdc400000-0xdc9fffff 64bit pref] -05:51:18,521 INFO kernel:pci 0000:00:15.0: PCI bridge to [bus 03-03] -05:51:18,521 INFO kernel:pci 0000:00:15.0: PCI bridge to [bus 03-03] -05:51:18,521 INFO kernel:pci 0000:00:15.0: bridge window [io 0x4000-0x4fff] -05:51:18,521 INFO kernel:pci 0000:00:15.0: bridge window [mem 0xd2400000-0xd24fffff] -05:51:18,521 INFO kernel:pci 0000:00:15.0: bridge window [mem 0xd4400000-0xd44fffff 64bit pref] -05:51:18,521 INFO kernel:pci 0000:00:15.1: PCI bridge to [bus 04-04] -05:51:18,521 INFO kernel:pci 0000:00:15.1: PCI bridge to [bus 04-04] -05:51:18,521 INFO kernel:pci 0000:00:15.1: bridge window [io 0x8000-0x8fff] -05:51:18,521 INFO kernel:pci 0000:00:15.1: bridge window [mem 0xd2800000-0xd28fffff] -05:51:18,521 INFO kernel:pci 0000:00:15.1: bridge window [mem 0xd4800000-0xd48fffff 64bit pref] -05:51:18,521 INFO kernel:pci 0000:00:15.2: PCI bridge to [bus 05-05] -05:51:18,521 INFO kernel:pci 0000:00:15.2: PCI bridge to [bus 05-05] -05:51:18,521 INFO kernel:pci 0000:00:15.2: bridge window [io 0xc000-0xcfff] -05:51:18,521 INFO kernel:pci 0000:00:15.2: bridge window [mem 0xd2c00000-0xd2cfffff] -05:51:18,521 INFO kernel:pci 0000:00:15.2: bridge window [mem 0xdcb00000-0xdcbfffff 64bit pref] -05:51:18,521 INFO kernel:pci 0000:00:15.3: PCI bridge to [bus 06-06] -05:51:18,521 INFO kernel:pci 0000:00:15.3: PCI bridge to [bus 06-06] -05:51:18,521 INFO kernel:pci 0000:00:15.3: bridge window [io disabled] -05:51:18,521 INFO kernel:pci 0000:00:15.3: bridge window [mem 0xd3000000-0xd30fffff] -05:51:18,521 INFO kernel:pci 0000:00:15.3: bridge window [mem 0xdcd00000-0xdcdfffff 64bit pref] -05:51:18,521 INFO kernel:pci 0000:00:15.4: PCI bridge to [bus 07-07] -05:51:18,521 INFO kernel:pci 0000:00:15.4: PCI bridge to [bus 07-07] -05:51:18,521 INFO kernel:pci 0000:00:15.4: bridge window [io disabled] -05:51:18,521 INFO kernel:pci 0000:00:15.4: bridge window [mem 0xd3400000-0xd34fffff] -05:51:18,521 INFO kernel:pci 0000:00:15.4: bridge window [mem 0xdcf00000-0xdcffffff 64bit pref] -05:51:18,521 INFO kernel:pci 0000:00:15.5: PCI bridge to [bus 08-08] -05:51:18,521 INFO kernel:pci 0000:00:15.5: PCI bridge to [bus 08-08] -05:51:18,521 INFO kernel:pci 0000:00:15.5: bridge window [io disabled] -05:51:18,521 INFO kernel:pci 0000:00:15.5: bridge window [mem 0xd3800000-0xd38fffff] -05:51:18,521 INFO kernel:pci 0000:00:15.5: bridge window [mem 0xdd100000-0xdd1fffff 64bit pref] -05:51:18,521 INFO kernel:pci 0000:00:15.6: PCI bridge to [bus 09-09] -05:51:18,521 INFO kernel:pci 0000:00:15.6: PCI bridge to [bus 09-09] -05:51:18,521 INFO kernel:pci 0000:00:15.6: bridge window [io disabled] -05:51:18,521 INFO kernel:pci 0000:00:15.6: bridge window [mem 0xd3c00000-0xd3cfffff] -05:51:18,521 INFO kernel:pci 0000:00:15.6: bridge window [mem 0xdd300000-0xdd3fffff 64bit pref] -05:51:18,521 INFO kernel:pci 0000:00:15.7: PCI bridge to [bus 0a-0a] -05:51:18,521 INFO kernel:pci 0000:00:15.7: PCI bridge to [bus 0a-0a] -05:51:18,521 INFO kernel:pci 0000:00:15.7: bridge window [io disabled] -05:51:18,521 INFO kernel:pci 0000:00:15.7: bridge window [mem 0xd4000000-0xd40fffff] -05:51:18,521 INFO kernel:pci 0000:00:15.7: bridge window [mem 0xdd500000-0xdd5fffff 64bit pref] -05:51:18,521 INFO kernel:pci 0000:00:16.0: PCI bridge to [bus 0b-0b] -05:51:18,521 INFO kernel:pci 0000:00:16.0: PCI bridge to [bus 0b-0b] -05:51:18,521 INFO kernel:pci 0000:00:16.0: bridge window [io 0x5000-0x5fff] -05:51:18,521 INFO kernel:pci 0000:00:16.0: bridge window [mem 0xd2500000-0xd25fffff] -05:51:18,521 INFO kernel:pci 0000:00:16.0: bridge window [mem 0xd4500000-0xd45fffff 64bit pref] -05:51:18,521 INFO kernel:pci 0000:00:16.1: PCI bridge to [bus 0c-0c] -05:51:18,521 INFO kernel:pci 0000:00:16.1: PCI bridge to [bus 0c-0c] -05:51:18,521 INFO kernel:pci 0000:00:16.1: bridge window [io 0x9000-0x9fff] -05:51:18,521 INFO kernel:pci 0000:00:16.1: bridge window [mem 0xd2900000-0xd29fffff] -05:51:18,521 INFO kernel:pci 0000:00:16.1: bridge window [mem 0xd4900000-0xd49fffff 64bit pref] -05:51:18,521 INFO kernel:pci 0000:00:16.2: PCI bridge to [bus 0d-0d] -05:51:18,521 INFO kernel:pci 0000:00:16.2: PCI bridge to [bus 0d-0d] -05:51:18,521 INFO kernel:pci 0000:00:16.2: bridge window [io 0xd000-0xdfff] -05:51:18,521 INFO kernel:pci 0000:00:16.2: bridge window [mem 0xd2d00000-0xd2dfffff] -05:51:18,521 INFO kernel:pci 0000:00:16.2: bridge window [mem 0xd4b00000-0xd4bfffff 64bit pref] -05:51:18,521 INFO kernel:pci 0000:00:16.3: PCI bridge to [bus 0e-0e] -05:51:18,521 INFO kernel:pci 0000:00:16.3: PCI bridge to [bus 0e-0e] -05:51:18,521 INFO kernel:pci 0000:00:16.3: bridge window [io disabled] -05:51:18,521 INFO kernel:pci 0000:00:16.3: bridge window [mem 0xd3100000-0xd31fffff] -05:51:18,521 INFO kernel:pci 0000:00:16.3: bridge window [mem 0xd4d00000-0xd4dfffff 64bit pref] -05:51:18,521 INFO kernel:pci 0000:00:16.4: PCI bridge to [bus 0f-0f] -05:51:18,521 INFO kernel:pci 0000:00:16.4: PCI bridge to [bus 0f-0f] -05:51:18,521 INFO kernel:pci 0000:00:16.4: bridge window [io disabled] -05:51:18,521 INFO kernel:pci 0000:00:16.4: bridge window [mem 0xd3500000-0xd35fffff] -05:51:18,521 INFO kernel:pci 0000:00:16.4: bridge window [mem 0xd4f00000-0xd4ffffff 64bit pref] -05:51:18,521 INFO kernel:pci 0000:00:16.5: PCI bridge to [bus 10-10] -05:51:18,521 INFO kernel:pci 0000:00:16.5: PCI bridge to [bus 10-10] -05:51:18,521 INFO kernel:pci 0000:00:16.5: bridge window [io disabled] -05:51:18,521 INFO kernel:pci 0000:00:16.5: bridge window [mem 0xd3900000-0xd39fffff] -05:51:18,521 INFO kernel:pci 0000:00:16.5: bridge window [mem 0xd5100000-0xd51fffff 64bit pref] -05:51:18,521 INFO kernel:pci 0000:00:16.6: PCI bridge to [bus 11-11] -05:51:18,521 INFO kernel:pci 0000:00:16.6: PCI bridge to [bus 11-11] -05:51:18,521 INFO kernel:pci 0000:00:16.6: bridge window [io disabled] -05:51:18,521 INFO kernel:pci 0000:00:16.6: bridge window [mem 0xd3d00000-0xd3dfffff] -05:51:18,521 INFO kernel:pci 0000:00:16.6: bridge window [mem 0xd5300000-0xd53fffff 64bit pref] -05:51:18,521 INFO kernel:pci 0000:00:16.7: PCI bridge to [bus 12-12] -05:51:18,521 INFO kernel:pci 0000:00:16.7: PCI bridge to [bus 12-12] -05:51:18,521 INFO kernel:pci 0000:00:16.7: bridge window [io disabled] -05:51:18,521 INFO kernel:pci 0000:00:16.7: bridge window [mem 0xd4100000-0xd41fffff] -05:51:18,521 INFO kernel:pci 0000:00:16.7: bridge window [mem 0xd5500000-0xd55fffff 64bit pref] -05:51:18,521 INFO kernel:pci 0000:00:17.0: PCI bridge to [bus 13-13] -05:51:18,521 INFO kernel:pci 0000:00:17.0: PCI bridge to [bus 13-13] -05:51:18,521 INFO kernel:pci 0000:00:17.0: bridge window [io 0x6000-0x6fff] -05:51:18,521 INFO kernel:pci 0000:00:17.0: bridge window [mem 0xd2600000-0xd26fffff] -05:51:18,521 INFO kernel:pci 0000:00:17.0: bridge window [mem 0xd4600000-0xd46fffff 64bit pref] -05:51:18,521 INFO kernel:pci 0000:00:17.1: PCI bridge to [bus 14-14] -05:51:18,521 INFO kernel:pci 0000:00:17.1: PCI bridge to [bus 14-14] -05:51:18,521 INFO kernel:pci 0000:00:17.1: bridge window [io 0xa000-0xafff] -05:51:18,521 INFO kernel:pci 0000:00:17.1: bridge window [mem 0xd2a00000-0xd2afffff] -05:51:18,521 INFO kernel:pci 0000:00:17.1: bridge window [mem 0xdca00000-0xdcafffff 64bit pref] -05:51:18,521 INFO kernel:pci 0000:00:17.2: PCI bridge to [bus 15-15] -05:51:18,521 INFO kernel:pci 0000:00:17.2: PCI bridge to [bus 15-15] -05:51:18,521 INFO kernel:pci 0000:00:17.2: bridge window [io 0xe000-0xefff] -05:51:18,521 INFO kernel:pci 0000:00:17.2: bridge window [mem 0xd2e00000-0xd2efffff] -05:51:18,521 INFO kernel:pci 0000:00:17.2: bridge window [mem 0xdcc00000-0xdccfffff 64bit pref] -05:51:18,521 INFO kernel:pci 0000:00:17.3: PCI bridge to [bus 16-16] -05:51:18,521 INFO kernel:pci 0000:00:17.3: PCI bridge to [bus 16-16] -05:51:18,521 INFO kernel:pci 0000:00:17.3: bridge window [io disabled] -05:51:18,521 INFO kernel:pci 0000:00:17.3: bridge window [mem 0xd3200000-0xd32fffff] -05:51:18,521 INFO kernel:pci 0000:00:17.3: bridge window [mem 0xdce00000-0xdcefffff 64bit pref] -05:51:18,521 INFO kernel:pci 0000:00:17.4: PCI bridge to [bus 17-17] -05:51:18,521 INFO kernel:pci 0000:00:17.4: PCI bridge to [bus 17-17] -05:51:18,521 INFO kernel:pci 0000:00:17.4: bridge window [io disabled] -05:51:18,521 INFO kernel:pci 0000:00:17.4: bridge window [mem 0xd3600000-0xd36fffff] -05:51:18,521 INFO kernel:pci 0000:00:17.4: bridge window [mem 0xdd000000-0xdd0fffff 64bit pref] -05:51:18,521 INFO kernel:pci 0000:00:17.5: PCI bridge to [bus 18-18] -05:51:18,521 INFO kernel:pci 0000:00:17.5: PCI bridge to [bus 18-18] -05:51:18,521 INFO kernel:pci 0000:00:17.5: bridge window [io disabled] -05:51:18,521 INFO kernel:pci 0000:00:17.5: bridge window [mem 0xd3a00000-0xd3afffff] -05:51:18,521 INFO kernel:pci 0000:00:17.5: bridge window [mem 0xdd200000-0xdd2fffff 64bit pref] -05:51:18,521 INFO kernel:pci 0000:00:17.6: PCI bridge to [bus 19-19] -05:51:18,521 INFO kernel:pci 0000:00:17.6: PCI bridge to [bus 19-19] -05:51:18,521 INFO kernel:pci 0000:00:17.6: bridge window [io disabled] -05:51:18,521 INFO kernel:pci 0000:00:17.6: bridge window [mem 0xd3e00000-0xd3efffff] -05:51:18,521 INFO kernel:pci 0000:00:17.6: bridge window [mem 0xdd400000-0xdd4fffff 64bit pref] -05:51:18,521 INFO kernel:pci 0000:00:17.7: PCI bridge to [bus 1a-1a] -05:51:18,521 INFO kernel:pci 0000:00:17.7: PCI bridge to [bus 1a-1a] -05:51:18,521 INFO kernel:pci 0000:00:17.7: bridge window [io disabled] -05:51:18,521 INFO kernel:pci 0000:00:17.7: bridge window [mem 0xd4200000-0xd42fffff] -05:51:18,521 INFO kernel:pci 0000:00:17.7: bridge window [mem 0xdd600000-0xdd6fffff 64bit pref] -05:51:18,521 INFO kernel:pci 0000:00:18.0: PCI bridge to [bus 1b-1b] -05:51:18,521 INFO kernel:pci 0000:00:18.0: PCI bridge to [bus 1b-1b] -05:51:18,521 INFO kernel:pci 0000:00:18.0: bridge window [io 0x7000-0x7fff] -05:51:18,521 INFO kernel:pci 0000:00:18.0: bridge window [mem 0xd2700000-0xd27fffff] -05:51:18,521 INFO kernel:pci 0000:00:18.0: bridge window [mem 0xd4700000-0xd47fffff 64bit pref] -05:51:18,521 INFO kernel:pci 0000:00:18.1: PCI bridge to [bus 1c-1c] -05:51:18,521 INFO kernel:pci 0000:00:18.1: PCI bridge to [bus 1c-1c] -05:51:18,521 INFO kernel:pci 0000:00:18.1: bridge window [io 0xb000-0xbfff] -05:51:18,521 INFO kernel:pci 0000:00:18.1: bridge window [mem 0xd2b00000-0xd2bfffff] -05:51:18,521 INFO kernel:pci 0000:00:18.1: bridge window [mem 0xd4a00000-0xd4afffff 64bit pref] -05:51:18,521 INFO kernel:pci 0000:00:18.2: PCI bridge to [bus 1d-1d] -05:51:18,521 INFO kernel:pci 0000:00:18.2: PCI bridge to [bus 1d-1d] -05:51:18,521 INFO kernel:pci 0000:00:18.2: bridge window [io disabled] -05:51:18,521 INFO kernel:pci 0000:00:18.2: bridge window [mem 0xd2f00000-0xd2ffffff] -05:51:18,521 INFO kernel:pci 0000:00:18.2: bridge window [mem 0xd4c00000-0xd4cfffff 64bit pref] -05:51:18,521 INFO kernel:pci 0000:00:18.3: PCI bridge to [bus 1e-1e] -05:51:18,521 INFO kernel:pci 0000:00:18.3: PCI bridge to [bus 1e-1e] -05:51:18,521 INFO kernel:pci 0000:00:18.3: bridge window [io disabled] -05:51:18,521 INFO kernel:pci 0000:00:18.3: bridge window [mem 0xd3300000-0xd33fffff] -05:51:18,521 INFO kernel:pci 0000:00:18.3: bridge window [mem 0xd4e00000-0xd4efffff 64bit pref] -05:51:18,521 INFO kernel:pci 0000:00:18.4: PCI bridge to [bus 1f-1f] -05:51:18,521 INFO kernel:pci 0000:00:18.4: PCI bridge to [bus 1f-1f] -05:51:18,521 INFO kernel:pci 0000:00:18.4: bridge window [io disabled] -05:51:18,521 INFO kernel:pci 0000:00:18.4: bridge window [mem 0xd3700000-0xd37fffff] -05:51:18,521 INFO kernel:pci 0000:00:18.4: bridge window [mem 0xd5000000-0xd50fffff 64bit pref] -05:51:18,521 INFO kernel:pci 0000:00:18.5: PCI bridge to [bus 20-20] -05:51:18,521 INFO kernel:pci 0000:00:18.5: PCI bridge to [bus 20-20] -05:51:18,521 INFO kernel:pci 0000:00:18.5: bridge window [io disabled] -05:51:18,521 INFO kernel:pci 0000:00:18.5: bridge window [mem 0xd3b00000-0xd3bfffff] -05:51:18,521 INFO kernel:pci 0000:00:18.5: bridge window [mem 0xd5200000-0xd52fffff 64bit pref] -05:51:18,521 INFO kernel:pci 0000:00:18.6: PCI bridge to [bus 21-21] -05:51:18,521 INFO kernel:pci 0000:00:18.6: PCI bridge to [bus 21-21] -05:51:18,521 INFO kernel:pci 0000:00:18.6: bridge window [io disabled] -05:51:18,521 INFO kernel:pci 0000:00:18.6: bridge window [mem 0xd3f00000-0xd3ffffff] -05:51:18,521 INFO kernel:pci 0000:00:18.6: bridge window [mem 0xd5400000-0xd54fffff 64bit pref] -05:51:18,521 INFO kernel:pci 0000:00:18.7: PCI bridge to [bus 22-22] -05:51:18,521 INFO kernel:pci 0000:00:18.7: PCI bridge to [bus 22-22] -05:51:18,521 INFO kernel:pci 0000:00:18.7: bridge window [io disabled] -05:51:18,521 INFO kernel:pci 0000:00:18.7: bridge window [mem 0xd4300000-0xd43fffff] -05:51:18,521 INFO kernel:pci 0000:00:18.7: bridge window [mem 0xd5600000-0xd56fffff 64bit pref] -05:51:18,521 DEBUG kernel:pci 0000:00:01.0: setting latency timer to 64 -05:51:18,521 DEBUG kernel:pci 0000:00:15.0: setting latency timer to 64 -05:51:18,521 DEBUG kernel:pci 0000:00:15.1: setting latency timer to 64 -05:51:18,521 DEBUG kernel:pci 0000:00:15.2: setting latency timer to 64 -05:51:18,521 DEBUG kernel:pci 0000:00:15.3: setting latency timer to 64 -05:51:18,521 DEBUG kernel:pci 0000:00:15.4: setting latency timer to 64 -05:51:18,521 DEBUG kernel:pci 0000:00:15.5: setting latency timer to 64 -05:51:18,521 DEBUG kernel:pci 0000:00:15.6: setting latency timer to 64 -05:51:18,521 DEBUG kernel:pci 0000:00:15.7: setting latency timer to 64 -05:51:18,521 DEBUG kernel:pci 0000:00:16.0: setting latency timer to 64 -05:51:18,521 DEBUG kernel:pci 0000:00:16.1: setting latency timer to 64 -05:51:18,521 DEBUG kernel:pci 0000:00:16.2: setting latency timer to 64 -05:51:18,521 DEBUG kernel:pci 0000:00:16.3: setting latency timer to 64 -05:51:18,521 DEBUG kernel:pci 0000:00:16.4: setting latency timer to 64 -05:51:18,521 DEBUG kernel:pci 0000:00:16.5: setting latency timer to 64 -05:51:18,521 DEBUG kernel:pci 0000:00:16.6: setting latency timer to 64 -05:51:18,521 DEBUG kernel:pci 0000:00:16.7: setting latency timer to 64 -05:51:18,521 DEBUG kernel:pci 0000:00:17.0: setting latency timer to 64 -05:51:18,521 DEBUG kernel:pci 0000:00:17.1: setting latency timer to 64 -05:51:18,522 DEBUG kernel:pci 0000:00:17.2: setting latency timer to 64 -05:51:18,522 DEBUG kernel:pci 0000:00:17.3: setting latency timer to 64 -05:51:18,522 DEBUG kernel:pci 0000:00:17.4: setting latency timer to 64 -05:51:18,522 DEBUG kernel:pci 0000:00:17.5: setting latency timer to 64 -05:51:18,522 DEBUG kernel:pci 0000:00:17.6: setting latency timer to 64 -05:51:18,522 DEBUG kernel:pci 0000:00:17.7: setting latency timer to 64 -05:51:18,522 DEBUG kernel:pci 0000:00:18.0: setting latency timer to 64 -05:51:18,522 DEBUG kernel:pci 0000:00:18.1: setting latency timer to 64 -05:51:18,522 DEBUG kernel:pci 0000:00:18.2: setting latency timer to 64 -05:51:18,522 DEBUG kernel:pci 0000:00:18.3: setting latency timer to 64 -05:51:18,522 DEBUG kernel:pci 0000:00:18.4: setting latency timer to 64 -05:51:18,522 DEBUG kernel:pci 0000:00:18.5: setting latency timer to 64 -05:51:18,522 DEBUG kernel:pci 0000:00:18.6: setting latency timer to 64 -05:51:18,522 DEBUG kernel:pci 0000:00:18.7: setting latency timer to 64 -05:51:18,522 DEBUG kernel:pci_bus 0000:00: resource 4 [mem 0x000a0000-0x000bffff] -05:51:18,522 DEBUG kernel:pci_bus 0000:00: resource 5 [mem 0x000d0000-0x000d3fff] -05:51:18,522 DEBUG kernel:pci_bus 0000:00: resource 6 [mem 0x000d4000-0x000d7fff] -05:51:18,522 DEBUG kernel:pci_bus 0000:00: resource 7 [mem 0x000d8000-0x000dbfff] -05:51:18,522 DEBUG kernel:pci_bus 0000:00: resource 8 [mem 0x80000000-0xfebfffff] -05:51:18,522 DEBUG kernel:pci_bus 0000:00: resource 9 [io 0x0000-0x0cf7] -05:51:18,522 DEBUG kernel:pci_bus 0000:00: resource 10 [io 0x0d00-0xfeff] -05:51:18,522 DEBUG kernel:pci_bus 0000:02: resource 0 [io 0x2000-0x3fff] -05:51:18,522 DEBUG kernel:pci_bus 0000:02: resource 1 [mem 0xd1000000-0xd23fffff] -05:51:18,522 DEBUG kernel:pci_bus 0000:02: resource 2 [mem 0xdc400000-0xdc9fffff 64bit pref] -05:51:18,522 DEBUG kernel:pci_bus 0000:02: resource 4 [mem 0x000a0000-0x000bffff] -05:51:18,522 DEBUG kernel:pci_bus 0000:02: resource 5 [mem 0x000d0000-0x000d3fff] -05:51:18,522 DEBUG kernel:pci_bus 0000:02: resource 6 [mem 0x000d4000-0x000d7fff] -05:51:18,522 DEBUG kernel:pci_bus 0000:02: resource 7 [mem 0x000d8000-0x000dbfff] -05:51:18,522 DEBUG kernel:pci_bus 0000:02: resource 8 [mem 0x80000000-0xfebfffff] -05:51:18,522 DEBUG kernel:pci_bus 0000:02: resource 9 [io 0x0000-0x0cf7] -05:51:18,522 DEBUG kernel:pci_bus 0000:02: resource 10 [io 0x0d00-0xfeff] -05:51:18,522 DEBUG kernel:pci_bus 0000:03: resource 0 [io 0x4000-0x4fff] -05:51:18,522 DEBUG kernel:pci_bus 0000:03: resource 1 [mem 0xd2400000-0xd24fffff] -05:51:18,522 DEBUG kernel:pci_bus 0000:03: resource 2 [mem 0xd4400000-0xd44fffff 64bit pref] -05:51:18,522 DEBUG kernel:pci_bus 0000:04: resource 0 [io 0x8000-0x8fff] -05:51:18,522 DEBUG kernel:pci_bus 0000:04: resource 1 [mem 0xd2800000-0xd28fffff] -05:51:18,522 DEBUG kernel:pci_bus 0000:04: resource 2 [mem 0xd4800000-0xd48fffff 64bit pref] -05:51:18,522 DEBUG kernel:pci_bus 0000:05: resource 0 [io 0xc000-0xcfff] -05:51:18,522 DEBUG kernel:pci_bus 0000:05: resource 1 [mem 0xd2c00000-0xd2cfffff] -05:51:18,522 DEBUG kernel:pci_bus 0000:05: resource 2 [mem 0xdcb00000-0xdcbfffff 64bit pref] -05:51:18,522 DEBUG kernel:pci_bus 0000:06: resource 1 [mem 0xd3000000-0xd30fffff] -05:51:18,522 DEBUG kernel:pci_bus 0000:06: resource 2 [mem 0xdcd00000-0xdcdfffff 64bit pref] -05:51:18,522 DEBUG kernel:pci_bus 0000:07: resource 1 [mem 0xd3400000-0xd34fffff] -05:51:18,522 DEBUG kernel:pci_bus 0000:07: resource 2 [mem 0xdcf00000-0xdcffffff 64bit pref] -05:51:18,522 DEBUG kernel:pci_bus 0000:08: resource 1 [mem 0xd3800000-0xd38fffff] -05:51:18,522 DEBUG kernel:pci_bus 0000:08: resource 2 [mem 0xdd100000-0xdd1fffff 64bit pref] -05:51:18,522 DEBUG kernel:pci_bus 0000:09: resource 1 [mem 0xd3c00000-0xd3cfffff] -05:51:18,522 DEBUG kernel:pci_bus 0000:09: resource 2 [mem 0xdd300000-0xdd3fffff 64bit pref] -05:51:18,522 DEBUG kernel:pci_bus 0000:0a: resource 1 [mem 0xd4000000-0xd40fffff] -05:51:18,522 DEBUG kernel:pci_bus 0000:0a: resource 2 [mem 0xdd500000-0xdd5fffff 64bit pref] -05:51:18,522 DEBUG kernel:pci_bus 0000:0b: resource 0 [io 0x5000-0x5fff] -05:51:18,522 DEBUG kernel:pci_bus 0000:0b: resource 1 [mem 0xd2500000-0xd25fffff] -05:51:18,522 DEBUG kernel:pci_bus 0000:0b: resource 2 [mem 0xd4500000-0xd45fffff 64bit pref] -05:51:18,522 DEBUG kernel:pci_bus 0000:0c: resource 0 [io 0x9000-0x9fff] -05:51:18,522 DEBUG kernel:pci_bus 0000:0c: resource 1 [mem 0xd2900000-0xd29fffff] -05:51:18,522 DEBUG kernel:pci_bus 0000:0c: resource 2 [mem 0xd4900000-0xd49fffff 64bit pref] -05:51:18,522 DEBUG kernel:pci_bus 0000:0d: resource 0 [io 0xd000-0xdfff] -05:51:18,522 DEBUG kernel:pci_bus 0000:0d: resource 1 [mem 0xd2d00000-0xd2dfffff] -05:51:18,522 DEBUG kernel:pci_bus 0000:0d: resource 2 [mem 0xd4b00000-0xd4bfffff 64bit pref] -05:51:18,522 DEBUG kernel:pci_bus 0000:0e: resource 1 [mem 0xd3100000-0xd31fffff] -05:51:18,522 DEBUG kernel:pci_bus 0000:0e: resource 2 [mem 0xd4d00000-0xd4dfffff 64bit pref] -05:51:18,522 DEBUG kernel:pci_bus 0000:0f: resource 1 [mem 0xd3500000-0xd35fffff] -05:51:18,522 DEBUG kernel:pci_bus 0000:0f: resource 2 [mem 0xd4f00000-0xd4ffffff 64bit pref] -05:51:18,522 DEBUG kernel:pci_bus 0000:10: resource 1 [mem 0xd3900000-0xd39fffff] -05:51:18,522 DEBUG kernel:pci_bus 0000:10: resource 2 [mem 0xd5100000-0xd51fffff 64bit pref] -05:51:18,522 DEBUG kernel:pci_bus 0000:11: resource 1 [mem 0xd3d00000-0xd3dfffff] -05:51:18,522 DEBUG kernel:pci_bus 0000:11: resource 2 [mem 0xd5300000-0xd53fffff 64bit pref] -05:51:18,522 DEBUG kernel:pci_bus 0000:12: resource 1 [mem 0xd4100000-0xd41fffff] -05:51:18,522 DEBUG kernel:pci_bus 0000:12: resource 2 [mem 0xd5500000-0xd55fffff 64bit pref] -05:51:18,522 DEBUG kernel:pci_bus 0000:13: resource 0 [io 0x6000-0x6fff] -05:51:18,522 DEBUG kernel:pci_bus 0000:13: resource 1 [mem 0xd2600000-0xd26fffff] -05:51:18,522 DEBUG kernel:pci_bus 0000:13: resource 2 [mem 0xd4600000-0xd46fffff 64bit pref] -05:51:18,522 DEBUG kernel:pci_bus 0000:14: resource 0 [io 0xa000-0xafff] -05:51:18,522 DEBUG kernel:pci_bus 0000:14: resource 1 [mem 0xd2a00000-0xd2afffff] -05:51:18,522 DEBUG kernel:pci_bus 0000:14: resource 2 [mem 0xdca00000-0xdcafffff 64bit pref] -05:51:18,522 DEBUG kernel:pci_bus 0000:15: resource 0 [io 0xe000-0xefff] -05:51:18,522 DEBUG kernel:pci_bus 0000:15: resource 1 [mem 0xd2e00000-0xd2efffff] -05:51:18,522 DEBUG kernel:pci_bus 0000:15: resource 2 [mem 0xdcc00000-0xdccfffff 64bit pref] -05:51:18,522 DEBUG kernel:pci_bus 0000:16: resource 1 [mem 0xd3200000-0xd32fffff] -05:51:18,522 DEBUG kernel:pci_bus 0000:16: resource 2 [mem 0xdce00000-0xdcefffff 64bit pref] -05:51:18,522 DEBUG kernel:pci_bus 0000:17: resource 1 [mem 0xd3600000-0xd36fffff] -05:51:18,522 DEBUG kernel:pci_bus 0000:17: resource 2 [mem 0xdd000000-0xdd0fffff 64bit pref] -05:51:18,522 DEBUG kernel:pci_bus 0000:18: resource 1 [mem 0xd3a00000-0xd3afffff] -05:51:18,522 DEBUG kernel:pci_bus 0000:18: resource 2 [mem 0xdd200000-0xdd2fffff 64bit pref] -05:51:18,522 DEBUG kernel:pci_bus 0000:19: resource 1 [mem 0xd3e00000-0xd3efffff] -05:51:18,522 DEBUG kernel:pci_bus 0000:19: resource 2 [mem 0xdd400000-0xdd4fffff 64bit pref] -05:51:18,522 DEBUG kernel:pci_bus 0000:1a: resource 1 [mem 0xd4200000-0xd42fffff] -05:51:18,522 DEBUG kernel:pci_bus 0000:1a: resource 2 [mem 0xdd600000-0xdd6fffff 64bit pref] -05:51:18,522 DEBUG kernel:pci_bus 0000:1b: resource 0 [io 0x7000-0x7fff] -05:51:18,522 DEBUG kernel:pci_bus 0000:1b: resource 1 [mem 0xd2700000-0xd27fffff] -05:51:18,522 DEBUG kernel:pci_bus 0000:1b: resource 2 [mem 0xd4700000-0xd47fffff 64bit pref] -05:51:18,522 DEBUG kernel:pci_bus 0000:1c: resource 0 [io 0xb000-0xbfff] -05:51:18,522 DEBUG kernel:pci_bus 0000:1c: resource 1 [mem 0xd2b00000-0xd2bfffff] -05:51:18,522 DEBUG kernel:pci_bus 0000:1c: resource 2 [mem 0xd4a00000-0xd4afffff 64bit pref] -05:51:18,522 DEBUG kernel:pci_bus 0000:1d: resource 1 [mem 0xd2f00000-0xd2ffffff] -05:51:18,522 DEBUG kernel:pci_bus 0000:1d: resource 2 [mem 0xd4c00000-0xd4cfffff 64bit pref] -05:51:18,522 DEBUG kernel:pci_bus 0000:1e: resource 1 [mem 0xd3300000-0xd33fffff] -05:51:18,522 DEBUG kernel:pci_bus 0000:1e: resource 2 [mem 0xd4e00000-0xd4efffff 64bit pref] -05:51:18,522 DEBUG kernel:pci_bus 0000:1f: resource 1 [mem 0xd3700000-0xd37fffff] -05:51:18,522 DEBUG kernel:pci_bus 0000:1f: resource 2 [mem 0xd5000000-0xd50fffff 64bit pref] -05:51:18,522 DEBUG kernel:pci_bus 0000:20: resource 1 [mem 0xd3b00000-0xd3bfffff] -05:51:18,522 DEBUG kernel:pci_bus 0000:20: resource 2 [mem 0xd5200000-0xd52fffff 64bit pref] -05:51:18,522 DEBUG kernel:pci_bus 0000:21: resource 1 [mem 0xd3f00000-0xd3ffffff] -05:51:18,522 DEBUG kernel:pci_bus 0000:21: resource 2 [mem 0xd5400000-0xd54fffff 64bit pref] -05:51:18,522 DEBUG kernel:pci_bus 0000:22: resource 1 [mem 0xd4300000-0xd43fffff] -05:51:18,522 DEBUG kernel:pci_bus 0000:22: resource 2 [mem 0xd5600000-0xd56fffff 64bit pref] -05:51:18,522 INFO kernel:NET: Registered protocol family 2 -05:51:18,522 INFO kernel:IP route cache hash table entries: 65536 (order: 7, 524288 bytes) -05:51:18,522 INFO kernel:TCP established hash table entries: 262144 (order: 10, 4194304 bytes) -05:51:18,527 INFO kernel:TCP bind hash table entries: 65536 (order: 8, 1048576 bytes) -05:51:18,527 INFO kernel:TCP: Hash tables configured (established 262144 bind 65536) -05:51:18,527 INFO kernel:TCP reno registered -05:51:18,527 INFO kernel:NET: Registered protocol family 1 -05:51:18,527 INFO kernel:pci 0000:00:00.0: Limiting direct PCI/PCI transfers -05:51:18,527 DEBUG kernel:pci 0000:00:0f.0: Boot video device -05:51:18,527 INFO kernel:Trying to unpack rootfs image as initramfs... -05:51:18,527 INFO kernel:Freeing initrd memory: 32601k freed -05:51:18,527 INFO kernel:Simple Boot Flag at 0x36 set to 0x80 -05:51:18,527 INFO kernel:audit: initializing netlink socket (disabled) -05:51:18,527 NOTICE kernel:type=2000 audit(1021096275.782:1): initialized -05:51:18,527 INFO kernel:HugeTLB registered 2 MB page size, pre-allocated 0 pages -05:51:18,527 NOTICE kernel:VFS: Disk quotas dquot_6.5.2 -05:51:18,527 WARNING kernel:Dquot-cache hash table entries: 512 (order 0, 4096 bytes) -05:51:18,527 INFO kernel:msgmni has been set to 4005 -05:51:18,527 DEBUG kernel:SELinux: Registering netfilter hooks -05:51:18,527 INFO kernel:alg: No test for stdrng (krng) -05:51:18,527 WARNING kernel:ksign: Installing public key data -05:51:18,527 WARNING kernel:Loading keyring -05:51:18,527 WARNING kernel:- Added public key 8A44323FB303E068 -05:51:18,527 WARNING kernel: - key was been created 363988184 seconds in future -05:51:18,527 WARNING kernel:- User ID: CentOS (Kernel Module GPG key) -05:51:18,527 INFO kernel:Block layer SCSI generic (bsg) driver version 0.4 loaded (major 251) -05:51:18,527 INFO kernel:io scheduler noop registered -05:51:18,527 INFO kernel:io scheduler anticipatory registered -05:51:18,527 INFO kernel:io scheduler deadline registered -05:51:18,527 INFO kernel:io scheduler cfq registered (default) -05:51:18,527 DEBUG kernel:pcieport 0000:00:15.0: setting latency timer to 64 -05:51:18,527 DEBUG kernel: alloc irq_desc for 24 on node -1 -05:51:18,527 DEBUG kernel: alloc kstat_irqs on node -1 -05:51:18,527 DEBUG kernel:pcieport 0000:00:15.0: irq 24 for MSI/MSI-X -05:51:18,527 DEBUG kernel:pcieport 0000:00:15.1: setting latency timer to 64 -05:51:18,527 DEBUG kernel: alloc irq_desc for 25 on node -1 -05:51:18,527 DEBUG kernel: alloc kstat_irqs on node -1 -05:51:18,527 DEBUG kernel:pcieport 0000:00:15.1: irq 25 for MSI/MSI-X -05:51:18,527 DEBUG kernel:pcieport 0000:00:15.2: setting latency timer to 64 -05:51:18,527 DEBUG kernel: alloc irq_desc for 26 on node -1 -05:51:18,527 DEBUG kernel: alloc kstat_irqs on node -1 -05:51:18,527 DEBUG kernel:pcieport 0000:00:15.2: irq 26 for MSI/MSI-X -05:51:18,527 DEBUG kernel:pcieport 0000:00:15.3: setting latency timer to 64 -05:51:18,527 DEBUG kernel: alloc irq_desc for 27 on node -1 -05:51:18,527 DEBUG kernel: alloc kstat_irqs on node -1 -05:51:18,527 DEBUG kernel:pcieport 0000:00:15.3: irq 27 for MSI/MSI-X -05:51:18,527 DEBUG kernel:pcieport 0000:00:15.4: setting latency timer to 64 -05:51:18,527 DEBUG kernel: alloc irq_desc for 28 on node -1 -05:51:18,527 DEBUG kernel: alloc kstat_irqs on node -1 -05:51:18,527 DEBUG kernel:pcieport 0000:00:15.4: irq 28 for MSI/MSI-X -05:51:18,527 DEBUG kernel:pcieport 0000:00:15.5: setting latency timer to 64 -05:51:18,527 DEBUG kernel: alloc irq_desc for 29 on node -1 -05:51:18,527 DEBUG kernel: alloc kstat_irqs on node -1 -05:51:18,527 DEBUG kernel:pcieport 0000:00:15.5: irq 29 for MSI/MSI-X -05:51:18,527 DEBUG kernel:pcieport 0000:00:15.6: setting latency timer to 64 -05:51:18,527 DEBUG kernel: alloc irq_desc for 30 on node -1 -05:51:18,527 DEBUG kernel: alloc kstat_irqs on node -1 -05:51:18,527 DEBUG kernel:pcieport 0000:00:15.6: irq 30 for MSI/MSI-X -05:51:18,527 DEBUG kernel:pcieport 0000:00:15.7: setting latency timer to 64 -05:51:18,527 DEBUG kernel: alloc irq_desc for 31 on node -1 -05:51:18,527 DEBUG kernel: alloc kstat_irqs on node -1 -05:51:18,527 DEBUG kernel:pcieport 0000:00:15.7: irq 31 for MSI/MSI-X -05:51:18,527 DEBUG kernel:pcieport 0000:00:16.0: setting latency timer to 64 -05:51:18,527 DEBUG kernel: alloc irq_desc for 32 on node -1 -05:51:18,527 DEBUG kernel: alloc kstat_irqs on node -1 -05:51:18,527 DEBUG kernel:pcieport 0000:00:16.0: irq 32 for MSI/MSI-X -05:51:18,527 DEBUG kernel:pcieport 0000:00:16.1: setting latency timer to 64 -05:51:18,527 DEBUG kernel: alloc irq_desc for 33 on node -1 -05:51:18,527 DEBUG kernel: alloc kstat_irqs on node -1 -05:51:18,527 DEBUG kernel:pcieport 0000:00:16.1: irq 33 for MSI/MSI-X -05:51:18,527 DEBUG kernel:pcieport 0000:00:16.2: setting latency timer to 64 -05:51:18,527 DEBUG kernel: alloc irq_desc for 34 on node -1 -05:51:18,527 DEBUG kernel: alloc kstat_irqs on node -1 -05:51:18,527 DEBUG kernel:pcieport 0000:00:16.2: irq 34 for MSI/MSI-X -05:51:18,527 DEBUG kernel:pcieport 0000:00:16.3: setting latency timer to 64 -05:51:18,527 DEBUG kernel: alloc irq_desc for 35 on node -1 -05:51:18,527 DEBUG kernel: alloc kstat_irqs on node -1 -05:51:18,527 DEBUG kernel:pcieport 0000:00:16.3: irq 35 for MSI/MSI-X -05:51:18,527 DEBUG kernel:pcieport 0000:00:16.4: setting latency timer to 64 -05:51:18,527 DEBUG kernel: alloc irq_desc for 36 on node -1 -05:51:18,527 DEBUG kernel: alloc kstat_irqs on node -1 -05:51:18,527 DEBUG kernel:pcieport 0000:00:16.4: irq 36 for MSI/MSI-X -05:51:18,527 DEBUG kernel:pcieport 0000:00:16.5: setting latency timer to 64 -05:51:18,527 DEBUG kernel: alloc irq_desc for 37 on node -1 -05:51:18,527 DEBUG kernel: alloc kstat_irqs on node -1 -05:51:18,527 DEBUG kernel:pcieport 0000:00:16.5: irq 37 for MSI/MSI-X -05:51:18,527 DEBUG kernel:pcieport 0000:00:16.6: setting latency timer to 64 -05:51:18,527 DEBUG kernel: alloc irq_desc for 38 on node -1 -05:51:18,527 DEBUG kernel: alloc kstat_irqs on node -1 -05:51:18,527 DEBUG kernel:pcieport 0000:00:16.6: irq 38 for MSI/MSI-X -05:51:18,527 DEBUG kernel:pcieport 0000:00:16.7: setting latency timer to 64 -05:51:18,527 DEBUG kernel: alloc irq_desc for 39 on node -1 -05:51:18,527 DEBUG kernel: alloc kstat_irqs on node -1 -05:51:18,527 DEBUG kernel:pcieport 0000:00:16.7: irq 39 for MSI/MSI-X -05:51:18,527 DEBUG kernel:pcieport 0000:00:17.0: setting latency timer to 64 -05:51:18,527 DEBUG kernel: alloc irq_desc for 40 on node -1 -05:51:18,527 DEBUG kernel: alloc kstat_irqs on node -1 -05:51:18,527 DEBUG kernel:pcieport 0000:00:17.0: irq 40 for MSI/MSI-X -05:51:18,527 DEBUG kernel:pcieport 0000:00:17.1: setting latency timer to 64 -05:51:18,527 DEBUG kernel: alloc irq_desc for 41 on node -1 -05:51:18,527 DEBUG kernel: alloc kstat_irqs on node -1 -05:51:18,527 DEBUG kernel:pcieport 0000:00:17.1: irq 41 for MSI/MSI-X -05:51:18,527 DEBUG kernel:pcieport 0000:00:17.2: setting latency timer to 64 -05:51:18,527 DEBUG kernel: alloc irq_desc for 42 on node -1 -05:51:18,527 DEBUG kernel: alloc kstat_irqs on node -1 -05:51:18,527 DEBUG kernel:pcieport 0000:00:17.2: irq 42 for MSI/MSI-X -05:51:18,527 DEBUG kernel:pcieport 0000:00:17.3: setting latency timer to 64 -05:51:18,527 DEBUG kernel: alloc irq_desc for 43 on node -1 -05:51:18,527 DEBUG kernel: alloc kstat_irqs on node -1 -05:51:18,527 DEBUG kernel:pcieport 0000:00:17.3: irq 43 for MSI/MSI-X -05:51:18,527 DEBUG kernel:pcieport 0000:00:17.4: setting latency timer to 64 -05:51:18,527 DEBUG kernel: alloc irq_desc for 44 on node -1 -05:51:18,527 DEBUG kernel: alloc kstat_irqs on node -1 -05:51:18,527 DEBUG kernel:pcieport 0000:00:17.4: irq 44 for MSI/MSI-X -05:51:18,527 DEBUG kernel:pcieport 0000:00:17.5: setting latency timer to 64 -05:51:18,527 DEBUG kernel: alloc irq_desc for 45 on node -1 -05:51:18,527 DEBUG kernel: alloc kstat_irqs on node -1 -05:51:18,527 DEBUG kernel:pcieport 0000:00:17.5: irq 45 for MSI/MSI-X -05:51:18,527 DEBUG kernel:pcieport 0000:00:17.6: setting latency timer to 64 -05:51:18,527 DEBUG kernel: alloc irq_desc for 46 on node -1 -05:51:18,527 DEBUG kernel: alloc kstat_irqs on node -1 -05:51:18,527 DEBUG kernel:pcieport 0000:00:17.6: irq 46 for MSI/MSI-X -05:51:18,527 DEBUG kernel:pcieport 0000:00:17.7: setting latency timer to 64 -05:51:18,527 DEBUG kernel: alloc irq_desc for 47 on node -1 -05:51:18,527 DEBUG kernel: alloc kstat_irqs on node -1 -05:51:18,527 DEBUG kernel:pcieport 0000:00:17.7: irq 47 for MSI/MSI-X -05:51:18,527 DEBUG kernel:pcieport 0000:00:18.0: setting latency timer to 64 -05:51:18,527 DEBUG kernel: alloc irq_desc for 48 on node -1 -05:51:18,527 DEBUG kernel: alloc kstat_irqs on node -1 -05:51:18,527 DEBUG kernel:pcieport 0000:00:18.0: irq 48 for MSI/MSI-X -05:51:18,527 DEBUG kernel:pcieport 0000:00:18.1: setting latency timer to 64 -05:51:18,527 DEBUG kernel: alloc irq_desc for 49 on node -1 -05:51:18,527 DEBUG kernel: alloc kstat_irqs on node -1 -05:51:18,527 DEBUG kernel:pcieport 0000:00:18.1: irq 49 for MSI/MSI-X -05:51:18,527 DEBUG kernel:pcieport 0000:00:18.2: setting latency timer to 64 -05:51:18,527 DEBUG kernel: alloc irq_desc for 50 on node -1 -05:51:18,527 DEBUG kernel: alloc kstat_irqs on node -1 -05:51:18,527 DEBUG kernel:pcieport 0000:00:18.2: irq 50 for MSI/MSI-X -05:51:18,527 DEBUG kernel:pcieport 0000:00:18.3: setting latency timer to 64 -05:51:18,527 DEBUG kernel: alloc irq_desc for 51 on node -1 -05:51:18,527 DEBUG kernel: alloc kstat_irqs on node -1 -05:51:18,527 DEBUG kernel:pcieport 0000:00:18.3: irq 51 for MSI/MSI-X -05:51:18,527 DEBUG kernel:pcieport 0000:00:18.4: setting latency timer to 64 -05:51:18,527 DEBUG kernel: alloc irq_desc for 52 on node -1 -05:51:18,527 DEBUG kernel: alloc kstat_irqs on node -1 -05:51:18,527 DEBUG kernel:pcieport 0000:00:18.4: irq 52 for MSI/MSI-X -05:51:18,527 DEBUG kernel:pcieport 0000:00:18.5: setting latency timer to 64 -05:51:18,527 DEBUG kernel: alloc irq_desc for 53 on node -1 -05:51:18,527 DEBUG kernel: alloc kstat_irqs on node -1 -05:51:18,527 DEBUG kernel:pcieport 0000:00:18.5: irq 53 for MSI/MSI-X -05:51:18,527 DEBUG kernel:pcieport 0000:00:18.6: setting latency timer to 64 -05:51:18,527 DEBUG kernel: alloc irq_desc for 54 on node -1 -05:51:18,527 DEBUG kernel: alloc kstat_irqs on node -1 -05:51:18,527 DEBUG kernel:pcieport 0000:00:18.6: irq 54 for MSI/MSI-X -05:51:18,527 DEBUG kernel:pcieport 0000:00:18.7: setting latency timer to 64 -05:51:18,527 DEBUG kernel: alloc irq_desc for 55 on node -1 -05:51:18,527 DEBUG kernel: alloc kstat_irqs on node -1 -05:51:18,527 DEBUG kernel:pcieport 0000:00:18.7: irq 55 for MSI/MSI-X -05:51:18,527 INFO kernel:pci_hotplug: PCI Hot Plug PCI Core version: 0.5 -05:51:18,527 INFO kernel:pciehp 0000:00:15.0:pcie04: HPC vendor_id 15ad device_id 7a0 ss_vid 0 ss_did 0 -05:51:18,527 DEBUG kernel:pciehp 0000:00:15.0:pcie04: service driver pciehp loaded -05:51:18,527 INFO kernel:pciehp 0000:00:15.1:pcie04: HPC vendor_id 15ad device_id 7a0 ss_vid 0 ss_did 0 -05:51:18,527 DEBUG kernel:pciehp 0000:00:15.1:pcie04: service driver pciehp loaded -05:51:18,527 INFO kernel:pciehp 0000:00:15.2:pcie04: HPC vendor_id 15ad device_id 7a0 ss_vid 0 ss_did 0 -05:51:18,527 DEBUG kernel:pciehp 0000:00:15.2:pcie04: service driver pciehp loaded -05:51:18,527 INFO kernel:pciehp 0000:00:15.3:pcie04: HPC vendor_id 15ad device_id 7a0 ss_vid 0 ss_did 0 -05:51:18,527 DEBUG kernel:pciehp 0000:00:15.3:pcie04: service driver pciehp loaded -05:51:18,527 INFO kernel:pciehp 0000:00:15.4:pcie04: HPC vendor_id 15ad device_id 7a0 ss_vid 0 ss_did 0 -05:51:18,527 DEBUG kernel:pciehp 0000:00:15.4:pcie04: service driver pciehp loaded -05:51:18,527 INFO kernel:pciehp 0000:00:15.5:pcie04: HPC vendor_id 15ad device_id 7a0 ss_vid 0 ss_did 0 -05:51:18,527 DEBUG kernel:pciehp 0000:00:15.5:pcie04: service driver pciehp loaded -05:51:18,527 INFO kernel:pciehp 0000:00:15.6:pcie04: HPC vendor_id 15ad device_id 7a0 ss_vid 0 ss_did 0 -05:51:18,527 DEBUG kernel:pciehp 0000:00:15.6:pcie04: service driver pciehp loaded -05:51:18,527 INFO kernel:pciehp 0000:00:15.7:pcie04: HPC vendor_id 15ad device_id 7a0 ss_vid 0 ss_did 0 -05:51:18,527 DEBUG kernel:pciehp 0000:00:15.7:pcie04: service driver pciehp loaded -05:51:18,527 INFO kernel:pciehp 0000:00:16.0:pcie04: HPC vendor_id 15ad device_id 7a0 ss_vid 0 ss_did 0 -05:51:18,527 DEBUG kernel:pciehp 0000:00:16.0:pcie04: service driver pciehp loaded -05:51:18,527 INFO kernel:pciehp 0000:00:16.1:pcie04: HPC vendor_id 15ad device_id 7a0 ss_vid 0 ss_did 0 -05:51:18,527 DEBUG kernel:pciehp 0000:00:16.1:pcie04: service driver pciehp loaded -05:51:18,527 INFO kernel:pciehp 0000:00:16.2:pcie04: HPC vendor_id 15ad device_id 7a0 ss_vid 0 ss_did 0 -05:51:18,527 DEBUG kernel:pciehp 0000:00:16.2:pcie04: service driver pciehp loaded -05:51:18,527 INFO kernel:pciehp 0000:00:16.3:pcie04: HPC vendor_id 15ad device_id 7a0 ss_vid 0 ss_did 0 -05:51:18,527 DEBUG kernel:pciehp 0000:00:16.3:pcie04: service driver pciehp loaded -05:51:18,527 INFO kernel:pciehp 0000:00:16.4:pcie04: HPC vendor_id 15ad device_id 7a0 ss_vid 0 ss_did 0 -05:51:18,527 DEBUG kernel:pciehp 0000:00:16.4:pcie04: service driver pciehp loaded -05:51:18,527 INFO kernel:pciehp 0000:00:16.5:pcie04: HPC vendor_id 15ad device_id 7a0 ss_vid 0 ss_did 0 -05:51:18,527 DEBUG kernel:pciehp 0000:00:16.5:pcie04: service driver pciehp loaded -05:51:18,527 INFO kernel:pciehp 0000:00:16.6:pcie04: HPC vendor_id 15ad device_id 7a0 ss_vid 0 ss_did 0 -05:51:18,527 DEBUG kernel:pciehp 0000:00:16.6:pcie04: service driver pciehp loaded -05:51:18,527 INFO kernel:pciehp 0000:00:16.7:pcie04: HPC vendor_id 15ad device_id 7a0 ss_vid 0 ss_did 0 -05:51:18,527 DEBUG kernel:pciehp 0000:00:16.7:pcie04: service driver pciehp loaded -05:51:18,527 INFO kernel:pciehp 0000:00:17.0:pcie04: HPC vendor_id 15ad device_id 7a0 ss_vid 0 ss_did 0 -05:51:18,527 DEBUG kernel:pciehp 0000:00:17.0:pcie04: service driver pciehp loaded -05:51:18,527 INFO kernel:pciehp 0000:00:17.1:pcie04: HPC vendor_id 15ad device_id 7a0 ss_vid 0 ss_did 0 -05:51:18,527 DEBUG kernel:pciehp 0000:00:17.1:pcie04: service driver pciehp loaded -05:51:18,527 INFO kernel:pciehp 0000:00:17.2:pcie04: HPC vendor_id 15ad device_id 7a0 ss_vid 0 ss_did 0 -05:51:18,527 DEBUG kernel:pciehp 0000:00:17.2:pcie04: service driver pciehp loaded -05:51:18,527 INFO kernel:pciehp 0000:00:17.3:pcie04: HPC vendor_id 15ad device_id 7a0 ss_vid 0 ss_did 0 -05:51:18,527 DEBUG kernel:pciehp 0000:00:17.3:pcie04: service driver pciehp loaded -05:51:18,527 INFO kernel:pciehp 0000:00:17.4:pcie04: HPC vendor_id 15ad device_id 7a0 ss_vid 0 ss_did 0 -05:51:18,527 DEBUG kernel:pciehp 0000:00:17.4:pcie04: service driver pciehp loaded -05:51:18,527 INFO kernel:pciehp 0000:00:17.5:pcie04: HPC vendor_id 15ad device_id 7a0 ss_vid 0 ss_did 0 -05:51:18,527 DEBUG kernel:pciehp 0000:00:17.5:pcie04: service driver pciehp loaded -05:51:18,527 INFO kernel:pciehp 0000:00:17.6:pcie04: HPC vendor_id 15ad device_id 7a0 ss_vid 0 ss_did 0 -05:51:18,527 DEBUG kernel:pciehp 0000:00:17.6:pcie04: service driver pciehp loaded -05:51:18,527 INFO kernel:pciehp 0000:00:17.7:pcie04: HPC vendor_id 15ad device_id 7a0 ss_vid 0 ss_did 0 -05:51:18,527 DEBUG kernel:pciehp 0000:00:17.7:pcie04: service driver pciehp loaded -05:51:18,527 INFO kernel:pciehp 0000:00:18.0:pcie04: HPC vendor_id 15ad device_id 7a0 ss_vid 0 ss_did 0 -05:51:18,527 DEBUG kernel:pciehp 0000:00:18.0:pcie04: service driver pciehp loaded -05:51:18,527 INFO kernel:pciehp 0000:00:18.1:pcie04: HPC vendor_id 15ad device_id 7a0 ss_vid 0 ss_did 0 -05:51:18,527 DEBUG kernel:pciehp 0000:00:18.1:pcie04: service driver pciehp loaded -05:51:18,527 INFO kernel:pciehp 0000:00:18.2:pcie04: HPC vendor_id 15ad device_id 7a0 ss_vid 0 ss_did 0 -05:51:18,527 DEBUG kernel:pciehp 0000:00:18.2:pcie04: service driver pciehp loaded -05:51:18,527 INFO kernel:pciehp 0000:00:18.3:pcie04: HPC vendor_id 15ad device_id 7a0 ss_vid 0 ss_did 0 -05:51:18,527 DEBUG kernel:pciehp 0000:00:18.3:pcie04: service driver pciehp loaded -05:51:18,527 INFO kernel:pciehp 0000:00:18.4:pcie04: HPC vendor_id 15ad device_id 7a0 ss_vid 0 ss_did 0 -05:51:18,527 DEBUG kernel:pciehp 0000:00:18.4:pcie04: service driver pciehp loaded -05:51:18,527 INFO kernel:pciehp 0000:00:18.5:pcie04: HPC vendor_id 15ad device_id 7a0 ss_vid 0 ss_did 0 -05:51:18,527 DEBUG kernel:pciehp 0000:00:18.5:pcie04: service driver pciehp loaded -05:51:18,527 INFO kernel:pciehp 0000:00:18.6:pcie04: HPC vendor_id 15ad device_id 7a0 ss_vid 0 ss_did 0 -05:51:18,527 DEBUG kernel:pciehp 0000:00:18.6:pcie04: service driver pciehp loaded -05:51:18,527 INFO kernel:pciehp 0000:00:18.7:pcie04: HPC vendor_id 15ad device_id 7a0 ss_vid 0 ss_did 0 -05:51:18,527 DEBUG kernel:pciehp 0000:00:18.7:pcie04: service driver pciehp loaded -05:51:18,527 INFO kernel:pciehp: PCI Express Hot Plug Controller Driver version: 0.4 -05:51:18,527 INFO kernel:acpiphp: ACPI Hot Plug PCI Controller Driver version: 0.5 -05:51:18,527 INFO kernel:acpiphp: Slot [32] registered -05:51:18,527 INFO kernel:acpiphp: Slot [33] registered -05:51:18,527 INFO kernel:acpiphp: Slot [34] registered -05:51:18,527 INFO kernel:acpiphp: Slot [35] registered -05:51:18,527 INFO kernel:acpiphp: Slot [36] registered -05:51:18,527 INFO kernel:acpiphp: Slot [37] registered -05:51:18,527 INFO kernel:acpiphp: Slot [38] registered -05:51:18,527 INFO kernel:acpiphp: Slot [39] registered -05:51:18,527 INFO kernel:acpiphp: Slot [40] registered -05:51:18,527 INFO kernel:acpiphp: Slot [41] registered -05:51:18,527 INFO kernel:acpiphp: Slot [42] registered -05:51:18,527 INFO kernel:acpiphp: Slot [43] registered -05:51:18,527 INFO kernel:acpiphp: Slot [44] registered -05:51:18,527 INFO kernel:acpiphp: Slot [45] registered -05:51:18,527 INFO kernel:acpiphp: Slot [46] registered -05:51:18,527 INFO kernel:acpiphp: Slot [47] registered -05:51:18,527 INFO kernel:acpiphp: Slot [48] registered -05:51:18,527 INFO kernel:acpiphp: Slot [49] registered -05:51:18,527 INFO kernel:acpiphp: Slot [50] registered -05:51:18,527 INFO kernel:acpiphp: Slot [51] registered -05:51:18,527 INFO kernel:acpiphp: Slot [52] registered -05:51:18,527 INFO kernel:acpiphp: Slot [53] registered -05:51:18,527 INFO kernel:acpiphp: Slot [54] registered -05:51:18,527 INFO kernel:acpiphp: Slot [55] registered -05:51:18,527 INFO kernel:acpiphp: Slot [56] registered -05:51:18,527 INFO kernel:acpiphp: Slot [57] registered -05:51:18,527 INFO kernel:acpiphp: Slot [58] registered -05:51:18,527 INFO kernel:acpiphp: Slot [59] registered -05:51:18,527 INFO kernel:acpiphp: Slot [60] registered -05:51:18,527 INFO kernel:acpiphp: Slot [61] registered -05:51:18,527 INFO kernel:acpiphp: Slot [62] registered -05:51:18,527 INFO kernel:acpiphp: Slot [63] registered -05:51:18,527 WARNING kernel:acpiphp_glue: Slot 160 already registered by another hotplug driver -05:51:18,527 WARNING kernel:acpiphp_glue: Slot 192 already registered by another hotplug driver -05:51:18,527 WARNING kernel:acpiphp_glue: Slot 224 already registered by another hotplug driver -05:51:18,527 WARNING kernel:acpiphp_glue: Slot 256 already registered by another hotplug driver -05:51:18,527 WARNING kernel:acpiphp_glue: Slot 161 already registered by another hotplug driver -05:51:18,527 WARNING kernel:acpiphp_glue: Slot 162 already registered by another hotplug driver -05:51:18,527 WARNING kernel:acpiphp_glue: Slot 163 already registered by another hotplug driver -05:51:18,527 WARNING kernel:acpiphp_glue: Slot 164 already registered by another hotplug driver -05:51:18,527 WARNING kernel:acpiphp_glue: Slot 165 already registered by another hotplug driver -05:51:18,527 WARNING kernel:acpiphp_glue: Slot 166 already registered by another hotplug driver -05:51:18,527 WARNING kernel:acpiphp_glue: Slot 167 already registered by another hotplug driver -05:51:18,527 WARNING kernel:acpiphp_glue: Slot 193 already registered by another hotplug driver -05:51:18,527 WARNING kernel:acpiphp_glue: Slot 194 already registered by another hotplug driver -05:51:18,527 WARNING kernel:acpiphp_glue: Slot 195 already registered by another hotplug driver -05:51:18,527 WARNING kernel:acpiphp_glue: Slot 196 already registered by another hotplug driver -05:51:18,527 WARNING kernel:acpiphp_glue: Slot 197 already registered by another hotplug driver -05:51:18,527 WARNING kernel:acpiphp_glue: Slot 198 already registered by another hotplug driver -05:51:18,527 WARNING kernel:acpiphp_glue: Slot 199 already registered by another hotplug driver -05:51:18,527 WARNING kernel:acpiphp_glue: Slot 225 already registered by another hotplug driver -05:51:18,527 WARNING kernel:acpiphp_glue: Slot 226 already registered by another hotplug driver -05:51:18,527 WARNING kernel:acpiphp_glue: Slot 227 already registered by another hotplug driver -05:51:18,527 WARNING kernel:acpiphp_glue: Slot 228 already registered by another hotplug driver -05:51:18,527 WARNING kernel:acpiphp_glue: Slot 229 already registered by another hotplug driver -05:51:18,527 WARNING kernel:acpiphp_glue: Slot 230 already registered by another hotplug driver -05:51:18,527 WARNING kernel:acpiphp_glue: Slot 231 already registered by another hotplug driver -05:51:18,527 WARNING kernel:acpiphp_glue: Slot 257 already registered by another hotplug driver -05:51:18,527 WARNING kernel:acpiphp_glue: Slot 258 already registered by another hotplug driver -05:51:18,527 WARNING kernel:acpiphp_glue: Slot 259 already registered by another hotplug driver -05:51:18,527 WARNING kernel:acpiphp_glue: Slot 260 already registered by another hotplug driver -05:51:18,527 WARNING kernel:acpiphp_glue: Slot 261 already registered by another hotplug driver -05:51:18,527 WARNING kernel:acpiphp_glue: Slot 262 already registered by another hotplug driver -05:51:18,527 WARNING kernel:acpiphp_glue: Slot 263 already registered by another hotplug driver -05:51:18,527 INFO kernel:ipmi message handler version 39.2 -05:51:18,527 INFO kernel:IPMI System Interface driver. -05:51:18,527 INFO kernel:ipmi_si: Adding default-specified kcs state machine -05:51:18,527 INFO kernel:ipmi_si: Trying default-specified kcs state machine at i/o address 0xca2, slave address 0x0, irq 0 -05:51:18,527 INFO kernel:ipmi_si: Interface detection failed -05:51:18,527 INFO kernel:ipmi_si: Adding default-specified smic state machine -05:51:18,527 INFO kernel:ipmi_si: Trying default-specified smic state machine at i/o address 0xca9, slave address 0x0, irq 0 -05:51:18,527 INFO kernel:ipmi_si: Interface detection failed -05:51:18,527 INFO kernel:ipmi_si: Adding default-specified bt state machine -05:51:18,527 INFO kernel:ipmi_si: Trying default-specified bt state machine at i/o address 0xe4, slave address 0x0, irq 0 -05:51:18,527 INFO kernel:ipmi_si: Interface detection failed -05:51:18,527 WARNING kernel:ipmi_si: Unable to find any System Interface(s) -05:51:18,527 INFO kernel:ACPI: AC Adapter [ACAD] (on-line) -05:51:18,527 INFO kernel:input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input0 -05:51:18,527 INFO kernel:ACPI: Power Button [PWRF] -05:51:18,527 DEBUG kernel:ACPI: acpi_idle registered with cpuidle -05:51:18,527 WARNING kernel:ACPI Exception: AE_NOT_FOUND, No or invalid critical threshold (20090903/thermal-386) -05:51:18,527 INFO kernel:GHES: HEST is not enabled! -05:51:18,527 INFO kernel:Non-volatile memory driver v1.3 -05:51:18,527 INFO kernel:Linux agpgart interface v0.103 -05:51:18,527 INFO kernel:agpgart-intel 0000:00:00.0: Intel 440BX Chipset -05:51:18,527 INFO kernel:agpgart-intel 0000:00:00.0: AGP aperture is 256M @ 0x0 -05:51:18,527 INFO kernel:crash memory driver: version 1.1 -05:51:18,527 INFO kernel:Serial: 8250/16550 driver, 4 ports, IRQ sharing enabled -05:51:18,527 INFO kernel:serial8250: ttyS0 at I/O 0x3f8 (irq = 4) is a 16550A -05:51:18,527 INFO kernel:serial8250: ttyS1 at I/O 0x2f8 (irq = 3) is a 16550A -05:51:18,527 INFO kernel:00:0a: ttyS0 at I/O 0x3f8 (irq = 4) is a 16550A -05:51:18,527 INFO kernel:00:0b: ttyS1 at I/O 0x2f8 (irq = 3) is a 16550A -05:51:18,527 INFO kernel:brd: module loaded -05:51:18,527 INFO kernel:loop: module loaded -05:51:18,527 INFO kernel:input: Macintosh mouse button emulation as /devices/virtual/input/input1 -05:51:18,527 INFO kernel:Fixed MDIO Bus: probed -05:51:18,527 INFO kernel:ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver -05:51:18,527 INFO kernel:ohci_hcd: USB 1.1 'Open' Host Controller (OHCI) Driver -05:51:18,527 INFO kernel:uhci_hcd: USB Universal Host Controller Interface driver -05:51:18,527 INFO kernel:PNP: PS/2 Controller [PNP0303:KBC,PNP0f13:MOUS] at 0x60,0x64 irq 1,12 -05:51:18,527 INFO kernel:Refined TSC clocksource calibration: 2400.080 MHz. -05:51:18,527 INFO kernel:Switching to clocksource tsc -05:51:18,527 INFO kernel:serio: i8042 KBD port at 0x60,0x64 irq 1 -05:51:18,527 INFO kernel:serio: i8042 AUX port at 0x60,0x64 irq 12 -05:51:18,527 INFO kernel:mice: PS/2 mouse device common for all mice -05:51:18,527 INFO kernel:rtc_cmos 00:04: rtc core: registered rtc_cmos as rtc0 -05:51:18,527 INFO kernel:rtc0: alarms up to one month, y3k, 114 bytes nvram, hpet irqs -05:51:18,527 INFO kernel:cpuidle: using governor ladder -05:51:18,527 INFO kernel:cpuidle: using governor menu -05:51:18,527 INFO kernel:EFI Variables Facility v0.08 2004-May-17 -05:51:18,527 INFO kernel:usbcore: registered new interface driver hiddev -05:51:18,527 INFO kernel:usbcore: registered new interface driver usbhid -05:51:18,527 INFO kernel:usbhid: v2.6:USB HID core driver -05:51:18,527 INFO kernel:GRE over IPv4 demultiplexor driver -05:51:18,527 INFO kernel:TCP cubic registered -05:51:18,527 INFO kernel:input: AT Translated Set 2 keyboard as /devices/platform/i8042/serio0/input/input2 -05:51:18,527 INFO kernel:Initializing XFRM netlink socket -05:51:18,527 INFO kernel:NET: Registered protocol family 17 -05:51:18,527 WARNING kernel:registered taskstats version 1 -05:51:18,527 INFO kernel:input: ImPS/2 Generic Wheel Mouse as /devices/platform/i8042/serio1/input/input3 -05:51:18,527 INFO kernel:rtc_cmos 00:04: setting system clock to 2002-05-11 05:51:18 UTC (1021096278) -05:51:18,527 INFO kernel:Initalizing network drop monitor service -05:51:18,527 INFO kernel:Freeing unused kernel memory: 1276k freed -05:51:18,527 INFO kernel:Write protecting the kernel read-only data: 10240k -05:51:18,527 INFO kernel:Freeing unused kernel memory: 800k freed -05:51:18,527 INFO kernel:Freeing unused kernel memory: 1588k freed -05:51:20,557 INFO kernel:squashfs: version 4.0 (2009/01/31) Phillip Lougher -05:51:20,568 INFO kernel:Loading iSCSI transport class v2.0-870. -05:51:20,587 NOTICE kernel:iscsi: registered transport (tcp) -05:51:20,594 INFO kernel:Floppy drive(s): fd0 is 1.44M -05:51:20,605 INFO kernel:FDC 0 is a post-1991 82077 -05:51:20,610 INFO kernel:BIOS EDD facility v0.16 2004-Jun-25, 2 devices found -05:51:20,614 INFO kernel:input: PC Speaker as /devices/platform/pcspkr/input/input4 -05:51:20,620 INFO kernel:No iBFT detected. -05:51:20,655 INFO kernel:NET: Registered protocol family 10 -05:51:20,657 INFO kernel:lo: Disabled Privacy Extensions -05:51:20,739 DEBUG kernel:ata_piix 0000:00:07.1: version 2.13 -05:51:20,740 INFO kernel:scsi0 : ata_piix -05:51:20,740 INFO kernel:scsi1 : ata_piix -05:51:20,740 INFO kernel:ata1: PATA max UDMA/33 cmd 0x1f0 ctl 0x3f6 bmdma 0x10c0 irq 14 -05:51:20,740 INFO kernel:ata2: PATA max UDMA/33 cmd 0x170 ctl 0x376 bmdma 0x10c8 irq 15 -05:51:20,750 ERR udevd-work: device node '/dev/rtc' already exists, link to '/dev/rtc0' will not overwrite it -05:51:20,926 INFO kernel:ata2.00: ATAPI: VMware Virtual IDE CDROM Drive, 00000001, max UDMA/33 -05:51:20,934 INFO kernel:ata2.00: configured for UDMA/33 -05:51:20,934 NOTICE kernel:scsi 1:0:0:0: CD-ROM NECVMWar VMware IDE CDR10 1.00 PQ: 0 ANSI: 5 -05:51:20,959 INFO kernel:Fusion MPT base driver 3.04.20 -05:51:20,959 INFO kernel:Copyright (c) 1999-2008 LSI Corporation -05:51:20,971 INFO kernel:Fusion MPT SPI Host driver 3.04.20 -05:51:20,971 DEBUG kernel: alloc irq_desc for 17 on node -1 -05:51:20,971 DEBUG kernel: alloc kstat_irqs on node -1 -05:51:20,971 INFO kernel:mptspi 0000:00:10.0: PCI INT A -> GSI 17 (level, low) -> IRQ 17 -05:51:20,972 INFO kernel:mptbase: ioc0: Initiating bringup -05:51:20,990 INFO kernel:ioc0: LSI53C1030 B0: Capabilities={Initiator} -05:51:21,031 INFO kernel:scsi2 : ioc0: LSI53C1030 B0, FwRev=01032920h, Ports=1, MaxQ=128, IRQ=17 -05:51:21,061 NOTICE kernel:scsi 2:0:0:0: Direct-Access VMware Virtual disk 1.0 PQ: 0 ANSI: 2 -05:51:21,061 INFO kernel:scsi target2:0:0: Beginning Domain Validation -05:51:21,061 INFO kernel:scsi target2:0:0: Domain Validation skipping write tests -05:51:21,061 INFO kernel:scsi target2:0:0: Ending Domain Validation -05:51:21,061 INFO kernel:scsi target2:0:0: FAST-40 WIDE SCSI 80.0 MB/s ST (25 ns, offset 127) -05:51:21,061 NOTICE kernel:scsi 2:0:1:0: Direct-Access VMware Virtual disk 1.0 PQ: 0 ANSI: 2 -05:51:21,061 INFO kernel:scsi target2:0:1: Beginning Domain Validation -05:51:21,061 INFO kernel:scsi target2:0:1: Domain Validation skipping write tests -05:51:21,061 INFO kernel:scsi target2:0:1: Ending Domain Validation -05:51:21,061 INFO kernel:scsi target2:0:1: FAST-40 WIDE SCSI 80.0 MB/s ST (25 ns, offset 127) -05:51:21,088 WARNING kernel:sr0: scsi3-mmc drive: 1x/1x writer dvd-ram cd/rw xa/form2 cdda tray -05:51:21,088 INFO kernel:Uniform CD-ROM driver Revision: 3.20 -05:51:21,088 DEBUG kernel:sr 1:0:0:0: Attached scsi CD-ROM sr0 -05:51:21,098 INFO kernel:e1000: Intel(R) PRO/1000 Network Driver - version 7.3.21-k8-NAPI -05:51:21,098 INFO kernel:e1000: Copyright (c) 1999-2006 Intel Corporation. -05:51:21,098 DEBUG kernel: alloc irq_desc for 18 on node -1 -05:51:21,098 DEBUG kernel: alloc kstat_irqs on node -1 -05:51:21,098 INFO kernel:e1000 0000:02:00.0: PCI INT A -> GSI 18 (level, low) -> IRQ 18 -05:51:21,098 DEBUG kernel:e1000 0000:02:00.0: setting latency timer to 64 -05:51:21,447 INFO kernel:e1000 0000:02:00.0: eth0: (PCI:66MHz:32-bit) 00:0c:29:21:89:af -05:51:21,447 INFO kernel:e1000 0000:02:00.0: eth0: Intel(R) PRO/1000 Network Connection -05:51:21,447 DEBUG kernel: alloc irq_desc for 19 on node -1 -05:51:21,447 DEBUG kernel: alloc kstat_irqs on node -1 -05:51:21,447 INFO kernel:e1000 0000:02:01.0: PCI INT A -> GSI 19 (level, low) -> IRQ 19 -05:51:21,447 DEBUG kernel:e1000 0000:02:01.0: setting latency timer to 64 -05:51:21,793 INFO kernel:e1000 0000:02:01.0: eth1: (PCI:66MHz:32-bit) 00:0c:29:21:89:b9 -05:51:21,793 INFO kernel:e1000 0000:02:01.0: eth1: Intel(R) PRO/1000 Network Connection -05:51:21,793 DEBUG kernel: alloc irq_desc for 16 on node -1 -05:51:21,793 DEBUG kernel: alloc kstat_irqs on node -1 -05:51:21,793 INFO kernel:e1000 0000:02:02.0: PCI INT A -> GSI 16 (level, low) -> IRQ 16 -05:51:21,793 DEBUG kernel:e1000 0000:02:02.0: setting latency timer to 64 -05:51:22,142 INFO kernel:e1000 0000:02:02.0: eth2: (PCI:66MHz:32-bit) 00:0c:29:21:89:c3 -05:51:22,142 INFO kernel:e1000 0000:02:02.0: eth2: Intel(R) PRO/1000 Network Connection -05:51:22,142 INFO kernel:e1000 0000:02:03.0: PCI INT A -> GSI 17 (level, low) -> IRQ 17 -05:51:22,142 DEBUG kernel:e1000 0000:02:03.0: setting latency timer to 64 -05:51:22,485 INFO kernel:e1000 0000:02:03.0: eth3: (PCI:66MHz:32-bit) 00:0c:29:21:89:cd -05:51:22,485 INFO kernel:e1000 0000:02:03.0: eth3: Intel(R) PRO/1000 Network Connection -05:51:22,515 NOTICE kernel:sd 2:0:0:0: [sda] 33554432 512-byte logical blocks: (17.1 GB/16.0 GiB) -05:51:22,515 NOTICE kernel:sd 2:0:0:0: [sda] Write Protect is off -05:51:22,515 DEBUG kernel:sd 2:0:0:0: [sda] Mode Sense: 61 00 00 00 -05:51:22,515 NOTICE kernel:sd 2:0:0:0: [sda] Cache data unavailable -05:51:22,515 ERR kernel:sd 2:0:0:0: [sda] Assuming drive cache: write through -05:51:22,515 NOTICE kernel:sd 2:0:0:0: [sda] Cache data unavailable -05:51:22,515 ERR kernel:sd 2:0:0:0: [sda] Assuming drive cache: write through -05:51:22,516 INFO kernel: sda: -05:51:22,516 NOTICE kernel:sd 2:0:1:0: [sdb] 33554432 512-byte logical blocks: (17.1 GB/16.0 GiB) -05:51:22,516 NOTICE kernel:sd 2:0:1:0: [sdb] Write Protect is off -05:51:22,516 DEBUG kernel:sd 2:0:1:0: [sdb] Mode Sense: 61 00 00 00 -05:51:22,516 NOTICE kernel:sd 2:0:1:0: [sdb] Cache data unavailable -05:51:22,516 ERR kernel:sd 2:0:1:0: [sdb] Assuming drive cache: write through -05:51:22,516 NOTICE kernel:sd 2:0:1:0: [sdb] Cache data unavailable -05:51:22,516 ERR kernel:sd 2:0:1:0: [sdb] Assuming drive cache: write through -05:51:22,522 INFO kernel: sdb: -05:51:22,522 NOTICE kernel:sd 2:0:1:0: [sdb] Cache data unavailable -05:51:22,522 ERR kernel:sd 2:0:1:0: [sdb] Assuming drive cache: write through -05:51:22,522 NOTICE kernel:sd 2:0:1:0: [sdb] Attached SCSI disk -05:51:22,577 WARNING kernel: sda1 sda2 sda3 -05:51:22,598 NOTICE kernel:sd 2:0:0:0: [sda] Cache data unavailable -05:51:22,598 ERR kernel:sd 2:0:0:0: [sda] Assuming drive cache: write through -05:51:22,598 NOTICE kernel:sd 2:0:0:0: [sda] Attached SCSI disk -05:51:22,606 NOTICE kernel:sr 1:0:0:0: Attached scsi generic sg0 type 5 -05:51:22,606 NOTICE kernel:sd 2:0:0:0: Attached scsi generic sg1 type 0 -05:51:22,606 NOTICE kernel:sd 2:0:1:0: Attached scsi generic sg2 type 0 -05:51:28,012 ERR udevd-work: device node '/dev/rtc' already exists, link to '/dev/rtc0' will not overwrite it -05:51:46,181 INFO NetworkManager: NetworkManager (version 0.8.1-66.el6) is starting... -05:51:46,181 INFO NetworkManager: Read config file /etc/NetworkManager/NetworkManager.conf -05:51:46,183 INFO NetworkManager: trying to start the modem manager... -05:51:46,186 INFO NetworkManager: monitoring kernel firmware directory '/lib/firmware'. -05:51:46,186 INFO NetworkManager: Bonding/Bridging/VLAN support enabled -05:51:46,188 NOTICE NetworkManager: ifcfg-rh: Acquired D-Bus service com.redhat.ifcfgrh1 -05:51:46,188 INFO NetworkManager: Loaded plugin ifcfg-rh: (c) 2007 - 2008 Red Hat, Inc. To report bugs please use the NetworkManager mailing list. -05:51:46,188 INFO NetworkManager: Loaded plugin keyfile: (c) 2007 - 2008 Red Hat, Inc. To report bugs please use the NetworkManager mailing list. -05:51:46,188 NOTICE NetworkManager: ifcfg-rh: parsing /etc/sysconfig/network-scripts/ifcfg-eth3 ... -05:51:46,190 NOTICE NetworkManager: ifcfg-rh: read connection 'System eth3' -05:51:46,190 NOTICE NetworkManager: ifcfg-rh: parsing /etc/sysconfig/network-scripts/ifcfg-eth2 ... -05:51:46,190 NOTICE NetworkManager: ifcfg-rh: read connection 'System eth2' -05:51:46,190 NOTICE NetworkManager: ifcfg-rh: parsing /etc/sysconfig/network-scripts/ifcfg-eth1 ... -05:51:46,191 NOTICE NetworkManager: ifcfg-rh: read connection 'System eth1' -05:51:46,191 NOTICE NetworkManager: ifcfg-rh: parsing /etc/sysconfig/network-scripts/ifcfg-eth0 ... -05:51:46,192 NOTICE NetworkManager: ifcfg-rh: read connection 'System eth0' -05:51:46,192 WARNING NetworkManager: Can not read directory '/etc/NetworkManager/system-connections': Error opening directory '/etc/NetworkManager/system-connections': No such file or directory -05:51:46,194 INFO NetworkManager: WiFi enabled by radio killswitch; enabled by state file -05:51:46,194 INFO NetworkManager: WWAN enabled by radio killswitch; enabled by state file -05:51:46,194 INFO NetworkManager: WiMAX enabled by radio killswitch; enabled by state file -05:51:46,194 INFO NetworkManager: Networking is enabled by state file -05:51:46,212 INFO kernel:802.1Q VLAN Support v1.8 Ben Greear -05:51:46,212 INFO kernel:All bugs added by David S. Miller -05:51:46,217 INFO kernel:e1000: eth0 NIC Link is Up 1000 Mbps Full Duplex, Flow Control: None -05:51:46,218 INFO NetworkManager: (eth0): carrier is OFF -05:51:46,218 INFO NetworkManager: (eth0): new Ethernet device (driver: 'e1000' ifindex: 2) -05:51:46,218 INFO NetworkManager: (eth0): exported as /org/freedesktop/NetworkManager/Devices/0 -05:51:46,218 INFO NetworkManager: (eth0): now managed -05:51:46,218 INFO NetworkManager: (eth0): device state change: 1 -> 2 (reason 2) -05:51:46,218 INFO NetworkManager: (eth0): bringing up device. -05:51:46,221 INFO kernel:8021q: adding VLAN 0 to HW filter on device eth0 -05:51:46,222 INFO NetworkManager: (eth0): carrier now ON (device state 2) -05:51:46,222 INFO NetworkManager: (eth0): preparing device. -05:51:46,222 INFO NetworkManager: (eth0): deactivating device (reason: 2). -05:51:46,223 INFO NetworkManager: (eth1): carrier is OFF -05:51:46,224 INFO NetworkManager: (eth1): new Ethernet device (driver: 'e1000' ifindex: 3) -05:51:46,224 INFO NetworkManager: (eth1): exported as /org/freedesktop/NetworkManager/Devices/1 -05:51:46,224 INFO NetworkManager: (eth1): now managed -05:51:46,224 INFO NetworkManager: (eth1): device state change: 1 -> 2 (reason 2) -05:51:46,224 INFO NetworkManager: (eth1): bringing up device. -05:51:46,229 INFO kernel:e1000: eth1 NIC Link is Up 1000 Mbps Full Duplex, Flow Control: None -05:51:46,233 INFO kernel:8021q: adding VLAN 0 to HW filter on device eth1 -05:51:46,233 INFO NetworkManager: (eth1): carrier now ON (device state 2) -05:51:46,234 INFO NetworkManager: (eth1): preparing device. -05:51:46,234 INFO NetworkManager: (eth1): deactivating device (reason: 2). -05:51:46,235 INFO NetworkManager: (eth2): carrier is OFF -05:51:46,235 INFO NetworkManager: (eth2): new Ethernet device (driver: 'e1000' ifindex: 4) -05:51:46,235 INFO NetworkManager: (eth2): exported as /org/freedesktop/NetworkManager/Devices/2 -05:51:46,235 INFO NetworkManager: (eth2): now managed -05:51:46,235 INFO NetworkManager: (eth2): device state change: 1 -> 2 (reason 2) -05:51:46,235 INFO NetworkManager: (eth2): bringing up device. -05:51:46,240 INFO kernel:e1000: eth2 NIC Link is Up 1000 Mbps Full Duplex, Flow Control: None -05:51:46,244 INFO kernel:8021q: adding VLAN 0 to HW filter on device eth2 -05:51:46,245 INFO NetworkManager: (eth2): carrier now ON (device state 2) -05:51:46,245 INFO NetworkManager: (eth2): preparing device. -05:51:46,245 INFO NetworkManager: (eth2): deactivating device (reason: 2). -05:51:46,246 INFO NetworkManager: (eth3): carrier is OFF -05:51:46,247 INFO NetworkManager: (eth3): new Ethernet device (driver: 'e1000' ifindex: 5) -05:51:46,247 INFO NetworkManager: (eth3): exported as /org/freedesktop/NetworkManager/Devices/3 -05:51:46,247 INFO NetworkManager: (eth3): now managed -05:51:46,247 INFO NetworkManager: (eth3): device state change: 1 -> 2 (reason 2) -05:51:46,247 INFO NetworkManager: (eth3): bringing up device. -05:51:46,251 INFO kernel:e1000: eth3 NIC Link is Up 1000 Mbps Full Duplex, Flow Control: None -05:51:46,255 INFO kernel:8021q: adding VLAN 0 to HW filter on device eth3 -05:51:46,256 INFO NetworkManager: (eth3): carrier now ON (device state 2) -05:51:46,256 INFO NetworkManager: (eth3): preparing device. -05:51:46,256 INFO NetworkManager: (eth3): deactivating device (reason: 2). -05:51:46,258 INFO NetworkManager: (eth0): carrier now OFF (device state 2) -05:51:46,258 INFO NetworkManager: (eth0): carrier now ON (device state 2) -05:51:46,258 WARNING NetworkManager: (nm-device.c:4447):nm_device_queue_state: runtime check failed: (priv->queued_state.id == 0) -05:51:46,258 INFO NetworkManager: (eth1): carrier now OFF (device state 2) -05:51:46,259 INFO NetworkManager: (eth1): carrier now ON (device state 2) -05:51:46,259 WARNING NetworkManager: (nm-device.c:4447):nm_device_queue_state: runtime check failed: (priv->queued_state.id == 0) -05:51:46,259 INFO NetworkManager: (eth2): carrier now OFF (device state 2) -05:51:46,259 INFO NetworkManager: (eth2): carrier now ON (device state 2) -05:51:46,259 WARNING NetworkManager: (nm-device.c:4447):nm_device_queue_state: runtime check failed: (priv->queued_state.id == 0) -05:51:46,259 INFO NetworkManager: (eth3): carrier now OFF (device state 2) -05:51:46,259 INFO NetworkManager: (eth3): carrier now ON (device state 2) -05:51:46,259 WARNING NetworkManager: (nm-device.c:4447):nm_device_queue_state: runtime check failed: (priv->queued_state.id == 0) -05:51:46,260 INFO NetworkManager: Trying to start the supplicant... -05:51:46,261 INFO NetworkManager: (eth0): device state change: 2 -> 3 (reason 40) -05:51:46,261 INFO NetworkManager: (eth1): device state change: 2 -> 3 (reason 40) -05:51:46,261 INFO NetworkManager: (eth2): device state change: 2 -> 3 (reason 40) -05:51:46,262 INFO NetworkManager: (eth3): device state change: 2 -> 3 (reason 40) -05:51:46,268 INFO NetworkManager: wpa_supplicant started -05:51:47,181 WARNING NetworkManager: error requesting auth for org.freedesktop.NetworkManager.enable-disable-network: (26) Remote Exception invoking org.freedesktop.PolicyKit1.Authority.CheckAuthorization() on /org/freedesktop/PolicyKit1/Authority at name org.freedesktop.PolicyKit1: org.freedesktop.DBus.Error.Spawn.ExecFailed: Cannot launch daemon, file not found or permissions invalid -05:51:47,182 WARNING NetworkManager: error requesting auth for org.freedesktop.NetworkManager.sleep-wake: (26) Remote Exception invoking org.freedesktop.PolicyKit1.Authority.CheckAuthorization() on /org/freedesktop/PolicyKit1/Authority at name org.freedesktop.PolicyKit1: org.freedesktop.DBus.Error.Spawn.ExecFailed: Cannot launch daemon, file not found or permissions invalid -05:51:47,182 WARNING NetworkManager: error requesting auth for org.freedesktop.NetworkManager.enable-disable-wifi: (26) Remote Exception invoking org.freedesktop.PolicyKit1.Authority.CheckAuthorization() on /org/freedesktop/PolicyKit1/Authority at name org.freedesktop.PolicyKit1: org.freedesktop.DBus.Error.Spawn.ExecFailed: Cannot launch daemon, file not found or permissions invalid -05:51:47,182 WARNING NetworkManager: error requesting auth for org.freedesktop.NetworkManager.enable-disable-wwan: (26) Remote Exception invoking org.freedesktop.PolicyKit1.Authority.CheckAuthorization() on /org/freedesktop/PolicyKit1/Authority at name org.freedesktop.PolicyKit1: org.freedesktop.DBus.Error.Spawn.ExecFailed: Cannot launch daemon, file not found or permissions invalid -05:51:47,182 WARNING NetworkManager: error requesting auth for org.freedesktop.NetworkManager.use-user-connections: (26) Remote Exception invoking org.freedesktop.PolicyKit1.Authority.CheckAuthorization() on /org/freedesktop/PolicyKit1/Authority at name org.freedesktop.PolicyKit1: org.freedesktop.DBus.Error.Spawn.ExecFailed: Cannot launch daemon, file not found or permissions invalid -05:51:47,182 WARNING NetworkManager: error requesting auth for org.freedesktop.NetworkManager.network-control: (26) Remote Exception invoking org.freedesktop.PolicyKit1.Authority.CheckAuthorization() on /org/freedesktop/PolicyKit1/Authority at name org.freedesktop.PolicyKit1: org.freedesktop.DBus.Error.Spawn.ExecFailed: Cannot launch daemon, file not found or permissions invalid -05:51:47,182 WARNING NetworkManager: error requesting auth for org.freedesktop.network-manager-settings.system.wifi.share.open: (26) Remote Exception invoking org.freedesktop.PolicyKit1.Authority.CheckAuthorization() on /org/freedesktop/PolicyKit1/Authority at name org.freedesktop.PolicyKit1: org.freedesktop.DBus.Error.Spawn.ExecFailed: Cannot launch daemon, file not found or permissions invalid -05:51:47,183 WARNING NetworkManager: error requesting auth for org.freedesktop.network-manager-settings.system.wifi.share.protected: (26) Remote Exception invoking org.freedesktop.PolicyKit1.Authority.CheckAuthorization() on /org/freedesktop/PolicyKit1/Authority at name org.freedesktop.PolicyKit1: org.freedesktop.DBus.Error.Spawn.ExecFailed: Cannot launch daemon, file not found or permissions invalid -05:51:47,191 WARNING NetworkManager: error requesting auth for org.freedesktop.NetworkManager.enable-disable-network: (26) Remote Exception invoking org.freedesktop.PolicyKit1.Authority.CheckAuthorization() on /org/freedesktop/PolicyKit1/Authority at name org.freedesktop.PolicyKit1: org.freedesktop.DBus.Error.Spawn.ExecFailed: Cannot launch daemon, file not found or permissions invalid -05:51:47,191 WARNING NetworkManager: error requesting auth for org.freedesktop.NetworkManager.sleep-wake: (26) Remote Exception invoking org.freedesktop.PolicyKit1.Authority.CheckAuthorization() on /org/freedesktop/PolicyKit1/Authority at name org.freedesktop.PolicyKit1: org.freedesktop.DBus.Error.Spawn.ExecFailed: Cannot launch daemon, file not found or permissions invalid -05:51:47,191 WARNING NetworkManager: error requesting auth for org.freedesktop.NetworkManager.enable-disable-wifi: (26) Remote Exception invoking org.freedesktop.PolicyKit1.Authority.CheckAuthorization() on /org/freedesktop/PolicyKit1/Authority at name org.freedesktop.PolicyKit1: org.freedesktop.DBus.Error.Spawn.ExecFailed: Cannot launch daemon, file not found or permissions invalid -05:51:47,191 WARNING NetworkManager: error requesting auth for org.freedesktop.NetworkManager.enable-disable-wwan: (26) Remote Exception invoking org.freedesktop.PolicyKit1.Authority.CheckAuthorization() on /org/freedesktop/PolicyKit1/Authority at name org.freedesktop.PolicyKit1: org.freedesktop.DBus.Error.Spawn.ExecFailed: Cannot launch daemon, file not found or permissions invalid -05:51:47,191 WARNING NetworkManager: error requesting auth for org.freedesktop.NetworkManager.use-user-connections: (26) Remote Exception invoking org.freedesktop.PolicyKit1.Authority.CheckAuthorization() on /org/freedesktop/PolicyKit1/Authority at name org.freedesktop.PolicyKit1: org.freedesktop.DBus.Error.Spawn.ExecFailed: Cannot launch daemon, file not found or permissions invalid -05:51:47,191 WARNING NetworkManager: error requesting auth for org.freedesktop.NetworkManager.network-control: (26) Remote Exception invoking org.freedesktop.PolicyKit1.Authority.CheckAuthorization() on /org/freedesktop/PolicyKit1/Authority at name org.freedesktop.PolicyKit1: org.freedesktop.DBus.Error.Spawn.ExecFailed: Cannot launch daemon, file not found or permissions invalid -05:51:47,192 WARNING NetworkManager: error requesting auth for org.freedesktop.network-manager-settings.system.wifi.share.open: (26) Remote Exception invoking org.freedesktop.PolicyKit1.Authority.CheckAuthorization() on /org/freedesktop/PolicyKit1/Authority at name org.freedesktop.PolicyKit1: org.freedesktop.DBus.Error.Spawn.ExecFailed: Cannot launch daemon, file not found or permissions invalid -05:51:47,192 WARNING NetworkManager: error requesting auth for org.freedesktop.network-manager-settings.system.wifi.share.protected: (26) Remote Exception invoking org.freedesktop.PolicyKit1.Authority.CheckAuthorization() on /org/freedesktop/PolicyKit1/Authority at name org.freedesktop.PolicyKit1: org.freedesktop.DBus.Error.Spawn.ExecFailed: Cannot launch daemon, file not found or permissions invalid -05:51:47,200 WARNING NetworkManager: error requesting auth for org.freedesktop.NetworkManager.enable-disable-network: (26) Remote Exception invoking org.freedesktop.PolicyKit1.Authority.CheckAuthorization() on /org/freedesktop/PolicyKit1/Authority at name org.freedesktop.PolicyKit1: org.freedesktop.DBus.Error.Spawn.ExecFailed: Cannot launch daemon, file not found or permissions invalid -05:51:47,200 WARNING NetworkManager: error requesting auth for org.freedesktop.NetworkManager.sleep-wake: (26) Remote Exception invoking org.freedesktop.PolicyKit1.Authority.CheckAuthorization() on /org/freedesktop/PolicyKit1/Authority at name org.freedesktop.PolicyKit1: org.freedesktop.DBus.Error.Spawn.ExecFailed: Cannot launch daemon, file not found or permissions invalid -05:51:47,200 WARNING NetworkManager: error requesting auth for org.freedesktop.NetworkManager.enable-disable-wifi: (26) Remote Exception invoking org.freedesktop.PolicyKit1.Authority.CheckAuthorization() on /org/freedesktop/PolicyKit1/Authority at name org.freedesktop.PolicyKit1: org.freedesktop.DBus.Error.Spawn.ExecFailed: Cannot launch daemon, file not found or permissions invalid -05:51:47,200 WARNING NetworkManager: error requesting auth for org.freedesktop.NetworkManager.enable-disable-wwan: (26) Remote Exception invoking org.freedesktop.PolicyKit1.Authority.CheckAuthorization() on /org/freedesktop/PolicyKit1/Authority at name org.freedesktop.PolicyKit1: org.freedesktop.DBus.Error.Spawn.ExecFailed: Cannot launch daemon, file not found or permissions invalid -05:51:47,200 WARNING NetworkManager: error requesting auth for org.freedesktop.NetworkManager.use-user-connections: (26) Remote Exception invoking org.freedesktop.PolicyKit1.Authority.CheckAuthorization() on /org/freedesktop/PolicyKit1/Authority at name org.freedesktop.PolicyKit1: org.freedesktop.DBus.Error.Spawn.ExecFailed: Cannot launch daemon, file not found or permissions invalid -05:51:47,201 WARNING NetworkManager: error requesting auth for org.freedesktop.NetworkManager.network-control: (26) Remote Exception invoking org.freedesktop.PolicyKit1.Authority.CheckAuthorization() on /org/freedesktop/PolicyKit1/Authority at name org.freedesktop.PolicyKit1: org.freedesktop.DBus.Error.Spawn.ExecFailed: Cannot launch daemon, file not found or permissions invalid -05:51:47,201 WARNING NetworkManager: error requesting auth for org.freedesktop.network-manager-settings.system.wifi.share.open: (26) Remote Exception invoking org.freedesktop.PolicyKit1.Authority.CheckAuthorization() on /org/freedesktop/PolicyKit1/Authority at name org.freedesktop.PolicyKit1: org.freedesktop.DBus.Error.Spawn.ExecFailed: Cannot launch daemon, file not found or permissions invalid -05:51:47,201 WARNING NetworkManager: error requesting auth for org.freedesktop.network-manager-settings.system.wifi.share.protected: (26) Remote Exception invoking org.freedesktop.PolicyKit1.Authority.CheckAuthorization() on /org/freedesktop/PolicyKit1/Authority at name org.freedesktop.PolicyKit1: org.freedesktop.DBus.Error.Spawn.ExecFailed: Cannot launch daemon, file not found or permissions invalid -05:51:47,212 WARNING NetworkManager: error requesting auth for org.freedesktop.NetworkManager.enable-disable-network: (26) Remote Exception invoking org.freedesktop.PolicyKit1.Authority.CheckAuthorization() on /org/freedesktop/PolicyKit1/Authority at name org.freedesktop.PolicyKit1: org.freedesktop.DBus.Error.Spawn.ExecFailed: Cannot launch daemon, file not found or permissions invalid -05:51:47,212 WARNING NetworkManager: error requesting auth for org.freedesktop.NetworkManager.sleep-wake: (26) Remote Exception invoking org.freedesktop.PolicyKit1.Authority.CheckAuthorization() on /org/freedesktop/PolicyKit1/Authority at name org.freedesktop.PolicyKit1: org.freedesktop.DBus.Error.Spawn.ExecFailed: Cannot launch daemon, file not found or permissions invalid -05:51:47,212 WARNING NetworkManager: error requesting auth for org.freedesktop.NetworkManager.enable-disable-wifi: (26) Remote Exception invoking org.freedesktop.PolicyKit1.Authority.CheckAuthorization() on /org/freedesktop/PolicyKit1/Authority at name org.freedesktop.PolicyKit1: org.freedesktop.DBus.Error.Spawn.ExecFailed: Cannot launch daemon, file not found or permissions invalid -05:51:47,212 WARNING NetworkManager: error requesting auth for org.freedesktop.NetworkManager.enable-disable-wwan: (26) Remote Exception invoking org.freedesktop.PolicyKit1.Authority.CheckAuthorization() on /org/freedesktop/PolicyKit1/Authority at name org.freedesktop.PolicyKit1: org.freedesktop.DBus.Error.Spawn.ExecFailed: Cannot launch daemon, file not found or permissions invalid -05:51:47,212 WARNING NetworkManager: error requesting auth for org.freedesktop.NetworkManager.use-user-connections: (26) Remote Exception invoking org.freedesktop.PolicyKit1.Authority.CheckAuthorization() on /org/freedesktop/PolicyKit1/Authority at name org.freedesktop.PolicyKit1: org.freedesktop.DBus.Error.Spawn.ExecFailed: Cannot launch daemon, file not found or permissions invalid -05:51:47,212 WARNING NetworkManager: error requesting auth for org.freedesktop.NetworkManager.network-control: (26) Remote Exception invoking org.freedesktop.PolicyKit1.Authority.CheckAuthorization() on /org/freedesktop/PolicyKit1/Authority at name org.freedesktop.PolicyKit1: org.freedesktop.DBus.Error.Spawn.ExecFailed: Cannot launch daemon, file not found or permissions invalid -05:51:47,213 WARNING NetworkManager: error requesting auth for org.freedesktop.network-manager-settings.system.wifi.share.open: (26) Remote Exception invoking org.freedesktop.PolicyKit1.Authority.CheckAuthorization() on /org/freedesktop/PolicyKit1/Authority at name org.freedesktop.PolicyKit1: org.freedesktop.DBus.Error.Spawn.ExecFailed: Cannot launch daemon, file not found or permissions invalid -05:51:47,213 WARNING NetworkManager: error requesting auth for org.freedesktop.network-manager-settings.system.wifi.share.protected: (26) Remote Exception invoking org.freedesktop.PolicyKit1.Authority.CheckAuthorization() on /org/freedesktop/PolicyKit1/Authority at name org.freedesktop.PolicyKit1: org.freedesktop.DBus.Error.Spawn.ExecFailed: Cannot launch daemon, file not found or permissions invalid -05:51:48,220 NOTICE NetworkManager: ifcfg-rh: updating /etc/sysconfig/network-scripts/ifcfg-eth0 -05:51:48,223 INFO NetworkManager: Auto-activating connection 'System eth0'. -05:51:48,224 INFO NetworkManager: Activation (eth0) starting connection 'System eth0' -05:51:48,224 INFO NetworkManager: (eth0): device state change: 3 -> 4 (reason 0) -05:51:48,224 INFO NetworkManager: Activation (eth0) Stage 1 of 5 (Device Prepare) scheduled... -05:51:48,224 INFO NetworkManager: Activation (eth0) Stage 1 of 5 (Device Prepare) started... -05:51:48,224 INFO NetworkManager: Activation (eth0) Stage 2 of 5 (Device Configure) scheduled... -05:51:48,225 INFO NetworkManager: Activation (eth0) Stage 1 of 5 (Device Prepare) complete. -05:51:48,225 INFO NetworkManager: Activation (eth0) Stage 2 of 5 (Device Configure) starting... -05:51:48,225 INFO NetworkManager: (eth0): device state change: 4 -> 5 (reason 0) -05:51:48,225 INFO NetworkManager: Activation (eth0) Stage 2 of 5 (Device Configure) successful. -05:51:48,225 INFO NetworkManager: Activation (eth0) Stage 3 of 5 (IP Configure Start) scheduled. -05:51:48,225 INFO NetworkManager: Activation (eth0) Stage 2 of 5 (Device Configure) complete. -05:51:48,225 INFO NetworkManager: Activation (eth0) Stage 3 of 5 (IP Configure Start) started... -05:51:48,225 INFO NetworkManager: (eth0): device state change: 5 -> 7 (reason 0) -05:51:48,225 INFO NetworkManager: Activation (eth0) Beginning DHCPv4 transaction -05:51:48,228 INFO dhclient: Internet Systems Consortium DHCP Client 4.1.1-P1 -05:51:48,228 INFO NetworkManager: dhclient started with pid 670 -05:51:48,228 INFO NetworkManager: Activation (eth0) DHCPv4 will time out in 45 seconds -05:51:48,228 INFO NetworkManager: Activation (eth0) Stage 3 of 5 (IP Configure Start) complete. -05:51:48,228 INFO dhclient: Copyright 2004-2010 Internet Systems Consortium. -05:51:48,228 INFO dhclient: All rights reserved. -05:51:48,228 INFO dhclient: For info, please visit https://www.isc.org/software/dhcp/ -05:51:48,229 INFO dhclient: -05:51:48,232 INFO NetworkManager: (eth0): DHCPv4 state changed nbi -> preinit -05:51:48,238 INFO dhclient: Listening on LPF/eth0/00:0c:29:21:89:af -05:51:48,238 INFO dhclient: Sending on LPF/eth0/00:0c:29:21:89:af -05:51:48,238 INFO dhclient: Sending on Socket/fallback -05:51:48,238 INFO dhclient: DHCPDISCOVER on eth0 to 255.255.255.255 port 67 interval 7 (xid=0x4cbfa09c) -05:51:48,266 INFO dhclient: DHCPOFFER from 10.145.88.211 -05:51:48,267 INFO dhclient: DHCPREQUEST on eth0 to 255.255.255.255 port 67 (xid=0x4cbfa09c) -05:51:50,624 INFO dhclient: DHCPACK from 10.145.88.211 (xid=0x4cbfa09c) -05:51:50,627 INFO NetworkManager: (eth0): DHCPv4 state changed preinit -> bound -05:51:50,627 INFO NetworkManager: Activation (eth0) Stage 4 of 5 (IP4 Configure Get) scheduled... -05:51:50,627 INFO NetworkManager: Activation (eth0) Stage 4 of 5 (IP4 Configure Get) started... -05:51:50,627 INFO NetworkManager: address 10.145.88.106 -05:51:50,627 INFO NetworkManager: prefix 23 (255.255.254.0) -05:51:50,627 INFO NetworkManager: gateway 10.145.88.1 -05:51:50,627 INFO NetworkManager: hostname 'server1' -05:51:50,627 INFO NetworkManager: nameserver '10.145.88.211' -05:51:50,628 INFO NetworkManager: Activation (eth0) Stage 5 of 5 (IP Configure Commit) scheduled... -05:51:50,628 INFO NetworkManager: Activation (eth0) Stage 4 of 5 (IP4 Configure Get) complete. -05:51:50,628 INFO NetworkManager: Activation (eth0) Stage 5 of 5 (IP Configure Commit) started... -05:51:50,628 INFO dhclient: bound to 10.145.88.106 -- renewal in 10408 seconds. -05:51:51,629 INFO NetworkManager: (eth0): device state change: 7 -> 8 (reason 0) -05:51:51,629 INFO NetworkManager: Policy set 'System eth0' (eth0) as default for IPv4 routing and DNS. -05:51:51,630 INFO NetworkManager: Setting system hostname to 'server1' (from DHCPv4) -05:51:51,630 INFO NetworkManager: Activation (eth0) successful, device activated. -05:51:51,631 INFO NetworkManager: Activation (eth0) Stage 5 of 5 (IP Configure Commit) complete. -05:52:07,660 WARNING NetworkManager: error requesting auth for org.freedesktop.NetworkManager.enable-disable-network: (26) Remote Exception invoking org.freedesktop.PolicyKit1.Authority.CheckAuthorization() on /org/freedesktop/PolicyKit1/Authority at name org.freedesktop.PolicyKit1: org.freedesktop.DBus.Error.Spawn.ExecFailed: Cannot launch daemon, file not found or permissions invalid -05:52:07,660 WARNING NetworkManager: error requesting auth for org.freedesktop.NetworkManager.sleep-wake: (26) Remote Exception invoking org.freedesktop.PolicyKit1.Authority.CheckAuthorization() on /org/freedesktop/PolicyKit1/Authority at name org.freedesktop.PolicyKit1: org.freedesktop.DBus.Error.Spawn.ExecFailed: Cannot launch daemon, file not found or permissions invalid -05:52:07,660 WARNING NetworkManager: error requesting auth for org.freedesktop.NetworkManager.enable-disable-wifi: (26) Remote Exception invoking org.freedesktop.PolicyKit1.Authority.CheckAuthorization() on /org/freedesktop/PolicyKit1/Authority at name org.freedesktop.PolicyKit1: org.freedesktop.DBus.Error.Spawn.ExecFailed: Cannot launch daemon, file not found or permissions invalid -05:52:07,660 WARNING NetworkManager: error requesting auth for org.freedesktop.NetworkManager.enable-disable-wwan: (26) Remote Exception invoking org.freedesktop.PolicyKit1.Authority.CheckAuthorization() on /org/freedesktop/PolicyKit1/Authority at name org.freedesktop.PolicyKit1: org.freedesktop.DBus.Error.Spawn.ExecFailed: Cannot launch daemon, file not found or permissions invalid -05:52:07,660 WARNING NetworkManager: error requesting auth for org.freedesktop.NetworkManager.use-user-connections: (26) Remote Exception invoking org.freedesktop.PolicyKit1.Authority.CheckAuthorization() on /org/freedesktop/PolicyKit1/Authority at name org.freedesktop.PolicyKit1: org.freedesktop.DBus.Error.Spawn.ExecFailed: Cannot launch daemon, file not found or permissions invalid -05:52:07,660 WARNING NetworkManager: error requesting auth for org.freedesktop.NetworkManager.network-control: (26) Remote Exception invoking org.freedesktop.PolicyKit1.Authority.CheckAuthorization() on /org/freedesktop/PolicyKit1/Authority at name org.freedesktop.PolicyKit1: org.freedesktop.DBus.Error.Spawn.ExecFailed: Cannot launch daemon, file not found or permissions invalid -05:52:07,660 WARNING NetworkManager: error requesting auth for org.freedesktop.network-manager-settings.system.wifi.share.open: (26) Remote Exception invoking org.freedesktop.PolicyKit1.Authority.CheckAuthorization() on /org/freedesktop/PolicyKit1/Authority at name org.freedesktop.PolicyKit1: org.freedesktop.DBus.Error.Spawn.ExecFailed: Cannot launch daemon, file not found or permissions invalid -05:52:07,660 WARNING NetworkManager: error requesting auth for org.freedesktop.network-manager-settings.system.wifi.share.protected: (26) Remote Exception invoking org.freedesktop.PolicyKit1.Authority.CheckAuthorization() on /org/freedesktop/PolicyKit1/Authority at name org.freedesktop.PolicyKit1: org.freedesktop.DBus.Error.Spawn.ExecFailed: Cannot launch daemon, file not found or permissions invalid -05:52:47,362 NOTICE dbus-daemon: [system] Reloaded configuration -05:52:47,364 NOTICE dbus-daemon: [system] Reloaded configuration -05:52:47,512 DEBUG kernel:SELinux: 2048 avtab hash slots, 277800 rules. -05:52:47,588 DEBUG kernel:SELinux: 2048 avtab hash slots, 277800 rules. -05:52:48,083 DEBUG kernel:SELinux: 9 users, 12 roles, 3917 types, 217 bools, 1 sens, 1024 cats -05:52:48,083 DEBUG kernel:SELinux: 81 classes, 277800 rules -05:52:48,088 DEBUG kernel:SELinux: Completing initialization. -05:52:48,088 DEBUG kernel:SELinux: Setting up existing superblocks. -05:52:48,088 DEBUG kernel:SELinux: initialized (dev loop0, type squashfs), not configured for labeling -05:52:48,088 DEBUG kernel:SELinux: initialized (dev tmpfs, type tmpfs), uses transition SIDs -05:52:48,088 DEBUG kernel:SELinux: initialized (dev tmpfs, type tmpfs), uses transition SIDs -05:52:48,089 DEBUG kernel:SELinux: initialized (dev selinuxfs, type selinuxfs), uses genfs_contexts -05:52:48,089 DEBUG kernel:SELinux: initialized (dev mqueue, type mqueue), uses transition SIDs -05:52:48,089 DEBUG kernel:SELinux: initialized (dev hugetlbfs, type hugetlbfs), uses transition SIDs -05:52:48,089 DEBUG kernel:SELinux: initialized (dev devpts, type devpts), uses transition SIDs -05:52:48,089 DEBUG kernel:SELinux: initialized (dev inotifyfs, type inotifyfs), uses genfs_contexts -05:52:48,089 DEBUG kernel:SELinux: initialized (dev anon_inodefs, type anon_inodefs), uses genfs_contexts -05:52:48,089 DEBUG kernel:SELinux: initialized (dev pipefs, type pipefs), uses task SIDs -05:52:48,089 DEBUG kernel:SELinux: initialized (dev debugfs, type debugfs), uses genfs_contexts -05:52:48,090 DEBUG kernel:SELinux: initialized (dev sockfs, type sockfs), uses task SIDs -05:52:48,090 DEBUG kernel:SELinux: initialized (dev devtmpfs, type devtmpfs), uses transition SIDs -05:52:48,090 DEBUG kernel:SELinux: initialized (dev tmpfs, type tmpfs), uses transition SIDs -05:52:48,090 DEBUG kernel:SELinux: initialized (dev proc, type proc), uses genfs_contexts -05:52:48,090 DEBUG kernel:SELinux: initialized (dev bdev, type bdev), uses genfs_contexts -05:52:48,090 DEBUG kernel:SELinux: initialized (dev rootfs, type rootfs), uses genfs_contexts -05:52:48,090 DEBUG kernel:SELinux: initialized (dev sysfs, type sysfs), uses genfs_contexts -05:52:48,116 NOTICE kernel:type=1403 audit(1021096368.114:2): policy loaded auid=4294967295 ses=4294967295 -05:52:48,165 INFO kernel:md: raid0 personality registered for level 0 -05:52:48,172 INFO kernel:md: raid1 personality registered for level 1 -05:52:48,176 INFO kernel:async_tx: api initialized (async) -05:52:48,188 INFO kernel:xor: automatically using best checksumming function: generic_sse -05:52:48,191 INFO kernel: generic_sse: 9112.000 MB/sec -05:52:48,191 INFO kernel:xor: using function: generic_sse (9112.000 MB/sec) -05:52:48,212 WARNING kernel:raid6: sse2x1 5777 MB/s -05:52:48,229 WARNING kernel:raid6: sse2x2 7031 MB/s -05:52:48,247 WARNING kernel:raid6: sse2x4 7550 MB/s -05:52:48,247 WARNING kernel:raid6: using algorithm sse2x4 (7550 MB/s) -05:52:48,247 WARNING kernel:raid6: using ssse3x2 recovery algorithm -05:52:48,261 INFO kernel:md: raid6 personality registered for level 6 -05:52:48,261 INFO kernel:md: raid5 personality registered for level 5 -05:52:48,261 INFO kernel:md: raid4 personality registered for level 4 -05:52:48,273 INFO kernel:md: raid10 personality registered for level 10 -05:52:48,277 INFO kernel:md: linear personality registered for level -1 -05:52:48,290 INFO kernel:device-mapper: uevent: version 1.0.3 -05:52:48,291 INFO kernel:device-mapper: ioctl: 4.24.6-ioctl (2013-01-15) initialised: dm-devel@redhat.com -05:52:48,324 INFO kernel:device-mapper: multipath: version 1.5.0 loaded -05:52:48,328 INFO kernel:device-mapper: multipath round-robin: version 1.0.0 loaded -05:53:05,608 WARNING kernel:hpet1: lost 5 rtc interrupts -05:53:05,608 WARNING kernel:hpet1: lost 1 rtc interrupts -05:53:21,197 NOTICE kernel:sd 2:0:0:0: [sda] Cache data unavailable -05:53:21,197 ERR kernel:sd 2:0:0:0: [sda] Assuming drive cache: write through -05:53:21,238 INFO kernel: sda: sda1 sda2 -05:53:25,106 NOTICE kernel:sd 2:0:0:0: [sda] Cache data unavailable -05:53:25,106 ERR kernel:sd 2:0:0:0: [sda] Assuming drive cache: write through -05:53:25,117 INFO kernel: sda: sda1 -05:53:31,920 NOTICE kernel:sd 2:0:0:0: [sda] Cache data unavailable -05:53:31,920 ERR kernel:sd 2:0:0:0: [sda] Assuming drive cache: write through -05:53:31,962 INFO kernel: sda: -05:53:33,120 NOTICE kernel:sd 2:0:0:0: [sda] Cache data unavailable -05:53:33,120 ERR kernel:sd 2:0:0:0: [sda] Assuming drive cache: write through -05:53:33,120 INFO kernel: sda: sda1 -05:53:50,037 NOTICE kernel:sd 2:0:0:0: [sda] Cache data unavailable -05:53:50,037 ERR kernel:sd 2:0:0:0: [sda] Assuming drive cache: write through -05:53:50,037 INFO kernel: sda: sda1 sda2 -05:53:55,178 NOTICE kernel:sd 2:0:0:0: [sda] Cache data unavailable -05:53:55,178 ERR kernel:sd 2:0:0:0: [sda] Assuming drive cache: write through -05:53:55,211 INFO kernel: sda: sda1 sda2 sda3 -05:54:41,918 INFO kernel:Adding 3354616k swap on /dev/sda2. Priority:-1 extents:1 across:3354616k -05:54:42,441 INFO kernel:kjournald starting. Commit interval 5 seconds -05:54:42,489 INFO kernel:EXT3-fs (dm-0): using internal journal -05:54:42,489 INFO kernel:EXT3-fs (dm-0): mounted filesystem with ordered data mode -05:54:42,489 DEBUG kernel:SELinux: initialized (dev dm-0, type ext3), uses xattr -05:54:42,913 INFO kernel:kjournald starting. Commit interval 5 seconds -05:54:42,977 INFO kernel:EXT3-fs (sda1): using internal journal -05:54:42,977 INFO kernel:EXT3-fs (sda1): mounted filesystem with ordered data mode -05:54:42,977 DEBUG kernel:SELinux: initialized (dev sda1, type ext3), uses xattr -05:54:43,167 DEBUG kernel:SELinux: initialized (dev tmpfs, type tmpfs), uses transition SIDs -05:54:43,255 INFO kernel:kjournald starting. Commit interval 5 seconds -05:54:43,268 INFO kernel:EXT3-fs (dm-1): using internal journal -05:54:43,268 INFO kernel:EXT3-fs (dm-1): mounted filesystem with ordered data mode -05:54:43,268 DEBUG kernel:SELinux: initialized (dev dm-1, type ext3), uses xattr -05:54:43,657 INFO kernel:kjournald starting. Commit interval 5 seconds -05:54:43,719 INFO kernel:EXT3-fs (dm-2): using internal journal -05:54:43,719 INFO kernel:EXT3-fs (dm-2): mounted filesystem with ordered data mode -05:54:43,719 DEBUG kernel:SELinux: initialized (dev dm-2, type ext3), uses xattr -05:54:43,913 INFO kernel:kjournald starting. Commit interval 5 seconds -05:54:43,949 INFO kernel:EXT3-fs (dm-3): using internal journal -05:54:43,949 INFO kernel:EXT3-fs (dm-3): mounted filesystem with ordered data mode -05:54:43,949 DEBUG kernel:SELinux: initialized (dev dm-3, type ext3), uses xattr -05:55:08,095 DEBUG kernel:SELinux: initialized (dev usbfs, type usbfs), uses genfs_contexts -05:55:08,106 NOTICE NetworkManager: ifcfg-rh: updating /etc/sysconfig/network-scripts/ifcfg-eth3 -05:55:08,107 NOTICE NetworkManager: ifcfg-rh: updating /etc/sysconfig/network-scripts/ifcfg-eth2 -05:55:08,109 NOTICE NetworkManager: ifcfg-rh: updating /etc/sysconfig/network-scripts/ifcfg-eth1 -05:55:09,125 NOTICE NetworkManager: ifcfg-rh: updating /etc/sysconfig/network-scripts/ifcfg-eth3 -05:55:09,126 NOTICE NetworkManager: ifcfg-rh: updating /etc/sysconfig/network-scripts/ifcfg-eth2 -05:55:09,127 NOTICE NetworkManager: ifcfg-rh: updating /etc/sysconfig/network-scripts/ifcfg-eth1 -05:55:09,128 NOTICE NetworkManager: ifcfg-rh: updating /etc/sysconfig/network-scripts/ifcfg-eth0 -05:59:16,883 ERR kernel:INFO: task flush-253:0:1525 blocked for more than 120 seconds. -05:59:16,883 ERR kernel: Not tainted 2.6.32-431.el6.x86_64 #1 -05:59:16,883 ERR kernel:"echo 0 > /proc/sys/kernel/hung_task_timeout_secs" disables this message. -05:59:16,883 INFO kernel:flush-253:0 D 0000000000000000 0 1525 2 0x00000080 -05:59:16,883 WARNING kernel: ffff8800592df6e0 0000000000000046 0000000000000000 ffff880079226080 -05:59:16,883 WARNING kernel: 0000000000000001 ffff880064ed8e40 ffff880079226080 ffff880079269dd0 -05:59:16,883 WARNING kernel: ffff880079226638 ffff8800592dffd8 000000000000fbc8 ffff880079226638 -05:59:16,883 WARNING kernel:Call Trace: -05:59:16,883 WARNING kernel: [] io_schedule+0x73/0xc0 -05:59:16,883 WARNING kernel: [] get_request_wait+0x108/0x1d0 -05:59:16,883 WARNING kernel: [] ? autoremove_wake_function+0x0/0x40 -05:59:16,883 WARNING kernel: [] ? elv_merge+0x17e/0x1c0 -05:59:16,883 WARNING kernel: [] blk_queue_bio+0x99/0x620 -05:59:16,883 WARNING kernel: [] generic_make_request+0x240/0x5a0 -05:59:16,883 WARNING kernel: [] ? mempool_alloc_slab+0x15/0x20 -05:59:16,883 WARNING kernel: [] submit_bio+0x70/0x120 -05:59:16,883 WARNING kernel: [] submit_bh+0x11d/0x1f0 -05:59:16,883 WARNING kernel: [] __block_write_full_page+0x1c8/0x330 -05:59:16,883 WARNING kernel: [] ? end_buffer_async_write+0x0/0x190 -05:59:16,883 WARNING kernel: [] ? blkdev_get_block+0x0/0x20 -05:59:16,883 WARNING kernel: [] ? blkdev_get_block+0x0/0x20 -05:59:16,883 WARNING kernel: [] block_write_full_page_endio+0xe0/0x120 -05:59:16,883 WARNING kernel: [] ? find_get_pages_tag+0x40/0x130 -05:59:16,883 WARNING kernel: [] block_write_full_page+0x15/0x20 -05:59:16,883 WARNING kernel: [] blkdev_writepage+0x18/0x20 -05:59:16,883 WARNING kernel: [] __writepage+0x17/0x40 -05:59:16,883 WARNING kernel: [] write_cache_pages+0x1fd/0x4c0 -05:59:16,883 WARNING kernel: [] ? __writepage+0x0/0x40 -05:59:16,883 WARNING kernel: [] generic_writepages+0x24/0x30 -05:59:16,883 WARNING kernel: [] do_writepages+0x21/0x40 -05:59:16,883 WARNING kernel: [] writeback_single_inode+0xdd/0x290 -05:59:16,883 WARNING kernel: [] writeback_sb_inodes+0xbd/0x170 -05:59:16,883 WARNING kernel: [] writeback_inodes_wb+0xab/0x1b0 -05:59:16,883 WARNING kernel: [] wb_writeback+0x2f3/0x410 -05:59:16,883 WARNING kernel: [] ? thread_return+0x4e/0x76e -05:59:16,883 WARNING kernel: [] ? del_timer_sync+0x22/0x30 -05:59:16,883 WARNING kernel: [] wb_do_writeback+0x1a5/0x240 -05:59:16,883 WARNING kernel: [] bdi_writeback_task+0x63/0x1b0 -05:59:16,883 WARNING kernel: [] ? bit_waitqueue+0x17/0xd0 -05:59:16,883 WARNING kernel: [] ? bdi_start_fn+0x0/0x100 -05:59:16,883 WARNING kernel: [] bdi_start_fn+0x86/0x100 -05:59:16,883 WARNING kernel: [] ? bdi_start_fn+0x0/0x100 -05:59:16,883 WARNING kernel: [] kthread+0x96/0xa0 -05:59:16,883 WARNING kernel: [] child_rip+0xa/0x20 -05:59:16,883 WARNING kernel: [] ? kthread+0x0/0xa0 -05:59:16,883 WARNING kernel: [] ? child_rip+0x0/0x20 -05:59:16,883 ERR kernel:INFO: task flush-253:3:1622 blocked for more than 120 seconds. -05:59:16,883 ERR kernel: Not tainted 2.6.32-431.el6.x86_64 #1 -05:59:16,883 ERR kernel:"echo 0 > /proc/sys/kernel/hung_task_timeout_secs" disables this message. -05:59:16,883 INFO kernel:flush-253:3 D 0000000000000001 0 1622 2 0x00000080 -05:59:16,883 WARNING kernel: ffff88005a5636e0 0000000000000046 0000000000000000 ffff8800790e6ae0 -05:59:16,883 WARNING kernel: 0000000000000001 ffff8800615bc080 ffff8800790e6ae0 ffff880079269dd0 -05:59:16,883 WARNING kernel: ffff8800790e7098 ffff88005a563fd8 000000000000fbc8 ffff8800790e7098 -05:59:16,883 WARNING kernel:Call Trace: -05:59:16,883 WARNING kernel: [] io_schedule+0x73/0xc0 -05:59:16,883 WARNING kernel: [] get_request_wait+0x108/0x1d0 -05:59:16,883 WARNING kernel: [] ? autoremove_wake_function+0x0/0x40 -05:59:16,883 WARNING kernel: [] ? elv_merge+0x17e/0x1c0 -05:59:16,883 WARNING kernel: [] blk_queue_bio+0x99/0x620 -05:59:16,883 WARNING kernel: [] ? read_tsc+0x9/0x20 -05:59:16,883 WARNING kernel: [] generic_make_request+0x240/0x5a0 -05:59:16,883 WARNING kernel: [] ? mempool_alloc_slab+0x15/0x20 -05:59:16,883 WARNING kernel: [] ? __dec_zone_page_state+0x2e/0x30 -05:59:16,883 WARNING kernel: [] submit_bio+0x70/0x120 -05:59:16,883 WARNING kernel: [] submit_bh+0x11d/0x1f0 -05:59:16,883 WARNING kernel: [] __block_write_full_page+0x1c8/0x330 -05:59:16,883 WARNING kernel: [] ? end_buffer_async_write+0x0/0x190 -05:59:16,883 WARNING kernel: [] ? blkdev_get_block+0x0/0x20 -05:59:16,883 WARNING kernel: [] ? blkdev_get_block+0x0/0x20 -05:59:16,883 WARNING kernel: [] block_write_full_page_endio+0xe0/0x120 -05:59:16,883 WARNING kernel: [] ? find_get_pages_tag+0x40/0x130 -05:59:16,883 WARNING kernel: [] block_write_full_page+0x15/0x20 -05:59:16,883 WARNING kernel: [] blkdev_writepage+0x18/0x20 -05:59:16,883 WARNING kernel: [] __writepage+0x17/0x40 -05:59:16,883 WARNING kernel: [] write_cache_pages+0x1fd/0x4c0 -05:59:16,883 WARNING kernel: [] ? __writepage+0x0/0x40 -05:59:16,883 WARNING kernel: [] generic_writepages+0x24/0x30 -05:59:16,883 WARNING kernel: [] do_writepages+0x21/0x40 -05:59:16,883 WARNING kernel: [] writeback_single_inode+0xdd/0x290 -05:59:16,883 WARNING kernel: [] writeback_sb_inodes+0xbd/0x170 -05:59:16,883 WARNING kernel: [] writeback_inodes_wb+0xab/0x1b0 -05:59:16,883 WARNING kernel: [] wb_writeback+0x2f3/0x410 -05:59:16,883 WARNING kernel: [] ? thread_return+0x4e/0x76e -05:59:16,883 WARNING kernel: [] ? del_timer_sync+0x22/0x30 -05:59:16,883 WARNING kernel: [] wb_do_writeback+0x1a5/0x240 -05:59:16,883 WARNING kernel: [] bdi_writeback_task+0x63/0x1b0 -05:59:16,883 WARNING kernel: [] ? bit_waitqueue+0x17/0xd0 -05:59:16,883 WARNING kernel: [] ? bdi_start_fn+0x0/0x100 -05:59:16,883 WARNING kernel: [] bdi_start_fn+0x86/0x100 -05:59:16,883 WARNING kernel: [] ? bdi_start_fn+0x0/0x100 -05:59:16,883 WARNING kernel: [] kthread+0x96/0xa0 -05:59:16,883 WARNING kernel: [] child_rip+0xa/0x20 -05:59:16,883 WARNING kernel: [] ? kthread+0x0/0xa0 -05:59:16,883 WARNING kernel: [] ? child_rip+0x0/0x20 -06:11:26,657 DEBUG kernel:SELinux: 2048 avtab hash slots, 277800 rules. -06:11:26,705 DEBUG kernel:SELinux: 2048 avtab hash slots, 277800 rules. -06:11:27,220 DEBUG kernel:SELinux: 9 users, 12 roles, 3917 types, 217 bools, 1 sens, 1024 cats -06:11:27,220 DEBUG kernel:SELinux: 81 classes, 277800 rules diff --git a/compass/tests/actions/update_progress/data/test1/anamon/checkpoint_5/server1.1/anaconda.log.template b/compass/tests/actions/update_progress/data/test1/anamon/checkpoint_5/server1.1/anaconda.log.template deleted file mode 100644 index f04da66a..00000000 --- a/compass/tests/actions/update_progress/data/test1/anamon/checkpoint_5/server1.1/anaconda.log.template +++ /dev/null @@ -1,286 +0,0 @@ -05:51:20,534 INFO : kernel command line: initrd=/images/CentOS-6.5-x86_64/initrd.img ksdevice=bootif lang= kssendmac text ks=http://10.145.88.211/cblr/svc/op/ks/system/server1.1 BOOT_IMAGE=/images/CentOS-6.5-x86_64/vmlinuz BOOTIF=01-00-0c-29-21-89-af - -05:51:20,534 INFO : text mode forced from cmdline -05:51:20,534 DEBUG : readNetInfo /tmp/s390net not found, early return -05:51:20,534 INFO : anaconda version 13.21.215 on x86_64 starting -05:51:20,656 DEBUG : Saving module ipv6 -05:51:20,656 DEBUG : Saving module iscsi_ibft -05:51:20,656 DEBUG : Saving module iscsi_boot_sysfs -05:51:20,656 DEBUG : Saving module pcspkr -05:51:20,656 DEBUG : Saving module edd -05:51:20,656 DEBUG : Saving module floppy -05:51:20,656 DEBUG : Saving module iscsi_tcp -05:51:20,656 DEBUG : Saving module libiscsi_tcp -05:51:20,656 DEBUG : Saving module libiscsi -05:51:20,656 DEBUG : Saving module scsi_transport_iscsi -05:51:20,656 DEBUG : Saving module squashfs -05:51:20,656 DEBUG : Saving module cramfs -05:51:20,656 DEBUG : probing buses -05:51:20,693 DEBUG : waiting for hardware to initialize -05:51:27,902 DEBUG : probing buses -05:51:27,925 DEBUG : waiting for hardware to initialize -05:51:47,187 INFO : getting kickstart file -05:51:47,196 INFO : eth0 has link, using it -05:51:47,208 INFO : doing kickstart... setting it up -05:51:47,208 DEBUG : activating device eth0 -05:51:52,221 INFO : wait_for_iface_activation (2502): device eth0 activated -05:51:52,222 INFO : file location: http://10.145.88.211/cblr/svc/op/ks/system/server1.1 -05:51:52,223 INFO : transferring http://10.145.88.211/cblr/svc/op/ks/system/server1.1 -05:51:52,611 INFO : setting up kickstart -05:51:52,611 INFO : kickstart forcing text mode -05:51:52,611 INFO : kickstartFromUrl -05:51:52,612 INFO : results of url ks, url http://10.145.88.211/cblr/links/CentOS-6.5-x86_64 -05:51:52,612 INFO : trying to mount CD device /dev/sr0 on /mnt/stage2 -05:51:52,616 INFO : drive status is CDS_TRAY_OPEN -05:51:52,616 ERROR : Drive tray reports open when it should be closed -05:52:07,635 INFO : no stage2= given, assuming http://10.145.88.211/cblr/links/CentOS-6.5-x86_64/images/install.img -05:52:07,636 DEBUG : going to set language to en_US.UTF-8 -05:52:07,636 INFO : setting language to en_US.UTF-8 -05:52:07,654 INFO : starting STEP_METHOD -05:52:07,654 DEBUG : loaderData->method is set, adding skipMethodDialog -05:52:07,654 DEBUG : skipMethodDialog is set -05:52:07,663 INFO : starting STEP_STAGE2 -05:52:07,663 INFO : URL_STAGE_MAIN: url is http://10.145.88.211/cblr/links/CentOS-6.5-x86_64/images/install.img -05:52:07,663 INFO : transferring http://10.145.88.211/cblr/links/CentOS-6.5-x86_64/images/updates.img -05:52:07,780 ERROR : failed to mount loopback device /dev/loop7 on /tmp/update-disk as /tmp/updates-disk.img: (null) -05:52:07,780 ERROR : Error mounting /dev/loop7 on /tmp/update-disk: No such file or directory -05:52:07,780 INFO : transferring http://10.145.88.211/cblr/links/CentOS-6.5-x86_64/images/product.img -05:52:07,814 ERROR : Error downloading http://10.145.88.211/cblr/links/CentOS-6.5-x86_64/images/product.img: HTTP response code said error -05:52:07,815 INFO : transferring http://10.145.88.211/cblr/links/CentOS-6.5-x86_64/images/install.img -05:52:47,354 INFO : mounted loopback device /mnt/runtime on /dev/loop0 as /tmp/install.img -05:52:47,354 INFO : got stage2 at url http://10.145.88.211/cblr/links/CentOS-6.5-x86_64/images/install.img -05:52:47,403 INFO : Loading SELinux policy -05:52:48,130 INFO : getting ready to spawn shell now -05:52:48,359 INFO : Running anaconda script /usr/bin/anaconda -05:52:54,804 INFO : CentOS Linux is the highest priority installclass, using it -05:52:54,867 WARNING : /usr/lib/python2.6/site-packages/pykickstart/parser.py:713: DeprecationWarning: Script does not end with %end. This syntax has been deprecated. It may be removed from future releases, which will result in a fatal error from kickstart. Please modify your kickstart file to use this updated syntax. - warnings.warn(_("%s does not end with %%end. This syntax has been deprecated. It may be removed from future releases, which will result in a fatal error from kickstart. Please modify your kickstart file to use this updated syntax.") % _("Script"), DeprecationWarning) - -05:52:54,868 INFO : Running kickstart %%pre script(s) -05:52:54,868 WARNING : '/bin/sh' specified as full path -05:52:56,966 INFO : All kickstart %%pre script(s) have been run -05:52:57,017 INFO : ISCSID is /usr/sbin/iscsid -05:52:57,017 INFO : no initiator set -05:52:57,128 WARNING : '/usr/libexec/fcoe/fcoe_edd.sh' specified as full path -05:52:57,137 INFO : No FCoE EDD info found: No FCoE boot disk information is found in EDD! - -05:52:57,138 INFO : no /etc/zfcp.conf; not configuring zfcp -05:53:00,902 INFO : created new libuser.conf at /tmp/libuser.WMDW9M with instPath="/mnt/sysimage" -05:53:00,903 INFO : anaconda called with cmdline = ['/usr/bin/anaconda', '--stage2', 'http://10.145.88.211/cblr/links/CentOS-6.5-x86_64/images/install.img', '--kickstart', '/tmp/ks.cfg', '-T', '--selinux', '--lang', 'en_US', '--keymap', 'us', '--repo', 'http://10.145.88.211/cblr/links/CentOS-6.5-x86_64'] -05:53:00,903 INFO : Display mode = t -05:53:00,903 INFO : Default encoding = utf-8 -05:53:01,064 INFO : Detected 2016M of memory -05:53:01,064 INFO : Swap attempt of 4032M -05:53:01,398 INFO : ISCSID is /usr/sbin/iscsid -05:53:01,399 INFO : no initiator set -05:53:05,059 INFO : setting installation environment hostname to server1 -05:53:05,104 WARNING : Timezone US/Pacific set in kickstart is not valid. -05:53:05,276 INFO : Detected 2016M of memory -05:53:05,277 INFO : Suggested swap size (4032 M) exceeds 10 % of disk space, using 10 % of disk space (3276 M) instead. -05:53:05,277 INFO : Swap attempt of 3276M -05:53:05,453 WARNING : step installtype does not exist -05:53:05,454 WARNING : step confirminstall does not exist -05:53:05,454 WARNING : step complete does not exist -05:53:05,454 WARNING : step complete does not exist -05:53:05,454 WARNING : step complete does not exist -05:53:05,454 WARNING : step complete does not exist -05:53:05,455 WARNING : step complete does not exist -05:53:05,455 WARNING : step complete does not exist -05:53:05,455 WARNING : step complete does not exist -05:53:05,455 WARNING : step complete does not exist -05:53:05,455 WARNING : step complete does not exist -05:53:05,456 WARNING : step complete does not exist -05:53:05,456 WARNING : step complete does not exist -05:53:05,456 WARNING : step complete does not exist -05:53:05,456 WARNING : step complete does not exist -05:53:05,456 WARNING : step complete does not exist -05:53:05,457 WARNING : step complete does not exist -05:53:05,457 INFO : moving (1) to step setuptime -05:53:05,458 DEBUG : setuptime is a direct step -22:53:05,458 WARNING : '/usr/sbin/hwclock' specified as full path -22:53:06,002 INFO : leaving (1) step setuptime -22:53:06,003 INFO : moving (1) to step autopartitionexecute -22:53:06,003 DEBUG : autopartitionexecute is a direct step -22:53:06,138 INFO : leaving (1) step autopartitionexecute -22:53:06,138 INFO : moving (1) to step storagedone -22:53:06,138 DEBUG : storagedone is a direct step -22:53:06,138 INFO : leaving (1) step storagedone -22:53:06,139 INFO : moving (1) to step enablefilesystems -22:53:06,139 DEBUG : enablefilesystems is a direct step -22:53:10,959 DEBUG : notifying kernel of 'change' event on device /sys/class/block/sda3 -22:53:41,215 DEBUG : notifying kernel of 'change' event on device /sys/class/block/sda1 -22:53:57,388 DEBUG : notifying kernel of 'change' event on device /sys/class/block/sda3 -22:54:14,838 DEBUG : notifying kernel of 'change' event on device /sys/class/block/dm-0 -22:54:21,717 DEBUG : notifying kernel of 'change' event on device /sys/class/block/dm-1 -22:54:27,576 DEBUG : notifying kernel of 'change' event on device /sys/class/block/dm-2 -22:54:40,058 DEBUG : notifying kernel of 'change' event on device /sys/class/block/dm-3 -22:54:41,949 INFO : failed to set SELinux context for /mnt/sysimage: [Errno 95] Operation not supported -22:54:41,950 DEBUG : isys.py:mount()- going to mount /dev/mapper/server1-rootvol on /mnt/sysimage as ext3 with options defaults -22:54:42,826 DEBUG : isys.py:mount()- going to mount /dev/sda1 on /mnt/sysimage/boot as ext3 with options defaults -22:54:43,148 DEBUG : isys.py:mount()- going to mount //dev on /mnt/sysimage/dev as bind with options defaults,bind -22:54:43,158 DEBUG : isys.py:mount()- going to mount devpts on /mnt/sysimage/dev/pts as devpts with options gid=5,mode=620 -22:54:43,164 DEBUG : isys.py:mount()- going to mount tmpfs on /mnt/sysimage/dev/shm as tmpfs with options defaults -22:54:43,207 DEBUG : isys.py:mount()- going to mount /dev/mapper/server1-homevol on /mnt/sysimage/home as ext3 with options defaults -22:54:43,434 INFO : failed to get default SELinux context for /proc: [Errno 2] No such file or directory -22:54:43,435 DEBUG : isys.py:mount()- going to mount proc on /mnt/sysimage/proc as proc with options defaults -22:54:43,439 INFO : failed to get default SELinux context for /proc: [Errno 2] No such file or directory -22:54:43,496 DEBUG : isys.py:mount()- going to mount sysfs on /mnt/sysimage/sys as sysfs with options defaults -22:54:43,609 DEBUG : isys.py:mount()- going to mount /dev/mapper/server1-tmpvol on /mnt/sysimage/tmp as ext3 with options defaults -22:54:43,874 DEBUG : isys.py:mount()- going to mount /dev/mapper/server1-varvol on /mnt/sysimage/var as ext3 with options defaults -22:54:44,056 INFO : leaving (1) step enablefilesystems -22:54:44,057 INFO : moving (1) to step bootloadersetup -22:54:44,057 DEBUG : bootloadersetup is a direct step -22:54:44,061 INFO : leaving (1) step bootloadersetup -22:54:44,061 INFO : moving (1) to step reposetup -22:54:44,061 DEBUG : reposetup is a direct step -22:54:56,952 ERROR : Error downloading treeinfo file: [Errno 14] PYCURL ERROR 22 - "The requested URL returned error: 404 Not Found" -22:54:56,953 INFO : added repository ppa_repo with URL http://10.145.88.211:80/cobbler/repo_mirror/ppa_repo/ -22:54:57,133 DEBUG : Grabbing http://10.145.88.211/cblr/links/CentOS-6.5-x86_64/repodata/repomd.xml -22:54:57,454 DEBUG : Grabbing http://10.145.88.211/cblr/links/CentOS-6.5-x86_64/repodata/0e371b19e547b9d7a7e8acc4b8c0c7c074509d33653cfaef9e8f4fd1d62d95de-primary.sqlite.bz2 -22:54:58,637 DEBUG : Grabbing http://10.145.88.211/cblr/links/CentOS-6.5-x86_64/repodata/34bae2d3c9c78e04ed2429923bc095005af1b166d1a354422c4c04274bae0f59-c6-minimal-x86_64.xml -22:54:58,971 INFO : leaving (1) step reposetup -22:54:58,971 INFO : moving (1) to step basepkgsel -22:54:58,972 DEBUG : basepkgsel is a direct step -22:54:58,986 WARNING : not adding Base group -22:54:59,388 INFO : leaving (1) step basepkgsel -22:54:59,388 INFO : moving (1) to step postselection -22:54:59,388 DEBUG : postselection is a direct step -22:54:59,390 INFO : selected kernel package for kernel -22:54:59,848 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/fs/ext3/ext3.ko.gz -22:54:59,848 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/fs/jbd/jbd.ko.gz -22:54:59,848 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/fs/mbcache.ko.gz -22:54:59,848 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/scsi/fcoe/fcoe.ko.gz -22:54:59,848 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/scsi/fcoe/libfcoe.ko.gz -22:54:59,849 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/scsi/libfc/libfc.ko.gz -22:54:59,849 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/scsi/scsi_transport_fc.ko.gz -22:54:59,849 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/scsi/scsi_tgt.ko.gz -22:54:59,849 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/crypto/xts.ko.gz -22:54:59,849 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/crypto/lrw.ko.gz -22:54:59,849 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/crypto/gf128mul.ko.gz -22:54:59,849 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/crypto/sha256_generic.ko.gz -22:54:59,849 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/crypto/cbc.ko.gz -22:54:59,849 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/md/dm-raid.ko.gz -22:54:59,849 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/md/dm-crypt.ko.gz -22:54:59,850 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/md/dm-round-robin.ko.gz -22:54:59,850 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/md/dm-multipath.ko.gz -22:54:59,850 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/md/dm-snapshot.ko.gz -22:54:59,850 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/md/dm-mirror.ko.gz -22:54:59,850 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/md/dm-region-hash.ko.gz -22:54:59,850 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/md/dm-log.ko.gz -22:54:59,850 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/md/dm-zero.ko.gz -22:54:59,850 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/md/dm-mod.ko.gz -22:54:59,850 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/md/linear.ko.gz -22:54:59,850 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/md/raid10.ko.gz -22:54:59,850 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/md/raid456.ko.gz -22:54:59,851 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/crypto/async_tx/async_raid6_recov.ko.gz -22:54:59,851 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/crypto/async_tx/async_pq.ko.gz -22:54:59,851 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/lib/raid6/raid6_pq.ko.gz -22:54:59,851 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/crypto/async_tx/async_xor.ko.gz -22:54:59,851 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/crypto/xor.ko.gz -22:54:59,851 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/crypto/async_tx/async_memcpy.ko.gz -22:54:59,851 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/crypto/async_tx/async_tx.ko.gz -22:54:59,851 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/md/raid1.ko.gz -22:54:59,851 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/md/raid0.ko.gz -22:54:59,852 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/net/8021q/8021q.ko.gz -22:54:59,852 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/net/802/garp.ko.gz -22:54:59,852 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/net/802/stp.ko.gz -22:54:59,852 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/net/llc/llc.ko.gz -22:54:59,852 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/infiniband/hw/mlx4/mlx4_ib.ko.gz -22:54:59,852 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/net/mlx4/mlx4_en.ko.gz -22:54:59,852 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/net/mlx4/mlx4_core.ko.gz -22:54:59,852 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/infiniband/ulp/ipoib/ib_ipoib.ko.gz -22:54:59,852 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/infiniband/core/ib_cm.ko.gz -22:54:59,853 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/infiniband/core/ib_sa.ko.gz -22:54:59,853 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/infiniband/core/ib_mad.ko.gz -22:54:59,853 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/infiniband/core/ib_core.ko.gz -22:54:59,853 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/scsi/sg.ko.gz -22:54:59,853 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/scsi/sd_mod.ko.gz -22:54:59,853 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/lib/crc-t10dif.ko.gz -22:54:59,853 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/net/e1000/e1000.ko.gz -22:54:59,853 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/scsi/sr_mod.ko.gz -22:54:59,853 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/cdrom/cdrom.ko.gz -22:54:59,853 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/misc/vmware_balloon.ko.gz -22:54:59,853 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/message/fusion/mptspi.ko.gz -22:54:59,854 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/message/fusion/mptscsih.ko.gz -22:54:59,854 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/message/fusion/mptbase.ko.gz -22:54:59,854 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/scsi/scsi_transport_spi.ko.gz -22:54:59,854 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/ata/pata_acpi.ko.gz -22:54:59,854 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/ata/ata_generic.ko.gz -22:54:59,854 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/ata/ata_piix.ko.gz -22:54:59,854 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/net/ipv6/ipv6.ko.gz -22:54:59,854 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/firmware/iscsi_ibft.ko.gz -22:54:59,854 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/scsi/iscsi_boot_sysfs.ko.gz -22:54:59,854 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/input/misc/pcspkr.ko.gz -22:54:59,855 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/firmware/edd.ko.gz -22:54:59,855 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/block/floppy.ko.gz -22:54:59,855 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/scsi/iscsi_tcp.ko.gz -22:54:59,855 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/scsi/libiscsi_tcp.ko.gz -22:54:59,855 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/scsi/libiscsi.ko.gz -22:54:59,855 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/scsi/scsi_transport_iscsi.ko.gz -22:54:59,855 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/fs/squashfs/squashfs.ko.gz -22:54:59,855 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/fs/cramfs/cramfs.ko.gz -22:55:07,745 INFO : leaving (1) step postselection -22:55:07,745 INFO : moving (1) to step install -22:55:07,748 INFO : leaving (1) step install -22:55:07,748 INFO : moving (1) to step preinstallconfig -22:55:07,748 DEBUG : preinstallconfig is a direct step -22:55:08,087 DEBUG : isys.py:mount()- going to mount /selinux on /mnt/sysimage/selinux as selinuxfs with options defaults -22:55:08,091 DEBUG : isys.py:mount()- going to mount /proc/bus/usb on /mnt/sysimage/proc/bus/usb as usbfs with options defaults -22:55:08,102 INFO : copy_to_sysimage: source '/etc/multipath/wwids' does not exist. -22:55:08,102 INFO : copy_to_sysimage: source '/etc/multipath/bindings' does not exist. -22:55:08,118 INFO : copy_to_sysimage: source '/etc/multipath/wwids' does not exist. -22:55:08,118 INFO : copy_to_sysimage: source '/etc/multipath/bindings' does not exist. -22:55:08,122 INFO : leaving (1) step preinstallconfig -22:55:08,122 INFO : moving (1) to step installpackages -22:55:08,122 DEBUG : installpackages is a direct step -22:55:08,122 INFO : Preparing to install packages -23:17:06,152 INFO : leaving (1) step installpackages -23:17:06,153 INFO : moving (1) to step postinstallconfig -23:17:06,153 DEBUG : postinstallconfig is a direct step -23:17:06,162 DEBUG : Removing cachedir: /mnt/sysimage/var/cache/yum/anaconda-CentOS-201311291202.x86_64 -23:17:06,181 DEBUG : Removing headers and packages from /mnt/sysimage/var/cache/yum/ppa_repo -23:17:06,183 INFO : leaving (1) step postinstallconfig -23:17:06,184 INFO : moving (1) to step writeconfig -23:17:06,184 DEBUG : writeconfig is a direct step -23:17:06,184 INFO : Writing main configuration -23:17:06,219 WARNING : '/usr/sbin/authconfig' specified as full path -23:17:11,643 WARNING : '/usr/sbin/lokkit' specified as full path -23:17:11,703 WARNING : '/usr/sbin/lokkit' specified as full path -23:17:11,885 INFO : removing libuser.conf at /tmp/libuser.WMDW9M -23:17:11,885 INFO : created new libuser.conf at /tmp/libuser.WMDW9M with instPath="/mnt/sysimage" -23:17:12,722 INFO : leaving (1) step writeconfig -23:17:12,722 INFO : moving (1) to step firstboot -23:17:12,723 DEBUG : firstboot is a direct step -23:17:12,723 INFO : leaving (1) step firstboot -23:17:12,723 INFO : moving (1) to step instbootloader -23:17:12,724 DEBUG : instbootloader is a direct step -23:17:14,664 WARNING : '/sbin/grub-install' specified as full path -23:17:15,006 WARNING : '/sbin/grub' specified as full path -23:17:16,039 INFO : leaving (1) step instbootloader -23:17:16,040 INFO : moving (1) to step reipl -23:17:16,040 DEBUG : reipl is a direct step -23:17:16,040 INFO : leaving (1) step reipl -23:17:16,040 INFO : moving (1) to step writeksconfig -23:17:16,040 DEBUG : writeksconfig is a direct step -23:17:16,041 INFO : Writing autokickstart file -23:17:16,070 INFO : leaving (1) step writeksconfig -23:17:16,071 INFO : moving (1) to step setfilecon -23:17:16,071 DEBUG : setfilecon is a direct step -23:17:16,071 INFO : setting SELinux contexts for anaconda created files -23:17:17,822 INFO : leaving (1) step setfilecon -23:17:17,822 INFO : moving (1) to step copylogs -23:17:17,822 DEBUG : copylogs is a direct step -23:17:17,822 INFO : Copying anaconda logs -23:17:17,825 INFO : leaving (1) step copylogs -23:17:17,825 INFO : moving (1) to step methodcomplete -23:17:17,825 DEBUG : methodcomplete is a direct step -23:17:17,825 INFO : leaving (1) step methodcomplete -23:17:17,826 INFO : moving (1) to step postscripts -23:17:17,826 DEBUG : postscripts is a direct step -23:17:17,826 INFO : Running kickstart %%post script(s) -23:17:17,858 WARNING : '/bin/sh' specified as full path -23:17:21,002 INFO : All kickstart %%post script(s) have been run -23:17:21,002 INFO : leaving (1) step postscripts -23:17:21,002 INFO : moving (1) to step dopostaction -23:17:21,002 DEBUG : dopostaction is a direct step -23:17:21,003 INFO : leaving (1) step dopostaction diff --git a/compass/tests/actions/update_progress/data/test1/anamon/checkpoint_5/server1.1/chef-client.log.template b/compass/tests/actions/update_progress/data/test1/anamon/checkpoint_5/server1.1/chef-client.log.template deleted file mode 100644 index 58640d9d..00000000 --- a/compass/tests/actions/update_progress/data/test1/anamon/checkpoint_5/server1.1/chef-client.log.template +++ /dev/null @@ -1,422 +0,0 @@ -Feb 21 20:39:11 server1.1 [2014-02-21T20:39:11-08:00] INFO: execute[Keystone: sleep] ran successfully -Feb 21 20:39:11 server1.1 [2014-02-21T20:39:11-08:00] INFO: Processing directory[/etc/keystone] action create (openstack-identity::server line 73) -Feb 21 20:39:11 server1.1 [2014-02-21T20:39:11-08:00] INFO: directory[/etc/keystone] owner changed to 163 -Feb 21 20:39:11 server1.1 [2014-02-21T20:39:11-08:00] INFO: directory[/etc/keystone] mode changed to 700 -Feb 21 20:39:11 server1.1 [2014-02-21T20:39:11-08:00] INFO: Processing directory[/etc/keystone/ssl] action create (openstack-identity::server line 79) -Feb 21 20:39:11 server1.1 [2014-02-21T20:39:11-08:00] INFO: Processing file[/var/lib/keystone/keystone.db] action delete (openstack-identity::server line 87) -Feb 21 20:39:11 server1.1 [2014-02-21T20:39:11-08:00] INFO: Processing execute[keystone-manage pki_setup] action run (openstack-identity::server line 91) -Feb 21 20:39:11 server1.1 [2014-02-21T20:39:11-08:00] INFO: Processing template[/etc/keystone/keystone.conf] action create (openstack-identity::server line 140) -Feb 21 20:39:11 server1.1 [2014-02-21T20:39:11-08:00] INFO: template[/etc/keystone/keystone.conf] backed up to /var/chef/backup/etc/keystone/keystone.conf.chef-20140221203911.069202 -Feb 21 20:39:11 server1.1 [2014-02-21T20:39:11-08:00] INFO: template[/etc/keystone/keystone.conf] updated file contents /etc/keystone/keystone.conf -Feb 21 20:39:11 server1.1 [2014-02-21T20:39:11-08:00] INFO: template[/etc/keystone/keystone.conf] owner changed to 163 -Feb 21 20:39:11 server1.1 [2014-02-21T20:39:11-08:00] INFO: template[/etc/keystone/keystone.conf] mode changed to 644 -Feb 21 20:39:11 server1.1 [2014-02-21T20:39:11-08:00] INFO: template[/etc/keystone/keystone.conf] sending restart action to service[keystone] (immediate) -Feb 21 20:39:11 server1.1 [2014-02-21T20:39:11-08:00] INFO: Processing service[keystone] action restart (openstack-identity::server line 64) -Feb 21 20:39:12 server1.1 [2014-02-21T20:39:11-08:00] INFO: service[keystone] restarted -Feb 21 20:39:12 server1.1 [2014-02-21T20:39:11-08:00] INFO: service[keystone] sending run action to execute[Keystone: sleep] (immediate) -Feb 21 20:39:12 server1.1 [2014-02-21T20:39:11-08:00] INFO: Processing execute[Keystone: sleep] action run (openstack-identity::server line 58) -Feb 21 20:39:22 server1.1 [2014-02-21T20:39:21-08:00] INFO: execute[Keystone: sleep] ran successfully -Feb 21 20:39:22 server1.1 [2014-02-21T20:39:21-08:00] INFO: Processing template[/etc/keystone/default_catalog.templates] action create (openstack-identity::server line 158) -Feb 21 20:39:22 server1.1 [2014-02-21T20:39:21-08:00] INFO: Processing execute[keystone-manage db_sync] action run (openstack-identity::server line 172) -Feb 21 20:39:43 server1.1 [2014-02-21T20:39:42-08:00] INFO: execute[keystone-manage db_sync] ran successfully -Feb 21 20:39:43 server1.1 [2014-02-21T20:39:42-08:00] INFO: Processing bash[bootstrap-keystone-admin] action run (openstack-identity::registration line 40) -Feb 21 20:39:45 server1.1 [2014-02-21T20:39:44-08:00] INFO: bash[bootstrap-keystone-admin] ran successfully -Feb 21 20:39:45 server1.1 [2014-02-21T20:39:44-08:00] INFO: Processing openstack-identity_register[Register 'admin' Tenant] action create_tenant (openstack-identity::registration line 80) -Feb 21 20:39:45 server1.1 [2014-02-21T20:39:44-08:00] INFO: Tenant 'admin' already exists.. Not creating. -Feb 21 20:39:45 server1.1 [2014-02-21T20:39:44-08:00] INFO: Tenant UUID: 87cf46951cc14159bd16b68e3eb96321 -Feb 21 20:39:45 server1.1 [2014-02-21T20:39:44-08:00] INFO: Processing openstack-identity_register[Register 'service' Tenant] action create_tenant (openstack-identity::registration line 80) -Feb 21 20:39:46 server1.1 [2014-02-21T20:39:45-08:00] INFO: Created tenant 'service' -Feb 21 20:39:46 server1.1 [2014-02-21T20:39:45-08:00] INFO: Processing openstack-identity_register[Register 'admin' Role] action create_role (openstack-identity::registration line 92) -Feb 21 20:39:46 server1.1 [2014-02-21T20:39:45-08:00] INFO: Role 'admin' already exists.. Not creating. -Feb 21 20:39:46 server1.1 [2014-02-21T20:39:45-08:00] INFO: Role UUID: 8070c199fc2647c9a50176d11256bebc -Feb 21 20:39:46 server1.1 [2014-02-21T20:39:45-08:00] INFO: Processing openstack-identity_register[Register 'Member' Role] action create_role (openstack-identity::registration line 92) -Feb 21 20:39:47 server1.1 [2014-02-21T20:39:46-08:00] INFO: Created Role 'Member' -Feb 21 20:39:47 server1.1 [2014-02-21T20:39:46-08:00] INFO: Processing openstack-identity_register[Register 'compute' User] action create_user (openstack-identity::registration line 109) -Feb 21 20:39:48 server1.1 [2014-02-21T20:39:47-08:00] INFO: Created user 'service' for tenant 'service' -Feb 21 20:39:48 server1.1 [2014-02-21T20:39:47-08:00] INFO: Processing openstack-identity_register[Grant admin Role to service User in service Tenant] action grant_role (openstack-identity::registration line 119) -Feb 21 20:39:49 server1.1 [2014-02-21T20:39:48-08:00] INFO: Granted Role 'admin' to User 'service' in Tenant 'service' -Feb 21 20:39:49 server1.1 [2014-02-21T20:39:48-08:00] INFO: Processing openstack-identity_register[Register compute Service] action create_service (openstack-identity::registration line 131) -Feb 21 20:39:50 server1.1 [2014-02-21T20:39:49-08:00] INFO: Created service 'nova' -Feb 21 20:39:50 server1.1 [2014-02-21T20:39:49-08:00] INFO: Processing openstack-identity_register[Register compute Endpoint] action create_endpoint (openstack-identity::registration line 151) -Feb 21 20:39:50 server1.1 [2014-02-21T20:39:50-08:00] INFO: Created endpoint for service type 'compute' -Feb 21 20:39:50 server1.1 [2014-02-21T20:39:50-08:00] INFO: Processing openstack-identity_register[Register 'network' User] action create_user (openstack-identity::registration line 109) -Feb 21 20:39:51 server1.1 [2014-02-21T20:39:50-08:00] INFO: User 'service' already exists for tenant 'service' -Feb 21 20:39:51 server1.1 [2014-02-21T20:39:50-08:00] INFO: Processing openstack-identity_register[Grant admin Role to service User in service Tenant] action grant_role (openstack-identity::registration line 119) -Feb 21 20:39:52 server1.1 [2014-02-21T20:39:51-08:00] INFO: Role 'admin' already granted to User 'service' in Tenant 'service' -Feb 21 20:39:52 server1.1 [2014-02-21T20:39:51-08:00] INFO: Processing openstack-identity_register[Register network Service] action create_service (openstack-identity::registration line 131) -Feb 21 20:39:53 server1.1 [2014-02-21T20:39:52-08:00] INFO: Created service 'quantum' -Feb 21 20:39:53 server1.1 [2014-02-21T20:39:52-08:00] INFO: Processing openstack-identity_register[Register network Endpoint] action create_endpoint (openstack-identity::registration line 151) -Feb 21 20:39:54 server1.1 [2014-02-21T20:39:53-08:00] INFO: Created endpoint for service type 'network' -Feb 21 20:39:54 server1.1 [2014-02-21T20:39:53-08:00] INFO: Processing openstack-identity_register[Register 'volume' User] action create_user (openstack-identity::registration line 109) -Feb 21 20:39:54 server1.1 [2014-02-21T20:39:53-08:00] INFO: User 'service' already exists for tenant 'service' -Feb 21 20:39:54 server1.1 [2014-02-21T20:39:53-08:00] INFO: Processing openstack-identity_register[Grant admin Role to service User in service Tenant] action grant_role (openstack-identity::registration line 119) -Feb 21 20:39:55 server1.1 [2014-02-21T20:39:54-08:00] INFO: Role 'admin' already granted to User 'service' in Tenant 'service' -Feb 21 20:39:55 server1.1 [2014-02-21T20:39:54-08:00] INFO: Processing openstack-identity_register[Register volume Service] action create_service (openstack-identity::registration line 131) -Feb 21 20:39:56 server1.1 [2014-02-21T20:39:55-08:00] INFO: Created service 'cinder' -Feb 21 20:39:56 server1.1 [2014-02-21T20:39:55-08:00] INFO: Processing openstack-identity_register[Register volume Endpoint] action create_endpoint (openstack-identity::registration line 151) -Feb 21 20:39:57 server1.1 [2014-02-21T20:39:56-08:00] INFO: Created endpoint for service type 'volume' -Feb 21 20:39:57 server1.1 [2014-02-21T20:39:56-08:00] INFO: Processing openstack-identity_register[Register identity Service] action create_service (openstack-identity::registration line 131) -Feb 21 20:39:57 server1.1 [2014-02-21T20:39:56-08:00] INFO: Created service 'keystone' -Feb 21 20:39:57 server1.1 [2014-02-21T20:39:56-08:00] INFO: Processing openstack-identity_register[Register identity Endpoint] action create_endpoint (openstack-identity::registration line 151) -Feb 21 20:39:58 server1.1 [2014-02-21T20:39:57-08:00] INFO: Created endpoint for service type 'identity' -Feb 21 20:39:58 server1.1 [2014-02-21T20:39:57-08:00] INFO: Processing openstack-identity_register[Register 'image' User] action create_user (openstack-identity::registration line 109) -Feb 21 20:39:59 server1.1 [2014-02-21T20:39:58-08:00] INFO: User 'service' already exists for tenant 'service' -Feb 21 20:39:59 server1.1 [2014-02-21T20:39:58-08:00] INFO: Processing openstack-identity_register[Grant admin Role to service User in service Tenant] action grant_role (openstack-identity::registration line 119) -Feb 21 20:40:00 server1.1 [2014-02-21T20:39:59-08:00] INFO: Role 'admin' already granted to User 'service' in Tenant 'service' -Feb 21 20:40:00 server1.1 [2014-02-21T20:39:59-08:00] INFO: Processing openstack-identity_register[Register image Service] action create_service (openstack-identity::registration line 131) -Feb 21 20:40:00 server1.1 [2014-02-21T20:40:00-08:00] INFO: Created service 'glance' -Feb 21 20:40:00 server1.1 [2014-02-21T20:40:00-08:00] INFO: Processing openstack-identity_register[Register image Endpoint] action create_endpoint (openstack-identity::registration line 151) -Feb 21 20:40:01 server1.1 [2014-02-21T20:40:00-08:00] INFO: Created endpoint for service type 'image' -Feb 21 20:40:01 server1.1 [2014-02-21T20:40:00-08:00] INFO: Processing openstack-identity_register[Register 'object-store' User] action create_user (openstack-identity::registration line 109) -Feb 21 20:40:02 server1.1 [2014-02-21T20:40:01-08:00] INFO: User 'service' already exists for tenant 'service' -Feb 21 20:40:02 server1.1 [2014-02-21T20:40:01-08:00] INFO: Processing openstack-identity_register[Grant admin Role to service User in service Tenant] action grant_role (openstack-identity::registration line 119) -Feb 21 20:40:03 server1.1 [2014-02-21T20:40:02-08:00] INFO: Role 'admin' already granted to User 'service' in Tenant 'service' -Feb 21 20:40:03 server1.1 [2014-02-21T20:40:02-08:00] INFO: Processing openstack-identity_register[Register object-store Service] action create_service (openstack-identity::registration line 131) -Feb 21 20:40:04 server1.1 [2014-02-21T20:40:03-08:00] INFO: Created service 'swift' -Feb 21 20:40:04 server1.1 [2014-02-21T20:40:03-08:00] INFO: Processing openstack-identity_register[Create EC2 credentials for 'admin' user] action create_ec2_credentials (openstack-identity::registration line 166) -Feb 21 20:40:05 server1.1 [2014-02-21T20:40:04-08:00] INFO: Created EC2 Credentials for User 'admin' in Tenant 'admin' -Feb 21 20:40:05 server1.1 [2014-02-21T20:40:04-08:00] INFO: Processing openstack-identity_register[Create EC2 credentials for 'monitoring' user] action create_ec2_credentials (openstack-identity::registration line 166) -Feb 21 20:40:07 server1.1 [2014-02-21T20:40:06-08:00] ERROR: Unable to create EC2 Credentials for User 'monitoring' in Tenant 'service' -Feb 21 20:40:07 server1.1 [2014-02-21T20:40:06-08:00] ERROR: Error was: Could not lookup uuid for ec2-credentials:tenant=>service. Error was 'Client' object has no attribute 'auth_user_id' -Feb 21 20:40:07 server1.1 (1) -Feb 21 20:40:07 server1.1 [2014-02-21T20:40:06-08:00] INFO: Processing package[openstack-cinder] action upgrade (openstack-block-storage::cinder-common line 26) -Feb 21 20:40:07 server1.1 [2014-02-21T20:40:06-08:00] INFO: package[openstack-cinder] installing openstack-cinder-2013.1.4-1.el6 from openstack repository -Feb 21 20:41:11 server1.1 [2014-02-21T20:41:10-08:00] INFO: package[openstack-cinder] upgraded from uninstalled to 2013.1.4-1.el6 -Feb 21 20:41:11 server1.1 [2014-02-21T20:41:10-08:00] INFO: Processing directory[/etc/cinder] action create (openstack-block-storage::cinder-common line 44) -Feb 21 20:41:11 server1.1 [2014-02-21T20:41:10-08:00] INFO: directory[/etc/cinder] owner changed to 165 -Feb 21 20:41:11 server1.1 [2014-02-21T20:41:10-08:00] INFO: directory[/etc/cinder] group changed to 165 -Feb 21 20:41:11 server1.1 [2014-02-21T20:41:10-08:00] INFO: directory[/etc/cinder] mode changed to 750 -Feb 21 20:41:11 server1.1 [2014-02-21T20:41:10-08:00] INFO: Processing template[/etc/cinder/cinder.conf] action create (openstack-block-storage::cinder-common line 51) -Feb 21 20:41:11 server1.1 [2014-02-21T20:41:10-08:00] INFO: template[/etc/cinder/cinder.conf] backed up to /var/chef/backup/etc/cinder/cinder.conf.chef-20140221204110.415861 -Feb 21 20:41:11 server1.1 [2014-02-21T20:41:10-08:00] INFO: template[/etc/cinder/cinder.conf] updated file contents /etc/cinder/cinder.conf -Feb 21 20:41:11 server1.1 [2014-02-21T20:41:10-08:00] INFO: template[/etc/cinder/cinder.conf] owner changed to 165 -Feb 21 20:41:11 server1.1 [2014-02-21T20:41:10-08:00] INFO: template[/etc/cinder/cinder.conf] mode changed to 644 -Feb 21 20:41:11 server1.1 [2014-02-21T20:41:10-08:00] INFO: Processing package[python-cinderclient] action upgrade (openstack-block-storage::api line 32) -Feb 21 20:41:11 server1.1 [2014-02-21T20:41:10-08:00] INFO: Processing package[MySQL-python] action upgrade (openstack-block-storage::api line 41) -Feb 21 20:41:11 server1.1 [2014-02-21T20:41:10-08:00] INFO: Processing directory[/var/cache/cinder] action create (openstack-block-storage::api line 46) -Feb 21 20:41:11 server1.1 [2014-02-21T20:41:10-08:00] INFO: directory[/var/cache/cinder] created directory /var/cache/cinder -Feb 21 20:41:11 server1.1 [2014-02-21T20:41:10-08:00] INFO: directory[/var/cache/cinder] owner changed to 165 -Feb 21 20:41:11 server1.1 [2014-02-21T20:41:10-08:00] INFO: directory[/var/cache/cinder] group changed to 165 -Feb 21 20:41:11 server1.1 [2014-02-21T20:41:10-08:00] INFO: directory[/var/cache/cinder] mode changed to 700 -Feb 21 20:41:11 server1.1 [2014-02-21T20:41:10-08:00] INFO: Processing directory[/var/lock/cinder] action create (openstack-block-storage::api line 52) -Feb 21 20:41:11 server1.1 [2014-02-21T20:41:10-08:00] INFO: directory[/var/lock/cinder] created directory /var/lock/cinder -Feb 21 20:41:11 server1.1 [2014-02-21T20:41:10-08:00] INFO: directory[/var/lock/cinder] owner changed to 165 -Feb 21 20:41:11 server1.1 [2014-02-21T20:41:10-08:00] INFO: directory[/var/lock/cinder] group changed to 165 -Feb 21 20:41:11 server1.1 [2014-02-21T20:41:10-08:00] INFO: directory[/var/lock/cinder] mode changed to 700 -Feb 21 20:41:11 server1.1 [2014-02-21T20:41:10-08:00] INFO: Processing service[cinder-api] action enable (openstack-block-storage::api line 58) -Feb 21 20:41:11 server1.1 [2014-02-21T20:41:10-08:00] INFO: service[cinder-api] enabled -Feb 21 20:41:11 server1.1 [2014-02-21T20:41:10-08:00] INFO: Processing execute[cinder-manage db sync] action run (openstack-block-storage::api line 71) -Feb 21 20:41:30 server1.1 [2014-02-21T20:41:30-08:00] INFO: execute[cinder-manage db sync] ran successfully -Feb 21 20:41:30 server1.1 [2014-02-21T20:41:30-08:00] INFO: Processing template[/etc/cinder/api-paste.ini] action create (openstack-block-storage::api line 73) -Feb 21 20:41:30 server1.1 [2014-02-21T20:41:30-08:00] INFO: template[/etc/cinder/api-paste.ini] backed up to /var/chef/backup/etc/cinder/api-paste.ini.chef-20140221204130.194587 -Feb 21 20:41:30 server1.1 [2014-02-21T20:41:30-08:00] INFO: template[/etc/cinder/api-paste.ini] updated file contents /etc/cinder/api-paste.ini -Feb 21 20:41:30 server1.1 [2014-02-21T20:41:30-08:00] INFO: template[/etc/cinder/api-paste.ini] owner changed to 165 -Feb 21 20:41:30 server1.1 [2014-02-21T20:41:30-08:00] INFO: template[/etc/cinder/api-paste.ini] mode changed to 644 -Feb 21 20:41:30 server1.1 [2014-02-21T20:41:30-08:00] INFO: template[/etc/cinder/api-paste.ini] sending restart action to service[cinder-api] (immediate) -Feb 21 20:41:30 server1.1 [2014-02-21T20:41:30-08:00] INFO: Processing service[cinder-api] action restart (openstack-block-storage::api line 58) -Feb 21 20:41:31 server1.1 [2014-02-21T20:41:30-08:00] INFO: service[cinder-api] restarted -Feb 21 20:41:31 server1.1 [2014-02-21T20:41:30-08:00] INFO: Processing template[/etc/cinder/policy.json] action create (openstack-block-storage::api line 88) -Feb 21 20:41:31 server1.1 [2014-02-21T20:41:30-08:00] INFO: template[/etc/cinder/policy.json] backed up to /var/chef/backup/etc/cinder/policy.json.chef-20140221204130.442890 -Feb 21 20:41:31 server1.1 [2014-02-21T20:41:30-08:00] INFO: template[/etc/cinder/policy.json] updated file contents /etc/cinder/policy.json -Feb 21 20:41:31 server1.1 [2014-02-21T20:41:30-08:00] INFO: template[/etc/cinder/policy.json] owner changed to 165 -Feb 21 20:41:31 server1.1 [2014-02-21T20:41:30-08:00] INFO: template[/etc/cinder/policy.json] mode changed to 644 -Feb 21 20:41:31 server1.1 [2014-02-21T20:41:30-08:00] INFO: template[/etc/cinder/policy.json] not queuing delayed action restart on service[cinder-api] (delayed), as it's already been queued -Feb 21 20:41:31 server1.1 [2014-02-21T20:41:30-08:00] INFO: Processing package[MySQL-python] action upgrade (openstack-block-storage::scheduler line 45) -Feb 21 20:41:31 server1.1 [2014-02-21T20:41:30-08:00] INFO: Processing service[cinder-scheduler] action enable (openstack-block-storage::scheduler line 50) -Feb 21 20:41:31 server1.1 [2014-02-21T20:41:30-08:00] INFO: service[cinder-scheduler] enabled -Feb 21 20:41:31 server1.1 [2014-02-21T20:41:30-08:00] INFO: Processing service[cinder-scheduler] action start (openstack-block-storage::scheduler line 50) -Feb 21 20:41:31 server1.1 [2014-02-21T20:41:30-08:00] INFO: service[cinder-scheduler] started -Feb 21 20:41:31 server1.1 [2014-02-21T20:41:30-08:00] INFO: Processing package[openstack-nova-common] action upgrade (openstack-compute::nova-common line 37) -Feb 21 20:41:31 server1.1 [2014-02-21T20:41:30-08:00] INFO: package[openstack-nova-common] installing openstack-nova-common-2013.1.4-7.el6 from openstack repository -Feb 21 20:41:52 server1.1 [2014-02-21T20:41:52-08:00] INFO: package[openstack-nova-common] upgraded from uninstalled to 2013.1.4-7.el6 -Feb 21 20:41:52 server1.1 [2014-02-21T20:41:52-08:00] INFO: Processing package[python-memcached] action install (openstack-compute::nova-common line 46) -Feb 21 20:41:53 server1.1 [2014-02-21T20:41:52-08:00] INFO: Processing directory[/etc/nova] action create (openstack-compute::nova-common line 51) -Feb 21 20:41:53 server1.1 [2014-02-21T20:41:52-08:00] INFO: directory[/etc/nova] owner changed to 162 -Feb 21 20:41:53 server1.1 [2014-02-21T20:41:52-08:00] INFO: directory[/etc/nova] group changed to 162 -Feb 21 20:41:53 server1.1 [2014-02-21T20:41:52-08:00] INFO: directory[/etc/nova] mode changed to 700 -Feb 21 20:41:53 server1.1 [2014-02-21T20:41:52-08:00] INFO: Processing directory[/etc/nova/rootwrap.d] action create (openstack-compute::nova-common line 59) -Feb 21 20:41:53 server1.1 [2014-02-21T20:41:52-08:00] INFO: directory[/etc/nova/rootwrap.d] created directory /etc/nova/rootwrap.d -Feb 21 20:41:53 server1.1 [2014-02-21T20:41:52-08:00] INFO: directory[/etc/nova/rootwrap.d] owner changed to 0 -Feb 21 20:41:53 server1.1 [2014-02-21T20:41:52-08:00] INFO: directory[/etc/nova/rootwrap.d] group changed to 0 -Feb 21 20:41:53 server1.1 [2014-02-21T20:41:52-08:00] INFO: directory[/etc/nova/rootwrap.d] mode changed to 700 -Feb 21 20:41:53 server1.1 [2014-02-21T20:41:52-08:00] INFO: Processing template[/etc/nova/nova.conf] action create (openstack-compute::nova-common line 134) -Feb 21 20:41:53 server1.1 [2014-02-21T20:41:52-08:00] INFO: template[/etc/nova/nova.conf] backed up to /var/chef/backup/etc/nova/nova.conf.chef-20140221204152.340272 -Feb 21 20:41:53 server1.1 [2014-02-21T20:41:52-08:00] INFO: template[/etc/nova/nova.conf] updated file contents /etc/nova/nova.conf -Feb 21 20:41:53 server1.1 [2014-02-21T20:41:52-08:00] INFO: template[/etc/nova/nova.conf] owner changed to 162 -Feb 21 20:41:53 server1.1 [2014-02-21T20:41:52-08:00] INFO: template[/etc/nova/nova.conf] mode changed to 644 -Feb 21 20:41:53 server1.1 [2014-02-21T20:41:52-08:00] INFO: Processing template[/etc/nova/rootwrap.conf] action create (openstack-compute::nova-common line 164) -Feb 21 20:41:53 server1.1 [2014-02-21T20:41:52-08:00] INFO: template[/etc/nova/rootwrap.conf] backed up to /var/chef/backup/etc/nova/rootwrap.conf.chef-20140221204152.347747 -Feb 21 20:41:53 server1.1 [2014-02-21T20:41:52-08:00] INFO: template[/etc/nova/rootwrap.conf] updated file contents /etc/nova/rootwrap.conf -Feb 21 20:41:53 server1.1 [2014-02-21T20:41:52-08:00] INFO: template[/etc/nova/rootwrap.conf] group changed to 0 -Feb 21 20:41:53 server1.1 [2014-02-21T20:41:52-08:00] INFO: template[/etc/nova/rootwrap.conf] mode changed to 644 -Feb 21 20:41:53 server1.1 [2014-02-21T20:41:52-08:00] INFO: Processing template[/etc/nova/rootwrap.d/api-metadata.filters] action create (openstack-compute::nova-common line 172) -Feb 21 20:41:53 server1.1 [2014-02-21T20:41:52-08:00] INFO: template[/etc/nova/rootwrap.d/api-metadata.filters] created file /etc/nova/rootwrap.d/api-metadata.filters -Feb 21 20:41:53 server1.1 [2014-02-21T20:41:52-08:00] INFO: template[/etc/nova/rootwrap.d/api-metadata.filters] updated file contents /etc/nova/rootwrap.d/api-metadata.filters -Feb 21 20:41:53 server1.1 [2014-02-21T20:41:52-08:00] INFO: template[/etc/nova/rootwrap.d/api-metadata.filters] owner changed to 0 -Feb 21 20:41:53 server1.1 [2014-02-21T20:41:52-08:00] INFO: template[/etc/nova/rootwrap.d/api-metadata.filters] group changed to 0 -Feb 21 20:41:53 server1.1 [2014-02-21T20:41:52-08:00] INFO: template[/etc/nova/rootwrap.d/api-metadata.filters] mode changed to 644 -Feb 21 20:41:53 server1.1 [2014-02-21T20:41:52-08:00] INFO: Processing template[/etc/nova/rootwrap.d/compute.filters] action create (openstack-compute::nova-common line 180) -Feb 21 20:41:53 server1.1 [2014-02-21T20:41:52-08:00] INFO: template[/etc/nova/rootwrap.d/compute.filters] created file /etc/nova/rootwrap.d/compute.filters -Feb 21 20:41:53 server1.1 [2014-02-21T20:41:52-08:00] INFO: template[/etc/nova/rootwrap.d/compute.filters] updated file contents /etc/nova/rootwrap.d/compute.filters -Feb 21 20:41:53 server1.1 [2014-02-21T20:41:52-08:00] INFO: template[/etc/nova/rootwrap.d/compute.filters] owner changed to 0 -Feb 21 20:41:53 server1.1 [2014-02-21T20:41:52-08:00] INFO: template[/etc/nova/rootwrap.d/compute.filters] group changed to 0 -Feb 21 20:41:53 server1.1 [2014-02-21T20:41:52-08:00] INFO: template[/etc/nova/rootwrap.d/compute.filters] mode changed to 644 -Feb 21 20:41:53 server1.1 [2014-02-21T20:41:52-08:00] INFO: Processing template[/etc/nova/rootwrap.d/network.filters] action create (openstack-compute::nova-common line 188) -Feb 21 20:41:53 server1.1 [2014-02-21T20:41:52-08:00] INFO: template[/etc/nova/rootwrap.d/network.filters] created file /etc/nova/rootwrap.d/network.filters -Feb 21 20:41:53 server1.1 [2014-02-21T20:41:52-08:00] INFO: template[/etc/nova/rootwrap.d/network.filters] updated file contents /etc/nova/rootwrap.d/network.filters -Feb 21 20:41:53 server1.1 [2014-02-21T20:41:52-08:00] INFO: template[/etc/nova/rootwrap.d/network.filters] owner changed to 0 -Feb 21 20:41:53 server1.1 [2014-02-21T20:41:52-08:00] INFO: template[/etc/nova/rootwrap.d/network.filters] group changed to 0 -Feb 21 20:41:53 server1.1 [2014-02-21T20:41:52-08:00] INFO: template[/etc/nova/rootwrap.d/network.filters] mode changed to 644 -Feb 21 20:41:53 server1.1 [2014-02-21T20:41:52-08:00] INFO: Processing template[/root/openrc] action create (openstack-compute::nova-common line 199) -Feb 21 20:41:53 server1.1 [2014-02-21T20:41:52-08:00] INFO: template[/root/openrc] created file /root/openrc -Feb 21 20:41:53 server1.1 [2014-02-21T20:41:52-08:00] INFO: template[/root/openrc] updated file contents /root/openrc -Feb 21 20:41:53 server1.1 [2014-02-21T20:41:52-08:00] INFO: template[/root/openrc] owner changed to 0 -Feb 21 20:41:53 server1.1 [2014-02-21T20:41:52-08:00] INFO: template[/root/openrc] group changed to 0 -Feb 21 20:41:53 server1.1 [2014-02-21T20:41:52-08:00] INFO: template[/root/openrc] mode changed to 600 -Feb 21 20:41:53 server1.1 [2014-02-21T20:41:52-08:00] INFO: Processing execute[enable nova login] action run (openstack-compute::nova-common line 215) -Feb 21 20:41:53 server1.1 [2014-02-21T20:41:52-08:00] INFO: execute[enable nova login] ran successfully -Feb 21 20:41:53 server1.1 [2014-02-21T20:41:52-08:00] INFO: Processing directory[/var/lock/nova] action create (openstack-compute::api-ec2 line 28) -Feb 21 20:41:53 server1.1 [2014-02-21T20:41:52-08:00] INFO: directory[/var/lock/nova] created directory /var/lock/nova -Feb 21 20:41:53 server1.1 [2014-02-21T20:41:52-08:00] INFO: directory[/var/lock/nova] owner changed to 162 -Feb 21 20:41:53 server1.1 [2014-02-21T20:41:52-08:00] INFO: directory[/var/lock/nova] group changed to 162 -Feb 21 20:41:53 server1.1 [2014-02-21T20:41:52-08:00] INFO: directory[/var/lock/nova] mode changed to 700 -Feb 21 20:41:53 server1.1 [2014-02-21T20:41:52-08:00] INFO: Processing package[python-keystone] action upgrade (openstack-compute::api-ec2 line 36) -Feb 21 20:41:53 server1.1 [2014-02-21T20:41:52-08:00] INFO: Processing package[openstack-nova-api] action upgrade (openstack-compute::api-ec2 line 41) -Feb 21 20:41:53 server1.1 [2014-02-21T20:41:52-08:00] INFO: package[openstack-nova-api] installing openstack-nova-api-2013.1.4-7.el6 from openstack repository -Feb 21 20:41:57 server1.1 [2014-02-21T20:41:56-08:00] INFO: package[openstack-nova-api] upgraded from uninstalled to 2013.1.4-7.el6 -Feb 21 20:41:57 server1.1 [2014-02-21T20:41:56-08:00] INFO: Processing service[nova-api-ec2] action enable (openstack-compute::api-ec2 line 48) -Feb 21 20:41:57 server1.1 [2014-02-21T20:41:56-08:00] INFO: service[nova-api-ec2] enabled -Feb 21 20:41:57 server1.1 [2014-02-21T20:41:56-08:00] INFO: Processing template[/etc/nova/api-paste.ini] action create (openstack-compute::api-ec2 line 74) -Feb 21 20:41:57 server1.1 [2014-02-21T20:41:56-08:00] INFO: template[/etc/nova/api-paste.ini] backed up to /var/chef/backup/etc/nova/api-paste.ini.chef-20140221204156.594842 -Feb 21 20:41:57 server1.1 [2014-02-21T20:41:56-08:00] INFO: template[/etc/nova/api-paste.ini] updated file contents /etc/nova/api-paste.ini -Feb 21 20:41:57 server1.1 [2014-02-21T20:41:56-08:00] INFO: template[/etc/nova/api-paste.ini] owner changed to 162 -Feb 21 20:41:57 server1.1 [2014-02-21T20:41:56-08:00] INFO: template[/etc/nova/api-paste.ini] mode changed to 644 -Feb 21 20:41:57 server1.1 [2014-02-21T20:41:56-08:00] INFO: template[/etc/nova/api-paste.ini] not queuing delayed action restart on service[nova-api-ec2] (delayed), as it's already been queued -Feb 21 20:41:57 server1.1 [2014-02-21T20:41:56-08:00] INFO: template[/etc/nova/api-paste.ini] not queuing delayed action restart on service[nova-api-os-compute] (delayed), as it's already been queued -Feb 21 20:41:57 server1.1 [2014-02-21T20:41:56-08:00] INFO: Processing directory[/var/lock/nova] action create (openstack-compute::api-os-compute line 28) -Feb 21 20:41:57 server1.1 [2014-02-21T20:41:56-08:00] INFO: Processing directory[/var/cache/nova] action create (openstack-compute::api-os-compute line 34) -Feb 21 20:41:57 server1.1 [2014-02-21T20:41:56-08:00] INFO: directory[/var/cache/nova] created directory /var/cache/nova -Feb 21 20:41:57 server1.1 [2014-02-21T20:41:56-08:00] INFO: directory[/var/cache/nova] owner changed to 162 -Feb 21 20:41:57 server1.1 [2014-02-21T20:41:56-08:00] INFO: directory[/var/cache/nova] group changed to 162 -Feb 21 20:41:57 server1.1 [2014-02-21T20:41:56-08:00] INFO: directory[/var/cache/nova] mode changed to 700 -Feb 21 20:41:57 server1.1 [2014-02-21T20:41:56-08:00] INFO: Processing package[python-keystone] action upgrade (openstack-compute::api-os-compute line 40) -Feb 21 20:41:57 server1.1 [2014-02-21T20:41:56-08:00] INFO: Processing package[openstack-nova-api] action upgrade (openstack-compute::api-os-compute line 45) -Feb 21 20:41:57 server1.1 [2014-02-21T20:41:56-08:00] INFO: Processing service[nova-api-os-compute] action enable (openstack-compute::api-os-compute line 52) -Feb 21 20:41:57 server1.1 [2014-02-21T20:41:56-08:00] INFO: Processing service[nova-api-os-compute] action start (openstack-compute::api-os-compute line 52) -Feb 21 20:41:57 server1.1 [2014-02-21T20:41:57-08:00] INFO: service[nova-api-os-compute] started -Feb 21 20:41:57 server1.1 [2014-02-21T20:41:57-08:00] INFO: Processing template[/etc/nova/api-paste.ini] action create (openstack-compute::api-os-compute line 78) -Feb 21 20:41:57 server1.1 [2014-02-21T20:41:57-08:00] INFO: Processing package[openstack-nova-cert] action upgrade (openstack-compute::nova-cert line 25) -Feb 21 20:41:57 server1.1 [2014-02-21T20:41:57-08:00] INFO: package[openstack-nova-cert] installing openstack-nova-cert-2013.1.4-7.el6 from openstack repository -Feb 21 20:42:05 server1.1 [2014-02-21T20:42:04-08:00] INFO: package[openstack-nova-cert] upgraded from uninstalled to 2013.1.4-7.el6 -Feb 21 20:42:05 server1.1 [2014-02-21T20:42:04-08:00] INFO: Processing service[nova-cert] action enable (openstack-compute::nova-cert line 32) -Feb 21 20:42:05 server1.1 [2014-02-21T20:42:04-08:00] INFO: service[nova-cert] enabled -Feb 21 20:42:05 server1.1 [2014-02-21T20:42:04-08:00] INFO: Processing service[nova-cert] action restart (openstack-compute::nova-cert line 32) -Feb 21 20:42:05 server1.1 [2014-02-21T20:42:04-08:00] INFO: service[nova-cert] restarted -Feb 21 20:42:05 server1.1 [2014-02-21T20:42:04-08:00] INFO: Processing directory[/var/lock/nova] action create (openstack-compute::scheduler line 25) -Feb 21 20:42:05 server1.1 [2014-02-21T20:42:04-08:00] INFO: Processing package[openstack-nova-scheduler] action upgrade (openstack-compute::scheduler line 34) -Feb 21 20:42:05 server1.1 [2014-02-21T20:42:04-08:00] INFO: package[openstack-nova-scheduler] installing openstack-nova-scheduler-2013.1.4-7.el6 from openstack repository -Feb 21 20:42:11 server1.1 [2014-02-21T20:42:11-08:00] INFO: package[openstack-nova-scheduler] upgraded from uninstalled to 2013.1.4-7.el6 -Feb 21 20:42:11 server1.1 [2014-02-21T20:42:11-08:00] INFO: Processing service[nova-scheduler] action enable (openstack-compute::scheduler line 41) -Feb 21 20:42:12 server1.1 [2014-02-21T20:42:11-08:00] INFO: service[nova-scheduler] enabled -Feb 21 20:42:12 server1.1 [2014-02-21T20:42:11-08:00] INFO: Processing service[nova-scheduler] action restart (openstack-compute::scheduler line 41) -Feb 21 20:42:12 server1.1 [2014-02-21T20:42:11-08:00] INFO: service[nova-scheduler] restarted -Feb 21 20:42:12 server1.1 [2014-02-21T20:42:11-08:00] INFO: Processing package[openstack-nova-novncproxy] action upgrade (openstack-compute::vncproxy line 26) -Feb 21 20:42:12 server1.1 [2014-02-21T20:42:11-08:00] INFO: package[openstack-nova-novncproxy] installing openstack-nova-novncproxy-2013.1.4-7.el6 from openstack repository -Feb 21 20:42:21 server1.1 [2014-02-21T20:42:20-08:00] INFO: package[openstack-nova-novncproxy] upgraded from uninstalled to 2013.1.4-7.el6 -Feb 21 20:42:21 server1.1 [2014-02-21T20:42:20-08:00] INFO: Processing package[openstack-nova-console] action upgrade (openstack-compute::vncproxy line 35) -Feb 21 20:42:21 server1.1 [2014-02-21T20:42:21-08:00] INFO: package[openstack-nova-console] installing openstack-nova-console-2013.1.4-7.el6 from openstack repository -Feb 21 20:42:25 server1.1 [2014-02-21T20:42:24-08:00] INFO: package[openstack-nova-console] upgraded from uninstalled to 2013.1.4-7.el6 -Feb 21 20:42:25 server1.1 [2014-02-21T20:42:24-08:00] INFO: Processing package[openstack-nova-console] action upgrade (openstack-compute::vncproxy line 42) -Feb 21 20:42:25 server1.1 [2014-02-21T20:42:25-08:00] INFO: Processing service[openstack-nova-novncproxy] action enable (openstack-compute::vncproxy line 49) -Feb 21 20:42:25 server1.1 [2014-02-21T20:42:25-08:00] INFO: service[openstack-nova-novncproxy] enabled -Feb 21 20:42:25 server1.1 [2014-02-21T20:42:25-08:00] INFO: Processing service[openstack-nova-novncproxy] action start (openstack-compute::vncproxy line 49) -Feb 21 20:42:26 server1.1 [2014-02-21T20:42:25-08:00] INFO: service[openstack-nova-novncproxy] started -Feb 21 20:42:26 server1.1 [2014-02-21T20:42:25-08:00] INFO: Processing service[nova-console] action enable (openstack-compute::vncproxy line 57) -Feb 21 20:42:26 server1.1 [2014-02-21T20:42:25-08:00] INFO: service[nova-console] enabled -Feb 21 20:42:26 server1.1 [2014-02-21T20:42:25-08:00] INFO: Processing service[nova-console] action start (openstack-compute::vncproxy line 57) -Feb 21 20:42:26 server1.1 [2014-02-21T20:42:25-08:00] INFO: service[nova-console] started -Feb 21 20:42:26 server1.1 [2014-02-21T20:42:25-08:00] INFO: Processing service[nova-consoleauth] action enable (openstack-compute::vncproxy line 64) -Feb 21 20:42:26 server1.1 [2014-02-21T20:42:25-08:00] INFO: service[nova-consoleauth] enabled -Feb 21 20:42:26 server1.1 [2014-02-21T20:42:25-08:00] INFO: Processing service[nova-consoleauth] action start (openstack-compute::vncproxy line 64) -Feb 21 20:42:26 server1.1 [2014-02-21T20:42:26-08:00] INFO: service[nova-consoleauth] started -Feb 21 20:42:26 server1.1 [2014-02-21T20:42:26-08:00] INFO: Processing package[openstack-nova-conductor] action upgrade (openstack-compute::conductor line 26) -Feb 21 20:42:26 server1.1 [2014-02-21T20:42:26-08:00] INFO: package[openstack-nova-conductor] installing openstack-nova-conductor-2013.1.4-7.el6 from openstack repository -Feb 21 20:42:33 server1.1 [2014-02-21T20:42:32-08:00] INFO: package[openstack-nova-conductor] upgraded from uninstalled to 2013.1.4-7.el6 -Feb 21 20:42:33 server1.1 [2014-02-21T20:42:32-08:00] INFO: Processing service[nova-conductor] action enable (openstack-compute::conductor line 32) -Feb 21 20:42:33 server1.1 [2014-02-21T20:42:32-08:00] INFO: service[nova-conductor] enabled -Feb 21 20:42:33 server1.1 [2014-02-21T20:42:32-08:00] INFO: Processing service[nova-conductor] action restart (openstack-compute::conductor line 32) -Feb 21 20:42:33 server1.1 [2014-02-21T20:42:32-08:00] INFO: service[nova-conductor] restarted -Feb 21 20:42:33 server1.1 [2014-02-21T20:42:32-08:00] INFO: Processing execute[nova-manage db sync] action run (openstack-compute::nova-setup line 26) -Feb 21 20:46:00 server1.1 [2014-02-21T20:45:59-08:00] INFO: execute[nova-manage db sync] ran successfully -Feb 21 20:46:00 server1.1 [2014-02-21T20:45:59-08:00] INFO: Processing package[python-quantumclient] action upgrade (openstack-compute::nova-setup line 109) -Feb 21 20:46:00 server1.1 [2014-02-21T20:45:59-08:00] INFO: Processing package[pyparsing] action upgrade (openstack-compute::nova-setup line 109) -Feb 21 20:46:00 server1.1 [2014-02-21T20:45:59-08:00] INFO: Processing cookbook_file[/usr/local/bin/add_floaters.py] action create (openstack-compute::nova-setup line 115) -Feb 21 20:46:00 server1.1 [2014-02-21T20:45:59-08:00] INFO: cookbook_file[/usr/local/bin/add_floaters.py] created file /usr/local/bin/add_floaters.py -Feb 21 20:46:00 server1.1 [2014-02-21T20:46:00-08:00] INFO: cookbook_file[/usr/local/bin/add_floaters.py] updated file contents /usr/local/bin/add_floaters.py -Feb 21 20:46:00 server1.1 [2014-02-21T20:46:00-08:00] INFO: cookbook_file[/usr/local/bin/add_floaters.py] mode changed to 755 -Feb 21 20:46:00 server1.1 [2014-02-21T20:46:00-08:00] INFO: Processing package[openstack-nova-network] action purge (openstack-network::common line 38) -Feb 21 20:46:00 server1.1 [2014-02-21T20:46:00-08:00] INFO: Processing package[openstack-quantum] action install (openstack-network::common line 44) -Feb 21 20:46:00 server1.1 [2014-02-21T20:46:00-08:00] INFO: package[openstack-quantum] installing openstack-quantum-2013.1.4-4.el6 from openstack repository -Feb 21 20:46:15 server1.1 [2014-02-21T20:46:14-08:00] INFO: Processing directory[/etc/quantum/plugins] action create (openstack-network::common line 49) -Feb 21 20:46:15 server1.1 [2014-02-21T20:46:14-08:00] INFO: directory[/etc/quantum/plugins] owner changed to 164 -Feb 21 20:46:15 server1.1 [2014-02-21T20:46:14-08:00] INFO: directory[/etc/quantum/plugins] group changed to 164 -Feb 21 20:46:15 server1.1 [2014-02-21T20:46:14-08:00] INFO: directory[/etc/quantum/plugins] mode changed to 700 -Feb 21 20:46:15 server1.1 [2014-02-21T20:46:14-08:00] INFO: Processing directory[/var/cache/quantum] action create (openstack-network::common line 57) -Feb 21 20:46:15 server1.1 [2014-02-21T20:46:14-08:00] INFO: directory[/var/cache/quantum] created directory /var/cache/quantum -Feb 21 20:46:15 server1.1 [2014-02-21T20:46:14-08:00] INFO: directory[/var/cache/quantum] owner changed to 164 -Feb 21 20:46:15 server1.1 [2014-02-21T20:46:14-08:00] INFO: directory[/var/cache/quantum] group changed to 164 -Feb 21 20:46:15 server1.1 [2014-02-21T20:46:14-08:00] INFO: directory[/var/cache/quantum] mode changed to 700 -Feb 21 20:46:15 server1.1 [2014-02-21T20:46:14-08:00] INFO: Processing directory[/var/cache/quantum] action create (openstack-network::common line 64) -Feb 21 20:46:15 server1.1 [2014-02-21T20:46:14-08:00] INFO: Processing remote_directory[/etc/quantum/rootwrap.d] action create (openstack-network::common line 74) -Feb 21 20:46:15 server1.1 [2014-02-21T20:46:14-08:00] INFO: remote_directory[/etc/quantum/rootwrap.d] created directory /etc/quantum/rootwrap.d -Feb 21 20:46:15 server1.1 [2014-02-21T20:46:14-08:00] INFO: Processing cookbook_file[/etc/quantum/rootwrap.d/ryu-plugin.filters] action create (dynamically defined) -Feb 21 20:46:15 server1.1 [2014-02-21T20:46:14-08:00] INFO: cookbook_file[/etc/quantum/rootwrap.d/ryu-plugin.filters] created file /etc/quantum/rootwrap.d/ryu-plugin.filters -Feb 21 20:46:15 server1.1 [2014-02-21T20:46:14-08:00] INFO: cookbook_file[/etc/quantum/rootwrap.d/ryu-plugin.filters] updated file contents /etc/quantum/rootwrap.d/ryu-plugin.filters -Feb 21 20:46:15 server1.1 [2014-02-21T20:46:14-08:00] INFO: cookbook_file[/etc/quantum/rootwrap.d/ryu-plugin.filters] owner changed to 164 -Feb 21 20:46:15 server1.1 [2014-02-21T20:46:14-08:00] INFO: cookbook_file[/etc/quantum/rootwrap.d/ryu-plugin.filters] group changed to 164 -Feb 21 20:46:15 server1.1 [2014-02-21T20:46:14-08:00] INFO: cookbook_file[/etc/quantum/rootwrap.d/ryu-plugin.filters] mode changed to 700 -Feb 21 20:46:15 server1.1 [2014-02-21T20:46:14-08:00] INFO: Processing cookbook_file[/etc/quantum/rootwrap.d/openvswitch-plugin.filters] action create (dynamically defined) -Feb 21 20:46:15 server1.1 [2014-02-21T20:46:14-08:00] INFO: cookbook_file[/etc/quantum/rootwrap.d/openvswitch-plugin.filters] created file /etc/quantum/rootwrap.d/openvswitch-plugin.filters -Feb 21 20:46:15 server1.1 [2014-02-21T20:46:14-08:00] INFO: cookbook_file[/etc/quantum/rootwrap.d/openvswitch-plugin.filters] updated file contents /etc/quantum/rootwrap.d/openvswitch-plugin.filters -Feb 21 20:46:15 server1.1 [2014-02-21T20:46:14-08:00] INFO: cookbook_file[/etc/quantum/rootwrap.d/openvswitch-plugin.filters] owner changed to 164 -Feb 21 20:46:15 server1.1 [2014-02-21T20:46:14-08:00] INFO: cookbook_file[/etc/quantum/rootwrap.d/openvswitch-plugin.filters] group changed to 164 -Feb 21 20:46:15 server1.1 [2014-02-21T20:46:14-08:00] INFO: cookbook_file[/etc/quantum/rootwrap.d/openvswitch-plugin.filters] mode changed to 700 -Feb 21 20:46:15 server1.1 [2014-02-21T20:46:14-08:00] INFO: Processing cookbook_file[/etc/quantum/rootwrap.d/nec-plugin.filters] action create (dynamically defined) -Feb 21 20:46:15 server1.1 [2014-02-21T20:46:14-08:00] INFO: cookbook_file[/etc/quantum/rootwrap.d/nec-plugin.filters] created file /etc/quantum/rootwrap.d/nec-plugin.filters -Feb 21 20:46:15 server1.1 [2014-02-21T20:46:14-08:00] INFO: cookbook_file[/etc/quantum/rootwrap.d/nec-plugin.filters] updated file contents /etc/quantum/rootwrap.d/nec-plugin.filters -Feb 21 20:46:15 server1.1 [2014-02-21T20:46:14-08:00] INFO: cookbook_file[/etc/quantum/rootwrap.d/nec-plugin.filters] owner changed to 164 -Feb 21 20:46:15 server1.1 [2014-02-21T20:46:14-08:00] INFO: cookbook_file[/etc/quantum/rootwrap.d/nec-plugin.filters] group changed to 164 -Feb 21 20:46:15 server1.1 [2014-02-21T20:46:14-08:00] INFO: cookbook_file[/etc/quantum/rootwrap.d/nec-plugin.filters] mode changed to 700 -Feb 21 20:46:15 server1.1 [2014-02-21T20:46:14-08:00] INFO: Processing cookbook_file[/etc/quantum/rootwrap.d/linuxbridge-plugin.filters] action create (dynamically defined) -Feb 21 20:46:15 server1.1 [2014-02-21T20:46:14-08:00] INFO: cookbook_file[/etc/quantum/rootwrap.d/linuxbridge-plugin.filters] created file /etc/quantum/rootwrap.d/linuxbridge-plugin.filters -Feb 21 20:46:15 server1.1 [2014-02-21T20:46:14-08:00] INFO: cookbook_file[/etc/quantum/rootwrap.d/linuxbridge-plugin.filters] updated file contents /etc/quantum/rootwrap.d/linuxbridge-plugin.filters -Feb 21 20:46:15 server1.1 [2014-02-21T20:46:14-08:00] INFO: cookbook_file[/etc/quantum/rootwrap.d/linuxbridge-plugin.filters] owner changed to 164 -Feb 21 20:46:15 server1.1 [2014-02-21T20:46:14-08:00] INFO: cookbook_file[/etc/quantum/rootwrap.d/linuxbridge-plugin.filters] group changed to 164 -Feb 21 20:46:15 server1.1 [2014-02-21T20:46:14-08:00] INFO: cookbook_file[/etc/quantum/rootwrap.d/linuxbridge-plugin.filters] mode changed to 700 -Feb 21 20:46:15 server1.1 [2014-02-21T20:46:14-08:00] INFO: Processing cookbook_file[/etc/quantum/rootwrap.d/lbaas-haproxy.filters] action create (dynamically defined) -Feb 21 20:46:15 server1.1 [2014-02-21T20:46:14-08:00] INFO: cookbook_file[/etc/quantum/rootwrap.d/lbaas-haproxy.filters] created file /etc/quantum/rootwrap.d/lbaas-haproxy.filters -Feb 21 20:46:15 server1.1 [2014-02-21T20:46:14-08:00] INFO: cookbook_file[/etc/quantum/rootwrap.d/lbaas-haproxy.filters] updated file contents /etc/quantum/rootwrap.d/lbaas-haproxy.filters -Feb 21 20:46:15 server1.1 [2014-02-21T20:46:14-08:00] INFO: cookbook_file[/etc/quantum/rootwrap.d/lbaas-haproxy.filters] owner changed to 164 -Feb 21 20:46:15 server1.1 [2014-02-21T20:46:14-08:00] INFO: cookbook_file[/etc/quantum/rootwrap.d/lbaas-haproxy.filters] group changed to 164 -Feb 21 20:46:15 server1.1 [2014-02-21T20:46:14-08:00] INFO: cookbook_file[/etc/quantum/rootwrap.d/lbaas-haproxy.filters] mode changed to 700 -Feb 21 20:46:15 server1.1 [2014-02-21T20:46:14-08:00] INFO: Processing cookbook_file[/etc/quantum/rootwrap.d/l3.filters] action create (dynamically defined) -Feb 21 20:46:15 server1.1 [2014-02-21T20:46:14-08:00] INFO: cookbook_file[/etc/quantum/rootwrap.d/l3.filters] created file /etc/quantum/rootwrap.d/l3.filters -Feb 21 20:46:15 server1.1 [2014-02-21T20:46:14-08:00] INFO: cookbook_file[/etc/quantum/rootwrap.d/l3.filters] updated file contents /etc/quantum/rootwrap.d/l3.filters -Feb 21 20:46:15 server1.1 [2014-02-21T20:46:14-08:00] INFO: cookbook_file[/etc/quantum/rootwrap.d/l3.filters] owner changed to 164 -Feb 21 20:46:15 server1.1 [2014-02-21T20:46:14-08:00] INFO: cookbook_file[/etc/quantum/rootwrap.d/l3.filters] group changed to 164 -Feb 21 20:46:15 server1.1 [2014-02-21T20:46:14-08:00] INFO: cookbook_file[/etc/quantum/rootwrap.d/l3.filters] mode changed to 700 -Feb 21 20:46:15 server1.1 [2014-02-21T20:46:14-08:00] INFO: Processing cookbook_file[/etc/quantum/rootwrap.d/iptables-firewall.filters] action create (dynamically defined) -Feb 21 20:46:15 server1.1 [2014-02-21T20:46:14-08:00] INFO: cookbook_file[/etc/quantum/rootwrap.d/iptables-firewall.filters] created file /etc/quantum/rootwrap.d/iptables-firewall.filters -Feb 21 20:46:15 server1.1 [2014-02-21T20:46:14-08:00] INFO: cookbook_file[/etc/quantum/rootwrap.d/iptables-firewall.filters] updated file contents /etc/quantum/rootwrap.d/iptables-firewall.filters -Feb 21 20:46:15 server1.1 [2014-02-21T20:46:14-08:00] INFO: cookbook_file[/etc/quantum/rootwrap.d/iptables-firewall.filters] owner changed to 164 -Feb 21 20:46:15 server1.1 [2014-02-21T20:46:14-08:00] INFO: cookbook_file[/etc/quantum/rootwrap.d/iptables-firewall.filters] group changed to 164 -Feb 21 20:46:15 server1.1 [2014-02-21T20:46:14-08:00] INFO: cookbook_file[/etc/quantum/rootwrap.d/iptables-firewall.filters] mode changed to 700 -Feb 21 20:46:15 server1.1 [2014-02-21T20:46:14-08:00] INFO: Processing cookbook_file[/etc/quantum/rootwrap.d/dhcp.filters] action create (dynamically defined) -Feb 21 20:46:15 server1.1 [2014-02-21T20:46:14-08:00] INFO: cookbook_file[/etc/quantum/rootwrap.d/dhcp.filters] created file /etc/quantum/rootwrap.d/dhcp.filters -Feb 21 20:46:15 server1.1 [2014-02-21T20:46:14-08:00] INFO: cookbook_file[/etc/quantum/rootwrap.d/dhcp.filters] updated file contents /etc/quantum/rootwrap.d/dhcp.filters -Feb 21 20:46:15 server1.1 [2014-02-21T20:46:14-08:00] INFO: cookbook_file[/etc/quantum/rootwrap.d/dhcp.filters] owner changed to 164 -Feb 21 20:46:15 server1.1 [2014-02-21T20:46:14-08:00] INFO: cookbook_file[/etc/quantum/rootwrap.d/dhcp.filters] group changed to 164 -Feb 21 20:46:15 server1.1 [2014-02-21T20:46:14-08:00] INFO: cookbook_file[/etc/quantum/rootwrap.d/dhcp.filters] mode changed to 700 -Feb 21 20:46:15 server1.1 [2014-02-21T20:46:14-08:00] INFO: Processing cookbook_file[/etc/quantum/rootwrap.d/debug.filters] action create (dynamically defined) -Feb 21 20:46:15 server1.1 [2014-02-21T20:46:14-08:00] INFO: cookbook_file[/etc/quantum/rootwrap.d/debug.filters] created file /etc/quantum/rootwrap.d/debug.filters -Feb 21 20:46:15 server1.1 [2014-02-21T20:46:14-08:00] INFO: cookbook_file[/etc/quantum/rootwrap.d/debug.filters] updated file contents /etc/quantum/rootwrap.d/debug.filters -Feb 21 20:46:15 server1.1 [2014-02-21T20:46:14-08:00] INFO: cookbook_file[/etc/quantum/rootwrap.d/debug.filters] owner changed to 164 -Feb 21 20:46:15 server1.1 [2014-02-21T20:46:14-08:00] INFO: cookbook_file[/etc/quantum/rootwrap.d/debug.filters] group changed to 164 -Feb 21 20:46:15 server1.1 [2014-02-21T20:46:14-08:00] INFO: cookbook_file[/etc/quantum/rootwrap.d/debug.filters] mode changed to 700 -Feb 21 20:46:15 server1.1 [2014-02-21T20:46:14-08:00] INFO: Processing template[/etc/quantum/rootwrap.conf] action create (openstack-network::common line 81) -Feb 21 20:46:15 server1.1 [2014-02-21T20:46:14-08:00] INFO: template[/etc/quantum/rootwrap.conf] backed up to /var/chef/backup/etc/quantum/rootwrap.conf.chef-20140221204614.967634 -Feb 21 20:46:15 server1.1 [2014-02-21T20:46:14-08:00] INFO: template[/etc/quantum/rootwrap.conf] updated file contents /etc/quantum/rootwrap.conf -Feb 21 20:46:15 server1.1 [2014-02-21T20:46:14-08:00] INFO: template[/etc/quantum/rootwrap.conf] owner changed to 164 -Feb 21 20:46:15 server1.1 [2014-02-21T20:46:14-08:00] INFO: template[/etc/quantum/rootwrap.conf] group changed to 164 -Feb 21 20:46:15 server1.1 [2014-02-21T20:46:14-08:00] INFO: Processing template[/etc/quantum/policy.json] action create (openstack-network::common line 88) -Feb 21 20:46:15 server1.1 [2014-02-21T20:46:14-08:00] INFO: template[/etc/quantum/policy.json] backed up to /var/chef/backup/etc/quantum/policy.json.chef-20140221204614.975067 -Feb 21 20:46:15 server1.1 [2014-02-21T20:46:14-08:00] INFO: template[/etc/quantum/policy.json] updated file contents /etc/quantum/policy.json -Feb 21 20:46:15 server1.1 [2014-02-21T20:46:14-08:00] INFO: template[/etc/quantum/policy.json] owner changed to 164 -Feb 21 20:46:15 server1.1 [2014-02-21T20:46:14-08:00] INFO: template[/etc/quantum/policy.json] mode changed to 644 -Feb 21 20:46:15 server1.1 [2014-02-21T20:46:14-08:00] INFO: Processing execute[delete_auto_qpid] action nothing (openstack-network::common line 103) -Feb 21 20:46:15 server1.1 [2014-02-21T20:46:14-08:00] INFO: Processing service[quantum-server] action nothing (openstack-network::common line 157) -Feb 21 20:46:15 server1.1 [2014-02-21T20:46:14-08:00] INFO: Processing template[/etc/quantum/quantum.conf] action create (openstack-network::common line 165) -Feb 21 20:46:15 server1.1 [2014-02-21T20:46:14-08:00] INFO: template[/etc/quantum/quantum.conf] backed up to /var/chef/backup/etc/quantum/quantum.conf.chef-20140221204614.991537 -Feb 21 20:46:15 server1.1 [2014-02-21T20:46:14-08:00] INFO: template[/etc/quantum/quantum.conf] updated file contents /etc/quantum/quantum.conf -Feb 21 20:46:15 server1.1 [2014-02-21T20:46:14-08:00] INFO: template[/etc/quantum/quantum.conf] owner changed to 164 -Feb 21 20:46:15 server1.1 [2014-02-21T20:46:14-08:00] INFO: template[/etc/quantum/quantum.conf] mode changed to 644 -Feb 21 20:46:15 server1.1 [2014-02-21T20:46:14-08:00] INFO: template[/etc/quantum/quantum.conf] not queuing delayed action restart on service[quantum-server] (delayed), as it's already been queued -Feb 21 20:46:15 server1.1 [2014-02-21T20:46:14-08:00] INFO: Processing template[/etc/quantum/api-paste.ini] action create (openstack-network::common line 186) -Feb 21 20:46:15 server1.1 [2014-02-21T20:46:14-08:00] INFO: template[/etc/quantum/api-paste.ini] backed up to /var/chef/backup/etc/quantum/api-paste.ini.chef-20140221204614.998443 -Feb 21 20:46:15 server1.1 [2014-02-21T20:46:14-08:00] INFO: template[/etc/quantum/api-paste.ini] updated file contents /etc/quantum/api-paste.ini -Feb 21 20:46:15 server1.1 [2014-02-21T20:46:15-08:00] INFO: template[/etc/quantum/api-paste.ini] owner changed to 164 -Feb 21 20:46:15 server1.1 [2014-02-21T20:46:15-08:00] INFO: template[/etc/quantum/api-paste.ini] mode changed to 644 -Feb 21 20:46:15 server1.1 [2014-02-21T20:46:15-08:00] INFO: template[/etc/quantum/api-paste.ini] not queuing delayed action restart on service[quantum-server] (delayed), as it's already been queued -Feb 21 20:46:15 server1.1 [2014-02-21T20:46:15-08:00] INFO: Processing directory[/etc/quantum/plugins/openvswitch] action create (openstack-network::common line 201) -Feb 21 20:46:15 server1.1 [2014-02-21T20:46:15-08:00] INFO: directory[/etc/quantum/plugins/openvswitch] created directory /etc/quantum/plugins/openvswitch -Feb 21 20:46:15 server1.1 [2014-02-21T20:46:15-08:00] INFO: directory[/etc/quantum/plugins/openvswitch] owner changed to 164 -Feb 21 20:46:15 server1.1 [2014-02-21T20:46:15-08:00] INFO: directory[/etc/quantum/plugins/openvswitch] group changed to 164 -Feb 21 20:46:15 server1.1 [2014-02-21T20:46:15-08:00] INFO: directory[/etc/quantum/plugins/openvswitch] mode changed to 700 -Feb 21 20:46:15 server1.1 [2014-02-21T20:46:15-08:00] INFO: Processing service[quantum-plugin-openvswitch-agent] action nothing (openstack-network::common line 341) -Feb 21 20:46:15 server1.1 [2014-02-21T20:46:15-08:00] INFO: Processing template[/etc/quantum/plugins/openvswitch/ovs_quantum_plugin.ini] action create (openstack-network::common line 346) -Feb 21 20:46:15 server1.1 [2014-02-21T20:46:15-08:00] INFO: template[/etc/quantum/plugins/openvswitch/ovs_quantum_plugin.ini] created file /etc/quantum/plugins/openvswitch/ovs_quantum_plugin.ini -Feb 21 20:46:15 server1.1 [2014-02-21T20:46:15-08:00] INFO: template[/etc/quantum/plugins/openvswitch/ovs_quantum_plugin.ini] updated file contents /etc/quantum/plugins/openvswitch/ovs_quantum_plugin.ini -Feb 21 20:46:15 server1.1 [2014-02-21T20:46:15-08:00] INFO: template[/etc/quantum/plugins/openvswitch/ovs_quantum_plugin.ini] owner changed to 164 -Feb 21 20:46:15 server1.1 [2014-02-21T20:46:15-08:00] INFO: template[/etc/quantum/plugins/openvswitch/ovs_quantum_plugin.ini] group changed to 164 -Feb 21 20:46:15 server1.1 [2014-02-21T20:46:15-08:00] INFO: template[/etc/quantum/plugins/openvswitch/ovs_quantum_plugin.ini] mode changed to 644 -Feb 21 20:46:15 server1.1 [2014-02-21T20:46:15-08:00] INFO: template[/etc/quantum/plugins/openvswitch/ovs_quantum_plugin.ini] not queuing delayed action restart on service[quantum-server] (delayed), as it's already been queued -Feb 21 20:46:15 server1.1 [2014-02-21T20:46:15-08:00] INFO: Processing template[/etc/default/quantum-server] action create (openstack-network::common line 395) -Feb 21 20:46:15 server1.1 [2014-02-21T20:46:15-08:00] INFO: Processing package[openstack-quantum-openvswitch] action install (openstack-network::server line 42) -Feb 21 20:46:16 server1.1 [2014-02-21T20:46:15-08:00] INFO: package[openstack-quantum-openvswitch] installing openstack-quantum-openvswitch-2013.1.4-4.el6 from openstack repository -Feb 21 20:46:21 server1.1 [2014-02-21T20:46:21-08:00] INFO: Processing directory[/var/cache/quantum/api] action create (openstack-network::server line 49) -Feb 21 20:46:21 server1.1 [2014-02-21T20:46:21-08:00] INFO: directory[/var/cache/quantum/api] created directory /var/cache/quantum/api -Feb 21 20:46:21 server1.1 [2014-02-21T20:46:21-08:00] INFO: directory[/var/cache/quantum/api] owner changed to 164 -Feb 21 20:46:21 server1.1 [2014-02-21T20:46:21-08:00] INFO: directory[/var/cache/quantum/api] group changed to 164 -Feb 21 20:46:21 server1.1 [2014-02-21T20:46:21-08:00] INFO: Processing template[/etc/init.d/quantum-server] action create (openstack-network::server line 55) -Feb 21 20:46:21 server1.1 [2014-02-21T20:46:21-08:00] INFO: template[/etc/init.d/quantum-server] backed up to /var/chef/backup/etc/init.d/quantum-server.chef-20140221204621.125222 -Feb 21 20:46:21 server1.1 [2014-02-21T20:46:21-08:00] INFO: template[/etc/init.d/quantum-server] updated file contents /etc/init.d/quantum-server -Feb 21 20:46:21 server1.1 [2014-02-21T20:46:21-08:00] INFO: Processing service[quantum-server] action enable (openstack-network::server line 63) -Feb 21 20:46:21 server1.1 [2014-02-21T20:46:21-08:00] INFO: service[quantum-server] enabled -Feb 21 20:46:21 server1.1 [2014-02-21T20:46:21-08:00] INFO: Processing service[quantum-server] action restart (openstack-network::server line 63) -Feb 21 20:46:21 server1.1 [2014-02-21T20:46:21-08:00] INFO: service[quantum-server] restarted -Feb 21 20:46:21 server1.1 [2014-02-21T20:46:21-08:00] INFO: Processing cookbook_file[quantum-ha-tool] action create (openstack-network::server line 69) -Feb 21 20:46:21 server1.1 [2014-02-21T20:46:21-08:00] INFO: cookbook_file[quantum-ha-tool] created file /usr/local/bin/quantum-ha-tool.py -Feb 21 20:46:21 server1.1 [2014-02-21T20:46:21-08:00] INFO: cookbook_file[quantum-ha-tool] updated file contents /usr/local/bin/quantum-ha-tool.py -Feb 21 20:46:21 server1.1 [2014-02-21T20:46:21-08:00] INFO: cookbook_file[quantum-ha-tool] owner changed to 0 -Feb 21 20:46:21 server1.1 [2014-02-21T20:46:21-08:00] INFO: cookbook_file[quantum-ha-tool] group changed to 0 -Feb 21 20:46:21 server1.1 [2014-02-21T20:46:21-08:00] INFO: cookbook_file[quantum-ha-tool] mode changed to 755 -Feb 21 20:46:21 server1.1 [2014-02-21T20:46:21-08:00] INFO: Processing template[/etc/sysconfig/quantum] action create (openstack-network::server line 98) -Feb 21 20:46:21 server1.1 [2014-02-21T20:46:21-08:00] INFO: template[/etc/httpd/mods-available/deflate.conf] sending restart action to service[apache2] (delayed) -Feb 21 20:46:21 server1.1 [2014-02-21T20:46:21-08:00] INFO: Processing service[apache2] action restart (apache2::default line 221) -Feb 21 20:46:23 server1.1 [2014-02-21T20:46:22-08:00] INFO: service[apache2] restarted -Feb 21 20:46:23 server1.1 [2014-02-21T20:46:22-08:00] INFO: [template[/etc/cinder/cinder.conf]] sending restart action to service[cinder-api] (delayed) -Feb 21 20:46:23 server1.1 [2014-02-21T20:46:22-08:00] INFO: Processing service[cinder-api] action restart (openstack-block-storage::api line 58) -Feb 21 20:46:24 server1.1 [2014-02-21T20:46:24-08:00] INFO: service[cinder-api] restarted -Feb 21 20:46:24 server1.1 [2014-02-21T20:46:24-08:00] INFO: [template[/etc/cinder/cinder.conf]] sending restart action to service[cinder-scheduler] (delayed) -Feb 21 20:46:24 server1.1 [2014-02-21T20:46:24-08:00] INFO: Processing service[cinder-scheduler] action restart (openstack-block-storage::scheduler line 50) -Feb 21 20:46:24 server1.1 [2014-02-21T20:46:24-08:00] INFO: service[cinder-scheduler] restarted -Feb 21 20:46:24 server1.1 [2014-02-21T20:46:24-08:00] INFO: template[/etc/nova/nova.conf] sending restart action to service[nova-api-ec2] (delayed) -Feb 21 20:46:24 server1.1 [2014-02-21T20:46:24-08:00] INFO: Processing service[nova-api-ec2] action restart (openstack-compute::api-ec2 line 48) -Feb 21 20:46:26 server1.1 [2014-02-21T20:46:25-08:00] INFO: service[nova-api-ec2] restarted -Feb 21 20:46:26 server1.1 [2014-02-21T20:46:25-08:00] INFO: template[/etc/nova/nova.conf] sending restart action to service[nova-api-os-compute] (delayed) -Feb 21 20:46:26 server1.1 [2014-02-21T20:46:25-08:00] INFO: Processing service[nova-api-os-compute] action restart (openstack-compute::api-os-compute line 52) -Feb 21 20:46:26 server1.1 [2014-02-21T20:46:25-08:00] INFO: service[nova-api-os-compute] restarted -Feb 21 20:46:26 server1.1 [2014-02-21T20:46:25-08:00] INFO: template[/etc/nova/nova.conf] sending restart action to service[nova-cert] (delayed) -Feb 21 20:46:26 server1.1 [2014-02-21T20:46:25-08:00] INFO: Processing service[nova-cert] action restart (openstack-compute::nova-cert line 32) -Feb 21 20:46:26 server1.1 [2014-02-21T20:46:26-08:00] INFO: service[nova-cert] restarted -Feb 21 20:46:26 server1.1 [2014-02-21T20:46:26-08:00] INFO: template[/etc/nova/nova.conf] sending restart action to service[nova-scheduler] (delayed) -Feb 21 20:46:26 server1.1 [2014-02-21T20:46:26-08:00] INFO: Processing service[nova-scheduler] action restart (openstack-compute::scheduler line 41) -Feb 21 20:46:26 server1.1 [2014-02-21T20:46:26-08:00] INFO: service[nova-scheduler] restarted -Feb 21 20:46:26 server1.1 [2014-02-21T20:46:26-08:00] INFO: template[/etc/nova/nova.conf] sending restart action to service[openstack-nova-novncproxy] (delayed) -Feb 21 20:46:26 server1.1 [2014-02-21T20:46:26-08:00] INFO: Processing service[openstack-nova-novncproxy] action restart (openstack-compute::vncproxy line 49) -Feb 21 20:46:27 server1.1 [2014-02-21T20:46:26-08:00] INFO: service[openstack-nova-novncproxy] restarted -Feb 21 20:46:27 server1.1 [2014-02-21T20:46:26-08:00] INFO: template[/etc/nova/nova.conf] sending restart action to service[nova-console] (delayed) -Feb 21 20:46:27 server1.1 [2014-02-21T20:46:26-08:00] INFO: Processing service[nova-console] action restart (openstack-compute::vncproxy line 57) -Feb 21 20:46:27 server1.1 [2014-02-21T20:46:27-08:00] INFO: service[nova-console] restarted -Feb 21 20:46:27 server1.1 [2014-02-21T20:46:27-08:00] INFO: template[/etc/nova/nova.conf] sending restart action to service[nova-consoleauth] (delayed) -Feb 21 20:46:27 server1.1 [2014-02-21T20:46:27-08:00] INFO: Processing service[nova-consoleauth] action restart (openstack-compute::vncproxy line 64) -Feb 21 20:46:28 server1.1 [2014-02-21T20:46:27-08:00] INFO: service[nova-consoleauth] restarted -Feb 21 20:46:28 server1.1 [2014-02-21T20:46:27-08:00] INFO: template[/etc/nova/nova.conf] sending restart action to service[nova-conductor] (delayed) -Feb 21 20:46:28 server1.1 [2014-02-21T20:46:27-08:00] INFO: Processing service[nova-conductor] action restart (openstack-compute::conductor line 32) -Feb 21 20:46:28 server1.1 [2014-02-21T20:46:28-08:00] INFO: service[nova-conductor] restarted -Feb 21 20:46:28 server1.1 [2014-02-21T20:46:28-08:00] INFO: template[/etc/quantum/policy.json] sending restart action to service[quantum-server] (delayed) -Feb 21 20:46:28 server1.1 [2014-02-21T20:46:28-08:00] INFO: Processing service[quantum-server] action restart (openstack-network::server line 63) -Feb 21 20:46:29 server1.1 [2014-02-21T20:46:29-08:00] INFO: service[quantum-server] restarted -Feb 21 20:46:29 server1.1 [2014-02-21T20:46:29-08:00] INFO: Chef Run complete in 1449.433415826 seconds -Feb 21 20:46:30 server1.1 [2014-02-21T20:46:30-08:00] INFO: Running report handlers -Feb 21 20:46:30 server1.1 [2014-02-21T20:46:30-08:00] INFO: Report handlers complete diff --git a/compass/tests/actions/update_progress/data/test1/anamon/checkpoint_5/server1.1/install.log.template b/compass/tests/actions/update_progress/data/test1/anamon/checkpoint_5/server1.1/install.log.template deleted file mode 100644 index 861b3a53..00000000 --- a/compass/tests/actions/update_progress/data/test1/anamon/checkpoint_5/server1.1/install.log.template +++ /dev/null @@ -1,212 +0,0 @@ -Installing libgcc-4.4.7-4.el6.x86_64 -warning: libgcc-4.4.7-4.el6.x86_64: Header V3 RSA/SHA1 Signature, key ID c105b9de: NOKEY -Installing setup-2.8.14-20.el6_4.1.noarch -Installing filesystem-2.4.30-3.el6.x86_64 -Installing basesystem-10.0-4.el6.noarch -Installing ncurses-base-5.7-3.20090208.el6.x86_64 -Installing kernel-firmware-2.6.32-431.el6.noarch -Installing tzdata-2013g-1.el6.noarch -Installing nss-softokn-freebl-3.14.3-9.el6.x86_64 -Installing glibc-common-2.12-1.132.el6.x86_64 -Installing glibc-2.12-1.132.el6.x86_64 -Installing ncurses-libs-5.7-3.20090208.el6.x86_64 -Installing bash-4.1.2-15.el6_4.x86_64 -Installing libattr-2.4.44-7.el6.x86_64 -Installing libcap-2.16-5.5.el6.x86_64 -Installing zlib-1.2.3-29.el6.x86_64 -Installing info-4.13a-8.el6.x86_64 -Installing popt-1.13-7.el6.x86_64 -Installing chkconfig-1.3.49.3-2.el6_4.1.x86_64 -Installing audit-libs-2.2-2.el6.x86_64 -Installing libcom_err-1.41.12-18.el6.x86_64 -Installing libacl-2.2.49-6.el6.x86_64 -Installing db4-4.7.25-18.el6_4.x86_64 -Installing nspr-4.10.0-1.el6.x86_64 -Installing nss-util-3.15.1-3.el6.x86_64 -Installing readline-6.0-4.el6.x86_64 -Installing libsepol-2.0.41-4.el6.x86_64 -Installing libselinux-2.0.94-5.3.el6_4.1.x86_64 -Installing shadow-utils-4.1.4.2-13.el6.x86_64 -Installing sed-4.2.1-10.el6.x86_64 -Installing bzip2-libs-1.0.5-7.el6_0.x86_64 -Installing libuuid-2.17.2-12.14.el6.x86_64 -Installing libstdc++-4.4.7-4.el6.x86_64 -Installing libblkid-2.17.2-12.14.el6.x86_64 -Installing gawk-3.1.7-10.el6.x86_64 -Installing file-libs-5.04-15.el6.x86_64 -Installing libgpg-error-1.7-4.el6.x86_64 -Installing dbus-libs-1.2.24-7.el6_3.x86_64 -Installing libudev-147-2.51.el6.x86_64 -Installing pcre-7.8-6.el6.x86_64 -Installing grep-2.6.3-4.el6.x86_64 -Installing lua-5.1.4-4.1.el6.x86_64 -Installing sqlite-3.6.20-1.el6.x86_64 -Installing cyrus-sasl-lib-2.1.23-13.el6_3.1.x86_64 -Installing libidn-1.18-2.el6.x86_64 -Installing expat-2.0.1-11.el6_2.x86_64 -Installing xz-libs-4.999.9-0.3.beta.20091007git.el6.x86_64 -Installing elfutils-libelf-0.152-1.el6.x86_64 -Installing libgcrypt-1.4.5-11.el6_4.x86_64 -Installing bzip2-1.0.5-7.el6_0.x86_64 -Installing findutils-4.4.2-6.el6.x86_64 -Installing libselinux-utils-2.0.94-5.3.el6_4.1.x86_64 -Installing checkpolicy-2.0.22-1.el6.x86_64 -Installing cpio-2.10-11.el6_3.x86_64 -Installing which-2.19-6.el6.x86_64 -Installing libxml2-2.7.6-14.el6.x86_64 -Installing libedit-2.11-4.20080712cvs.1.el6.x86_64 -Installing pth-2.0.7-9.3.el6.x86_64 -Installing tcp_wrappers-libs-7.6-57.el6.x86_64 -Installing sysvinit-tools-2.87-5.dsf.el6.x86_64 -Installing libtasn1-2.3-3.el6_2.1.x86_64 -Installing p11-kit-0.18.5-2.el6.x86_64 -Installing p11-kit-trust-0.18.5-2.el6.x86_64 -Installing ca-certificates-2013.1.94-65.0.el6.noarch -Installing device-mapper-persistent-data-0.2.8-2.el6.x86_64 -Installing nss-softokn-3.14.3-9.el6.x86_64 -Installing libnih-1.0.1-7.el6.x86_64 -Installing upstart-0.6.5-12.el6_4.1.x86_64 -Installing file-5.04-15.el6.x86_64 -Installing gmp-4.3.1-7.el6_2.2.x86_64 -Installing libusb-0.1.12-23.el6.x86_64 -Installing MAKEDEV-3.24-6.el6.x86_64 -Installing libutempter-1.1.5-4.1.el6.x86_64 -Installing psmisc-22.6-15.el6_0.1.x86_64 -Installing net-tools-1.60-110.el6_2.x86_64 -Installing vim-minimal-7.2.411-1.8.el6.x86_64 -Installing tar-1.23-11.el6.x86_64 -Installing procps-3.2.8-25.el6.x86_64 -Installing db4-utils-4.7.25-18.el6_4.x86_64 -Installing e2fsprogs-libs-1.41.12-18.el6.x86_64 -Installing libss-1.41.12-18.el6.x86_64 -Installing pinentry-0.7.6-6.el6.x86_64 -Installing binutils-2.20.51.0.2-5.36.el6.x86_64 -Installing m4-1.4.13-5.el6.x86_64 -Installing diffutils-2.8.1-28.el6.x86_64 -Installing make-3.81-20.el6.x86_64 -Installing dash-0.5.5.1-4.el6.x86_64 -Installing ncurses-5.7-3.20090208.el6.x86_64 -Installing groff-1.18.1.4-21.el6.x86_64 -Installing less-436-10.el6.x86_64 -Installing coreutils-libs-8.4-31.el6.x86_64 -Installing gzip-1.3.12-19.el6_4.x86_64 -Installing cracklib-2.8.16-4.el6.x86_64 -Installing cracklib-dicts-2.8.16-4.el6.x86_64 -Installing coreutils-8.4-31.el6.x86_64 -Installing pam-1.1.1-17.el6.x86_64 -Installing module-init-tools-3.9-21.el6_4.x86_64 -Installing hwdata-0.233-9.1.el6.noarch -Installing redhat-logos-60.0.14-12.el6.centos.noarch -Installing plymouth-scripts-0.8.3-27.el6.centos.x86_64 -Installing libpciaccess-0.13.1-2.el6.x86_64 -Installing nss-3.15.1-15.el6.x86_64 -Installing nss-sysinit-3.15.1-15.el6.x86_64 -Installing nss-tools-3.15.1-15.el6.x86_64 -Installing openldap-2.4.23-32.el6_4.1.x86_64 -Installing logrotate-3.7.8-17.el6.x86_64 -Installing gdbm-1.8.0-36.el6.x86_64 -Installing mingetty-1.08-5.el6.x86_64 -Installing keyutils-libs-1.4-4.el6.x86_64 -Installing krb5-libs-1.10.3-10.el6_4.6.x86_64 -Installing openssl-1.0.1e-15.el6.x86_64 -Installing libssh2-1.4.2-1.el6.x86_64 -Installing libcurl-7.19.7-37.el6_4.x86_64 -Installing gnupg2-2.0.14-6.el6_4.x86_64 -Installing gpgme-1.1.8-3.el6.x86_64 -Installing curl-7.19.7-37.el6_4.x86_64 -Installing rpm-libs-4.8.0-37.el6.x86_64 -Installing rpm-4.8.0-37.el6.x86_64 -Installing fipscheck-lib-1.2.0-7.el6.x86_64 -Installing fipscheck-1.2.0-7.el6.x86_64 -Installing mysql-libs-5.1.71-1.el6.x86_64 -Installing ethtool-3.5-1.el6.x86_64 -Installing pciutils-libs-3.1.10-2.el6.x86_64 -Installing plymouth-core-libs-0.8.3-27.el6.centos.x86_64 -Installing libcap-ng-0.6.4-3.el6_0.1.x86_64 -Installing libffi-3.0.5-3.2.el6.x86_64 -Installing python-2.6.6-51.el6.x86_64 -Installing python-libs-2.6.6-51.el6.x86_64 -Installing python-pycurl-7.19.0-8.el6.x86_64 -Installing python-urlgrabber-3.9.1-9.el6.noarch -Installing pygpgme-0.1-18.20090824bzr68.el6.x86_64 -Installing rpm-python-4.8.0-37.el6.x86_64 -Installing python-iniparse-0.3.1-2.1.el6.noarch -Installing slang-2.2.1-1.el6.x86_64 -Installing newt-0.52.11-3.el6.x86_64 -Installing newt-python-0.52.11-3.el6.x86_64 -Installing ustr-1.0.4-9.1.el6.x86_64 -Installing libsemanage-2.0.43-4.2.el6.x86_64 -Installing libaio-0.3.107-10.el6.x86_64 -Installing pkgconfig-0.23-9.1.el6.x86_64 -Installing gamin-0.1.10-9.el6.x86_64 -Installing glib2-2.26.1-3.el6.x86_64 -Installing shared-mime-info-0.70-4.el6.x86_64 -Installing libuser-0.56.13-5.el6.x86_64 -Installing grubby-7.0.15-5.el6.x86_64 -Installing yum-metadata-parser-1.1.2-16.el6.x86_64 -Installing yum-plugin-fastestmirror-1.1.30-14.el6.noarch -Installing yum-3.2.29-40.el6.centos.noarch -Installing dbus-glib-0.86-6.el6.x86_64 -Installing dhcp-common-4.1.1-38.P1.el6.centos.x86_64 -Installing centos-release-6-5.el6.centos.11.1.x86_64 -Installing policycoreutils-2.0.83-19.39.el6.x86_64 -Installing iptables-1.4.7-11.el6.x86_64 -Installing iproute-2.6.32-31.el6.x86_64 -Installing iputils-20071127-17.el6_4.2.x86_64 -Installing util-linux-ng-2.17.2-12.14.el6.x86_64 -Installing initscripts-9.03.40-2.el6.centos.x86_64 -Installing udev-147-2.51.el6.x86_64 -Installing device-mapper-libs-1.02.79-8.el6.x86_64 -Installing device-mapper-1.02.79-8.el6.x86_64 -Installing device-mapper-event-libs-1.02.79-8.el6.x86_64 -Installing openssh-5.3p1-94.el6.x86_64 -Installing device-mapper-event-1.02.79-8.el6.x86_64 -Installing lvm2-libs-2.02.100-8.el6.x86_64 -Installing cryptsetup-luks-libs-1.2.0-7.el6.x86_64 -Installing device-mapper-multipath-libs-0.4.9-72.el6.x86_64 -Installing kpartx-0.4.9-72.el6.x86_64 -Installing libdrm-2.4.45-2.el6.x86_64 -Installing plymouth-0.8.3-27.el6.centos.x86_64 -Installing rsyslog-5.8.10-8.el6.x86_64 -Installing cyrus-sasl-2.1.23-13.el6_3.1.x86_64 -Installing postfix-2.6.6-2.2.el6_1.x86_64 -Installing cronie-anacron-1.4.4-12.el6.x86_64 -Installing cronie-1.4.4-12.el6.x86_64 -Installing crontabs-1.10-33.el6.noarch -Installing ntpdate-4.2.6p5-1.el6.centos.x86_64 -Installing iptables-ipv6-1.4.7-11.el6.x86_64 -Installing selinux-policy-3.7.19-231.el6.noarch -Installing kbd-misc-1.15-11.el6.noarch -Installing kbd-1.15-11.el6.x86_64 -Installing dracut-004-335.el6.noarch -Installing dracut-kernel-004-335.el6.noarch -Installing kernel-2.6.32-431.el6.x86_64 -Installing fuse-2.8.3-4.el6.x86_64 -Installing selinux-policy-targeted-3.7.19-231.el6.noarch -Installing system-config-firewall-base-1.2.27-5.el6.noarch -Installing ntp-4.2.6p5-1.el6.centos.x86_64 -Installing device-mapper-multipath-0.4.9-72.el6.x86_64 -Installing cryptsetup-luks-1.2.0-7.el6.x86_64 -Installing lvm2-2.02.100-8.el6.x86_64 -Installing openssh-clients-5.3p1-94.el6.x86_64 -Installing openssh-server-5.3p1-94.el6.x86_64 -Installing mdadm-3.2.6-7.el6.x86_64 -Installing b43-openfwwf-5.2-4.el6.noarch -Installing dhclient-4.1.1-38.P1.el6.centos.x86_64 -Installing iscsi-initiator-utils-6.2.0.873-10.el6.x86_64 -Installing passwd-0.77-4.el6_2.2.x86_64 -Installing authconfig-6.1.12-13.el6.x86_64 -Installing grub-0.97-83.el6.x86_64 -Installing efibootmgr-0.5.4-11.el6.x86_64 -Installing wget-1.12-1.8.el6.x86_64 -Installing sudo-1.8.6p3-12.el6.x86_64 -Installing audit-2.2-2.el6.x86_64 -Installing e2fsprogs-1.41.12-18.el6.x86_64 -Installing xfsprogs-3.1.1-14.el6.x86_64 -Installing acl-2.2.49-6.el6.x86_64 -Installing attr-2.4.44-7.el6.x86_64 -Installing chef-11.8.0-1.el6.x86_64 -warning: chef-11.8.0-1.el6.x86_64: Header V4 DSA/SHA1 Signature, key ID 83ef826a: NOKEY -Installing bridge-utils-1.2-10.el6.x86_64 -Installing rootfiles-8.1-6.1.el6.noarch -*** FINISHED INSTALLING PACKAGES *** \ No newline at end of file diff --git a/compass/tests/actions/update_progress/data/test1/anamon/checkpoint_5/server1.1/sys.log.template b/compass/tests/actions/update_progress/data/test1/anamon/checkpoint_5/server1.1/sys.log.template deleted file mode 100644 index 7390276a..00000000 --- a/compass/tests/actions/update_progress/data/test1/anamon/checkpoint_5/server1.1/sys.log.template +++ /dev/null @@ -1,1726 +0,0 @@ -05:51:18,517 INFO kernel:imklog 5.8.10, log source = /proc/kmsg started. -05:51:18,517 INFO rsyslogd: [origin software="rsyslogd" swVersion="5.8.10" x-pid="68" x-info="http://www.rsyslog.com"] start -05:51:18,517 INFO kernel:Initializing cgroup subsys cpuset -05:51:18,517 INFO kernel:Initializing cgroup subsys cpu -05:51:18,517 NOTICE kernel:Linux version 2.6.32-431.el6.x86_64 (mockbuild@c6b8.bsys.dev.centos.org) (gcc version 4.4.7 20120313 (Red Hat 4.4.7-4) (GCC) ) #1 SMP Fri Nov 22 03:15:09 UTC 2013 -05:51:18,517 INFO kernel:Command line: initrd=/images/CentOS-6.5-x86_64/initrd.img ksdevice=bootif lang= kssendmac text ks=http://10.145.88.211/cblr/svc/op/ks/system/server1.1 BOOT_IMAGE=/images/CentOS-6.5-x86_64/vmlinuz BOOTIF=01-00-0c-29-21-89-af -05:51:18,517 INFO kernel:KERNEL supported cpus: -05:51:18,517 INFO kernel: Intel GenuineIntel -05:51:18,517 INFO kernel: AMD AuthenticAMD -05:51:18,517 INFO kernel: Centaur CentaurHauls -05:51:18,517 INFO kernel:Disabled fast string operations -05:51:18,517 INFO kernel:BIOS-provided physical RAM map: -05:51:18,517 INFO kernel: BIOS-e820: 0000000000000000 - 000000000009f400 (usable) -05:51:18,517 INFO kernel: BIOS-e820: 000000000009f400 - 00000000000a0000 (reserved) -05:51:18,517 INFO kernel: BIOS-e820: 00000000000ca000 - 00000000000cc000 (reserved) -05:51:18,517 INFO kernel: BIOS-e820: 00000000000dc000 - 0000000000100000 (reserved) -05:51:18,517 INFO kernel: BIOS-e820: 0000000000100000 - 000000007fef0000 (usable) -05:51:18,517 INFO kernel: BIOS-e820: 000000007fef0000 - 000000007feff000 (ACPI data) -05:51:18,517 INFO kernel: BIOS-e820: 000000007feff000 - 000000007ff00000 (ACPI NVS) -05:51:18,517 INFO kernel: BIOS-e820: 000000007ff00000 - 0000000080000000 (usable) -05:51:18,517 INFO kernel: BIOS-e820: 00000000e0000000 - 00000000f0000000 (reserved) -05:51:18,517 INFO kernel: BIOS-e820: 00000000fec00000 - 00000000fec10000 (reserved) -05:51:18,517 INFO kernel: BIOS-e820: 00000000fee00000 - 00000000fee01000 (reserved) -05:51:18,517 INFO kernel: BIOS-e820: 00000000fffe0000 - 0000000100000000 (reserved) -05:51:18,517 INFO kernel:DMI present. -05:51:18,517 WARNING kernel:SMBIOS version 2.4 @ 0xF68F0 -05:51:18,517 DEBUG kernel:DMI: VMware, Inc. VMware Virtual Platform/440BX Desktop Reference Platform, BIOS 6.00 01/07/2011 -05:51:18,517 NOTICE kernel:Phoenix BIOS detected: BIOS may corrupt low RAM, working around it. -05:51:18,517 DEBUG kernel:e820 update range: 0000000000000000 - 0000000000010000 (usable) ==> (reserved) -05:51:18,517 INFO kernel:Hypervisor detected: VMware -05:51:18,517 DEBUG kernel:e820 update range: 0000000000000000 - 0000000000001000 (usable) ==> (reserved) -05:51:18,517 DEBUG kernel:e820 remove range: 00000000000a0000 - 0000000000100000 (usable) -05:51:18,517 INFO kernel:last_pfn = 0x80000 max_arch_pfn = 0x400000000 -05:51:18,517 DEBUG kernel:MTRR default type: uncachable -05:51:18,517 DEBUG kernel:MTRR fixed ranges enabled: -05:51:18,517 DEBUG kernel: 00000-9FFFF write-back -05:51:18,517 DEBUG kernel: A0000-BFFFF uncachable -05:51:18,517 DEBUG kernel: C0000-CFFFF write-protect -05:51:18,517 DEBUG kernel: D0000-EFFFF uncachable -05:51:18,517 DEBUG kernel: F0000-FFFFF write-protect -05:51:18,517 DEBUG kernel:MTRR variable ranges enabled: -05:51:18,517 DEBUG kernel: 0 base 0000000000 mask FF80000000 write-back -05:51:18,517 DEBUG kernel: 1 disabled -05:51:18,517 DEBUG kernel: 2 disabled -05:51:18,517 DEBUG kernel: 3 disabled -05:51:18,517 DEBUG kernel: 4 disabled -05:51:18,517 DEBUG kernel: 5 disabled -05:51:18,517 DEBUG kernel: 6 disabled -05:51:18,517 DEBUG kernel: 7 disabled -05:51:18,517 INFO kernel:x86 PAT enabled: cpu 0, old 0x0, new 0x7010600070106 -05:51:18,517 DEBUG kernel:initial memory mapped : 0 - 20000000 -05:51:18,517 INFO kernel:init_memory_mapping: 0000000000000000-0000000080000000 -05:51:18,517 DEBUG kernel: 0000000000 - 0080000000 page 2M -05:51:18,517 DEBUG kernel:kernel direct mapping tables up to 80000000 @ 10000-13000 -05:51:18,517 INFO kernel:RAMDISK: 7def9000 - 7fecf4ff -05:51:18,517 WARNING kernel:ACPI: RSDP 00000000000f6940 00024 (v02 PTLTD ) -05:51:18,517 WARNING kernel:ACPI: XSDT 000000007fef0333 00054 (v01 INTEL 440BX 06040000 VMW 01324272) -05:51:18,517 WARNING kernel:ACPI: FACP 000000007fefee98 000F4 (v04 INTEL 440BX 06040000 PTL 000F4240) -05:51:18,517 WARNING kernel:ACPI: DSDT 000000007fef055d 0E93B (v01 PTLTD Custom 06040000 MSFT 03000001) -05:51:18,517 WARNING kernel:ACPI: FACS 000000007fefffc0 00040 -05:51:18,517 WARNING kernel:ACPI: BOOT 000000007fef0535 00028 (v01 PTLTD $SBFTBL$ 06040000 LTP 00000001) -05:51:18,517 WARNING kernel:ACPI: APIC 000000007fef04d7 0005E (v01 PTLTD ? APIC 06040000 LTP 00000000) -05:51:18,517 WARNING kernel:ACPI: MCFG 000000007fef049b 0003C (v01 PTLTD $PCITBL$ 06040000 LTP 00000001) -05:51:18,517 WARNING kernel:ACPI: SRAT 000000007fef03fb 000A0 (v02 VMWARE MEMPLUG 06040000 VMW 00000001) -05:51:18,517 WARNING kernel:ACPI: HPET 000000007fef03c3 00038 (v01 VMWARE VMW HPET 06040000 WMV 00000001) -05:51:18,517 DEBUG kernel:ACPI: Local APIC address 0xfee00000 -05:51:18,517 INFO kernel:Setting APIC routing to flat. -05:51:18,517 INFO kernel:SRAT: PXM 0 -> APIC 0 -> Node 0 -05:51:18,517 INFO kernel:SRAT: PXM 0 -> APIC 1 -> Node 0 -05:51:18,517 INFO kernel:SRAT: Node 0 PXM 0 0-a0000 -05:51:18,517 INFO kernel:SRAT: Node 0 PXM 0 100000-80000000 -05:51:18,517 DEBUG kernel:NUMA: Allocated memnodemap from 11000 - 12040 -05:51:18,517 DEBUG kernel:NUMA: Using 20 for the hash shift. -05:51:18,517 INFO kernel:Bootmem setup node 0 0000000000000000-0000000080000000 -05:51:18,517 INFO kernel: NODE_DATA [0000000000012040 - 000000000004603f] -05:51:18,517 INFO kernel: bootmap [0000000000047000 - 0000000000056fff] pages 10 -05:51:18,517 INFO kernel:(8 early reservations) ==> bootmem [0000000000 - 0080000000] -05:51:18,517 INFO kernel: #0 [0000000000 - 0000001000] BIOS data page ==> [0000000000 - 0000001000] -05:51:18,517 INFO kernel: #1 [0000006000 - 0000008000] TRAMPOLINE ==> [0000006000 - 0000008000] -05:51:18,517 INFO kernel: #2 [0001000000 - 000201faa4] TEXT DATA BSS ==> [0001000000 - 000201faa4] -05:51:18,517 INFO kernel: #3 [007def9000 - 007fecf4ff] RAMDISK ==> [007def9000 - 007fecf4ff] -05:51:18,517 INFO kernel: #4 [000009f400 - 0000100000] BIOS reserved ==> [000009f400 - 0000100000] -05:51:18,517 INFO kernel: #5 [0002020000 - 00020201f0] BRK ==> [0002020000 - 00020201f0] -05:51:18,517 INFO kernel: #6 [0000010000 - 0000011000] PGTABLE ==> [0000010000 - 0000011000] -05:51:18,517 INFO kernel: #7 [0000011000 - 0000012040] MEMNODEMAP ==> [0000011000 - 0000012040] -05:51:18,517 INFO kernel:found SMP MP-table at [ffff8800000f69b0] f69b0 -05:51:18,517 DEBUG kernel: [ffffea0000000000-ffffea0001bfffff] PMD -> [ffff880002600000-ffff8800041fffff] on node 0 -05:51:18,517 WARNING kernel:Zone PFN ranges: -05:51:18,517 WARNING kernel: DMA 0x00000010 -> 0x00001000 -05:51:18,517 WARNING kernel: DMA32 0x00001000 -> 0x00100000 -05:51:18,517 WARNING kernel: Normal 0x00100000 -> 0x00100000 -05:51:18,517 WARNING kernel:Movable zone start PFN for each node -05:51:18,517 WARNING kernel:early_node_map[3] active PFN ranges -05:51:18,517 WARNING kernel: 0: 0x00000010 -> 0x0000009f -05:51:18,517 WARNING kernel: 0: 0x00000100 -> 0x0007fef0 -05:51:18,517 WARNING kernel: 0: 0x0007ff00 -> 0x00080000 -05:51:18,517 DEBUG kernel:On node 0 totalpages: 524159 -05:51:18,517 DEBUG kernel: DMA zone: 56 pages used for memmap -05:51:18,517 DEBUG kernel: DMA zone: 101 pages reserved -05:51:18,517 DEBUG kernel: DMA zone: 3826 pages, LIFO batch:0 -05:51:18,517 DEBUG kernel: DMA32 zone: 7112 pages used for memmap -05:51:18,517 DEBUG kernel: DMA32 zone: 513064 pages, LIFO batch:31 -05:51:18,517 INFO kernel:ACPI: PM-Timer IO Port: 0x1008 -05:51:18,517 DEBUG kernel:ACPI: Local APIC address 0xfee00000 -05:51:18,517 INFO kernel:Setting APIC routing to flat. -05:51:18,517 INFO kernel:ACPI: LAPIC (acpi_id[0x00] lapic_id[0x00] enabled) -05:51:18,517 INFO kernel:ACPI: LAPIC (acpi_id[0x01] lapic_id[0x01] enabled) -05:51:18,517 INFO kernel:ACPI: LAPIC_NMI (acpi_id[0x00] high edge lint[0x1]) -05:51:18,517 INFO kernel:ACPI: LAPIC_NMI (acpi_id[0x01] high edge lint[0x1]) -05:51:18,517 INFO kernel:ACPI: IOAPIC (id[0x02] address[0xfec00000] gsi_base[0]) -05:51:18,518 INFO kernel:IOAPIC[0]: apic_id 2, version 17, address 0xfec00000, GSI 0-23 -05:51:18,518 INFO kernel:ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 high edge) -05:51:18,518 DEBUG kernel:ACPI: IRQ0 used by override. -05:51:18,518 DEBUG kernel:ACPI: IRQ2 used by override. -05:51:18,518 DEBUG kernel:ACPI: IRQ9 used by override. -05:51:18,518 INFO kernel:Using ACPI (MADT) for SMP configuration information -05:51:18,518 INFO kernel:ACPI: HPET id: 0x8086af01 base: 0xfed00000 -05:51:18,518 INFO kernel:SMP: Allowing 2 CPUs, 0 hotplug CPUs -05:51:18,518 DEBUG kernel:nr_irqs_gsi: 24 -05:51:18,518 INFO kernel:PM: Registered nosave memory: 000000000009f000 - 00000000000a0000 -05:51:18,518 INFO kernel:PM: Registered nosave memory: 00000000000a0000 - 00000000000ca000 -05:51:18,518 INFO kernel:PM: Registered nosave memory: 00000000000ca000 - 00000000000cc000 -05:51:18,518 INFO kernel:PM: Registered nosave memory: 00000000000cc000 - 00000000000dc000 -05:51:18,518 INFO kernel:PM: Registered nosave memory: 00000000000dc000 - 0000000000100000 -05:51:18,518 INFO kernel:PM: Registered nosave memory: 000000007fef0000 - 000000007feff000 -05:51:18,518 INFO kernel:PM: Registered nosave memory: 000000007feff000 - 000000007ff00000 -05:51:18,518 INFO kernel:Allocating PCI resources starting at 80000000 (gap: 80000000:60000000) -05:51:18,518 INFO kernel:Booting paravirtualized kernel on bare hardware -05:51:18,518 INFO kernel:NR_CPUS:4096 nr_cpumask_bits:2 nr_cpu_ids:2 nr_node_ids:1 -05:51:18,518 INFO kernel:PERCPU: Embedded 31 pages/cpu @ffff880002200000 s94872 r8192 d23912 u1048576 -05:51:18,518 INFO kernel:pcpu-alloc: s94872 r8192 d23912 u1048576 alloc=1*2097152 -05:51:18,518 INFO kernel:pcpu-alloc: [0] 0 1 -05:51:18,518 WARNING kernel:Built 1 zonelists in Node order, mobility grouping on. Total pages: 516890 -05:51:18,520 WARNING kernel:Policy zone: DMA32 -05:51:18,520 NOTICE kernel:Kernel command line: initrd=/images/CentOS-6.5-x86_64/initrd.img ksdevice=bootif lang= kssendmac text ks=http://10.145.88.211/cblr/svc/op/ks/system/server1.1 BOOT_IMAGE=/images/CentOS-6.5-x86_64/vmlinuz BOOTIF=01-00-0c-29-21-89-af -05:51:18,520 INFO kernel:PID hash table entries: 4096 (order: 3, 32768 bytes) -05:51:18,520 INFO kernel:Checking aperture... -05:51:18,520 INFO kernel:No AGP bridge found -05:51:18,520 INFO kernel:Memory: 2018096k/2097152k available (5325k kernel code, 516k absent, 78540k reserved, 7013k data, 1276k init) -05:51:18,520 INFO kernel:Hierarchical RCU implementation. -05:51:18,520 INFO kernel:NR_IRQS:33024 nr_irqs:424 -05:51:18,520 INFO kernel:Extended CMOS year: 2000 -05:51:18,520 WARNING kernel:Console: colour VGA+ 80x25 -05:51:18,520 INFO kernel:console [tty0] enabled -05:51:18,520 INFO kernel:allocated 8388608 bytes of page_cgroup -05:51:18,520 INFO kernel:please try 'cgroup_disable=memory' option if you don't want memory cgroups -05:51:18,520 DEBUG kernel:hpet clockevent registered -05:51:18,520 INFO kernel:TSC freq read from hypervisor : 2400.085 MHz -05:51:18,520 WARNING kernel:Detected 2400.085 MHz processor. -05:51:18,520 INFO kernel:Calibrating delay loop (skipped) preset value.. 4800.17 BogoMIPS (lpj=2400085) -05:51:18,520 INFO kernel:pid_max: default: 32768 minimum: 301 -05:51:18,520 INFO kernel:Security Framework initialized -05:51:18,520 INFO kernel:SELinux: Initializing. -05:51:18,520 DEBUG kernel:SELinux: Starting in permissive mode -05:51:18,520 INFO kernel:Dentry cache hash table entries: 262144 (order: 9, 2097152 bytes) -05:51:18,520 INFO kernel:Inode-cache hash table entries: 131072 (order: 8, 1048576 bytes) -05:51:18,520 WARNING kernel:Mount-cache hash table entries: 256 -05:51:18,520 INFO kernel:Initializing cgroup subsys ns -05:51:18,520 INFO kernel:Initializing cgroup subsys cpuacct -05:51:18,520 INFO kernel:Initializing cgroup subsys memory -05:51:18,520 INFO kernel:Initializing cgroup subsys devices -05:51:18,520 INFO kernel:Initializing cgroup subsys freezer -05:51:18,520 INFO kernel:Initializing cgroup subsys net_cls -05:51:18,520 INFO kernel:Initializing cgroup subsys blkio -05:51:18,520 INFO kernel:Initializing cgroup subsys perf_event -05:51:18,520 INFO kernel:Initializing cgroup subsys net_prio -05:51:18,520 INFO kernel:Disabled fast string operations -05:51:18,520 INFO kernel:CPU: Physical Processor ID: 0 -05:51:18,520 INFO kernel:mce: CPU supports 0 MCE banks -05:51:18,520 INFO kernel:alternatives: switching to unfair spinlock -05:51:18,520 INFO kernel:ACPI: Core revision 20090903 -05:51:18,520 INFO kernel:ftrace: converting mcount calls to 0f 1f 44 00 00 -05:51:18,520 INFO kernel:ftrace: allocating 21769 entries in 86 pages -05:51:18,520 INFO kernel:APIC routing finalized to flat. -05:51:18,520 INFO kernel:..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1 -05:51:18,520 INFO kernel:CPU0: Intel(R) Xeon(R) CPU E5620 @ 2.40GHz stepping 02 -05:51:18,520 INFO kernel:Performance Events: 16-deep LBR, Westmere events, Intel PMU driver. -05:51:18,520 WARNING kernel:CPUID marked event: 'cpu cycles' unavailable -05:51:18,520 WARNING kernel:CPUID marked event: 'instructions' unavailable -05:51:18,520 WARNING kernel:CPUID marked event: 'bus cycles' unavailable -05:51:18,520 WARNING kernel:CPUID marked event: 'cache references' unavailable -05:51:18,520 WARNING kernel:CPUID marked event: 'cache misses' unavailable -05:51:18,520 WARNING kernel:CPUID marked event: 'branch instructions' unavailable -05:51:18,520 WARNING kernel:CPUID marked event: 'branch misses' unavailable -05:51:18,520 INFO kernel:... version: 3 -05:51:18,520 INFO kernel:... bit width: 48 -05:51:18,520 INFO kernel:... generic registers: 4 -05:51:18,520 INFO kernel:... value mask: 0000ffffffffffff -05:51:18,520 INFO kernel:... max period: 000000007fffffff -05:51:18,520 INFO kernel:... fixed-purpose events: 3 -05:51:18,520 INFO kernel:... event mask: 000000070000000f -05:51:18,520 WARNING kernel:NMI watchdog disabled (cpu0): hardware events not enabled -05:51:18,520 INFO kernel:Booting Node 0, Processors #1 Ok. -05:51:18,520 INFO kernel:Disabled fast string operations -05:51:18,520 INFO kernel:mce: CPU supports 0 MCE banks -05:51:18,520 INFO kernel:Skipped synchronization checks as TSC is reliable. -05:51:18,520 INFO kernel:Brought up 2 CPUs -05:51:18,520 INFO kernel:Total of 2 processors activated (9600.34 BogoMIPS). -05:51:18,520 INFO kernel:x86 PAT enabled: cpu 0, old 0x0, new 0x7010600070106 -05:51:18,520 INFO kernel:x86 PAT enabled: cpu 1, old 0x0, new 0x7010600070106 -05:51:18,520 DEBUG kernel:sizeof(vma)=200 bytes -05:51:18,520 DEBUG kernel:sizeof(page)=56 bytes -05:51:18,520 DEBUG kernel:sizeof(inode)=592 bytes -05:51:18,520 DEBUG kernel:sizeof(dentry)=192 bytes -05:51:18,520 DEBUG kernel:sizeof(ext3inode)=800 bytes -05:51:18,520 DEBUG kernel:sizeof(buffer_head)=104 bytes -05:51:18,520 DEBUG kernel:sizeof(skbuff)=232 bytes -05:51:18,520 DEBUG kernel:sizeof(task_struct)=2648 bytes -05:51:18,520 INFO kernel:devtmpfs: initialized -05:51:18,520 INFO kernel:PM: Registering ACPI NVS region at 7feff000 (4096 bytes) -05:51:18,520 INFO kernel:regulator: core version 0.5 -05:51:18,520 INFO kernel:NET: Registered protocol family 16 -05:51:18,520 INFO kernel:ACPI: bus type pci registered -05:51:18,520 NOTICE kernel:PCI: MCFG configuration 0: base e0000000 segment 0 buses 0 - 255 -05:51:18,520 NOTICE kernel:PCI: MCFG area at e0000000 reserved in E820 -05:51:18,520 INFO kernel:PCI: Using MMCONFIG at e0000000 - efffffff -05:51:18,520 INFO kernel:PCI: Using configuration type 1 for base access -05:51:18,520 WARNING kernel:bio: create slab at 0 -05:51:18,520 DEBUG kernel:ACPI: EC: Look up EC in DSDT -05:51:18,520 NOTICE kernel:ACPI: BIOS _OSI(Linux) query ignored -05:51:18,520 INFO kernel:ACPI: Interpreter enabled -05:51:18,520 INFO kernel:ACPI: (supports S0 S1 S4 S5) -05:51:18,520 INFO kernel:ACPI: Using IOAPIC for interrupt routing -05:51:18,520 INFO kernel:ACPI: No dock devices found. -05:51:18,520 INFO kernel:PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug -05:51:18,520 INFO kernel:ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-ff]) -05:51:18,520 INFO kernel:pci_root PNP0A03:00: host bridge window [mem 0x000a0000-0x000bffff] -05:51:18,520 INFO kernel:pci_root PNP0A03:00: host bridge window [mem 0x000d0000-0x000d3fff] -05:51:18,520 INFO kernel:pci_root PNP0A03:00: host bridge window [mem 0x000d4000-0x000d7fff] -05:51:18,520 INFO kernel:pci_root PNP0A03:00: host bridge window [mem 0x000d8000-0x000dbfff] -05:51:18,520 INFO kernel:pci_root PNP0A03:00: host bridge window [mem 0x80000000-0xfebfffff] -05:51:18,520 INFO kernel:pci_root PNP0A03:00: host bridge window [io 0x0000-0x0cf7] -05:51:18,520 INFO kernel:pci_root PNP0A03:00: host bridge window [io 0x0d00-0xfeff] -05:51:18,520 INFO kernel:PCI host bridge to bus 0000:00 -05:51:18,520 INFO kernel:pci_bus 0000:00: root bus resource [mem 0x000a0000-0x000bffff] -05:51:18,520 INFO kernel:pci_bus 0000:00: root bus resource [mem 0x000d0000-0x000d3fff] -05:51:18,520 INFO kernel:pci_bus 0000:00: root bus resource [mem 0x000d4000-0x000d7fff] -05:51:18,520 INFO kernel:pci_bus 0000:00: root bus resource [mem 0x000d8000-0x000dbfff] -05:51:18,520 INFO kernel:pci_bus 0000:00: root bus resource [mem 0x80000000-0xfebfffff] -05:51:18,520 INFO kernel:pci_bus 0000:00: root bus resource [io 0x0000-0x0cf7] -05:51:18,520 INFO kernel:pci_bus 0000:00: root bus resource [io 0x0d00-0xfeff] -05:51:18,520 DEBUG kernel:pci 0000:00:07.1: reg 20: [io 0x10c0-0x10cf] -05:51:18,520 INFO kernel:pci 0000:00:07.3: quirk: [io 0x1000-0x103f] claimed by PIIX4 ACPI -05:51:18,520 INFO kernel:pci 0000:00:07.3: quirk: [io 0x1040-0x104f] claimed by PIIX4 SMB -05:51:18,520 DEBUG kernel:pci 0000:00:07.7: reg 10: [io 0x1080-0x10bf] -05:51:18,520 DEBUG kernel:pci 0000:00:07.7: reg 14: [mem 0xd0000000-0xd0001fff 64bit] -05:51:18,520 DEBUG kernel:pci 0000:00:0f.0: reg 10: [io 0x10d0-0x10df] -05:51:18,520 DEBUG kernel:pci 0000:00:0f.0: reg 14: [mem 0xd8000000-0xdbffffff pref] -05:51:18,520 DEBUG kernel:pci 0000:00:0f.0: reg 18: [mem 0xd0800000-0xd0ffffff] -05:51:18,520 DEBUG kernel:pci 0000:00:0f.0: reg 30: [mem 0x00000000-0x00007fff pref] -05:51:18,520 DEBUG kernel:pci 0000:00:10.0: reg 10: [io 0x1400-0x14ff] -05:51:18,520 DEBUG kernel:pci 0000:00:10.0: reg 14: [mem 0xd0040000-0xd005ffff 64bit] -05:51:18,520 DEBUG kernel:pci 0000:00:10.0: reg 1c: [mem 0xd0020000-0xd003ffff 64bit] -05:51:18,520 DEBUG kernel:pci 0000:00:10.0: reg 30: [mem 0x00000000-0x00003fff pref] -05:51:18,520 INFO kernel:pci 0000:00:15.0: PME# supported from D0 D3hot D3cold -05:51:18,520 INFO kernel:pci 0000:00:15.0: PME# disabled -05:51:18,520 INFO kernel:pci 0000:00:15.1: PME# supported from D0 D3hot D3cold -05:51:18,520 INFO kernel:pci 0000:00:15.1: PME# disabled -05:51:18,520 INFO kernel:pci 0000:00:15.2: PME# supported from D0 D3hot D3cold -05:51:18,520 INFO kernel:pci 0000:00:15.2: PME# disabled -05:51:18,520 INFO kernel:pci 0000:00:15.3: PME# supported from D0 D3hot D3cold -05:51:18,520 INFO kernel:pci 0000:00:15.3: PME# disabled -05:51:18,520 INFO kernel:pci 0000:00:15.4: PME# supported from D0 D3hot D3cold -05:51:18,520 INFO kernel:pci 0000:00:15.4: PME# disabled -05:51:18,520 INFO kernel:pci 0000:00:15.5: PME# supported from D0 D3hot D3cold -05:51:18,520 INFO kernel:pci 0000:00:15.5: PME# disabled -05:51:18,520 INFO kernel:pci 0000:00:15.6: PME# supported from D0 D3hot D3cold -05:51:18,520 INFO kernel:pci 0000:00:15.6: PME# disabled -05:51:18,520 INFO kernel:pci 0000:00:15.7: PME# supported from D0 D3hot D3cold -05:51:18,520 INFO kernel:pci 0000:00:15.7: PME# disabled -05:51:18,520 INFO kernel:pci 0000:00:16.0: PME# supported from D0 D3hot D3cold -05:51:18,520 INFO kernel:pci 0000:00:16.0: PME# disabled -05:51:18,520 INFO kernel:pci 0000:00:16.1: PME# supported from D0 D3hot D3cold -05:51:18,520 INFO kernel:pci 0000:00:16.1: PME# disabled -05:51:18,520 INFO kernel:pci 0000:00:16.2: PME# supported from D0 D3hot D3cold -05:51:18,520 INFO kernel:pci 0000:00:16.2: PME# disabled -05:51:18,520 INFO kernel:pci 0000:00:16.3: PME# supported from D0 D3hot D3cold -05:51:18,520 INFO kernel:pci 0000:00:16.3: PME# disabled -05:51:18,520 INFO kernel:pci 0000:00:16.4: PME# supported from D0 D3hot D3cold -05:51:18,520 INFO kernel:pci 0000:00:16.4: PME# disabled -05:51:18,520 INFO kernel:pci 0000:00:16.5: PME# supported from D0 D3hot D3cold -05:51:18,520 INFO kernel:pci 0000:00:16.5: PME# disabled -05:51:18,520 INFO kernel:pci 0000:00:16.6: PME# supported from D0 D3hot D3cold -05:51:18,520 INFO kernel:pci 0000:00:16.6: PME# disabled -05:51:18,520 INFO kernel:pci 0000:00:16.7: PME# supported from D0 D3hot D3cold -05:51:18,520 INFO kernel:pci 0000:00:16.7: PME# disabled -05:51:18,520 INFO kernel:pci 0000:00:17.0: PME# supported from D0 D3hot D3cold -05:51:18,520 INFO kernel:pci 0000:00:17.0: PME# disabled -05:51:18,520 INFO kernel:pci 0000:00:17.1: PME# supported from D0 D3hot D3cold -05:51:18,520 INFO kernel:pci 0000:00:17.1: PME# disabled -05:51:18,520 INFO kernel:pci 0000:00:17.2: PME# supported from D0 D3hot D3cold -05:51:18,520 INFO kernel:pci 0000:00:17.2: PME# disabled -05:51:18,520 INFO kernel:pci 0000:00:17.3: PME# supported from D0 D3hot D3cold -05:51:18,520 INFO kernel:pci 0000:00:17.3: PME# disabled -05:51:18,520 INFO kernel:pci 0000:00:17.4: PME# supported from D0 D3hot D3cold -05:51:18,520 INFO kernel:pci 0000:00:17.4: PME# disabled -05:51:18,520 INFO kernel:pci 0000:00:17.5: PME# supported from D0 D3hot D3cold -05:51:18,520 INFO kernel:pci 0000:00:17.5: PME# disabled -05:51:18,520 INFO kernel:pci 0000:00:17.6: PME# supported from D0 D3hot D3cold -05:51:18,520 INFO kernel:pci 0000:00:17.6: PME# disabled -05:51:18,520 INFO kernel:pci 0000:00:17.7: PME# supported from D0 D3hot D3cold -05:51:18,520 INFO kernel:pci 0000:00:17.7: PME# disabled -05:51:18,520 INFO kernel:pci 0000:00:18.0: PME# supported from D0 D3hot D3cold -05:51:18,520 INFO kernel:pci 0000:00:18.0: PME# disabled -05:51:18,520 INFO kernel:pci 0000:00:18.1: PME# supported from D0 D3hot D3cold -05:51:18,520 INFO kernel:pci 0000:00:18.1: PME# disabled -05:51:18,520 INFO kernel:pci 0000:00:18.2: PME# supported from D0 D3hot D3cold -05:51:18,520 INFO kernel:pci 0000:00:18.2: PME# disabled -05:51:18,520 INFO kernel:pci 0000:00:18.3: PME# supported from D0 D3hot D3cold -05:51:18,520 INFO kernel:pci 0000:00:18.3: PME# disabled -05:51:18,520 INFO kernel:pci 0000:00:18.4: PME# supported from D0 D3hot D3cold -05:51:18,520 INFO kernel:pci 0000:00:18.4: PME# disabled -05:51:18,520 INFO kernel:pci 0000:00:18.5: PME# supported from D0 D3hot D3cold -05:51:18,520 INFO kernel:pci 0000:00:18.5: PME# disabled -05:51:18,520 INFO kernel:pci 0000:00:18.6: PME# supported from D0 D3hot D3cold -05:51:18,520 INFO kernel:pci 0000:00:18.6: PME# disabled -05:51:18,520 INFO kernel:pci 0000:00:18.7: PME# supported from D0 D3hot D3cold -05:51:18,520 INFO kernel:pci 0000:00:18.7: PME# disabled -05:51:18,520 INFO kernel:pci 0000:00:01.0: PCI bridge to [bus 01-01] -05:51:18,520 DEBUG kernel:pci 0000:00:01.0: bridge window [io 0xf000-0x0000] (disabled) -05:51:18,520 DEBUG kernel:pci 0000:00:01.0: bridge window [mem 0xfff00000-0x000fffff] (disabled) -05:51:18,520 DEBUG kernel:pci 0000:00:01.0: bridge window [mem 0xfff00000-0x000fffff pref] (disabled) -05:51:18,520 DEBUG kernel:pci 0000:02:00.0: reg 10: [mem 0xd1020000-0xd103ffff 64bit] -05:51:18,520 DEBUG kernel:pci 0000:02:00.0: reg 18: [mem 0xd1000000-0xd100ffff 64bit] -05:51:18,520 DEBUG kernel:pci 0000:02:00.0: reg 20: [io 0x2000-0x203f] -05:51:18,520 DEBUG kernel:pci 0000:02:00.0: reg 30: [mem 0x00000000-0x0000ffff pref] -05:51:18,520 INFO kernel:pci 0000:02:00.0: PME# supported from D0 D3hot D3cold -05:51:18,520 INFO kernel:pci 0000:02:00.0: PME# disabled -05:51:18,520 DEBUG kernel:pci 0000:02:01.0: reg 10: [mem 0xd1040000-0xd105ffff 64bit] -05:51:18,520 DEBUG kernel:pci 0000:02:01.0: reg 18: [mem 0xd1010000-0xd101ffff 64bit] -05:51:18,520 DEBUG kernel:pci 0000:02:01.0: reg 20: [io 0x2040-0x207f] -05:51:18,520 DEBUG kernel:pci 0000:02:01.0: reg 30: [mem 0x00000000-0x0000ffff pref] -05:51:18,520 INFO kernel:pci 0000:02:01.0: PME# supported from D0 D3hot D3cold -05:51:18,520 INFO kernel:pci 0000:02:01.0: PME# disabled -05:51:18,520 DEBUG kernel:pci 0000:02:02.0: reg 10: [mem 0xd1080000-0xd109ffff 64bit] -05:51:18,520 DEBUG kernel:pci 0000:02:02.0: reg 18: [mem 0xd1060000-0xd106ffff 64bit] -05:51:18,520 DEBUG kernel:pci 0000:02:02.0: reg 20: [io 0x2080-0x20bf] -05:51:18,520 DEBUG kernel:pci 0000:02:02.0: reg 30: [mem 0x00000000-0x0000ffff pref] -05:51:18,520 INFO kernel:pci 0000:02:02.0: PME# supported from D0 D3hot D3cold -05:51:18,520 INFO kernel:pci 0000:02:02.0: PME# disabled -05:51:18,520 DEBUG kernel:pci 0000:02:03.0: reg 10: [mem 0xd10a0000-0xd10bffff 64bit] -05:51:18,520 DEBUG kernel:pci 0000:02:03.0: reg 18: [mem 0xd1070000-0xd107ffff 64bit] -05:51:18,520 DEBUG kernel:pci 0000:02:03.0: reg 20: [io 0x20c0-0x20ff] -05:51:18,520 DEBUG kernel:pci 0000:02:03.0: reg 30: [mem 0x00000000-0x0000ffff pref] -05:51:18,520 INFO kernel:pci 0000:02:03.0: PME# supported from D0 D3hot D3cold -05:51:18,520 INFO kernel:pci 0000:02:03.0: PME# disabled -05:51:18,520 INFO kernel:pci 0000:00:11.0: PCI bridge to [bus 02-02] (subtractive decode) -05:51:18,520 DEBUG kernel:pci 0000:00:11.0: bridge window [io 0x2000-0x3fff] -05:51:18,520 DEBUG kernel:pci 0000:00:11.0: bridge window [mem 0xd1000000-0xd23fffff] -05:51:18,520 DEBUG kernel:pci 0000:00:11.0: bridge window [mem 0xdc400000-0xdc9fffff 64bit pref] -05:51:18,520 DEBUG kernel:pci 0000:00:11.0: bridge window [mem 0x000a0000-0x000bffff] (subtractive decode) -05:51:18,520 DEBUG kernel:pci 0000:00:11.0: bridge window [mem 0x000d0000-0x000d3fff] (subtractive decode) -05:51:18,520 DEBUG kernel:pci 0000:00:11.0: bridge window [mem 0x000d4000-0x000d7fff] (subtractive decode) -05:51:18,520 DEBUG kernel:pci 0000:00:11.0: bridge window [mem 0x000d8000-0x000dbfff] (subtractive decode) -05:51:18,520 DEBUG kernel:pci 0000:00:11.0: bridge window [mem 0x80000000-0xfebfffff] (subtractive decode) -05:51:18,520 DEBUG kernel:pci 0000:00:11.0: bridge window [io 0x0000-0x0cf7] (subtractive decode) -05:51:18,520 DEBUG kernel:pci 0000:00:11.0: bridge window [io 0x0d00-0xfeff] (subtractive decode) -05:51:18,520 INFO kernel:pci 0000:00:15.0: PCI bridge to [bus 03-03] -05:51:18,520 DEBUG kernel:pci 0000:00:15.0: bridge window [io 0x4000-0x4fff] -05:51:18,520 DEBUG kernel:pci 0000:00:15.0: bridge window [mem 0xd2400000-0xd24fffff] -05:51:18,520 DEBUG kernel:pci 0000:00:15.0: bridge window [mem 0xd4400000-0xd44fffff 64bit pref] -05:51:18,520 INFO kernel:pci 0000:00:15.1: PCI bridge to [bus 04-04] -05:51:18,520 DEBUG kernel:pci 0000:00:15.1: bridge window [io 0x8000-0x8fff] -05:51:18,520 DEBUG kernel:pci 0000:00:15.1: bridge window [mem 0xd2800000-0xd28fffff] -05:51:18,520 DEBUG kernel:pci 0000:00:15.1: bridge window [mem 0xd4800000-0xd48fffff 64bit pref] -05:51:18,520 INFO kernel:pci 0000:00:15.2: PCI bridge to [bus 05-05] -05:51:18,520 DEBUG kernel:pci 0000:00:15.2: bridge window [io 0xc000-0xcfff] -05:51:18,520 DEBUG kernel:pci 0000:00:15.2: bridge window [mem 0xd2c00000-0xd2cfffff] -05:51:18,520 DEBUG kernel:pci 0000:00:15.2: bridge window [mem 0xdcb00000-0xdcbfffff 64bit pref] -05:51:18,520 INFO kernel:pci 0000:00:15.3: PCI bridge to [bus 06-06] -05:51:18,520 DEBUG kernel:pci 0000:00:15.3: bridge window [io 0xf000-0x0000] (disabled) -05:51:18,520 DEBUG kernel:pci 0000:00:15.3: bridge window [mem 0xd3000000-0xd30fffff] -05:51:18,520 DEBUG kernel:pci 0000:00:15.3: bridge window [mem 0xdcd00000-0xdcdfffff 64bit pref] -05:51:18,520 INFO kernel:pci 0000:00:15.4: PCI bridge to [bus 07-07] -05:51:18,520 DEBUG kernel:pci 0000:00:15.4: bridge window [io 0xf000-0x0000] (disabled) -05:51:18,520 DEBUG kernel:pci 0000:00:15.4: bridge window [mem 0xd3400000-0xd34fffff] -05:51:18,520 DEBUG kernel:pci 0000:00:15.4: bridge window [mem 0xdcf00000-0xdcffffff 64bit pref] -05:51:18,520 INFO kernel:pci 0000:00:15.5: PCI bridge to [bus 08-08] -05:51:18,520 DEBUG kernel:pci 0000:00:15.5: bridge window [io 0xf000-0x0000] (disabled) -05:51:18,520 DEBUG kernel:pci 0000:00:15.5: bridge window [mem 0xd3800000-0xd38fffff] -05:51:18,520 DEBUG kernel:pci 0000:00:15.5: bridge window [mem 0xdd100000-0xdd1fffff 64bit pref] -05:51:18,520 INFO kernel:pci 0000:00:15.6: PCI bridge to [bus 09-09] -05:51:18,520 DEBUG kernel:pci 0000:00:15.6: bridge window [io 0xf000-0x0000] (disabled) -05:51:18,520 DEBUG kernel:pci 0000:00:15.6: bridge window [mem 0xd3c00000-0xd3cfffff] -05:51:18,520 DEBUG kernel:pci 0000:00:15.6: bridge window [mem 0xdd300000-0xdd3fffff 64bit pref] -05:51:18,520 INFO kernel:pci 0000:00:15.7: PCI bridge to [bus 0a-0a] -05:51:18,520 DEBUG kernel:pci 0000:00:15.7: bridge window [io 0xf000-0x0000] (disabled) -05:51:18,520 DEBUG kernel:pci 0000:00:15.7: bridge window [mem 0xd4000000-0xd40fffff] -05:51:18,520 DEBUG kernel:pci 0000:00:15.7: bridge window [mem 0xdd500000-0xdd5fffff 64bit pref] -05:51:18,520 INFO kernel:pci 0000:00:16.0: PCI bridge to [bus 0b-0b] -05:51:18,520 DEBUG kernel:pci 0000:00:16.0: bridge window [io 0x5000-0x5fff] -05:51:18,520 DEBUG kernel:pci 0000:00:16.0: bridge window [mem 0xd2500000-0xd25fffff] -05:51:18,520 DEBUG kernel:pci 0000:00:16.0: bridge window [mem 0xd4500000-0xd45fffff 64bit pref] -05:51:18,521 INFO kernel:pci 0000:00:16.1: PCI bridge to [bus 0c-0c] -05:51:18,521 DEBUG kernel:pci 0000:00:16.1: bridge window [io 0x9000-0x9fff] -05:51:18,521 DEBUG kernel:pci 0000:00:16.1: bridge window [mem 0xd2900000-0xd29fffff] -05:51:18,521 DEBUG kernel:pci 0000:00:16.1: bridge window [mem 0xd4900000-0xd49fffff 64bit pref] -05:51:18,521 INFO kernel:pci 0000:00:16.2: PCI bridge to [bus 0d-0d] -05:51:18,521 DEBUG kernel:pci 0000:00:16.2: bridge window [io 0xd000-0xdfff] -05:51:18,521 DEBUG kernel:pci 0000:00:16.2: bridge window [mem 0xd2d00000-0xd2dfffff] -05:51:18,521 DEBUG kernel:pci 0000:00:16.2: bridge window [mem 0xd4b00000-0xd4bfffff 64bit pref] -05:51:18,521 INFO kernel:pci 0000:00:16.3: PCI bridge to [bus 0e-0e] -05:51:18,521 DEBUG kernel:pci 0000:00:16.3: bridge window [io 0xf000-0x0000] (disabled) -05:51:18,521 DEBUG kernel:pci 0000:00:16.3: bridge window [mem 0xd3100000-0xd31fffff] -05:51:18,521 DEBUG kernel:pci 0000:00:16.3: bridge window [mem 0xd4d00000-0xd4dfffff 64bit pref] -05:51:18,521 INFO kernel:pci 0000:00:16.4: PCI bridge to [bus 0f-0f] -05:51:18,521 DEBUG kernel:pci 0000:00:16.4: bridge window [io 0xf000-0x0000] (disabled) -05:51:18,521 DEBUG kernel:pci 0000:00:16.4: bridge window [mem 0xd3500000-0xd35fffff] -05:51:18,521 DEBUG kernel:pci 0000:00:16.4: bridge window [mem 0xd4f00000-0xd4ffffff 64bit pref] -05:51:18,521 INFO kernel:pci 0000:00:16.5: PCI bridge to [bus 10-10] -05:51:18,521 DEBUG kernel:pci 0000:00:16.5: bridge window [io 0xf000-0x0000] (disabled) -05:51:18,521 DEBUG kernel:pci 0000:00:16.5: bridge window [mem 0xd3900000-0xd39fffff] -05:51:18,521 DEBUG kernel:pci 0000:00:16.5: bridge window [mem 0xd5100000-0xd51fffff 64bit pref] -05:51:18,521 INFO kernel:pci 0000:00:16.6: PCI bridge to [bus 11-11] -05:51:18,521 DEBUG kernel:pci 0000:00:16.6: bridge window [io 0xf000-0x0000] (disabled) -05:51:18,521 DEBUG kernel:pci 0000:00:16.6: bridge window [mem 0xd3d00000-0xd3dfffff] -05:51:18,521 DEBUG kernel:pci 0000:00:16.6: bridge window [mem 0xd5300000-0xd53fffff 64bit pref] -05:51:18,521 INFO kernel:pci 0000:00:16.7: PCI bridge to [bus 12-12] -05:51:18,521 DEBUG kernel:pci 0000:00:16.7: bridge window [io 0xf000-0x0000] (disabled) -05:51:18,521 DEBUG kernel:pci 0000:00:16.7: bridge window [mem 0xd4100000-0xd41fffff] -05:51:18,521 DEBUG kernel:pci 0000:00:16.7: bridge window [mem 0xd5500000-0xd55fffff 64bit pref] -05:51:18,521 INFO kernel:pci 0000:00:17.0: PCI bridge to [bus 13-13] -05:51:18,521 DEBUG kernel:pci 0000:00:17.0: bridge window [io 0x6000-0x6fff] -05:51:18,521 DEBUG kernel:pci 0000:00:17.0: bridge window [mem 0xd2600000-0xd26fffff] -05:51:18,521 DEBUG kernel:pci 0000:00:17.0: bridge window [mem 0xd4600000-0xd46fffff 64bit pref] -05:51:18,521 INFO kernel:pci 0000:00:17.1: PCI bridge to [bus 14-14] -05:51:18,521 DEBUG kernel:pci 0000:00:17.1: bridge window [io 0xa000-0xafff] -05:51:18,521 DEBUG kernel:pci 0000:00:17.1: bridge window [mem 0xd2a00000-0xd2afffff] -05:51:18,521 DEBUG kernel:pci 0000:00:17.1: bridge window [mem 0xdca00000-0xdcafffff 64bit pref] -05:51:18,521 INFO kernel:pci 0000:00:17.2: PCI bridge to [bus 15-15] -05:51:18,521 DEBUG kernel:pci 0000:00:17.2: bridge window [io 0xe000-0xefff] -05:51:18,521 DEBUG kernel:pci 0000:00:17.2: bridge window [mem 0xd2e00000-0xd2efffff] -05:51:18,521 DEBUG kernel:pci 0000:00:17.2: bridge window [mem 0xdcc00000-0xdccfffff 64bit pref] -05:51:18,521 INFO kernel:pci 0000:00:17.3: PCI bridge to [bus 16-16] -05:51:18,521 DEBUG kernel:pci 0000:00:17.3: bridge window [io 0xf000-0x0000] (disabled) -05:51:18,521 DEBUG kernel:pci 0000:00:17.3: bridge window [mem 0xd3200000-0xd32fffff] -05:51:18,521 DEBUG kernel:pci 0000:00:17.3: bridge window [mem 0xdce00000-0xdcefffff 64bit pref] -05:51:18,521 INFO kernel:pci 0000:00:17.4: PCI bridge to [bus 17-17] -05:51:18,521 DEBUG kernel:pci 0000:00:17.4: bridge window [io 0xf000-0x0000] (disabled) -05:51:18,521 DEBUG kernel:pci 0000:00:17.4: bridge window [mem 0xd3600000-0xd36fffff] -05:51:18,521 DEBUG kernel:pci 0000:00:17.4: bridge window [mem 0xdd000000-0xdd0fffff 64bit pref] -05:51:18,521 INFO kernel:pci 0000:00:17.5: PCI bridge to [bus 18-18] -05:51:18,521 DEBUG kernel:pci 0000:00:17.5: bridge window [io 0xf000-0x0000] (disabled) -05:51:18,521 DEBUG kernel:pci 0000:00:17.5: bridge window [mem 0xd3a00000-0xd3afffff] -05:51:18,521 DEBUG kernel:pci 0000:00:17.5: bridge window [mem 0xdd200000-0xdd2fffff 64bit pref] -05:51:18,521 INFO kernel:pci 0000:00:17.6: PCI bridge to [bus 19-19] -05:51:18,521 DEBUG kernel:pci 0000:00:17.6: bridge window [io 0xf000-0x0000] (disabled) -05:51:18,521 DEBUG kernel:pci 0000:00:17.6: bridge window [mem 0xd3e00000-0xd3efffff] -05:51:18,521 DEBUG kernel:pci 0000:00:17.6: bridge window [mem 0xdd400000-0xdd4fffff 64bit pref] -05:51:18,521 INFO kernel:pci 0000:00:17.7: PCI bridge to [bus 1a-1a] -05:51:18,521 DEBUG kernel:pci 0000:00:17.7: bridge window [io 0xf000-0x0000] (disabled) -05:51:18,521 DEBUG kernel:pci 0000:00:17.7: bridge window [mem 0xd4200000-0xd42fffff] -05:51:18,521 DEBUG kernel:pci 0000:00:17.7: bridge window [mem 0xdd600000-0xdd6fffff 64bit pref] -05:51:18,521 INFO kernel:pci 0000:00:18.0: PCI bridge to [bus 1b-1b] -05:51:18,521 DEBUG kernel:pci 0000:00:18.0: bridge window [io 0x7000-0x7fff] -05:51:18,521 DEBUG kernel:pci 0000:00:18.0: bridge window [mem 0xd2700000-0xd27fffff] -05:51:18,521 DEBUG kernel:pci 0000:00:18.0: bridge window [mem 0xd4700000-0xd47fffff 64bit pref] -05:51:18,521 INFO kernel:pci 0000:00:18.1: PCI bridge to [bus 1c-1c] -05:51:18,521 DEBUG kernel:pci 0000:00:18.1: bridge window [io 0xb000-0xbfff] -05:51:18,521 DEBUG kernel:pci 0000:00:18.1: bridge window [mem 0xd2b00000-0xd2bfffff] -05:51:18,521 DEBUG kernel:pci 0000:00:18.1: bridge window [mem 0xd4a00000-0xd4afffff 64bit pref] -05:51:18,521 INFO kernel:pci 0000:00:18.2: PCI bridge to [bus 1d-1d] -05:51:18,521 DEBUG kernel:pci 0000:00:18.2: bridge window [io 0xf000-0xffff] -05:51:18,521 DEBUG kernel:pci 0000:00:18.2: bridge window [mem 0xd2f00000-0xd2ffffff] -05:51:18,521 DEBUG kernel:pci 0000:00:18.2: bridge window [mem 0xd4c00000-0xd4cfffff 64bit pref] -05:51:18,521 INFO kernel:pci 0000:00:18.3: PCI bridge to [bus 1e-1e] -05:51:18,521 DEBUG kernel:pci 0000:00:18.3: bridge window [io 0xf000-0x0000] (disabled) -05:51:18,521 DEBUG kernel:pci 0000:00:18.3: bridge window [mem 0xd3300000-0xd33fffff] -05:51:18,521 DEBUG kernel:pci 0000:00:18.3: bridge window [mem 0xd4e00000-0xd4efffff 64bit pref] -05:51:18,521 INFO kernel:pci 0000:00:18.4: PCI bridge to [bus 1f-1f] -05:51:18,521 DEBUG kernel:pci 0000:00:18.4: bridge window [io 0xf000-0x0000] (disabled) -05:51:18,521 DEBUG kernel:pci 0000:00:18.4: bridge window [mem 0xd3700000-0xd37fffff] -05:51:18,521 DEBUG kernel:pci 0000:00:18.4: bridge window [mem 0xd5000000-0xd50fffff 64bit pref] -05:51:18,521 INFO kernel:pci 0000:00:18.5: PCI bridge to [bus 20-20] -05:51:18,521 DEBUG kernel:pci 0000:00:18.5: bridge window [io 0xf000-0x0000] (disabled) -05:51:18,521 DEBUG kernel:pci 0000:00:18.5: bridge window [mem 0xd3b00000-0xd3bfffff] -05:51:18,521 DEBUG kernel:pci 0000:00:18.5: bridge window [mem 0xd5200000-0xd52fffff 64bit pref] -05:51:18,521 INFO kernel:pci 0000:00:18.6: PCI bridge to [bus 21-21] -05:51:18,521 DEBUG kernel:pci 0000:00:18.6: bridge window [io 0xf000-0x0000] (disabled) -05:51:18,521 DEBUG kernel:pci 0000:00:18.6: bridge window [mem 0xd3f00000-0xd3ffffff] -05:51:18,521 DEBUG kernel:pci 0000:00:18.6: bridge window [mem 0xd5400000-0xd54fffff 64bit pref] -05:51:18,521 INFO kernel:pci 0000:00:18.7: PCI bridge to [bus 22-22] -05:51:18,521 DEBUG kernel:pci 0000:00:18.7: bridge window [io 0xf000-0x0000] (disabled) -05:51:18,521 DEBUG kernel:pci 0000:00:18.7: bridge window [mem 0xd4300000-0xd43fffff] -05:51:18,521 DEBUG kernel:pci 0000:00:18.7: bridge window [mem 0xd5600000-0xd56fffff 64bit pref] -05:51:18,521 DEBUG kernel:ACPI: PCI Interrupt Routing Table [\_SB_.PCI0._PRT] -05:51:18,521 INFO kernel: pci0000:00: Requesting ACPI _OSC control (0x1d) -05:51:18,521 INFO kernel: pci0000:00: ACPI _OSC control (0x15) granted -05:51:18,521 INFO kernel:ACPI: PCI Interrupt Link [LNKA] (IRQs 3 4 5 6 7 *9 10 11 14 15) -05:51:18,521 INFO kernel:ACPI: PCI Interrupt Link [LNKB] (IRQs 3 4 5 6 7 9 10 *11 14 15) -05:51:18,521 INFO kernel:ACPI: PCI Interrupt Link [LNKC] (IRQs 3 4 5 6 7 9 *10 11 14 15) -05:51:18,521 INFO kernel:ACPI: PCI Interrupt Link [LNKD] (IRQs 3 4 *5 6 7 9 10 11 14 15) -05:51:18,521 INFO kernel:vgaarb: device added: PCI:0000:00:0f.0,decodes=io+mem,owns=io+mem,locks=none -05:51:18,521 INFO kernel:vgaarb: loaded -05:51:18,521 INFO kernel:vgaarb: bridge control possible 0000:00:0f.0 -05:51:18,521 NOTICE kernel:SCSI subsystem initialized -05:51:18,521 DEBUG kernel:libata version 3.00 loaded. -05:51:18,521 INFO kernel:usbcore: registered new interface driver usbfs -05:51:18,521 INFO kernel:usbcore: registered new interface driver hub -05:51:18,521 INFO kernel:usbcore: registered new device driver usb -05:51:18,521 INFO kernel:PCI: Using ACPI for IRQ routing -05:51:18,521 DEBUG kernel:PCI: old code would have set cacheline size to 32 bytes, but clflush_size = 64 -05:51:18,521 DEBUG kernel:PCI: pci_cache_line_size set to 64 bytes -05:51:18,521 INFO kernel:pci 0000:00:18.2: no compatible bridge window for [io 0xf000-0xffff] -05:51:18,521 INFO kernel:pci 0000:00:18.2: can't reserve window [io 0xf000-0xffff] -05:51:18,521 NOTICE kernel:lo: Dropping TSO features since no CSUM feature. -05:51:18,521 INFO kernel:NetLabel: Initializing -05:51:18,521 INFO kernel:NetLabel: domain hash size = 128 -05:51:18,521 INFO kernel:NetLabel: protocols = UNLABELED CIPSOv4 -05:51:18,521 INFO kernel:NetLabel: unlabeled traffic allowed by default -05:51:18,521 INFO kernel:HPET: 16 timers in total, 0 timers will be used for per-cpu timer -05:51:18,521 INFO kernel:hpet0: at MMIO 0xfed00000, IRQs 2, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 -05:51:18,521 INFO kernel:hpet0: 16 comparators, 64-bit 14.318180 MHz counter -05:51:18,521 INFO kernel:Switching to clocksource hpet -05:51:18,521 INFO kernel:pnp: PnP ACPI init -05:51:18,521 INFO kernel:ACPI: bus type pnp registered -05:51:18,521 DEBUG kernel:pnp 00:00: [io 0x0cf8-0x0cff] -05:51:18,521 DEBUG kernel:pnp 00:00: Plug and Play ACPI device, IDs PNP0a03 PNP0a08 (active) -05:51:18,521 DEBUG kernel:pnp 00:01: [io 0x0010-0x001f] -05:51:18,521 DEBUG kernel:pnp 00:01: [io 0x0024-0x0025] -05:51:18,521 DEBUG kernel:pnp 00:01: [io 0x0028-0x0029] -05:51:18,521 DEBUG kernel:pnp 00:01: [io 0x002c-0x002d] -05:51:18,521 DEBUG kernel:pnp 00:01: [io 0x002e-0x002f] -05:51:18,521 DEBUG kernel:pnp 00:01: [io 0x0030-0x0031] -05:51:18,521 DEBUG kernel:pnp 00:01: [io 0x0034-0x0035] -05:51:18,521 DEBUG kernel:pnp 00:01: [io 0x0038-0x0039] -05:51:18,521 DEBUG kernel:pnp 00:01: [io 0x003c-0x003d] -05:51:18,521 DEBUG kernel:pnp 00:01: [io 0x0050-0x0053] -05:51:18,521 DEBUG kernel:pnp 00:01: [io 0x0072-0x0077] -05:51:18,521 DEBUG kernel:pnp 00:01: [io 0x0080] -05:51:18,521 DEBUG kernel:pnp 00:01: [io 0x0090-0x009f] -05:51:18,521 DEBUG kernel:pnp 00:01: [io 0x00a4-0x00a5] -05:51:18,521 DEBUG kernel:pnp 00:01: [io 0x00a8-0x00a9] -05:51:18,521 DEBUG kernel:pnp 00:01: [io 0x00ac-0x00ad] -05:51:18,521 DEBUG kernel:pnp 00:01: [io 0x00b0-0x00b5] -05:51:18,521 DEBUG kernel:pnp 00:01: [io 0x00b8-0x00b9] -05:51:18,521 DEBUG kernel:pnp 00:01: [io 0x00bc-0x00bd] -05:51:18,521 DEBUG kernel:pnp 00:01: [io 0x1000-0x103f] -05:51:18,521 DEBUG kernel:pnp 00:01: [io 0x1040-0x104f] -05:51:18,521 DEBUG kernel:pnp 00:01: [io 0x0cf0-0x0cf1] -05:51:18,521 DEBUG kernel:pnp 00:01: Plug and Play ACPI device, IDs PNP0c02 (active) -05:51:18,521 DEBUG kernel:pnp 00:02: [io 0x0000-0x000f] -05:51:18,521 DEBUG kernel:pnp 00:02: [io 0x0081-0x008f] -05:51:18,521 DEBUG kernel:pnp 00:02: [io 0x00c0-0x00df] -05:51:18,521 DEBUG kernel:pnp 00:02: [dma 4] -05:51:18,521 DEBUG kernel:pnp 00:02: Plug and Play ACPI device, IDs PNP0200 (active) -05:51:18,521 DEBUG kernel:pnp 00:03: [io 0x0020-0x0021] -05:51:18,521 DEBUG kernel:pnp 00:03: [io 0x00a0-0x00a1] -05:51:18,521 DEBUG kernel:pnp 00:03: [io 0x04d0-0x04d1] -05:51:18,521 DEBUG kernel:pnp 00:03: [irq 2 disabled] -05:51:18,521 DEBUG kernel:pnp 00:03: Plug and Play ACPI device, IDs PNP0001 (active) -05:51:18,521 DEBUG kernel:pnp 00:04: [io 0x0070-0x0071] -05:51:18,521 DEBUG kernel:pnp 00:04: [irq 8] -05:51:18,521 DEBUG kernel:pnp 00:04: Plug and Play ACPI device, IDs PNP0b00 (active) -05:51:18,521 DEBUG kernel:pnp 00:05: [io 0x0061] -05:51:18,521 DEBUG kernel:pnp 00:05: Plug and Play ACPI device, IDs PNP0800 (active) -05:51:18,521 DEBUG kernel:pnp 00:06: [io 0x0060] -05:51:18,521 DEBUG kernel:pnp 00:06: [io 0x0064] -05:51:18,521 DEBUG kernel:pnp 00:06: [irq 1] -05:51:18,521 DEBUG kernel:pnp 00:06: Plug and Play ACPI device, IDs PNP0303 (active) -05:51:18,521 DEBUG kernel:pnp 00:07: [irq 12] -05:51:18,521 DEBUG kernel:pnp 00:07: Plug and Play ACPI device, IDs PNP0f13 (active) -05:51:18,521 DEBUG kernel:pnp 00:08: [mem 0xfed00000-0xfed003ff] -05:51:18,521 DEBUG kernel:pnp 00:08: Plug and Play ACPI device, IDs PNP0103 PNP0c01 (active) -05:51:18,521 DEBUG kernel:pnp 00:09: [io 0x0378-0x037f] -05:51:18,521 DEBUG kernel:pnp 00:09: [irq 7] -05:51:18,521 DEBUG kernel:pnp 00:09: Plug and Play ACPI device, IDs PNP0400 (active) -05:51:18,521 DEBUG kernel:pnp 00:0a: [io 0x03f8-0x03ff] -05:51:18,521 DEBUG kernel:pnp 00:0a: [irq 4] -05:51:18,521 DEBUG kernel:pnp 00:0a: Plug and Play ACPI device, IDs PNP0501 (active) -05:51:18,521 DEBUG kernel:pnp 00:0b: [io 0x02f8-0x02ff] -05:51:18,521 DEBUG kernel:pnp 00:0b: [irq 3] -05:51:18,521 DEBUG kernel:pnp 00:0b: Plug and Play ACPI device, IDs PNP0501 (active) -05:51:18,521 DEBUG kernel:pnp 00:0c: [io 0x03f0-0x03f5] -05:51:18,521 DEBUG kernel:pnp 00:0c: [io 0x03f7] -05:51:18,521 DEBUG kernel:pnp 00:0c: [irq 6] -05:51:18,521 DEBUG kernel:pnp 00:0c: [dma 2] -05:51:18,521 DEBUG kernel:pnp 00:0c: Plug and Play ACPI device, IDs PNP0700 (active) -05:51:18,521 DEBUG kernel:pnp 00:0d: [mem 0xe0000000-0xefffffff] -05:51:18,521 DEBUG kernel:pnp 00:0d: [io 0x1060-0x107f] -05:51:18,521 DEBUG kernel:pnp 00:0d: [mem 0xd0200000-0xd03fffff] -05:51:18,521 DEBUG kernel:pnp 00:0d: Plug and Play ACPI device, IDs PNP0c02 (active) -05:51:18,521 INFO kernel:pnp: PnP ACPI: found 14 devices -05:51:18,521 INFO kernel:ACPI: ACPI bus type pnp unregistered -05:51:18,521 INFO kernel:system 00:01: [io 0x1000-0x103f] has been reserved -05:51:18,521 INFO kernel:system 00:01: [io 0x1040-0x104f] has been reserved -05:51:18,521 INFO kernel:system 00:01: [io 0x0cf0-0x0cf1] has been reserved -05:51:18,521 INFO kernel:system 00:08: [mem 0xfed00000-0xfed003ff] has been reserved -05:51:18,521 INFO kernel:system 00:0d: [io 0x1060-0x107f] has been reserved -05:51:18,521 INFO kernel:system 00:0d: [mem 0xe0000000-0xefffffff] has been reserved -05:51:18,521 INFO kernel:system 00:0d: [mem 0xd0200000-0xd03fffff] has been reserved -05:51:18,521 DEBUG kernel:PCI: max bus depth: 1 pci_try_num: 2 -05:51:18,521 INFO kernel:pci 0000:00:0f.0: BAR 6: assigned [mem 0x80000000-0x80007fff pref] -05:51:18,521 INFO kernel:pci 0000:00:10.0: BAR 6: assigned [mem 0x80008000-0x8000bfff pref] -05:51:18,521 INFO kernel:pci 0000:00:18.2: BAR 13: can't assign io (size 0x1000) -05:51:18,521 INFO kernel:pci 0000:00:18.7: BAR 13: can't assign io (size 0x1000) -05:51:18,521 INFO kernel:pci 0000:00:18.6: BAR 13: can't assign io (size 0x1000) -05:51:18,521 INFO kernel:pci 0000:00:18.5: BAR 13: can't assign io (size 0x1000) -05:51:18,521 INFO kernel:pci 0000:00:18.4: BAR 13: can't assign io (size 0x1000) -05:51:18,521 INFO kernel:pci 0000:00:18.3: BAR 13: can't assign io (size 0x1000) -05:51:18,521 INFO kernel:pci 0000:00:17.7: BAR 13: can't assign io (size 0x1000) -05:51:18,521 INFO kernel:pci 0000:00:17.6: BAR 13: can't assign io (size 0x1000) -05:51:18,521 INFO kernel:pci 0000:00:17.5: BAR 13: can't assign io (size 0x1000) -05:51:18,521 INFO kernel:pci 0000:00:17.4: BAR 13: can't assign io (size 0x1000) -05:51:18,521 INFO kernel:pci 0000:00:17.3: BAR 13: can't assign io (size 0x1000) -05:51:18,521 INFO kernel:pci 0000:00:16.7: BAR 13: can't assign io (size 0x1000) -05:51:18,521 INFO kernel:pci 0000:00:16.6: BAR 13: can't assign io (size 0x1000) -05:51:18,521 INFO kernel:pci 0000:00:16.5: BAR 13: can't assign io (size 0x1000) -05:51:18,521 INFO kernel:pci 0000:00:16.4: BAR 13: can't assign io (size 0x1000) -05:51:18,521 INFO kernel:pci 0000:00:16.3: BAR 13: can't assign io (size 0x1000) -05:51:18,521 INFO kernel:pci 0000:00:15.7: BAR 13: can't assign io (size 0x1000) -05:51:18,521 INFO kernel:pci 0000:00:15.6: BAR 13: can't assign io (size 0x1000) -05:51:18,521 INFO kernel:pci 0000:00:15.5: BAR 13: can't assign io (size 0x1000) -05:51:18,521 INFO kernel:pci 0000:00:15.4: BAR 13: can't assign io (size 0x1000) -05:51:18,521 INFO kernel:pci 0000:00:15.3: BAR 13: can't assign io (size 0x1000) -05:51:18,521 INFO kernel:pci 0000:00:01.0: PCI bridge to [bus 01-01] -05:51:18,521 INFO kernel:pci 0000:00:01.0: PCI bridge to [bus 01-01] -05:51:18,521 INFO kernel:pci 0000:00:01.0: bridge window [io disabled] -05:51:18,521 INFO kernel:pci 0000:00:01.0: bridge window [mem disabled] -05:51:18,521 INFO kernel:pci 0000:00:01.0: bridge window [mem pref disabled] -05:51:18,521 INFO kernel:pci 0000:02:00.0: BAR 6: assigned [mem 0xdc400000-0xdc40ffff pref] -05:51:18,521 INFO kernel:pci 0000:02:01.0: BAR 6: assigned [mem 0xdc410000-0xdc41ffff pref] -05:51:18,521 INFO kernel:pci 0000:02:02.0: BAR 6: assigned [mem 0xdc420000-0xdc42ffff pref] -05:51:18,521 INFO kernel:pci 0000:02:03.0: BAR 6: assigned [mem 0xdc430000-0xdc43ffff pref] -05:51:18,521 INFO kernel:pci 0000:00:11.0: PCI bridge to [bus 02-02] -05:51:18,521 INFO kernel:pci 0000:00:11.0: PCI bridge to [bus 02-02] -05:51:18,521 INFO kernel:pci 0000:00:11.0: bridge window [io 0x2000-0x3fff] -05:51:18,521 INFO kernel:pci 0000:00:11.0: bridge window [mem 0xd1000000-0xd23fffff] -05:51:18,521 INFO kernel:pci 0000:00:11.0: bridge window [mem 0xdc400000-0xdc9fffff 64bit pref] -05:51:18,521 INFO kernel:pci 0000:00:15.0: PCI bridge to [bus 03-03] -05:51:18,521 INFO kernel:pci 0000:00:15.0: PCI bridge to [bus 03-03] -05:51:18,521 INFO kernel:pci 0000:00:15.0: bridge window [io 0x4000-0x4fff] -05:51:18,521 INFO kernel:pci 0000:00:15.0: bridge window [mem 0xd2400000-0xd24fffff] -05:51:18,521 INFO kernel:pci 0000:00:15.0: bridge window [mem 0xd4400000-0xd44fffff 64bit pref] -05:51:18,521 INFO kernel:pci 0000:00:15.1: PCI bridge to [bus 04-04] -05:51:18,521 INFO kernel:pci 0000:00:15.1: PCI bridge to [bus 04-04] -05:51:18,521 INFO kernel:pci 0000:00:15.1: bridge window [io 0x8000-0x8fff] -05:51:18,521 INFO kernel:pci 0000:00:15.1: bridge window [mem 0xd2800000-0xd28fffff] -05:51:18,521 INFO kernel:pci 0000:00:15.1: bridge window [mem 0xd4800000-0xd48fffff 64bit pref] -05:51:18,521 INFO kernel:pci 0000:00:15.2: PCI bridge to [bus 05-05] -05:51:18,521 INFO kernel:pci 0000:00:15.2: PCI bridge to [bus 05-05] -05:51:18,521 INFO kernel:pci 0000:00:15.2: bridge window [io 0xc000-0xcfff] -05:51:18,521 INFO kernel:pci 0000:00:15.2: bridge window [mem 0xd2c00000-0xd2cfffff] -05:51:18,521 INFO kernel:pci 0000:00:15.2: bridge window [mem 0xdcb00000-0xdcbfffff 64bit pref] -05:51:18,521 INFO kernel:pci 0000:00:15.3: PCI bridge to [bus 06-06] -05:51:18,521 INFO kernel:pci 0000:00:15.3: PCI bridge to [bus 06-06] -05:51:18,521 INFO kernel:pci 0000:00:15.3: bridge window [io disabled] -05:51:18,521 INFO kernel:pci 0000:00:15.3: bridge window [mem 0xd3000000-0xd30fffff] -05:51:18,521 INFO kernel:pci 0000:00:15.3: bridge window [mem 0xdcd00000-0xdcdfffff 64bit pref] -05:51:18,521 INFO kernel:pci 0000:00:15.4: PCI bridge to [bus 07-07] -05:51:18,521 INFO kernel:pci 0000:00:15.4: PCI bridge to [bus 07-07] -05:51:18,521 INFO kernel:pci 0000:00:15.4: bridge window [io disabled] -05:51:18,521 INFO kernel:pci 0000:00:15.4: bridge window [mem 0xd3400000-0xd34fffff] -05:51:18,521 INFO kernel:pci 0000:00:15.4: bridge window [mem 0xdcf00000-0xdcffffff 64bit pref] -05:51:18,521 INFO kernel:pci 0000:00:15.5: PCI bridge to [bus 08-08] -05:51:18,521 INFO kernel:pci 0000:00:15.5: PCI bridge to [bus 08-08] -05:51:18,521 INFO kernel:pci 0000:00:15.5: bridge window [io disabled] -05:51:18,521 INFO kernel:pci 0000:00:15.5: bridge window [mem 0xd3800000-0xd38fffff] -05:51:18,521 INFO kernel:pci 0000:00:15.5: bridge window [mem 0xdd100000-0xdd1fffff 64bit pref] -05:51:18,521 INFO kernel:pci 0000:00:15.6: PCI bridge to [bus 09-09] -05:51:18,521 INFO kernel:pci 0000:00:15.6: PCI bridge to [bus 09-09] -05:51:18,521 INFO kernel:pci 0000:00:15.6: bridge window [io disabled] -05:51:18,521 INFO kernel:pci 0000:00:15.6: bridge window [mem 0xd3c00000-0xd3cfffff] -05:51:18,521 INFO kernel:pci 0000:00:15.6: bridge window [mem 0xdd300000-0xdd3fffff 64bit pref] -05:51:18,521 INFO kernel:pci 0000:00:15.7: PCI bridge to [bus 0a-0a] -05:51:18,521 INFO kernel:pci 0000:00:15.7: PCI bridge to [bus 0a-0a] -05:51:18,521 INFO kernel:pci 0000:00:15.7: bridge window [io disabled] -05:51:18,521 INFO kernel:pci 0000:00:15.7: bridge window [mem 0xd4000000-0xd40fffff] -05:51:18,521 INFO kernel:pci 0000:00:15.7: bridge window [mem 0xdd500000-0xdd5fffff 64bit pref] -05:51:18,521 INFO kernel:pci 0000:00:16.0: PCI bridge to [bus 0b-0b] -05:51:18,521 INFO kernel:pci 0000:00:16.0: PCI bridge to [bus 0b-0b] -05:51:18,521 INFO kernel:pci 0000:00:16.0: bridge window [io 0x5000-0x5fff] -05:51:18,521 INFO kernel:pci 0000:00:16.0: bridge window [mem 0xd2500000-0xd25fffff] -05:51:18,521 INFO kernel:pci 0000:00:16.0: bridge window [mem 0xd4500000-0xd45fffff 64bit pref] -05:51:18,521 INFO kernel:pci 0000:00:16.1: PCI bridge to [bus 0c-0c] -05:51:18,521 INFO kernel:pci 0000:00:16.1: PCI bridge to [bus 0c-0c] -05:51:18,521 INFO kernel:pci 0000:00:16.1: bridge window [io 0x9000-0x9fff] -05:51:18,521 INFO kernel:pci 0000:00:16.1: bridge window [mem 0xd2900000-0xd29fffff] -05:51:18,521 INFO kernel:pci 0000:00:16.1: bridge window [mem 0xd4900000-0xd49fffff 64bit pref] -05:51:18,521 INFO kernel:pci 0000:00:16.2: PCI bridge to [bus 0d-0d] -05:51:18,521 INFO kernel:pci 0000:00:16.2: PCI bridge to [bus 0d-0d] -05:51:18,521 INFO kernel:pci 0000:00:16.2: bridge window [io 0xd000-0xdfff] -05:51:18,521 INFO kernel:pci 0000:00:16.2: bridge window [mem 0xd2d00000-0xd2dfffff] -05:51:18,521 INFO kernel:pci 0000:00:16.2: bridge window [mem 0xd4b00000-0xd4bfffff 64bit pref] -05:51:18,521 INFO kernel:pci 0000:00:16.3: PCI bridge to [bus 0e-0e] -05:51:18,521 INFO kernel:pci 0000:00:16.3: PCI bridge to [bus 0e-0e] -05:51:18,521 INFO kernel:pci 0000:00:16.3: bridge window [io disabled] -05:51:18,521 INFO kernel:pci 0000:00:16.3: bridge window [mem 0xd3100000-0xd31fffff] -05:51:18,521 INFO kernel:pci 0000:00:16.3: bridge window [mem 0xd4d00000-0xd4dfffff 64bit pref] -05:51:18,521 INFO kernel:pci 0000:00:16.4: PCI bridge to [bus 0f-0f] -05:51:18,521 INFO kernel:pci 0000:00:16.4: PCI bridge to [bus 0f-0f] -05:51:18,521 INFO kernel:pci 0000:00:16.4: bridge window [io disabled] -05:51:18,521 INFO kernel:pci 0000:00:16.4: bridge window [mem 0xd3500000-0xd35fffff] -05:51:18,521 INFO kernel:pci 0000:00:16.4: bridge window [mem 0xd4f00000-0xd4ffffff 64bit pref] -05:51:18,521 INFO kernel:pci 0000:00:16.5: PCI bridge to [bus 10-10] -05:51:18,521 INFO kernel:pci 0000:00:16.5: PCI bridge to [bus 10-10] -05:51:18,521 INFO kernel:pci 0000:00:16.5: bridge window [io disabled] -05:51:18,521 INFO kernel:pci 0000:00:16.5: bridge window [mem 0xd3900000-0xd39fffff] -05:51:18,521 INFO kernel:pci 0000:00:16.5: bridge window [mem 0xd5100000-0xd51fffff 64bit pref] -05:51:18,521 INFO kernel:pci 0000:00:16.6: PCI bridge to [bus 11-11] -05:51:18,521 INFO kernel:pci 0000:00:16.6: PCI bridge to [bus 11-11] -05:51:18,521 INFO kernel:pci 0000:00:16.6: bridge window [io disabled] -05:51:18,521 INFO kernel:pci 0000:00:16.6: bridge window [mem 0xd3d00000-0xd3dfffff] -05:51:18,521 INFO kernel:pci 0000:00:16.6: bridge window [mem 0xd5300000-0xd53fffff 64bit pref] -05:51:18,521 INFO kernel:pci 0000:00:16.7: PCI bridge to [bus 12-12] -05:51:18,521 INFO kernel:pci 0000:00:16.7: PCI bridge to [bus 12-12] -05:51:18,521 INFO kernel:pci 0000:00:16.7: bridge window [io disabled] -05:51:18,521 INFO kernel:pci 0000:00:16.7: bridge window [mem 0xd4100000-0xd41fffff] -05:51:18,521 INFO kernel:pci 0000:00:16.7: bridge window [mem 0xd5500000-0xd55fffff 64bit pref] -05:51:18,521 INFO kernel:pci 0000:00:17.0: PCI bridge to [bus 13-13] -05:51:18,521 INFO kernel:pci 0000:00:17.0: PCI bridge to [bus 13-13] -05:51:18,521 INFO kernel:pci 0000:00:17.0: bridge window [io 0x6000-0x6fff] -05:51:18,521 INFO kernel:pci 0000:00:17.0: bridge window [mem 0xd2600000-0xd26fffff] -05:51:18,521 INFO kernel:pci 0000:00:17.0: bridge window [mem 0xd4600000-0xd46fffff 64bit pref] -05:51:18,521 INFO kernel:pci 0000:00:17.1: PCI bridge to [bus 14-14] -05:51:18,521 INFO kernel:pci 0000:00:17.1: PCI bridge to [bus 14-14] -05:51:18,521 INFO kernel:pci 0000:00:17.1: bridge window [io 0xa000-0xafff] -05:51:18,521 INFO kernel:pci 0000:00:17.1: bridge window [mem 0xd2a00000-0xd2afffff] -05:51:18,521 INFO kernel:pci 0000:00:17.1: bridge window [mem 0xdca00000-0xdcafffff 64bit pref] -05:51:18,521 INFO kernel:pci 0000:00:17.2: PCI bridge to [bus 15-15] -05:51:18,521 INFO kernel:pci 0000:00:17.2: PCI bridge to [bus 15-15] -05:51:18,521 INFO kernel:pci 0000:00:17.2: bridge window [io 0xe000-0xefff] -05:51:18,521 INFO kernel:pci 0000:00:17.2: bridge window [mem 0xd2e00000-0xd2efffff] -05:51:18,521 INFO kernel:pci 0000:00:17.2: bridge window [mem 0xdcc00000-0xdccfffff 64bit pref] -05:51:18,521 INFO kernel:pci 0000:00:17.3: PCI bridge to [bus 16-16] -05:51:18,521 INFO kernel:pci 0000:00:17.3: PCI bridge to [bus 16-16] -05:51:18,521 INFO kernel:pci 0000:00:17.3: bridge window [io disabled] -05:51:18,521 INFO kernel:pci 0000:00:17.3: bridge window [mem 0xd3200000-0xd32fffff] -05:51:18,521 INFO kernel:pci 0000:00:17.3: bridge window [mem 0xdce00000-0xdcefffff 64bit pref] -05:51:18,521 INFO kernel:pci 0000:00:17.4: PCI bridge to [bus 17-17] -05:51:18,521 INFO kernel:pci 0000:00:17.4: PCI bridge to [bus 17-17] -05:51:18,521 INFO kernel:pci 0000:00:17.4: bridge window [io disabled] -05:51:18,521 INFO kernel:pci 0000:00:17.4: bridge window [mem 0xd3600000-0xd36fffff] -05:51:18,521 INFO kernel:pci 0000:00:17.4: bridge window [mem 0xdd000000-0xdd0fffff 64bit pref] -05:51:18,521 INFO kernel:pci 0000:00:17.5: PCI bridge to [bus 18-18] -05:51:18,521 INFO kernel:pci 0000:00:17.5: PCI bridge to [bus 18-18] -05:51:18,521 INFO kernel:pci 0000:00:17.5: bridge window [io disabled] -05:51:18,521 INFO kernel:pci 0000:00:17.5: bridge window [mem 0xd3a00000-0xd3afffff] -05:51:18,521 INFO kernel:pci 0000:00:17.5: bridge window [mem 0xdd200000-0xdd2fffff 64bit pref] -05:51:18,521 INFO kernel:pci 0000:00:17.6: PCI bridge to [bus 19-19] -05:51:18,521 INFO kernel:pci 0000:00:17.6: PCI bridge to [bus 19-19] -05:51:18,521 INFO kernel:pci 0000:00:17.6: bridge window [io disabled] -05:51:18,521 INFO kernel:pci 0000:00:17.6: bridge window [mem 0xd3e00000-0xd3efffff] -05:51:18,521 INFO kernel:pci 0000:00:17.6: bridge window [mem 0xdd400000-0xdd4fffff 64bit pref] -05:51:18,521 INFO kernel:pci 0000:00:17.7: PCI bridge to [bus 1a-1a] -05:51:18,521 INFO kernel:pci 0000:00:17.7: PCI bridge to [bus 1a-1a] -05:51:18,521 INFO kernel:pci 0000:00:17.7: bridge window [io disabled] -05:51:18,521 INFO kernel:pci 0000:00:17.7: bridge window [mem 0xd4200000-0xd42fffff] -05:51:18,521 INFO kernel:pci 0000:00:17.7: bridge window [mem 0xdd600000-0xdd6fffff 64bit pref] -05:51:18,521 INFO kernel:pci 0000:00:18.0: PCI bridge to [bus 1b-1b] -05:51:18,521 INFO kernel:pci 0000:00:18.0: PCI bridge to [bus 1b-1b] -05:51:18,521 INFO kernel:pci 0000:00:18.0: bridge window [io 0x7000-0x7fff] -05:51:18,521 INFO kernel:pci 0000:00:18.0: bridge window [mem 0xd2700000-0xd27fffff] -05:51:18,521 INFO kernel:pci 0000:00:18.0: bridge window [mem 0xd4700000-0xd47fffff 64bit pref] -05:51:18,521 INFO kernel:pci 0000:00:18.1: PCI bridge to [bus 1c-1c] -05:51:18,521 INFO kernel:pci 0000:00:18.1: PCI bridge to [bus 1c-1c] -05:51:18,521 INFO kernel:pci 0000:00:18.1: bridge window [io 0xb000-0xbfff] -05:51:18,521 INFO kernel:pci 0000:00:18.1: bridge window [mem 0xd2b00000-0xd2bfffff] -05:51:18,521 INFO kernel:pci 0000:00:18.1: bridge window [mem 0xd4a00000-0xd4afffff 64bit pref] -05:51:18,521 INFO kernel:pci 0000:00:18.2: PCI bridge to [bus 1d-1d] -05:51:18,521 INFO kernel:pci 0000:00:18.2: PCI bridge to [bus 1d-1d] -05:51:18,521 INFO kernel:pci 0000:00:18.2: bridge window [io disabled] -05:51:18,521 INFO kernel:pci 0000:00:18.2: bridge window [mem 0xd2f00000-0xd2ffffff] -05:51:18,521 INFO kernel:pci 0000:00:18.2: bridge window [mem 0xd4c00000-0xd4cfffff 64bit pref] -05:51:18,521 INFO kernel:pci 0000:00:18.3: PCI bridge to [bus 1e-1e] -05:51:18,521 INFO kernel:pci 0000:00:18.3: PCI bridge to [bus 1e-1e] -05:51:18,521 INFO kernel:pci 0000:00:18.3: bridge window [io disabled] -05:51:18,521 INFO kernel:pci 0000:00:18.3: bridge window [mem 0xd3300000-0xd33fffff] -05:51:18,521 INFO kernel:pci 0000:00:18.3: bridge window [mem 0xd4e00000-0xd4efffff 64bit pref] -05:51:18,521 INFO kernel:pci 0000:00:18.4: PCI bridge to [bus 1f-1f] -05:51:18,521 INFO kernel:pci 0000:00:18.4: PCI bridge to [bus 1f-1f] -05:51:18,521 INFO kernel:pci 0000:00:18.4: bridge window [io disabled] -05:51:18,521 INFO kernel:pci 0000:00:18.4: bridge window [mem 0xd3700000-0xd37fffff] -05:51:18,521 INFO kernel:pci 0000:00:18.4: bridge window [mem 0xd5000000-0xd50fffff 64bit pref] -05:51:18,521 INFO kernel:pci 0000:00:18.5: PCI bridge to [bus 20-20] -05:51:18,521 INFO kernel:pci 0000:00:18.5: PCI bridge to [bus 20-20] -05:51:18,521 INFO kernel:pci 0000:00:18.5: bridge window [io disabled] -05:51:18,521 INFO kernel:pci 0000:00:18.5: bridge window [mem 0xd3b00000-0xd3bfffff] -05:51:18,521 INFO kernel:pci 0000:00:18.5: bridge window [mem 0xd5200000-0xd52fffff 64bit pref] -05:51:18,521 INFO kernel:pci 0000:00:18.6: PCI bridge to [bus 21-21] -05:51:18,521 INFO kernel:pci 0000:00:18.6: PCI bridge to [bus 21-21] -05:51:18,521 INFO kernel:pci 0000:00:18.6: bridge window [io disabled] -05:51:18,521 INFO kernel:pci 0000:00:18.6: bridge window [mem 0xd3f00000-0xd3ffffff] -05:51:18,521 INFO kernel:pci 0000:00:18.6: bridge window [mem 0xd5400000-0xd54fffff 64bit pref] -05:51:18,521 INFO kernel:pci 0000:00:18.7: PCI bridge to [bus 22-22] -05:51:18,521 INFO kernel:pci 0000:00:18.7: PCI bridge to [bus 22-22] -05:51:18,521 INFO kernel:pci 0000:00:18.7: bridge window [io disabled] -05:51:18,521 INFO kernel:pci 0000:00:18.7: bridge window [mem 0xd4300000-0xd43fffff] -05:51:18,521 INFO kernel:pci 0000:00:18.7: bridge window [mem 0xd5600000-0xd56fffff 64bit pref] -05:51:18,521 DEBUG kernel:pci 0000:00:01.0: setting latency timer to 64 -05:51:18,521 DEBUG kernel:pci 0000:00:15.0: setting latency timer to 64 -05:51:18,521 DEBUG kernel:pci 0000:00:15.1: setting latency timer to 64 -05:51:18,521 DEBUG kernel:pci 0000:00:15.2: setting latency timer to 64 -05:51:18,521 DEBUG kernel:pci 0000:00:15.3: setting latency timer to 64 -05:51:18,521 DEBUG kernel:pci 0000:00:15.4: setting latency timer to 64 -05:51:18,521 DEBUG kernel:pci 0000:00:15.5: setting latency timer to 64 -05:51:18,521 DEBUG kernel:pci 0000:00:15.6: setting latency timer to 64 -05:51:18,521 DEBUG kernel:pci 0000:00:15.7: setting latency timer to 64 -05:51:18,521 DEBUG kernel:pci 0000:00:16.0: setting latency timer to 64 -05:51:18,521 DEBUG kernel:pci 0000:00:16.1: setting latency timer to 64 -05:51:18,521 DEBUG kernel:pci 0000:00:16.2: setting latency timer to 64 -05:51:18,521 DEBUG kernel:pci 0000:00:16.3: setting latency timer to 64 -05:51:18,521 DEBUG kernel:pci 0000:00:16.4: setting latency timer to 64 -05:51:18,521 DEBUG kernel:pci 0000:00:16.5: setting latency timer to 64 -05:51:18,521 DEBUG kernel:pci 0000:00:16.6: setting latency timer to 64 -05:51:18,521 DEBUG kernel:pci 0000:00:16.7: setting latency timer to 64 -05:51:18,521 DEBUG kernel:pci 0000:00:17.0: setting latency timer to 64 -05:51:18,521 DEBUG kernel:pci 0000:00:17.1: setting latency timer to 64 -05:51:18,522 DEBUG kernel:pci 0000:00:17.2: setting latency timer to 64 -05:51:18,522 DEBUG kernel:pci 0000:00:17.3: setting latency timer to 64 -05:51:18,522 DEBUG kernel:pci 0000:00:17.4: setting latency timer to 64 -05:51:18,522 DEBUG kernel:pci 0000:00:17.5: setting latency timer to 64 -05:51:18,522 DEBUG kernel:pci 0000:00:17.6: setting latency timer to 64 -05:51:18,522 DEBUG kernel:pci 0000:00:17.7: setting latency timer to 64 -05:51:18,522 DEBUG kernel:pci 0000:00:18.0: setting latency timer to 64 -05:51:18,522 DEBUG kernel:pci 0000:00:18.1: setting latency timer to 64 -05:51:18,522 DEBUG kernel:pci 0000:00:18.2: setting latency timer to 64 -05:51:18,522 DEBUG kernel:pci 0000:00:18.3: setting latency timer to 64 -05:51:18,522 DEBUG kernel:pci 0000:00:18.4: setting latency timer to 64 -05:51:18,522 DEBUG kernel:pci 0000:00:18.5: setting latency timer to 64 -05:51:18,522 DEBUG kernel:pci 0000:00:18.6: setting latency timer to 64 -05:51:18,522 DEBUG kernel:pci 0000:00:18.7: setting latency timer to 64 -05:51:18,522 DEBUG kernel:pci_bus 0000:00: resource 4 [mem 0x000a0000-0x000bffff] -05:51:18,522 DEBUG kernel:pci_bus 0000:00: resource 5 [mem 0x000d0000-0x000d3fff] -05:51:18,522 DEBUG kernel:pci_bus 0000:00: resource 6 [mem 0x000d4000-0x000d7fff] -05:51:18,522 DEBUG kernel:pci_bus 0000:00: resource 7 [mem 0x000d8000-0x000dbfff] -05:51:18,522 DEBUG kernel:pci_bus 0000:00: resource 8 [mem 0x80000000-0xfebfffff] -05:51:18,522 DEBUG kernel:pci_bus 0000:00: resource 9 [io 0x0000-0x0cf7] -05:51:18,522 DEBUG kernel:pci_bus 0000:00: resource 10 [io 0x0d00-0xfeff] -05:51:18,522 DEBUG kernel:pci_bus 0000:02: resource 0 [io 0x2000-0x3fff] -05:51:18,522 DEBUG kernel:pci_bus 0000:02: resource 1 [mem 0xd1000000-0xd23fffff] -05:51:18,522 DEBUG kernel:pci_bus 0000:02: resource 2 [mem 0xdc400000-0xdc9fffff 64bit pref] -05:51:18,522 DEBUG kernel:pci_bus 0000:02: resource 4 [mem 0x000a0000-0x000bffff] -05:51:18,522 DEBUG kernel:pci_bus 0000:02: resource 5 [mem 0x000d0000-0x000d3fff] -05:51:18,522 DEBUG kernel:pci_bus 0000:02: resource 6 [mem 0x000d4000-0x000d7fff] -05:51:18,522 DEBUG kernel:pci_bus 0000:02: resource 7 [mem 0x000d8000-0x000dbfff] -05:51:18,522 DEBUG kernel:pci_bus 0000:02: resource 8 [mem 0x80000000-0xfebfffff] -05:51:18,522 DEBUG kernel:pci_bus 0000:02: resource 9 [io 0x0000-0x0cf7] -05:51:18,522 DEBUG kernel:pci_bus 0000:02: resource 10 [io 0x0d00-0xfeff] -05:51:18,522 DEBUG kernel:pci_bus 0000:03: resource 0 [io 0x4000-0x4fff] -05:51:18,522 DEBUG kernel:pci_bus 0000:03: resource 1 [mem 0xd2400000-0xd24fffff] -05:51:18,522 DEBUG kernel:pci_bus 0000:03: resource 2 [mem 0xd4400000-0xd44fffff 64bit pref] -05:51:18,522 DEBUG kernel:pci_bus 0000:04: resource 0 [io 0x8000-0x8fff] -05:51:18,522 DEBUG kernel:pci_bus 0000:04: resource 1 [mem 0xd2800000-0xd28fffff] -05:51:18,522 DEBUG kernel:pci_bus 0000:04: resource 2 [mem 0xd4800000-0xd48fffff 64bit pref] -05:51:18,522 DEBUG kernel:pci_bus 0000:05: resource 0 [io 0xc000-0xcfff] -05:51:18,522 DEBUG kernel:pci_bus 0000:05: resource 1 [mem 0xd2c00000-0xd2cfffff] -05:51:18,522 DEBUG kernel:pci_bus 0000:05: resource 2 [mem 0xdcb00000-0xdcbfffff 64bit pref] -05:51:18,522 DEBUG kernel:pci_bus 0000:06: resource 1 [mem 0xd3000000-0xd30fffff] -05:51:18,522 DEBUG kernel:pci_bus 0000:06: resource 2 [mem 0xdcd00000-0xdcdfffff 64bit pref] -05:51:18,522 DEBUG kernel:pci_bus 0000:07: resource 1 [mem 0xd3400000-0xd34fffff] -05:51:18,522 DEBUG kernel:pci_bus 0000:07: resource 2 [mem 0xdcf00000-0xdcffffff 64bit pref] -05:51:18,522 DEBUG kernel:pci_bus 0000:08: resource 1 [mem 0xd3800000-0xd38fffff] -05:51:18,522 DEBUG kernel:pci_bus 0000:08: resource 2 [mem 0xdd100000-0xdd1fffff 64bit pref] -05:51:18,522 DEBUG kernel:pci_bus 0000:09: resource 1 [mem 0xd3c00000-0xd3cfffff] -05:51:18,522 DEBUG kernel:pci_bus 0000:09: resource 2 [mem 0xdd300000-0xdd3fffff 64bit pref] -05:51:18,522 DEBUG kernel:pci_bus 0000:0a: resource 1 [mem 0xd4000000-0xd40fffff] -05:51:18,522 DEBUG kernel:pci_bus 0000:0a: resource 2 [mem 0xdd500000-0xdd5fffff 64bit pref] -05:51:18,522 DEBUG kernel:pci_bus 0000:0b: resource 0 [io 0x5000-0x5fff] -05:51:18,522 DEBUG kernel:pci_bus 0000:0b: resource 1 [mem 0xd2500000-0xd25fffff] -05:51:18,522 DEBUG kernel:pci_bus 0000:0b: resource 2 [mem 0xd4500000-0xd45fffff 64bit pref] -05:51:18,522 DEBUG kernel:pci_bus 0000:0c: resource 0 [io 0x9000-0x9fff] -05:51:18,522 DEBUG kernel:pci_bus 0000:0c: resource 1 [mem 0xd2900000-0xd29fffff] -05:51:18,522 DEBUG kernel:pci_bus 0000:0c: resource 2 [mem 0xd4900000-0xd49fffff 64bit pref] -05:51:18,522 DEBUG kernel:pci_bus 0000:0d: resource 0 [io 0xd000-0xdfff] -05:51:18,522 DEBUG kernel:pci_bus 0000:0d: resource 1 [mem 0xd2d00000-0xd2dfffff] -05:51:18,522 DEBUG kernel:pci_bus 0000:0d: resource 2 [mem 0xd4b00000-0xd4bfffff 64bit pref] -05:51:18,522 DEBUG kernel:pci_bus 0000:0e: resource 1 [mem 0xd3100000-0xd31fffff] -05:51:18,522 DEBUG kernel:pci_bus 0000:0e: resource 2 [mem 0xd4d00000-0xd4dfffff 64bit pref] -05:51:18,522 DEBUG kernel:pci_bus 0000:0f: resource 1 [mem 0xd3500000-0xd35fffff] -05:51:18,522 DEBUG kernel:pci_bus 0000:0f: resource 2 [mem 0xd4f00000-0xd4ffffff 64bit pref] -05:51:18,522 DEBUG kernel:pci_bus 0000:10: resource 1 [mem 0xd3900000-0xd39fffff] -05:51:18,522 DEBUG kernel:pci_bus 0000:10: resource 2 [mem 0xd5100000-0xd51fffff 64bit pref] -05:51:18,522 DEBUG kernel:pci_bus 0000:11: resource 1 [mem 0xd3d00000-0xd3dfffff] -05:51:18,522 DEBUG kernel:pci_bus 0000:11: resource 2 [mem 0xd5300000-0xd53fffff 64bit pref] -05:51:18,522 DEBUG kernel:pci_bus 0000:12: resource 1 [mem 0xd4100000-0xd41fffff] -05:51:18,522 DEBUG kernel:pci_bus 0000:12: resource 2 [mem 0xd5500000-0xd55fffff 64bit pref] -05:51:18,522 DEBUG kernel:pci_bus 0000:13: resource 0 [io 0x6000-0x6fff] -05:51:18,522 DEBUG kernel:pci_bus 0000:13: resource 1 [mem 0xd2600000-0xd26fffff] -05:51:18,522 DEBUG kernel:pci_bus 0000:13: resource 2 [mem 0xd4600000-0xd46fffff 64bit pref] -05:51:18,522 DEBUG kernel:pci_bus 0000:14: resource 0 [io 0xa000-0xafff] -05:51:18,522 DEBUG kernel:pci_bus 0000:14: resource 1 [mem 0xd2a00000-0xd2afffff] -05:51:18,522 DEBUG kernel:pci_bus 0000:14: resource 2 [mem 0xdca00000-0xdcafffff 64bit pref] -05:51:18,522 DEBUG kernel:pci_bus 0000:15: resource 0 [io 0xe000-0xefff] -05:51:18,522 DEBUG kernel:pci_bus 0000:15: resource 1 [mem 0xd2e00000-0xd2efffff] -05:51:18,522 DEBUG kernel:pci_bus 0000:15: resource 2 [mem 0xdcc00000-0xdccfffff 64bit pref] -05:51:18,522 DEBUG kernel:pci_bus 0000:16: resource 1 [mem 0xd3200000-0xd32fffff] -05:51:18,522 DEBUG kernel:pci_bus 0000:16: resource 2 [mem 0xdce00000-0xdcefffff 64bit pref] -05:51:18,522 DEBUG kernel:pci_bus 0000:17: resource 1 [mem 0xd3600000-0xd36fffff] -05:51:18,522 DEBUG kernel:pci_bus 0000:17: resource 2 [mem 0xdd000000-0xdd0fffff 64bit pref] -05:51:18,522 DEBUG kernel:pci_bus 0000:18: resource 1 [mem 0xd3a00000-0xd3afffff] -05:51:18,522 DEBUG kernel:pci_bus 0000:18: resource 2 [mem 0xdd200000-0xdd2fffff 64bit pref] -05:51:18,522 DEBUG kernel:pci_bus 0000:19: resource 1 [mem 0xd3e00000-0xd3efffff] -05:51:18,522 DEBUG kernel:pci_bus 0000:19: resource 2 [mem 0xdd400000-0xdd4fffff 64bit pref] -05:51:18,522 DEBUG kernel:pci_bus 0000:1a: resource 1 [mem 0xd4200000-0xd42fffff] -05:51:18,522 DEBUG kernel:pci_bus 0000:1a: resource 2 [mem 0xdd600000-0xdd6fffff 64bit pref] -05:51:18,522 DEBUG kernel:pci_bus 0000:1b: resource 0 [io 0x7000-0x7fff] -05:51:18,522 DEBUG kernel:pci_bus 0000:1b: resource 1 [mem 0xd2700000-0xd27fffff] -05:51:18,522 DEBUG kernel:pci_bus 0000:1b: resource 2 [mem 0xd4700000-0xd47fffff 64bit pref] -05:51:18,522 DEBUG kernel:pci_bus 0000:1c: resource 0 [io 0xb000-0xbfff] -05:51:18,522 DEBUG kernel:pci_bus 0000:1c: resource 1 [mem 0xd2b00000-0xd2bfffff] -05:51:18,522 DEBUG kernel:pci_bus 0000:1c: resource 2 [mem 0xd4a00000-0xd4afffff 64bit pref] -05:51:18,522 DEBUG kernel:pci_bus 0000:1d: resource 1 [mem 0xd2f00000-0xd2ffffff] -05:51:18,522 DEBUG kernel:pci_bus 0000:1d: resource 2 [mem 0xd4c00000-0xd4cfffff 64bit pref] -05:51:18,522 DEBUG kernel:pci_bus 0000:1e: resource 1 [mem 0xd3300000-0xd33fffff] -05:51:18,522 DEBUG kernel:pci_bus 0000:1e: resource 2 [mem 0xd4e00000-0xd4efffff 64bit pref] -05:51:18,522 DEBUG kernel:pci_bus 0000:1f: resource 1 [mem 0xd3700000-0xd37fffff] -05:51:18,522 DEBUG kernel:pci_bus 0000:1f: resource 2 [mem 0xd5000000-0xd50fffff 64bit pref] -05:51:18,522 DEBUG kernel:pci_bus 0000:20: resource 1 [mem 0xd3b00000-0xd3bfffff] -05:51:18,522 DEBUG kernel:pci_bus 0000:20: resource 2 [mem 0xd5200000-0xd52fffff 64bit pref] -05:51:18,522 DEBUG kernel:pci_bus 0000:21: resource 1 [mem 0xd3f00000-0xd3ffffff] -05:51:18,522 DEBUG kernel:pci_bus 0000:21: resource 2 [mem 0xd5400000-0xd54fffff 64bit pref] -05:51:18,522 DEBUG kernel:pci_bus 0000:22: resource 1 [mem 0xd4300000-0xd43fffff] -05:51:18,522 DEBUG kernel:pci_bus 0000:22: resource 2 [mem 0xd5600000-0xd56fffff 64bit pref] -05:51:18,522 INFO kernel:NET: Registered protocol family 2 -05:51:18,522 INFO kernel:IP route cache hash table entries: 65536 (order: 7, 524288 bytes) -05:51:18,522 INFO kernel:TCP established hash table entries: 262144 (order: 10, 4194304 bytes) -05:51:18,527 INFO kernel:TCP bind hash table entries: 65536 (order: 8, 1048576 bytes) -05:51:18,527 INFO kernel:TCP: Hash tables configured (established 262144 bind 65536) -05:51:18,527 INFO kernel:TCP reno registered -05:51:18,527 INFO kernel:NET: Registered protocol family 1 -05:51:18,527 INFO kernel:pci 0000:00:00.0: Limiting direct PCI/PCI transfers -05:51:18,527 DEBUG kernel:pci 0000:00:0f.0: Boot video device -05:51:18,527 INFO kernel:Trying to unpack rootfs image as initramfs... -05:51:18,527 INFO kernel:Freeing initrd memory: 32601k freed -05:51:18,527 INFO kernel:Simple Boot Flag at 0x36 set to 0x80 -05:51:18,527 INFO kernel:audit: initializing netlink socket (disabled) -05:51:18,527 NOTICE kernel:type=2000 audit(1021096275.782:1): initialized -05:51:18,527 INFO kernel:HugeTLB registered 2 MB page size, pre-allocated 0 pages -05:51:18,527 NOTICE kernel:VFS: Disk quotas dquot_6.5.2 -05:51:18,527 WARNING kernel:Dquot-cache hash table entries: 512 (order 0, 4096 bytes) -05:51:18,527 INFO kernel:msgmni has been set to 4005 -05:51:18,527 DEBUG kernel:SELinux: Registering netfilter hooks -05:51:18,527 INFO kernel:alg: No test for stdrng (krng) -05:51:18,527 WARNING kernel:ksign: Installing public key data -05:51:18,527 WARNING kernel:Loading keyring -05:51:18,527 WARNING kernel:- Added public key 8A44323FB303E068 -05:51:18,527 WARNING kernel: - key was been created 363988184 seconds in future -05:51:18,527 WARNING kernel:- User ID: CentOS (Kernel Module GPG key) -05:51:18,527 INFO kernel:Block layer SCSI generic (bsg) driver version 0.4 loaded (major 251) -05:51:18,527 INFO kernel:io scheduler noop registered -05:51:18,527 INFO kernel:io scheduler anticipatory registered -05:51:18,527 INFO kernel:io scheduler deadline registered -05:51:18,527 INFO kernel:io scheduler cfq registered (default) -05:51:18,527 DEBUG kernel:pcieport 0000:00:15.0: setting latency timer to 64 -05:51:18,527 DEBUG kernel: alloc irq_desc for 24 on node -1 -05:51:18,527 DEBUG kernel: alloc kstat_irqs on node -1 -05:51:18,527 DEBUG kernel:pcieport 0000:00:15.0: irq 24 for MSI/MSI-X -05:51:18,527 DEBUG kernel:pcieport 0000:00:15.1: setting latency timer to 64 -05:51:18,527 DEBUG kernel: alloc irq_desc for 25 on node -1 -05:51:18,527 DEBUG kernel: alloc kstat_irqs on node -1 -05:51:18,527 DEBUG kernel:pcieport 0000:00:15.1: irq 25 for MSI/MSI-X -05:51:18,527 DEBUG kernel:pcieport 0000:00:15.2: setting latency timer to 64 -05:51:18,527 DEBUG kernel: alloc irq_desc for 26 on node -1 -05:51:18,527 DEBUG kernel: alloc kstat_irqs on node -1 -05:51:18,527 DEBUG kernel:pcieport 0000:00:15.2: irq 26 for MSI/MSI-X -05:51:18,527 DEBUG kernel:pcieport 0000:00:15.3: setting latency timer to 64 -05:51:18,527 DEBUG kernel: alloc irq_desc for 27 on node -1 -05:51:18,527 DEBUG kernel: alloc kstat_irqs on node -1 -05:51:18,527 DEBUG kernel:pcieport 0000:00:15.3: irq 27 for MSI/MSI-X -05:51:18,527 DEBUG kernel:pcieport 0000:00:15.4: setting latency timer to 64 -05:51:18,527 DEBUG kernel: alloc irq_desc for 28 on node -1 -05:51:18,527 DEBUG kernel: alloc kstat_irqs on node -1 -05:51:18,527 DEBUG kernel:pcieport 0000:00:15.4: irq 28 for MSI/MSI-X -05:51:18,527 DEBUG kernel:pcieport 0000:00:15.5: setting latency timer to 64 -05:51:18,527 DEBUG kernel: alloc irq_desc for 29 on node -1 -05:51:18,527 DEBUG kernel: alloc kstat_irqs on node -1 -05:51:18,527 DEBUG kernel:pcieport 0000:00:15.5: irq 29 for MSI/MSI-X -05:51:18,527 DEBUG kernel:pcieport 0000:00:15.6: setting latency timer to 64 -05:51:18,527 DEBUG kernel: alloc irq_desc for 30 on node -1 -05:51:18,527 DEBUG kernel: alloc kstat_irqs on node -1 -05:51:18,527 DEBUG kernel:pcieport 0000:00:15.6: irq 30 for MSI/MSI-X -05:51:18,527 DEBUG kernel:pcieport 0000:00:15.7: setting latency timer to 64 -05:51:18,527 DEBUG kernel: alloc irq_desc for 31 on node -1 -05:51:18,527 DEBUG kernel: alloc kstat_irqs on node -1 -05:51:18,527 DEBUG kernel:pcieport 0000:00:15.7: irq 31 for MSI/MSI-X -05:51:18,527 DEBUG kernel:pcieport 0000:00:16.0: setting latency timer to 64 -05:51:18,527 DEBUG kernel: alloc irq_desc for 32 on node -1 -05:51:18,527 DEBUG kernel: alloc kstat_irqs on node -1 -05:51:18,527 DEBUG kernel:pcieport 0000:00:16.0: irq 32 for MSI/MSI-X -05:51:18,527 DEBUG kernel:pcieport 0000:00:16.1: setting latency timer to 64 -05:51:18,527 DEBUG kernel: alloc irq_desc for 33 on node -1 -05:51:18,527 DEBUG kernel: alloc kstat_irqs on node -1 -05:51:18,527 DEBUG kernel:pcieport 0000:00:16.1: irq 33 for MSI/MSI-X -05:51:18,527 DEBUG kernel:pcieport 0000:00:16.2: setting latency timer to 64 -05:51:18,527 DEBUG kernel: alloc irq_desc for 34 on node -1 -05:51:18,527 DEBUG kernel: alloc kstat_irqs on node -1 -05:51:18,527 DEBUG kernel:pcieport 0000:00:16.2: irq 34 for MSI/MSI-X -05:51:18,527 DEBUG kernel:pcieport 0000:00:16.3: setting latency timer to 64 -05:51:18,527 DEBUG kernel: alloc irq_desc for 35 on node -1 -05:51:18,527 DEBUG kernel: alloc kstat_irqs on node -1 -05:51:18,527 DEBUG kernel:pcieport 0000:00:16.3: irq 35 for MSI/MSI-X -05:51:18,527 DEBUG kernel:pcieport 0000:00:16.4: setting latency timer to 64 -05:51:18,527 DEBUG kernel: alloc irq_desc for 36 on node -1 -05:51:18,527 DEBUG kernel: alloc kstat_irqs on node -1 -05:51:18,527 DEBUG kernel:pcieport 0000:00:16.4: irq 36 for MSI/MSI-X -05:51:18,527 DEBUG kernel:pcieport 0000:00:16.5: setting latency timer to 64 -05:51:18,527 DEBUG kernel: alloc irq_desc for 37 on node -1 -05:51:18,527 DEBUG kernel: alloc kstat_irqs on node -1 -05:51:18,527 DEBUG kernel:pcieport 0000:00:16.5: irq 37 for MSI/MSI-X -05:51:18,527 DEBUG kernel:pcieport 0000:00:16.6: setting latency timer to 64 -05:51:18,527 DEBUG kernel: alloc irq_desc for 38 on node -1 -05:51:18,527 DEBUG kernel: alloc kstat_irqs on node -1 -05:51:18,527 DEBUG kernel:pcieport 0000:00:16.6: irq 38 for MSI/MSI-X -05:51:18,527 DEBUG kernel:pcieport 0000:00:16.7: setting latency timer to 64 -05:51:18,527 DEBUG kernel: alloc irq_desc for 39 on node -1 -05:51:18,527 DEBUG kernel: alloc kstat_irqs on node -1 -05:51:18,527 DEBUG kernel:pcieport 0000:00:16.7: irq 39 for MSI/MSI-X -05:51:18,527 DEBUG kernel:pcieport 0000:00:17.0: setting latency timer to 64 -05:51:18,527 DEBUG kernel: alloc irq_desc for 40 on node -1 -05:51:18,527 DEBUG kernel: alloc kstat_irqs on node -1 -05:51:18,527 DEBUG kernel:pcieport 0000:00:17.0: irq 40 for MSI/MSI-X -05:51:18,527 DEBUG kernel:pcieport 0000:00:17.1: setting latency timer to 64 -05:51:18,527 DEBUG kernel: alloc irq_desc for 41 on node -1 -05:51:18,527 DEBUG kernel: alloc kstat_irqs on node -1 -05:51:18,527 DEBUG kernel:pcieport 0000:00:17.1: irq 41 for MSI/MSI-X -05:51:18,527 DEBUG kernel:pcieport 0000:00:17.2: setting latency timer to 64 -05:51:18,527 DEBUG kernel: alloc irq_desc for 42 on node -1 -05:51:18,527 DEBUG kernel: alloc kstat_irqs on node -1 -05:51:18,527 DEBUG kernel:pcieport 0000:00:17.2: irq 42 for MSI/MSI-X -05:51:18,527 DEBUG kernel:pcieport 0000:00:17.3: setting latency timer to 64 -05:51:18,527 DEBUG kernel: alloc irq_desc for 43 on node -1 -05:51:18,527 DEBUG kernel: alloc kstat_irqs on node -1 -05:51:18,527 DEBUG kernel:pcieport 0000:00:17.3: irq 43 for MSI/MSI-X -05:51:18,527 DEBUG kernel:pcieport 0000:00:17.4: setting latency timer to 64 -05:51:18,527 DEBUG kernel: alloc irq_desc for 44 on node -1 -05:51:18,527 DEBUG kernel: alloc kstat_irqs on node -1 -05:51:18,527 DEBUG kernel:pcieport 0000:00:17.4: irq 44 for MSI/MSI-X -05:51:18,527 DEBUG kernel:pcieport 0000:00:17.5: setting latency timer to 64 -05:51:18,527 DEBUG kernel: alloc irq_desc for 45 on node -1 -05:51:18,527 DEBUG kernel: alloc kstat_irqs on node -1 -05:51:18,527 DEBUG kernel:pcieport 0000:00:17.5: irq 45 for MSI/MSI-X -05:51:18,527 DEBUG kernel:pcieport 0000:00:17.6: setting latency timer to 64 -05:51:18,527 DEBUG kernel: alloc irq_desc for 46 on node -1 -05:51:18,527 DEBUG kernel: alloc kstat_irqs on node -1 -05:51:18,527 DEBUG kernel:pcieport 0000:00:17.6: irq 46 for MSI/MSI-X -05:51:18,527 DEBUG kernel:pcieport 0000:00:17.7: setting latency timer to 64 -05:51:18,527 DEBUG kernel: alloc irq_desc for 47 on node -1 -05:51:18,527 DEBUG kernel: alloc kstat_irqs on node -1 -05:51:18,527 DEBUG kernel:pcieport 0000:00:17.7: irq 47 for MSI/MSI-X -05:51:18,527 DEBUG kernel:pcieport 0000:00:18.0: setting latency timer to 64 -05:51:18,527 DEBUG kernel: alloc irq_desc for 48 on node -1 -05:51:18,527 DEBUG kernel: alloc kstat_irqs on node -1 -05:51:18,527 DEBUG kernel:pcieport 0000:00:18.0: irq 48 for MSI/MSI-X -05:51:18,527 DEBUG kernel:pcieport 0000:00:18.1: setting latency timer to 64 -05:51:18,527 DEBUG kernel: alloc irq_desc for 49 on node -1 -05:51:18,527 DEBUG kernel: alloc kstat_irqs on node -1 -05:51:18,527 DEBUG kernel:pcieport 0000:00:18.1: irq 49 for MSI/MSI-X -05:51:18,527 DEBUG kernel:pcieport 0000:00:18.2: setting latency timer to 64 -05:51:18,527 DEBUG kernel: alloc irq_desc for 50 on node -1 -05:51:18,527 DEBUG kernel: alloc kstat_irqs on node -1 -05:51:18,527 DEBUG kernel:pcieport 0000:00:18.2: irq 50 for MSI/MSI-X -05:51:18,527 DEBUG kernel:pcieport 0000:00:18.3: setting latency timer to 64 -05:51:18,527 DEBUG kernel: alloc irq_desc for 51 on node -1 -05:51:18,527 DEBUG kernel: alloc kstat_irqs on node -1 -05:51:18,527 DEBUG kernel:pcieport 0000:00:18.3: irq 51 for MSI/MSI-X -05:51:18,527 DEBUG kernel:pcieport 0000:00:18.4: setting latency timer to 64 -05:51:18,527 DEBUG kernel: alloc irq_desc for 52 on node -1 -05:51:18,527 DEBUG kernel: alloc kstat_irqs on node -1 -05:51:18,527 DEBUG kernel:pcieport 0000:00:18.4: irq 52 for MSI/MSI-X -05:51:18,527 DEBUG kernel:pcieport 0000:00:18.5: setting latency timer to 64 -05:51:18,527 DEBUG kernel: alloc irq_desc for 53 on node -1 -05:51:18,527 DEBUG kernel: alloc kstat_irqs on node -1 -05:51:18,527 DEBUG kernel:pcieport 0000:00:18.5: irq 53 for MSI/MSI-X -05:51:18,527 DEBUG kernel:pcieport 0000:00:18.6: setting latency timer to 64 -05:51:18,527 DEBUG kernel: alloc irq_desc for 54 on node -1 -05:51:18,527 DEBUG kernel: alloc kstat_irqs on node -1 -05:51:18,527 DEBUG kernel:pcieport 0000:00:18.6: irq 54 for MSI/MSI-X -05:51:18,527 DEBUG kernel:pcieport 0000:00:18.7: setting latency timer to 64 -05:51:18,527 DEBUG kernel: alloc irq_desc for 55 on node -1 -05:51:18,527 DEBUG kernel: alloc kstat_irqs on node -1 -05:51:18,527 DEBUG kernel:pcieport 0000:00:18.7: irq 55 for MSI/MSI-X -05:51:18,527 INFO kernel:pci_hotplug: PCI Hot Plug PCI Core version: 0.5 -05:51:18,527 INFO kernel:pciehp 0000:00:15.0:pcie04: HPC vendor_id 15ad device_id 7a0 ss_vid 0 ss_did 0 -05:51:18,527 DEBUG kernel:pciehp 0000:00:15.0:pcie04: service driver pciehp loaded -05:51:18,527 INFO kernel:pciehp 0000:00:15.1:pcie04: HPC vendor_id 15ad device_id 7a0 ss_vid 0 ss_did 0 -05:51:18,527 DEBUG kernel:pciehp 0000:00:15.1:pcie04: service driver pciehp loaded -05:51:18,527 INFO kernel:pciehp 0000:00:15.2:pcie04: HPC vendor_id 15ad device_id 7a0 ss_vid 0 ss_did 0 -05:51:18,527 DEBUG kernel:pciehp 0000:00:15.2:pcie04: service driver pciehp loaded -05:51:18,527 INFO kernel:pciehp 0000:00:15.3:pcie04: HPC vendor_id 15ad device_id 7a0 ss_vid 0 ss_did 0 -05:51:18,527 DEBUG kernel:pciehp 0000:00:15.3:pcie04: service driver pciehp loaded -05:51:18,527 INFO kernel:pciehp 0000:00:15.4:pcie04: HPC vendor_id 15ad device_id 7a0 ss_vid 0 ss_did 0 -05:51:18,527 DEBUG kernel:pciehp 0000:00:15.4:pcie04: service driver pciehp loaded -05:51:18,527 INFO kernel:pciehp 0000:00:15.5:pcie04: HPC vendor_id 15ad device_id 7a0 ss_vid 0 ss_did 0 -05:51:18,527 DEBUG kernel:pciehp 0000:00:15.5:pcie04: service driver pciehp loaded -05:51:18,527 INFO kernel:pciehp 0000:00:15.6:pcie04: HPC vendor_id 15ad device_id 7a0 ss_vid 0 ss_did 0 -05:51:18,527 DEBUG kernel:pciehp 0000:00:15.6:pcie04: service driver pciehp loaded -05:51:18,527 INFO kernel:pciehp 0000:00:15.7:pcie04: HPC vendor_id 15ad device_id 7a0 ss_vid 0 ss_did 0 -05:51:18,527 DEBUG kernel:pciehp 0000:00:15.7:pcie04: service driver pciehp loaded -05:51:18,527 INFO kernel:pciehp 0000:00:16.0:pcie04: HPC vendor_id 15ad device_id 7a0 ss_vid 0 ss_did 0 -05:51:18,527 DEBUG kernel:pciehp 0000:00:16.0:pcie04: service driver pciehp loaded -05:51:18,527 INFO kernel:pciehp 0000:00:16.1:pcie04: HPC vendor_id 15ad device_id 7a0 ss_vid 0 ss_did 0 -05:51:18,527 DEBUG kernel:pciehp 0000:00:16.1:pcie04: service driver pciehp loaded -05:51:18,527 INFO kernel:pciehp 0000:00:16.2:pcie04: HPC vendor_id 15ad device_id 7a0 ss_vid 0 ss_did 0 -05:51:18,527 DEBUG kernel:pciehp 0000:00:16.2:pcie04: service driver pciehp loaded -05:51:18,527 INFO kernel:pciehp 0000:00:16.3:pcie04: HPC vendor_id 15ad device_id 7a0 ss_vid 0 ss_did 0 -05:51:18,527 DEBUG kernel:pciehp 0000:00:16.3:pcie04: service driver pciehp loaded -05:51:18,527 INFO kernel:pciehp 0000:00:16.4:pcie04: HPC vendor_id 15ad device_id 7a0 ss_vid 0 ss_did 0 -05:51:18,527 DEBUG kernel:pciehp 0000:00:16.4:pcie04: service driver pciehp loaded -05:51:18,527 INFO kernel:pciehp 0000:00:16.5:pcie04: HPC vendor_id 15ad device_id 7a0 ss_vid 0 ss_did 0 -05:51:18,527 DEBUG kernel:pciehp 0000:00:16.5:pcie04: service driver pciehp loaded -05:51:18,527 INFO kernel:pciehp 0000:00:16.6:pcie04: HPC vendor_id 15ad device_id 7a0 ss_vid 0 ss_did 0 -05:51:18,527 DEBUG kernel:pciehp 0000:00:16.6:pcie04: service driver pciehp loaded -05:51:18,527 INFO kernel:pciehp 0000:00:16.7:pcie04: HPC vendor_id 15ad device_id 7a0 ss_vid 0 ss_did 0 -05:51:18,527 DEBUG kernel:pciehp 0000:00:16.7:pcie04: service driver pciehp loaded -05:51:18,527 INFO kernel:pciehp 0000:00:17.0:pcie04: HPC vendor_id 15ad device_id 7a0 ss_vid 0 ss_did 0 -05:51:18,527 DEBUG kernel:pciehp 0000:00:17.0:pcie04: service driver pciehp loaded -05:51:18,527 INFO kernel:pciehp 0000:00:17.1:pcie04: HPC vendor_id 15ad device_id 7a0 ss_vid 0 ss_did 0 -05:51:18,527 DEBUG kernel:pciehp 0000:00:17.1:pcie04: service driver pciehp loaded -05:51:18,527 INFO kernel:pciehp 0000:00:17.2:pcie04: HPC vendor_id 15ad device_id 7a0 ss_vid 0 ss_did 0 -05:51:18,527 DEBUG kernel:pciehp 0000:00:17.2:pcie04: service driver pciehp loaded -05:51:18,527 INFO kernel:pciehp 0000:00:17.3:pcie04: HPC vendor_id 15ad device_id 7a0 ss_vid 0 ss_did 0 -05:51:18,527 DEBUG kernel:pciehp 0000:00:17.3:pcie04: service driver pciehp loaded -05:51:18,527 INFO kernel:pciehp 0000:00:17.4:pcie04: HPC vendor_id 15ad device_id 7a0 ss_vid 0 ss_did 0 -05:51:18,527 DEBUG kernel:pciehp 0000:00:17.4:pcie04: service driver pciehp loaded -05:51:18,527 INFO kernel:pciehp 0000:00:17.5:pcie04: HPC vendor_id 15ad device_id 7a0 ss_vid 0 ss_did 0 -05:51:18,527 DEBUG kernel:pciehp 0000:00:17.5:pcie04: service driver pciehp loaded -05:51:18,527 INFO kernel:pciehp 0000:00:17.6:pcie04: HPC vendor_id 15ad device_id 7a0 ss_vid 0 ss_did 0 -05:51:18,527 DEBUG kernel:pciehp 0000:00:17.6:pcie04: service driver pciehp loaded -05:51:18,527 INFO kernel:pciehp 0000:00:17.7:pcie04: HPC vendor_id 15ad device_id 7a0 ss_vid 0 ss_did 0 -05:51:18,527 DEBUG kernel:pciehp 0000:00:17.7:pcie04: service driver pciehp loaded -05:51:18,527 INFO kernel:pciehp 0000:00:18.0:pcie04: HPC vendor_id 15ad device_id 7a0 ss_vid 0 ss_did 0 -05:51:18,527 DEBUG kernel:pciehp 0000:00:18.0:pcie04: service driver pciehp loaded -05:51:18,527 INFO kernel:pciehp 0000:00:18.1:pcie04: HPC vendor_id 15ad device_id 7a0 ss_vid 0 ss_did 0 -05:51:18,527 DEBUG kernel:pciehp 0000:00:18.1:pcie04: service driver pciehp loaded -05:51:18,527 INFO kernel:pciehp 0000:00:18.2:pcie04: HPC vendor_id 15ad device_id 7a0 ss_vid 0 ss_did 0 -05:51:18,527 DEBUG kernel:pciehp 0000:00:18.2:pcie04: service driver pciehp loaded -05:51:18,527 INFO kernel:pciehp 0000:00:18.3:pcie04: HPC vendor_id 15ad device_id 7a0 ss_vid 0 ss_did 0 -05:51:18,527 DEBUG kernel:pciehp 0000:00:18.3:pcie04: service driver pciehp loaded -05:51:18,527 INFO kernel:pciehp 0000:00:18.4:pcie04: HPC vendor_id 15ad device_id 7a0 ss_vid 0 ss_did 0 -05:51:18,527 DEBUG kernel:pciehp 0000:00:18.4:pcie04: service driver pciehp loaded -05:51:18,527 INFO kernel:pciehp 0000:00:18.5:pcie04: HPC vendor_id 15ad device_id 7a0 ss_vid 0 ss_did 0 -05:51:18,527 DEBUG kernel:pciehp 0000:00:18.5:pcie04: service driver pciehp loaded -05:51:18,527 INFO kernel:pciehp 0000:00:18.6:pcie04: HPC vendor_id 15ad device_id 7a0 ss_vid 0 ss_did 0 -05:51:18,527 DEBUG kernel:pciehp 0000:00:18.6:pcie04: service driver pciehp loaded -05:51:18,527 INFO kernel:pciehp 0000:00:18.7:pcie04: HPC vendor_id 15ad device_id 7a0 ss_vid 0 ss_did 0 -05:51:18,527 DEBUG kernel:pciehp 0000:00:18.7:pcie04: service driver pciehp loaded -05:51:18,527 INFO kernel:pciehp: PCI Express Hot Plug Controller Driver version: 0.4 -05:51:18,527 INFO kernel:acpiphp: ACPI Hot Plug PCI Controller Driver version: 0.5 -05:51:18,527 INFO kernel:acpiphp: Slot [32] registered -05:51:18,527 INFO kernel:acpiphp: Slot [33] registered -05:51:18,527 INFO kernel:acpiphp: Slot [34] registered -05:51:18,527 INFO kernel:acpiphp: Slot [35] registered -05:51:18,527 INFO kernel:acpiphp: Slot [36] registered -05:51:18,527 INFO kernel:acpiphp: Slot [37] registered -05:51:18,527 INFO kernel:acpiphp: Slot [38] registered -05:51:18,527 INFO kernel:acpiphp: Slot [39] registered -05:51:18,527 INFO kernel:acpiphp: Slot [40] registered -05:51:18,527 INFO kernel:acpiphp: Slot [41] registered -05:51:18,527 INFO kernel:acpiphp: Slot [42] registered -05:51:18,527 INFO kernel:acpiphp: Slot [43] registered -05:51:18,527 INFO kernel:acpiphp: Slot [44] registered -05:51:18,527 INFO kernel:acpiphp: Slot [45] registered -05:51:18,527 INFO kernel:acpiphp: Slot [46] registered -05:51:18,527 INFO kernel:acpiphp: Slot [47] registered -05:51:18,527 INFO kernel:acpiphp: Slot [48] registered -05:51:18,527 INFO kernel:acpiphp: Slot [49] registered -05:51:18,527 INFO kernel:acpiphp: Slot [50] registered -05:51:18,527 INFO kernel:acpiphp: Slot [51] registered -05:51:18,527 INFO kernel:acpiphp: Slot [52] registered -05:51:18,527 INFO kernel:acpiphp: Slot [53] registered -05:51:18,527 INFO kernel:acpiphp: Slot [54] registered -05:51:18,527 INFO kernel:acpiphp: Slot [55] registered -05:51:18,527 INFO kernel:acpiphp: Slot [56] registered -05:51:18,527 INFO kernel:acpiphp: Slot [57] registered -05:51:18,527 INFO kernel:acpiphp: Slot [58] registered -05:51:18,527 INFO kernel:acpiphp: Slot [59] registered -05:51:18,527 INFO kernel:acpiphp: Slot [60] registered -05:51:18,527 INFO kernel:acpiphp: Slot [61] registered -05:51:18,527 INFO kernel:acpiphp: Slot [62] registered -05:51:18,527 INFO kernel:acpiphp: Slot [63] registered -05:51:18,527 WARNING kernel:acpiphp_glue: Slot 160 already registered by another hotplug driver -05:51:18,527 WARNING kernel:acpiphp_glue: Slot 192 already registered by another hotplug driver -05:51:18,527 WARNING kernel:acpiphp_glue: Slot 224 already registered by another hotplug driver -05:51:18,527 WARNING kernel:acpiphp_glue: Slot 256 already registered by another hotplug driver -05:51:18,527 WARNING kernel:acpiphp_glue: Slot 161 already registered by another hotplug driver -05:51:18,527 WARNING kernel:acpiphp_glue: Slot 162 already registered by another hotplug driver -05:51:18,527 WARNING kernel:acpiphp_glue: Slot 163 already registered by another hotplug driver -05:51:18,527 WARNING kernel:acpiphp_glue: Slot 164 already registered by another hotplug driver -05:51:18,527 WARNING kernel:acpiphp_glue: Slot 165 already registered by another hotplug driver -05:51:18,527 WARNING kernel:acpiphp_glue: Slot 166 already registered by another hotplug driver -05:51:18,527 WARNING kernel:acpiphp_glue: Slot 167 already registered by another hotplug driver -05:51:18,527 WARNING kernel:acpiphp_glue: Slot 193 already registered by another hotplug driver -05:51:18,527 WARNING kernel:acpiphp_glue: Slot 194 already registered by another hotplug driver -05:51:18,527 WARNING kernel:acpiphp_glue: Slot 195 already registered by another hotplug driver -05:51:18,527 WARNING kernel:acpiphp_glue: Slot 196 already registered by another hotplug driver -05:51:18,527 WARNING kernel:acpiphp_glue: Slot 197 already registered by another hotplug driver -05:51:18,527 WARNING kernel:acpiphp_glue: Slot 198 already registered by another hotplug driver -05:51:18,527 WARNING kernel:acpiphp_glue: Slot 199 already registered by another hotplug driver -05:51:18,527 WARNING kernel:acpiphp_glue: Slot 225 already registered by another hotplug driver -05:51:18,527 WARNING kernel:acpiphp_glue: Slot 226 already registered by another hotplug driver -05:51:18,527 WARNING kernel:acpiphp_glue: Slot 227 already registered by another hotplug driver -05:51:18,527 WARNING kernel:acpiphp_glue: Slot 228 already registered by another hotplug driver -05:51:18,527 WARNING kernel:acpiphp_glue: Slot 229 already registered by another hotplug driver -05:51:18,527 WARNING kernel:acpiphp_glue: Slot 230 already registered by another hotplug driver -05:51:18,527 WARNING kernel:acpiphp_glue: Slot 231 already registered by another hotplug driver -05:51:18,527 WARNING kernel:acpiphp_glue: Slot 257 already registered by another hotplug driver -05:51:18,527 WARNING kernel:acpiphp_glue: Slot 258 already registered by another hotplug driver -05:51:18,527 WARNING kernel:acpiphp_glue: Slot 259 already registered by another hotplug driver -05:51:18,527 WARNING kernel:acpiphp_glue: Slot 260 already registered by another hotplug driver -05:51:18,527 WARNING kernel:acpiphp_glue: Slot 261 already registered by another hotplug driver -05:51:18,527 WARNING kernel:acpiphp_glue: Slot 262 already registered by another hotplug driver -05:51:18,527 WARNING kernel:acpiphp_glue: Slot 263 already registered by another hotplug driver -05:51:18,527 INFO kernel:ipmi message handler version 39.2 -05:51:18,527 INFO kernel:IPMI System Interface driver. -05:51:18,527 INFO kernel:ipmi_si: Adding default-specified kcs state machine -05:51:18,527 INFO kernel:ipmi_si: Trying default-specified kcs state machine at i/o address 0xca2, slave address 0x0, irq 0 -05:51:18,527 INFO kernel:ipmi_si: Interface detection failed -05:51:18,527 INFO kernel:ipmi_si: Adding default-specified smic state machine -05:51:18,527 INFO kernel:ipmi_si: Trying default-specified smic state machine at i/o address 0xca9, slave address 0x0, irq 0 -05:51:18,527 INFO kernel:ipmi_si: Interface detection failed -05:51:18,527 INFO kernel:ipmi_si: Adding default-specified bt state machine -05:51:18,527 INFO kernel:ipmi_si: Trying default-specified bt state machine at i/o address 0xe4, slave address 0x0, irq 0 -05:51:18,527 INFO kernel:ipmi_si: Interface detection failed -05:51:18,527 WARNING kernel:ipmi_si: Unable to find any System Interface(s) -05:51:18,527 INFO kernel:ACPI: AC Adapter [ACAD] (on-line) -05:51:18,527 INFO kernel:input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input0 -05:51:18,527 INFO kernel:ACPI: Power Button [PWRF] -05:51:18,527 DEBUG kernel:ACPI: acpi_idle registered with cpuidle -05:51:18,527 WARNING kernel:ACPI Exception: AE_NOT_FOUND, No or invalid critical threshold (20090903/thermal-386) -05:51:18,527 INFO kernel:GHES: HEST is not enabled! -05:51:18,527 INFO kernel:Non-volatile memory driver v1.3 -05:51:18,527 INFO kernel:Linux agpgart interface v0.103 -05:51:18,527 INFO kernel:agpgart-intel 0000:00:00.0: Intel 440BX Chipset -05:51:18,527 INFO kernel:agpgart-intel 0000:00:00.0: AGP aperture is 256M @ 0x0 -05:51:18,527 INFO kernel:crash memory driver: version 1.1 -05:51:18,527 INFO kernel:Serial: 8250/16550 driver, 4 ports, IRQ sharing enabled -05:51:18,527 INFO kernel:serial8250: ttyS0 at I/O 0x3f8 (irq = 4) is a 16550A -05:51:18,527 INFO kernel:serial8250: ttyS1 at I/O 0x2f8 (irq = 3) is a 16550A -05:51:18,527 INFO kernel:00:0a: ttyS0 at I/O 0x3f8 (irq = 4) is a 16550A -05:51:18,527 INFO kernel:00:0b: ttyS1 at I/O 0x2f8 (irq = 3) is a 16550A -05:51:18,527 INFO kernel:brd: module loaded -05:51:18,527 INFO kernel:loop: module loaded -05:51:18,527 INFO kernel:input: Macintosh mouse button emulation as /devices/virtual/input/input1 -05:51:18,527 INFO kernel:Fixed MDIO Bus: probed -05:51:18,527 INFO kernel:ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver -05:51:18,527 INFO kernel:ohci_hcd: USB 1.1 'Open' Host Controller (OHCI) Driver -05:51:18,527 INFO kernel:uhci_hcd: USB Universal Host Controller Interface driver -05:51:18,527 INFO kernel:PNP: PS/2 Controller [PNP0303:KBC,PNP0f13:MOUS] at 0x60,0x64 irq 1,12 -05:51:18,527 INFO kernel:Refined TSC clocksource calibration: 2400.080 MHz. -05:51:18,527 INFO kernel:Switching to clocksource tsc -05:51:18,527 INFO kernel:serio: i8042 KBD port at 0x60,0x64 irq 1 -05:51:18,527 INFO kernel:serio: i8042 AUX port at 0x60,0x64 irq 12 -05:51:18,527 INFO kernel:mice: PS/2 mouse device common for all mice -05:51:18,527 INFO kernel:rtc_cmos 00:04: rtc core: registered rtc_cmos as rtc0 -05:51:18,527 INFO kernel:rtc0: alarms up to one month, y3k, 114 bytes nvram, hpet irqs -05:51:18,527 INFO kernel:cpuidle: using governor ladder -05:51:18,527 INFO kernel:cpuidle: using governor menu -05:51:18,527 INFO kernel:EFI Variables Facility v0.08 2004-May-17 -05:51:18,527 INFO kernel:usbcore: registered new interface driver hiddev -05:51:18,527 INFO kernel:usbcore: registered new interface driver usbhid -05:51:18,527 INFO kernel:usbhid: v2.6:USB HID core driver -05:51:18,527 INFO kernel:GRE over IPv4 demultiplexor driver -05:51:18,527 INFO kernel:TCP cubic registered -05:51:18,527 INFO kernel:input: AT Translated Set 2 keyboard as /devices/platform/i8042/serio0/input/input2 -05:51:18,527 INFO kernel:Initializing XFRM netlink socket -05:51:18,527 INFO kernel:NET: Registered protocol family 17 -05:51:18,527 WARNING kernel:registered taskstats version 1 -05:51:18,527 INFO kernel:input: ImPS/2 Generic Wheel Mouse as /devices/platform/i8042/serio1/input/input3 -05:51:18,527 INFO kernel:rtc_cmos 00:04: setting system clock to 2002-05-11 05:51:18 UTC (1021096278) -05:51:18,527 INFO kernel:Initalizing network drop monitor service -05:51:18,527 INFO kernel:Freeing unused kernel memory: 1276k freed -05:51:18,527 INFO kernel:Write protecting the kernel read-only data: 10240k -05:51:18,527 INFO kernel:Freeing unused kernel memory: 800k freed -05:51:18,527 INFO kernel:Freeing unused kernel memory: 1588k freed -05:51:20,557 INFO kernel:squashfs: version 4.0 (2009/01/31) Phillip Lougher -05:51:20,568 INFO kernel:Loading iSCSI transport class v2.0-870. -05:51:20,587 NOTICE kernel:iscsi: registered transport (tcp) -05:51:20,594 INFO kernel:Floppy drive(s): fd0 is 1.44M -05:51:20,605 INFO kernel:FDC 0 is a post-1991 82077 -05:51:20,610 INFO kernel:BIOS EDD facility v0.16 2004-Jun-25, 2 devices found -05:51:20,614 INFO kernel:input: PC Speaker as /devices/platform/pcspkr/input/input4 -05:51:20,620 INFO kernel:No iBFT detected. -05:51:20,655 INFO kernel:NET: Registered protocol family 10 -05:51:20,657 INFO kernel:lo: Disabled Privacy Extensions -05:51:20,739 DEBUG kernel:ata_piix 0000:00:07.1: version 2.13 -05:51:20,740 INFO kernel:scsi0 : ata_piix -05:51:20,740 INFO kernel:scsi1 : ata_piix -05:51:20,740 INFO kernel:ata1: PATA max UDMA/33 cmd 0x1f0 ctl 0x3f6 bmdma 0x10c0 irq 14 -05:51:20,740 INFO kernel:ata2: PATA max UDMA/33 cmd 0x170 ctl 0x376 bmdma 0x10c8 irq 15 -05:51:20,750 ERR udevd-work: device node '/dev/rtc' already exists, link to '/dev/rtc0' will not overwrite it -05:51:20,926 INFO kernel:ata2.00: ATAPI: VMware Virtual IDE CDROM Drive, 00000001, max UDMA/33 -05:51:20,934 INFO kernel:ata2.00: configured for UDMA/33 -05:51:20,934 NOTICE kernel:scsi 1:0:0:0: CD-ROM NECVMWar VMware IDE CDR10 1.00 PQ: 0 ANSI: 5 -05:51:20,959 INFO kernel:Fusion MPT base driver 3.04.20 -05:51:20,959 INFO kernel:Copyright (c) 1999-2008 LSI Corporation -05:51:20,971 INFO kernel:Fusion MPT SPI Host driver 3.04.20 -05:51:20,971 DEBUG kernel: alloc irq_desc for 17 on node -1 -05:51:20,971 DEBUG kernel: alloc kstat_irqs on node -1 -05:51:20,971 INFO kernel:mptspi 0000:00:10.0: PCI INT A -> GSI 17 (level, low) -> IRQ 17 -05:51:20,972 INFO kernel:mptbase: ioc0: Initiating bringup -05:51:20,990 INFO kernel:ioc0: LSI53C1030 B0: Capabilities={Initiator} -05:51:21,031 INFO kernel:scsi2 : ioc0: LSI53C1030 B0, FwRev=01032920h, Ports=1, MaxQ=128, IRQ=17 -05:51:21,061 NOTICE kernel:scsi 2:0:0:0: Direct-Access VMware Virtual disk 1.0 PQ: 0 ANSI: 2 -05:51:21,061 INFO kernel:scsi target2:0:0: Beginning Domain Validation -05:51:21,061 INFO kernel:scsi target2:0:0: Domain Validation skipping write tests -05:51:21,061 INFO kernel:scsi target2:0:0: Ending Domain Validation -05:51:21,061 INFO kernel:scsi target2:0:0: FAST-40 WIDE SCSI 80.0 MB/s ST (25 ns, offset 127) -05:51:21,061 NOTICE kernel:scsi 2:0:1:0: Direct-Access VMware Virtual disk 1.0 PQ: 0 ANSI: 2 -05:51:21,061 INFO kernel:scsi target2:0:1: Beginning Domain Validation -05:51:21,061 INFO kernel:scsi target2:0:1: Domain Validation skipping write tests -05:51:21,061 INFO kernel:scsi target2:0:1: Ending Domain Validation -05:51:21,061 INFO kernel:scsi target2:0:1: FAST-40 WIDE SCSI 80.0 MB/s ST (25 ns, offset 127) -05:51:21,088 WARNING kernel:sr0: scsi3-mmc drive: 1x/1x writer dvd-ram cd/rw xa/form2 cdda tray -05:51:21,088 INFO kernel:Uniform CD-ROM driver Revision: 3.20 -05:51:21,088 DEBUG kernel:sr 1:0:0:0: Attached scsi CD-ROM sr0 -05:51:21,098 INFO kernel:e1000: Intel(R) PRO/1000 Network Driver - version 7.3.21-k8-NAPI -05:51:21,098 INFO kernel:e1000: Copyright (c) 1999-2006 Intel Corporation. -05:51:21,098 DEBUG kernel: alloc irq_desc for 18 on node -1 -05:51:21,098 DEBUG kernel: alloc kstat_irqs on node -1 -05:51:21,098 INFO kernel:e1000 0000:02:00.0: PCI INT A -> GSI 18 (level, low) -> IRQ 18 -05:51:21,098 DEBUG kernel:e1000 0000:02:00.0: setting latency timer to 64 -05:51:21,447 INFO kernel:e1000 0000:02:00.0: eth0: (PCI:66MHz:32-bit) 00:0c:29:21:89:af -05:51:21,447 INFO kernel:e1000 0000:02:00.0: eth0: Intel(R) PRO/1000 Network Connection -05:51:21,447 DEBUG kernel: alloc irq_desc for 19 on node -1 -05:51:21,447 DEBUG kernel: alloc kstat_irqs on node -1 -05:51:21,447 INFO kernel:e1000 0000:02:01.0: PCI INT A -> GSI 19 (level, low) -> IRQ 19 -05:51:21,447 DEBUG kernel:e1000 0000:02:01.0: setting latency timer to 64 -05:51:21,793 INFO kernel:e1000 0000:02:01.0: eth1: (PCI:66MHz:32-bit) 00:0c:29:21:89:b9 -05:51:21,793 INFO kernel:e1000 0000:02:01.0: eth1: Intel(R) PRO/1000 Network Connection -05:51:21,793 DEBUG kernel: alloc irq_desc for 16 on node -1 -05:51:21,793 DEBUG kernel: alloc kstat_irqs on node -1 -05:51:21,793 INFO kernel:e1000 0000:02:02.0: PCI INT A -> GSI 16 (level, low) -> IRQ 16 -05:51:21,793 DEBUG kernel:e1000 0000:02:02.0: setting latency timer to 64 -05:51:22,142 INFO kernel:e1000 0000:02:02.0: eth2: (PCI:66MHz:32-bit) 00:0c:29:21:89:c3 -05:51:22,142 INFO kernel:e1000 0000:02:02.0: eth2: Intel(R) PRO/1000 Network Connection -05:51:22,142 INFO kernel:e1000 0000:02:03.0: PCI INT A -> GSI 17 (level, low) -> IRQ 17 -05:51:22,142 DEBUG kernel:e1000 0000:02:03.0: setting latency timer to 64 -05:51:22,485 INFO kernel:e1000 0000:02:03.0: eth3: (PCI:66MHz:32-bit) 00:0c:29:21:89:cd -05:51:22,485 INFO kernel:e1000 0000:02:03.0: eth3: Intel(R) PRO/1000 Network Connection -05:51:22,515 NOTICE kernel:sd 2:0:0:0: [sda] 33554432 512-byte logical blocks: (17.1 GB/16.0 GiB) -05:51:22,515 NOTICE kernel:sd 2:0:0:0: [sda] Write Protect is off -05:51:22,515 DEBUG kernel:sd 2:0:0:0: [sda] Mode Sense: 61 00 00 00 -05:51:22,515 NOTICE kernel:sd 2:0:0:0: [sda] Cache data unavailable -05:51:22,515 ERR kernel:sd 2:0:0:0: [sda] Assuming drive cache: write through -05:51:22,515 NOTICE kernel:sd 2:0:0:0: [sda] Cache data unavailable -05:51:22,515 ERR kernel:sd 2:0:0:0: [sda] Assuming drive cache: write through -05:51:22,516 INFO kernel: sda: -05:51:22,516 NOTICE kernel:sd 2:0:1:0: [sdb] 33554432 512-byte logical blocks: (17.1 GB/16.0 GiB) -05:51:22,516 NOTICE kernel:sd 2:0:1:0: [sdb] Write Protect is off -05:51:22,516 DEBUG kernel:sd 2:0:1:0: [sdb] Mode Sense: 61 00 00 00 -05:51:22,516 NOTICE kernel:sd 2:0:1:0: [sdb] Cache data unavailable -05:51:22,516 ERR kernel:sd 2:0:1:0: [sdb] Assuming drive cache: write through -05:51:22,516 NOTICE kernel:sd 2:0:1:0: [sdb] Cache data unavailable -05:51:22,516 ERR kernel:sd 2:0:1:0: [sdb] Assuming drive cache: write through -05:51:22,522 INFO kernel: sdb: -05:51:22,522 NOTICE kernel:sd 2:0:1:0: [sdb] Cache data unavailable -05:51:22,522 ERR kernel:sd 2:0:1:0: [sdb] Assuming drive cache: write through -05:51:22,522 NOTICE kernel:sd 2:0:1:0: [sdb] Attached SCSI disk -05:51:22,577 WARNING kernel: sda1 sda2 sda3 -05:51:22,598 NOTICE kernel:sd 2:0:0:0: [sda] Cache data unavailable -05:51:22,598 ERR kernel:sd 2:0:0:0: [sda] Assuming drive cache: write through -05:51:22,598 NOTICE kernel:sd 2:0:0:0: [sda] Attached SCSI disk -05:51:22,606 NOTICE kernel:sr 1:0:0:0: Attached scsi generic sg0 type 5 -05:51:22,606 NOTICE kernel:sd 2:0:0:0: Attached scsi generic sg1 type 0 -05:51:22,606 NOTICE kernel:sd 2:0:1:0: Attached scsi generic sg2 type 0 -05:51:28,012 ERR udevd-work: device node '/dev/rtc' already exists, link to '/dev/rtc0' will not overwrite it -05:51:46,181 INFO NetworkManager: NetworkManager (version 0.8.1-66.el6) is starting... -05:51:46,181 INFO NetworkManager: Read config file /etc/NetworkManager/NetworkManager.conf -05:51:46,183 INFO NetworkManager: trying to start the modem manager... -05:51:46,186 INFO NetworkManager: monitoring kernel firmware directory '/lib/firmware'. -05:51:46,186 INFO NetworkManager: Bonding/Bridging/VLAN support enabled -05:51:46,188 NOTICE NetworkManager: ifcfg-rh: Acquired D-Bus service com.redhat.ifcfgrh1 -05:51:46,188 INFO NetworkManager: Loaded plugin ifcfg-rh: (c) 2007 - 2008 Red Hat, Inc. To report bugs please use the NetworkManager mailing list. -05:51:46,188 INFO NetworkManager: Loaded plugin keyfile: (c) 2007 - 2008 Red Hat, Inc. To report bugs please use the NetworkManager mailing list. -05:51:46,188 NOTICE NetworkManager: ifcfg-rh: parsing /etc/sysconfig/network-scripts/ifcfg-eth3 ... -05:51:46,190 NOTICE NetworkManager: ifcfg-rh: read connection 'System eth3' -05:51:46,190 NOTICE NetworkManager: ifcfg-rh: parsing /etc/sysconfig/network-scripts/ifcfg-eth2 ... -05:51:46,190 NOTICE NetworkManager: ifcfg-rh: read connection 'System eth2' -05:51:46,190 NOTICE NetworkManager: ifcfg-rh: parsing /etc/sysconfig/network-scripts/ifcfg-eth1 ... -05:51:46,191 NOTICE NetworkManager: ifcfg-rh: read connection 'System eth1' -05:51:46,191 NOTICE NetworkManager: ifcfg-rh: parsing /etc/sysconfig/network-scripts/ifcfg-eth0 ... -05:51:46,192 NOTICE NetworkManager: ifcfg-rh: read connection 'System eth0' -05:51:46,192 WARNING NetworkManager: Can not read directory '/etc/NetworkManager/system-connections': Error opening directory '/etc/NetworkManager/system-connections': No such file or directory -05:51:46,194 INFO NetworkManager: WiFi enabled by radio killswitch; enabled by state file -05:51:46,194 INFO NetworkManager: WWAN enabled by radio killswitch; enabled by state file -05:51:46,194 INFO NetworkManager: WiMAX enabled by radio killswitch; enabled by state file -05:51:46,194 INFO NetworkManager: Networking is enabled by state file -05:51:46,212 INFO kernel:802.1Q VLAN Support v1.8 Ben Greear -05:51:46,212 INFO kernel:All bugs added by David S. Miller -05:51:46,217 INFO kernel:e1000: eth0 NIC Link is Up 1000 Mbps Full Duplex, Flow Control: None -05:51:46,218 INFO NetworkManager: (eth0): carrier is OFF -05:51:46,218 INFO NetworkManager: (eth0): new Ethernet device (driver: 'e1000' ifindex: 2) -05:51:46,218 INFO NetworkManager: (eth0): exported as /org/freedesktop/NetworkManager/Devices/0 -05:51:46,218 INFO NetworkManager: (eth0): now managed -05:51:46,218 INFO NetworkManager: (eth0): device state change: 1 -> 2 (reason 2) -05:51:46,218 INFO NetworkManager: (eth0): bringing up device. -05:51:46,221 INFO kernel:8021q: adding VLAN 0 to HW filter on device eth0 -05:51:46,222 INFO NetworkManager: (eth0): carrier now ON (device state 2) -05:51:46,222 INFO NetworkManager: (eth0): preparing device. -05:51:46,222 INFO NetworkManager: (eth0): deactivating device (reason: 2). -05:51:46,223 INFO NetworkManager: (eth1): carrier is OFF -05:51:46,224 INFO NetworkManager: (eth1): new Ethernet device (driver: 'e1000' ifindex: 3) -05:51:46,224 INFO NetworkManager: (eth1): exported as /org/freedesktop/NetworkManager/Devices/1 -05:51:46,224 INFO NetworkManager: (eth1): now managed -05:51:46,224 INFO NetworkManager: (eth1): device state change: 1 -> 2 (reason 2) -05:51:46,224 INFO NetworkManager: (eth1): bringing up device. -05:51:46,229 INFO kernel:e1000: eth1 NIC Link is Up 1000 Mbps Full Duplex, Flow Control: None -05:51:46,233 INFO kernel:8021q: adding VLAN 0 to HW filter on device eth1 -05:51:46,233 INFO NetworkManager: (eth1): carrier now ON (device state 2) -05:51:46,234 INFO NetworkManager: (eth1): preparing device. -05:51:46,234 INFO NetworkManager: (eth1): deactivating device (reason: 2). -05:51:46,235 INFO NetworkManager: (eth2): carrier is OFF -05:51:46,235 INFO NetworkManager: (eth2): new Ethernet device (driver: 'e1000' ifindex: 4) -05:51:46,235 INFO NetworkManager: (eth2): exported as /org/freedesktop/NetworkManager/Devices/2 -05:51:46,235 INFO NetworkManager: (eth2): now managed -05:51:46,235 INFO NetworkManager: (eth2): device state change: 1 -> 2 (reason 2) -05:51:46,235 INFO NetworkManager: (eth2): bringing up device. -05:51:46,240 INFO kernel:e1000: eth2 NIC Link is Up 1000 Mbps Full Duplex, Flow Control: None -05:51:46,244 INFO kernel:8021q: adding VLAN 0 to HW filter on device eth2 -05:51:46,245 INFO NetworkManager: (eth2): carrier now ON (device state 2) -05:51:46,245 INFO NetworkManager: (eth2): preparing device. -05:51:46,245 INFO NetworkManager: (eth2): deactivating device (reason: 2). -05:51:46,246 INFO NetworkManager: (eth3): carrier is OFF -05:51:46,247 INFO NetworkManager: (eth3): new Ethernet device (driver: 'e1000' ifindex: 5) -05:51:46,247 INFO NetworkManager: (eth3): exported as /org/freedesktop/NetworkManager/Devices/3 -05:51:46,247 INFO NetworkManager: (eth3): now managed -05:51:46,247 INFO NetworkManager: (eth3): device state change: 1 -> 2 (reason 2) -05:51:46,247 INFO NetworkManager: (eth3): bringing up device. -05:51:46,251 INFO kernel:e1000: eth3 NIC Link is Up 1000 Mbps Full Duplex, Flow Control: None -05:51:46,255 INFO kernel:8021q: adding VLAN 0 to HW filter on device eth3 -05:51:46,256 INFO NetworkManager: (eth3): carrier now ON (device state 2) -05:51:46,256 INFO NetworkManager: (eth3): preparing device. -05:51:46,256 INFO NetworkManager: (eth3): deactivating device (reason: 2). -05:51:46,258 INFO NetworkManager: (eth0): carrier now OFF (device state 2) -05:51:46,258 INFO NetworkManager: (eth0): carrier now ON (device state 2) -05:51:46,258 WARNING NetworkManager: (nm-device.c:4447):nm_device_queue_state: runtime check failed: (priv->queued_state.id == 0) -05:51:46,258 INFO NetworkManager: (eth1): carrier now OFF (device state 2) -05:51:46,259 INFO NetworkManager: (eth1): carrier now ON (device state 2) -05:51:46,259 WARNING NetworkManager: (nm-device.c:4447):nm_device_queue_state: runtime check failed: (priv->queued_state.id == 0) -05:51:46,259 INFO NetworkManager: (eth2): carrier now OFF (device state 2) -05:51:46,259 INFO NetworkManager: (eth2): carrier now ON (device state 2) -05:51:46,259 WARNING NetworkManager: (nm-device.c:4447):nm_device_queue_state: runtime check failed: (priv->queued_state.id == 0) -05:51:46,259 INFO NetworkManager: (eth3): carrier now OFF (device state 2) -05:51:46,259 INFO NetworkManager: (eth3): carrier now ON (device state 2) -05:51:46,259 WARNING NetworkManager: (nm-device.c:4447):nm_device_queue_state: runtime check failed: (priv->queued_state.id == 0) -05:51:46,260 INFO NetworkManager: Trying to start the supplicant... -05:51:46,261 INFO NetworkManager: (eth0): device state change: 2 -> 3 (reason 40) -05:51:46,261 INFO NetworkManager: (eth1): device state change: 2 -> 3 (reason 40) -05:51:46,261 INFO NetworkManager: (eth2): device state change: 2 -> 3 (reason 40) -05:51:46,262 INFO NetworkManager: (eth3): device state change: 2 -> 3 (reason 40) -05:51:46,268 INFO NetworkManager: wpa_supplicant started -05:51:47,181 WARNING NetworkManager: error requesting auth for org.freedesktop.NetworkManager.enable-disable-network: (26) Remote Exception invoking org.freedesktop.PolicyKit1.Authority.CheckAuthorization() on /org/freedesktop/PolicyKit1/Authority at name org.freedesktop.PolicyKit1: org.freedesktop.DBus.Error.Spawn.ExecFailed: Cannot launch daemon, file not found or permissions invalid -05:51:47,182 WARNING NetworkManager: error requesting auth for org.freedesktop.NetworkManager.sleep-wake: (26) Remote Exception invoking org.freedesktop.PolicyKit1.Authority.CheckAuthorization() on /org/freedesktop/PolicyKit1/Authority at name org.freedesktop.PolicyKit1: org.freedesktop.DBus.Error.Spawn.ExecFailed: Cannot launch daemon, file not found or permissions invalid -05:51:47,182 WARNING NetworkManager: error requesting auth for org.freedesktop.NetworkManager.enable-disable-wifi: (26) Remote Exception invoking org.freedesktop.PolicyKit1.Authority.CheckAuthorization() on /org/freedesktop/PolicyKit1/Authority at name org.freedesktop.PolicyKit1: org.freedesktop.DBus.Error.Spawn.ExecFailed: Cannot launch daemon, file not found or permissions invalid -05:51:47,182 WARNING NetworkManager: error requesting auth for org.freedesktop.NetworkManager.enable-disable-wwan: (26) Remote Exception invoking org.freedesktop.PolicyKit1.Authority.CheckAuthorization() on /org/freedesktop/PolicyKit1/Authority at name org.freedesktop.PolicyKit1: org.freedesktop.DBus.Error.Spawn.ExecFailed: Cannot launch daemon, file not found or permissions invalid -05:51:47,182 WARNING NetworkManager: error requesting auth for org.freedesktop.NetworkManager.use-user-connections: (26) Remote Exception invoking org.freedesktop.PolicyKit1.Authority.CheckAuthorization() on /org/freedesktop/PolicyKit1/Authority at name org.freedesktop.PolicyKit1: org.freedesktop.DBus.Error.Spawn.ExecFailed: Cannot launch daemon, file not found or permissions invalid -05:51:47,182 WARNING NetworkManager: error requesting auth for org.freedesktop.NetworkManager.network-control: (26) Remote Exception invoking org.freedesktop.PolicyKit1.Authority.CheckAuthorization() on /org/freedesktop/PolicyKit1/Authority at name org.freedesktop.PolicyKit1: org.freedesktop.DBus.Error.Spawn.ExecFailed: Cannot launch daemon, file not found or permissions invalid -05:51:47,182 WARNING NetworkManager: error requesting auth for org.freedesktop.network-manager-settings.system.wifi.share.open: (26) Remote Exception invoking org.freedesktop.PolicyKit1.Authority.CheckAuthorization() on /org/freedesktop/PolicyKit1/Authority at name org.freedesktop.PolicyKit1: org.freedesktop.DBus.Error.Spawn.ExecFailed: Cannot launch daemon, file not found or permissions invalid -05:51:47,183 WARNING NetworkManager: error requesting auth for org.freedesktop.network-manager-settings.system.wifi.share.protected: (26) Remote Exception invoking org.freedesktop.PolicyKit1.Authority.CheckAuthorization() on /org/freedesktop/PolicyKit1/Authority at name org.freedesktop.PolicyKit1: org.freedesktop.DBus.Error.Spawn.ExecFailed: Cannot launch daemon, file not found or permissions invalid -05:51:47,191 WARNING NetworkManager: error requesting auth for org.freedesktop.NetworkManager.enable-disable-network: (26) Remote Exception invoking org.freedesktop.PolicyKit1.Authority.CheckAuthorization() on /org/freedesktop/PolicyKit1/Authority at name org.freedesktop.PolicyKit1: org.freedesktop.DBus.Error.Spawn.ExecFailed: Cannot launch daemon, file not found or permissions invalid -05:51:47,191 WARNING NetworkManager: error requesting auth for org.freedesktop.NetworkManager.sleep-wake: (26) Remote Exception invoking org.freedesktop.PolicyKit1.Authority.CheckAuthorization() on /org/freedesktop/PolicyKit1/Authority at name org.freedesktop.PolicyKit1: org.freedesktop.DBus.Error.Spawn.ExecFailed: Cannot launch daemon, file not found or permissions invalid -05:51:47,191 WARNING NetworkManager: error requesting auth for org.freedesktop.NetworkManager.enable-disable-wifi: (26) Remote Exception invoking org.freedesktop.PolicyKit1.Authority.CheckAuthorization() on /org/freedesktop/PolicyKit1/Authority at name org.freedesktop.PolicyKit1: org.freedesktop.DBus.Error.Spawn.ExecFailed: Cannot launch daemon, file not found or permissions invalid -05:51:47,191 WARNING NetworkManager: error requesting auth for org.freedesktop.NetworkManager.enable-disable-wwan: (26) Remote Exception invoking org.freedesktop.PolicyKit1.Authority.CheckAuthorization() on /org/freedesktop/PolicyKit1/Authority at name org.freedesktop.PolicyKit1: org.freedesktop.DBus.Error.Spawn.ExecFailed: Cannot launch daemon, file not found or permissions invalid -05:51:47,191 WARNING NetworkManager: error requesting auth for org.freedesktop.NetworkManager.use-user-connections: (26) Remote Exception invoking org.freedesktop.PolicyKit1.Authority.CheckAuthorization() on /org/freedesktop/PolicyKit1/Authority at name org.freedesktop.PolicyKit1: org.freedesktop.DBus.Error.Spawn.ExecFailed: Cannot launch daemon, file not found or permissions invalid -05:51:47,191 WARNING NetworkManager: error requesting auth for org.freedesktop.NetworkManager.network-control: (26) Remote Exception invoking org.freedesktop.PolicyKit1.Authority.CheckAuthorization() on /org/freedesktop/PolicyKit1/Authority at name org.freedesktop.PolicyKit1: org.freedesktop.DBus.Error.Spawn.ExecFailed: Cannot launch daemon, file not found or permissions invalid -05:51:47,192 WARNING NetworkManager: error requesting auth for org.freedesktop.network-manager-settings.system.wifi.share.open: (26) Remote Exception invoking org.freedesktop.PolicyKit1.Authority.CheckAuthorization() on /org/freedesktop/PolicyKit1/Authority at name org.freedesktop.PolicyKit1: org.freedesktop.DBus.Error.Spawn.ExecFailed: Cannot launch daemon, file not found or permissions invalid -05:51:47,192 WARNING NetworkManager: error requesting auth for org.freedesktop.network-manager-settings.system.wifi.share.protected: (26) Remote Exception invoking org.freedesktop.PolicyKit1.Authority.CheckAuthorization() on /org/freedesktop/PolicyKit1/Authority at name org.freedesktop.PolicyKit1: org.freedesktop.DBus.Error.Spawn.ExecFailed: Cannot launch daemon, file not found or permissions invalid -05:51:47,200 WARNING NetworkManager: error requesting auth for org.freedesktop.NetworkManager.enable-disable-network: (26) Remote Exception invoking org.freedesktop.PolicyKit1.Authority.CheckAuthorization() on /org/freedesktop/PolicyKit1/Authority at name org.freedesktop.PolicyKit1: org.freedesktop.DBus.Error.Spawn.ExecFailed: Cannot launch daemon, file not found or permissions invalid -05:51:47,200 WARNING NetworkManager: error requesting auth for org.freedesktop.NetworkManager.sleep-wake: (26) Remote Exception invoking org.freedesktop.PolicyKit1.Authority.CheckAuthorization() on /org/freedesktop/PolicyKit1/Authority at name org.freedesktop.PolicyKit1: org.freedesktop.DBus.Error.Spawn.ExecFailed: Cannot launch daemon, file not found or permissions invalid -05:51:47,200 WARNING NetworkManager: error requesting auth for org.freedesktop.NetworkManager.enable-disable-wifi: (26) Remote Exception invoking org.freedesktop.PolicyKit1.Authority.CheckAuthorization() on /org/freedesktop/PolicyKit1/Authority at name org.freedesktop.PolicyKit1: org.freedesktop.DBus.Error.Spawn.ExecFailed: Cannot launch daemon, file not found or permissions invalid -05:51:47,200 WARNING NetworkManager: error requesting auth for org.freedesktop.NetworkManager.enable-disable-wwan: (26) Remote Exception invoking org.freedesktop.PolicyKit1.Authority.CheckAuthorization() on /org/freedesktop/PolicyKit1/Authority at name org.freedesktop.PolicyKit1: org.freedesktop.DBus.Error.Spawn.ExecFailed: Cannot launch daemon, file not found or permissions invalid -05:51:47,200 WARNING NetworkManager: error requesting auth for org.freedesktop.NetworkManager.use-user-connections: (26) Remote Exception invoking org.freedesktop.PolicyKit1.Authority.CheckAuthorization() on /org/freedesktop/PolicyKit1/Authority at name org.freedesktop.PolicyKit1: org.freedesktop.DBus.Error.Spawn.ExecFailed: Cannot launch daemon, file not found or permissions invalid -05:51:47,201 WARNING NetworkManager: error requesting auth for org.freedesktop.NetworkManager.network-control: (26) Remote Exception invoking org.freedesktop.PolicyKit1.Authority.CheckAuthorization() on /org/freedesktop/PolicyKit1/Authority at name org.freedesktop.PolicyKit1: org.freedesktop.DBus.Error.Spawn.ExecFailed: Cannot launch daemon, file not found or permissions invalid -05:51:47,201 WARNING NetworkManager: error requesting auth for org.freedesktop.network-manager-settings.system.wifi.share.open: (26) Remote Exception invoking org.freedesktop.PolicyKit1.Authority.CheckAuthorization() on /org/freedesktop/PolicyKit1/Authority at name org.freedesktop.PolicyKit1: org.freedesktop.DBus.Error.Spawn.ExecFailed: Cannot launch daemon, file not found or permissions invalid -05:51:47,201 WARNING NetworkManager: error requesting auth for org.freedesktop.network-manager-settings.system.wifi.share.protected: (26) Remote Exception invoking org.freedesktop.PolicyKit1.Authority.CheckAuthorization() on /org/freedesktop/PolicyKit1/Authority at name org.freedesktop.PolicyKit1: org.freedesktop.DBus.Error.Spawn.ExecFailed: Cannot launch daemon, file not found or permissions invalid -05:51:47,212 WARNING NetworkManager: error requesting auth for org.freedesktop.NetworkManager.enable-disable-network: (26) Remote Exception invoking org.freedesktop.PolicyKit1.Authority.CheckAuthorization() on /org/freedesktop/PolicyKit1/Authority at name org.freedesktop.PolicyKit1: org.freedesktop.DBus.Error.Spawn.ExecFailed: Cannot launch daemon, file not found or permissions invalid -05:51:47,212 WARNING NetworkManager: error requesting auth for org.freedesktop.NetworkManager.sleep-wake: (26) Remote Exception invoking org.freedesktop.PolicyKit1.Authority.CheckAuthorization() on /org/freedesktop/PolicyKit1/Authority at name org.freedesktop.PolicyKit1: org.freedesktop.DBus.Error.Spawn.ExecFailed: Cannot launch daemon, file not found or permissions invalid -05:51:47,212 WARNING NetworkManager: error requesting auth for org.freedesktop.NetworkManager.enable-disable-wifi: (26) Remote Exception invoking org.freedesktop.PolicyKit1.Authority.CheckAuthorization() on /org/freedesktop/PolicyKit1/Authority at name org.freedesktop.PolicyKit1: org.freedesktop.DBus.Error.Spawn.ExecFailed: Cannot launch daemon, file not found or permissions invalid -05:51:47,212 WARNING NetworkManager: error requesting auth for org.freedesktop.NetworkManager.enable-disable-wwan: (26) Remote Exception invoking org.freedesktop.PolicyKit1.Authority.CheckAuthorization() on /org/freedesktop/PolicyKit1/Authority at name org.freedesktop.PolicyKit1: org.freedesktop.DBus.Error.Spawn.ExecFailed: Cannot launch daemon, file not found or permissions invalid -05:51:47,212 WARNING NetworkManager: error requesting auth for org.freedesktop.NetworkManager.use-user-connections: (26) Remote Exception invoking org.freedesktop.PolicyKit1.Authority.CheckAuthorization() on /org/freedesktop/PolicyKit1/Authority at name org.freedesktop.PolicyKit1: org.freedesktop.DBus.Error.Spawn.ExecFailed: Cannot launch daemon, file not found or permissions invalid -05:51:47,212 WARNING NetworkManager: error requesting auth for org.freedesktop.NetworkManager.network-control: (26) Remote Exception invoking org.freedesktop.PolicyKit1.Authority.CheckAuthorization() on /org/freedesktop/PolicyKit1/Authority at name org.freedesktop.PolicyKit1: org.freedesktop.DBus.Error.Spawn.ExecFailed: Cannot launch daemon, file not found or permissions invalid -05:51:47,213 WARNING NetworkManager: error requesting auth for org.freedesktop.network-manager-settings.system.wifi.share.open: (26) Remote Exception invoking org.freedesktop.PolicyKit1.Authority.CheckAuthorization() on /org/freedesktop/PolicyKit1/Authority at name org.freedesktop.PolicyKit1: org.freedesktop.DBus.Error.Spawn.ExecFailed: Cannot launch daemon, file not found or permissions invalid -05:51:47,213 WARNING NetworkManager: error requesting auth for org.freedesktop.network-manager-settings.system.wifi.share.protected: (26) Remote Exception invoking org.freedesktop.PolicyKit1.Authority.CheckAuthorization() on /org/freedesktop/PolicyKit1/Authority at name org.freedesktop.PolicyKit1: org.freedesktop.DBus.Error.Spawn.ExecFailed: Cannot launch daemon, file not found or permissions invalid -05:51:48,220 NOTICE NetworkManager: ifcfg-rh: updating /etc/sysconfig/network-scripts/ifcfg-eth0 -05:51:48,223 INFO NetworkManager: Auto-activating connection 'System eth0'. -05:51:48,224 INFO NetworkManager: Activation (eth0) starting connection 'System eth0' -05:51:48,224 INFO NetworkManager: (eth0): device state change: 3 -> 4 (reason 0) -05:51:48,224 INFO NetworkManager: Activation (eth0) Stage 1 of 5 (Device Prepare) scheduled... -05:51:48,224 INFO NetworkManager: Activation (eth0) Stage 1 of 5 (Device Prepare) started... -05:51:48,224 INFO NetworkManager: Activation (eth0) Stage 2 of 5 (Device Configure) scheduled... -05:51:48,225 INFO NetworkManager: Activation (eth0) Stage 1 of 5 (Device Prepare) complete. -05:51:48,225 INFO NetworkManager: Activation (eth0) Stage 2 of 5 (Device Configure) starting... -05:51:48,225 INFO NetworkManager: (eth0): device state change: 4 -> 5 (reason 0) -05:51:48,225 INFO NetworkManager: Activation (eth0) Stage 2 of 5 (Device Configure) successful. -05:51:48,225 INFO NetworkManager: Activation (eth0) Stage 3 of 5 (IP Configure Start) scheduled. -05:51:48,225 INFO NetworkManager: Activation (eth0) Stage 2 of 5 (Device Configure) complete. -05:51:48,225 INFO NetworkManager: Activation (eth0) Stage 3 of 5 (IP Configure Start) started... -05:51:48,225 INFO NetworkManager: (eth0): device state change: 5 -> 7 (reason 0) -05:51:48,225 INFO NetworkManager: Activation (eth0) Beginning DHCPv4 transaction -05:51:48,228 INFO dhclient: Internet Systems Consortium DHCP Client 4.1.1-P1 -05:51:48,228 INFO NetworkManager: dhclient started with pid 670 -05:51:48,228 INFO NetworkManager: Activation (eth0) DHCPv4 will time out in 45 seconds -05:51:48,228 INFO NetworkManager: Activation (eth0) Stage 3 of 5 (IP Configure Start) complete. -05:51:48,228 INFO dhclient: Copyright 2004-2010 Internet Systems Consortium. -05:51:48,228 INFO dhclient: All rights reserved. -05:51:48,228 INFO dhclient: For info, please visit https://www.isc.org/software/dhcp/ -05:51:48,229 INFO dhclient: -05:51:48,232 INFO NetworkManager: (eth0): DHCPv4 state changed nbi -> preinit -05:51:48,238 INFO dhclient: Listening on LPF/eth0/00:0c:29:21:89:af -05:51:48,238 INFO dhclient: Sending on LPF/eth0/00:0c:29:21:89:af -05:51:48,238 INFO dhclient: Sending on Socket/fallback -05:51:48,238 INFO dhclient: DHCPDISCOVER on eth0 to 255.255.255.255 port 67 interval 7 (xid=0x4cbfa09c) -05:51:48,266 INFO dhclient: DHCPOFFER from 10.145.88.211 -05:51:48,267 INFO dhclient: DHCPREQUEST on eth0 to 255.255.255.255 port 67 (xid=0x4cbfa09c) -05:51:50,624 INFO dhclient: DHCPACK from 10.145.88.211 (xid=0x4cbfa09c) -05:51:50,627 INFO NetworkManager: (eth0): DHCPv4 state changed preinit -> bound -05:51:50,627 INFO NetworkManager: Activation (eth0) Stage 4 of 5 (IP4 Configure Get) scheduled... -05:51:50,627 INFO NetworkManager: Activation (eth0) Stage 4 of 5 (IP4 Configure Get) started... -05:51:50,627 INFO NetworkManager: address 10.145.88.106 -05:51:50,627 INFO NetworkManager: prefix 23 (255.255.254.0) -05:51:50,627 INFO NetworkManager: gateway 10.145.88.1 -05:51:50,627 INFO NetworkManager: hostname 'server1' -05:51:50,627 INFO NetworkManager: nameserver '10.145.88.211' -05:51:50,628 INFO NetworkManager: Activation (eth0) Stage 5 of 5 (IP Configure Commit) scheduled... -05:51:50,628 INFO NetworkManager: Activation (eth0) Stage 4 of 5 (IP4 Configure Get) complete. -05:51:50,628 INFO NetworkManager: Activation (eth0) Stage 5 of 5 (IP Configure Commit) started... -05:51:50,628 INFO dhclient: bound to 10.145.88.106 -- renewal in 10408 seconds. -05:51:51,629 INFO NetworkManager: (eth0): device state change: 7 -> 8 (reason 0) -05:51:51,629 INFO NetworkManager: Policy set 'System eth0' (eth0) as default for IPv4 routing and DNS. -05:51:51,630 INFO NetworkManager: Setting system hostname to 'server1' (from DHCPv4) -05:51:51,630 INFO NetworkManager: Activation (eth0) successful, device activated. -05:51:51,631 INFO NetworkManager: Activation (eth0) Stage 5 of 5 (IP Configure Commit) complete. -05:52:07,660 WARNING NetworkManager: error requesting auth for org.freedesktop.NetworkManager.enable-disable-network: (26) Remote Exception invoking org.freedesktop.PolicyKit1.Authority.CheckAuthorization() on /org/freedesktop/PolicyKit1/Authority at name org.freedesktop.PolicyKit1: org.freedesktop.DBus.Error.Spawn.ExecFailed: Cannot launch daemon, file not found or permissions invalid -05:52:07,660 WARNING NetworkManager: error requesting auth for org.freedesktop.NetworkManager.sleep-wake: (26) Remote Exception invoking org.freedesktop.PolicyKit1.Authority.CheckAuthorization() on /org/freedesktop/PolicyKit1/Authority at name org.freedesktop.PolicyKit1: org.freedesktop.DBus.Error.Spawn.ExecFailed: Cannot launch daemon, file not found or permissions invalid -05:52:07,660 WARNING NetworkManager: error requesting auth for org.freedesktop.NetworkManager.enable-disable-wifi: (26) Remote Exception invoking org.freedesktop.PolicyKit1.Authority.CheckAuthorization() on /org/freedesktop/PolicyKit1/Authority at name org.freedesktop.PolicyKit1: org.freedesktop.DBus.Error.Spawn.ExecFailed: Cannot launch daemon, file not found or permissions invalid -05:52:07,660 WARNING NetworkManager: error requesting auth for org.freedesktop.NetworkManager.enable-disable-wwan: (26) Remote Exception invoking org.freedesktop.PolicyKit1.Authority.CheckAuthorization() on /org/freedesktop/PolicyKit1/Authority at name org.freedesktop.PolicyKit1: org.freedesktop.DBus.Error.Spawn.ExecFailed: Cannot launch daemon, file not found or permissions invalid -05:52:07,660 WARNING NetworkManager: error requesting auth for org.freedesktop.NetworkManager.use-user-connections: (26) Remote Exception invoking org.freedesktop.PolicyKit1.Authority.CheckAuthorization() on /org/freedesktop/PolicyKit1/Authority at name org.freedesktop.PolicyKit1: org.freedesktop.DBus.Error.Spawn.ExecFailed: Cannot launch daemon, file not found or permissions invalid -05:52:07,660 WARNING NetworkManager: error requesting auth for org.freedesktop.NetworkManager.network-control: (26) Remote Exception invoking org.freedesktop.PolicyKit1.Authority.CheckAuthorization() on /org/freedesktop/PolicyKit1/Authority at name org.freedesktop.PolicyKit1: org.freedesktop.DBus.Error.Spawn.ExecFailed: Cannot launch daemon, file not found or permissions invalid -05:52:07,660 WARNING NetworkManager: error requesting auth for org.freedesktop.network-manager-settings.system.wifi.share.open: (26) Remote Exception invoking org.freedesktop.PolicyKit1.Authority.CheckAuthorization() on /org/freedesktop/PolicyKit1/Authority at name org.freedesktop.PolicyKit1: org.freedesktop.DBus.Error.Spawn.ExecFailed: Cannot launch daemon, file not found or permissions invalid -05:52:07,660 WARNING NetworkManager: error requesting auth for org.freedesktop.network-manager-settings.system.wifi.share.protected: (26) Remote Exception invoking org.freedesktop.PolicyKit1.Authority.CheckAuthorization() on /org/freedesktop/PolicyKit1/Authority at name org.freedesktop.PolicyKit1: org.freedesktop.DBus.Error.Spawn.ExecFailed: Cannot launch daemon, file not found or permissions invalid -05:52:47,362 NOTICE dbus-daemon: [system] Reloaded configuration -05:52:47,364 NOTICE dbus-daemon: [system] Reloaded configuration -05:52:47,512 DEBUG kernel:SELinux: 2048 avtab hash slots, 277800 rules. -05:52:47,588 DEBUG kernel:SELinux: 2048 avtab hash slots, 277800 rules. -05:52:48,083 DEBUG kernel:SELinux: 9 users, 12 roles, 3917 types, 217 bools, 1 sens, 1024 cats -05:52:48,083 DEBUG kernel:SELinux: 81 classes, 277800 rules -05:52:48,088 DEBUG kernel:SELinux: Completing initialization. -05:52:48,088 DEBUG kernel:SELinux: Setting up existing superblocks. -05:52:48,088 DEBUG kernel:SELinux: initialized (dev loop0, type squashfs), not configured for labeling -05:52:48,088 DEBUG kernel:SELinux: initialized (dev tmpfs, type tmpfs), uses transition SIDs -05:52:48,088 DEBUG kernel:SELinux: initialized (dev tmpfs, type tmpfs), uses transition SIDs -05:52:48,089 DEBUG kernel:SELinux: initialized (dev selinuxfs, type selinuxfs), uses genfs_contexts -05:52:48,089 DEBUG kernel:SELinux: initialized (dev mqueue, type mqueue), uses transition SIDs -05:52:48,089 DEBUG kernel:SELinux: initialized (dev hugetlbfs, type hugetlbfs), uses transition SIDs -05:52:48,089 DEBUG kernel:SELinux: initialized (dev devpts, type devpts), uses transition SIDs -05:52:48,089 DEBUG kernel:SELinux: initialized (dev inotifyfs, type inotifyfs), uses genfs_contexts -05:52:48,089 DEBUG kernel:SELinux: initialized (dev anon_inodefs, type anon_inodefs), uses genfs_contexts -05:52:48,089 DEBUG kernel:SELinux: initialized (dev pipefs, type pipefs), uses task SIDs -05:52:48,089 DEBUG kernel:SELinux: initialized (dev debugfs, type debugfs), uses genfs_contexts -05:52:48,090 DEBUG kernel:SELinux: initialized (dev sockfs, type sockfs), uses task SIDs -05:52:48,090 DEBUG kernel:SELinux: initialized (dev devtmpfs, type devtmpfs), uses transition SIDs -05:52:48,090 DEBUG kernel:SELinux: initialized (dev tmpfs, type tmpfs), uses transition SIDs -05:52:48,090 DEBUG kernel:SELinux: initialized (dev proc, type proc), uses genfs_contexts -05:52:48,090 DEBUG kernel:SELinux: initialized (dev bdev, type bdev), uses genfs_contexts -05:52:48,090 DEBUG kernel:SELinux: initialized (dev rootfs, type rootfs), uses genfs_contexts -05:52:48,090 DEBUG kernel:SELinux: initialized (dev sysfs, type sysfs), uses genfs_contexts -05:52:48,116 NOTICE kernel:type=1403 audit(1021096368.114:2): policy loaded auid=4294967295 ses=4294967295 -05:52:48,165 INFO kernel:md: raid0 personality registered for level 0 -05:52:48,172 INFO kernel:md: raid1 personality registered for level 1 -05:52:48,176 INFO kernel:async_tx: api initialized (async) -05:52:48,188 INFO kernel:xor: automatically using best checksumming function: generic_sse -05:52:48,191 INFO kernel: generic_sse: 9112.000 MB/sec -05:52:48,191 INFO kernel:xor: using function: generic_sse (9112.000 MB/sec) -05:52:48,212 WARNING kernel:raid6: sse2x1 5777 MB/s -05:52:48,229 WARNING kernel:raid6: sse2x2 7031 MB/s -05:52:48,247 WARNING kernel:raid6: sse2x4 7550 MB/s -05:52:48,247 WARNING kernel:raid6: using algorithm sse2x4 (7550 MB/s) -05:52:48,247 WARNING kernel:raid6: using ssse3x2 recovery algorithm -05:52:48,261 INFO kernel:md: raid6 personality registered for level 6 -05:52:48,261 INFO kernel:md: raid5 personality registered for level 5 -05:52:48,261 INFO kernel:md: raid4 personality registered for level 4 -05:52:48,273 INFO kernel:md: raid10 personality registered for level 10 -05:52:48,277 INFO kernel:md: linear personality registered for level -1 -05:52:48,290 INFO kernel:device-mapper: uevent: version 1.0.3 -05:52:48,291 INFO kernel:device-mapper: ioctl: 4.24.6-ioctl (2013-01-15) initialised: dm-devel@redhat.com -05:52:48,324 INFO kernel:device-mapper: multipath: version 1.5.0 loaded -05:52:48,328 INFO kernel:device-mapper: multipath round-robin: version 1.0.0 loaded -05:53:05,608 WARNING kernel:hpet1: lost 5 rtc interrupts -05:53:05,608 WARNING kernel:hpet1: lost 1 rtc interrupts -05:53:21,197 NOTICE kernel:sd 2:0:0:0: [sda] Cache data unavailable -05:53:21,197 ERR kernel:sd 2:0:0:0: [sda] Assuming drive cache: write through -05:53:21,238 INFO kernel: sda: sda1 sda2 -05:53:25,106 NOTICE kernel:sd 2:0:0:0: [sda] Cache data unavailable -05:53:25,106 ERR kernel:sd 2:0:0:0: [sda] Assuming drive cache: write through -05:53:25,117 INFO kernel: sda: sda1 -05:53:31,920 NOTICE kernel:sd 2:0:0:0: [sda] Cache data unavailable -05:53:31,920 ERR kernel:sd 2:0:0:0: [sda] Assuming drive cache: write through -05:53:31,962 INFO kernel: sda: -05:53:33,120 NOTICE kernel:sd 2:0:0:0: [sda] Cache data unavailable -05:53:33,120 ERR kernel:sd 2:0:0:0: [sda] Assuming drive cache: write through -05:53:33,120 INFO kernel: sda: sda1 -05:53:50,037 NOTICE kernel:sd 2:0:0:0: [sda] Cache data unavailable -05:53:50,037 ERR kernel:sd 2:0:0:0: [sda] Assuming drive cache: write through -05:53:50,037 INFO kernel: sda: sda1 sda2 -05:53:55,178 NOTICE kernel:sd 2:0:0:0: [sda] Cache data unavailable -05:53:55,178 ERR kernel:sd 2:0:0:0: [sda] Assuming drive cache: write through -05:53:55,211 INFO kernel: sda: sda1 sda2 sda3 -05:54:41,918 INFO kernel:Adding 3354616k swap on /dev/sda2. Priority:-1 extents:1 across:3354616k -05:54:42,441 INFO kernel:kjournald starting. Commit interval 5 seconds -05:54:42,489 INFO kernel:EXT3-fs (dm-0): using internal journal -05:54:42,489 INFO kernel:EXT3-fs (dm-0): mounted filesystem with ordered data mode -05:54:42,489 DEBUG kernel:SELinux: initialized (dev dm-0, type ext3), uses xattr -05:54:42,913 INFO kernel:kjournald starting. Commit interval 5 seconds -05:54:42,977 INFO kernel:EXT3-fs (sda1): using internal journal -05:54:42,977 INFO kernel:EXT3-fs (sda1): mounted filesystem with ordered data mode -05:54:42,977 DEBUG kernel:SELinux: initialized (dev sda1, type ext3), uses xattr -05:54:43,167 DEBUG kernel:SELinux: initialized (dev tmpfs, type tmpfs), uses transition SIDs -05:54:43,255 INFO kernel:kjournald starting. Commit interval 5 seconds -05:54:43,268 INFO kernel:EXT3-fs (dm-1): using internal journal -05:54:43,268 INFO kernel:EXT3-fs (dm-1): mounted filesystem with ordered data mode -05:54:43,268 DEBUG kernel:SELinux: initialized (dev dm-1, type ext3), uses xattr -05:54:43,657 INFO kernel:kjournald starting. Commit interval 5 seconds -05:54:43,719 INFO kernel:EXT3-fs (dm-2): using internal journal -05:54:43,719 INFO kernel:EXT3-fs (dm-2): mounted filesystem with ordered data mode -05:54:43,719 DEBUG kernel:SELinux: initialized (dev dm-2, type ext3), uses xattr -05:54:43,913 INFO kernel:kjournald starting. Commit interval 5 seconds -05:54:43,949 INFO kernel:EXT3-fs (dm-3): using internal journal -05:54:43,949 INFO kernel:EXT3-fs (dm-3): mounted filesystem with ordered data mode -05:54:43,949 DEBUG kernel:SELinux: initialized (dev dm-3, type ext3), uses xattr -05:55:08,095 DEBUG kernel:SELinux: initialized (dev usbfs, type usbfs), uses genfs_contexts -05:55:08,106 NOTICE NetworkManager: ifcfg-rh: updating /etc/sysconfig/network-scripts/ifcfg-eth3 -05:55:08,107 NOTICE NetworkManager: ifcfg-rh: updating /etc/sysconfig/network-scripts/ifcfg-eth2 -05:55:08,109 NOTICE NetworkManager: ifcfg-rh: updating /etc/sysconfig/network-scripts/ifcfg-eth1 -05:55:09,125 NOTICE NetworkManager: ifcfg-rh: updating /etc/sysconfig/network-scripts/ifcfg-eth3 -05:55:09,126 NOTICE NetworkManager: ifcfg-rh: updating /etc/sysconfig/network-scripts/ifcfg-eth2 -05:55:09,127 NOTICE NetworkManager: ifcfg-rh: updating /etc/sysconfig/network-scripts/ifcfg-eth1 -05:55:09,128 NOTICE NetworkManager: ifcfg-rh: updating /etc/sysconfig/network-scripts/ifcfg-eth0 -05:59:16,883 ERR kernel:INFO: task flush-253:0:1525 blocked for more than 120 seconds. -05:59:16,883 ERR kernel: Not tainted 2.6.32-431.el6.x86_64 #1 -05:59:16,883 ERR kernel:"echo 0 > /proc/sys/kernel/hung_task_timeout_secs" disables this message. -05:59:16,883 INFO kernel:flush-253:0 D 0000000000000000 0 1525 2 0x00000080 -05:59:16,883 WARNING kernel: ffff8800592df6e0 0000000000000046 0000000000000000 ffff880079226080 -05:59:16,883 WARNING kernel: 0000000000000001 ffff880064ed8e40 ffff880079226080 ffff880079269dd0 -05:59:16,883 WARNING kernel: ffff880079226638 ffff8800592dffd8 000000000000fbc8 ffff880079226638 -05:59:16,883 WARNING kernel:Call Trace: -05:59:16,883 WARNING kernel: [] io_schedule+0x73/0xc0 -05:59:16,883 WARNING kernel: [] get_request_wait+0x108/0x1d0 -05:59:16,883 WARNING kernel: [] ? autoremove_wake_function+0x0/0x40 -05:59:16,883 WARNING kernel: [] ? elv_merge+0x17e/0x1c0 -05:59:16,883 WARNING kernel: [] blk_queue_bio+0x99/0x620 -05:59:16,883 WARNING kernel: [] generic_make_request+0x240/0x5a0 -05:59:16,883 WARNING kernel: [] ? mempool_alloc_slab+0x15/0x20 -05:59:16,883 WARNING kernel: [] submit_bio+0x70/0x120 -05:59:16,883 WARNING kernel: [] submit_bh+0x11d/0x1f0 -05:59:16,883 WARNING kernel: [] __block_write_full_page+0x1c8/0x330 -05:59:16,883 WARNING kernel: [] ? end_buffer_async_write+0x0/0x190 -05:59:16,883 WARNING kernel: [] ? blkdev_get_block+0x0/0x20 -05:59:16,883 WARNING kernel: [] ? blkdev_get_block+0x0/0x20 -05:59:16,883 WARNING kernel: [] block_write_full_page_endio+0xe0/0x120 -05:59:16,883 WARNING kernel: [] ? find_get_pages_tag+0x40/0x130 -05:59:16,883 WARNING kernel: [] block_write_full_page+0x15/0x20 -05:59:16,883 WARNING kernel: [] blkdev_writepage+0x18/0x20 -05:59:16,883 WARNING kernel: [] __writepage+0x17/0x40 -05:59:16,883 WARNING kernel: [] write_cache_pages+0x1fd/0x4c0 -05:59:16,883 WARNING kernel: [] ? __writepage+0x0/0x40 -05:59:16,883 WARNING kernel: [] generic_writepages+0x24/0x30 -05:59:16,883 WARNING kernel: [] do_writepages+0x21/0x40 -05:59:16,883 WARNING kernel: [] writeback_single_inode+0xdd/0x290 -05:59:16,883 WARNING kernel: [] writeback_sb_inodes+0xbd/0x170 -05:59:16,883 WARNING kernel: [] writeback_inodes_wb+0xab/0x1b0 -05:59:16,883 WARNING kernel: [] wb_writeback+0x2f3/0x410 -05:59:16,883 WARNING kernel: [] ? thread_return+0x4e/0x76e -05:59:16,883 WARNING kernel: [] ? del_timer_sync+0x22/0x30 -05:59:16,883 WARNING kernel: [] wb_do_writeback+0x1a5/0x240 -05:59:16,883 WARNING kernel: [] bdi_writeback_task+0x63/0x1b0 -05:59:16,883 WARNING kernel: [] ? bit_waitqueue+0x17/0xd0 -05:59:16,883 WARNING kernel: [] ? bdi_start_fn+0x0/0x100 -05:59:16,883 WARNING kernel: [] bdi_start_fn+0x86/0x100 -05:59:16,883 WARNING kernel: [] ? bdi_start_fn+0x0/0x100 -05:59:16,883 WARNING kernel: [] kthread+0x96/0xa0 -05:59:16,883 WARNING kernel: [] child_rip+0xa/0x20 -05:59:16,883 WARNING kernel: [] ? kthread+0x0/0xa0 -05:59:16,883 WARNING kernel: [] ? child_rip+0x0/0x20 -05:59:16,883 ERR kernel:INFO: task flush-253:3:1622 blocked for more than 120 seconds. -05:59:16,883 ERR kernel: Not tainted 2.6.32-431.el6.x86_64 #1 -05:59:16,883 ERR kernel:"echo 0 > /proc/sys/kernel/hung_task_timeout_secs" disables this message. -05:59:16,883 INFO kernel:flush-253:3 D 0000000000000001 0 1622 2 0x00000080 -05:59:16,883 WARNING kernel: ffff88005a5636e0 0000000000000046 0000000000000000 ffff8800790e6ae0 -05:59:16,883 WARNING kernel: 0000000000000001 ffff8800615bc080 ffff8800790e6ae0 ffff880079269dd0 -05:59:16,883 WARNING kernel: ffff8800790e7098 ffff88005a563fd8 000000000000fbc8 ffff8800790e7098 -05:59:16,883 WARNING kernel:Call Trace: -05:59:16,883 WARNING kernel: [] io_schedule+0x73/0xc0 -05:59:16,883 WARNING kernel: [] get_request_wait+0x108/0x1d0 -05:59:16,883 WARNING kernel: [] ? autoremove_wake_function+0x0/0x40 -05:59:16,883 WARNING kernel: [] ? elv_merge+0x17e/0x1c0 -05:59:16,883 WARNING kernel: [] blk_queue_bio+0x99/0x620 -05:59:16,883 WARNING kernel: [] ? read_tsc+0x9/0x20 -05:59:16,883 WARNING kernel: [] generic_make_request+0x240/0x5a0 -05:59:16,883 WARNING kernel: [] ? mempool_alloc_slab+0x15/0x20 -05:59:16,883 WARNING kernel: [] ? __dec_zone_page_state+0x2e/0x30 -05:59:16,883 WARNING kernel: [] submit_bio+0x70/0x120 -05:59:16,883 WARNING kernel: [] submit_bh+0x11d/0x1f0 -05:59:16,883 WARNING kernel: [] __block_write_full_page+0x1c8/0x330 -05:59:16,883 WARNING kernel: [] ? end_buffer_async_write+0x0/0x190 -05:59:16,883 WARNING kernel: [] ? blkdev_get_block+0x0/0x20 -05:59:16,883 WARNING kernel: [] ? blkdev_get_block+0x0/0x20 -05:59:16,883 WARNING kernel: [] block_write_full_page_endio+0xe0/0x120 -05:59:16,883 WARNING kernel: [] ? find_get_pages_tag+0x40/0x130 -05:59:16,883 WARNING kernel: [] block_write_full_page+0x15/0x20 -05:59:16,883 WARNING kernel: [] blkdev_writepage+0x18/0x20 -05:59:16,883 WARNING kernel: [] __writepage+0x17/0x40 -05:59:16,883 WARNING kernel: [] write_cache_pages+0x1fd/0x4c0 -05:59:16,883 WARNING kernel: [] ? __writepage+0x0/0x40 -05:59:16,883 WARNING kernel: [] generic_writepages+0x24/0x30 -05:59:16,883 WARNING kernel: [] do_writepages+0x21/0x40 -05:59:16,883 WARNING kernel: [] writeback_single_inode+0xdd/0x290 -05:59:16,883 WARNING kernel: [] writeback_sb_inodes+0xbd/0x170 -05:59:16,883 WARNING kernel: [] writeback_inodes_wb+0xab/0x1b0 -05:59:16,883 WARNING kernel: [] wb_writeback+0x2f3/0x410 -05:59:16,883 WARNING kernel: [] ? thread_return+0x4e/0x76e -05:59:16,883 WARNING kernel: [] ? del_timer_sync+0x22/0x30 -05:59:16,883 WARNING kernel: [] wb_do_writeback+0x1a5/0x240 -05:59:16,883 WARNING kernel: [] bdi_writeback_task+0x63/0x1b0 -05:59:16,883 WARNING kernel: [] ? bit_waitqueue+0x17/0xd0 -05:59:16,883 WARNING kernel: [] ? bdi_start_fn+0x0/0x100 -05:59:16,883 WARNING kernel: [] bdi_start_fn+0x86/0x100 -05:59:16,883 WARNING kernel: [] ? bdi_start_fn+0x0/0x100 -05:59:16,883 WARNING kernel: [] kthread+0x96/0xa0 -05:59:16,883 WARNING kernel: [] child_rip+0xa/0x20 -05:59:16,883 WARNING kernel: [] ? kthread+0x0/0xa0 -05:59:16,883 WARNING kernel: [] ? child_rip+0x0/0x20 -06:11:26,657 DEBUG kernel:SELinux: 2048 avtab hash slots, 277800 rules. -06:11:26,705 DEBUG kernel:SELinux: 2048 avtab hash slots, 277800 rules. -06:11:27,220 DEBUG kernel:SELinux: 9 users, 12 roles, 3917 types, 217 bools, 1 sens, 1024 cats -06:11:27,220 DEBUG kernel:SELinux: 81 classes, 277800 rules diff --git a/compass/tests/actions/update_progress/data/test1/test1 b/compass/tests/actions/update_progress/data/test1/test1 deleted file mode 100644 index 970fb2d9..00000000 --- a/compass/tests/actions/update_progress/data/test1/test1 +++ /dev/null @@ -1,182 +0,0 @@ -ADAPTERS = [ - {'name': 'CentOS_openstack', 'os': 'CentOS', 'target_system': 'openstack'}, -] -ROLES = [ - {'name': 'os-single-controller', 'target_system': 'openstack'}, - {'name': 'os-network', 'target_system': 'openstack'}, - {'name': 'os-compute', 'target_system': 'openstack'}, -] -SWITCHES = [ - {'ip': '1.2.3.4', 'vendor': 'huawei', 'credential': {'version': 'v2c', 'community': 'public'}}, -] -MACHINES_BY_SWITCH = { - '1.2.3.4': [ - {'mac': '00:00:01:02:03:04', 'port': 1, 'vlan': 1}, - ], -} -CLUSTERS = [ - { - 'name': 'cluster1', - 'adapter': 'CentOS_openstack', - 'mutable': False, - 'security': { - 'server_credentials': { - 'username': 'root', 'password': 'huawei' - }, - 'service_credentials': { - 'username': 'service', 'password': 'huawei' - }, - 'console_credentials': { - 'username': 'admin', 'password': 'huawei' - } - }, - 'networking': { - 'interfaces': { - 'management': { - 'nic': 'eth0', - 'promisc': 0, - 'netmask': '255.255.255.0', - 'ip_end': '192.168.20.200', - 'gateway': '', - 'ip_start': '192.168.20.100' - }, - 'storage': { - 'nic': 'eth0', - 'promisc': 0, - 'netmask': '255.255.254.0', - 'ip_end': '10.145.88.200', - 'gateway': '10.145.88.1', - 'ip_start': '10.145.88.100' - }, - 'public': { - 'nic': 'eth2', - 'promisc': 1, - 'netmask': '255.255.254.0', - 'ip_end': '10.145.88.255', - 'gateway': '10.145.88.1', - 'ip_start': '10.145.88.100' - }, - 'tenant': { - 'nic': 'eth0', - 'promisc': 0, - 'netmask': '255.255.254.0', - 'ip_end': '10.145.88.120', - 'gateway': '10.145.88.1', - 'ip_start': '10.145.88.100' - } - }, - 'global': { - 'nameservers': '192.168.20.254', - 'proxy': 'http://192.168.20.254:3128', - 'ntp_server': '192.168.20.254', - 'search_path': 'ods.com', - 'gateway': '10.145.88.1' - }, - }, - 'partition': '/home 20%%;/tmp 10%%;/var 30%%;', - }, -] -HOSTS_BY_CLUSTER = { - 'cluster1': [ - { - 'hostname': 'server1', - 'mac': '00:00:01:02:03:04', - 'mutable': False, - 'config': { - 'networking': { - 'interfaces': { - 'management': { - 'ip': '192.168.20.100', - }, - }, - }, - 'roles': ["os-single-controller", "os-network", "os-compute"], - }, - }, - ], -} - -EXPECTED = { - 'test1': { - 'checkpoint_1': { - 'host_states': { - 'server1': { - 'hostname': 'server1', - 'progress': 0.0060000000000000001, - 'state': 'INSTALLING' - }, - }, - 'cluster_states': { - 'cluster1': { - 'clustername': 'cluster1', - 'progress': 0.0060000000000000001, - 'state': 'INSTALLING' - }, - }, - }, - 'checkpoint_2': { - 'host_states': { - 'server1': { - 'hostname': 'server1', - 'progress': 0.222, - 'state': 'INSTALLING' - }, - }, - 'cluster_states': { - 'cluster1': { - 'clustername': 'cluster1', - 'progress': 0.222, - 'state': 'INSTALLING' - }, - }, - }, - 'checkpoint_3': { - 'host_states': { - 'server1': { - 'hostname': 'server1', - 'progress': 0.59999999999999998, - 'state': 'INSTALLING' - }, - }, - 'cluster_states': { - 'cluster1': { - 'clustername': 'cluster1', - 'progress': 0.59999999999999998, - 'state': 'INSTALLING' - }, - }, - }, - 'checkpoint_4': { - 'host_states': { - 'server1': { - 'hostname': 'server1', - 'progress': 0.65134000000000003, - 'state': 'INSTALLING' - }, - }, - 'cluster_states': { - 'cluster1': { - 'clustername': 'cluster1', - 'progress': 0.65134000000000003, - 'state': 'INSTALLING' - }, - }, - }, - 'checkpoint_5': { - 'host_states':{ - 'server1': { - 'hostname': 'server1', - 'progress': 1.0, - 'state': 'READY' - }, - }, - 'cluster_states': { - 'cluster1': { - 'clustername': 'cluster1', - 'progress': 1.0, - 'state': 'READY' - }, - }, - }, - }, -} diff --git a/compass/tests/actions/update_progress/data/test2/anamon/checkpoint_1/server1.1/sys.log.template b/compass/tests/actions/update_progress/data/test2/anamon/checkpoint_1/server1.1/sys.log.template deleted file mode 100644 index 7390276a..00000000 --- a/compass/tests/actions/update_progress/data/test2/anamon/checkpoint_1/server1.1/sys.log.template +++ /dev/null @@ -1,1726 +0,0 @@ -05:51:18,517 INFO kernel:imklog 5.8.10, log source = /proc/kmsg started. -05:51:18,517 INFO rsyslogd: [origin software="rsyslogd" swVersion="5.8.10" x-pid="68" x-info="http://www.rsyslog.com"] start -05:51:18,517 INFO kernel:Initializing cgroup subsys cpuset -05:51:18,517 INFO kernel:Initializing cgroup subsys cpu -05:51:18,517 NOTICE kernel:Linux version 2.6.32-431.el6.x86_64 (mockbuild@c6b8.bsys.dev.centos.org) (gcc version 4.4.7 20120313 (Red Hat 4.4.7-4) (GCC) ) #1 SMP Fri Nov 22 03:15:09 UTC 2013 -05:51:18,517 INFO kernel:Command line: initrd=/images/CentOS-6.5-x86_64/initrd.img ksdevice=bootif lang= kssendmac text ks=http://10.145.88.211/cblr/svc/op/ks/system/server1.1 BOOT_IMAGE=/images/CentOS-6.5-x86_64/vmlinuz BOOTIF=01-00-0c-29-21-89-af -05:51:18,517 INFO kernel:KERNEL supported cpus: -05:51:18,517 INFO kernel: Intel GenuineIntel -05:51:18,517 INFO kernel: AMD AuthenticAMD -05:51:18,517 INFO kernel: Centaur CentaurHauls -05:51:18,517 INFO kernel:Disabled fast string operations -05:51:18,517 INFO kernel:BIOS-provided physical RAM map: -05:51:18,517 INFO kernel: BIOS-e820: 0000000000000000 - 000000000009f400 (usable) -05:51:18,517 INFO kernel: BIOS-e820: 000000000009f400 - 00000000000a0000 (reserved) -05:51:18,517 INFO kernel: BIOS-e820: 00000000000ca000 - 00000000000cc000 (reserved) -05:51:18,517 INFO kernel: BIOS-e820: 00000000000dc000 - 0000000000100000 (reserved) -05:51:18,517 INFO kernel: BIOS-e820: 0000000000100000 - 000000007fef0000 (usable) -05:51:18,517 INFO kernel: BIOS-e820: 000000007fef0000 - 000000007feff000 (ACPI data) -05:51:18,517 INFO kernel: BIOS-e820: 000000007feff000 - 000000007ff00000 (ACPI NVS) -05:51:18,517 INFO kernel: BIOS-e820: 000000007ff00000 - 0000000080000000 (usable) -05:51:18,517 INFO kernel: BIOS-e820: 00000000e0000000 - 00000000f0000000 (reserved) -05:51:18,517 INFO kernel: BIOS-e820: 00000000fec00000 - 00000000fec10000 (reserved) -05:51:18,517 INFO kernel: BIOS-e820: 00000000fee00000 - 00000000fee01000 (reserved) -05:51:18,517 INFO kernel: BIOS-e820: 00000000fffe0000 - 0000000100000000 (reserved) -05:51:18,517 INFO kernel:DMI present. -05:51:18,517 WARNING kernel:SMBIOS version 2.4 @ 0xF68F0 -05:51:18,517 DEBUG kernel:DMI: VMware, Inc. VMware Virtual Platform/440BX Desktop Reference Platform, BIOS 6.00 01/07/2011 -05:51:18,517 NOTICE kernel:Phoenix BIOS detected: BIOS may corrupt low RAM, working around it. -05:51:18,517 DEBUG kernel:e820 update range: 0000000000000000 - 0000000000010000 (usable) ==> (reserved) -05:51:18,517 INFO kernel:Hypervisor detected: VMware -05:51:18,517 DEBUG kernel:e820 update range: 0000000000000000 - 0000000000001000 (usable) ==> (reserved) -05:51:18,517 DEBUG kernel:e820 remove range: 00000000000a0000 - 0000000000100000 (usable) -05:51:18,517 INFO kernel:last_pfn = 0x80000 max_arch_pfn = 0x400000000 -05:51:18,517 DEBUG kernel:MTRR default type: uncachable -05:51:18,517 DEBUG kernel:MTRR fixed ranges enabled: -05:51:18,517 DEBUG kernel: 00000-9FFFF write-back -05:51:18,517 DEBUG kernel: A0000-BFFFF uncachable -05:51:18,517 DEBUG kernel: C0000-CFFFF write-protect -05:51:18,517 DEBUG kernel: D0000-EFFFF uncachable -05:51:18,517 DEBUG kernel: F0000-FFFFF write-protect -05:51:18,517 DEBUG kernel:MTRR variable ranges enabled: -05:51:18,517 DEBUG kernel: 0 base 0000000000 mask FF80000000 write-back -05:51:18,517 DEBUG kernel: 1 disabled -05:51:18,517 DEBUG kernel: 2 disabled -05:51:18,517 DEBUG kernel: 3 disabled -05:51:18,517 DEBUG kernel: 4 disabled -05:51:18,517 DEBUG kernel: 5 disabled -05:51:18,517 DEBUG kernel: 6 disabled -05:51:18,517 DEBUG kernel: 7 disabled -05:51:18,517 INFO kernel:x86 PAT enabled: cpu 0, old 0x0, new 0x7010600070106 -05:51:18,517 DEBUG kernel:initial memory mapped : 0 - 20000000 -05:51:18,517 INFO kernel:init_memory_mapping: 0000000000000000-0000000080000000 -05:51:18,517 DEBUG kernel: 0000000000 - 0080000000 page 2M -05:51:18,517 DEBUG kernel:kernel direct mapping tables up to 80000000 @ 10000-13000 -05:51:18,517 INFO kernel:RAMDISK: 7def9000 - 7fecf4ff -05:51:18,517 WARNING kernel:ACPI: RSDP 00000000000f6940 00024 (v02 PTLTD ) -05:51:18,517 WARNING kernel:ACPI: XSDT 000000007fef0333 00054 (v01 INTEL 440BX 06040000 VMW 01324272) -05:51:18,517 WARNING kernel:ACPI: FACP 000000007fefee98 000F4 (v04 INTEL 440BX 06040000 PTL 000F4240) -05:51:18,517 WARNING kernel:ACPI: DSDT 000000007fef055d 0E93B (v01 PTLTD Custom 06040000 MSFT 03000001) -05:51:18,517 WARNING kernel:ACPI: FACS 000000007fefffc0 00040 -05:51:18,517 WARNING kernel:ACPI: BOOT 000000007fef0535 00028 (v01 PTLTD $SBFTBL$ 06040000 LTP 00000001) -05:51:18,517 WARNING kernel:ACPI: APIC 000000007fef04d7 0005E (v01 PTLTD ? APIC 06040000 LTP 00000000) -05:51:18,517 WARNING kernel:ACPI: MCFG 000000007fef049b 0003C (v01 PTLTD $PCITBL$ 06040000 LTP 00000001) -05:51:18,517 WARNING kernel:ACPI: SRAT 000000007fef03fb 000A0 (v02 VMWARE MEMPLUG 06040000 VMW 00000001) -05:51:18,517 WARNING kernel:ACPI: HPET 000000007fef03c3 00038 (v01 VMWARE VMW HPET 06040000 WMV 00000001) -05:51:18,517 DEBUG kernel:ACPI: Local APIC address 0xfee00000 -05:51:18,517 INFO kernel:Setting APIC routing to flat. -05:51:18,517 INFO kernel:SRAT: PXM 0 -> APIC 0 -> Node 0 -05:51:18,517 INFO kernel:SRAT: PXM 0 -> APIC 1 -> Node 0 -05:51:18,517 INFO kernel:SRAT: Node 0 PXM 0 0-a0000 -05:51:18,517 INFO kernel:SRAT: Node 0 PXM 0 100000-80000000 -05:51:18,517 DEBUG kernel:NUMA: Allocated memnodemap from 11000 - 12040 -05:51:18,517 DEBUG kernel:NUMA: Using 20 for the hash shift. -05:51:18,517 INFO kernel:Bootmem setup node 0 0000000000000000-0000000080000000 -05:51:18,517 INFO kernel: NODE_DATA [0000000000012040 - 000000000004603f] -05:51:18,517 INFO kernel: bootmap [0000000000047000 - 0000000000056fff] pages 10 -05:51:18,517 INFO kernel:(8 early reservations) ==> bootmem [0000000000 - 0080000000] -05:51:18,517 INFO kernel: #0 [0000000000 - 0000001000] BIOS data page ==> [0000000000 - 0000001000] -05:51:18,517 INFO kernel: #1 [0000006000 - 0000008000] TRAMPOLINE ==> [0000006000 - 0000008000] -05:51:18,517 INFO kernel: #2 [0001000000 - 000201faa4] TEXT DATA BSS ==> [0001000000 - 000201faa4] -05:51:18,517 INFO kernel: #3 [007def9000 - 007fecf4ff] RAMDISK ==> [007def9000 - 007fecf4ff] -05:51:18,517 INFO kernel: #4 [000009f400 - 0000100000] BIOS reserved ==> [000009f400 - 0000100000] -05:51:18,517 INFO kernel: #5 [0002020000 - 00020201f0] BRK ==> [0002020000 - 00020201f0] -05:51:18,517 INFO kernel: #6 [0000010000 - 0000011000] PGTABLE ==> [0000010000 - 0000011000] -05:51:18,517 INFO kernel: #7 [0000011000 - 0000012040] MEMNODEMAP ==> [0000011000 - 0000012040] -05:51:18,517 INFO kernel:found SMP MP-table at [ffff8800000f69b0] f69b0 -05:51:18,517 DEBUG kernel: [ffffea0000000000-ffffea0001bfffff] PMD -> [ffff880002600000-ffff8800041fffff] on node 0 -05:51:18,517 WARNING kernel:Zone PFN ranges: -05:51:18,517 WARNING kernel: DMA 0x00000010 -> 0x00001000 -05:51:18,517 WARNING kernel: DMA32 0x00001000 -> 0x00100000 -05:51:18,517 WARNING kernel: Normal 0x00100000 -> 0x00100000 -05:51:18,517 WARNING kernel:Movable zone start PFN for each node -05:51:18,517 WARNING kernel:early_node_map[3] active PFN ranges -05:51:18,517 WARNING kernel: 0: 0x00000010 -> 0x0000009f -05:51:18,517 WARNING kernel: 0: 0x00000100 -> 0x0007fef0 -05:51:18,517 WARNING kernel: 0: 0x0007ff00 -> 0x00080000 -05:51:18,517 DEBUG kernel:On node 0 totalpages: 524159 -05:51:18,517 DEBUG kernel: DMA zone: 56 pages used for memmap -05:51:18,517 DEBUG kernel: DMA zone: 101 pages reserved -05:51:18,517 DEBUG kernel: DMA zone: 3826 pages, LIFO batch:0 -05:51:18,517 DEBUG kernel: DMA32 zone: 7112 pages used for memmap -05:51:18,517 DEBUG kernel: DMA32 zone: 513064 pages, LIFO batch:31 -05:51:18,517 INFO kernel:ACPI: PM-Timer IO Port: 0x1008 -05:51:18,517 DEBUG kernel:ACPI: Local APIC address 0xfee00000 -05:51:18,517 INFO kernel:Setting APIC routing to flat. -05:51:18,517 INFO kernel:ACPI: LAPIC (acpi_id[0x00] lapic_id[0x00] enabled) -05:51:18,517 INFO kernel:ACPI: LAPIC (acpi_id[0x01] lapic_id[0x01] enabled) -05:51:18,517 INFO kernel:ACPI: LAPIC_NMI (acpi_id[0x00] high edge lint[0x1]) -05:51:18,517 INFO kernel:ACPI: LAPIC_NMI (acpi_id[0x01] high edge lint[0x1]) -05:51:18,517 INFO kernel:ACPI: IOAPIC (id[0x02] address[0xfec00000] gsi_base[0]) -05:51:18,518 INFO kernel:IOAPIC[0]: apic_id 2, version 17, address 0xfec00000, GSI 0-23 -05:51:18,518 INFO kernel:ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 high edge) -05:51:18,518 DEBUG kernel:ACPI: IRQ0 used by override. -05:51:18,518 DEBUG kernel:ACPI: IRQ2 used by override. -05:51:18,518 DEBUG kernel:ACPI: IRQ9 used by override. -05:51:18,518 INFO kernel:Using ACPI (MADT) for SMP configuration information -05:51:18,518 INFO kernel:ACPI: HPET id: 0x8086af01 base: 0xfed00000 -05:51:18,518 INFO kernel:SMP: Allowing 2 CPUs, 0 hotplug CPUs -05:51:18,518 DEBUG kernel:nr_irqs_gsi: 24 -05:51:18,518 INFO kernel:PM: Registered nosave memory: 000000000009f000 - 00000000000a0000 -05:51:18,518 INFO kernel:PM: Registered nosave memory: 00000000000a0000 - 00000000000ca000 -05:51:18,518 INFO kernel:PM: Registered nosave memory: 00000000000ca000 - 00000000000cc000 -05:51:18,518 INFO kernel:PM: Registered nosave memory: 00000000000cc000 - 00000000000dc000 -05:51:18,518 INFO kernel:PM: Registered nosave memory: 00000000000dc000 - 0000000000100000 -05:51:18,518 INFO kernel:PM: Registered nosave memory: 000000007fef0000 - 000000007feff000 -05:51:18,518 INFO kernel:PM: Registered nosave memory: 000000007feff000 - 000000007ff00000 -05:51:18,518 INFO kernel:Allocating PCI resources starting at 80000000 (gap: 80000000:60000000) -05:51:18,518 INFO kernel:Booting paravirtualized kernel on bare hardware -05:51:18,518 INFO kernel:NR_CPUS:4096 nr_cpumask_bits:2 nr_cpu_ids:2 nr_node_ids:1 -05:51:18,518 INFO kernel:PERCPU: Embedded 31 pages/cpu @ffff880002200000 s94872 r8192 d23912 u1048576 -05:51:18,518 INFO kernel:pcpu-alloc: s94872 r8192 d23912 u1048576 alloc=1*2097152 -05:51:18,518 INFO kernel:pcpu-alloc: [0] 0 1 -05:51:18,518 WARNING kernel:Built 1 zonelists in Node order, mobility grouping on. Total pages: 516890 -05:51:18,520 WARNING kernel:Policy zone: DMA32 -05:51:18,520 NOTICE kernel:Kernel command line: initrd=/images/CentOS-6.5-x86_64/initrd.img ksdevice=bootif lang= kssendmac text ks=http://10.145.88.211/cblr/svc/op/ks/system/server1.1 BOOT_IMAGE=/images/CentOS-6.5-x86_64/vmlinuz BOOTIF=01-00-0c-29-21-89-af -05:51:18,520 INFO kernel:PID hash table entries: 4096 (order: 3, 32768 bytes) -05:51:18,520 INFO kernel:Checking aperture... -05:51:18,520 INFO kernel:No AGP bridge found -05:51:18,520 INFO kernel:Memory: 2018096k/2097152k available (5325k kernel code, 516k absent, 78540k reserved, 7013k data, 1276k init) -05:51:18,520 INFO kernel:Hierarchical RCU implementation. -05:51:18,520 INFO kernel:NR_IRQS:33024 nr_irqs:424 -05:51:18,520 INFO kernel:Extended CMOS year: 2000 -05:51:18,520 WARNING kernel:Console: colour VGA+ 80x25 -05:51:18,520 INFO kernel:console [tty0] enabled -05:51:18,520 INFO kernel:allocated 8388608 bytes of page_cgroup -05:51:18,520 INFO kernel:please try 'cgroup_disable=memory' option if you don't want memory cgroups -05:51:18,520 DEBUG kernel:hpet clockevent registered -05:51:18,520 INFO kernel:TSC freq read from hypervisor : 2400.085 MHz -05:51:18,520 WARNING kernel:Detected 2400.085 MHz processor. -05:51:18,520 INFO kernel:Calibrating delay loop (skipped) preset value.. 4800.17 BogoMIPS (lpj=2400085) -05:51:18,520 INFO kernel:pid_max: default: 32768 minimum: 301 -05:51:18,520 INFO kernel:Security Framework initialized -05:51:18,520 INFO kernel:SELinux: Initializing. -05:51:18,520 DEBUG kernel:SELinux: Starting in permissive mode -05:51:18,520 INFO kernel:Dentry cache hash table entries: 262144 (order: 9, 2097152 bytes) -05:51:18,520 INFO kernel:Inode-cache hash table entries: 131072 (order: 8, 1048576 bytes) -05:51:18,520 WARNING kernel:Mount-cache hash table entries: 256 -05:51:18,520 INFO kernel:Initializing cgroup subsys ns -05:51:18,520 INFO kernel:Initializing cgroup subsys cpuacct -05:51:18,520 INFO kernel:Initializing cgroup subsys memory -05:51:18,520 INFO kernel:Initializing cgroup subsys devices -05:51:18,520 INFO kernel:Initializing cgroup subsys freezer -05:51:18,520 INFO kernel:Initializing cgroup subsys net_cls -05:51:18,520 INFO kernel:Initializing cgroup subsys blkio -05:51:18,520 INFO kernel:Initializing cgroup subsys perf_event -05:51:18,520 INFO kernel:Initializing cgroup subsys net_prio -05:51:18,520 INFO kernel:Disabled fast string operations -05:51:18,520 INFO kernel:CPU: Physical Processor ID: 0 -05:51:18,520 INFO kernel:mce: CPU supports 0 MCE banks -05:51:18,520 INFO kernel:alternatives: switching to unfair spinlock -05:51:18,520 INFO kernel:ACPI: Core revision 20090903 -05:51:18,520 INFO kernel:ftrace: converting mcount calls to 0f 1f 44 00 00 -05:51:18,520 INFO kernel:ftrace: allocating 21769 entries in 86 pages -05:51:18,520 INFO kernel:APIC routing finalized to flat. -05:51:18,520 INFO kernel:..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1 -05:51:18,520 INFO kernel:CPU0: Intel(R) Xeon(R) CPU E5620 @ 2.40GHz stepping 02 -05:51:18,520 INFO kernel:Performance Events: 16-deep LBR, Westmere events, Intel PMU driver. -05:51:18,520 WARNING kernel:CPUID marked event: 'cpu cycles' unavailable -05:51:18,520 WARNING kernel:CPUID marked event: 'instructions' unavailable -05:51:18,520 WARNING kernel:CPUID marked event: 'bus cycles' unavailable -05:51:18,520 WARNING kernel:CPUID marked event: 'cache references' unavailable -05:51:18,520 WARNING kernel:CPUID marked event: 'cache misses' unavailable -05:51:18,520 WARNING kernel:CPUID marked event: 'branch instructions' unavailable -05:51:18,520 WARNING kernel:CPUID marked event: 'branch misses' unavailable -05:51:18,520 INFO kernel:... version: 3 -05:51:18,520 INFO kernel:... bit width: 48 -05:51:18,520 INFO kernel:... generic registers: 4 -05:51:18,520 INFO kernel:... value mask: 0000ffffffffffff -05:51:18,520 INFO kernel:... max period: 000000007fffffff -05:51:18,520 INFO kernel:... fixed-purpose events: 3 -05:51:18,520 INFO kernel:... event mask: 000000070000000f -05:51:18,520 WARNING kernel:NMI watchdog disabled (cpu0): hardware events not enabled -05:51:18,520 INFO kernel:Booting Node 0, Processors #1 Ok. -05:51:18,520 INFO kernel:Disabled fast string operations -05:51:18,520 INFO kernel:mce: CPU supports 0 MCE banks -05:51:18,520 INFO kernel:Skipped synchronization checks as TSC is reliable. -05:51:18,520 INFO kernel:Brought up 2 CPUs -05:51:18,520 INFO kernel:Total of 2 processors activated (9600.34 BogoMIPS). -05:51:18,520 INFO kernel:x86 PAT enabled: cpu 0, old 0x0, new 0x7010600070106 -05:51:18,520 INFO kernel:x86 PAT enabled: cpu 1, old 0x0, new 0x7010600070106 -05:51:18,520 DEBUG kernel:sizeof(vma)=200 bytes -05:51:18,520 DEBUG kernel:sizeof(page)=56 bytes -05:51:18,520 DEBUG kernel:sizeof(inode)=592 bytes -05:51:18,520 DEBUG kernel:sizeof(dentry)=192 bytes -05:51:18,520 DEBUG kernel:sizeof(ext3inode)=800 bytes -05:51:18,520 DEBUG kernel:sizeof(buffer_head)=104 bytes -05:51:18,520 DEBUG kernel:sizeof(skbuff)=232 bytes -05:51:18,520 DEBUG kernel:sizeof(task_struct)=2648 bytes -05:51:18,520 INFO kernel:devtmpfs: initialized -05:51:18,520 INFO kernel:PM: Registering ACPI NVS region at 7feff000 (4096 bytes) -05:51:18,520 INFO kernel:regulator: core version 0.5 -05:51:18,520 INFO kernel:NET: Registered protocol family 16 -05:51:18,520 INFO kernel:ACPI: bus type pci registered -05:51:18,520 NOTICE kernel:PCI: MCFG configuration 0: base e0000000 segment 0 buses 0 - 255 -05:51:18,520 NOTICE kernel:PCI: MCFG area at e0000000 reserved in E820 -05:51:18,520 INFO kernel:PCI: Using MMCONFIG at e0000000 - efffffff -05:51:18,520 INFO kernel:PCI: Using configuration type 1 for base access -05:51:18,520 WARNING kernel:bio: create slab at 0 -05:51:18,520 DEBUG kernel:ACPI: EC: Look up EC in DSDT -05:51:18,520 NOTICE kernel:ACPI: BIOS _OSI(Linux) query ignored -05:51:18,520 INFO kernel:ACPI: Interpreter enabled -05:51:18,520 INFO kernel:ACPI: (supports S0 S1 S4 S5) -05:51:18,520 INFO kernel:ACPI: Using IOAPIC for interrupt routing -05:51:18,520 INFO kernel:ACPI: No dock devices found. -05:51:18,520 INFO kernel:PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug -05:51:18,520 INFO kernel:ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-ff]) -05:51:18,520 INFO kernel:pci_root PNP0A03:00: host bridge window [mem 0x000a0000-0x000bffff] -05:51:18,520 INFO kernel:pci_root PNP0A03:00: host bridge window [mem 0x000d0000-0x000d3fff] -05:51:18,520 INFO kernel:pci_root PNP0A03:00: host bridge window [mem 0x000d4000-0x000d7fff] -05:51:18,520 INFO kernel:pci_root PNP0A03:00: host bridge window [mem 0x000d8000-0x000dbfff] -05:51:18,520 INFO kernel:pci_root PNP0A03:00: host bridge window [mem 0x80000000-0xfebfffff] -05:51:18,520 INFO kernel:pci_root PNP0A03:00: host bridge window [io 0x0000-0x0cf7] -05:51:18,520 INFO kernel:pci_root PNP0A03:00: host bridge window [io 0x0d00-0xfeff] -05:51:18,520 INFO kernel:PCI host bridge to bus 0000:00 -05:51:18,520 INFO kernel:pci_bus 0000:00: root bus resource [mem 0x000a0000-0x000bffff] -05:51:18,520 INFO kernel:pci_bus 0000:00: root bus resource [mem 0x000d0000-0x000d3fff] -05:51:18,520 INFO kernel:pci_bus 0000:00: root bus resource [mem 0x000d4000-0x000d7fff] -05:51:18,520 INFO kernel:pci_bus 0000:00: root bus resource [mem 0x000d8000-0x000dbfff] -05:51:18,520 INFO kernel:pci_bus 0000:00: root bus resource [mem 0x80000000-0xfebfffff] -05:51:18,520 INFO kernel:pci_bus 0000:00: root bus resource [io 0x0000-0x0cf7] -05:51:18,520 INFO kernel:pci_bus 0000:00: root bus resource [io 0x0d00-0xfeff] -05:51:18,520 DEBUG kernel:pci 0000:00:07.1: reg 20: [io 0x10c0-0x10cf] -05:51:18,520 INFO kernel:pci 0000:00:07.3: quirk: [io 0x1000-0x103f] claimed by PIIX4 ACPI -05:51:18,520 INFO kernel:pci 0000:00:07.3: quirk: [io 0x1040-0x104f] claimed by PIIX4 SMB -05:51:18,520 DEBUG kernel:pci 0000:00:07.7: reg 10: [io 0x1080-0x10bf] -05:51:18,520 DEBUG kernel:pci 0000:00:07.7: reg 14: [mem 0xd0000000-0xd0001fff 64bit] -05:51:18,520 DEBUG kernel:pci 0000:00:0f.0: reg 10: [io 0x10d0-0x10df] -05:51:18,520 DEBUG kernel:pci 0000:00:0f.0: reg 14: [mem 0xd8000000-0xdbffffff pref] -05:51:18,520 DEBUG kernel:pci 0000:00:0f.0: reg 18: [mem 0xd0800000-0xd0ffffff] -05:51:18,520 DEBUG kernel:pci 0000:00:0f.0: reg 30: [mem 0x00000000-0x00007fff pref] -05:51:18,520 DEBUG kernel:pci 0000:00:10.0: reg 10: [io 0x1400-0x14ff] -05:51:18,520 DEBUG kernel:pci 0000:00:10.0: reg 14: [mem 0xd0040000-0xd005ffff 64bit] -05:51:18,520 DEBUG kernel:pci 0000:00:10.0: reg 1c: [mem 0xd0020000-0xd003ffff 64bit] -05:51:18,520 DEBUG kernel:pci 0000:00:10.0: reg 30: [mem 0x00000000-0x00003fff pref] -05:51:18,520 INFO kernel:pci 0000:00:15.0: PME# supported from D0 D3hot D3cold -05:51:18,520 INFO kernel:pci 0000:00:15.0: PME# disabled -05:51:18,520 INFO kernel:pci 0000:00:15.1: PME# supported from D0 D3hot D3cold -05:51:18,520 INFO kernel:pci 0000:00:15.1: PME# disabled -05:51:18,520 INFO kernel:pci 0000:00:15.2: PME# supported from D0 D3hot D3cold -05:51:18,520 INFO kernel:pci 0000:00:15.2: PME# disabled -05:51:18,520 INFO kernel:pci 0000:00:15.3: PME# supported from D0 D3hot D3cold -05:51:18,520 INFO kernel:pci 0000:00:15.3: PME# disabled -05:51:18,520 INFO kernel:pci 0000:00:15.4: PME# supported from D0 D3hot D3cold -05:51:18,520 INFO kernel:pci 0000:00:15.4: PME# disabled -05:51:18,520 INFO kernel:pci 0000:00:15.5: PME# supported from D0 D3hot D3cold -05:51:18,520 INFO kernel:pci 0000:00:15.5: PME# disabled -05:51:18,520 INFO kernel:pci 0000:00:15.6: PME# supported from D0 D3hot D3cold -05:51:18,520 INFO kernel:pci 0000:00:15.6: PME# disabled -05:51:18,520 INFO kernel:pci 0000:00:15.7: PME# supported from D0 D3hot D3cold -05:51:18,520 INFO kernel:pci 0000:00:15.7: PME# disabled -05:51:18,520 INFO kernel:pci 0000:00:16.0: PME# supported from D0 D3hot D3cold -05:51:18,520 INFO kernel:pci 0000:00:16.0: PME# disabled -05:51:18,520 INFO kernel:pci 0000:00:16.1: PME# supported from D0 D3hot D3cold -05:51:18,520 INFO kernel:pci 0000:00:16.1: PME# disabled -05:51:18,520 INFO kernel:pci 0000:00:16.2: PME# supported from D0 D3hot D3cold -05:51:18,520 INFO kernel:pci 0000:00:16.2: PME# disabled -05:51:18,520 INFO kernel:pci 0000:00:16.3: PME# supported from D0 D3hot D3cold -05:51:18,520 INFO kernel:pci 0000:00:16.3: PME# disabled -05:51:18,520 INFO kernel:pci 0000:00:16.4: PME# supported from D0 D3hot D3cold -05:51:18,520 INFO kernel:pci 0000:00:16.4: PME# disabled -05:51:18,520 INFO kernel:pci 0000:00:16.5: PME# supported from D0 D3hot D3cold -05:51:18,520 INFO kernel:pci 0000:00:16.5: PME# disabled -05:51:18,520 INFO kernel:pci 0000:00:16.6: PME# supported from D0 D3hot D3cold -05:51:18,520 INFO kernel:pci 0000:00:16.6: PME# disabled -05:51:18,520 INFO kernel:pci 0000:00:16.7: PME# supported from D0 D3hot D3cold -05:51:18,520 INFO kernel:pci 0000:00:16.7: PME# disabled -05:51:18,520 INFO kernel:pci 0000:00:17.0: PME# supported from D0 D3hot D3cold -05:51:18,520 INFO kernel:pci 0000:00:17.0: PME# disabled -05:51:18,520 INFO kernel:pci 0000:00:17.1: PME# supported from D0 D3hot D3cold -05:51:18,520 INFO kernel:pci 0000:00:17.1: PME# disabled -05:51:18,520 INFO kernel:pci 0000:00:17.2: PME# supported from D0 D3hot D3cold -05:51:18,520 INFO kernel:pci 0000:00:17.2: PME# disabled -05:51:18,520 INFO kernel:pci 0000:00:17.3: PME# supported from D0 D3hot D3cold -05:51:18,520 INFO kernel:pci 0000:00:17.3: PME# disabled -05:51:18,520 INFO kernel:pci 0000:00:17.4: PME# supported from D0 D3hot D3cold -05:51:18,520 INFO kernel:pci 0000:00:17.4: PME# disabled -05:51:18,520 INFO kernel:pci 0000:00:17.5: PME# supported from D0 D3hot D3cold -05:51:18,520 INFO kernel:pci 0000:00:17.5: PME# disabled -05:51:18,520 INFO kernel:pci 0000:00:17.6: PME# supported from D0 D3hot D3cold -05:51:18,520 INFO kernel:pci 0000:00:17.6: PME# disabled -05:51:18,520 INFO kernel:pci 0000:00:17.7: PME# supported from D0 D3hot D3cold -05:51:18,520 INFO kernel:pci 0000:00:17.7: PME# disabled -05:51:18,520 INFO kernel:pci 0000:00:18.0: PME# supported from D0 D3hot D3cold -05:51:18,520 INFO kernel:pci 0000:00:18.0: PME# disabled -05:51:18,520 INFO kernel:pci 0000:00:18.1: PME# supported from D0 D3hot D3cold -05:51:18,520 INFO kernel:pci 0000:00:18.1: PME# disabled -05:51:18,520 INFO kernel:pci 0000:00:18.2: PME# supported from D0 D3hot D3cold -05:51:18,520 INFO kernel:pci 0000:00:18.2: PME# disabled -05:51:18,520 INFO kernel:pci 0000:00:18.3: PME# supported from D0 D3hot D3cold -05:51:18,520 INFO kernel:pci 0000:00:18.3: PME# disabled -05:51:18,520 INFO kernel:pci 0000:00:18.4: PME# supported from D0 D3hot D3cold -05:51:18,520 INFO kernel:pci 0000:00:18.4: PME# disabled -05:51:18,520 INFO kernel:pci 0000:00:18.5: PME# supported from D0 D3hot D3cold -05:51:18,520 INFO kernel:pci 0000:00:18.5: PME# disabled -05:51:18,520 INFO kernel:pci 0000:00:18.6: PME# supported from D0 D3hot D3cold -05:51:18,520 INFO kernel:pci 0000:00:18.6: PME# disabled -05:51:18,520 INFO kernel:pci 0000:00:18.7: PME# supported from D0 D3hot D3cold -05:51:18,520 INFO kernel:pci 0000:00:18.7: PME# disabled -05:51:18,520 INFO kernel:pci 0000:00:01.0: PCI bridge to [bus 01-01] -05:51:18,520 DEBUG kernel:pci 0000:00:01.0: bridge window [io 0xf000-0x0000] (disabled) -05:51:18,520 DEBUG kernel:pci 0000:00:01.0: bridge window [mem 0xfff00000-0x000fffff] (disabled) -05:51:18,520 DEBUG kernel:pci 0000:00:01.0: bridge window [mem 0xfff00000-0x000fffff pref] (disabled) -05:51:18,520 DEBUG kernel:pci 0000:02:00.0: reg 10: [mem 0xd1020000-0xd103ffff 64bit] -05:51:18,520 DEBUG kernel:pci 0000:02:00.0: reg 18: [mem 0xd1000000-0xd100ffff 64bit] -05:51:18,520 DEBUG kernel:pci 0000:02:00.0: reg 20: [io 0x2000-0x203f] -05:51:18,520 DEBUG kernel:pci 0000:02:00.0: reg 30: [mem 0x00000000-0x0000ffff pref] -05:51:18,520 INFO kernel:pci 0000:02:00.0: PME# supported from D0 D3hot D3cold -05:51:18,520 INFO kernel:pci 0000:02:00.0: PME# disabled -05:51:18,520 DEBUG kernel:pci 0000:02:01.0: reg 10: [mem 0xd1040000-0xd105ffff 64bit] -05:51:18,520 DEBUG kernel:pci 0000:02:01.0: reg 18: [mem 0xd1010000-0xd101ffff 64bit] -05:51:18,520 DEBUG kernel:pci 0000:02:01.0: reg 20: [io 0x2040-0x207f] -05:51:18,520 DEBUG kernel:pci 0000:02:01.0: reg 30: [mem 0x00000000-0x0000ffff pref] -05:51:18,520 INFO kernel:pci 0000:02:01.0: PME# supported from D0 D3hot D3cold -05:51:18,520 INFO kernel:pci 0000:02:01.0: PME# disabled -05:51:18,520 DEBUG kernel:pci 0000:02:02.0: reg 10: [mem 0xd1080000-0xd109ffff 64bit] -05:51:18,520 DEBUG kernel:pci 0000:02:02.0: reg 18: [mem 0xd1060000-0xd106ffff 64bit] -05:51:18,520 DEBUG kernel:pci 0000:02:02.0: reg 20: [io 0x2080-0x20bf] -05:51:18,520 DEBUG kernel:pci 0000:02:02.0: reg 30: [mem 0x00000000-0x0000ffff pref] -05:51:18,520 INFO kernel:pci 0000:02:02.0: PME# supported from D0 D3hot D3cold -05:51:18,520 INFO kernel:pci 0000:02:02.0: PME# disabled -05:51:18,520 DEBUG kernel:pci 0000:02:03.0: reg 10: [mem 0xd10a0000-0xd10bffff 64bit] -05:51:18,520 DEBUG kernel:pci 0000:02:03.0: reg 18: [mem 0xd1070000-0xd107ffff 64bit] -05:51:18,520 DEBUG kernel:pci 0000:02:03.0: reg 20: [io 0x20c0-0x20ff] -05:51:18,520 DEBUG kernel:pci 0000:02:03.0: reg 30: [mem 0x00000000-0x0000ffff pref] -05:51:18,520 INFO kernel:pci 0000:02:03.0: PME# supported from D0 D3hot D3cold -05:51:18,520 INFO kernel:pci 0000:02:03.0: PME# disabled -05:51:18,520 INFO kernel:pci 0000:00:11.0: PCI bridge to [bus 02-02] (subtractive decode) -05:51:18,520 DEBUG kernel:pci 0000:00:11.0: bridge window [io 0x2000-0x3fff] -05:51:18,520 DEBUG kernel:pci 0000:00:11.0: bridge window [mem 0xd1000000-0xd23fffff] -05:51:18,520 DEBUG kernel:pci 0000:00:11.0: bridge window [mem 0xdc400000-0xdc9fffff 64bit pref] -05:51:18,520 DEBUG kernel:pci 0000:00:11.0: bridge window [mem 0x000a0000-0x000bffff] (subtractive decode) -05:51:18,520 DEBUG kernel:pci 0000:00:11.0: bridge window [mem 0x000d0000-0x000d3fff] (subtractive decode) -05:51:18,520 DEBUG kernel:pci 0000:00:11.0: bridge window [mem 0x000d4000-0x000d7fff] (subtractive decode) -05:51:18,520 DEBUG kernel:pci 0000:00:11.0: bridge window [mem 0x000d8000-0x000dbfff] (subtractive decode) -05:51:18,520 DEBUG kernel:pci 0000:00:11.0: bridge window [mem 0x80000000-0xfebfffff] (subtractive decode) -05:51:18,520 DEBUG kernel:pci 0000:00:11.0: bridge window [io 0x0000-0x0cf7] (subtractive decode) -05:51:18,520 DEBUG kernel:pci 0000:00:11.0: bridge window [io 0x0d00-0xfeff] (subtractive decode) -05:51:18,520 INFO kernel:pci 0000:00:15.0: PCI bridge to [bus 03-03] -05:51:18,520 DEBUG kernel:pci 0000:00:15.0: bridge window [io 0x4000-0x4fff] -05:51:18,520 DEBUG kernel:pci 0000:00:15.0: bridge window [mem 0xd2400000-0xd24fffff] -05:51:18,520 DEBUG kernel:pci 0000:00:15.0: bridge window [mem 0xd4400000-0xd44fffff 64bit pref] -05:51:18,520 INFO kernel:pci 0000:00:15.1: PCI bridge to [bus 04-04] -05:51:18,520 DEBUG kernel:pci 0000:00:15.1: bridge window [io 0x8000-0x8fff] -05:51:18,520 DEBUG kernel:pci 0000:00:15.1: bridge window [mem 0xd2800000-0xd28fffff] -05:51:18,520 DEBUG kernel:pci 0000:00:15.1: bridge window [mem 0xd4800000-0xd48fffff 64bit pref] -05:51:18,520 INFO kernel:pci 0000:00:15.2: PCI bridge to [bus 05-05] -05:51:18,520 DEBUG kernel:pci 0000:00:15.2: bridge window [io 0xc000-0xcfff] -05:51:18,520 DEBUG kernel:pci 0000:00:15.2: bridge window [mem 0xd2c00000-0xd2cfffff] -05:51:18,520 DEBUG kernel:pci 0000:00:15.2: bridge window [mem 0xdcb00000-0xdcbfffff 64bit pref] -05:51:18,520 INFO kernel:pci 0000:00:15.3: PCI bridge to [bus 06-06] -05:51:18,520 DEBUG kernel:pci 0000:00:15.3: bridge window [io 0xf000-0x0000] (disabled) -05:51:18,520 DEBUG kernel:pci 0000:00:15.3: bridge window [mem 0xd3000000-0xd30fffff] -05:51:18,520 DEBUG kernel:pci 0000:00:15.3: bridge window [mem 0xdcd00000-0xdcdfffff 64bit pref] -05:51:18,520 INFO kernel:pci 0000:00:15.4: PCI bridge to [bus 07-07] -05:51:18,520 DEBUG kernel:pci 0000:00:15.4: bridge window [io 0xf000-0x0000] (disabled) -05:51:18,520 DEBUG kernel:pci 0000:00:15.4: bridge window [mem 0xd3400000-0xd34fffff] -05:51:18,520 DEBUG kernel:pci 0000:00:15.4: bridge window [mem 0xdcf00000-0xdcffffff 64bit pref] -05:51:18,520 INFO kernel:pci 0000:00:15.5: PCI bridge to [bus 08-08] -05:51:18,520 DEBUG kernel:pci 0000:00:15.5: bridge window [io 0xf000-0x0000] (disabled) -05:51:18,520 DEBUG kernel:pci 0000:00:15.5: bridge window [mem 0xd3800000-0xd38fffff] -05:51:18,520 DEBUG kernel:pci 0000:00:15.5: bridge window [mem 0xdd100000-0xdd1fffff 64bit pref] -05:51:18,520 INFO kernel:pci 0000:00:15.6: PCI bridge to [bus 09-09] -05:51:18,520 DEBUG kernel:pci 0000:00:15.6: bridge window [io 0xf000-0x0000] (disabled) -05:51:18,520 DEBUG kernel:pci 0000:00:15.6: bridge window [mem 0xd3c00000-0xd3cfffff] -05:51:18,520 DEBUG kernel:pci 0000:00:15.6: bridge window [mem 0xdd300000-0xdd3fffff 64bit pref] -05:51:18,520 INFO kernel:pci 0000:00:15.7: PCI bridge to [bus 0a-0a] -05:51:18,520 DEBUG kernel:pci 0000:00:15.7: bridge window [io 0xf000-0x0000] (disabled) -05:51:18,520 DEBUG kernel:pci 0000:00:15.7: bridge window [mem 0xd4000000-0xd40fffff] -05:51:18,520 DEBUG kernel:pci 0000:00:15.7: bridge window [mem 0xdd500000-0xdd5fffff 64bit pref] -05:51:18,520 INFO kernel:pci 0000:00:16.0: PCI bridge to [bus 0b-0b] -05:51:18,520 DEBUG kernel:pci 0000:00:16.0: bridge window [io 0x5000-0x5fff] -05:51:18,520 DEBUG kernel:pci 0000:00:16.0: bridge window [mem 0xd2500000-0xd25fffff] -05:51:18,520 DEBUG kernel:pci 0000:00:16.0: bridge window [mem 0xd4500000-0xd45fffff 64bit pref] -05:51:18,521 INFO kernel:pci 0000:00:16.1: PCI bridge to [bus 0c-0c] -05:51:18,521 DEBUG kernel:pci 0000:00:16.1: bridge window [io 0x9000-0x9fff] -05:51:18,521 DEBUG kernel:pci 0000:00:16.1: bridge window [mem 0xd2900000-0xd29fffff] -05:51:18,521 DEBUG kernel:pci 0000:00:16.1: bridge window [mem 0xd4900000-0xd49fffff 64bit pref] -05:51:18,521 INFO kernel:pci 0000:00:16.2: PCI bridge to [bus 0d-0d] -05:51:18,521 DEBUG kernel:pci 0000:00:16.2: bridge window [io 0xd000-0xdfff] -05:51:18,521 DEBUG kernel:pci 0000:00:16.2: bridge window [mem 0xd2d00000-0xd2dfffff] -05:51:18,521 DEBUG kernel:pci 0000:00:16.2: bridge window [mem 0xd4b00000-0xd4bfffff 64bit pref] -05:51:18,521 INFO kernel:pci 0000:00:16.3: PCI bridge to [bus 0e-0e] -05:51:18,521 DEBUG kernel:pci 0000:00:16.3: bridge window [io 0xf000-0x0000] (disabled) -05:51:18,521 DEBUG kernel:pci 0000:00:16.3: bridge window [mem 0xd3100000-0xd31fffff] -05:51:18,521 DEBUG kernel:pci 0000:00:16.3: bridge window [mem 0xd4d00000-0xd4dfffff 64bit pref] -05:51:18,521 INFO kernel:pci 0000:00:16.4: PCI bridge to [bus 0f-0f] -05:51:18,521 DEBUG kernel:pci 0000:00:16.4: bridge window [io 0xf000-0x0000] (disabled) -05:51:18,521 DEBUG kernel:pci 0000:00:16.4: bridge window [mem 0xd3500000-0xd35fffff] -05:51:18,521 DEBUG kernel:pci 0000:00:16.4: bridge window [mem 0xd4f00000-0xd4ffffff 64bit pref] -05:51:18,521 INFO kernel:pci 0000:00:16.5: PCI bridge to [bus 10-10] -05:51:18,521 DEBUG kernel:pci 0000:00:16.5: bridge window [io 0xf000-0x0000] (disabled) -05:51:18,521 DEBUG kernel:pci 0000:00:16.5: bridge window [mem 0xd3900000-0xd39fffff] -05:51:18,521 DEBUG kernel:pci 0000:00:16.5: bridge window [mem 0xd5100000-0xd51fffff 64bit pref] -05:51:18,521 INFO kernel:pci 0000:00:16.6: PCI bridge to [bus 11-11] -05:51:18,521 DEBUG kernel:pci 0000:00:16.6: bridge window [io 0xf000-0x0000] (disabled) -05:51:18,521 DEBUG kernel:pci 0000:00:16.6: bridge window [mem 0xd3d00000-0xd3dfffff] -05:51:18,521 DEBUG kernel:pci 0000:00:16.6: bridge window [mem 0xd5300000-0xd53fffff 64bit pref] -05:51:18,521 INFO kernel:pci 0000:00:16.7: PCI bridge to [bus 12-12] -05:51:18,521 DEBUG kernel:pci 0000:00:16.7: bridge window [io 0xf000-0x0000] (disabled) -05:51:18,521 DEBUG kernel:pci 0000:00:16.7: bridge window [mem 0xd4100000-0xd41fffff] -05:51:18,521 DEBUG kernel:pci 0000:00:16.7: bridge window [mem 0xd5500000-0xd55fffff 64bit pref] -05:51:18,521 INFO kernel:pci 0000:00:17.0: PCI bridge to [bus 13-13] -05:51:18,521 DEBUG kernel:pci 0000:00:17.0: bridge window [io 0x6000-0x6fff] -05:51:18,521 DEBUG kernel:pci 0000:00:17.0: bridge window [mem 0xd2600000-0xd26fffff] -05:51:18,521 DEBUG kernel:pci 0000:00:17.0: bridge window [mem 0xd4600000-0xd46fffff 64bit pref] -05:51:18,521 INFO kernel:pci 0000:00:17.1: PCI bridge to [bus 14-14] -05:51:18,521 DEBUG kernel:pci 0000:00:17.1: bridge window [io 0xa000-0xafff] -05:51:18,521 DEBUG kernel:pci 0000:00:17.1: bridge window [mem 0xd2a00000-0xd2afffff] -05:51:18,521 DEBUG kernel:pci 0000:00:17.1: bridge window [mem 0xdca00000-0xdcafffff 64bit pref] -05:51:18,521 INFO kernel:pci 0000:00:17.2: PCI bridge to [bus 15-15] -05:51:18,521 DEBUG kernel:pci 0000:00:17.2: bridge window [io 0xe000-0xefff] -05:51:18,521 DEBUG kernel:pci 0000:00:17.2: bridge window [mem 0xd2e00000-0xd2efffff] -05:51:18,521 DEBUG kernel:pci 0000:00:17.2: bridge window [mem 0xdcc00000-0xdccfffff 64bit pref] -05:51:18,521 INFO kernel:pci 0000:00:17.3: PCI bridge to [bus 16-16] -05:51:18,521 DEBUG kernel:pci 0000:00:17.3: bridge window [io 0xf000-0x0000] (disabled) -05:51:18,521 DEBUG kernel:pci 0000:00:17.3: bridge window [mem 0xd3200000-0xd32fffff] -05:51:18,521 DEBUG kernel:pci 0000:00:17.3: bridge window [mem 0xdce00000-0xdcefffff 64bit pref] -05:51:18,521 INFO kernel:pci 0000:00:17.4: PCI bridge to [bus 17-17] -05:51:18,521 DEBUG kernel:pci 0000:00:17.4: bridge window [io 0xf000-0x0000] (disabled) -05:51:18,521 DEBUG kernel:pci 0000:00:17.4: bridge window [mem 0xd3600000-0xd36fffff] -05:51:18,521 DEBUG kernel:pci 0000:00:17.4: bridge window [mem 0xdd000000-0xdd0fffff 64bit pref] -05:51:18,521 INFO kernel:pci 0000:00:17.5: PCI bridge to [bus 18-18] -05:51:18,521 DEBUG kernel:pci 0000:00:17.5: bridge window [io 0xf000-0x0000] (disabled) -05:51:18,521 DEBUG kernel:pci 0000:00:17.5: bridge window [mem 0xd3a00000-0xd3afffff] -05:51:18,521 DEBUG kernel:pci 0000:00:17.5: bridge window [mem 0xdd200000-0xdd2fffff 64bit pref] -05:51:18,521 INFO kernel:pci 0000:00:17.6: PCI bridge to [bus 19-19] -05:51:18,521 DEBUG kernel:pci 0000:00:17.6: bridge window [io 0xf000-0x0000] (disabled) -05:51:18,521 DEBUG kernel:pci 0000:00:17.6: bridge window [mem 0xd3e00000-0xd3efffff] -05:51:18,521 DEBUG kernel:pci 0000:00:17.6: bridge window [mem 0xdd400000-0xdd4fffff 64bit pref] -05:51:18,521 INFO kernel:pci 0000:00:17.7: PCI bridge to [bus 1a-1a] -05:51:18,521 DEBUG kernel:pci 0000:00:17.7: bridge window [io 0xf000-0x0000] (disabled) -05:51:18,521 DEBUG kernel:pci 0000:00:17.7: bridge window [mem 0xd4200000-0xd42fffff] -05:51:18,521 DEBUG kernel:pci 0000:00:17.7: bridge window [mem 0xdd600000-0xdd6fffff 64bit pref] -05:51:18,521 INFO kernel:pci 0000:00:18.0: PCI bridge to [bus 1b-1b] -05:51:18,521 DEBUG kernel:pci 0000:00:18.0: bridge window [io 0x7000-0x7fff] -05:51:18,521 DEBUG kernel:pci 0000:00:18.0: bridge window [mem 0xd2700000-0xd27fffff] -05:51:18,521 DEBUG kernel:pci 0000:00:18.0: bridge window [mem 0xd4700000-0xd47fffff 64bit pref] -05:51:18,521 INFO kernel:pci 0000:00:18.1: PCI bridge to [bus 1c-1c] -05:51:18,521 DEBUG kernel:pci 0000:00:18.1: bridge window [io 0xb000-0xbfff] -05:51:18,521 DEBUG kernel:pci 0000:00:18.1: bridge window [mem 0xd2b00000-0xd2bfffff] -05:51:18,521 DEBUG kernel:pci 0000:00:18.1: bridge window [mem 0xd4a00000-0xd4afffff 64bit pref] -05:51:18,521 INFO kernel:pci 0000:00:18.2: PCI bridge to [bus 1d-1d] -05:51:18,521 DEBUG kernel:pci 0000:00:18.2: bridge window [io 0xf000-0xffff] -05:51:18,521 DEBUG kernel:pci 0000:00:18.2: bridge window [mem 0xd2f00000-0xd2ffffff] -05:51:18,521 DEBUG kernel:pci 0000:00:18.2: bridge window [mem 0xd4c00000-0xd4cfffff 64bit pref] -05:51:18,521 INFO kernel:pci 0000:00:18.3: PCI bridge to [bus 1e-1e] -05:51:18,521 DEBUG kernel:pci 0000:00:18.3: bridge window [io 0xf000-0x0000] (disabled) -05:51:18,521 DEBUG kernel:pci 0000:00:18.3: bridge window [mem 0xd3300000-0xd33fffff] -05:51:18,521 DEBUG kernel:pci 0000:00:18.3: bridge window [mem 0xd4e00000-0xd4efffff 64bit pref] -05:51:18,521 INFO kernel:pci 0000:00:18.4: PCI bridge to [bus 1f-1f] -05:51:18,521 DEBUG kernel:pci 0000:00:18.4: bridge window [io 0xf000-0x0000] (disabled) -05:51:18,521 DEBUG kernel:pci 0000:00:18.4: bridge window [mem 0xd3700000-0xd37fffff] -05:51:18,521 DEBUG kernel:pci 0000:00:18.4: bridge window [mem 0xd5000000-0xd50fffff 64bit pref] -05:51:18,521 INFO kernel:pci 0000:00:18.5: PCI bridge to [bus 20-20] -05:51:18,521 DEBUG kernel:pci 0000:00:18.5: bridge window [io 0xf000-0x0000] (disabled) -05:51:18,521 DEBUG kernel:pci 0000:00:18.5: bridge window [mem 0xd3b00000-0xd3bfffff] -05:51:18,521 DEBUG kernel:pci 0000:00:18.5: bridge window [mem 0xd5200000-0xd52fffff 64bit pref] -05:51:18,521 INFO kernel:pci 0000:00:18.6: PCI bridge to [bus 21-21] -05:51:18,521 DEBUG kernel:pci 0000:00:18.6: bridge window [io 0xf000-0x0000] (disabled) -05:51:18,521 DEBUG kernel:pci 0000:00:18.6: bridge window [mem 0xd3f00000-0xd3ffffff] -05:51:18,521 DEBUG kernel:pci 0000:00:18.6: bridge window [mem 0xd5400000-0xd54fffff 64bit pref] -05:51:18,521 INFO kernel:pci 0000:00:18.7: PCI bridge to [bus 22-22] -05:51:18,521 DEBUG kernel:pci 0000:00:18.7: bridge window [io 0xf000-0x0000] (disabled) -05:51:18,521 DEBUG kernel:pci 0000:00:18.7: bridge window [mem 0xd4300000-0xd43fffff] -05:51:18,521 DEBUG kernel:pci 0000:00:18.7: bridge window [mem 0xd5600000-0xd56fffff 64bit pref] -05:51:18,521 DEBUG kernel:ACPI: PCI Interrupt Routing Table [\_SB_.PCI0._PRT] -05:51:18,521 INFO kernel: pci0000:00: Requesting ACPI _OSC control (0x1d) -05:51:18,521 INFO kernel: pci0000:00: ACPI _OSC control (0x15) granted -05:51:18,521 INFO kernel:ACPI: PCI Interrupt Link [LNKA] (IRQs 3 4 5 6 7 *9 10 11 14 15) -05:51:18,521 INFO kernel:ACPI: PCI Interrupt Link [LNKB] (IRQs 3 4 5 6 7 9 10 *11 14 15) -05:51:18,521 INFO kernel:ACPI: PCI Interrupt Link [LNKC] (IRQs 3 4 5 6 7 9 *10 11 14 15) -05:51:18,521 INFO kernel:ACPI: PCI Interrupt Link [LNKD] (IRQs 3 4 *5 6 7 9 10 11 14 15) -05:51:18,521 INFO kernel:vgaarb: device added: PCI:0000:00:0f.0,decodes=io+mem,owns=io+mem,locks=none -05:51:18,521 INFO kernel:vgaarb: loaded -05:51:18,521 INFO kernel:vgaarb: bridge control possible 0000:00:0f.0 -05:51:18,521 NOTICE kernel:SCSI subsystem initialized -05:51:18,521 DEBUG kernel:libata version 3.00 loaded. -05:51:18,521 INFO kernel:usbcore: registered new interface driver usbfs -05:51:18,521 INFO kernel:usbcore: registered new interface driver hub -05:51:18,521 INFO kernel:usbcore: registered new device driver usb -05:51:18,521 INFO kernel:PCI: Using ACPI for IRQ routing -05:51:18,521 DEBUG kernel:PCI: old code would have set cacheline size to 32 bytes, but clflush_size = 64 -05:51:18,521 DEBUG kernel:PCI: pci_cache_line_size set to 64 bytes -05:51:18,521 INFO kernel:pci 0000:00:18.2: no compatible bridge window for [io 0xf000-0xffff] -05:51:18,521 INFO kernel:pci 0000:00:18.2: can't reserve window [io 0xf000-0xffff] -05:51:18,521 NOTICE kernel:lo: Dropping TSO features since no CSUM feature. -05:51:18,521 INFO kernel:NetLabel: Initializing -05:51:18,521 INFO kernel:NetLabel: domain hash size = 128 -05:51:18,521 INFO kernel:NetLabel: protocols = UNLABELED CIPSOv4 -05:51:18,521 INFO kernel:NetLabel: unlabeled traffic allowed by default -05:51:18,521 INFO kernel:HPET: 16 timers in total, 0 timers will be used for per-cpu timer -05:51:18,521 INFO kernel:hpet0: at MMIO 0xfed00000, IRQs 2, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 -05:51:18,521 INFO kernel:hpet0: 16 comparators, 64-bit 14.318180 MHz counter -05:51:18,521 INFO kernel:Switching to clocksource hpet -05:51:18,521 INFO kernel:pnp: PnP ACPI init -05:51:18,521 INFO kernel:ACPI: bus type pnp registered -05:51:18,521 DEBUG kernel:pnp 00:00: [io 0x0cf8-0x0cff] -05:51:18,521 DEBUG kernel:pnp 00:00: Plug and Play ACPI device, IDs PNP0a03 PNP0a08 (active) -05:51:18,521 DEBUG kernel:pnp 00:01: [io 0x0010-0x001f] -05:51:18,521 DEBUG kernel:pnp 00:01: [io 0x0024-0x0025] -05:51:18,521 DEBUG kernel:pnp 00:01: [io 0x0028-0x0029] -05:51:18,521 DEBUG kernel:pnp 00:01: [io 0x002c-0x002d] -05:51:18,521 DEBUG kernel:pnp 00:01: [io 0x002e-0x002f] -05:51:18,521 DEBUG kernel:pnp 00:01: [io 0x0030-0x0031] -05:51:18,521 DEBUG kernel:pnp 00:01: [io 0x0034-0x0035] -05:51:18,521 DEBUG kernel:pnp 00:01: [io 0x0038-0x0039] -05:51:18,521 DEBUG kernel:pnp 00:01: [io 0x003c-0x003d] -05:51:18,521 DEBUG kernel:pnp 00:01: [io 0x0050-0x0053] -05:51:18,521 DEBUG kernel:pnp 00:01: [io 0x0072-0x0077] -05:51:18,521 DEBUG kernel:pnp 00:01: [io 0x0080] -05:51:18,521 DEBUG kernel:pnp 00:01: [io 0x0090-0x009f] -05:51:18,521 DEBUG kernel:pnp 00:01: [io 0x00a4-0x00a5] -05:51:18,521 DEBUG kernel:pnp 00:01: [io 0x00a8-0x00a9] -05:51:18,521 DEBUG kernel:pnp 00:01: [io 0x00ac-0x00ad] -05:51:18,521 DEBUG kernel:pnp 00:01: [io 0x00b0-0x00b5] -05:51:18,521 DEBUG kernel:pnp 00:01: [io 0x00b8-0x00b9] -05:51:18,521 DEBUG kernel:pnp 00:01: [io 0x00bc-0x00bd] -05:51:18,521 DEBUG kernel:pnp 00:01: [io 0x1000-0x103f] -05:51:18,521 DEBUG kernel:pnp 00:01: [io 0x1040-0x104f] -05:51:18,521 DEBUG kernel:pnp 00:01: [io 0x0cf0-0x0cf1] -05:51:18,521 DEBUG kernel:pnp 00:01: Plug and Play ACPI device, IDs PNP0c02 (active) -05:51:18,521 DEBUG kernel:pnp 00:02: [io 0x0000-0x000f] -05:51:18,521 DEBUG kernel:pnp 00:02: [io 0x0081-0x008f] -05:51:18,521 DEBUG kernel:pnp 00:02: [io 0x00c0-0x00df] -05:51:18,521 DEBUG kernel:pnp 00:02: [dma 4] -05:51:18,521 DEBUG kernel:pnp 00:02: Plug and Play ACPI device, IDs PNP0200 (active) -05:51:18,521 DEBUG kernel:pnp 00:03: [io 0x0020-0x0021] -05:51:18,521 DEBUG kernel:pnp 00:03: [io 0x00a0-0x00a1] -05:51:18,521 DEBUG kernel:pnp 00:03: [io 0x04d0-0x04d1] -05:51:18,521 DEBUG kernel:pnp 00:03: [irq 2 disabled] -05:51:18,521 DEBUG kernel:pnp 00:03: Plug and Play ACPI device, IDs PNP0001 (active) -05:51:18,521 DEBUG kernel:pnp 00:04: [io 0x0070-0x0071] -05:51:18,521 DEBUG kernel:pnp 00:04: [irq 8] -05:51:18,521 DEBUG kernel:pnp 00:04: Plug and Play ACPI device, IDs PNP0b00 (active) -05:51:18,521 DEBUG kernel:pnp 00:05: [io 0x0061] -05:51:18,521 DEBUG kernel:pnp 00:05: Plug and Play ACPI device, IDs PNP0800 (active) -05:51:18,521 DEBUG kernel:pnp 00:06: [io 0x0060] -05:51:18,521 DEBUG kernel:pnp 00:06: [io 0x0064] -05:51:18,521 DEBUG kernel:pnp 00:06: [irq 1] -05:51:18,521 DEBUG kernel:pnp 00:06: Plug and Play ACPI device, IDs PNP0303 (active) -05:51:18,521 DEBUG kernel:pnp 00:07: [irq 12] -05:51:18,521 DEBUG kernel:pnp 00:07: Plug and Play ACPI device, IDs PNP0f13 (active) -05:51:18,521 DEBUG kernel:pnp 00:08: [mem 0xfed00000-0xfed003ff] -05:51:18,521 DEBUG kernel:pnp 00:08: Plug and Play ACPI device, IDs PNP0103 PNP0c01 (active) -05:51:18,521 DEBUG kernel:pnp 00:09: [io 0x0378-0x037f] -05:51:18,521 DEBUG kernel:pnp 00:09: [irq 7] -05:51:18,521 DEBUG kernel:pnp 00:09: Plug and Play ACPI device, IDs PNP0400 (active) -05:51:18,521 DEBUG kernel:pnp 00:0a: [io 0x03f8-0x03ff] -05:51:18,521 DEBUG kernel:pnp 00:0a: [irq 4] -05:51:18,521 DEBUG kernel:pnp 00:0a: Plug and Play ACPI device, IDs PNP0501 (active) -05:51:18,521 DEBUG kernel:pnp 00:0b: [io 0x02f8-0x02ff] -05:51:18,521 DEBUG kernel:pnp 00:0b: [irq 3] -05:51:18,521 DEBUG kernel:pnp 00:0b: Plug and Play ACPI device, IDs PNP0501 (active) -05:51:18,521 DEBUG kernel:pnp 00:0c: [io 0x03f0-0x03f5] -05:51:18,521 DEBUG kernel:pnp 00:0c: [io 0x03f7] -05:51:18,521 DEBUG kernel:pnp 00:0c: [irq 6] -05:51:18,521 DEBUG kernel:pnp 00:0c: [dma 2] -05:51:18,521 DEBUG kernel:pnp 00:0c: Plug and Play ACPI device, IDs PNP0700 (active) -05:51:18,521 DEBUG kernel:pnp 00:0d: [mem 0xe0000000-0xefffffff] -05:51:18,521 DEBUG kernel:pnp 00:0d: [io 0x1060-0x107f] -05:51:18,521 DEBUG kernel:pnp 00:0d: [mem 0xd0200000-0xd03fffff] -05:51:18,521 DEBUG kernel:pnp 00:0d: Plug and Play ACPI device, IDs PNP0c02 (active) -05:51:18,521 INFO kernel:pnp: PnP ACPI: found 14 devices -05:51:18,521 INFO kernel:ACPI: ACPI bus type pnp unregistered -05:51:18,521 INFO kernel:system 00:01: [io 0x1000-0x103f] has been reserved -05:51:18,521 INFO kernel:system 00:01: [io 0x1040-0x104f] has been reserved -05:51:18,521 INFO kernel:system 00:01: [io 0x0cf0-0x0cf1] has been reserved -05:51:18,521 INFO kernel:system 00:08: [mem 0xfed00000-0xfed003ff] has been reserved -05:51:18,521 INFO kernel:system 00:0d: [io 0x1060-0x107f] has been reserved -05:51:18,521 INFO kernel:system 00:0d: [mem 0xe0000000-0xefffffff] has been reserved -05:51:18,521 INFO kernel:system 00:0d: [mem 0xd0200000-0xd03fffff] has been reserved -05:51:18,521 DEBUG kernel:PCI: max bus depth: 1 pci_try_num: 2 -05:51:18,521 INFO kernel:pci 0000:00:0f.0: BAR 6: assigned [mem 0x80000000-0x80007fff pref] -05:51:18,521 INFO kernel:pci 0000:00:10.0: BAR 6: assigned [mem 0x80008000-0x8000bfff pref] -05:51:18,521 INFO kernel:pci 0000:00:18.2: BAR 13: can't assign io (size 0x1000) -05:51:18,521 INFO kernel:pci 0000:00:18.7: BAR 13: can't assign io (size 0x1000) -05:51:18,521 INFO kernel:pci 0000:00:18.6: BAR 13: can't assign io (size 0x1000) -05:51:18,521 INFO kernel:pci 0000:00:18.5: BAR 13: can't assign io (size 0x1000) -05:51:18,521 INFO kernel:pci 0000:00:18.4: BAR 13: can't assign io (size 0x1000) -05:51:18,521 INFO kernel:pci 0000:00:18.3: BAR 13: can't assign io (size 0x1000) -05:51:18,521 INFO kernel:pci 0000:00:17.7: BAR 13: can't assign io (size 0x1000) -05:51:18,521 INFO kernel:pci 0000:00:17.6: BAR 13: can't assign io (size 0x1000) -05:51:18,521 INFO kernel:pci 0000:00:17.5: BAR 13: can't assign io (size 0x1000) -05:51:18,521 INFO kernel:pci 0000:00:17.4: BAR 13: can't assign io (size 0x1000) -05:51:18,521 INFO kernel:pci 0000:00:17.3: BAR 13: can't assign io (size 0x1000) -05:51:18,521 INFO kernel:pci 0000:00:16.7: BAR 13: can't assign io (size 0x1000) -05:51:18,521 INFO kernel:pci 0000:00:16.6: BAR 13: can't assign io (size 0x1000) -05:51:18,521 INFO kernel:pci 0000:00:16.5: BAR 13: can't assign io (size 0x1000) -05:51:18,521 INFO kernel:pci 0000:00:16.4: BAR 13: can't assign io (size 0x1000) -05:51:18,521 INFO kernel:pci 0000:00:16.3: BAR 13: can't assign io (size 0x1000) -05:51:18,521 INFO kernel:pci 0000:00:15.7: BAR 13: can't assign io (size 0x1000) -05:51:18,521 INFO kernel:pci 0000:00:15.6: BAR 13: can't assign io (size 0x1000) -05:51:18,521 INFO kernel:pci 0000:00:15.5: BAR 13: can't assign io (size 0x1000) -05:51:18,521 INFO kernel:pci 0000:00:15.4: BAR 13: can't assign io (size 0x1000) -05:51:18,521 INFO kernel:pci 0000:00:15.3: BAR 13: can't assign io (size 0x1000) -05:51:18,521 INFO kernel:pci 0000:00:01.0: PCI bridge to [bus 01-01] -05:51:18,521 INFO kernel:pci 0000:00:01.0: PCI bridge to [bus 01-01] -05:51:18,521 INFO kernel:pci 0000:00:01.0: bridge window [io disabled] -05:51:18,521 INFO kernel:pci 0000:00:01.0: bridge window [mem disabled] -05:51:18,521 INFO kernel:pci 0000:00:01.0: bridge window [mem pref disabled] -05:51:18,521 INFO kernel:pci 0000:02:00.0: BAR 6: assigned [mem 0xdc400000-0xdc40ffff pref] -05:51:18,521 INFO kernel:pci 0000:02:01.0: BAR 6: assigned [mem 0xdc410000-0xdc41ffff pref] -05:51:18,521 INFO kernel:pci 0000:02:02.0: BAR 6: assigned [mem 0xdc420000-0xdc42ffff pref] -05:51:18,521 INFO kernel:pci 0000:02:03.0: BAR 6: assigned [mem 0xdc430000-0xdc43ffff pref] -05:51:18,521 INFO kernel:pci 0000:00:11.0: PCI bridge to [bus 02-02] -05:51:18,521 INFO kernel:pci 0000:00:11.0: PCI bridge to [bus 02-02] -05:51:18,521 INFO kernel:pci 0000:00:11.0: bridge window [io 0x2000-0x3fff] -05:51:18,521 INFO kernel:pci 0000:00:11.0: bridge window [mem 0xd1000000-0xd23fffff] -05:51:18,521 INFO kernel:pci 0000:00:11.0: bridge window [mem 0xdc400000-0xdc9fffff 64bit pref] -05:51:18,521 INFO kernel:pci 0000:00:15.0: PCI bridge to [bus 03-03] -05:51:18,521 INFO kernel:pci 0000:00:15.0: PCI bridge to [bus 03-03] -05:51:18,521 INFO kernel:pci 0000:00:15.0: bridge window [io 0x4000-0x4fff] -05:51:18,521 INFO kernel:pci 0000:00:15.0: bridge window [mem 0xd2400000-0xd24fffff] -05:51:18,521 INFO kernel:pci 0000:00:15.0: bridge window [mem 0xd4400000-0xd44fffff 64bit pref] -05:51:18,521 INFO kernel:pci 0000:00:15.1: PCI bridge to [bus 04-04] -05:51:18,521 INFO kernel:pci 0000:00:15.1: PCI bridge to [bus 04-04] -05:51:18,521 INFO kernel:pci 0000:00:15.1: bridge window [io 0x8000-0x8fff] -05:51:18,521 INFO kernel:pci 0000:00:15.1: bridge window [mem 0xd2800000-0xd28fffff] -05:51:18,521 INFO kernel:pci 0000:00:15.1: bridge window [mem 0xd4800000-0xd48fffff 64bit pref] -05:51:18,521 INFO kernel:pci 0000:00:15.2: PCI bridge to [bus 05-05] -05:51:18,521 INFO kernel:pci 0000:00:15.2: PCI bridge to [bus 05-05] -05:51:18,521 INFO kernel:pci 0000:00:15.2: bridge window [io 0xc000-0xcfff] -05:51:18,521 INFO kernel:pci 0000:00:15.2: bridge window [mem 0xd2c00000-0xd2cfffff] -05:51:18,521 INFO kernel:pci 0000:00:15.2: bridge window [mem 0xdcb00000-0xdcbfffff 64bit pref] -05:51:18,521 INFO kernel:pci 0000:00:15.3: PCI bridge to [bus 06-06] -05:51:18,521 INFO kernel:pci 0000:00:15.3: PCI bridge to [bus 06-06] -05:51:18,521 INFO kernel:pci 0000:00:15.3: bridge window [io disabled] -05:51:18,521 INFO kernel:pci 0000:00:15.3: bridge window [mem 0xd3000000-0xd30fffff] -05:51:18,521 INFO kernel:pci 0000:00:15.3: bridge window [mem 0xdcd00000-0xdcdfffff 64bit pref] -05:51:18,521 INFO kernel:pci 0000:00:15.4: PCI bridge to [bus 07-07] -05:51:18,521 INFO kernel:pci 0000:00:15.4: PCI bridge to [bus 07-07] -05:51:18,521 INFO kernel:pci 0000:00:15.4: bridge window [io disabled] -05:51:18,521 INFO kernel:pci 0000:00:15.4: bridge window [mem 0xd3400000-0xd34fffff] -05:51:18,521 INFO kernel:pci 0000:00:15.4: bridge window [mem 0xdcf00000-0xdcffffff 64bit pref] -05:51:18,521 INFO kernel:pci 0000:00:15.5: PCI bridge to [bus 08-08] -05:51:18,521 INFO kernel:pci 0000:00:15.5: PCI bridge to [bus 08-08] -05:51:18,521 INFO kernel:pci 0000:00:15.5: bridge window [io disabled] -05:51:18,521 INFO kernel:pci 0000:00:15.5: bridge window [mem 0xd3800000-0xd38fffff] -05:51:18,521 INFO kernel:pci 0000:00:15.5: bridge window [mem 0xdd100000-0xdd1fffff 64bit pref] -05:51:18,521 INFO kernel:pci 0000:00:15.6: PCI bridge to [bus 09-09] -05:51:18,521 INFO kernel:pci 0000:00:15.6: PCI bridge to [bus 09-09] -05:51:18,521 INFO kernel:pci 0000:00:15.6: bridge window [io disabled] -05:51:18,521 INFO kernel:pci 0000:00:15.6: bridge window [mem 0xd3c00000-0xd3cfffff] -05:51:18,521 INFO kernel:pci 0000:00:15.6: bridge window [mem 0xdd300000-0xdd3fffff 64bit pref] -05:51:18,521 INFO kernel:pci 0000:00:15.7: PCI bridge to [bus 0a-0a] -05:51:18,521 INFO kernel:pci 0000:00:15.7: PCI bridge to [bus 0a-0a] -05:51:18,521 INFO kernel:pci 0000:00:15.7: bridge window [io disabled] -05:51:18,521 INFO kernel:pci 0000:00:15.7: bridge window [mem 0xd4000000-0xd40fffff] -05:51:18,521 INFO kernel:pci 0000:00:15.7: bridge window [mem 0xdd500000-0xdd5fffff 64bit pref] -05:51:18,521 INFO kernel:pci 0000:00:16.0: PCI bridge to [bus 0b-0b] -05:51:18,521 INFO kernel:pci 0000:00:16.0: PCI bridge to [bus 0b-0b] -05:51:18,521 INFO kernel:pci 0000:00:16.0: bridge window [io 0x5000-0x5fff] -05:51:18,521 INFO kernel:pci 0000:00:16.0: bridge window [mem 0xd2500000-0xd25fffff] -05:51:18,521 INFO kernel:pci 0000:00:16.0: bridge window [mem 0xd4500000-0xd45fffff 64bit pref] -05:51:18,521 INFO kernel:pci 0000:00:16.1: PCI bridge to [bus 0c-0c] -05:51:18,521 INFO kernel:pci 0000:00:16.1: PCI bridge to [bus 0c-0c] -05:51:18,521 INFO kernel:pci 0000:00:16.1: bridge window [io 0x9000-0x9fff] -05:51:18,521 INFO kernel:pci 0000:00:16.1: bridge window [mem 0xd2900000-0xd29fffff] -05:51:18,521 INFO kernel:pci 0000:00:16.1: bridge window [mem 0xd4900000-0xd49fffff 64bit pref] -05:51:18,521 INFO kernel:pci 0000:00:16.2: PCI bridge to [bus 0d-0d] -05:51:18,521 INFO kernel:pci 0000:00:16.2: PCI bridge to [bus 0d-0d] -05:51:18,521 INFO kernel:pci 0000:00:16.2: bridge window [io 0xd000-0xdfff] -05:51:18,521 INFO kernel:pci 0000:00:16.2: bridge window [mem 0xd2d00000-0xd2dfffff] -05:51:18,521 INFO kernel:pci 0000:00:16.2: bridge window [mem 0xd4b00000-0xd4bfffff 64bit pref] -05:51:18,521 INFO kernel:pci 0000:00:16.3: PCI bridge to [bus 0e-0e] -05:51:18,521 INFO kernel:pci 0000:00:16.3: PCI bridge to [bus 0e-0e] -05:51:18,521 INFO kernel:pci 0000:00:16.3: bridge window [io disabled] -05:51:18,521 INFO kernel:pci 0000:00:16.3: bridge window [mem 0xd3100000-0xd31fffff] -05:51:18,521 INFO kernel:pci 0000:00:16.3: bridge window [mem 0xd4d00000-0xd4dfffff 64bit pref] -05:51:18,521 INFO kernel:pci 0000:00:16.4: PCI bridge to [bus 0f-0f] -05:51:18,521 INFO kernel:pci 0000:00:16.4: PCI bridge to [bus 0f-0f] -05:51:18,521 INFO kernel:pci 0000:00:16.4: bridge window [io disabled] -05:51:18,521 INFO kernel:pci 0000:00:16.4: bridge window [mem 0xd3500000-0xd35fffff] -05:51:18,521 INFO kernel:pci 0000:00:16.4: bridge window [mem 0xd4f00000-0xd4ffffff 64bit pref] -05:51:18,521 INFO kernel:pci 0000:00:16.5: PCI bridge to [bus 10-10] -05:51:18,521 INFO kernel:pci 0000:00:16.5: PCI bridge to [bus 10-10] -05:51:18,521 INFO kernel:pci 0000:00:16.5: bridge window [io disabled] -05:51:18,521 INFO kernel:pci 0000:00:16.5: bridge window [mem 0xd3900000-0xd39fffff] -05:51:18,521 INFO kernel:pci 0000:00:16.5: bridge window [mem 0xd5100000-0xd51fffff 64bit pref] -05:51:18,521 INFO kernel:pci 0000:00:16.6: PCI bridge to [bus 11-11] -05:51:18,521 INFO kernel:pci 0000:00:16.6: PCI bridge to [bus 11-11] -05:51:18,521 INFO kernel:pci 0000:00:16.6: bridge window [io disabled] -05:51:18,521 INFO kernel:pci 0000:00:16.6: bridge window [mem 0xd3d00000-0xd3dfffff] -05:51:18,521 INFO kernel:pci 0000:00:16.6: bridge window [mem 0xd5300000-0xd53fffff 64bit pref] -05:51:18,521 INFO kernel:pci 0000:00:16.7: PCI bridge to [bus 12-12] -05:51:18,521 INFO kernel:pci 0000:00:16.7: PCI bridge to [bus 12-12] -05:51:18,521 INFO kernel:pci 0000:00:16.7: bridge window [io disabled] -05:51:18,521 INFO kernel:pci 0000:00:16.7: bridge window [mem 0xd4100000-0xd41fffff] -05:51:18,521 INFO kernel:pci 0000:00:16.7: bridge window [mem 0xd5500000-0xd55fffff 64bit pref] -05:51:18,521 INFO kernel:pci 0000:00:17.0: PCI bridge to [bus 13-13] -05:51:18,521 INFO kernel:pci 0000:00:17.0: PCI bridge to [bus 13-13] -05:51:18,521 INFO kernel:pci 0000:00:17.0: bridge window [io 0x6000-0x6fff] -05:51:18,521 INFO kernel:pci 0000:00:17.0: bridge window [mem 0xd2600000-0xd26fffff] -05:51:18,521 INFO kernel:pci 0000:00:17.0: bridge window [mem 0xd4600000-0xd46fffff 64bit pref] -05:51:18,521 INFO kernel:pci 0000:00:17.1: PCI bridge to [bus 14-14] -05:51:18,521 INFO kernel:pci 0000:00:17.1: PCI bridge to [bus 14-14] -05:51:18,521 INFO kernel:pci 0000:00:17.1: bridge window [io 0xa000-0xafff] -05:51:18,521 INFO kernel:pci 0000:00:17.1: bridge window [mem 0xd2a00000-0xd2afffff] -05:51:18,521 INFO kernel:pci 0000:00:17.1: bridge window [mem 0xdca00000-0xdcafffff 64bit pref] -05:51:18,521 INFO kernel:pci 0000:00:17.2: PCI bridge to [bus 15-15] -05:51:18,521 INFO kernel:pci 0000:00:17.2: PCI bridge to [bus 15-15] -05:51:18,521 INFO kernel:pci 0000:00:17.2: bridge window [io 0xe000-0xefff] -05:51:18,521 INFO kernel:pci 0000:00:17.2: bridge window [mem 0xd2e00000-0xd2efffff] -05:51:18,521 INFO kernel:pci 0000:00:17.2: bridge window [mem 0xdcc00000-0xdccfffff 64bit pref] -05:51:18,521 INFO kernel:pci 0000:00:17.3: PCI bridge to [bus 16-16] -05:51:18,521 INFO kernel:pci 0000:00:17.3: PCI bridge to [bus 16-16] -05:51:18,521 INFO kernel:pci 0000:00:17.3: bridge window [io disabled] -05:51:18,521 INFO kernel:pci 0000:00:17.3: bridge window [mem 0xd3200000-0xd32fffff] -05:51:18,521 INFO kernel:pci 0000:00:17.3: bridge window [mem 0xdce00000-0xdcefffff 64bit pref] -05:51:18,521 INFO kernel:pci 0000:00:17.4: PCI bridge to [bus 17-17] -05:51:18,521 INFO kernel:pci 0000:00:17.4: PCI bridge to [bus 17-17] -05:51:18,521 INFO kernel:pci 0000:00:17.4: bridge window [io disabled] -05:51:18,521 INFO kernel:pci 0000:00:17.4: bridge window [mem 0xd3600000-0xd36fffff] -05:51:18,521 INFO kernel:pci 0000:00:17.4: bridge window [mem 0xdd000000-0xdd0fffff 64bit pref] -05:51:18,521 INFO kernel:pci 0000:00:17.5: PCI bridge to [bus 18-18] -05:51:18,521 INFO kernel:pci 0000:00:17.5: PCI bridge to [bus 18-18] -05:51:18,521 INFO kernel:pci 0000:00:17.5: bridge window [io disabled] -05:51:18,521 INFO kernel:pci 0000:00:17.5: bridge window [mem 0xd3a00000-0xd3afffff] -05:51:18,521 INFO kernel:pci 0000:00:17.5: bridge window [mem 0xdd200000-0xdd2fffff 64bit pref] -05:51:18,521 INFO kernel:pci 0000:00:17.6: PCI bridge to [bus 19-19] -05:51:18,521 INFO kernel:pci 0000:00:17.6: PCI bridge to [bus 19-19] -05:51:18,521 INFO kernel:pci 0000:00:17.6: bridge window [io disabled] -05:51:18,521 INFO kernel:pci 0000:00:17.6: bridge window [mem 0xd3e00000-0xd3efffff] -05:51:18,521 INFO kernel:pci 0000:00:17.6: bridge window [mem 0xdd400000-0xdd4fffff 64bit pref] -05:51:18,521 INFO kernel:pci 0000:00:17.7: PCI bridge to [bus 1a-1a] -05:51:18,521 INFO kernel:pci 0000:00:17.7: PCI bridge to [bus 1a-1a] -05:51:18,521 INFO kernel:pci 0000:00:17.7: bridge window [io disabled] -05:51:18,521 INFO kernel:pci 0000:00:17.7: bridge window [mem 0xd4200000-0xd42fffff] -05:51:18,521 INFO kernel:pci 0000:00:17.7: bridge window [mem 0xdd600000-0xdd6fffff 64bit pref] -05:51:18,521 INFO kernel:pci 0000:00:18.0: PCI bridge to [bus 1b-1b] -05:51:18,521 INFO kernel:pci 0000:00:18.0: PCI bridge to [bus 1b-1b] -05:51:18,521 INFO kernel:pci 0000:00:18.0: bridge window [io 0x7000-0x7fff] -05:51:18,521 INFO kernel:pci 0000:00:18.0: bridge window [mem 0xd2700000-0xd27fffff] -05:51:18,521 INFO kernel:pci 0000:00:18.0: bridge window [mem 0xd4700000-0xd47fffff 64bit pref] -05:51:18,521 INFO kernel:pci 0000:00:18.1: PCI bridge to [bus 1c-1c] -05:51:18,521 INFO kernel:pci 0000:00:18.1: PCI bridge to [bus 1c-1c] -05:51:18,521 INFO kernel:pci 0000:00:18.1: bridge window [io 0xb000-0xbfff] -05:51:18,521 INFO kernel:pci 0000:00:18.1: bridge window [mem 0xd2b00000-0xd2bfffff] -05:51:18,521 INFO kernel:pci 0000:00:18.1: bridge window [mem 0xd4a00000-0xd4afffff 64bit pref] -05:51:18,521 INFO kernel:pci 0000:00:18.2: PCI bridge to [bus 1d-1d] -05:51:18,521 INFO kernel:pci 0000:00:18.2: PCI bridge to [bus 1d-1d] -05:51:18,521 INFO kernel:pci 0000:00:18.2: bridge window [io disabled] -05:51:18,521 INFO kernel:pci 0000:00:18.2: bridge window [mem 0xd2f00000-0xd2ffffff] -05:51:18,521 INFO kernel:pci 0000:00:18.2: bridge window [mem 0xd4c00000-0xd4cfffff 64bit pref] -05:51:18,521 INFO kernel:pci 0000:00:18.3: PCI bridge to [bus 1e-1e] -05:51:18,521 INFO kernel:pci 0000:00:18.3: PCI bridge to [bus 1e-1e] -05:51:18,521 INFO kernel:pci 0000:00:18.3: bridge window [io disabled] -05:51:18,521 INFO kernel:pci 0000:00:18.3: bridge window [mem 0xd3300000-0xd33fffff] -05:51:18,521 INFO kernel:pci 0000:00:18.3: bridge window [mem 0xd4e00000-0xd4efffff 64bit pref] -05:51:18,521 INFO kernel:pci 0000:00:18.4: PCI bridge to [bus 1f-1f] -05:51:18,521 INFO kernel:pci 0000:00:18.4: PCI bridge to [bus 1f-1f] -05:51:18,521 INFO kernel:pci 0000:00:18.4: bridge window [io disabled] -05:51:18,521 INFO kernel:pci 0000:00:18.4: bridge window [mem 0xd3700000-0xd37fffff] -05:51:18,521 INFO kernel:pci 0000:00:18.4: bridge window [mem 0xd5000000-0xd50fffff 64bit pref] -05:51:18,521 INFO kernel:pci 0000:00:18.5: PCI bridge to [bus 20-20] -05:51:18,521 INFO kernel:pci 0000:00:18.5: PCI bridge to [bus 20-20] -05:51:18,521 INFO kernel:pci 0000:00:18.5: bridge window [io disabled] -05:51:18,521 INFO kernel:pci 0000:00:18.5: bridge window [mem 0xd3b00000-0xd3bfffff] -05:51:18,521 INFO kernel:pci 0000:00:18.5: bridge window [mem 0xd5200000-0xd52fffff 64bit pref] -05:51:18,521 INFO kernel:pci 0000:00:18.6: PCI bridge to [bus 21-21] -05:51:18,521 INFO kernel:pci 0000:00:18.6: PCI bridge to [bus 21-21] -05:51:18,521 INFO kernel:pci 0000:00:18.6: bridge window [io disabled] -05:51:18,521 INFO kernel:pci 0000:00:18.6: bridge window [mem 0xd3f00000-0xd3ffffff] -05:51:18,521 INFO kernel:pci 0000:00:18.6: bridge window [mem 0xd5400000-0xd54fffff 64bit pref] -05:51:18,521 INFO kernel:pci 0000:00:18.7: PCI bridge to [bus 22-22] -05:51:18,521 INFO kernel:pci 0000:00:18.7: PCI bridge to [bus 22-22] -05:51:18,521 INFO kernel:pci 0000:00:18.7: bridge window [io disabled] -05:51:18,521 INFO kernel:pci 0000:00:18.7: bridge window [mem 0xd4300000-0xd43fffff] -05:51:18,521 INFO kernel:pci 0000:00:18.7: bridge window [mem 0xd5600000-0xd56fffff 64bit pref] -05:51:18,521 DEBUG kernel:pci 0000:00:01.0: setting latency timer to 64 -05:51:18,521 DEBUG kernel:pci 0000:00:15.0: setting latency timer to 64 -05:51:18,521 DEBUG kernel:pci 0000:00:15.1: setting latency timer to 64 -05:51:18,521 DEBUG kernel:pci 0000:00:15.2: setting latency timer to 64 -05:51:18,521 DEBUG kernel:pci 0000:00:15.3: setting latency timer to 64 -05:51:18,521 DEBUG kernel:pci 0000:00:15.4: setting latency timer to 64 -05:51:18,521 DEBUG kernel:pci 0000:00:15.5: setting latency timer to 64 -05:51:18,521 DEBUG kernel:pci 0000:00:15.6: setting latency timer to 64 -05:51:18,521 DEBUG kernel:pci 0000:00:15.7: setting latency timer to 64 -05:51:18,521 DEBUG kernel:pci 0000:00:16.0: setting latency timer to 64 -05:51:18,521 DEBUG kernel:pci 0000:00:16.1: setting latency timer to 64 -05:51:18,521 DEBUG kernel:pci 0000:00:16.2: setting latency timer to 64 -05:51:18,521 DEBUG kernel:pci 0000:00:16.3: setting latency timer to 64 -05:51:18,521 DEBUG kernel:pci 0000:00:16.4: setting latency timer to 64 -05:51:18,521 DEBUG kernel:pci 0000:00:16.5: setting latency timer to 64 -05:51:18,521 DEBUG kernel:pci 0000:00:16.6: setting latency timer to 64 -05:51:18,521 DEBUG kernel:pci 0000:00:16.7: setting latency timer to 64 -05:51:18,521 DEBUG kernel:pci 0000:00:17.0: setting latency timer to 64 -05:51:18,521 DEBUG kernel:pci 0000:00:17.1: setting latency timer to 64 -05:51:18,522 DEBUG kernel:pci 0000:00:17.2: setting latency timer to 64 -05:51:18,522 DEBUG kernel:pci 0000:00:17.3: setting latency timer to 64 -05:51:18,522 DEBUG kernel:pci 0000:00:17.4: setting latency timer to 64 -05:51:18,522 DEBUG kernel:pci 0000:00:17.5: setting latency timer to 64 -05:51:18,522 DEBUG kernel:pci 0000:00:17.6: setting latency timer to 64 -05:51:18,522 DEBUG kernel:pci 0000:00:17.7: setting latency timer to 64 -05:51:18,522 DEBUG kernel:pci 0000:00:18.0: setting latency timer to 64 -05:51:18,522 DEBUG kernel:pci 0000:00:18.1: setting latency timer to 64 -05:51:18,522 DEBUG kernel:pci 0000:00:18.2: setting latency timer to 64 -05:51:18,522 DEBUG kernel:pci 0000:00:18.3: setting latency timer to 64 -05:51:18,522 DEBUG kernel:pci 0000:00:18.4: setting latency timer to 64 -05:51:18,522 DEBUG kernel:pci 0000:00:18.5: setting latency timer to 64 -05:51:18,522 DEBUG kernel:pci 0000:00:18.6: setting latency timer to 64 -05:51:18,522 DEBUG kernel:pci 0000:00:18.7: setting latency timer to 64 -05:51:18,522 DEBUG kernel:pci_bus 0000:00: resource 4 [mem 0x000a0000-0x000bffff] -05:51:18,522 DEBUG kernel:pci_bus 0000:00: resource 5 [mem 0x000d0000-0x000d3fff] -05:51:18,522 DEBUG kernel:pci_bus 0000:00: resource 6 [mem 0x000d4000-0x000d7fff] -05:51:18,522 DEBUG kernel:pci_bus 0000:00: resource 7 [mem 0x000d8000-0x000dbfff] -05:51:18,522 DEBUG kernel:pci_bus 0000:00: resource 8 [mem 0x80000000-0xfebfffff] -05:51:18,522 DEBUG kernel:pci_bus 0000:00: resource 9 [io 0x0000-0x0cf7] -05:51:18,522 DEBUG kernel:pci_bus 0000:00: resource 10 [io 0x0d00-0xfeff] -05:51:18,522 DEBUG kernel:pci_bus 0000:02: resource 0 [io 0x2000-0x3fff] -05:51:18,522 DEBUG kernel:pci_bus 0000:02: resource 1 [mem 0xd1000000-0xd23fffff] -05:51:18,522 DEBUG kernel:pci_bus 0000:02: resource 2 [mem 0xdc400000-0xdc9fffff 64bit pref] -05:51:18,522 DEBUG kernel:pci_bus 0000:02: resource 4 [mem 0x000a0000-0x000bffff] -05:51:18,522 DEBUG kernel:pci_bus 0000:02: resource 5 [mem 0x000d0000-0x000d3fff] -05:51:18,522 DEBUG kernel:pci_bus 0000:02: resource 6 [mem 0x000d4000-0x000d7fff] -05:51:18,522 DEBUG kernel:pci_bus 0000:02: resource 7 [mem 0x000d8000-0x000dbfff] -05:51:18,522 DEBUG kernel:pci_bus 0000:02: resource 8 [mem 0x80000000-0xfebfffff] -05:51:18,522 DEBUG kernel:pci_bus 0000:02: resource 9 [io 0x0000-0x0cf7] -05:51:18,522 DEBUG kernel:pci_bus 0000:02: resource 10 [io 0x0d00-0xfeff] -05:51:18,522 DEBUG kernel:pci_bus 0000:03: resource 0 [io 0x4000-0x4fff] -05:51:18,522 DEBUG kernel:pci_bus 0000:03: resource 1 [mem 0xd2400000-0xd24fffff] -05:51:18,522 DEBUG kernel:pci_bus 0000:03: resource 2 [mem 0xd4400000-0xd44fffff 64bit pref] -05:51:18,522 DEBUG kernel:pci_bus 0000:04: resource 0 [io 0x8000-0x8fff] -05:51:18,522 DEBUG kernel:pci_bus 0000:04: resource 1 [mem 0xd2800000-0xd28fffff] -05:51:18,522 DEBUG kernel:pci_bus 0000:04: resource 2 [mem 0xd4800000-0xd48fffff 64bit pref] -05:51:18,522 DEBUG kernel:pci_bus 0000:05: resource 0 [io 0xc000-0xcfff] -05:51:18,522 DEBUG kernel:pci_bus 0000:05: resource 1 [mem 0xd2c00000-0xd2cfffff] -05:51:18,522 DEBUG kernel:pci_bus 0000:05: resource 2 [mem 0xdcb00000-0xdcbfffff 64bit pref] -05:51:18,522 DEBUG kernel:pci_bus 0000:06: resource 1 [mem 0xd3000000-0xd30fffff] -05:51:18,522 DEBUG kernel:pci_bus 0000:06: resource 2 [mem 0xdcd00000-0xdcdfffff 64bit pref] -05:51:18,522 DEBUG kernel:pci_bus 0000:07: resource 1 [mem 0xd3400000-0xd34fffff] -05:51:18,522 DEBUG kernel:pci_bus 0000:07: resource 2 [mem 0xdcf00000-0xdcffffff 64bit pref] -05:51:18,522 DEBUG kernel:pci_bus 0000:08: resource 1 [mem 0xd3800000-0xd38fffff] -05:51:18,522 DEBUG kernel:pci_bus 0000:08: resource 2 [mem 0xdd100000-0xdd1fffff 64bit pref] -05:51:18,522 DEBUG kernel:pci_bus 0000:09: resource 1 [mem 0xd3c00000-0xd3cfffff] -05:51:18,522 DEBUG kernel:pci_bus 0000:09: resource 2 [mem 0xdd300000-0xdd3fffff 64bit pref] -05:51:18,522 DEBUG kernel:pci_bus 0000:0a: resource 1 [mem 0xd4000000-0xd40fffff] -05:51:18,522 DEBUG kernel:pci_bus 0000:0a: resource 2 [mem 0xdd500000-0xdd5fffff 64bit pref] -05:51:18,522 DEBUG kernel:pci_bus 0000:0b: resource 0 [io 0x5000-0x5fff] -05:51:18,522 DEBUG kernel:pci_bus 0000:0b: resource 1 [mem 0xd2500000-0xd25fffff] -05:51:18,522 DEBUG kernel:pci_bus 0000:0b: resource 2 [mem 0xd4500000-0xd45fffff 64bit pref] -05:51:18,522 DEBUG kernel:pci_bus 0000:0c: resource 0 [io 0x9000-0x9fff] -05:51:18,522 DEBUG kernel:pci_bus 0000:0c: resource 1 [mem 0xd2900000-0xd29fffff] -05:51:18,522 DEBUG kernel:pci_bus 0000:0c: resource 2 [mem 0xd4900000-0xd49fffff 64bit pref] -05:51:18,522 DEBUG kernel:pci_bus 0000:0d: resource 0 [io 0xd000-0xdfff] -05:51:18,522 DEBUG kernel:pci_bus 0000:0d: resource 1 [mem 0xd2d00000-0xd2dfffff] -05:51:18,522 DEBUG kernel:pci_bus 0000:0d: resource 2 [mem 0xd4b00000-0xd4bfffff 64bit pref] -05:51:18,522 DEBUG kernel:pci_bus 0000:0e: resource 1 [mem 0xd3100000-0xd31fffff] -05:51:18,522 DEBUG kernel:pci_bus 0000:0e: resource 2 [mem 0xd4d00000-0xd4dfffff 64bit pref] -05:51:18,522 DEBUG kernel:pci_bus 0000:0f: resource 1 [mem 0xd3500000-0xd35fffff] -05:51:18,522 DEBUG kernel:pci_bus 0000:0f: resource 2 [mem 0xd4f00000-0xd4ffffff 64bit pref] -05:51:18,522 DEBUG kernel:pci_bus 0000:10: resource 1 [mem 0xd3900000-0xd39fffff] -05:51:18,522 DEBUG kernel:pci_bus 0000:10: resource 2 [mem 0xd5100000-0xd51fffff 64bit pref] -05:51:18,522 DEBUG kernel:pci_bus 0000:11: resource 1 [mem 0xd3d00000-0xd3dfffff] -05:51:18,522 DEBUG kernel:pci_bus 0000:11: resource 2 [mem 0xd5300000-0xd53fffff 64bit pref] -05:51:18,522 DEBUG kernel:pci_bus 0000:12: resource 1 [mem 0xd4100000-0xd41fffff] -05:51:18,522 DEBUG kernel:pci_bus 0000:12: resource 2 [mem 0xd5500000-0xd55fffff 64bit pref] -05:51:18,522 DEBUG kernel:pci_bus 0000:13: resource 0 [io 0x6000-0x6fff] -05:51:18,522 DEBUG kernel:pci_bus 0000:13: resource 1 [mem 0xd2600000-0xd26fffff] -05:51:18,522 DEBUG kernel:pci_bus 0000:13: resource 2 [mem 0xd4600000-0xd46fffff 64bit pref] -05:51:18,522 DEBUG kernel:pci_bus 0000:14: resource 0 [io 0xa000-0xafff] -05:51:18,522 DEBUG kernel:pci_bus 0000:14: resource 1 [mem 0xd2a00000-0xd2afffff] -05:51:18,522 DEBUG kernel:pci_bus 0000:14: resource 2 [mem 0xdca00000-0xdcafffff 64bit pref] -05:51:18,522 DEBUG kernel:pci_bus 0000:15: resource 0 [io 0xe000-0xefff] -05:51:18,522 DEBUG kernel:pci_bus 0000:15: resource 1 [mem 0xd2e00000-0xd2efffff] -05:51:18,522 DEBUG kernel:pci_bus 0000:15: resource 2 [mem 0xdcc00000-0xdccfffff 64bit pref] -05:51:18,522 DEBUG kernel:pci_bus 0000:16: resource 1 [mem 0xd3200000-0xd32fffff] -05:51:18,522 DEBUG kernel:pci_bus 0000:16: resource 2 [mem 0xdce00000-0xdcefffff 64bit pref] -05:51:18,522 DEBUG kernel:pci_bus 0000:17: resource 1 [mem 0xd3600000-0xd36fffff] -05:51:18,522 DEBUG kernel:pci_bus 0000:17: resource 2 [mem 0xdd000000-0xdd0fffff 64bit pref] -05:51:18,522 DEBUG kernel:pci_bus 0000:18: resource 1 [mem 0xd3a00000-0xd3afffff] -05:51:18,522 DEBUG kernel:pci_bus 0000:18: resource 2 [mem 0xdd200000-0xdd2fffff 64bit pref] -05:51:18,522 DEBUG kernel:pci_bus 0000:19: resource 1 [mem 0xd3e00000-0xd3efffff] -05:51:18,522 DEBUG kernel:pci_bus 0000:19: resource 2 [mem 0xdd400000-0xdd4fffff 64bit pref] -05:51:18,522 DEBUG kernel:pci_bus 0000:1a: resource 1 [mem 0xd4200000-0xd42fffff] -05:51:18,522 DEBUG kernel:pci_bus 0000:1a: resource 2 [mem 0xdd600000-0xdd6fffff 64bit pref] -05:51:18,522 DEBUG kernel:pci_bus 0000:1b: resource 0 [io 0x7000-0x7fff] -05:51:18,522 DEBUG kernel:pci_bus 0000:1b: resource 1 [mem 0xd2700000-0xd27fffff] -05:51:18,522 DEBUG kernel:pci_bus 0000:1b: resource 2 [mem 0xd4700000-0xd47fffff 64bit pref] -05:51:18,522 DEBUG kernel:pci_bus 0000:1c: resource 0 [io 0xb000-0xbfff] -05:51:18,522 DEBUG kernel:pci_bus 0000:1c: resource 1 [mem 0xd2b00000-0xd2bfffff] -05:51:18,522 DEBUG kernel:pci_bus 0000:1c: resource 2 [mem 0xd4a00000-0xd4afffff 64bit pref] -05:51:18,522 DEBUG kernel:pci_bus 0000:1d: resource 1 [mem 0xd2f00000-0xd2ffffff] -05:51:18,522 DEBUG kernel:pci_bus 0000:1d: resource 2 [mem 0xd4c00000-0xd4cfffff 64bit pref] -05:51:18,522 DEBUG kernel:pci_bus 0000:1e: resource 1 [mem 0xd3300000-0xd33fffff] -05:51:18,522 DEBUG kernel:pci_bus 0000:1e: resource 2 [mem 0xd4e00000-0xd4efffff 64bit pref] -05:51:18,522 DEBUG kernel:pci_bus 0000:1f: resource 1 [mem 0xd3700000-0xd37fffff] -05:51:18,522 DEBUG kernel:pci_bus 0000:1f: resource 2 [mem 0xd5000000-0xd50fffff 64bit pref] -05:51:18,522 DEBUG kernel:pci_bus 0000:20: resource 1 [mem 0xd3b00000-0xd3bfffff] -05:51:18,522 DEBUG kernel:pci_bus 0000:20: resource 2 [mem 0xd5200000-0xd52fffff 64bit pref] -05:51:18,522 DEBUG kernel:pci_bus 0000:21: resource 1 [mem 0xd3f00000-0xd3ffffff] -05:51:18,522 DEBUG kernel:pci_bus 0000:21: resource 2 [mem 0xd5400000-0xd54fffff 64bit pref] -05:51:18,522 DEBUG kernel:pci_bus 0000:22: resource 1 [mem 0xd4300000-0xd43fffff] -05:51:18,522 DEBUG kernel:pci_bus 0000:22: resource 2 [mem 0xd5600000-0xd56fffff 64bit pref] -05:51:18,522 INFO kernel:NET: Registered protocol family 2 -05:51:18,522 INFO kernel:IP route cache hash table entries: 65536 (order: 7, 524288 bytes) -05:51:18,522 INFO kernel:TCP established hash table entries: 262144 (order: 10, 4194304 bytes) -05:51:18,527 INFO kernel:TCP bind hash table entries: 65536 (order: 8, 1048576 bytes) -05:51:18,527 INFO kernel:TCP: Hash tables configured (established 262144 bind 65536) -05:51:18,527 INFO kernel:TCP reno registered -05:51:18,527 INFO kernel:NET: Registered protocol family 1 -05:51:18,527 INFO kernel:pci 0000:00:00.0: Limiting direct PCI/PCI transfers -05:51:18,527 DEBUG kernel:pci 0000:00:0f.0: Boot video device -05:51:18,527 INFO kernel:Trying to unpack rootfs image as initramfs... -05:51:18,527 INFO kernel:Freeing initrd memory: 32601k freed -05:51:18,527 INFO kernel:Simple Boot Flag at 0x36 set to 0x80 -05:51:18,527 INFO kernel:audit: initializing netlink socket (disabled) -05:51:18,527 NOTICE kernel:type=2000 audit(1021096275.782:1): initialized -05:51:18,527 INFO kernel:HugeTLB registered 2 MB page size, pre-allocated 0 pages -05:51:18,527 NOTICE kernel:VFS: Disk quotas dquot_6.5.2 -05:51:18,527 WARNING kernel:Dquot-cache hash table entries: 512 (order 0, 4096 bytes) -05:51:18,527 INFO kernel:msgmni has been set to 4005 -05:51:18,527 DEBUG kernel:SELinux: Registering netfilter hooks -05:51:18,527 INFO kernel:alg: No test for stdrng (krng) -05:51:18,527 WARNING kernel:ksign: Installing public key data -05:51:18,527 WARNING kernel:Loading keyring -05:51:18,527 WARNING kernel:- Added public key 8A44323FB303E068 -05:51:18,527 WARNING kernel: - key was been created 363988184 seconds in future -05:51:18,527 WARNING kernel:- User ID: CentOS (Kernel Module GPG key) -05:51:18,527 INFO kernel:Block layer SCSI generic (bsg) driver version 0.4 loaded (major 251) -05:51:18,527 INFO kernel:io scheduler noop registered -05:51:18,527 INFO kernel:io scheduler anticipatory registered -05:51:18,527 INFO kernel:io scheduler deadline registered -05:51:18,527 INFO kernel:io scheduler cfq registered (default) -05:51:18,527 DEBUG kernel:pcieport 0000:00:15.0: setting latency timer to 64 -05:51:18,527 DEBUG kernel: alloc irq_desc for 24 on node -1 -05:51:18,527 DEBUG kernel: alloc kstat_irqs on node -1 -05:51:18,527 DEBUG kernel:pcieport 0000:00:15.0: irq 24 for MSI/MSI-X -05:51:18,527 DEBUG kernel:pcieport 0000:00:15.1: setting latency timer to 64 -05:51:18,527 DEBUG kernel: alloc irq_desc for 25 on node -1 -05:51:18,527 DEBUG kernel: alloc kstat_irqs on node -1 -05:51:18,527 DEBUG kernel:pcieport 0000:00:15.1: irq 25 for MSI/MSI-X -05:51:18,527 DEBUG kernel:pcieport 0000:00:15.2: setting latency timer to 64 -05:51:18,527 DEBUG kernel: alloc irq_desc for 26 on node -1 -05:51:18,527 DEBUG kernel: alloc kstat_irqs on node -1 -05:51:18,527 DEBUG kernel:pcieport 0000:00:15.2: irq 26 for MSI/MSI-X -05:51:18,527 DEBUG kernel:pcieport 0000:00:15.3: setting latency timer to 64 -05:51:18,527 DEBUG kernel: alloc irq_desc for 27 on node -1 -05:51:18,527 DEBUG kernel: alloc kstat_irqs on node -1 -05:51:18,527 DEBUG kernel:pcieport 0000:00:15.3: irq 27 for MSI/MSI-X -05:51:18,527 DEBUG kernel:pcieport 0000:00:15.4: setting latency timer to 64 -05:51:18,527 DEBUG kernel: alloc irq_desc for 28 on node -1 -05:51:18,527 DEBUG kernel: alloc kstat_irqs on node -1 -05:51:18,527 DEBUG kernel:pcieport 0000:00:15.4: irq 28 for MSI/MSI-X -05:51:18,527 DEBUG kernel:pcieport 0000:00:15.5: setting latency timer to 64 -05:51:18,527 DEBUG kernel: alloc irq_desc for 29 on node -1 -05:51:18,527 DEBUG kernel: alloc kstat_irqs on node -1 -05:51:18,527 DEBUG kernel:pcieport 0000:00:15.5: irq 29 for MSI/MSI-X -05:51:18,527 DEBUG kernel:pcieport 0000:00:15.6: setting latency timer to 64 -05:51:18,527 DEBUG kernel: alloc irq_desc for 30 on node -1 -05:51:18,527 DEBUG kernel: alloc kstat_irqs on node -1 -05:51:18,527 DEBUG kernel:pcieport 0000:00:15.6: irq 30 for MSI/MSI-X -05:51:18,527 DEBUG kernel:pcieport 0000:00:15.7: setting latency timer to 64 -05:51:18,527 DEBUG kernel: alloc irq_desc for 31 on node -1 -05:51:18,527 DEBUG kernel: alloc kstat_irqs on node -1 -05:51:18,527 DEBUG kernel:pcieport 0000:00:15.7: irq 31 for MSI/MSI-X -05:51:18,527 DEBUG kernel:pcieport 0000:00:16.0: setting latency timer to 64 -05:51:18,527 DEBUG kernel: alloc irq_desc for 32 on node -1 -05:51:18,527 DEBUG kernel: alloc kstat_irqs on node -1 -05:51:18,527 DEBUG kernel:pcieport 0000:00:16.0: irq 32 for MSI/MSI-X -05:51:18,527 DEBUG kernel:pcieport 0000:00:16.1: setting latency timer to 64 -05:51:18,527 DEBUG kernel: alloc irq_desc for 33 on node -1 -05:51:18,527 DEBUG kernel: alloc kstat_irqs on node -1 -05:51:18,527 DEBUG kernel:pcieport 0000:00:16.1: irq 33 for MSI/MSI-X -05:51:18,527 DEBUG kernel:pcieport 0000:00:16.2: setting latency timer to 64 -05:51:18,527 DEBUG kernel: alloc irq_desc for 34 on node -1 -05:51:18,527 DEBUG kernel: alloc kstat_irqs on node -1 -05:51:18,527 DEBUG kernel:pcieport 0000:00:16.2: irq 34 for MSI/MSI-X -05:51:18,527 DEBUG kernel:pcieport 0000:00:16.3: setting latency timer to 64 -05:51:18,527 DEBUG kernel: alloc irq_desc for 35 on node -1 -05:51:18,527 DEBUG kernel: alloc kstat_irqs on node -1 -05:51:18,527 DEBUG kernel:pcieport 0000:00:16.3: irq 35 for MSI/MSI-X -05:51:18,527 DEBUG kernel:pcieport 0000:00:16.4: setting latency timer to 64 -05:51:18,527 DEBUG kernel: alloc irq_desc for 36 on node -1 -05:51:18,527 DEBUG kernel: alloc kstat_irqs on node -1 -05:51:18,527 DEBUG kernel:pcieport 0000:00:16.4: irq 36 for MSI/MSI-X -05:51:18,527 DEBUG kernel:pcieport 0000:00:16.5: setting latency timer to 64 -05:51:18,527 DEBUG kernel: alloc irq_desc for 37 on node -1 -05:51:18,527 DEBUG kernel: alloc kstat_irqs on node -1 -05:51:18,527 DEBUG kernel:pcieport 0000:00:16.5: irq 37 for MSI/MSI-X -05:51:18,527 DEBUG kernel:pcieport 0000:00:16.6: setting latency timer to 64 -05:51:18,527 DEBUG kernel: alloc irq_desc for 38 on node -1 -05:51:18,527 DEBUG kernel: alloc kstat_irqs on node -1 -05:51:18,527 DEBUG kernel:pcieport 0000:00:16.6: irq 38 for MSI/MSI-X -05:51:18,527 DEBUG kernel:pcieport 0000:00:16.7: setting latency timer to 64 -05:51:18,527 DEBUG kernel: alloc irq_desc for 39 on node -1 -05:51:18,527 DEBUG kernel: alloc kstat_irqs on node -1 -05:51:18,527 DEBUG kernel:pcieport 0000:00:16.7: irq 39 for MSI/MSI-X -05:51:18,527 DEBUG kernel:pcieport 0000:00:17.0: setting latency timer to 64 -05:51:18,527 DEBUG kernel: alloc irq_desc for 40 on node -1 -05:51:18,527 DEBUG kernel: alloc kstat_irqs on node -1 -05:51:18,527 DEBUG kernel:pcieport 0000:00:17.0: irq 40 for MSI/MSI-X -05:51:18,527 DEBUG kernel:pcieport 0000:00:17.1: setting latency timer to 64 -05:51:18,527 DEBUG kernel: alloc irq_desc for 41 on node -1 -05:51:18,527 DEBUG kernel: alloc kstat_irqs on node -1 -05:51:18,527 DEBUG kernel:pcieport 0000:00:17.1: irq 41 for MSI/MSI-X -05:51:18,527 DEBUG kernel:pcieport 0000:00:17.2: setting latency timer to 64 -05:51:18,527 DEBUG kernel: alloc irq_desc for 42 on node -1 -05:51:18,527 DEBUG kernel: alloc kstat_irqs on node -1 -05:51:18,527 DEBUG kernel:pcieport 0000:00:17.2: irq 42 for MSI/MSI-X -05:51:18,527 DEBUG kernel:pcieport 0000:00:17.3: setting latency timer to 64 -05:51:18,527 DEBUG kernel: alloc irq_desc for 43 on node -1 -05:51:18,527 DEBUG kernel: alloc kstat_irqs on node -1 -05:51:18,527 DEBUG kernel:pcieport 0000:00:17.3: irq 43 for MSI/MSI-X -05:51:18,527 DEBUG kernel:pcieport 0000:00:17.4: setting latency timer to 64 -05:51:18,527 DEBUG kernel: alloc irq_desc for 44 on node -1 -05:51:18,527 DEBUG kernel: alloc kstat_irqs on node -1 -05:51:18,527 DEBUG kernel:pcieport 0000:00:17.4: irq 44 for MSI/MSI-X -05:51:18,527 DEBUG kernel:pcieport 0000:00:17.5: setting latency timer to 64 -05:51:18,527 DEBUG kernel: alloc irq_desc for 45 on node -1 -05:51:18,527 DEBUG kernel: alloc kstat_irqs on node -1 -05:51:18,527 DEBUG kernel:pcieport 0000:00:17.5: irq 45 for MSI/MSI-X -05:51:18,527 DEBUG kernel:pcieport 0000:00:17.6: setting latency timer to 64 -05:51:18,527 DEBUG kernel: alloc irq_desc for 46 on node -1 -05:51:18,527 DEBUG kernel: alloc kstat_irqs on node -1 -05:51:18,527 DEBUG kernel:pcieport 0000:00:17.6: irq 46 for MSI/MSI-X -05:51:18,527 DEBUG kernel:pcieport 0000:00:17.7: setting latency timer to 64 -05:51:18,527 DEBUG kernel: alloc irq_desc for 47 on node -1 -05:51:18,527 DEBUG kernel: alloc kstat_irqs on node -1 -05:51:18,527 DEBUG kernel:pcieport 0000:00:17.7: irq 47 for MSI/MSI-X -05:51:18,527 DEBUG kernel:pcieport 0000:00:18.0: setting latency timer to 64 -05:51:18,527 DEBUG kernel: alloc irq_desc for 48 on node -1 -05:51:18,527 DEBUG kernel: alloc kstat_irqs on node -1 -05:51:18,527 DEBUG kernel:pcieport 0000:00:18.0: irq 48 for MSI/MSI-X -05:51:18,527 DEBUG kernel:pcieport 0000:00:18.1: setting latency timer to 64 -05:51:18,527 DEBUG kernel: alloc irq_desc for 49 on node -1 -05:51:18,527 DEBUG kernel: alloc kstat_irqs on node -1 -05:51:18,527 DEBUG kernel:pcieport 0000:00:18.1: irq 49 for MSI/MSI-X -05:51:18,527 DEBUG kernel:pcieport 0000:00:18.2: setting latency timer to 64 -05:51:18,527 DEBUG kernel: alloc irq_desc for 50 on node -1 -05:51:18,527 DEBUG kernel: alloc kstat_irqs on node -1 -05:51:18,527 DEBUG kernel:pcieport 0000:00:18.2: irq 50 for MSI/MSI-X -05:51:18,527 DEBUG kernel:pcieport 0000:00:18.3: setting latency timer to 64 -05:51:18,527 DEBUG kernel: alloc irq_desc for 51 on node -1 -05:51:18,527 DEBUG kernel: alloc kstat_irqs on node -1 -05:51:18,527 DEBUG kernel:pcieport 0000:00:18.3: irq 51 for MSI/MSI-X -05:51:18,527 DEBUG kernel:pcieport 0000:00:18.4: setting latency timer to 64 -05:51:18,527 DEBUG kernel: alloc irq_desc for 52 on node -1 -05:51:18,527 DEBUG kernel: alloc kstat_irqs on node -1 -05:51:18,527 DEBUG kernel:pcieport 0000:00:18.4: irq 52 for MSI/MSI-X -05:51:18,527 DEBUG kernel:pcieport 0000:00:18.5: setting latency timer to 64 -05:51:18,527 DEBUG kernel: alloc irq_desc for 53 on node -1 -05:51:18,527 DEBUG kernel: alloc kstat_irqs on node -1 -05:51:18,527 DEBUG kernel:pcieport 0000:00:18.5: irq 53 for MSI/MSI-X -05:51:18,527 DEBUG kernel:pcieport 0000:00:18.6: setting latency timer to 64 -05:51:18,527 DEBUG kernel: alloc irq_desc for 54 on node -1 -05:51:18,527 DEBUG kernel: alloc kstat_irqs on node -1 -05:51:18,527 DEBUG kernel:pcieport 0000:00:18.6: irq 54 for MSI/MSI-X -05:51:18,527 DEBUG kernel:pcieport 0000:00:18.7: setting latency timer to 64 -05:51:18,527 DEBUG kernel: alloc irq_desc for 55 on node -1 -05:51:18,527 DEBUG kernel: alloc kstat_irqs on node -1 -05:51:18,527 DEBUG kernel:pcieport 0000:00:18.7: irq 55 for MSI/MSI-X -05:51:18,527 INFO kernel:pci_hotplug: PCI Hot Plug PCI Core version: 0.5 -05:51:18,527 INFO kernel:pciehp 0000:00:15.0:pcie04: HPC vendor_id 15ad device_id 7a0 ss_vid 0 ss_did 0 -05:51:18,527 DEBUG kernel:pciehp 0000:00:15.0:pcie04: service driver pciehp loaded -05:51:18,527 INFO kernel:pciehp 0000:00:15.1:pcie04: HPC vendor_id 15ad device_id 7a0 ss_vid 0 ss_did 0 -05:51:18,527 DEBUG kernel:pciehp 0000:00:15.1:pcie04: service driver pciehp loaded -05:51:18,527 INFO kernel:pciehp 0000:00:15.2:pcie04: HPC vendor_id 15ad device_id 7a0 ss_vid 0 ss_did 0 -05:51:18,527 DEBUG kernel:pciehp 0000:00:15.2:pcie04: service driver pciehp loaded -05:51:18,527 INFO kernel:pciehp 0000:00:15.3:pcie04: HPC vendor_id 15ad device_id 7a0 ss_vid 0 ss_did 0 -05:51:18,527 DEBUG kernel:pciehp 0000:00:15.3:pcie04: service driver pciehp loaded -05:51:18,527 INFO kernel:pciehp 0000:00:15.4:pcie04: HPC vendor_id 15ad device_id 7a0 ss_vid 0 ss_did 0 -05:51:18,527 DEBUG kernel:pciehp 0000:00:15.4:pcie04: service driver pciehp loaded -05:51:18,527 INFO kernel:pciehp 0000:00:15.5:pcie04: HPC vendor_id 15ad device_id 7a0 ss_vid 0 ss_did 0 -05:51:18,527 DEBUG kernel:pciehp 0000:00:15.5:pcie04: service driver pciehp loaded -05:51:18,527 INFO kernel:pciehp 0000:00:15.6:pcie04: HPC vendor_id 15ad device_id 7a0 ss_vid 0 ss_did 0 -05:51:18,527 DEBUG kernel:pciehp 0000:00:15.6:pcie04: service driver pciehp loaded -05:51:18,527 INFO kernel:pciehp 0000:00:15.7:pcie04: HPC vendor_id 15ad device_id 7a0 ss_vid 0 ss_did 0 -05:51:18,527 DEBUG kernel:pciehp 0000:00:15.7:pcie04: service driver pciehp loaded -05:51:18,527 INFO kernel:pciehp 0000:00:16.0:pcie04: HPC vendor_id 15ad device_id 7a0 ss_vid 0 ss_did 0 -05:51:18,527 DEBUG kernel:pciehp 0000:00:16.0:pcie04: service driver pciehp loaded -05:51:18,527 INFO kernel:pciehp 0000:00:16.1:pcie04: HPC vendor_id 15ad device_id 7a0 ss_vid 0 ss_did 0 -05:51:18,527 DEBUG kernel:pciehp 0000:00:16.1:pcie04: service driver pciehp loaded -05:51:18,527 INFO kernel:pciehp 0000:00:16.2:pcie04: HPC vendor_id 15ad device_id 7a0 ss_vid 0 ss_did 0 -05:51:18,527 DEBUG kernel:pciehp 0000:00:16.2:pcie04: service driver pciehp loaded -05:51:18,527 INFO kernel:pciehp 0000:00:16.3:pcie04: HPC vendor_id 15ad device_id 7a0 ss_vid 0 ss_did 0 -05:51:18,527 DEBUG kernel:pciehp 0000:00:16.3:pcie04: service driver pciehp loaded -05:51:18,527 INFO kernel:pciehp 0000:00:16.4:pcie04: HPC vendor_id 15ad device_id 7a0 ss_vid 0 ss_did 0 -05:51:18,527 DEBUG kernel:pciehp 0000:00:16.4:pcie04: service driver pciehp loaded -05:51:18,527 INFO kernel:pciehp 0000:00:16.5:pcie04: HPC vendor_id 15ad device_id 7a0 ss_vid 0 ss_did 0 -05:51:18,527 DEBUG kernel:pciehp 0000:00:16.5:pcie04: service driver pciehp loaded -05:51:18,527 INFO kernel:pciehp 0000:00:16.6:pcie04: HPC vendor_id 15ad device_id 7a0 ss_vid 0 ss_did 0 -05:51:18,527 DEBUG kernel:pciehp 0000:00:16.6:pcie04: service driver pciehp loaded -05:51:18,527 INFO kernel:pciehp 0000:00:16.7:pcie04: HPC vendor_id 15ad device_id 7a0 ss_vid 0 ss_did 0 -05:51:18,527 DEBUG kernel:pciehp 0000:00:16.7:pcie04: service driver pciehp loaded -05:51:18,527 INFO kernel:pciehp 0000:00:17.0:pcie04: HPC vendor_id 15ad device_id 7a0 ss_vid 0 ss_did 0 -05:51:18,527 DEBUG kernel:pciehp 0000:00:17.0:pcie04: service driver pciehp loaded -05:51:18,527 INFO kernel:pciehp 0000:00:17.1:pcie04: HPC vendor_id 15ad device_id 7a0 ss_vid 0 ss_did 0 -05:51:18,527 DEBUG kernel:pciehp 0000:00:17.1:pcie04: service driver pciehp loaded -05:51:18,527 INFO kernel:pciehp 0000:00:17.2:pcie04: HPC vendor_id 15ad device_id 7a0 ss_vid 0 ss_did 0 -05:51:18,527 DEBUG kernel:pciehp 0000:00:17.2:pcie04: service driver pciehp loaded -05:51:18,527 INFO kernel:pciehp 0000:00:17.3:pcie04: HPC vendor_id 15ad device_id 7a0 ss_vid 0 ss_did 0 -05:51:18,527 DEBUG kernel:pciehp 0000:00:17.3:pcie04: service driver pciehp loaded -05:51:18,527 INFO kernel:pciehp 0000:00:17.4:pcie04: HPC vendor_id 15ad device_id 7a0 ss_vid 0 ss_did 0 -05:51:18,527 DEBUG kernel:pciehp 0000:00:17.4:pcie04: service driver pciehp loaded -05:51:18,527 INFO kernel:pciehp 0000:00:17.5:pcie04: HPC vendor_id 15ad device_id 7a0 ss_vid 0 ss_did 0 -05:51:18,527 DEBUG kernel:pciehp 0000:00:17.5:pcie04: service driver pciehp loaded -05:51:18,527 INFO kernel:pciehp 0000:00:17.6:pcie04: HPC vendor_id 15ad device_id 7a0 ss_vid 0 ss_did 0 -05:51:18,527 DEBUG kernel:pciehp 0000:00:17.6:pcie04: service driver pciehp loaded -05:51:18,527 INFO kernel:pciehp 0000:00:17.7:pcie04: HPC vendor_id 15ad device_id 7a0 ss_vid 0 ss_did 0 -05:51:18,527 DEBUG kernel:pciehp 0000:00:17.7:pcie04: service driver pciehp loaded -05:51:18,527 INFO kernel:pciehp 0000:00:18.0:pcie04: HPC vendor_id 15ad device_id 7a0 ss_vid 0 ss_did 0 -05:51:18,527 DEBUG kernel:pciehp 0000:00:18.0:pcie04: service driver pciehp loaded -05:51:18,527 INFO kernel:pciehp 0000:00:18.1:pcie04: HPC vendor_id 15ad device_id 7a0 ss_vid 0 ss_did 0 -05:51:18,527 DEBUG kernel:pciehp 0000:00:18.1:pcie04: service driver pciehp loaded -05:51:18,527 INFO kernel:pciehp 0000:00:18.2:pcie04: HPC vendor_id 15ad device_id 7a0 ss_vid 0 ss_did 0 -05:51:18,527 DEBUG kernel:pciehp 0000:00:18.2:pcie04: service driver pciehp loaded -05:51:18,527 INFO kernel:pciehp 0000:00:18.3:pcie04: HPC vendor_id 15ad device_id 7a0 ss_vid 0 ss_did 0 -05:51:18,527 DEBUG kernel:pciehp 0000:00:18.3:pcie04: service driver pciehp loaded -05:51:18,527 INFO kernel:pciehp 0000:00:18.4:pcie04: HPC vendor_id 15ad device_id 7a0 ss_vid 0 ss_did 0 -05:51:18,527 DEBUG kernel:pciehp 0000:00:18.4:pcie04: service driver pciehp loaded -05:51:18,527 INFO kernel:pciehp 0000:00:18.5:pcie04: HPC vendor_id 15ad device_id 7a0 ss_vid 0 ss_did 0 -05:51:18,527 DEBUG kernel:pciehp 0000:00:18.5:pcie04: service driver pciehp loaded -05:51:18,527 INFO kernel:pciehp 0000:00:18.6:pcie04: HPC vendor_id 15ad device_id 7a0 ss_vid 0 ss_did 0 -05:51:18,527 DEBUG kernel:pciehp 0000:00:18.6:pcie04: service driver pciehp loaded -05:51:18,527 INFO kernel:pciehp 0000:00:18.7:pcie04: HPC vendor_id 15ad device_id 7a0 ss_vid 0 ss_did 0 -05:51:18,527 DEBUG kernel:pciehp 0000:00:18.7:pcie04: service driver pciehp loaded -05:51:18,527 INFO kernel:pciehp: PCI Express Hot Plug Controller Driver version: 0.4 -05:51:18,527 INFO kernel:acpiphp: ACPI Hot Plug PCI Controller Driver version: 0.5 -05:51:18,527 INFO kernel:acpiphp: Slot [32] registered -05:51:18,527 INFO kernel:acpiphp: Slot [33] registered -05:51:18,527 INFO kernel:acpiphp: Slot [34] registered -05:51:18,527 INFO kernel:acpiphp: Slot [35] registered -05:51:18,527 INFO kernel:acpiphp: Slot [36] registered -05:51:18,527 INFO kernel:acpiphp: Slot [37] registered -05:51:18,527 INFO kernel:acpiphp: Slot [38] registered -05:51:18,527 INFO kernel:acpiphp: Slot [39] registered -05:51:18,527 INFO kernel:acpiphp: Slot [40] registered -05:51:18,527 INFO kernel:acpiphp: Slot [41] registered -05:51:18,527 INFO kernel:acpiphp: Slot [42] registered -05:51:18,527 INFO kernel:acpiphp: Slot [43] registered -05:51:18,527 INFO kernel:acpiphp: Slot [44] registered -05:51:18,527 INFO kernel:acpiphp: Slot [45] registered -05:51:18,527 INFO kernel:acpiphp: Slot [46] registered -05:51:18,527 INFO kernel:acpiphp: Slot [47] registered -05:51:18,527 INFO kernel:acpiphp: Slot [48] registered -05:51:18,527 INFO kernel:acpiphp: Slot [49] registered -05:51:18,527 INFO kernel:acpiphp: Slot [50] registered -05:51:18,527 INFO kernel:acpiphp: Slot [51] registered -05:51:18,527 INFO kernel:acpiphp: Slot [52] registered -05:51:18,527 INFO kernel:acpiphp: Slot [53] registered -05:51:18,527 INFO kernel:acpiphp: Slot [54] registered -05:51:18,527 INFO kernel:acpiphp: Slot [55] registered -05:51:18,527 INFO kernel:acpiphp: Slot [56] registered -05:51:18,527 INFO kernel:acpiphp: Slot [57] registered -05:51:18,527 INFO kernel:acpiphp: Slot [58] registered -05:51:18,527 INFO kernel:acpiphp: Slot [59] registered -05:51:18,527 INFO kernel:acpiphp: Slot [60] registered -05:51:18,527 INFO kernel:acpiphp: Slot [61] registered -05:51:18,527 INFO kernel:acpiphp: Slot [62] registered -05:51:18,527 INFO kernel:acpiphp: Slot [63] registered -05:51:18,527 WARNING kernel:acpiphp_glue: Slot 160 already registered by another hotplug driver -05:51:18,527 WARNING kernel:acpiphp_glue: Slot 192 already registered by another hotplug driver -05:51:18,527 WARNING kernel:acpiphp_glue: Slot 224 already registered by another hotplug driver -05:51:18,527 WARNING kernel:acpiphp_glue: Slot 256 already registered by another hotplug driver -05:51:18,527 WARNING kernel:acpiphp_glue: Slot 161 already registered by another hotplug driver -05:51:18,527 WARNING kernel:acpiphp_glue: Slot 162 already registered by another hotplug driver -05:51:18,527 WARNING kernel:acpiphp_glue: Slot 163 already registered by another hotplug driver -05:51:18,527 WARNING kernel:acpiphp_glue: Slot 164 already registered by another hotplug driver -05:51:18,527 WARNING kernel:acpiphp_glue: Slot 165 already registered by another hotplug driver -05:51:18,527 WARNING kernel:acpiphp_glue: Slot 166 already registered by another hotplug driver -05:51:18,527 WARNING kernel:acpiphp_glue: Slot 167 already registered by another hotplug driver -05:51:18,527 WARNING kernel:acpiphp_glue: Slot 193 already registered by another hotplug driver -05:51:18,527 WARNING kernel:acpiphp_glue: Slot 194 already registered by another hotplug driver -05:51:18,527 WARNING kernel:acpiphp_glue: Slot 195 already registered by another hotplug driver -05:51:18,527 WARNING kernel:acpiphp_glue: Slot 196 already registered by another hotplug driver -05:51:18,527 WARNING kernel:acpiphp_glue: Slot 197 already registered by another hotplug driver -05:51:18,527 WARNING kernel:acpiphp_glue: Slot 198 already registered by another hotplug driver -05:51:18,527 WARNING kernel:acpiphp_glue: Slot 199 already registered by another hotplug driver -05:51:18,527 WARNING kernel:acpiphp_glue: Slot 225 already registered by another hotplug driver -05:51:18,527 WARNING kernel:acpiphp_glue: Slot 226 already registered by another hotplug driver -05:51:18,527 WARNING kernel:acpiphp_glue: Slot 227 already registered by another hotplug driver -05:51:18,527 WARNING kernel:acpiphp_glue: Slot 228 already registered by another hotplug driver -05:51:18,527 WARNING kernel:acpiphp_glue: Slot 229 already registered by another hotplug driver -05:51:18,527 WARNING kernel:acpiphp_glue: Slot 230 already registered by another hotplug driver -05:51:18,527 WARNING kernel:acpiphp_glue: Slot 231 already registered by another hotplug driver -05:51:18,527 WARNING kernel:acpiphp_glue: Slot 257 already registered by another hotplug driver -05:51:18,527 WARNING kernel:acpiphp_glue: Slot 258 already registered by another hotplug driver -05:51:18,527 WARNING kernel:acpiphp_glue: Slot 259 already registered by another hotplug driver -05:51:18,527 WARNING kernel:acpiphp_glue: Slot 260 already registered by another hotplug driver -05:51:18,527 WARNING kernel:acpiphp_glue: Slot 261 already registered by another hotplug driver -05:51:18,527 WARNING kernel:acpiphp_glue: Slot 262 already registered by another hotplug driver -05:51:18,527 WARNING kernel:acpiphp_glue: Slot 263 already registered by another hotplug driver -05:51:18,527 INFO kernel:ipmi message handler version 39.2 -05:51:18,527 INFO kernel:IPMI System Interface driver. -05:51:18,527 INFO kernel:ipmi_si: Adding default-specified kcs state machine -05:51:18,527 INFO kernel:ipmi_si: Trying default-specified kcs state machine at i/o address 0xca2, slave address 0x0, irq 0 -05:51:18,527 INFO kernel:ipmi_si: Interface detection failed -05:51:18,527 INFO kernel:ipmi_si: Adding default-specified smic state machine -05:51:18,527 INFO kernel:ipmi_si: Trying default-specified smic state machine at i/o address 0xca9, slave address 0x0, irq 0 -05:51:18,527 INFO kernel:ipmi_si: Interface detection failed -05:51:18,527 INFO kernel:ipmi_si: Adding default-specified bt state machine -05:51:18,527 INFO kernel:ipmi_si: Trying default-specified bt state machine at i/o address 0xe4, slave address 0x0, irq 0 -05:51:18,527 INFO kernel:ipmi_si: Interface detection failed -05:51:18,527 WARNING kernel:ipmi_si: Unable to find any System Interface(s) -05:51:18,527 INFO kernel:ACPI: AC Adapter [ACAD] (on-line) -05:51:18,527 INFO kernel:input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input0 -05:51:18,527 INFO kernel:ACPI: Power Button [PWRF] -05:51:18,527 DEBUG kernel:ACPI: acpi_idle registered with cpuidle -05:51:18,527 WARNING kernel:ACPI Exception: AE_NOT_FOUND, No or invalid critical threshold (20090903/thermal-386) -05:51:18,527 INFO kernel:GHES: HEST is not enabled! -05:51:18,527 INFO kernel:Non-volatile memory driver v1.3 -05:51:18,527 INFO kernel:Linux agpgart interface v0.103 -05:51:18,527 INFO kernel:agpgart-intel 0000:00:00.0: Intel 440BX Chipset -05:51:18,527 INFO kernel:agpgart-intel 0000:00:00.0: AGP aperture is 256M @ 0x0 -05:51:18,527 INFO kernel:crash memory driver: version 1.1 -05:51:18,527 INFO kernel:Serial: 8250/16550 driver, 4 ports, IRQ sharing enabled -05:51:18,527 INFO kernel:serial8250: ttyS0 at I/O 0x3f8 (irq = 4) is a 16550A -05:51:18,527 INFO kernel:serial8250: ttyS1 at I/O 0x2f8 (irq = 3) is a 16550A -05:51:18,527 INFO kernel:00:0a: ttyS0 at I/O 0x3f8 (irq = 4) is a 16550A -05:51:18,527 INFO kernel:00:0b: ttyS1 at I/O 0x2f8 (irq = 3) is a 16550A -05:51:18,527 INFO kernel:brd: module loaded -05:51:18,527 INFO kernel:loop: module loaded -05:51:18,527 INFO kernel:input: Macintosh mouse button emulation as /devices/virtual/input/input1 -05:51:18,527 INFO kernel:Fixed MDIO Bus: probed -05:51:18,527 INFO kernel:ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver -05:51:18,527 INFO kernel:ohci_hcd: USB 1.1 'Open' Host Controller (OHCI) Driver -05:51:18,527 INFO kernel:uhci_hcd: USB Universal Host Controller Interface driver -05:51:18,527 INFO kernel:PNP: PS/2 Controller [PNP0303:KBC,PNP0f13:MOUS] at 0x60,0x64 irq 1,12 -05:51:18,527 INFO kernel:Refined TSC clocksource calibration: 2400.080 MHz. -05:51:18,527 INFO kernel:Switching to clocksource tsc -05:51:18,527 INFO kernel:serio: i8042 KBD port at 0x60,0x64 irq 1 -05:51:18,527 INFO kernel:serio: i8042 AUX port at 0x60,0x64 irq 12 -05:51:18,527 INFO kernel:mice: PS/2 mouse device common for all mice -05:51:18,527 INFO kernel:rtc_cmos 00:04: rtc core: registered rtc_cmos as rtc0 -05:51:18,527 INFO kernel:rtc0: alarms up to one month, y3k, 114 bytes nvram, hpet irqs -05:51:18,527 INFO kernel:cpuidle: using governor ladder -05:51:18,527 INFO kernel:cpuidle: using governor menu -05:51:18,527 INFO kernel:EFI Variables Facility v0.08 2004-May-17 -05:51:18,527 INFO kernel:usbcore: registered new interface driver hiddev -05:51:18,527 INFO kernel:usbcore: registered new interface driver usbhid -05:51:18,527 INFO kernel:usbhid: v2.6:USB HID core driver -05:51:18,527 INFO kernel:GRE over IPv4 demultiplexor driver -05:51:18,527 INFO kernel:TCP cubic registered -05:51:18,527 INFO kernel:input: AT Translated Set 2 keyboard as /devices/platform/i8042/serio0/input/input2 -05:51:18,527 INFO kernel:Initializing XFRM netlink socket -05:51:18,527 INFO kernel:NET: Registered protocol family 17 -05:51:18,527 WARNING kernel:registered taskstats version 1 -05:51:18,527 INFO kernel:input: ImPS/2 Generic Wheel Mouse as /devices/platform/i8042/serio1/input/input3 -05:51:18,527 INFO kernel:rtc_cmos 00:04: setting system clock to 2002-05-11 05:51:18 UTC (1021096278) -05:51:18,527 INFO kernel:Initalizing network drop monitor service -05:51:18,527 INFO kernel:Freeing unused kernel memory: 1276k freed -05:51:18,527 INFO kernel:Write protecting the kernel read-only data: 10240k -05:51:18,527 INFO kernel:Freeing unused kernel memory: 800k freed -05:51:18,527 INFO kernel:Freeing unused kernel memory: 1588k freed -05:51:20,557 INFO kernel:squashfs: version 4.0 (2009/01/31) Phillip Lougher -05:51:20,568 INFO kernel:Loading iSCSI transport class v2.0-870. -05:51:20,587 NOTICE kernel:iscsi: registered transport (tcp) -05:51:20,594 INFO kernel:Floppy drive(s): fd0 is 1.44M -05:51:20,605 INFO kernel:FDC 0 is a post-1991 82077 -05:51:20,610 INFO kernel:BIOS EDD facility v0.16 2004-Jun-25, 2 devices found -05:51:20,614 INFO kernel:input: PC Speaker as /devices/platform/pcspkr/input/input4 -05:51:20,620 INFO kernel:No iBFT detected. -05:51:20,655 INFO kernel:NET: Registered protocol family 10 -05:51:20,657 INFO kernel:lo: Disabled Privacy Extensions -05:51:20,739 DEBUG kernel:ata_piix 0000:00:07.1: version 2.13 -05:51:20,740 INFO kernel:scsi0 : ata_piix -05:51:20,740 INFO kernel:scsi1 : ata_piix -05:51:20,740 INFO kernel:ata1: PATA max UDMA/33 cmd 0x1f0 ctl 0x3f6 bmdma 0x10c0 irq 14 -05:51:20,740 INFO kernel:ata2: PATA max UDMA/33 cmd 0x170 ctl 0x376 bmdma 0x10c8 irq 15 -05:51:20,750 ERR udevd-work: device node '/dev/rtc' already exists, link to '/dev/rtc0' will not overwrite it -05:51:20,926 INFO kernel:ata2.00: ATAPI: VMware Virtual IDE CDROM Drive, 00000001, max UDMA/33 -05:51:20,934 INFO kernel:ata2.00: configured for UDMA/33 -05:51:20,934 NOTICE kernel:scsi 1:0:0:0: CD-ROM NECVMWar VMware IDE CDR10 1.00 PQ: 0 ANSI: 5 -05:51:20,959 INFO kernel:Fusion MPT base driver 3.04.20 -05:51:20,959 INFO kernel:Copyright (c) 1999-2008 LSI Corporation -05:51:20,971 INFO kernel:Fusion MPT SPI Host driver 3.04.20 -05:51:20,971 DEBUG kernel: alloc irq_desc for 17 on node -1 -05:51:20,971 DEBUG kernel: alloc kstat_irqs on node -1 -05:51:20,971 INFO kernel:mptspi 0000:00:10.0: PCI INT A -> GSI 17 (level, low) -> IRQ 17 -05:51:20,972 INFO kernel:mptbase: ioc0: Initiating bringup -05:51:20,990 INFO kernel:ioc0: LSI53C1030 B0: Capabilities={Initiator} -05:51:21,031 INFO kernel:scsi2 : ioc0: LSI53C1030 B0, FwRev=01032920h, Ports=1, MaxQ=128, IRQ=17 -05:51:21,061 NOTICE kernel:scsi 2:0:0:0: Direct-Access VMware Virtual disk 1.0 PQ: 0 ANSI: 2 -05:51:21,061 INFO kernel:scsi target2:0:0: Beginning Domain Validation -05:51:21,061 INFO kernel:scsi target2:0:0: Domain Validation skipping write tests -05:51:21,061 INFO kernel:scsi target2:0:0: Ending Domain Validation -05:51:21,061 INFO kernel:scsi target2:0:0: FAST-40 WIDE SCSI 80.0 MB/s ST (25 ns, offset 127) -05:51:21,061 NOTICE kernel:scsi 2:0:1:0: Direct-Access VMware Virtual disk 1.0 PQ: 0 ANSI: 2 -05:51:21,061 INFO kernel:scsi target2:0:1: Beginning Domain Validation -05:51:21,061 INFO kernel:scsi target2:0:1: Domain Validation skipping write tests -05:51:21,061 INFO kernel:scsi target2:0:1: Ending Domain Validation -05:51:21,061 INFO kernel:scsi target2:0:1: FAST-40 WIDE SCSI 80.0 MB/s ST (25 ns, offset 127) -05:51:21,088 WARNING kernel:sr0: scsi3-mmc drive: 1x/1x writer dvd-ram cd/rw xa/form2 cdda tray -05:51:21,088 INFO kernel:Uniform CD-ROM driver Revision: 3.20 -05:51:21,088 DEBUG kernel:sr 1:0:0:0: Attached scsi CD-ROM sr0 -05:51:21,098 INFO kernel:e1000: Intel(R) PRO/1000 Network Driver - version 7.3.21-k8-NAPI -05:51:21,098 INFO kernel:e1000: Copyright (c) 1999-2006 Intel Corporation. -05:51:21,098 DEBUG kernel: alloc irq_desc for 18 on node -1 -05:51:21,098 DEBUG kernel: alloc kstat_irqs on node -1 -05:51:21,098 INFO kernel:e1000 0000:02:00.0: PCI INT A -> GSI 18 (level, low) -> IRQ 18 -05:51:21,098 DEBUG kernel:e1000 0000:02:00.0: setting latency timer to 64 -05:51:21,447 INFO kernel:e1000 0000:02:00.0: eth0: (PCI:66MHz:32-bit) 00:0c:29:21:89:af -05:51:21,447 INFO kernel:e1000 0000:02:00.0: eth0: Intel(R) PRO/1000 Network Connection -05:51:21,447 DEBUG kernel: alloc irq_desc for 19 on node -1 -05:51:21,447 DEBUG kernel: alloc kstat_irqs on node -1 -05:51:21,447 INFO kernel:e1000 0000:02:01.0: PCI INT A -> GSI 19 (level, low) -> IRQ 19 -05:51:21,447 DEBUG kernel:e1000 0000:02:01.0: setting latency timer to 64 -05:51:21,793 INFO kernel:e1000 0000:02:01.0: eth1: (PCI:66MHz:32-bit) 00:0c:29:21:89:b9 -05:51:21,793 INFO kernel:e1000 0000:02:01.0: eth1: Intel(R) PRO/1000 Network Connection -05:51:21,793 DEBUG kernel: alloc irq_desc for 16 on node -1 -05:51:21,793 DEBUG kernel: alloc kstat_irqs on node -1 -05:51:21,793 INFO kernel:e1000 0000:02:02.0: PCI INT A -> GSI 16 (level, low) -> IRQ 16 -05:51:21,793 DEBUG kernel:e1000 0000:02:02.0: setting latency timer to 64 -05:51:22,142 INFO kernel:e1000 0000:02:02.0: eth2: (PCI:66MHz:32-bit) 00:0c:29:21:89:c3 -05:51:22,142 INFO kernel:e1000 0000:02:02.0: eth2: Intel(R) PRO/1000 Network Connection -05:51:22,142 INFO kernel:e1000 0000:02:03.0: PCI INT A -> GSI 17 (level, low) -> IRQ 17 -05:51:22,142 DEBUG kernel:e1000 0000:02:03.0: setting latency timer to 64 -05:51:22,485 INFO kernel:e1000 0000:02:03.0: eth3: (PCI:66MHz:32-bit) 00:0c:29:21:89:cd -05:51:22,485 INFO kernel:e1000 0000:02:03.0: eth3: Intel(R) PRO/1000 Network Connection -05:51:22,515 NOTICE kernel:sd 2:0:0:0: [sda] 33554432 512-byte logical blocks: (17.1 GB/16.0 GiB) -05:51:22,515 NOTICE kernel:sd 2:0:0:0: [sda] Write Protect is off -05:51:22,515 DEBUG kernel:sd 2:0:0:0: [sda] Mode Sense: 61 00 00 00 -05:51:22,515 NOTICE kernel:sd 2:0:0:0: [sda] Cache data unavailable -05:51:22,515 ERR kernel:sd 2:0:0:0: [sda] Assuming drive cache: write through -05:51:22,515 NOTICE kernel:sd 2:0:0:0: [sda] Cache data unavailable -05:51:22,515 ERR kernel:sd 2:0:0:0: [sda] Assuming drive cache: write through -05:51:22,516 INFO kernel: sda: -05:51:22,516 NOTICE kernel:sd 2:0:1:0: [sdb] 33554432 512-byte logical blocks: (17.1 GB/16.0 GiB) -05:51:22,516 NOTICE kernel:sd 2:0:1:0: [sdb] Write Protect is off -05:51:22,516 DEBUG kernel:sd 2:0:1:0: [sdb] Mode Sense: 61 00 00 00 -05:51:22,516 NOTICE kernel:sd 2:0:1:0: [sdb] Cache data unavailable -05:51:22,516 ERR kernel:sd 2:0:1:0: [sdb] Assuming drive cache: write through -05:51:22,516 NOTICE kernel:sd 2:0:1:0: [sdb] Cache data unavailable -05:51:22,516 ERR kernel:sd 2:0:1:0: [sdb] Assuming drive cache: write through -05:51:22,522 INFO kernel: sdb: -05:51:22,522 NOTICE kernel:sd 2:0:1:0: [sdb] Cache data unavailable -05:51:22,522 ERR kernel:sd 2:0:1:0: [sdb] Assuming drive cache: write through -05:51:22,522 NOTICE kernel:sd 2:0:1:0: [sdb] Attached SCSI disk -05:51:22,577 WARNING kernel: sda1 sda2 sda3 -05:51:22,598 NOTICE kernel:sd 2:0:0:0: [sda] Cache data unavailable -05:51:22,598 ERR kernel:sd 2:0:0:0: [sda] Assuming drive cache: write through -05:51:22,598 NOTICE kernel:sd 2:0:0:0: [sda] Attached SCSI disk -05:51:22,606 NOTICE kernel:sr 1:0:0:0: Attached scsi generic sg0 type 5 -05:51:22,606 NOTICE kernel:sd 2:0:0:0: Attached scsi generic sg1 type 0 -05:51:22,606 NOTICE kernel:sd 2:0:1:0: Attached scsi generic sg2 type 0 -05:51:28,012 ERR udevd-work: device node '/dev/rtc' already exists, link to '/dev/rtc0' will not overwrite it -05:51:46,181 INFO NetworkManager: NetworkManager (version 0.8.1-66.el6) is starting... -05:51:46,181 INFO NetworkManager: Read config file /etc/NetworkManager/NetworkManager.conf -05:51:46,183 INFO NetworkManager: trying to start the modem manager... -05:51:46,186 INFO NetworkManager: monitoring kernel firmware directory '/lib/firmware'. -05:51:46,186 INFO NetworkManager: Bonding/Bridging/VLAN support enabled -05:51:46,188 NOTICE NetworkManager: ifcfg-rh: Acquired D-Bus service com.redhat.ifcfgrh1 -05:51:46,188 INFO NetworkManager: Loaded plugin ifcfg-rh: (c) 2007 - 2008 Red Hat, Inc. To report bugs please use the NetworkManager mailing list. -05:51:46,188 INFO NetworkManager: Loaded plugin keyfile: (c) 2007 - 2008 Red Hat, Inc. To report bugs please use the NetworkManager mailing list. -05:51:46,188 NOTICE NetworkManager: ifcfg-rh: parsing /etc/sysconfig/network-scripts/ifcfg-eth3 ... -05:51:46,190 NOTICE NetworkManager: ifcfg-rh: read connection 'System eth3' -05:51:46,190 NOTICE NetworkManager: ifcfg-rh: parsing /etc/sysconfig/network-scripts/ifcfg-eth2 ... -05:51:46,190 NOTICE NetworkManager: ifcfg-rh: read connection 'System eth2' -05:51:46,190 NOTICE NetworkManager: ifcfg-rh: parsing /etc/sysconfig/network-scripts/ifcfg-eth1 ... -05:51:46,191 NOTICE NetworkManager: ifcfg-rh: read connection 'System eth1' -05:51:46,191 NOTICE NetworkManager: ifcfg-rh: parsing /etc/sysconfig/network-scripts/ifcfg-eth0 ... -05:51:46,192 NOTICE NetworkManager: ifcfg-rh: read connection 'System eth0' -05:51:46,192 WARNING NetworkManager: Can not read directory '/etc/NetworkManager/system-connections': Error opening directory '/etc/NetworkManager/system-connections': No such file or directory -05:51:46,194 INFO NetworkManager: WiFi enabled by radio killswitch; enabled by state file -05:51:46,194 INFO NetworkManager: WWAN enabled by radio killswitch; enabled by state file -05:51:46,194 INFO NetworkManager: WiMAX enabled by radio killswitch; enabled by state file -05:51:46,194 INFO NetworkManager: Networking is enabled by state file -05:51:46,212 INFO kernel:802.1Q VLAN Support v1.8 Ben Greear -05:51:46,212 INFO kernel:All bugs added by David S. Miller -05:51:46,217 INFO kernel:e1000: eth0 NIC Link is Up 1000 Mbps Full Duplex, Flow Control: None -05:51:46,218 INFO NetworkManager: (eth0): carrier is OFF -05:51:46,218 INFO NetworkManager: (eth0): new Ethernet device (driver: 'e1000' ifindex: 2) -05:51:46,218 INFO NetworkManager: (eth0): exported as /org/freedesktop/NetworkManager/Devices/0 -05:51:46,218 INFO NetworkManager: (eth0): now managed -05:51:46,218 INFO NetworkManager: (eth0): device state change: 1 -> 2 (reason 2) -05:51:46,218 INFO NetworkManager: (eth0): bringing up device. -05:51:46,221 INFO kernel:8021q: adding VLAN 0 to HW filter on device eth0 -05:51:46,222 INFO NetworkManager: (eth0): carrier now ON (device state 2) -05:51:46,222 INFO NetworkManager: (eth0): preparing device. -05:51:46,222 INFO NetworkManager: (eth0): deactivating device (reason: 2). -05:51:46,223 INFO NetworkManager: (eth1): carrier is OFF -05:51:46,224 INFO NetworkManager: (eth1): new Ethernet device (driver: 'e1000' ifindex: 3) -05:51:46,224 INFO NetworkManager: (eth1): exported as /org/freedesktop/NetworkManager/Devices/1 -05:51:46,224 INFO NetworkManager: (eth1): now managed -05:51:46,224 INFO NetworkManager: (eth1): device state change: 1 -> 2 (reason 2) -05:51:46,224 INFO NetworkManager: (eth1): bringing up device. -05:51:46,229 INFO kernel:e1000: eth1 NIC Link is Up 1000 Mbps Full Duplex, Flow Control: None -05:51:46,233 INFO kernel:8021q: adding VLAN 0 to HW filter on device eth1 -05:51:46,233 INFO NetworkManager: (eth1): carrier now ON (device state 2) -05:51:46,234 INFO NetworkManager: (eth1): preparing device. -05:51:46,234 INFO NetworkManager: (eth1): deactivating device (reason: 2). -05:51:46,235 INFO NetworkManager: (eth2): carrier is OFF -05:51:46,235 INFO NetworkManager: (eth2): new Ethernet device (driver: 'e1000' ifindex: 4) -05:51:46,235 INFO NetworkManager: (eth2): exported as /org/freedesktop/NetworkManager/Devices/2 -05:51:46,235 INFO NetworkManager: (eth2): now managed -05:51:46,235 INFO NetworkManager: (eth2): device state change: 1 -> 2 (reason 2) -05:51:46,235 INFO NetworkManager: (eth2): bringing up device. -05:51:46,240 INFO kernel:e1000: eth2 NIC Link is Up 1000 Mbps Full Duplex, Flow Control: None -05:51:46,244 INFO kernel:8021q: adding VLAN 0 to HW filter on device eth2 -05:51:46,245 INFO NetworkManager: (eth2): carrier now ON (device state 2) -05:51:46,245 INFO NetworkManager: (eth2): preparing device. -05:51:46,245 INFO NetworkManager: (eth2): deactivating device (reason: 2). -05:51:46,246 INFO NetworkManager: (eth3): carrier is OFF -05:51:46,247 INFO NetworkManager: (eth3): new Ethernet device (driver: 'e1000' ifindex: 5) -05:51:46,247 INFO NetworkManager: (eth3): exported as /org/freedesktop/NetworkManager/Devices/3 -05:51:46,247 INFO NetworkManager: (eth3): now managed -05:51:46,247 INFO NetworkManager: (eth3): device state change: 1 -> 2 (reason 2) -05:51:46,247 INFO NetworkManager: (eth3): bringing up device. -05:51:46,251 INFO kernel:e1000: eth3 NIC Link is Up 1000 Mbps Full Duplex, Flow Control: None -05:51:46,255 INFO kernel:8021q: adding VLAN 0 to HW filter on device eth3 -05:51:46,256 INFO NetworkManager: (eth3): carrier now ON (device state 2) -05:51:46,256 INFO NetworkManager: (eth3): preparing device. -05:51:46,256 INFO NetworkManager: (eth3): deactivating device (reason: 2). -05:51:46,258 INFO NetworkManager: (eth0): carrier now OFF (device state 2) -05:51:46,258 INFO NetworkManager: (eth0): carrier now ON (device state 2) -05:51:46,258 WARNING NetworkManager: (nm-device.c:4447):nm_device_queue_state: runtime check failed: (priv->queued_state.id == 0) -05:51:46,258 INFO NetworkManager: (eth1): carrier now OFF (device state 2) -05:51:46,259 INFO NetworkManager: (eth1): carrier now ON (device state 2) -05:51:46,259 WARNING NetworkManager: (nm-device.c:4447):nm_device_queue_state: runtime check failed: (priv->queued_state.id == 0) -05:51:46,259 INFO NetworkManager: (eth2): carrier now OFF (device state 2) -05:51:46,259 INFO NetworkManager: (eth2): carrier now ON (device state 2) -05:51:46,259 WARNING NetworkManager: (nm-device.c:4447):nm_device_queue_state: runtime check failed: (priv->queued_state.id == 0) -05:51:46,259 INFO NetworkManager: (eth3): carrier now OFF (device state 2) -05:51:46,259 INFO NetworkManager: (eth3): carrier now ON (device state 2) -05:51:46,259 WARNING NetworkManager: (nm-device.c:4447):nm_device_queue_state: runtime check failed: (priv->queued_state.id == 0) -05:51:46,260 INFO NetworkManager: Trying to start the supplicant... -05:51:46,261 INFO NetworkManager: (eth0): device state change: 2 -> 3 (reason 40) -05:51:46,261 INFO NetworkManager: (eth1): device state change: 2 -> 3 (reason 40) -05:51:46,261 INFO NetworkManager: (eth2): device state change: 2 -> 3 (reason 40) -05:51:46,262 INFO NetworkManager: (eth3): device state change: 2 -> 3 (reason 40) -05:51:46,268 INFO NetworkManager: wpa_supplicant started -05:51:47,181 WARNING NetworkManager: error requesting auth for org.freedesktop.NetworkManager.enable-disable-network: (26) Remote Exception invoking org.freedesktop.PolicyKit1.Authority.CheckAuthorization() on /org/freedesktop/PolicyKit1/Authority at name org.freedesktop.PolicyKit1: org.freedesktop.DBus.Error.Spawn.ExecFailed: Cannot launch daemon, file not found or permissions invalid -05:51:47,182 WARNING NetworkManager: error requesting auth for org.freedesktop.NetworkManager.sleep-wake: (26) Remote Exception invoking org.freedesktop.PolicyKit1.Authority.CheckAuthorization() on /org/freedesktop/PolicyKit1/Authority at name org.freedesktop.PolicyKit1: org.freedesktop.DBus.Error.Spawn.ExecFailed: Cannot launch daemon, file not found or permissions invalid -05:51:47,182 WARNING NetworkManager: error requesting auth for org.freedesktop.NetworkManager.enable-disable-wifi: (26) Remote Exception invoking org.freedesktop.PolicyKit1.Authority.CheckAuthorization() on /org/freedesktop/PolicyKit1/Authority at name org.freedesktop.PolicyKit1: org.freedesktop.DBus.Error.Spawn.ExecFailed: Cannot launch daemon, file not found or permissions invalid -05:51:47,182 WARNING NetworkManager: error requesting auth for org.freedesktop.NetworkManager.enable-disable-wwan: (26) Remote Exception invoking org.freedesktop.PolicyKit1.Authority.CheckAuthorization() on /org/freedesktop/PolicyKit1/Authority at name org.freedesktop.PolicyKit1: org.freedesktop.DBus.Error.Spawn.ExecFailed: Cannot launch daemon, file not found or permissions invalid -05:51:47,182 WARNING NetworkManager: error requesting auth for org.freedesktop.NetworkManager.use-user-connections: (26) Remote Exception invoking org.freedesktop.PolicyKit1.Authority.CheckAuthorization() on /org/freedesktop/PolicyKit1/Authority at name org.freedesktop.PolicyKit1: org.freedesktop.DBus.Error.Spawn.ExecFailed: Cannot launch daemon, file not found or permissions invalid -05:51:47,182 WARNING NetworkManager: error requesting auth for org.freedesktop.NetworkManager.network-control: (26) Remote Exception invoking org.freedesktop.PolicyKit1.Authority.CheckAuthorization() on /org/freedesktop/PolicyKit1/Authority at name org.freedesktop.PolicyKit1: org.freedesktop.DBus.Error.Spawn.ExecFailed: Cannot launch daemon, file not found or permissions invalid -05:51:47,182 WARNING NetworkManager: error requesting auth for org.freedesktop.network-manager-settings.system.wifi.share.open: (26) Remote Exception invoking org.freedesktop.PolicyKit1.Authority.CheckAuthorization() on /org/freedesktop/PolicyKit1/Authority at name org.freedesktop.PolicyKit1: org.freedesktop.DBus.Error.Spawn.ExecFailed: Cannot launch daemon, file not found or permissions invalid -05:51:47,183 WARNING NetworkManager: error requesting auth for org.freedesktop.network-manager-settings.system.wifi.share.protected: (26) Remote Exception invoking org.freedesktop.PolicyKit1.Authority.CheckAuthorization() on /org/freedesktop/PolicyKit1/Authority at name org.freedesktop.PolicyKit1: org.freedesktop.DBus.Error.Spawn.ExecFailed: Cannot launch daemon, file not found or permissions invalid -05:51:47,191 WARNING NetworkManager: error requesting auth for org.freedesktop.NetworkManager.enable-disable-network: (26) Remote Exception invoking org.freedesktop.PolicyKit1.Authority.CheckAuthorization() on /org/freedesktop/PolicyKit1/Authority at name org.freedesktop.PolicyKit1: org.freedesktop.DBus.Error.Spawn.ExecFailed: Cannot launch daemon, file not found or permissions invalid -05:51:47,191 WARNING NetworkManager: error requesting auth for org.freedesktop.NetworkManager.sleep-wake: (26) Remote Exception invoking org.freedesktop.PolicyKit1.Authority.CheckAuthorization() on /org/freedesktop/PolicyKit1/Authority at name org.freedesktop.PolicyKit1: org.freedesktop.DBus.Error.Spawn.ExecFailed: Cannot launch daemon, file not found or permissions invalid -05:51:47,191 WARNING NetworkManager: error requesting auth for org.freedesktop.NetworkManager.enable-disable-wifi: (26) Remote Exception invoking org.freedesktop.PolicyKit1.Authority.CheckAuthorization() on /org/freedesktop/PolicyKit1/Authority at name org.freedesktop.PolicyKit1: org.freedesktop.DBus.Error.Spawn.ExecFailed: Cannot launch daemon, file not found or permissions invalid -05:51:47,191 WARNING NetworkManager: error requesting auth for org.freedesktop.NetworkManager.enable-disable-wwan: (26) Remote Exception invoking org.freedesktop.PolicyKit1.Authority.CheckAuthorization() on /org/freedesktop/PolicyKit1/Authority at name org.freedesktop.PolicyKit1: org.freedesktop.DBus.Error.Spawn.ExecFailed: Cannot launch daemon, file not found or permissions invalid -05:51:47,191 WARNING NetworkManager: error requesting auth for org.freedesktop.NetworkManager.use-user-connections: (26) Remote Exception invoking org.freedesktop.PolicyKit1.Authority.CheckAuthorization() on /org/freedesktop/PolicyKit1/Authority at name org.freedesktop.PolicyKit1: org.freedesktop.DBus.Error.Spawn.ExecFailed: Cannot launch daemon, file not found or permissions invalid -05:51:47,191 WARNING NetworkManager: error requesting auth for org.freedesktop.NetworkManager.network-control: (26) Remote Exception invoking org.freedesktop.PolicyKit1.Authority.CheckAuthorization() on /org/freedesktop/PolicyKit1/Authority at name org.freedesktop.PolicyKit1: org.freedesktop.DBus.Error.Spawn.ExecFailed: Cannot launch daemon, file not found or permissions invalid -05:51:47,192 WARNING NetworkManager: error requesting auth for org.freedesktop.network-manager-settings.system.wifi.share.open: (26) Remote Exception invoking org.freedesktop.PolicyKit1.Authority.CheckAuthorization() on /org/freedesktop/PolicyKit1/Authority at name org.freedesktop.PolicyKit1: org.freedesktop.DBus.Error.Spawn.ExecFailed: Cannot launch daemon, file not found or permissions invalid -05:51:47,192 WARNING NetworkManager: error requesting auth for org.freedesktop.network-manager-settings.system.wifi.share.protected: (26) Remote Exception invoking org.freedesktop.PolicyKit1.Authority.CheckAuthorization() on /org/freedesktop/PolicyKit1/Authority at name org.freedesktop.PolicyKit1: org.freedesktop.DBus.Error.Spawn.ExecFailed: Cannot launch daemon, file not found or permissions invalid -05:51:47,200 WARNING NetworkManager: error requesting auth for org.freedesktop.NetworkManager.enable-disable-network: (26) Remote Exception invoking org.freedesktop.PolicyKit1.Authority.CheckAuthorization() on /org/freedesktop/PolicyKit1/Authority at name org.freedesktop.PolicyKit1: org.freedesktop.DBus.Error.Spawn.ExecFailed: Cannot launch daemon, file not found or permissions invalid -05:51:47,200 WARNING NetworkManager: error requesting auth for org.freedesktop.NetworkManager.sleep-wake: (26) Remote Exception invoking org.freedesktop.PolicyKit1.Authority.CheckAuthorization() on /org/freedesktop/PolicyKit1/Authority at name org.freedesktop.PolicyKit1: org.freedesktop.DBus.Error.Spawn.ExecFailed: Cannot launch daemon, file not found or permissions invalid -05:51:47,200 WARNING NetworkManager: error requesting auth for org.freedesktop.NetworkManager.enable-disable-wifi: (26) Remote Exception invoking org.freedesktop.PolicyKit1.Authority.CheckAuthorization() on /org/freedesktop/PolicyKit1/Authority at name org.freedesktop.PolicyKit1: org.freedesktop.DBus.Error.Spawn.ExecFailed: Cannot launch daemon, file not found or permissions invalid -05:51:47,200 WARNING NetworkManager: error requesting auth for org.freedesktop.NetworkManager.enable-disable-wwan: (26) Remote Exception invoking org.freedesktop.PolicyKit1.Authority.CheckAuthorization() on /org/freedesktop/PolicyKit1/Authority at name org.freedesktop.PolicyKit1: org.freedesktop.DBus.Error.Spawn.ExecFailed: Cannot launch daemon, file not found or permissions invalid -05:51:47,200 WARNING NetworkManager: error requesting auth for org.freedesktop.NetworkManager.use-user-connections: (26) Remote Exception invoking org.freedesktop.PolicyKit1.Authority.CheckAuthorization() on /org/freedesktop/PolicyKit1/Authority at name org.freedesktop.PolicyKit1: org.freedesktop.DBus.Error.Spawn.ExecFailed: Cannot launch daemon, file not found or permissions invalid -05:51:47,201 WARNING NetworkManager: error requesting auth for org.freedesktop.NetworkManager.network-control: (26) Remote Exception invoking org.freedesktop.PolicyKit1.Authority.CheckAuthorization() on /org/freedesktop/PolicyKit1/Authority at name org.freedesktop.PolicyKit1: org.freedesktop.DBus.Error.Spawn.ExecFailed: Cannot launch daemon, file not found or permissions invalid -05:51:47,201 WARNING NetworkManager: error requesting auth for org.freedesktop.network-manager-settings.system.wifi.share.open: (26) Remote Exception invoking org.freedesktop.PolicyKit1.Authority.CheckAuthorization() on /org/freedesktop/PolicyKit1/Authority at name org.freedesktop.PolicyKit1: org.freedesktop.DBus.Error.Spawn.ExecFailed: Cannot launch daemon, file not found or permissions invalid -05:51:47,201 WARNING NetworkManager: error requesting auth for org.freedesktop.network-manager-settings.system.wifi.share.protected: (26) Remote Exception invoking org.freedesktop.PolicyKit1.Authority.CheckAuthorization() on /org/freedesktop/PolicyKit1/Authority at name org.freedesktop.PolicyKit1: org.freedesktop.DBus.Error.Spawn.ExecFailed: Cannot launch daemon, file not found or permissions invalid -05:51:47,212 WARNING NetworkManager: error requesting auth for org.freedesktop.NetworkManager.enable-disable-network: (26) Remote Exception invoking org.freedesktop.PolicyKit1.Authority.CheckAuthorization() on /org/freedesktop/PolicyKit1/Authority at name org.freedesktop.PolicyKit1: org.freedesktop.DBus.Error.Spawn.ExecFailed: Cannot launch daemon, file not found or permissions invalid -05:51:47,212 WARNING NetworkManager: error requesting auth for org.freedesktop.NetworkManager.sleep-wake: (26) Remote Exception invoking org.freedesktop.PolicyKit1.Authority.CheckAuthorization() on /org/freedesktop/PolicyKit1/Authority at name org.freedesktop.PolicyKit1: org.freedesktop.DBus.Error.Spawn.ExecFailed: Cannot launch daemon, file not found or permissions invalid -05:51:47,212 WARNING NetworkManager: error requesting auth for org.freedesktop.NetworkManager.enable-disable-wifi: (26) Remote Exception invoking org.freedesktop.PolicyKit1.Authority.CheckAuthorization() on /org/freedesktop/PolicyKit1/Authority at name org.freedesktop.PolicyKit1: org.freedesktop.DBus.Error.Spawn.ExecFailed: Cannot launch daemon, file not found or permissions invalid -05:51:47,212 WARNING NetworkManager: error requesting auth for org.freedesktop.NetworkManager.enable-disable-wwan: (26) Remote Exception invoking org.freedesktop.PolicyKit1.Authority.CheckAuthorization() on /org/freedesktop/PolicyKit1/Authority at name org.freedesktop.PolicyKit1: org.freedesktop.DBus.Error.Spawn.ExecFailed: Cannot launch daemon, file not found or permissions invalid -05:51:47,212 WARNING NetworkManager: error requesting auth for org.freedesktop.NetworkManager.use-user-connections: (26) Remote Exception invoking org.freedesktop.PolicyKit1.Authority.CheckAuthorization() on /org/freedesktop/PolicyKit1/Authority at name org.freedesktop.PolicyKit1: org.freedesktop.DBus.Error.Spawn.ExecFailed: Cannot launch daemon, file not found or permissions invalid -05:51:47,212 WARNING NetworkManager: error requesting auth for org.freedesktop.NetworkManager.network-control: (26) Remote Exception invoking org.freedesktop.PolicyKit1.Authority.CheckAuthorization() on /org/freedesktop/PolicyKit1/Authority at name org.freedesktop.PolicyKit1: org.freedesktop.DBus.Error.Spawn.ExecFailed: Cannot launch daemon, file not found or permissions invalid -05:51:47,213 WARNING NetworkManager: error requesting auth for org.freedesktop.network-manager-settings.system.wifi.share.open: (26) Remote Exception invoking org.freedesktop.PolicyKit1.Authority.CheckAuthorization() on /org/freedesktop/PolicyKit1/Authority at name org.freedesktop.PolicyKit1: org.freedesktop.DBus.Error.Spawn.ExecFailed: Cannot launch daemon, file not found or permissions invalid -05:51:47,213 WARNING NetworkManager: error requesting auth for org.freedesktop.network-manager-settings.system.wifi.share.protected: (26) Remote Exception invoking org.freedesktop.PolicyKit1.Authority.CheckAuthorization() on /org/freedesktop/PolicyKit1/Authority at name org.freedesktop.PolicyKit1: org.freedesktop.DBus.Error.Spawn.ExecFailed: Cannot launch daemon, file not found or permissions invalid -05:51:48,220 NOTICE NetworkManager: ifcfg-rh: updating /etc/sysconfig/network-scripts/ifcfg-eth0 -05:51:48,223 INFO NetworkManager: Auto-activating connection 'System eth0'. -05:51:48,224 INFO NetworkManager: Activation (eth0) starting connection 'System eth0' -05:51:48,224 INFO NetworkManager: (eth0): device state change: 3 -> 4 (reason 0) -05:51:48,224 INFO NetworkManager: Activation (eth0) Stage 1 of 5 (Device Prepare) scheduled... -05:51:48,224 INFO NetworkManager: Activation (eth0) Stage 1 of 5 (Device Prepare) started... -05:51:48,224 INFO NetworkManager: Activation (eth0) Stage 2 of 5 (Device Configure) scheduled... -05:51:48,225 INFO NetworkManager: Activation (eth0) Stage 1 of 5 (Device Prepare) complete. -05:51:48,225 INFO NetworkManager: Activation (eth0) Stage 2 of 5 (Device Configure) starting... -05:51:48,225 INFO NetworkManager: (eth0): device state change: 4 -> 5 (reason 0) -05:51:48,225 INFO NetworkManager: Activation (eth0) Stage 2 of 5 (Device Configure) successful. -05:51:48,225 INFO NetworkManager: Activation (eth0) Stage 3 of 5 (IP Configure Start) scheduled. -05:51:48,225 INFO NetworkManager: Activation (eth0) Stage 2 of 5 (Device Configure) complete. -05:51:48,225 INFO NetworkManager: Activation (eth0) Stage 3 of 5 (IP Configure Start) started... -05:51:48,225 INFO NetworkManager: (eth0): device state change: 5 -> 7 (reason 0) -05:51:48,225 INFO NetworkManager: Activation (eth0) Beginning DHCPv4 transaction -05:51:48,228 INFO dhclient: Internet Systems Consortium DHCP Client 4.1.1-P1 -05:51:48,228 INFO NetworkManager: dhclient started with pid 670 -05:51:48,228 INFO NetworkManager: Activation (eth0) DHCPv4 will time out in 45 seconds -05:51:48,228 INFO NetworkManager: Activation (eth0) Stage 3 of 5 (IP Configure Start) complete. -05:51:48,228 INFO dhclient: Copyright 2004-2010 Internet Systems Consortium. -05:51:48,228 INFO dhclient: All rights reserved. -05:51:48,228 INFO dhclient: For info, please visit https://www.isc.org/software/dhcp/ -05:51:48,229 INFO dhclient: -05:51:48,232 INFO NetworkManager: (eth0): DHCPv4 state changed nbi -> preinit -05:51:48,238 INFO dhclient: Listening on LPF/eth0/00:0c:29:21:89:af -05:51:48,238 INFO dhclient: Sending on LPF/eth0/00:0c:29:21:89:af -05:51:48,238 INFO dhclient: Sending on Socket/fallback -05:51:48,238 INFO dhclient: DHCPDISCOVER on eth0 to 255.255.255.255 port 67 interval 7 (xid=0x4cbfa09c) -05:51:48,266 INFO dhclient: DHCPOFFER from 10.145.88.211 -05:51:48,267 INFO dhclient: DHCPREQUEST on eth0 to 255.255.255.255 port 67 (xid=0x4cbfa09c) -05:51:50,624 INFO dhclient: DHCPACK from 10.145.88.211 (xid=0x4cbfa09c) -05:51:50,627 INFO NetworkManager: (eth0): DHCPv4 state changed preinit -> bound -05:51:50,627 INFO NetworkManager: Activation (eth0) Stage 4 of 5 (IP4 Configure Get) scheduled... -05:51:50,627 INFO NetworkManager: Activation (eth0) Stage 4 of 5 (IP4 Configure Get) started... -05:51:50,627 INFO NetworkManager: address 10.145.88.106 -05:51:50,627 INFO NetworkManager: prefix 23 (255.255.254.0) -05:51:50,627 INFO NetworkManager: gateway 10.145.88.1 -05:51:50,627 INFO NetworkManager: hostname 'server1' -05:51:50,627 INFO NetworkManager: nameserver '10.145.88.211' -05:51:50,628 INFO NetworkManager: Activation (eth0) Stage 5 of 5 (IP Configure Commit) scheduled... -05:51:50,628 INFO NetworkManager: Activation (eth0) Stage 4 of 5 (IP4 Configure Get) complete. -05:51:50,628 INFO NetworkManager: Activation (eth0) Stage 5 of 5 (IP Configure Commit) started... -05:51:50,628 INFO dhclient: bound to 10.145.88.106 -- renewal in 10408 seconds. -05:51:51,629 INFO NetworkManager: (eth0): device state change: 7 -> 8 (reason 0) -05:51:51,629 INFO NetworkManager: Policy set 'System eth0' (eth0) as default for IPv4 routing and DNS. -05:51:51,630 INFO NetworkManager: Setting system hostname to 'server1' (from DHCPv4) -05:51:51,630 INFO NetworkManager: Activation (eth0) successful, device activated. -05:51:51,631 INFO NetworkManager: Activation (eth0) Stage 5 of 5 (IP Configure Commit) complete. -05:52:07,660 WARNING NetworkManager: error requesting auth for org.freedesktop.NetworkManager.enable-disable-network: (26) Remote Exception invoking org.freedesktop.PolicyKit1.Authority.CheckAuthorization() on /org/freedesktop/PolicyKit1/Authority at name org.freedesktop.PolicyKit1: org.freedesktop.DBus.Error.Spawn.ExecFailed: Cannot launch daemon, file not found or permissions invalid -05:52:07,660 WARNING NetworkManager: error requesting auth for org.freedesktop.NetworkManager.sleep-wake: (26) Remote Exception invoking org.freedesktop.PolicyKit1.Authority.CheckAuthorization() on /org/freedesktop/PolicyKit1/Authority at name org.freedesktop.PolicyKit1: org.freedesktop.DBus.Error.Spawn.ExecFailed: Cannot launch daemon, file not found or permissions invalid -05:52:07,660 WARNING NetworkManager: error requesting auth for org.freedesktop.NetworkManager.enable-disable-wifi: (26) Remote Exception invoking org.freedesktop.PolicyKit1.Authority.CheckAuthorization() on /org/freedesktop/PolicyKit1/Authority at name org.freedesktop.PolicyKit1: org.freedesktop.DBus.Error.Spawn.ExecFailed: Cannot launch daemon, file not found or permissions invalid -05:52:07,660 WARNING NetworkManager: error requesting auth for org.freedesktop.NetworkManager.enable-disable-wwan: (26) Remote Exception invoking org.freedesktop.PolicyKit1.Authority.CheckAuthorization() on /org/freedesktop/PolicyKit1/Authority at name org.freedesktop.PolicyKit1: org.freedesktop.DBus.Error.Spawn.ExecFailed: Cannot launch daemon, file not found or permissions invalid -05:52:07,660 WARNING NetworkManager: error requesting auth for org.freedesktop.NetworkManager.use-user-connections: (26) Remote Exception invoking org.freedesktop.PolicyKit1.Authority.CheckAuthorization() on /org/freedesktop/PolicyKit1/Authority at name org.freedesktop.PolicyKit1: org.freedesktop.DBus.Error.Spawn.ExecFailed: Cannot launch daemon, file not found or permissions invalid -05:52:07,660 WARNING NetworkManager: error requesting auth for org.freedesktop.NetworkManager.network-control: (26) Remote Exception invoking org.freedesktop.PolicyKit1.Authority.CheckAuthorization() on /org/freedesktop/PolicyKit1/Authority at name org.freedesktop.PolicyKit1: org.freedesktop.DBus.Error.Spawn.ExecFailed: Cannot launch daemon, file not found or permissions invalid -05:52:07,660 WARNING NetworkManager: error requesting auth for org.freedesktop.network-manager-settings.system.wifi.share.open: (26) Remote Exception invoking org.freedesktop.PolicyKit1.Authority.CheckAuthorization() on /org/freedesktop/PolicyKit1/Authority at name org.freedesktop.PolicyKit1: org.freedesktop.DBus.Error.Spawn.ExecFailed: Cannot launch daemon, file not found or permissions invalid -05:52:07,660 WARNING NetworkManager: error requesting auth for org.freedesktop.network-manager-settings.system.wifi.share.protected: (26) Remote Exception invoking org.freedesktop.PolicyKit1.Authority.CheckAuthorization() on /org/freedesktop/PolicyKit1/Authority at name org.freedesktop.PolicyKit1: org.freedesktop.DBus.Error.Spawn.ExecFailed: Cannot launch daemon, file not found or permissions invalid -05:52:47,362 NOTICE dbus-daemon: [system] Reloaded configuration -05:52:47,364 NOTICE dbus-daemon: [system] Reloaded configuration -05:52:47,512 DEBUG kernel:SELinux: 2048 avtab hash slots, 277800 rules. -05:52:47,588 DEBUG kernel:SELinux: 2048 avtab hash slots, 277800 rules. -05:52:48,083 DEBUG kernel:SELinux: 9 users, 12 roles, 3917 types, 217 bools, 1 sens, 1024 cats -05:52:48,083 DEBUG kernel:SELinux: 81 classes, 277800 rules -05:52:48,088 DEBUG kernel:SELinux: Completing initialization. -05:52:48,088 DEBUG kernel:SELinux: Setting up existing superblocks. -05:52:48,088 DEBUG kernel:SELinux: initialized (dev loop0, type squashfs), not configured for labeling -05:52:48,088 DEBUG kernel:SELinux: initialized (dev tmpfs, type tmpfs), uses transition SIDs -05:52:48,088 DEBUG kernel:SELinux: initialized (dev tmpfs, type tmpfs), uses transition SIDs -05:52:48,089 DEBUG kernel:SELinux: initialized (dev selinuxfs, type selinuxfs), uses genfs_contexts -05:52:48,089 DEBUG kernel:SELinux: initialized (dev mqueue, type mqueue), uses transition SIDs -05:52:48,089 DEBUG kernel:SELinux: initialized (dev hugetlbfs, type hugetlbfs), uses transition SIDs -05:52:48,089 DEBUG kernel:SELinux: initialized (dev devpts, type devpts), uses transition SIDs -05:52:48,089 DEBUG kernel:SELinux: initialized (dev inotifyfs, type inotifyfs), uses genfs_contexts -05:52:48,089 DEBUG kernel:SELinux: initialized (dev anon_inodefs, type anon_inodefs), uses genfs_contexts -05:52:48,089 DEBUG kernel:SELinux: initialized (dev pipefs, type pipefs), uses task SIDs -05:52:48,089 DEBUG kernel:SELinux: initialized (dev debugfs, type debugfs), uses genfs_contexts -05:52:48,090 DEBUG kernel:SELinux: initialized (dev sockfs, type sockfs), uses task SIDs -05:52:48,090 DEBUG kernel:SELinux: initialized (dev devtmpfs, type devtmpfs), uses transition SIDs -05:52:48,090 DEBUG kernel:SELinux: initialized (dev tmpfs, type tmpfs), uses transition SIDs -05:52:48,090 DEBUG kernel:SELinux: initialized (dev proc, type proc), uses genfs_contexts -05:52:48,090 DEBUG kernel:SELinux: initialized (dev bdev, type bdev), uses genfs_contexts -05:52:48,090 DEBUG kernel:SELinux: initialized (dev rootfs, type rootfs), uses genfs_contexts -05:52:48,090 DEBUG kernel:SELinux: initialized (dev sysfs, type sysfs), uses genfs_contexts -05:52:48,116 NOTICE kernel:type=1403 audit(1021096368.114:2): policy loaded auid=4294967295 ses=4294967295 -05:52:48,165 INFO kernel:md: raid0 personality registered for level 0 -05:52:48,172 INFO kernel:md: raid1 personality registered for level 1 -05:52:48,176 INFO kernel:async_tx: api initialized (async) -05:52:48,188 INFO kernel:xor: automatically using best checksumming function: generic_sse -05:52:48,191 INFO kernel: generic_sse: 9112.000 MB/sec -05:52:48,191 INFO kernel:xor: using function: generic_sse (9112.000 MB/sec) -05:52:48,212 WARNING kernel:raid6: sse2x1 5777 MB/s -05:52:48,229 WARNING kernel:raid6: sse2x2 7031 MB/s -05:52:48,247 WARNING kernel:raid6: sse2x4 7550 MB/s -05:52:48,247 WARNING kernel:raid6: using algorithm sse2x4 (7550 MB/s) -05:52:48,247 WARNING kernel:raid6: using ssse3x2 recovery algorithm -05:52:48,261 INFO kernel:md: raid6 personality registered for level 6 -05:52:48,261 INFO kernel:md: raid5 personality registered for level 5 -05:52:48,261 INFO kernel:md: raid4 personality registered for level 4 -05:52:48,273 INFO kernel:md: raid10 personality registered for level 10 -05:52:48,277 INFO kernel:md: linear personality registered for level -1 -05:52:48,290 INFO kernel:device-mapper: uevent: version 1.0.3 -05:52:48,291 INFO kernel:device-mapper: ioctl: 4.24.6-ioctl (2013-01-15) initialised: dm-devel@redhat.com -05:52:48,324 INFO kernel:device-mapper: multipath: version 1.5.0 loaded -05:52:48,328 INFO kernel:device-mapper: multipath round-robin: version 1.0.0 loaded -05:53:05,608 WARNING kernel:hpet1: lost 5 rtc interrupts -05:53:05,608 WARNING kernel:hpet1: lost 1 rtc interrupts -05:53:21,197 NOTICE kernel:sd 2:0:0:0: [sda] Cache data unavailable -05:53:21,197 ERR kernel:sd 2:0:0:0: [sda] Assuming drive cache: write through -05:53:21,238 INFO kernel: sda: sda1 sda2 -05:53:25,106 NOTICE kernel:sd 2:0:0:0: [sda] Cache data unavailable -05:53:25,106 ERR kernel:sd 2:0:0:0: [sda] Assuming drive cache: write through -05:53:25,117 INFO kernel: sda: sda1 -05:53:31,920 NOTICE kernel:sd 2:0:0:0: [sda] Cache data unavailable -05:53:31,920 ERR kernel:sd 2:0:0:0: [sda] Assuming drive cache: write through -05:53:31,962 INFO kernel: sda: -05:53:33,120 NOTICE kernel:sd 2:0:0:0: [sda] Cache data unavailable -05:53:33,120 ERR kernel:sd 2:0:0:0: [sda] Assuming drive cache: write through -05:53:33,120 INFO kernel: sda: sda1 -05:53:50,037 NOTICE kernel:sd 2:0:0:0: [sda] Cache data unavailable -05:53:50,037 ERR kernel:sd 2:0:0:0: [sda] Assuming drive cache: write through -05:53:50,037 INFO kernel: sda: sda1 sda2 -05:53:55,178 NOTICE kernel:sd 2:0:0:0: [sda] Cache data unavailable -05:53:55,178 ERR kernel:sd 2:0:0:0: [sda] Assuming drive cache: write through -05:53:55,211 INFO kernel: sda: sda1 sda2 sda3 -05:54:41,918 INFO kernel:Adding 3354616k swap on /dev/sda2. Priority:-1 extents:1 across:3354616k -05:54:42,441 INFO kernel:kjournald starting. Commit interval 5 seconds -05:54:42,489 INFO kernel:EXT3-fs (dm-0): using internal journal -05:54:42,489 INFO kernel:EXT3-fs (dm-0): mounted filesystem with ordered data mode -05:54:42,489 DEBUG kernel:SELinux: initialized (dev dm-0, type ext3), uses xattr -05:54:42,913 INFO kernel:kjournald starting. Commit interval 5 seconds -05:54:42,977 INFO kernel:EXT3-fs (sda1): using internal journal -05:54:42,977 INFO kernel:EXT3-fs (sda1): mounted filesystem with ordered data mode -05:54:42,977 DEBUG kernel:SELinux: initialized (dev sda1, type ext3), uses xattr -05:54:43,167 DEBUG kernel:SELinux: initialized (dev tmpfs, type tmpfs), uses transition SIDs -05:54:43,255 INFO kernel:kjournald starting. Commit interval 5 seconds -05:54:43,268 INFO kernel:EXT3-fs (dm-1): using internal journal -05:54:43,268 INFO kernel:EXT3-fs (dm-1): mounted filesystem with ordered data mode -05:54:43,268 DEBUG kernel:SELinux: initialized (dev dm-1, type ext3), uses xattr -05:54:43,657 INFO kernel:kjournald starting. Commit interval 5 seconds -05:54:43,719 INFO kernel:EXT3-fs (dm-2): using internal journal -05:54:43,719 INFO kernel:EXT3-fs (dm-2): mounted filesystem with ordered data mode -05:54:43,719 DEBUG kernel:SELinux: initialized (dev dm-2, type ext3), uses xattr -05:54:43,913 INFO kernel:kjournald starting. Commit interval 5 seconds -05:54:43,949 INFO kernel:EXT3-fs (dm-3): using internal journal -05:54:43,949 INFO kernel:EXT3-fs (dm-3): mounted filesystem with ordered data mode -05:54:43,949 DEBUG kernel:SELinux: initialized (dev dm-3, type ext3), uses xattr -05:55:08,095 DEBUG kernel:SELinux: initialized (dev usbfs, type usbfs), uses genfs_contexts -05:55:08,106 NOTICE NetworkManager: ifcfg-rh: updating /etc/sysconfig/network-scripts/ifcfg-eth3 -05:55:08,107 NOTICE NetworkManager: ifcfg-rh: updating /etc/sysconfig/network-scripts/ifcfg-eth2 -05:55:08,109 NOTICE NetworkManager: ifcfg-rh: updating /etc/sysconfig/network-scripts/ifcfg-eth1 -05:55:09,125 NOTICE NetworkManager: ifcfg-rh: updating /etc/sysconfig/network-scripts/ifcfg-eth3 -05:55:09,126 NOTICE NetworkManager: ifcfg-rh: updating /etc/sysconfig/network-scripts/ifcfg-eth2 -05:55:09,127 NOTICE NetworkManager: ifcfg-rh: updating /etc/sysconfig/network-scripts/ifcfg-eth1 -05:55:09,128 NOTICE NetworkManager: ifcfg-rh: updating /etc/sysconfig/network-scripts/ifcfg-eth0 -05:59:16,883 ERR kernel:INFO: task flush-253:0:1525 blocked for more than 120 seconds. -05:59:16,883 ERR kernel: Not tainted 2.6.32-431.el6.x86_64 #1 -05:59:16,883 ERR kernel:"echo 0 > /proc/sys/kernel/hung_task_timeout_secs" disables this message. -05:59:16,883 INFO kernel:flush-253:0 D 0000000000000000 0 1525 2 0x00000080 -05:59:16,883 WARNING kernel: ffff8800592df6e0 0000000000000046 0000000000000000 ffff880079226080 -05:59:16,883 WARNING kernel: 0000000000000001 ffff880064ed8e40 ffff880079226080 ffff880079269dd0 -05:59:16,883 WARNING kernel: ffff880079226638 ffff8800592dffd8 000000000000fbc8 ffff880079226638 -05:59:16,883 WARNING kernel:Call Trace: -05:59:16,883 WARNING kernel: [] io_schedule+0x73/0xc0 -05:59:16,883 WARNING kernel: [] get_request_wait+0x108/0x1d0 -05:59:16,883 WARNING kernel: [] ? autoremove_wake_function+0x0/0x40 -05:59:16,883 WARNING kernel: [] ? elv_merge+0x17e/0x1c0 -05:59:16,883 WARNING kernel: [] blk_queue_bio+0x99/0x620 -05:59:16,883 WARNING kernel: [] generic_make_request+0x240/0x5a0 -05:59:16,883 WARNING kernel: [] ? mempool_alloc_slab+0x15/0x20 -05:59:16,883 WARNING kernel: [] submit_bio+0x70/0x120 -05:59:16,883 WARNING kernel: [] submit_bh+0x11d/0x1f0 -05:59:16,883 WARNING kernel: [] __block_write_full_page+0x1c8/0x330 -05:59:16,883 WARNING kernel: [] ? end_buffer_async_write+0x0/0x190 -05:59:16,883 WARNING kernel: [] ? blkdev_get_block+0x0/0x20 -05:59:16,883 WARNING kernel: [] ? blkdev_get_block+0x0/0x20 -05:59:16,883 WARNING kernel: [] block_write_full_page_endio+0xe0/0x120 -05:59:16,883 WARNING kernel: [] ? find_get_pages_tag+0x40/0x130 -05:59:16,883 WARNING kernel: [] block_write_full_page+0x15/0x20 -05:59:16,883 WARNING kernel: [] blkdev_writepage+0x18/0x20 -05:59:16,883 WARNING kernel: [] __writepage+0x17/0x40 -05:59:16,883 WARNING kernel: [] write_cache_pages+0x1fd/0x4c0 -05:59:16,883 WARNING kernel: [] ? __writepage+0x0/0x40 -05:59:16,883 WARNING kernel: [] generic_writepages+0x24/0x30 -05:59:16,883 WARNING kernel: [] do_writepages+0x21/0x40 -05:59:16,883 WARNING kernel: [] writeback_single_inode+0xdd/0x290 -05:59:16,883 WARNING kernel: [] writeback_sb_inodes+0xbd/0x170 -05:59:16,883 WARNING kernel: [] writeback_inodes_wb+0xab/0x1b0 -05:59:16,883 WARNING kernel: [] wb_writeback+0x2f3/0x410 -05:59:16,883 WARNING kernel: [] ? thread_return+0x4e/0x76e -05:59:16,883 WARNING kernel: [] ? del_timer_sync+0x22/0x30 -05:59:16,883 WARNING kernel: [] wb_do_writeback+0x1a5/0x240 -05:59:16,883 WARNING kernel: [] bdi_writeback_task+0x63/0x1b0 -05:59:16,883 WARNING kernel: [] ? bit_waitqueue+0x17/0xd0 -05:59:16,883 WARNING kernel: [] ? bdi_start_fn+0x0/0x100 -05:59:16,883 WARNING kernel: [] bdi_start_fn+0x86/0x100 -05:59:16,883 WARNING kernel: [] ? bdi_start_fn+0x0/0x100 -05:59:16,883 WARNING kernel: [] kthread+0x96/0xa0 -05:59:16,883 WARNING kernel: [] child_rip+0xa/0x20 -05:59:16,883 WARNING kernel: [] ? kthread+0x0/0xa0 -05:59:16,883 WARNING kernel: [] ? child_rip+0x0/0x20 -05:59:16,883 ERR kernel:INFO: task flush-253:3:1622 blocked for more than 120 seconds. -05:59:16,883 ERR kernel: Not tainted 2.6.32-431.el6.x86_64 #1 -05:59:16,883 ERR kernel:"echo 0 > /proc/sys/kernel/hung_task_timeout_secs" disables this message. -05:59:16,883 INFO kernel:flush-253:3 D 0000000000000001 0 1622 2 0x00000080 -05:59:16,883 WARNING kernel: ffff88005a5636e0 0000000000000046 0000000000000000 ffff8800790e6ae0 -05:59:16,883 WARNING kernel: 0000000000000001 ffff8800615bc080 ffff8800790e6ae0 ffff880079269dd0 -05:59:16,883 WARNING kernel: ffff8800790e7098 ffff88005a563fd8 000000000000fbc8 ffff8800790e7098 -05:59:16,883 WARNING kernel:Call Trace: -05:59:16,883 WARNING kernel: [] io_schedule+0x73/0xc0 -05:59:16,883 WARNING kernel: [] get_request_wait+0x108/0x1d0 -05:59:16,883 WARNING kernel: [] ? autoremove_wake_function+0x0/0x40 -05:59:16,883 WARNING kernel: [] ? elv_merge+0x17e/0x1c0 -05:59:16,883 WARNING kernel: [] blk_queue_bio+0x99/0x620 -05:59:16,883 WARNING kernel: [] ? read_tsc+0x9/0x20 -05:59:16,883 WARNING kernel: [] generic_make_request+0x240/0x5a0 -05:59:16,883 WARNING kernel: [] ? mempool_alloc_slab+0x15/0x20 -05:59:16,883 WARNING kernel: [] ? __dec_zone_page_state+0x2e/0x30 -05:59:16,883 WARNING kernel: [] submit_bio+0x70/0x120 -05:59:16,883 WARNING kernel: [] submit_bh+0x11d/0x1f0 -05:59:16,883 WARNING kernel: [] __block_write_full_page+0x1c8/0x330 -05:59:16,883 WARNING kernel: [] ? end_buffer_async_write+0x0/0x190 -05:59:16,883 WARNING kernel: [] ? blkdev_get_block+0x0/0x20 -05:59:16,883 WARNING kernel: [] ? blkdev_get_block+0x0/0x20 -05:59:16,883 WARNING kernel: [] block_write_full_page_endio+0xe0/0x120 -05:59:16,883 WARNING kernel: [] ? find_get_pages_tag+0x40/0x130 -05:59:16,883 WARNING kernel: [] block_write_full_page+0x15/0x20 -05:59:16,883 WARNING kernel: [] blkdev_writepage+0x18/0x20 -05:59:16,883 WARNING kernel: [] __writepage+0x17/0x40 -05:59:16,883 WARNING kernel: [] write_cache_pages+0x1fd/0x4c0 -05:59:16,883 WARNING kernel: [] ? __writepage+0x0/0x40 -05:59:16,883 WARNING kernel: [] generic_writepages+0x24/0x30 -05:59:16,883 WARNING kernel: [] do_writepages+0x21/0x40 -05:59:16,883 WARNING kernel: [] writeback_single_inode+0xdd/0x290 -05:59:16,883 WARNING kernel: [] writeback_sb_inodes+0xbd/0x170 -05:59:16,883 WARNING kernel: [] writeback_inodes_wb+0xab/0x1b0 -05:59:16,883 WARNING kernel: [] wb_writeback+0x2f3/0x410 -05:59:16,883 WARNING kernel: [] ? thread_return+0x4e/0x76e -05:59:16,883 WARNING kernel: [] ? del_timer_sync+0x22/0x30 -05:59:16,883 WARNING kernel: [] wb_do_writeback+0x1a5/0x240 -05:59:16,883 WARNING kernel: [] bdi_writeback_task+0x63/0x1b0 -05:59:16,883 WARNING kernel: [] ? bit_waitqueue+0x17/0xd0 -05:59:16,883 WARNING kernel: [] ? bdi_start_fn+0x0/0x100 -05:59:16,883 WARNING kernel: [] bdi_start_fn+0x86/0x100 -05:59:16,883 WARNING kernel: [] ? bdi_start_fn+0x0/0x100 -05:59:16,883 WARNING kernel: [] kthread+0x96/0xa0 -05:59:16,883 WARNING kernel: [] child_rip+0xa/0x20 -05:59:16,883 WARNING kernel: [] ? kthread+0x0/0xa0 -05:59:16,883 WARNING kernel: [] ? child_rip+0x0/0x20 -06:11:26,657 DEBUG kernel:SELinux: 2048 avtab hash slots, 277800 rules. -06:11:26,705 DEBUG kernel:SELinux: 2048 avtab hash slots, 277800 rules. -06:11:27,220 DEBUG kernel:SELinux: 9 users, 12 roles, 3917 types, 217 bools, 1 sens, 1024 cats -06:11:27,220 DEBUG kernel:SELinux: 81 classes, 277800 rules diff --git a/compass/tests/actions/update_progress/data/test2/anamon/checkpoint_1/server2.1/sys.log.template b/compass/tests/actions/update_progress/data/test2/anamon/checkpoint_1/server2.1/sys.log.template deleted file mode 100644 index 1fbb5602..00000000 --- a/compass/tests/actions/update_progress/data/test2/anamon/checkpoint_1/server2.1/sys.log.template +++ /dev/null @@ -1,1628 +0,0 @@ -05:50:20,517 INFO kernel:imklog 5.8.10, log source = /proc/kmsg started. -05:50:20,517 INFO rsyslogd: [origin software="rsyslogd" swVersion="5.8.10" x-pid="68" x-info="http://www.rsyslog.com"] start -05:50:20,517 INFO kernel:Initializing cgroup subsys cpuset -05:50:20,517 INFO kernel:Initializing cgroup subsys cpu -05:50:20,517 NOTICE kernel:Linux version 2.6.32-431.el6.x86_64 (mockbuild@c6b8.bsys.dev.centos.org) (gcc version 4.4.7 20120313 (Red Hat 4.4.7-4) (GCC) ) #1 SMP Fri Nov 22 03:15:09 UTC 2013 -05:50:20,517 INFO kernel:Command line: initrd=/images/CentOS-6.5-x86_64/initrd.img ksdevice=bootif lang= kssendmac text ks=http://10.145.88.211/cblr/svc/op/ks/system/server2.1 BOOT_IMAGE=/images/CentOS-6.5-x86_64/vmlinuz BOOTIF=01-00-0c-29-5c-6a-b8 -05:50:20,517 INFO kernel:KERNEL supported cpus: -05:50:20,517 INFO kernel: Intel GenuineIntel -05:50:20,517 INFO kernel: AMD AuthenticAMD -05:50:20,517 INFO kernel: Centaur CentaurHauls -05:50:20,517 INFO kernel:Disabled fast string operations -05:50:20,517 INFO kernel:BIOS-provided physical RAM map: -05:50:20,517 INFO kernel: BIOS-e820: 0000000000000000 - 000000000009f400 (usable) -05:50:20,517 INFO kernel: BIOS-e820: 000000000009f400 - 00000000000a0000 (reserved) -05:50:20,517 INFO kernel: BIOS-e820: 00000000000ca000 - 00000000000cc000 (reserved) -05:50:20,517 INFO kernel: BIOS-e820: 00000000000dc000 - 0000000000100000 (reserved) -05:50:20,517 INFO kernel: BIOS-e820: 0000000000100000 - 000000007fef0000 (usable) -05:50:20,517 INFO kernel: BIOS-e820: 000000007fef0000 - 000000007feff000 (ACPI data) -05:50:20,517 INFO kernel: BIOS-e820: 000000007feff000 - 000000007ff00000 (ACPI NVS) -05:50:20,517 INFO kernel: BIOS-e820: 000000007ff00000 - 0000000080000000 (usable) -05:50:20,517 INFO kernel: BIOS-e820: 00000000e0000000 - 00000000f0000000 (reserved) -05:50:20,517 INFO kernel: BIOS-e820: 00000000fec00000 - 00000000fec10000 (reserved) -05:50:20,517 INFO kernel: BIOS-e820: 00000000fee00000 - 00000000fee01000 (reserved) -05:50:20,517 INFO kernel: BIOS-e820: 00000000fffe0000 - 0000000100000000 (reserved) -05:50:20,517 INFO kernel:DMI present. -05:50:20,517 WARNING kernel:SMBIOS version 2.4 @ 0xF68F0 -05:50:20,517 DEBUG kernel:DMI: VMware, Inc. VMware Virtual Platform/440BX Desktop Reference Platform, BIOS 6.00 01/07/2011 -05:50:20,517 NOTICE kernel:Phoenix BIOS detected: BIOS may corrupt low RAM, working around it. -05:50:20,517 DEBUG kernel:e820 update range: 0000000000000000 - 0000000000010000 (usable) ==> (reserved) -05:50:20,517 INFO kernel:Hypervisor detected: VMware -05:50:20,517 DEBUG kernel:e820 update range: 0000000000000000 - 0000000000001000 (usable) ==> (reserved) -05:50:20,517 DEBUG kernel:e820 remove range: 00000000000a0000 - 0000000000100000 (usable) -05:50:20,517 INFO kernel:last_pfn = 0x80000 max_arch_pfn = 0x400000000 -05:50:20,517 DEBUG kernel:MTRR default type: uncachable -05:50:20,517 DEBUG kernel:MTRR fixed ranges enabled: -05:50:20,517 DEBUG kernel: 00000-9FFFF write-back -05:50:20,517 DEBUG kernel: A0000-BFFFF uncachable -05:50:20,517 DEBUG kernel: C0000-CFFFF write-protect -05:50:20,517 DEBUG kernel: D0000-EFFFF uncachable -05:50:20,517 DEBUG kernel: F0000-FFFFF write-protect -05:50:20,517 DEBUG kernel:MTRR variable ranges enabled: -05:50:20,517 DEBUG kernel: 0 base 0000000000 mask FF80000000 write-back -05:50:20,517 DEBUG kernel: 1 disabled -05:50:20,517 DEBUG kernel: 2 disabled -05:50:20,517 DEBUG kernel: 3 disabled -05:50:20,517 DEBUG kernel: 4 disabled -05:50:20,517 DEBUG kernel: 5 disabled -05:50:20,517 DEBUG kernel: 6 disabled -05:50:20,517 DEBUG kernel: 7 disabled -05:50:20,517 INFO kernel:x86 PAT enabled: cpu 0, old 0x0, new 0x7010600070106 -05:50:20,517 DEBUG kernel:initial memory mapped : 0 - 20000000 -05:50:20,517 INFO kernel:init_memory_mapping: 0000000000000000-0000000080000000 -05:50:20,517 DEBUG kernel: 0000000000 - 0080000000 page 2M -05:50:20,517 DEBUG kernel:kernel direct mapping tables up to 80000000 @ 10000-13000 -05:50:20,517 INFO kernel:RAMDISK: 7def9000 - 7fecf4ff -05:50:20,517 WARNING kernel:ACPI: RSDP 00000000000f6940 00024 (v02 PTLTD ) -05:50:20,517 WARNING kernel:ACPI: XSDT 000000007fef0333 00054 (v01 INTEL 440BX 06040000 VMW 01324272) -05:50:20,517 WARNING kernel:ACPI: FACP 000000007fefee98 000F4 (v04 INTEL 440BX 06040000 PTL 000F4240) -05:50:20,517 WARNING kernel:ACPI: DSDT 000000007fef055d 0E93B (v01 PTLTD Custom 06040000 MSFT 03000001) -05:50:20,517 WARNING kernel:ACPI: FACS 000000007fefffc0 00040 -05:50:20,517 WARNING kernel:ACPI: BOOT 000000007fef0535 00028 (v01 PTLTD $SBFTBL$ 06040000 LTP 00000001) -05:50:20,517 WARNING kernel:ACPI: APIC 000000007fef04d7 0005E (v01 PTLTD ? APIC 06040000 LTP 00000000) -05:50:20,517 WARNING kernel:ACPI: MCFG 000000007fef049b 0003C (v01 PTLTD $PCITBL$ 06040000 LTP 00000001) -05:50:20,517 WARNING kernel:ACPI: SRAT 000000007fef03fb 000A0 (v02 VMWARE MEMPLUG 06040000 VMW 00000001) -05:50:20,517 WARNING kernel:ACPI: HPET 000000007fef03c3 00038 (v01 VMWARE VMW HPET 06040000 WMV 00000001) -05:50:20,517 DEBUG kernel:ACPI: Local APIC address 0xfee00000 -05:50:20,517 INFO kernel:Setting APIC routing to flat. -05:50:20,517 INFO kernel:SRAT: PXM 0 -> APIC 0 -> Node 0 -05:50:20,517 INFO kernel:SRAT: PXM 0 -> APIC 1 -> Node 0 -05:50:20,517 INFO kernel:SRAT: Node 0 PXM 0 0-a0000 -05:50:20,517 INFO kernel:SRAT: Node 0 PXM 0 100000-80000000 -05:50:20,517 DEBUG kernel:NUMA: Allocated memnodemap from 11000 - 12040 -05:50:20,517 DEBUG kernel:NUMA: Using 20 for the hash shift. -05:50:20,517 INFO kernel:Bootmem setup node 0 0000000000000000-0000000080000000 -05:50:20,517 INFO kernel: NODE_DATA [0000000000012040 - 000000000004603f] -05:50:20,517 INFO kernel: bootmap [0000000000047000 - 0000000000056fff] pages 10 -05:50:20,517 INFO kernel:(8 early reservations) ==> bootmem [0000000000 - 0080000000] -05:50:20,517 INFO kernel: #0 [0000000000 - 0000001000] BIOS data page ==> [0000000000 - 0000001000] -05:50:20,517 INFO kernel: #1 [0000006000 - 0000008000] TRAMPOLINE ==> [0000006000 - 0000008000] -05:50:20,517 INFO kernel: #2 [0001000000 - 000201faa4] TEXT DATA BSS ==> [0001000000 - 000201faa4] -05:50:20,517 INFO kernel: #3 [007def9000 - 007fecf4ff] RAMDISK ==> [007def9000 - 007fecf4ff] -05:50:20,517 INFO kernel: #4 [000009f400 - 0000100000] BIOS reserved ==> [000009f400 - 0000100000] -05:50:20,517 INFO kernel: #5 [0002020000 - 00020201f0] BRK ==> [0002020000 - 00020201f0] -05:50:20,517 INFO kernel: #6 [0000010000 - 0000011000] PGTABLE ==> [0000010000 - 0000011000] -05:50:20,517 INFO kernel: #7 [0000011000 - 0000012040] MEMNODEMAP ==> [0000011000 - 0000012040] -05:50:20,517 INFO kernel:found SMP MP-table at [ffff8800000f69b0] f69b0 -05:50:20,517 DEBUG kernel: [ffffea0000000000-ffffea0001bfffff] PMD -> [ffff880002600000-ffff8800041fffff] on node 0 -05:50:20,517 WARNING kernel:Zone PFN ranges: -05:50:20,517 WARNING kernel: DMA 0x00000010 -> 0x00001000 -05:50:20,517 WARNING kernel: DMA32 0x00001000 -> 0x00100000 -05:50:20,517 WARNING kernel: Normal 0x00100000 -> 0x00100000 -05:50:20,517 WARNING kernel:Movable zone start PFN for each node -05:50:20,517 WARNING kernel:early_node_map[3] active PFN ranges -05:50:20,517 WARNING kernel: 0: 0x00000010 -> 0x0000009f -05:50:20,517 WARNING kernel: 0: 0x00000100 -> 0x0007fef0 -05:50:20,520 WARNING kernel: 0: 0x0007ff00 -> 0x00080000 -05:50:20,520 DEBUG kernel:On node 0 totalpages: 524159 -05:50:20,520 DEBUG kernel: DMA zone: 56 pages used for memmap -05:50:20,520 DEBUG kernel: DMA zone: 101 pages reserved -05:50:20,520 DEBUG kernel: DMA zone: 3826 pages, LIFO batch:0 -05:50:20,520 DEBUG kernel: DMA32 zone: 7112 pages used for memmap -05:50:20,520 DEBUG kernel: DMA32 zone: 513064 pages, LIFO batch:31 -05:50:20,520 INFO kernel:ACPI: PM-Timer IO Port: 0x1008 -05:50:20,520 DEBUG kernel:ACPI: Local APIC address 0xfee00000 -05:50:20,520 INFO kernel:Setting APIC routing to flat. -05:50:20,520 INFO kernel:ACPI: LAPIC (acpi_id[0x00] lapic_id[0x00] enabled) -05:50:20,520 INFO kernel:ACPI: LAPIC (acpi_id[0x01] lapic_id[0x01] enabled) -05:50:20,520 INFO kernel:ACPI: LAPIC_NMI (acpi_id[0x00] high edge lint[0x1]) -05:50:20,520 INFO kernel:ACPI: LAPIC_NMI (acpi_id[0x01] high edge lint[0x1]) -05:50:20,520 INFO kernel:ACPI: IOAPIC (id[0x02] address[0xfec00000] gsi_base[0]) -05:50:20,521 INFO kernel:IOAPIC[0]: apic_id 2, version 17, address 0xfec00000, GSI 0-23 -05:50:20,521 INFO kernel:ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 high edge) -05:50:20,521 DEBUG kernel:ACPI: IRQ0 used by override. -05:50:20,521 DEBUG kernel:ACPI: IRQ2 used by override. -05:50:20,521 DEBUG kernel:ACPI: IRQ9 used by override. -05:50:20,521 INFO kernel:Using ACPI (MADT) for SMP configuration information -05:50:20,521 INFO kernel:ACPI: HPET id: 0x8086af01 base: 0xfed00000 -05:50:20,521 INFO kernel:SMP: Allowing 2 CPUs, 0 hotplug CPUs -05:50:20,521 DEBUG kernel:nr_irqs_gsi: 24 -05:50:20,521 INFO kernel:PM: Registered nosave memory: 000000000009f000 - 00000000000a0000 -05:50:20,521 INFO kernel:PM: Registered nosave memory: 00000000000a0000 - 00000000000ca000 -05:50:20,521 INFO kernel:PM: Registered nosave memory: 00000000000ca000 - 00000000000cc000 -05:50:20,521 INFO kernel:PM: Registered nosave memory: 00000000000cc000 - 00000000000dc000 -05:50:20,521 INFO kernel:PM: Registered nosave memory: 00000000000dc000 - 0000000000100000 -05:50:20,521 INFO kernel:PM: Registered nosave memory: 000000007fef0000 - 000000007feff000 -05:50:20,521 INFO kernel:PM: Registered nosave memory: 000000007feff000 - 000000007ff00000 -05:50:20,521 INFO kernel:Allocating PCI resources starting at 80000000 (gap: 80000000:60000000) -05:50:20,521 INFO kernel:Booting paravirtualized kernel on bare hardware -05:50:20,521 INFO kernel:NR_CPUS:4096 nr_cpumask_bits:2 nr_cpu_ids:2 nr_node_ids:1 -05:50:20,521 INFO kernel:PERCPU: Embedded 31 pages/cpu @ffff880002200000 s94872 r8192 d23912 u1048576 -05:50:20,521 INFO kernel:pcpu-alloc: s94872 r8192 d23912 u1048576 alloc=1*2097152 -05:50:20,521 INFO kernel:pcpu-alloc: [0] 0 1 -05:50:20,521 WARNING kernel:Built 1 zonelists in Node order, mobility grouping on. Total pages: 516890 -05:50:20,521 WARNING kernel:Policy zone: DMA32 -05:50:20,521 NOTICE kernel:Kernel command line: initrd=/images/CentOS-6.5-x86_64/initrd.img ksdevice=bootif lang= kssendmac text ks=http://10.145.88.211/cblr/svc/op/ks/system/server2.1 BOOT_IMAGE=/images/CentOS-6.5-x86_64/vmlinuz BOOTIF=01-00-0c-29-5c-6a-b8 -05:50:20,521 INFO kernel:PID hash table entries: 4096 (order: 3, 32768 bytes) -05:50:20,521 INFO kernel:Checking aperture... -05:50:20,521 INFO kernel:No AGP bridge found -05:50:20,521 INFO kernel:Memory: 2018096k/2097152k available (5325k kernel code, 516k absent, 78540k reserved, 7013k data, 1276k init) -05:50:20,521 INFO kernel:Hierarchical RCU implementation. -05:50:20,521 INFO kernel:NR_IRQS:33024 nr_irqs:424 -05:50:20,521 INFO kernel:Extended CMOS year: 2000 -05:50:20,521 WARNING kernel:Console: colour VGA+ 80x25 -05:50:20,521 INFO kernel:console [tty0] enabled -05:50:20,521 INFO kernel:allocated 8388608 bytes of page_cgroup -05:50:20,521 INFO kernel:please try 'cgroup_disable=memory' option if you don't want memory cgroups -05:50:20,521 DEBUG kernel:hpet clockevent registered -05:50:20,521 INFO kernel:TSC freq read from hypervisor : 2400.085 MHz -05:50:20,521 WARNING kernel:Detected 2400.085 MHz processor. -05:50:20,521 INFO kernel:Calibrating delay loop (skipped) preset value.. 4800.17 BogoMIPS (lpj=2400085) -05:50:20,521 INFO kernel:pid_max: default: 32768 minimum: 301 -05:50:20,521 INFO kernel:Security Framework initialized -05:50:20,521 INFO kernel:SELinux: Initializing. -05:50:20,521 DEBUG kernel:SELinux: Starting in permissive mode -05:50:20,521 INFO kernel:Dentry cache hash table entries: 262144 (order: 9, 2097152 bytes) -05:50:20,521 INFO kernel:Inode-cache hash table entries: 131072 (order: 8, 1048576 bytes) -05:50:20,521 WARNING kernel:Mount-cache hash table entries: 256 -05:50:20,521 INFO kernel:Initializing cgroup subsys ns -05:50:20,521 INFO kernel:Initializing cgroup subsys cpuacct -05:50:20,521 INFO kernel:Initializing cgroup subsys memory -05:50:20,521 INFO kernel:Initializing cgroup subsys devices -05:50:20,521 INFO kernel:Initializing cgroup subsys freezer -05:50:20,521 INFO kernel:Initializing cgroup subsys net_cls -05:50:20,521 INFO kernel:Initializing cgroup subsys blkio -05:50:20,521 INFO kernel:Initializing cgroup subsys perf_event -05:50:20,521 INFO kernel:Initializing cgroup subsys net_prio -05:50:20,521 INFO kernel:Disabled fast string operations -05:50:20,521 INFO kernel:CPU: Physical Processor ID: 0 -05:50:20,521 INFO kernel:mce: CPU supports 0 MCE banks -05:50:20,521 INFO kernel:alternatives: switching to unfair spinlock -05:50:20,521 INFO kernel:ACPI: Core revision 20090903 -05:50:20,521 INFO kernel:ftrace: converting mcount calls to 0f 1f 44 00 00 -05:50:20,521 INFO kernel:ftrace: allocating 21769 entries in 86 pages -05:50:20,521 INFO kernel:APIC routing finalized to flat. -05:50:20,521 INFO kernel:..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1 -05:50:20,521 INFO kernel:CPU0: Intel(R) Xeon(R) CPU E5620 @ 2.40GHz stepping 02 -05:50:20,521 INFO kernel:Performance Events: 16-deep LBR, Westmere events, Intel PMU driver. -05:50:20,521 WARNING kernel:CPUID marked event: 'cpu cycles' unavailable -05:50:20,521 WARNING kernel:CPUID marked event: 'instructions' unavailable -05:50:20,521 WARNING kernel:CPUID marked event: 'bus cycles' unavailable -05:50:20,521 WARNING kernel:CPUID marked event: 'cache references' unavailable -05:50:20,521 WARNING kernel:CPUID marked event: 'cache misses' unavailable -05:50:20,521 WARNING kernel:CPUID marked event: 'branch instructions' unavailable -05:50:20,521 WARNING kernel:CPUID marked event: 'branch misses' unavailable -05:50:20,521 INFO kernel:... version: 3 -05:50:20,521 INFO kernel:... bit width: 48 -05:50:20,521 INFO kernel:... generic registers: 4 -05:50:20,521 INFO kernel:... value mask: 0000ffffffffffff -05:50:20,521 INFO kernel:... max period: 000000007fffffff -05:50:20,521 INFO kernel:... fixed-purpose events: 3 -05:50:20,521 INFO kernel:... event mask: 000000070000000f -05:50:20,521 WARNING kernel:NMI watchdog disabled (cpu0): hardware events not enabled -05:50:20,521 INFO kernel:Booting Node 0, Processors #1 Ok. -05:50:20,521 INFO kernel:Disabled fast string operations -05:50:20,521 INFO kernel:mce: CPU supports 0 MCE banks -05:50:20,521 INFO kernel:Skipped synchronization checks as TSC is reliable. -05:50:20,521 INFO kernel:Brought up 2 CPUs -05:50:20,521 INFO kernel:Total of 2 processors activated (9600.34 BogoMIPS). -05:50:20,521 INFO kernel:x86 PAT enabled: cpu 0, old 0x0, new 0x7010600070106 -05:50:20,521 INFO kernel:x86 PAT enabled: cpu 1, old 0x0, new 0x7010600070106 -05:50:20,521 DEBUG kernel:sizeof(vma)=200 bytes -05:50:20,521 DEBUG kernel:sizeof(page)=56 bytes -05:50:20,521 DEBUG kernel:sizeof(inode)=592 bytes -05:50:20,521 DEBUG kernel:sizeof(dentry)=192 bytes -05:50:20,521 DEBUG kernel:sizeof(ext3inode)=800 bytes -05:50:20,521 DEBUG kernel:sizeof(buffer_head)=104 bytes -05:50:20,521 DEBUG kernel:sizeof(skbuff)=232 bytes -05:50:20,521 DEBUG kernel:sizeof(task_struct)=2648 bytes -05:50:20,521 INFO kernel:devtmpfs: initialized -05:50:20,521 INFO kernel:PM: Registering ACPI NVS region at 7feff000 (4096 bytes) -05:50:20,521 INFO kernel:regulator: core version 0.5 -05:50:20,521 INFO kernel:NET: Registered protocol family 16 -05:50:20,521 INFO kernel:ACPI: bus type pci registered -05:50:20,521 NOTICE kernel:PCI: MCFG configuration 0: base e0000000 segment 0 buses 0 - 255 -05:50:20,521 NOTICE kernel:PCI: MCFG area at e0000000 reserved in E820 -05:50:20,521 INFO kernel:PCI: Using MMCONFIG at e0000000 - efffffff -05:50:20,521 INFO kernel:PCI: Using configuration type 1 for base access -05:50:20,521 WARNING kernel:bio: create slab at 0 -05:50:20,521 DEBUG kernel:ACPI: EC: Look up EC in DSDT -05:50:20,521 NOTICE kernel:ACPI: BIOS _OSI(Linux) query ignored -05:50:20,521 INFO kernel:ACPI: Interpreter enabled -05:50:20,521 INFO kernel:ACPI: (supports S0 S1 S4 S5) -05:50:20,521 INFO kernel:ACPI: Using IOAPIC for interrupt routing -05:50:20,521 INFO kernel:ACPI: No dock devices found. -05:50:20,521 INFO kernel:PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug -05:50:20,521 INFO kernel:ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-ff]) -05:50:20,521 INFO kernel:pci_root PNP0A03:00: host bridge window [mem 0x000a0000-0x000bffff] -05:50:20,521 INFO kernel:pci_root PNP0A03:00: host bridge window [mem 0x000d0000-0x000d3fff] -05:50:20,521 INFO kernel:pci_root PNP0A03:00: host bridge window [mem 0x000d4000-0x000d7fff] -05:50:20,521 INFO kernel:pci_root PNP0A03:00: host bridge window [mem 0x000d8000-0x000dbfff] -05:50:20,521 INFO kernel:pci_root PNP0A03:00: host bridge window [mem 0x80000000-0xfebfffff] -05:50:20,521 INFO kernel:pci_root PNP0A03:00: host bridge window [io 0x0000-0x0cf7] -05:50:20,521 INFO kernel:pci_root PNP0A03:00: host bridge window [io 0x0d00-0xfeff] -05:50:20,521 INFO kernel:PCI host bridge to bus 0000:00 -05:50:20,521 INFO kernel:pci_bus 0000:00: root bus resource [mem 0x000a0000-0x000bffff] -05:50:20,521 INFO kernel:pci_bus 0000:00: root bus resource [mem 0x000d0000-0x000d3fff] -05:50:20,521 INFO kernel:pci_bus 0000:00: root bus resource [mem 0x000d4000-0x000d7fff] -05:50:20,521 INFO kernel:pci_bus 0000:00: root bus resource [mem 0x000d8000-0x000dbfff] -05:50:20,521 INFO kernel:pci_bus 0000:00: root bus resource [mem 0x80000000-0xfebfffff] -05:50:20,521 INFO kernel:pci_bus 0000:00: root bus resource [io 0x0000-0x0cf7] -05:50:20,521 INFO kernel:pci_bus 0000:00: root bus resource [io 0x0d00-0xfeff] -05:50:20,521 DEBUG kernel:pci 0000:00:07.1: reg 20: [io 0x10c0-0x10cf] -05:50:20,521 INFO kernel:pci 0000:00:07.3: quirk: [io 0x1000-0x103f] claimed by PIIX4 ACPI -05:50:20,521 INFO kernel:pci 0000:00:07.3: quirk: [io 0x1040-0x104f] claimed by PIIX4 SMB -05:50:20,521 DEBUG kernel:pci 0000:00:07.7: reg 10: [io 0x1080-0x10bf] -05:50:20,521 DEBUG kernel:pci 0000:00:07.7: reg 14: [mem 0xd0000000-0xd0001fff 64bit] -05:50:20,521 DEBUG kernel:pci 0000:00:0f.0: reg 10: [io 0x10d0-0x10df] -05:50:20,521 DEBUG kernel:pci 0000:00:0f.0: reg 14: [mem 0xd8000000-0xdbffffff pref] -05:50:20,521 DEBUG kernel:pci 0000:00:0f.0: reg 18: [mem 0xd0800000-0xd0ffffff] -05:50:20,521 DEBUG kernel:pci 0000:00:0f.0: reg 30: [mem 0x00000000-0x00007fff pref] -05:50:20,521 DEBUG kernel:pci 0000:00:10.0: reg 10: [io 0x1400-0x14ff] -05:50:20,521 DEBUG kernel:pci 0000:00:10.0: reg 14: [mem 0xd0040000-0xd005ffff 64bit] -05:50:20,521 DEBUG kernel:pci 0000:00:10.0: reg 1c: [mem 0xd0020000-0xd003ffff 64bit] -05:50:20,521 DEBUG kernel:pci 0000:00:10.0: reg 30: [mem 0x00000000-0x00003fff pref] -05:50:20,521 INFO kernel:pci 0000:00:15.0: PME# supported from D0 D3hot D3cold -05:50:20,521 INFO kernel:pci 0000:00:15.0: PME# disabled -05:50:20,521 INFO kernel:pci 0000:00:15.1: PME# supported from D0 D3hot D3cold -05:50:20,521 INFO kernel:pci 0000:00:15.1: PME# disabled -05:50:20,521 INFO kernel:pci 0000:00:15.2: PME# supported from D0 D3hot D3cold -05:50:20,521 INFO kernel:pci 0000:00:15.2: PME# disabled -05:50:20,521 INFO kernel:pci 0000:00:15.3: PME# supported from D0 D3hot D3cold -05:50:20,521 INFO kernel:pci 0000:00:15.3: PME# disabled -05:50:20,521 INFO kernel:pci 0000:00:15.4: PME# supported from D0 D3hot D3cold -05:50:20,521 INFO kernel:pci 0000:00:15.4: PME# disabled -05:50:20,521 INFO kernel:pci 0000:00:15.5: PME# supported from D0 D3hot D3cold -05:50:20,521 INFO kernel:pci 0000:00:15.5: PME# disabled -05:50:20,521 INFO kernel:pci 0000:00:15.6: PME# supported from D0 D3hot D3cold -05:50:20,521 INFO kernel:pci 0000:00:15.6: PME# disabled -05:50:20,521 INFO kernel:pci 0000:00:15.7: PME# supported from D0 D3hot D3cold -05:50:20,521 INFO kernel:pci 0000:00:15.7: PME# disabled -05:50:20,521 INFO kernel:pci 0000:00:16.0: PME# supported from D0 D3hot D3cold -05:50:20,521 INFO kernel:pci 0000:00:16.0: PME# disabled -05:50:20,521 INFO kernel:pci 0000:00:16.1: PME# supported from D0 D3hot D3cold -05:50:20,521 INFO kernel:pci 0000:00:16.1: PME# disabled -05:50:20,521 INFO kernel:pci 0000:00:16.2: PME# supported from D0 D3hot D3cold -05:50:20,521 INFO kernel:pci 0000:00:16.2: PME# disabled -05:50:20,521 INFO kernel:pci 0000:00:16.3: PME# supported from D0 D3hot D3cold -05:50:20,521 INFO kernel:pci 0000:00:16.3: PME# disabled -05:50:20,521 INFO kernel:pci 0000:00:16.4: PME# supported from D0 D3hot D3cold -05:50:20,521 INFO kernel:pci 0000:00:16.4: PME# disabled -05:50:20,521 INFO kernel:pci 0000:00:16.5: PME# supported from D0 D3hot D3cold -05:50:20,521 INFO kernel:pci 0000:00:16.5: PME# disabled -05:50:20,521 INFO kernel:pci 0000:00:16.6: PME# supported from D0 D3hot D3cold -05:50:20,521 INFO kernel:pci 0000:00:16.6: PME# disabled -05:50:20,521 INFO kernel:pci 0000:00:16.7: PME# supported from D0 D3hot D3cold -05:50:20,521 INFO kernel:pci 0000:00:16.7: PME# disabled -05:50:20,521 INFO kernel:pci 0000:00:17.0: PME# supported from D0 D3hot D3cold -05:50:20,521 INFO kernel:pci 0000:00:17.0: PME# disabled -05:50:20,521 INFO kernel:pci 0000:00:17.1: PME# supported from D0 D3hot D3cold -05:50:20,521 INFO kernel:pci 0000:00:17.1: PME# disabled -05:50:20,521 INFO kernel:pci 0000:00:17.2: PME# supported from D0 D3hot D3cold -05:50:20,521 INFO kernel:pci 0000:00:17.2: PME# disabled -05:50:20,521 INFO kernel:pci 0000:00:17.3: PME# supported from D0 D3hot D3cold -05:50:20,521 INFO kernel:pci 0000:00:17.3: PME# disabled -05:50:20,521 INFO kernel:pci 0000:00:17.4: PME# supported from D0 D3hot D3cold -05:50:20,521 INFO kernel:pci 0000:00:17.4: PME# disabled -05:50:20,521 INFO kernel:pci 0000:00:17.5: PME# supported from D0 D3hot D3cold -05:50:20,521 INFO kernel:pci 0000:00:17.5: PME# disabled -05:50:20,521 INFO kernel:pci 0000:00:17.6: PME# supported from D0 D3hot D3cold -05:50:20,521 INFO kernel:pci 0000:00:17.6: PME# disabled -05:50:20,521 INFO kernel:pci 0000:00:17.7: PME# supported from D0 D3hot D3cold -05:50:20,521 INFO kernel:pci 0000:00:17.7: PME# disabled -05:50:20,521 INFO kernel:pci 0000:00:18.0: PME# supported from D0 D3hot D3cold -05:50:20,521 INFO kernel:pci 0000:00:18.0: PME# disabled -05:50:20,521 INFO kernel:pci 0000:00:18.1: PME# supported from D0 D3hot D3cold -05:50:20,521 INFO kernel:pci 0000:00:18.1: PME# disabled -05:50:20,521 INFO kernel:pci 0000:00:18.2: PME# supported from D0 D3hot D3cold -05:50:20,521 INFO kernel:pci 0000:00:18.2: PME# disabled -05:50:20,521 INFO kernel:pci 0000:00:18.3: PME# supported from D0 D3hot D3cold -05:50:20,521 INFO kernel:pci 0000:00:18.3: PME# disabled -05:50:20,521 INFO kernel:pci 0000:00:18.4: PME# supported from D0 D3hot D3cold -05:50:20,521 INFO kernel:pci 0000:00:18.4: PME# disabled -05:50:20,521 INFO kernel:pci 0000:00:18.5: PME# supported from D0 D3hot D3cold -05:50:20,521 INFO kernel:pci 0000:00:18.5: PME# disabled -05:50:20,521 INFO kernel:pci 0000:00:18.6: PME# supported from D0 D3hot D3cold -05:50:20,521 INFO kernel:pci 0000:00:18.6: PME# disabled -05:50:20,521 INFO kernel:pci 0000:00:18.7: PME# supported from D0 D3hot D3cold -05:50:20,521 INFO kernel:pci 0000:00:18.7: PME# disabled -05:50:20,521 INFO kernel:pci 0000:00:01.0: PCI bridge to [bus 01-01] -05:50:20,521 DEBUG kernel:pci 0000:00:01.0: bridge window [io 0xf000-0x0000] (disabled) -05:50:20,521 DEBUG kernel:pci 0000:00:01.0: bridge window [mem 0xfff00000-0x000fffff] (disabled) -05:50:20,521 DEBUG kernel:pci 0000:00:01.0: bridge window [mem 0xfff00000-0x000fffff pref] (disabled) -05:50:20,521 DEBUG kernel:pci 0000:02:00.0: reg 10: [mem 0xd1020000-0xd103ffff 64bit] -05:50:20,521 DEBUG kernel:pci 0000:02:00.0: reg 18: [mem 0xd1000000-0xd100ffff 64bit] -05:50:20,521 DEBUG kernel:pci 0000:02:00.0: reg 20: [io 0x2000-0x203f] -05:50:20,521 DEBUG kernel:pci 0000:02:00.0: reg 30: [mem 0x00000000-0x0000ffff pref] -05:50:20,521 INFO kernel:pci 0000:02:00.0: PME# supported from D0 D3hot D3cold -05:50:20,521 INFO kernel:pci 0000:02:00.0: PME# disabled -05:50:20,521 DEBUG kernel:pci 0000:02:01.0: reg 10: [mem 0xd1040000-0xd105ffff 64bit] -05:50:20,521 DEBUG kernel:pci 0000:02:01.0: reg 18: [mem 0xd1010000-0xd101ffff 64bit] -05:50:20,521 DEBUG kernel:pci 0000:02:01.0: reg 20: [io 0x2040-0x207f] -05:50:20,521 DEBUG kernel:pci 0000:02:01.0: reg 30: [mem 0x00000000-0x0000ffff pref] -05:50:20,521 INFO kernel:pci 0000:02:01.0: PME# supported from D0 D3hot D3cold -05:50:20,521 INFO kernel:pci 0000:02:01.0: PME# disabled -05:50:20,521 DEBUG kernel:pci 0000:02:02.0: reg 10: [mem 0xd1080000-0xd109ffff 64bit] -05:50:20,521 DEBUG kernel:pci 0000:02:02.0: reg 18: [mem 0xd1060000-0xd106ffff 64bit] -05:50:20,521 DEBUG kernel:pci 0000:02:02.0: reg 20: [io 0x2080-0x20bf] -05:50:20,521 DEBUG kernel:pci 0000:02:02.0: reg 30: [mem 0x00000000-0x0000ffff pref] -05:50:20,521 INFO kernel:pci 0000:02:02.0: PME# supported from D0 D3hot D3cold -05:50:20,521 INFO kernel:pci 0000:02:02.0: PME# disabled -05:50:20,521 DEBUG kernel:pci 0000:02:03.0: reg 10: [mem 0xd10a0000-0xd10bffff 64bit] -05:50:20,521 DEBUG kernel:pci 0000:02:03.0: reg 18: [mem 0xd1070000-0xd107ffff 64bit] -05:50:20,521 DEBUG kernel:pci 0000:02:03.0: reg 20: [io 0x20c0-0x20ff] -05:50:20,521 DEBUG kernel:pci 0000:02:03.0: reg 30: [mem 0x00000000-0x0000ffff pref] -05:50:20,521 INFO kernel:pci 0000:02:03.0: PME# supported from D0 D3hot D3cold -05:50:20,521 INFO kernel:pci 0000:02:03.0: PME# disabled -05:50:20,521 INFO kernel:pci 0000:00:11.0: PCI bridge to [bus 02-02] (subtractive decode) -05:50:20,521 DEBUG kernel:pci 0000:00:11.0: bridge window [io 0x2000-0x3fff] -05:50:20,521 DEBUG kernel:pci 0000:00:11.0: bridge window [mem 0xd1000000-0xd23fffff] -05:50:20,521 DEBUG kernel:pci 0000:00:11.0: bridge window [mem 0xdc400000-0xdc9fffff 64bit pref] -05:50:20,521 DEBUG kernel:pci 0000:00:11.0: bridge window [mem 0x000a0000-0x000bffff] (subtractive decode) -05:50:20,521 DEBUG kernel:pci 0000:00:11.0: bridge window [mem 0x000d0000-0x000d3fff] (subtractive decode) -05:50:20,521 DEBUG kernel:pci 0000:00:11.0: bridge window [mem 0x000d4000-0x000d7fff] (subtractive decode) -05:50:20,521 DEBUG kernel:pci 0000:00:11.0: bridge window [mem 0x000d8000-0x000dbfff] (subtractive decode) -05:50:20,521 DEBUG kernel:pci 0000:00:11.0: bridge window [mem 0x80000000-0xfebfffff] (subtractive decode) -05:50:20,521 DEBUG kernel:pci 0000:00:11.0: bridge window [io 0x0000-0x0cf7] (subtractive decode) -05:50:20,521 DEBUG kernel:pci 0000:00:11.0: bridge window [io 0x0d00-0xfeff] (subtractive decode) -05:50:20,521 INFO kernel:pci 0000:00:15.0: PCI bridge to [bus 03-03] -05:50:20,521 DEBUG kernel:pci 0000:00:15.0: bridge window [io 0x4000-0x4fff] -05:50:20,521 DEBUG kernel:pci 0000:00:15.0: bridge window [mem 0xd2400000-0xd24fffff] -05:50:20,521 DEBUG kernel:pci 0000:00:15.0: bridge window [mem 0xd4400000-0xd44fffff 64bit pref] -05:50:20,521 INFO kernel:pci 0000:00:15.1: PCI bridge to [bus 04-04] -05:50:20,521 DEBUG kernel:pci 0000:00:15.1: bridge window [io 0x8000-0x8fff] -05:50:20,521 DEBUG kernel:pci 0000:00:15.1: bridge window [mem 0xd2800000-0xd28fffff] -05:50:20,521 DEBUG kernel:pci 0000:00:15.1: bridge window [mem 0xd4800000-0xd48fffff 64bit pref] -05:50:20,521 INFO kernel:pci 0000:00:15.2: PCI bridge to [bus 05-05] -05:50:20,521 DEBUG kernel:pci 0000:00:15.2: bridge window [io 0xc000-0xcfff] -05:50:20,521 DEBUG kernel:pci 0000:00:15.2: bridge window [mem 0xd2c00000-0xd2cfffff] -05:50:20,521 DEBUG kernel:pci 0000:00:15.2: bridge window [mem 0xdcb00000-0xdcbfffff 64bit pref] -05:50:20,521 INFO kernel:pci 0000:00:15.3: PCI bridge to [bus 06-06] -05:50:20,521 DEBUG kernel:pci 0000:00:15.3: bridge window [io 0xf000-0x0000] (disabled) -05:50:20,521 DEBUG kernel:pci 0000:00:15.3: bridge window [mem 0xd3000000-0xd30fffff] -05:50:20,521 DEBUG kernel:pci 0000:00:15.3: bridge window [mem 0xdcd00000-0xdcdfffff 64bit pref] -05:50:20,521 INFO kernel:pci 0000:00:15.4: PCI bridge to [bus 07-07] -05:50:20,521 DEBUG kernel:pci 0000:00:15.4: bridge window [io 0xf000-0x0000] (disabled) -05:50:20,521 DEBUG kernel:pci 0000:00:15.4: bridge window [mem 0xd3400000-0xd34fffff] -05:50:20,521 DEBUG kernel:pci 0000:00:15.4: bridge window [mem 0xdcf00000-0xdcffffff 64bit pref] -05:50:20,521 INFO kernel:pci 0000:00:15.5: PCI bridge to [bus 08-08] -05:50:20,521 DEBUG kernel:pci 0000:00:15.5: bridge window [io 0xf000-0x0000] (disabled) -05:50:20,521 DEBUG kernel:pci 0000:00:15.5: bridge window [mem 0xd3800000-0xd38fffff] -05:50:20,521 DEBUG kernel:pci 0000:00:15.5: bridge window [mem 0xdd100000-0xdd1fffff 64bit pref] -05:50:20,521 INFO kernel:pci 0000:00:15.6: PCI bridge to [bus 09-09] -05:50:20,521 DEBUG kernel:pci 0000:00:15.6: bridge window [io 0xf000-0x0000] (disabled) -05:50:20,521 DEBUG kernel:pci 0000:00:15.6: bridge window [mem 0xd3c00000-0xd3cfffff] -05:50:20,521 DEBUG kernel:pci 0000:00:15.6: bridge window [mem 0xdd300000-0xdd3fffff 64bit pref] -05:50:20,521 INFO kernel:pci 0000:00:15.7: PCI bridge to [bus 0a-0a] -05:50:20,521 DEBUG kernel:pci 0000:00:15.7: bridge window [io 0xf000-0x0000] (disabled) -05:50:20,521 DEBUG kernel:pci 0000:00:15.7: bridge window [mem 0xd4000000-0xd40fffff] -05:50:20,521 DEBUG kernel:pci 0000:00:15.7: bridge window [mem 0xdd500000-0xdd5fffff 64bit pref] -05:50:20,521 INFO kernel:pci 0000:00:16.0: PCI bridge to [bus 0b-0b] -05:50:20,521 DEBUG kernel:pci 0000:00:16.0: bridge window [io 0x5000-0x5fff] -05:50:20,521 DEBUG kernel:pci 0000:00:16.0: bridge window [mem 0xd2500000-0xd25fffff] -05:50:20,521 DEBUG kernel:pci 0000:00:16.0: bridge window [mem 0xd4500000-0xd45fffff 64bit pref] -05:50:20,522 INFO kernel:pci 0000:00:16.1: PCI bridge to [bus 0c-0c] -05:50:20,522 DEBUG kernel:pci 0000:00:16.1: bridge window [io 0x9000-0x9fff] -05:50:20,522 DEBUG kernel:pci 0000:00:16.1: bridge window [mem 0xd2900000-0xd29fffff] -05:50:20,522 DEBUG kernel:pci 0000:00:16.1: bridge window [mem 0xd4900000-0xd49fffff 64bit pref] -05:50:20,522 INFO kernel:pci 0000:00:16.2: PCI bridge to [bus 0d-0d] -05:50:20,522 DEBUG kernel:pci 0000:00:16.2: bridge window [io 0xd000-0xdfff] -05:50:20,522 DEBUG kernel:pci 0000:00:16.2: bridge window [mem 0xd2d00000-0xd2dfffff] -05:50:20,522 DEBUG kernel:pci 0000:00:16.2: bridge window [mem 0xd4b00000-0xd4bfffff 64bit pref] -05:50:20,522 INFO kernel:pci 0000:00:16.3: PCI bridge to [bus 0e-0e] -05:50:20,522 DEBUG kernel:pci 0000:00:16.3: bridge window [io 0xf000-0x0000] (disabled) -05:50:20,522 DEBUG kernel:pci 0000:00:16.3: bridge window [mem 0xd3100000-0xd31fffff] -05:50:20,522 DEBUG kernel:pci 0000:00:16.3: bridge window [mem 0xd4d00000-0xd4dfffff 64bit pref] -05:50:20,522 INFO kernel:pci 0000:00:16.4: PCI bridge to [bus 0f-0f] -05:50:20,522 DEBUG kernel:pci 0000:00:16.4: bridge window [io 0xf000-0x0000] (disabled) -05:50:20,522 DEBUG kernel:pci 0000:00:16.4: bridge window [mem 0xd3500000-0xd35fffff] -05:50:20,522 DEBUG kernel:pci 0000:00:16.4: bridge window [mem 0xd4f00000-0xd4ffffff 64bit pref] -05:50:20,522 INFO kernel:pci 0000:00:16.5: PCI bridge to [bus 10-10] -05:50:20,522 DEBUG kernel:pci 0000:00:16.5: bridge window [io 0xf000-0x0000] (disabled) -05:50:20,522 DEBUG kernel:pci 0000:00:16.5: bridge window [mem 0xd3900000-0xd39fffff] -05:50:20,522 DEBUG kernel:pci 0000:00:16.5: bridge window [mem 0xd5100000-0xd51fffff 64bit pref] -05:50:20,522 INFO kernel:pci 0000:00:16.6: PCI bridge to [bus 11-11] -05:50:20,522 DEBUG kernel:pci 0000:00:16.6: bridge window [io 0xf000-0x0000] (disabled) -05:50:20,522 DEBUG kernel:pci 0000:00:16.6: bridge window [mem 0xd3d00000-0xd3dfffff] -05:50:20,522 DEBUG kernel:pci 0000:00:16.6: bridge window [mem 0xd5300000-0xd53fffff 64bit pref] -05:50:20,522 INFO kernel:pci 0000:00:16.7: PCI bridge to [bus 12-12] -05:50:20,522 DEBUG kernel:pci 0000:00:16.7: bridge window [io 0xf000-0x0000] (disabled) -05:50:20,522 DEBUG kernel:pci 0000:00:16.7: bridge window [mem 0xd4100000-0xd41fffff] -05:50:20,522 DEBUG kernel:pci 0000:00:16.7: bridge window [mem 0xd5500000-0xd55fffff 64bit pref] -05:50:20,522 INFO kernel:pci 0000:00:17.0: PCI bridge to [bus 13-13] -05:50:20,522 DEBUG kernel:pci 0000:00:17.0: bridge window [io 0x6000-0x6fff] -05:50:20,522 DEBUG kernel:pci 0000:00:17.0: bridge window [mem 0xd2600000-0xd26fffff] -05:50:20,522 DEBUG kernel:pci 0000:00:17.0: bridge window [mem 0xd4600000-0xd46fffff 64bit pref] -05:50:20,522 INFO kernel:pci 0000:00:17.1: PCI bridge to [bus 14-14] -05:50:20,522 DEBUG kernel:pci 0000:00:17.1: bridge window [io 0xa000-0xafff] -05:50:20,522 DEBUG kernel:pci 0000:00:17.1: bridge window [mem 0xd2a00000-0xd2afffff] -05:50:20,522 DEBUG kernel:pci 0000:00:17.1: bridge window [mem 0xdca00000-0xdcafffff 64bit pref] -05:50:20,522 INFO kernel:pci 0000:00:17.2: PCI bridge to [bus 15-15] -05:50:20,522 DEBUG kernel:pci 0000:00:17.2: bridge window [io 0xe000-0xefff] -05:50:20,522 DEBUG kernel:pci 0000:00:17.2: bridge window [mem 0xd2e00000-0xd2efffff] -05:50:20,522 DEBUG kernel:pci 0000:00:17.2: bridge window [mem 0xdcc00000-0xdccfffff 64bit pref] -05:50:20,522 INFO kernel:pci 0000:00:17.3: PCI bridge to [bus 16-16] -05:50:20,522 DEBUG kernel:pci 0000:00:17.3: bridge window [io 0xf000-0x0000] (disabled) -05:50:20,522 DEBUG kernel:pci 0000:00:17.3: bridge window [mem 0xd3200000-0xd32fffff] -05:50:20,522 DEBUG kernel:pci 0000:00:17.3: bridge window [mem 0xdce00000-0xdcefffff 64bit pref] -05:50:20,522 INFO kernel:pci 0000:00:17.4: PCI bridge to [bus 17-17] -05:50:20,522 DEBUG kernel:pci 0000:00:17.4: bridge window [io 0xf000-0x0000] (disabled) -05:50:20,522 DEBUG kernel:pci 0000:00:17.4: bridge window [mem 0xd3600000-0xd36fffff] -05:50:20,522 DEBUG kernel:pci 0000:00:17.4: bridge window [mem 0xdd000000-0xdd0fffff 64bit pref] -05:50:20,522 INFO kernel:pci 0000:00:17.5: PCI bridge to [bus 18-18] -05:50:20,522 DEBUG kernel:pci 0000:00:17.5: bridge window [io 0xf000-0x0000] (disabled) -05:50:20,522 DEBUG kernel:pci 0000:00:17.5: bridge window [mem 0xd3a00000-0xd3afffff] -05:50:20,522 DEBUG kernel:pci 0000:00:17.5: bridge window [mem 0xdd200000-0xdd2fffff 64bit pref] -05:50:20,522 INFO kernel:pci 0000:00:17.6: PCI bridge to [bus 19-19] -05:50:20,522 DEBUG kernel:pci 0000:00:17.6: bridge window [io 0xf000-0x0000] (disabled) -05:50:20,522 DEBUG kernel:pci 0000:00:17.6: bridge window [mem 0xd3e00000-0xd3efffff] -05:50:20,522 DEBUG kernel:pci 0000:00:17.6: bridge window [mem 0xdd400000-0xdd4fffff 64bit pref] -05:50:20,522 INFO kernel:pci 0000:00:17.7: PCI bridge to [bus 1a-1a] -05:50:20,522 DEBUG kernel:pci 0000:00:17.7: bridge window [io 0xf000-0x0000] (disabled) -05:50:20,522 DEBUG kernel:pci 0000:00:17.7: bridge window [mem 0xd4200000-0xd42fffff] -05:50:20,522 DEBUG kernel:pci 0000:00:17.7: bridge window [mem 0xdd600000-0xdd6fffff 64bit pref] -05:50:20,522 INFO kernel:pci 0000:00:18.0: PCI bridge to [bus 1b-1b] -05:50:20,522 DEBUG kernel:pci 0000:00:18.0: bridge window [io 0x7000-0x7fff] -05:50:20,522 DEBUG kernel:pci 0000:00:18.0: bridge window [mem 0xd2700000-0xd27fffff] -05:50:20,522 DEBUG kernel:pci 0000:00:18.0: bridge window [mem 0xd4700000-0xd47fffff 64bit pref] -05:50:20,522 INFO kernel:pci 0000:00:18.1: PCI bridge to [bus 1c-1c] -05:50:20,522 DEBUG kernel:pci 0000:00:18.1: bridge window [io 0xb000-0xbfff] -05:50:20,522 DEBUG kernel:pci 0000:00:18.1: bridge window [mem 0xd2b00000-0xd2bfffff] -05:50:20,522 DEBUG kernel:pci 0000:00:18.1: bridge window [mem 0xd4a00000-0xd4afffff 64bit pref] -05:50:20,522 INFO kernel:pci 0000:00:18.2: PCI bridge to [bus 1d-1d] -05:50:20,522 DEBUG kernel:pci 0000:00:18.2: bridge window [io 0xf000-0xffff] -05:50:20,522 DEBUG kernel:pci 0000:00:18.2: bridge window [mem 0xd2f00000-0xd2ffffff] -05:50:20,522 DEBUG kernel:pci 0000:00:18.2: bridge window [mem 0xd4c00000-0xd4cfffff 64bit pref] -05:50:20,522 INFO kernel:pci 0000:00:18.3: PCI bridge to [bus 1e-1e] -05:50:20,522 DEBUG kernel:pci 0000:00:18.3: bridge window [io 0xf000-0x0000] (disabled) -05:50:20,522 DEBUG kernel:pci 0000:00:18.3: bridge window [mem 0xd3300000-0xd33fffff] -05:50:20,522 DEBUG kernel:pci 0000:00:18.3: bridge window [mem 0xd4e00000-0xd4efffff 64bit pref] -05:50:20,522 INFO kernel:pci 0000:00:18.4: PCI bridge to [bus 1f-1f] -05:50:20,522 DEBUG kernel:pci 0000:00:18.4: bridge window [io 0xf000-0x0000] (disabled) -05:50:20,522 DEBUG kernel:pci 0000:00:18.4: bridge window [mem 0xd3700000-0xd37fffff] -05:50:20,522 DEBUG kernel:pci 0000:00:18.4: bridge window [mem 0xd5000000-0xd50fffff 64bit pref] -05:50:20,522 INFO kernel:pci 0000:00:18.5: PCI bridge to [bus 20-20] -05:50:20,522 DEBUG kernel:pci 0000:00:18.5: bridge window [io 0xf000-0x0000] (disabled) -05:50:20,522 DEBUG kernel:pci 0000:00:18.5: bridge window [mem 0xd3b00000-0xd3bfffff] -05:50:20,522 DEBUG kernel:pci 0000:00:18.5: bridge window [mem 0xd5200000-0xd52fffff 64bit pref] -05:50:20,522 INFO kernel:pci 0000:00:18.6: PCI bridge to [bus 21-21] -05:50:20,522 DEBUG kernel:pci 0000:00:18.6: bridge window [io 0xf000-0x0000] (disabled) -05:50:20,522 DEBUG kernel:pci 0000:00:18.6: bridge window [mem 0xd3f00000-0xd3ffffff] -05:50:20,522 DEBUG kernel:pci 0000:00:18.6: bridge window [mem 0xd5400000-0xd54fffff 64bit pref] -05:50:20,522 INFO kernel:pci 0000:00:18.7: PCI bridge to [bus 22-22] -05:50:20,522 DEBUG kernel:pci 0000:00:18.7: bridge window [io 0xf000-0x0000] (disabled) -05:50:20,522 DEBUG kernel:pci 0000:00:18.7: bridge window [mem 0xd4300000-0xd43fffff] -05:50:20,522 DEBUG kernel:pci 0000:00:18.7: bridge window [mem 0xd5600000-0xd56fffff 64bit pref] -05:50:20,522 DEBUG kernel:ACPI: PCI Interrupt Routing Table [\_SB_.PCI0._PRT] -05:50:20,522 INFO kernel: pci0000:00: Requesting ACPI _OSC control (0x1d) -05:50:20,522 INFO kernel: pci0000:00: ACPI _OSC control (0x15) granted -05:50:20,522 INFO kernel:ACPI: PCI Interrupt Link [LNKA] (IRQs 3 4 5 6 7 *9 10 11 14 15) -05:50:20,522 INFO kernel:ACPI: PCI Interrupt Link [LNKB] (IRQs 3 4 5 6 7 9 10 *11 14 15) -05:50:20,522 INFO kernel:ACPI: PCI Interrupt Link [LNKC] (IRQs 3 4 5 6 7 9 *10 11 14 15) -05:50:20,522 INFO kernel:ACPI: PCI Interrupt Link [LNKD] (IRQs 3 4 *5 6 7 9 10 11 14 15) -05:50:20,522 INFO kernel:vgaarb: device added: PCI:0000:00:0f.0,decodes=io+mem,owns=io+mem,locks=none -05:50:20,522 INFO kernel:vgaarb: loaded -05:50:20,522 INFO kernel:vgaarb: bridge control possible 0000:00:0f.0 -05:50:20,522 NOTICE kernel:SCSI subsystem initialized -05:50:20,522 DEBUG kernel:libata version 3.00 loaded. -05:50:20,522 INFO kernel:usbcore: registered new interface driver usbfs -05:50:20,522 INFO kernel:usbcore: registered new interface driver hub -05:50:20,522 INFO kernel:usbcore: registered new device driver usb -05:50:20,522 INFO kernel:PCI: Using ACPI for IRQ routing -05:50:20,522 DEBUG kernel:PCI: old code would have set cacheline size to 32 bytes, but clflush_size = 64 -05:50:20,522 DEBUG kernel:PCI: pci_cache_line_size set to 64 bytes -05:50:20,522 INFO kernel:pci 0000:00:18.2: no compatible bridge window for [io 0xf000-0xffff] -05:50:20,522 INFO kernel:pci 0000:00:18.2: can't reserve window [io 0xf000-0xffff] -05:50:20,522 NOTICE kernel:lo: Dropping TSO features since no CSUM feature. -05:50:20,522 INFO kernel:NetLabel: Initializing -05:50:20,522 INFO kernel:NetLabel: domain hash size = 128 -05:50:20,522 INFO kernel:NetLabel: protocols = UNLABELED CIPSOv4 -05:50:20,522 INFO kernel:NetLabel: unlabeled traffic allowed by default -05:50:20,522 INFO kernel:HPET: 16 timers in total, 0 timers will be used for per-cpu timer -05:50:20,522 INFO kernel:hpet0: at MMIO 0xfed00000, IRQs 2, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 -05:50:20,522 INFO kernel:hpet0: 16 comparators, 64-bit 14.318180 MHz counter -05:50:20,522 INFO kernel:Switching to clocksource hpet -05:50:20,522 INFO kernel:pnp: PnP ACPI init -05:50:20,522 INFO kernel:ACPI: bus type pnp registered -05:50:20,522 DEBUG kernel:pnp 00:00: [io 0x0cf8-0x0cff] -05:50:20,522 DEBUG kernel:pnp 00:00: Plug and Play ACPI device, IDs PNP0a03 PNP0a08 (active) -05:50:20,522 DEBUG kernel:pnp 00:01: [io 0x0010-0x001f] -05:50:20,522 DEBUG kernel:pnp 00:01: [io 0x0024-0x0025] -05:50:20,522 DEBUG kernel:pnp 00:01: [io 0x0028-0x0029] -05:50:20,522 DEBUG kernel:pnp 00:01: [io 0x002c-0x002d] -05:50:20,522 DEBUG kernel:pnp 00:01: [io 0x002e-0x002f] -05:50:20,522 DEBUG kernel:pnp 00:01: [io 0x0030-0x0031] -05:50:20,522 DEBUG kernel:pnp 00:01: [io 0x0034-0x0035] -05:50:20,522 DEBUG kernel:pnp 00:01: [io 0x0038-0x0039] -05:50:20,522 DEBUG kernel:pnp 00:01: [io 0x003c-0x003d] -05:50:20,522 DEBUG kernel:pnp 00:01: [io 0x0050-0x0053] -05:50:20,522 DEBUG kernel:pnp 00:01: [io 0x0072-0x0077] -05:50:20,522 DEBUG kernel:pnp 00:01: [io 0x0080] -05:50:20,522 DEBUG kernel:pnp 00:01: [io 0x0090-0x009f] -05:50:20,522 DEBUG kernel:pnp 00:01: [io 0x00a4-0x00a5] -05:50:20,522 DEBUG kernel:pnp 00:01: [io 0x00a8-0x00a9] -05:50:20,522 DEBUG kernel:pnp 00:01: [io 0x00ac-0x00ad] -05:50:20,522 DEBUG kernel:pnp 00:01: [io 0x00b0-0x00b5] -05:50:20,522 DEBUG kernel:pnp 00:01: [io 0x00b8-0x00b9] -05:50:20,522 DEBUG kernel:pnp 00:01: [io 0x00bc-0x00bd] -05:50:20,522 DEBUG kernel:pnp 00:01: [io 0x1000-0x103f] -05:50:20,522 DEBUG kernel:pnp 00:01: [io 0x1040-0x104f] -05:50:20,522 DEBUG kernel:pnp 00:01: [io 0x0cf0-0x0cf1] -05:50:20,522 DEBUG kernel:pnp 00:01: Plug and Play ACPI device, IDs PNP0c02 (active) -05:50:20,522 DEBUG kernel:pnp 00:02: [io 0x0000-0x000f] -05:50:20,522 DEBUG kernel:pnp 00:02: [io 0x0081-0x008f] -05:50:20,522 DEBUG kernel:pnp 00:02: [io 0x00c0-0x00df] -05:50:20,522 DEBUG kernel:pnp 00:02: [dma 4] -05:50:20,522 DEBUG kernel:pnp 00:02: Plug and Play ACPI device, IDs PNP0200 (active) -05:50:20,522 DEBUG kernel:pnp 00:03: [io 0x0020-0x0021] -05:50:20,522 DEBUG kernel:pnp 00:03: [io 0x00a0-0x00a1] -05:50:20,522 DEBUG kernel:pnp 00:03: [io 0x04d0-0x04d1] -05:50:20,522 DEBUG kernel:pnp 00:03: [irq 2 disabled] -05:50:20,522 DEBUG kernel:pnp 00:03: Plug and Play ACPI device, IDs PNP0001 (active) -05:50:20,522 DEBUG kernel:pnp 00:04: [io 0x0070-0x0071] -05:50:20,522 DEBUG kernel:pnp 00:04: [irq 8] -05:50:20,522 DEBUG kernel:pnp 00:04: Plug and Play ACPI device, IDs PNP0b00 (active) -05:50:20,522 DEBUG kernel:pnp 00:05: [io 0x0061] -05:50:20,522 DEBUG kernel:pnp 00:05: Plug and Play ACPI device, IDs PNP0800 (active) -05:50:20,522 DEBUG kernel:pnp 00:06: [io 0x0060] -05:50:20,522 DEBUG kernel:pnp 00:06: [io 0x0064] -05:50:20,522 DEBUG kernel:pnp 00:06: [irq 1] -05:50:20,522 DEBUG kernel:pnp 00:06: Plug and Play ACPI device, IDs PNP0303 (active) -05:50:20,522 DEBUG kernel:pnp 00:07: [irq 12] -05:50:20,522 DEBUG kernel:pnp 00:07: Plug and Play ACPI device, IDs PNP0f13 (active) -05:50:20,522 DEBUG kernel:pnp 00:08: [mem 0xfed00000-0xfed003ff] -05:50:20,522 DEBUG kernel:pnp 00:08: Plug and Play ACPI device, IDs PNP0103 PNP0c01 (active) -05:50:20,522 DEBUG kernel:pnp 00:09: [io 0x0378-0x037f] -05:50:20,522 DEBUG kernel:pnp 00:09: [irq 7] -05:50:20,522 DEBUG kernel:pnp 00:09: Plug and Play ACPI device, IDs PNP0400 (active) -05:50:20,522 DEBUG kernel:pnp 00:0a: [io 0x03f8-0x03ff] -05:50:20,522 DEBUG kernel:pnp 00:0a: [irq 4] -05:50:20,522 DEBUG kernel:pnp 00:0a: Plug and Play ACPI device, IDs PNP0501 (active) -05:50:20,522 DEBUG kernel:pnp 00:0b: [io 0x02f8-0x02ff] -05:50:20,522 DEBUG kernel:pnp 00:0b: [irq 3] -05:50:20,522 DEBUG kernel:pnp 00:0b: Plug and Play ACPI device, IDs PNP0501 (active) -05:50:20,522 DEBUG kernel:pnp 00:0c: [io 0x03f0-0x03f5] -05:50:20,522 DEBUG kernel:pnp 00:0c: [io 0x03f7] -05:50:20,522 DEBUG kernel:pnp 00:0c: [irq 6] -05:50:20,522 DEBUG kernel:pnp 00:0c: [dma 2] -05:50:20,522 DEBUG kernel:pnp 00:0c: Plug and Play ACPI device, IDs PNP0700 (active) -05:50:20,522 DEBUG kernel:pnp 00:0d: [mem 0xe0000000-0xefffffff] -05:50:20,522 DEBUG kernel:pnp 00:0d: [io 0x1060-0x107f] -05:50:20,522 DEBUG kernel:pnp 00:0d: [mem 0xd0200000-0xd03fffff] -05:50:20,522 DEBUG kernel:pnp 00:0d: Plug and Play ACPI device, IDs PNP0c02 (active) -05:50:20,522 INFO kernel:pnp: PnP ACPI: found 14 devices -05:50:20,522 INFO kernel:ACPI: ACPI bus type pnp unregistered -05:50:20,522 INFO kernel:system 00:01: [io 0x1000-0x103f] has been reserved -05:50:20,522 INFO kernel:system 00:01: [io 0x1040-0x104f] has been reserved -05:50:20,522 INFO kernel:system 00:01: [io 0x0cf0-0x0cf1] has been reserved -05:50:20,522 INFO kernel:system 00:08: [mem 0xfed00000-0xfed003ff] has been reserved -05:50:20,522 INFO kernel:system 00:0d: [io 0x1060-0x107f] has been reserved -05:50:20,522 INFO kernel:system 00:0d: [mem 0xe0000000-0xefffffff] has been reserved -05:50:20,522 INFO kernel:system 00:0d: [mem 0xd0200000-0xd03fffff] has been reserved -05:50:20,522 DEBUG kernel:PCI: max bus depth: 1 pci_try_num: 2 -05:50:20,522 INFO kernel:pci 0000:00:0f.0: BAR 6: assigned [mem 0x80000000-0x80007fff pref] -05:50:20,522 INFO kernel:pci 0000:00:10.0: BAR 6: assigned [mem 0x80008000-0x8000bfff pref] -05:50:20,522 INFO kernel:pci 0000:00:18.2: BAR 13: can't assign io (size 0x1000) -05:50:20,522 INFO kernel:pci 0000:00:18.7: BAR 13: can't assign io (size 0x1000) -05:50:20,522 INFO kernel:pci 0000:00:18.6: BAR 13: can't assign io (size 0x1000) -05:50:20,522 INFO kernel:pci 0000:00:18.5: BAR 13: can't assign io (size 0x1000) -05:50:20,522 INFO kernel:pci 0000:00:18.4: BAR 13: can't assign io (size 0x1000) -05:50:20,522 INFO kernel:pci 0000:00:18.3: BAR 13: can't assign io (size 0x1000) -05:50:20,523 INFO kernel:pci 0000:00:17.7: BAR 13: can't assign io (size 0x1000) -05:50:20,523 INFO kernel:pci 0000:00:17.6: BAR 13: can't assign io (size 0x1000) -05:50:20,523 INFO kernel:pci 0000:00:17.5: BAR 13: can't assign io (size 0x1000) -05:50:20,523 INFO kernel:pci 0000:00:17.4: BAR 13: can't assign io (size 0x1000) -05:50:20,523 INFO kernel:pci 0000:00:17.3: BAR 13: can't assign io (size 0x1000) -05:50:20,523 INFO kernel:pci 0000:00:16.7: BAR 13: can't assign io (size 0x1000) -05:50:20,523 INFO kernel:pci 0000:00:16.6: BAR 13: can't assign io (size 0x1000) -05:50:20,523 INFO kernel:pci 0000:00:16.5: BAR 13: can't assign io (size 0x1000) -05:50:20,523 INFO kernel:pci 0000:00:16.4: BAR 13: can't assign io (size 0x1000) -05:50:20,523 INFO kernel:pci 0000:00:16.3: BAR 13: can't assign io (size 0x1000) -05:50:20,523 INFO kernel:pci 0000:00:15.7: BAR 13: can't assign io (size 0x1000) -05:50:20,523 INFO kernel:pci 0000:00:15.6: BAR 13: can't assign io (size 0x1000) -05:50:20,523 INFO kernel:pci 0000:00:15.5: BAR 13: can't assign io (size 0x1000) -05:50:20,523 INFO kernel:pci 0000:00:15.4: BAR 13: can't assign io (size 0x1000) -05:50:20,523 INFO kernel:pci 0000:00:15.3: BAR 13: can't assign io (size 0x1000) -05:50:20,523 INFO kernel:pci 0000:00:01.0: PCI bridge to [bus 01-01] -05:50:20,523 INFO kernel:pci 0000:00:01.0: PCI bridge to [bus 01-01] -05:50:20,523 INFO kernel:pci 0000:00:01.0: bridge window [io disabled] -05:50:20,523 INFO kernel:pci 0000:00:01.0: bridge window [mem disabled] -05:50:20,523 INFO kernel:pci 0000:00:01.0: bridge window [mem pref disabled] -05:50:20,523 INFO kernel:pci 0000:02:00.0: BAR 6: assigned [mem 0xdc400000-0xdc40ffff pref] -05:50:20,523 INFO kernel:pci 0000:02:01.0: BAR 6: assigned [mem 0xdc410000-0xdc41ffff pref] -05:50:20,523 INFO kernel:pci 0000:02:02.0: BAR 6: assigned [mem 0xdc420000-0xdc42ffff pref] -05:50:20,523 INFO kernel:pci 0000:02:03.0: BAR 6: assigned [mem 0xdc430000-0xdc43ffff pref] -05:50:20,523 INFO kernel:pci 0000:00:11.0: PCI bridge to [bus 02-02] -05:50:20,523 INFO kernel:pci 0000:00:11.0: PCI bridge to [bus 02-02] -05:50:20,523 INFO kernel:pci 0000:00:11.0: bridge window [io 0x2000-0x3fff] -05:50:20,523 INFO kernel:pci 0000:00:11.0: bridge window [mem 0xd1000000-0xd23fffff] -05:50:20,523 INFO kernel:pci 0000:00:11.0: bridge window [mem 0xdc400000-0xdc9fffff 64bit pref] -05:50:20,523 INFO kernel:pci 0000:00:15.0: PCI bridge to [bus 03-03] -05:50:20,523 INFO kernel:pci 0000:00:15.0: PCI bridge to [bus 03-03] -05:50:20,523 INFO kernel:pci 0000:00:15.0: bridge window [io 0x4000-0x4fff] -05:50:20,523 INFO kernel:pci 0000:00:15.0: bridge window [mem 0xd2400000-0xd24fffff] -05:50:20,523 INFO kernel:pci 0000:00:15.0: bridge window [mem 0xd4400000-0xd44fffff 64bit pref] -05:50:20,523 INFO kernel:pci 0000:00:15.1: PCI bridge to [bus 04-04] -05:50:20,523 INFO kernel:pci 0000:00:15.1: PCI bridge to [bus 04-04] -05:50:20,523 INFO kernel:pci 0000:00:15.1: bridge window [io 0x8000-0x8fff] -05:50:20,523 INFO kernel:pci 0000:00:15.1: bridge window [mem 0xd2800000-0xd28fffff] -05:50:20,523 INFO kernel:pci 0000:00:15.1: bridge window [mem 0xd4800000-0xd48fffff 64bit pref] -05:50:20,523 INFO kernel:pci 0000:00:15.2: PCI bridge to [bus 05-05] -05:50:20,523 INFO kernel:pci 0000:00:15.2: PCI bridge to [bus 05-05] -05:50:20,523 INFO kernel:pci 0000:00:15.2: bridge window [io 0xc000-0xcfff] -05:50:20,523 INFO kernel:pci 0000:00:15.2: bridge window [mem 0xd2c00000-0xd2cfffff] -05:50:20,523 INFO kernel:pci 0000:00:15.2: bridge window [mem 0xdcb00000-0xdcbfffff 64bit pref] -05:50:20,523 INFO kernel:pci 0000:00:15.3: PCI bridge to [bus 06-06] -05:50:20,523 INFO kernel:pci 0000:00:15.3: PCI bridge to [bus 06-06] -05:50:20,523 INFO kernel:pci 0000:00:15.3: bridge window [io disabled] -05:50:20,523 INFO kernel:pci 0000:00:15.3: bridge window [mem 0xd3000000-0xd30fffff] -05:50:20,523 INFO kernel:pci 0000:00:15.3: bridge window [mem 0xdcd00000-0xdcdfffff 64bit pref] -05:50:20,523 INFO kernel:pci 0000:00:15.4: PCI bridge to [bus 07-07] -05:50:20,523 INFO kernel:pci 0000:00:15.4: PCI bridge to [bus 07-07] -05:50:20,523 INFO kernel:pci 0000:00:15.4: bridge window [io disabled] -05:50:20,523 INFO kernel:pci 0000:00:15.4: bridge window [mem 0xd3400000-0xd34fffff] -05:50:20,523 INFO kernel:pci 0000:00:15.4: bridge window [mem 0xdcf00000-0xdcffffff 64bit pref] -05:50:20,523 INFO kernel:pci 0000:00:15.5: PCI bridge to [bus 08-08] -05:50:20,523 INFO kernel:pci 0000:00:15.5: PCI bridge to [bus 08-08] -05:50:20,523 INFO kernel:pci 0000:00:15.5: bridge window [io disabled] -05:50:20,523 INFO kernel:pci 0000:00:15.5: bridge window [mem 0xd3800000-0xd38fffff] -05:50:20,523 INFO kernel:pci 0000:00:15.5: bridge window [mem 0xdd100000-0xdd1fffff 64bit pref] -05:50:20,523 INFO kernel:pci 0000:00:15.6: PCI bridge to [bus 09-09] -05:50:20,523 INFO kernel:pci 0000:00:15.6: PCI bridge to [bus 09-09] -05:50:20,523 INFO kernel:pci 0000:00:15.6: bridge window [io disabled] -05:50:20,523 INFO kernel:pci 0000:00:15.6: bridge window [mem 0xd3c00000-0xd3cfffff] -05:50:20,523 INFO kernel:pci 0000:00:15.6: bridge window [mem 0xdd300000-0xdd3fffff 64bit pref] -05:50:20,523 INFO kernel:pci 0000:00:15.7: PCI bridge to [bus 0a-0a] -05:50:20,523 INFO kernel:pci 0000:00:15.7: PCI bridge to [bus 0a-0a] -05:50:20,523 INFO kernel:pci 0000:00:15.7: bridge window [io disabled] -05:50:20,523 INFO kernel:pci 0000:00:15.7: bridge window [mem 0xd4000000-0xd40fffff] -05:50:20,523 INFO kernel:pci 0000:00:15.7: bridge window [mem 0xdd500000-0xdd5fffff 64bit pref] -05:50:20,523 INFO kernel:pci 0000:00:16.0: PCI bridge to [bus 0b-0b] -05:50:20,523 INFO kernel:pci 0000:00:16.0: PCI bridge to [bus 0b-0b] -05:50:20,523 INFO kernel:pci 0000:00:16.0: bridge window [io 0x5000-0x5fff] -05:50:20,523 INFO kernel:pci 0000:00:16.0: bridge window [mem 0xd2500000-0xd25fffff] -05:50:20,523 INFO kernel:pci 0000:00:16.0: bridge window [mem 0xd4500000-0xd45fffff 64bit pref] -05:50:20,523 INFO kernel:pci 0000:00:16.1: PCI bridge to [bus 0c-0c] -05:50:20,523 INFO kernel:pci 0000:00:16.1: PCI bridge to [bus 0c-0c] -05:50:20,523 INFO kernel:pci 0000:00:16.1: bridge window [io 0x9000-0x9fff] -05:50:20,523 INFO kernel:pci 0000:00:16.1: bridge window [mem 0xd2900000-0xd29fffff] -05:50:20,523 INFO kernel:pci 0000:00:16.1: bridge window [mem 0xd4900000-0xd49fffff 64bit pref] -05:50:20,523 INFO kernel:pci 0000:00:16.2: PCI bridge to [bus 0d-0d] -05:50:20,523 INFO kernel:pci 0000:00:16.2: PCI bridge to [bus 0d-0d] -05:50:20,523 INFO kernel:pci 0000:00:16.2: bridge window [io 0xd000-0xdfff] -05:50:20,523 INFO kernel:pci 0000:00:16.2: bridge window [mem 0xd2d00000-0xd2dfffff] -05:50:20,523 INFO kernel:pci 0000:00:16.2: bridge window [mem 0xd4b00000-0xd4bfffff 64bit pref] -05:50:20,523 INFO kernel:pci 0000:00:16.3: PCI bridge to [bus 0e-0e] -05:50:20,523 INFO kernel:pci 0000:00:16.3: PCI bridge to [bus 0e-0e] -05:50:20,523 INFO kernel:pci 0000:00:16.3: bridge window [io disabled] -05:50:20,523 INFO kernel:pci 0000:00:16.3: bridge window [mem 0xd3100000-0xd31fffff] -05:50:20,523 INFO kernel:pci 0000:00:16.3: bridge window [mem 0xd4d00000-0xd4dfffff 64bit pref] -05:50:20,523 INFO kernel:pci 0000:00:16.4: PCI bridge to [bus 0f-0f] -05:50:20,523 INFO kernel:pci 0000:00:16.4: PCI bridge to [bus 0f-0f] -05:50:20,523 INFO kernel:pci 0000:00:16.4: bridge window [io disabled] -05:50:20,523 INFO kernel:pci 0000:00:16.4: bridge window [mem 0xd3500000-0xd35fffff] -05:50:20,523 INFO kernel:pci 0000:00:16.4: bridge window [mem 0xd4f00000-0xd4ffffff 64bit pref] -05:50:20,523 INFO kernel:pci 0000:00:16.5: PCI bridge to [bus 10-10] -05:50:20,523 INFO kernel:pci 0000:00:16.5: PCI bridge to [bus 10-10] -05:50:20,523 INFO kernel:pci 0000:00:16.5: bridge window [io disabled] -05:50:20,523 INFO kernel:pci 0000:00:16.5: bridge window [mem 0xd3900000-0xd39fffff] -05:50:20,523 INFO kernel:pci 0000:00:16.5: bridge window [mem 0xd5100000-0xd51fffff 64bit pref] -05:50:20,523 INFO kernel:pci 0000:00:16.6: PCI bridge to [bus 11-11] -05:50:20,523 INFO kernel:pci 0000:00:16.6: PCI bridge to [bus 11-11] -05:50:20,523 INFO kernel:pci 0000:00:16.6: bridge window [io disabled] -05:50:20,523 INFO kernel:pci 0000:00:16.6: bridge window [mem 0xd3d00000-0xd3dfffff] -05:50:20,523 INFO kernel:pci 0000:00:16.6: bridge window [mem 0xd5300000-0xd53fffff 64bit pref] -05:50:20,523 INFO kernel:pci 0000:00:16.7: PCI bridge to [bus 12-12] -05:50:20,523 INFO kernel:pci 0000:00:16.7: PCI bridge to [bus 12-12] -05:50:20,523 INFO kernel:pci 0000:00:16.7: bridge window [io disabled] -05:50:20,523 INFO kernel:pci 0000:00:16.7: bridge window [mem 0xd4100000-0xd41fffff] -05:50:20,523 INFO kernel:pci 0000:00:16.7: bridge window [mem 0xd5500000-0xd55fffff 64bit pref] -05:50:20,523 INFO kernel:pci 0000:00:17.0: PCI bridge to [bus 13-13] -05:50:20,523 INFO kernel:pci 0000:00:17.0: PCI bridge to [bus 13-13] -05:50:20,523 INFO kernel:pci 0000:00:17.0: bridge window [io 0x6000-0x6fff] -05:50:20,523 INFO kernel:pci 0000:00:17.0: bridge window [mem 0xd2600000-0xd26fffff] -05:50:20,523 INFO kernel:pci 0000:00:17.0: bridge window [mem 0xd4600000-0xd46fffff 64bit pref] -05:50:20,523 INFO kernel:pci 0000:00:17.1: PCI bridge to [bus 14-14] -05:50:20,523 INFO kernel:pci 0000:00:17.1: PCI bridge to [bus 14-14] -05:50:20,523 INFO kernel:pci 0000:00:17.1: bridge window [io 0xa000-0xafff] -05:50:20,523 INFO kernel:pci 0000:00:17.1: bridge window [mem 0xd2a00000-0xd2afffff] -05:50:20,523 INFO kernel:pci 0000:00:17.1: bridge window [mem 0xdca00000-0xdcafffff 64bit pref] -05:50:20,523 INFO kernel:pci 0000:00:17.2: PCI bridge to [bus 15-15] -05:50:20,523 INFO kernel:pci 0000:00:17.2: PCI bridge to [bus 15-15] -05:50:20,523 INFO kernel:pci 0000:00:17.2: bridge window [io 0xe000-0xefff] -05:50:20,523 INFO kernel:pci 0000:00:17.2: bridge window [mem 0xd2e00000-0xd2efffff] -05:50:20,523 INFO kernel:pci 0000:00:17.2: bridge window [mem 0xdcc00000-0xdccfffff 64bit pref] -05:50:20,523 INFO kernel:pci 0000:00:17.3: PCI bridge to [bus 16-16] -05:50:20,523 INFO kernel:pci 0000:00:17.3: PCI bridge to [bus 16-16] -05:50:20,523 INFO kernel:pci 0000:00:17.3: bridge window [io disabled] -05:50:20,523 INFO kernel:pci 0000:00:17.3: bridge window [mem 0xd3200000-0xd32fffff] -05:50:20,523 INFO kernel:pci 0000:00:17.3: bridge window [mem 0xdce00000-0xdcefffff 64bit pref] -05:50:20,523 INFO kernel:pci 0000:00:17.4: PCI bridge to [bus 17-17] -05:50:20,523 INFO kernel:pci 0000:00:17.4: PCI bridge to [bus 17-17] -05:50:20,523 INFO kernel:pci 0000:00:17.4: bridge window [io disabled] -05:50:20,523 INFO kernel:pci 0000:00:17.4: bridge window [mem 0xd3600000-0xd36fffff] -05:50:20,523 INFO kernel:pci 0000:00:17.4: bridge window [mem 0xdd000000-0xdd0fffff 64bit pref] -05:50:20,523 INFO kernel:pci 0000:00:17.5: PCI bridge to [bus 18-18] -05:50:20,523 INFO kernel:pci 0000:00:17.5: PCI bridge to [bus 18-18] -05:50:20,523 INFO kernel:pci 0000:00:17.5: bridge window [io disabled] -05:50:20,523 INFO kernel:pci 0000:00:17.5: bridge window [mem 0xd3a00000-0xd3afffff] -05:50:20,523 INFO kernel:pci 0000:00:17.5: bridge window [mem 0xdd200000-0xdd2fffff 64bit pref] -05:50:20,523 INFO kernel:pci 0000:00:17.6: PCI bridge to [bus 19-19] -05:50:20,523 INFO kernel:pci 0000:00:17.6: PCI bridge to [bus 19-19] -05:50:20,523 INFO kernel:pci 0000:00:17.6: bridge window [io disabled] -05:50:20,523 INFO kernel:pci 0000:00:17.6: bridge window [mem 0xd3e00000-0xd3efffff] -05:50:20,523 INFO kernel:pci 0000:00:17.6: bridge window [mem 0xdd400000-0xdd4fffff 64bit pref] -05:50:20,523 INFO kernel:pci 0000:00:17.7: PCI bridge to [bus 1a-1a] -05:50:20,523 INFO kernel:pci 0000:00:17.7: PCI bridge to [bus 1a-1a] -05:50:20,523 INFO kernel:pci 0000:00:17.7: bridge window [io disabled] -05:50:20,523 INFO kernel:pci 0000:00:17.7: bridge window [mem 0xd4200000-0xd42fffff] -05:50:20,523 INFO kernel:pci 0000:00:17.7: bridge window [mem 0xdd600000-0xdd6fffff 64bit pref] -05:50:20,523 INFO kernel:pci 0000:00:18.0: PCI bridge to [bus 1b-1b] -05:50:20,523 INFO kernel:pci 0000:00:18.0: PCI bridge to [bus 1b-1b] -05:50:20,523 INFO kernel:pci 0000:00:18.0: bridge window [io 0x7000-0x7fff] -05:50:20,523 INFO kernel:pci 0000:00:18.0: bridge window [mem 0xd2700000-0xd27fffff] -05:50:20,523 INFO kernel:pci 0000:00:18.0: bridge window [mem 0xd4700000-0xd47fffff 64bit pref] -05:50:20,523 INFO kernel:pci 0000:00:18.1: PCI bridge to [bus 1c-1c] -05:50:20,523 INFO kernel:pci 0000:00:18.1: PCI bridge to [bus 1c-1c] -05:50:20,523 INFO kernel:pci 0000:00:18.1: bridge window [io 0xb000-0xbfff] -05:50:20,523 INFO kernel:pci 0000:00:18.1: bridge window [mem 0xd2b00000-0xd2bfffff] -05:50:20,523 INFO kernel:pci 0000:00:18.1: bridge window [mem 0xd4a00000-0xd4afffff 64bit pref] -05:50:20,523 INFO kernel:pci 0000:00:18.2: PCI bridge to [bus 1d-1d] -05:50:20,523 INFO kernel:pci 0000:00:18.2: PCI bridge to [bus 1d-1d] -05:50:20,523 INFO kernel:pci 0000:00:18.2: bridge window [io disabled] -05:50:20,523 INFO kernel:pci 0000:00:18.2: bridge window [mem 0xd2f00000-0xd2ffffff] -05:50:20,523 INFO kernel:pci 0000:00:18.2: bridge window [mem 0xd4c00000-0xd4cfffff 64bit pref] -05:50:20,523 INFO kernel:pci 0000:00:18.3: PCI bridge to [bus 1e-1e] -05:50:20,523 INFO kernel:pci 0000:00:18.3: PCI bridge to [bus 1e-1e] -05:50:20,523 INFO kernel:pci 0000:00:18.3: bridge window [io disabled] -05:50:20,523 INFO kernel:pci 0000:00:18.3: bridge window [mem 0xd3300000-0xd33fffff] -05:50:20,523 INFO kernel:pci 0000:00:18.3: bridge window [mem 0xd4e00000-0xd4efffff 64bit pref] -05:50:20,523 INFO kernel:pci 0000:00:18.4: PCI bridge to [bus 1f-1f] -05:50:20,523 INFO kernel:pci 0000:00:18.4: PCI bridge to [bus 1f-1f] -05:50:20,523 INFO kernel:pci 0000:00:18.4: bridge window [io disabled] -05:50:20,523 INFO kernel:pci 0000:00:18.4: bridge window [mem 0xd3700000-0xd37fffff] -05:50:20,523 INFO kernel:pci 0000:00:18.4: bridge window [mem 0xd5000000-0xd50fffff 64bit pref] -05:50:20,523 INFO kernel:pci 0000:00:18.5: PCI bridge to [bus 20-20] -05:50:20,523 INFO kernel:pci 0000:00:18.5: PCI bridge to [bus 20-20] -05:50:20,523 INFO kernel:pci 0000:00:18.5: bridge window [io disabled] -05:50:20,523 INFO kernel:pci 0000:00:18.5: bridge window [mem 0xd3b00000-0xd3bfffff] -05:50:20,523 INFO kernel:pci 0000:00:18.5: bridge window [mem 0xd5200000-0xd52fffff 64bit pref] -05:50:20,523 INFO kernel:pci 0000:00:18.6: PCI bridge to [bus 21-21] -05:50:20,523 INFO kernel:pci 0000:00:18.6: PCI bridge to [bus 21-21] -05:50:20,523 INFO kernel:pci 0000:00:18.6: bridge window [io disabled] -05:50:20,523 INFO kernel:pci 0000:00:18.6: bridge window [mem 0xd3f00000-0xd3ffffff] -05:50:20,523 INFO kernel:pci 0000:00:18.6: bridge window [mem 0xd5400000-0xd54fffff 64bit pref] -05:50:20,523 INFO kernel:pci 0000:00:18.7: PCI bridge to [bus 22-22] -05:50:20,523 INFO kernel:pci 0000:00:18.7: PCI bridge to [bus 22-22] -05:50:20,523 INFO kernel:pci 0000:00:18.7: bridge window [io disabled] -05:50:20,523 INFO kernel:pci 0000:00:18.7: bridge window [mem 0xd4300000-0xd43fffff] -05:50:20,523 INFO kernel:pci 0000:00:18.7: bridge window [mem 0xd5600000-0xd56fffff 64bit pref] -05:50:20,523 DEBUG kernel:pci 0000:00:01.0: setting latency timer to 64 -05:50:20,523 DEBUG kernel:pci 0000:00:15.0: setting latency timer to 64 -05:50:20,523 DEBUG kernel:pci 0000:00:15.1: setting latency timer to 64 -05:50:20,523 DEBUG kernel:pci 0000:00:15.2: setting latency timer to 64 -05:50:20,523 DEBUG kernel:pci 0000:00:15.3: setting latency timer to 64 -05:50:20,523 DEBUG kernel:pci 0000:00:15.4: setting latency timer to 64 -05:50:20,523 DEBUG kernel:pci 0000:00:15.5: setting latency timer to 64 -05:50:20,523 DEBUG kernel:pci 0000:00:15.6: setting latency timer to 64 -05:50:20,523 DEBUG kernel:pci 0000:00:15.7: setting latency timer to 64 -05:50:20,523 DEBUG kernel:pci 0000:00:16.0: setting latency timer to 64 -05:50:20,523 DEBUG kernel:pci 0000:00:16.1: setting latency timer to 64 -05:50:20,523 DEBUG kernel:pci 0000:00:16.2: setting latency timer to 64 -05:50:20,523 DEBUG kernel:pci 0000:00:16.3: setting latency timer to 64 -05:50:20,523 DEBUG kernel:pci 0000:00:16.4: setting latency timer to 64 -05:50:20,523 DEBUG kernel:pci 0000:00:16.5: setting latency timer to 64 -05:50:20,523 DEBUG kernel:pci 0000:00:16.6: setting latency timer to 64 -05:50:20,523 DEBUG kernel:pci 0000:00:16.7: setting latency timer to 64 -05:50:20,523 DEBUG kernel:pci 0000:00:17.0: setting latency timer to 64 -05:50:20,523 DEBUG kernel:pci 0000:00:17.1: setting latency timer to 64 -05:50:20,523 DEBUG kernel:pci 0000:00:17.2: setting latency timer to 64 -05:50:20,523 DEBUG kernel:pci 0000:00:17.3: setting latency timer to 64 -05:50:20,523 DEBUG kernel:pci 0000:00:17.4: setting latency timer to 64 -05:50:20,523 DEBUG kernel:pci 0000:00:17.5: setting latency timer to 64 -05:50:20,523 DEBUG kernel:pci 0000:00:17.6: setting latency timer to 64 -05:50:20,523 DEBUG kernel:pci 0000:00:17.7: setting latency timer to 64 -05:50:20,523 DEBUG kernel:pci 0000:00:18.0: setting latency timer to 64 -05:50:20,523 DEBUG kernel:pci 0000:00:18.1: setting latency timer to 64 -05:50:20,523 DEBUG kernel:pci 0000:00:18.2: setting latency timer to 64 -05:50:20,523 DEBUG kernel:pci 0000:00:18.3: setting latency timer to 64 -05:50:20,523 DEBUG kernel:pci 0000:00:18.4: setting latency timer to 64 -05:50:20,523 DEBUG kernel:pci 0000:00:18.5: setting latency timer to 64 -05:50:20,523 DEBUG kernel:pci 0000:00:18.6: setting latency timer to 64 -05:50:20,523 DEBUG kernel:pci 0000:00:18.7: setting latency timer to 64 -05:50:20,523 DEBUG kernel:pci_bus 0000:00: resource 4 [mem 0x000a0000-0x000bffff] -05:50:20,523 DEBUG kernel:pci_bus 0000:00: resource 5 [mem 0x000d0000-0x000d3fff] -05:50:20,523 DEBUG kernel:pci_bus 0000:00: resource 6 [mem 0x000d4000-0x000d7fff] -05:50:20,523 DEBUG kernel:pci_bus 0000:00: resource 7 [mem 0x000d8000-0x000dbfff] -05:50:20,523 DEBUG kernel:pci_bus 0000:00: resource 8 [mem 0x80000000-0xfebfffff] -05:50:20,523 DEBUG kernel:pci_bus 0000:00: resource 9 [io 0x0000-0x0cf7] -05:50:20,523 DEBUG kernel:pci_bus 0000:00: resource 10 [io 0x0d00-0xfeff] -05:50:20,523 DEBUG kernel:pci_bus 0000:02: resource 0 [io 0x2000-0x3fff] -05:50:20,523 DEBUG kernel:pci_bus 0000:02: resource 1 [mem 0xd1000000-0xd23fffff] -05:50:20,523 DEBUG kernel:pci_bus 0000:02: resource 2 [mem 0xdc400000-0xdc9fffff 64bit pref] -05:50:20,523 DEBUG kernel:pci_bus 0000:02: resource 4 [mem 0x000a0000-0x000bffff] -05:50:20,523 DEBUG kernel:pci_bus 0000:02: resource 5 [mem 0x000d0000-0x000d3fff] -05:50:20,523 DEBUG kernel:pci_bus 0000:02: resource 6 [mem 0x000d4000-0x000d7fff] -05:50:20,523 DEBUG kernel:pci_bus 0000:02: resource 7 [mem 0x000d8000-0x000dbfff] -05:50:20,523 DEBUG kernel:pci_bus 0000:02: resource 8 [mem 0x80000000-0xfebfffff] -05:50:20,523 DEBUG kernel:pci_bus 0000:02: resource 9 [io 0x0000-0x0cf7] -05:50:20,523 DEBUG kernel:pci_bus 0000:02: resource 10 [io 0x0d00-0xfeff] -05:50:20,523 DEBUG kernel:pci_bus 0000:03: resource 0 [io 0x4000-0x4fff] -05:50:20,523 DEBUG kernel:pci_bus 0000:03: resource 1 [mem 0xd2400000-0xd24fffff] -05:50:20,523 DEBUG kernel:pci_bus 0000:03: resource 2 [mem 0xd4400000-0xd44fffff 64bit pref] -05:50:20,523 DEBUG kernel:pci_bus 0000:04: resource 0 [io 0x8000-0x8fff] -05:50:20,523 DEBUG kernel:pci_bus 0000:04: resource 1 [mem 0xd2800000-0xd28fffff] -05:50:20,523 DEBUG kernel:pci_bus 0000:04: resource 2 [mem 0xd4800000-0xd48fffff 64bit pref] -05:50:20,523 DEBUG kernel:pci_bus 0000:05: resource 0 [io 0xc000-0xcfff] -05:50:20,523 DEBUG kernel:pci_bus 0000:05: resource 1 [mem 0xd2c00000-0xd2cfffff] -05:50:20,523 DEBUG kernel:pci_bus 0000:05: resource 2 [mem 0xdcb00000-0xdcbfffff 64bit pref] -05:50:20,523 DEBUG kernel:pci_bus 0000:06: resource 1 [mem 0xd3000000-0xd30fffff] -05:50:20,523 DEBUG kernel:pci_bus 0000:06: resource 2 [mem 0xdcd00000-0xdcdfffff 64bit pref] -05:50:20,523 DEBUG kernel:pci_bus 0000:07: resource 1 [mem 0xd3400000-0xd34fffff] -05:50:20,523 DEBUG kernel:pci_bus 0000:07: resource 2 [mem 0xdcf00000-0xdcffffff 64bit pref] -05:50:20,523 DEBUG kernel:pci_bus 0000:08: resource 1 [mem 0xd3800000-0xd38fffff] -05:50:20,523 DEBUG kernel:pci_bus 0000:08: resource 2 [mem 0xdd100000-0xdd1fffff 64bit pref] -05:50:20,523 DEBUG kernel:pci_bus 0000:09: resource 1 [mem 0xd3c00000-0xd3cfffff] -05:50:20,523 DEBUG kernel:pci_bus 0000:09: resource 2 [mem 0xdd300000-0xdd3fffff 64bit pref] -05:50:20,523 DEBUG kernel:pci_bus 0000:0a: resource 1 [mem 0xd4000000-0xd40fffff] -05:50:20,523 DEBUG kernel:pci_bus 0000:0a: resource 2 [mem 0xdd500000-0xdd5fffff 64bit pref] -05:50:20,523 DEBUG kernel:pci_bus 0000:0b: resource 0 [io 0x5000-0x5fff] -05:50:20,523 DEBUG kernel:pci_bus 0000:0b: resource 1 [mem 0xd2500000-0xd25fffff] -05:50:20,523 DEBUG kernel:pci_bus 0000:0b: resource 2 [mem 0xd4500000-0xd45fffff 64bit pref] -05:50:20,523 DEBUG kernel:pci_bus 0000:0c: resource 0 [io 0x9000-0x9fff] -05:50:20,523 DEBUG kernel:pci_bus 0000:0c: resource 1 [mem 0xd2900000-0xd29fffff] -05:50:20,523 DEBUG kernel:pci_bus 0000:0c: resource 2 [mem 0xd4900000-0xd49fffff 64bit pref] -05:50:20,523 DEBUG kernel:pci_bus 0000:0d: resource 0 [io 0xd000-0xdfff] -05:50:20,523 DEBUG kernel:pci_bus 0000:0d: resource 1 [mem 0xd2d00000-0xd2dfffff] -05:50:20,523 DEBUG kernel:pci_bus 0000:0d: resource 2 [mem 0xd4b00000-0xd4bfffff 64bit pref] -05:50:20,523 DEBUG kernel:pci_bus 0000:0e: resource 1 [mem 0xd3100000-0xd31fffff] -05:50:20,523 DEBUG kernel:pci_bus 0000:0e: resource 2 [mem 0xd4d00000-0xd4dfffff 64bit pref] -05:50:20,523 DEBUG kernel:pci_bus 0000:0f: resource 1 [mem 0xd3500000-0xd35fffff] -05:50:20,523 DEBUG kernel:pci_bus 0000:0f: resource 2 [mem 0xd4f00000-0xd4ffffff 64bit pref] -05:50:20,523 DEBUG kernel:pci_bus 0000:10: resource 1 [mem 0xd3900000-0xd39fffff] -05:50:20,523 DEBUG kernel:pci_bus 0000:10: resource 2 [mem 0xd5100000-0xd51fffff 64bit pref] -05:50:20,523 DEBUG kernel:pci_bus 0000:11: resource 1 [mem 0xd3d00000-0xd3dfffff] -05:50:20,523 DEBUG kernel:pci_bus 0000:11: resource 2 [mem 0xd5300000-0xd53fffff 64bit pref] -05:50:20,523 DEBUG kernel:pci_bus 0000:12: resource 1 [mem 0xd4100000-0xd41fffff] -05:50:20,523 DEBUG kernel:pci_bus 0000:12: resource 2 [mem 0xd5500000-0xd55fffff 64bit pref] -05:50:20,523 DEBUG kernel:pci_bus 0000:13: resource 0 [io 0x6000-0x6fff] -05:50:20,523 DEBUG kernel:pci_bus 0000:13: resource 1 [mem 0xd2600000-0xd26fffff] -05:50:20,523 DEBUG kernel:pci_bus 0000:13: resource 2 [mem 0xd4600000-0xd46fffff 64bit pref] -05:50:20,523 DEBUG kernel:pci_bus 0000:14: resource 0 [io 0xa000-0xafff] -05:50:20,523 DEBUG kernel:pci_bus 0000:14: resource 1 [mem 0xd2a00000-0xd2afffff] -05:50:20,523 DEBUG kernel:pci_bus 0000:14: resource 2 [mem 0xdca00000-0xdcafffff 64bit pref] -05:50:20,523 DEBUG kernel:pci_bus 0000:15: resource 0 [io 0xe000-0xefff] -05:50:20,523 DEBUG kernel:pci_bus 0000:15: resource 1 [mem 0xd2e00000-0xd2efffff] -05:50:20,523 DEBUG kernel:pci_bus 0000:15: resource 2 [mem 0xdcc00000-0xdccfffff 64bit pref] -05:50:20,523 DEBUG kernel:pci_bus 0000:16: resource 1 [mem 0xd3200000-0xd32fffff] -05:50:20,523 DEBUG kernel:pci_bus 0000:16: resource 2 [mem 0xdce00000-0xdcefffff 64bit pref] -05:50:20,523 DEBUG kernel:pci_bus 0000:17: resource 1 [mem 0xd3600000-0xd36fffff] -05:50:20,523 DEBUG kernel:pci_bus 0000:17: resource 2 [mem 0xdd000000-0xdd0fffff 64bit pref] -05:50:20,523 DEBUG kernel:pci_bus 0000:18: resource 1 [mem 0xd3a00000-0xd3afffff] -05:50:20,523 DEBUG kernel:pci_bus 0000:18: resource 2 [mem 0xdd200000-0xdd2fffff 64bit pref] -05:50:20,523 DEBUG kernel:pci_bus 0000:19: resource 1 [mem 0xd3e00000-0xd3efffff] -05:50:20,523 DEBUG kernel:pci_bus 0000:19: resource 2 [mem 0xdd400000-0xdd4fffff 64bit pref] -05:50:20,524 DEBUG kernel:pci_bus 0000:1a: resource 1 [mem 0xd4200000-0xd42fffff] -05:50:20,524 DEBUG kernel:pci_bus 0000:1a: resource 2 [mem 0xdd600000-0xdd6fffff 64bit pref] -05:50:20,524 DEBUG kernel:pci_bus 0000:1b: resource 0 [io 0x7000-0x7fff] -05:50:20,524 DEBUG kernel:pci_bus 0000:1b: resource 1 [mem 0xd2700000-0xd27fffff] -05:50:20,524 DEBUG kernel:pci_bus 0000:1b: resource 2 [mem 0xd4700000-0xd47fffff 64bit pref] -05:50:20,524 DEBUG kernel:pci_bus 0000:1c: resource 0 [io 0xb000-0xbfff] -05:50:20,524 DEBUG kernel:pci_bus 0000:1c: resource 1 [mem 0xd2b00000-0xd2bfffff] -05:50:20,524 DEBUG kernel:pci_bus 0000:1c: resource 2 [mem 0xd4a00000-0xd4afffff 64bit pref] -05:50:20,524 DEBUG kernel:pci_bus 0000:1d: resource 1 [mem 0xd2f00000-0xd2ffffff] -05:50:20,524 DEBUG kernel:pci_bus 0000:1d: resource 2 [mem 0xd4c00000-0xd4cfffff 64bit pref] -05:50:20,524 DEBUG kernel:pci_bus 0000:1e: resource 1 [mem 0xd3300000-0xd33fffff] -05:50:20,524 DEBUG kernel:pci_bus 0000:1e: resource 2 [mem 0xd4e00000-0xd4efffff 64bit pref] -05:50:20,524 DEBUG kernel:pci_bus 0000:1f: resource 1 [mem 0xd3700000-0xd37fffff] -05:50:20,524 DEBUG kernel:pci_bus 0000:1f: resource 2 [mem 0xd5000000-0xd50fffff 64bit pref] -05:50:20,524 DEBUG kernel:pci_bus 0000:20: resource 1 [mem 0xd3b00000-0xd3bfffff] -05:50:20,524 DEBUG kernel:pci_bus 0000:20: resource 2 [mem 0xd5200000-0xd52fffff 64bit pref] -05:50:20,524 DEBUG kernel:pci_bus 0000:21: resource 1 [mem 0xd3f00000-0xd3ffffff] -05:50:20,524 DEBUG kernel:pci_bus 0000:21: resource 2 [mem 0xd5400000-0xd54fffff 64bit pref] -05:50:20,524 DEBUG kernel:pci_bus 0000:22: resource 1 [mem 0xd4300000-0xd43fffff] -05:50:20,524 DEBUG kernel:pci_bus 0000:22: resource 2 [mem 0xd5600000-0xd56fffff 64bit pref] -05:50:20,524 INFO kernel:NET: Registered protocol family 2 -05:50:20,524 INFO kernel:IP route cache hash table entries: 65536 (order: 7, 524288 bytes) -05:50:20,524 INFO kernel:TCP established hash table entries: 262144 (order: 10, 4194304 bytes) -05:50:20,524 INFO kernel:TCP bind hash table entries: 65536 (order: 8, 1048576 bytes) -05:50:20,524 INFO kernel:TCP: Hash tables configured (established 262144 bind 65536) -05:50:20,524 INFO kernel:TCP reno registered -05:50:20,524 INFO kernel:NET: Registered protocol family 1 -05:50:20,524 INFO kernel:pci 0000:00:00.0: Limiting direct PCI/PCI transfers -05:50:20,524 DEBUG kernel:pci 0000:00:0f.0: Boot video device -05:50:20,524 INFO kernel:Trying to unpack rootfs image as initramfs... -05:50:20,524 INFO kernel:Freeing initrd memory: 32601k freed -05:50:20,524 INFO kernel:Simple Boot Flag at 0x36 set to 0x80 -05:50:20,524 INFO kernel:audit: initializing netlink socket (disabled) -05:50:20,524 NOTICE kernel:type=2000 audit(1021096218.805:1): initialized -05:50:20,524 INFO kernel:HugeTLB registered 2 MB page size, pre-allocated 0 pages -05:50:20,524 NOTICE kernel:VFS: Disk quotas dquot_6.5.2 -05:50:20,524 WARNING kernel:Dquot-cache hash table entries: 512 (order 0, 4096 bytes) -05:50:20,524 INFO kernel:msgmni has been set to 4005 -05:50:20,526 DEBUG kernel:SELinux: Registering netfilter hooks -05:50:20,526 INFO kernel:alg: No test for stdrng (krng) -05:50:20,526 WARNING kernel:ksign: Installing public key data -05:50:20,526 WARNING kernel:Loading keyring -05:50:20,526 WARNING kernel:- Added public key 8A44323FB303E068 -05:50:20,526 WARNING kernel: - key was been created 363988241 seconds in future -05:50:20,526 WARNING kernel:- User ID: CentOS (Kernel Module GPG key) -05:50:20,526 INFO kernel:Block layer SCSI generic (bsg) driver version 0.4 loaded (major 251) -05:50:20,526 INFO kernel:io scheduler noop registered -05:50:20,526 INFO kernel:io scheduler anticipatory registered -05:50:20,526 INFO kernel:io scheduler deadline registered -05:50:20,526 INFO kernel:io scheduler cfq registered (default) -05:50:20,526 DEBUG kernel:pcieport 0000:00:15.0: setting latency timer to 64 -05:50:20,526 DEBUG kernel: alloc irq_desc for 24 on node -1 -05:50:20,526 DEBUG kernel: alloc kstat_irqs on node -1 -05:50:20,526 DEBUG kernel:pcieport 0000:00:15.0: irq 24 for MSI/MSI-X -05:50:20,526 DEBUG kernel:pcieport 0000:00:15.1: setting latency timer to 64 -05:50:20,526 DEBUG kernel: alloc irq_desc for 25 on node -1 -05:50:20,526 DEBUG kernel: alloc kstat_irqs on node -1 -05:50:20,526 DEBUG kernel:pcieport 0000:00:15.1: irq 25 for MSI/MSI-X -05:50:20,526 DEBUG kernel:pcieport 0000:00:15.2: setting latency timer to 64 -05:50:20,526 DEBUG kernel: alloc irq_desc for 26 on node -1 -05:50:20,526 DEBUG kernel: alloc kstat_irqs on node -1 -05:50:20,526 DEBUG kernel:pcieport 0000:00:15.2: irq 26 for MSI/MSI-X -05:50:20,526 DEBUG kernel:pcieport 0000:00:15.3: setting latency timer to 64 -05:50:20,526 DEBUG kernel: alloc irq_desc for 27 on node -1 -05:50:20,526 DEBUG kernel: alloc kstat_irqs on node -1 -05:50:20,526 DEBUG kernel:pcieport 0000:00:15.3: irq 27 for MSI/MSI-X -05:50:20,526 DEBUG kernel:pcieport 0000:00:15.4: setting latency timer to 64 -05:50:20,526 DEBUG kernel: alloc irq_desc for 28 on node -1 -05:50:20,526 DEBUG kernel: alloc kstat_irqs on node -1 -05:50:20,526 DEBUG kernel:pcieport 0000:00:15.4: irq 28 for MSI/MSI-X -05:50:20,526 DEBUG kernel:pcieport 0000:00:15.5: setting latency timer to 64 -05:50:20,526 DEBUG kernel: alloc irq_desc for 29 on node -1 -05:50:20,526 DEBUG kernel: alloc kstat_irqs on node -1 -05:50:20,526 DEBUG kernel:pcieport 0000:00:15.5: irq 29 for MSI/MSI-X -05:50:20,526 DEBUG kernel:pcieport 0000:00:15.6: setting latency timer to 64 -05:50:20,526 DEBUG kernel: alloc irq_desc for 30 on node -1 -05:50:20,526 DEBUG kernel: alloc kstat_irqs on node -1 -05:50:20,526 DEBUG kernel:pcieport 0000:00:15.6: irq 30 for MSI/MSI-X -05:50:20,526 DEBUG kernel:pcieport 0000:00:15.7: setting latency timer to 64 -05:50:20,526 DEBUG kernel: alloc irq_desc for 31 on node -1 -05:50:20,526 DEBUG kernel: alloc kstat_irqs on node -1 -05:50:20,526 DEBUG kernel:pcieport 0000:00:15.7: irq 31 for MSI/MSI-X -05:50:20,526 DEBUG kernel:pcieport 0000:00:16.0: setting latency timer to 64 -05:50:20,526 DEBUG kernel: alloc irq_desc for 32 on node -1 -05:50:20,526 DEBUG kernel: alloc kstat_irqs on node -1 -05:50:20,526 DEBUG kernel:pcieport 0000:00:16.0: irq 32 for MSI/MSI-X -05:50:20,526 DEBUG kernel:pcieport 0000:00:16.1: setting latency timer to 64 -05:50:20,526 DEBUG kernel: alloc irq_desc for 33 on node -1 -05:50:20,526 DEBUG kernel: alloc kstat_irqs on node -1 -05:50:20,526 DEBUG kernel:pcieport 0000:00:16.1: irq 33 for MSI/MSI-X -05:50:20,526 DEBUG kernel:pcieport 0000:00:16.2: setting latency timer to 64 -05:50:20,526 DEBUG kernel: alloc irq_desc for 34 on node -1 -05:50:20,526 DEBUG kernel: alloc kstat_irqs on node -1 -05:50:20,526 DEBUG kernel:pcieport 0000:00:16.2: irq 34 for MSI/MSI-X -05:50:20,526 DEBUG kernel:pcieport 0000:00:16.3: setting latency timer to 64 -05:50:20,526 DEBUG kernel: alloc irq_desc for 35 on node -1 -05:50:20,526 DEBUG kernel: alloc kstat_irqs on node -1 -05:50:20,526 DEBUG kernel:pcieport 0000:00:16.3: irq 35 for MSI/MSI-X -05:50:20,526 DEBUG kernel:pcieport 0000:00:16.4: setting latency timer to 64 -05:50:20,526 DEBUG kernel: alloc irq_desc for 36 on node -1 -05:50:20,526 DEBUG kernel: alloc kstat_irqs on node -1 -05:50:20,526 DEBUG kernel:pcieport 0000:00:16.4: irq 36 for MSI/MSI-X -05:50:20,526 DEBUG kernel:pcieport 0000:00:16.5: setting latency timer to 64 -05:50:20,526 DEBUG kernel: alloc irq_desc for 37 on node -1 -05:50:20,526 DEBUG kernel: alloc kstat_irqs on node -1 -05:50:20,526 DEBUG kernel:pcieport 0000:00:16.5: irq 37 for MSI/MSI-X -05:50:20,526 DEBUG kernel:pcieport 0000:00:16.6: setting latency timer to 64 -05:50:20,526 DEBUG kernel: alloc irq_desc for 38 on node -1 -05:50:20,526 DEBUG kernel: alloc kstat_irqs on node -1 -05:50:20,526 DEBUG kernel:pcieport 0000:00:16.6: irq 38 for MSI/MSI-X -05:50:20,526 DEBUG kernel:pcieport 0000:00:16.7: setting latency timer to 64 -05:50:20,526 DEBUG kernel: alloc irq_desc for 39 on node -1 -05:50:20,526 DEBUG kernel: alloc kstat_irqs on node -1 -05:50:20,526 DEBUG kernel:pcieport 0000:00:16.7: irq 39 for MSI/MSI-X -05:50:20,526 DEBUG kernel:pcieport 0000:00:17.0: setting latency timer to 64 -05:50:20,526 DEBUG kernel: alloc irq_desc for 40 on node -1 -05:50:20,526 DEBUG kernel: alloc kstat_irqs on node -1 -05:50:20,526 DEBUG kernel:pcieport 0000:00:17.0: irq 40 for MSI/MSI-X -05:50:20,526 DEBUG kernel:pcieport 0000:00:17.1: setting latency timer to 64 -05:50:20,526 DEBUG kernel: alloc irq_desc for 41 on node -1 -05:50:20,526 DEBUG kernel: alloc kstat_irqs on node -1 -05:50:20,526 DEBUG kernel:pcieport 0000:00:17.1: irq 41 for MSI/MSI-X -05:50:20,526 DEBUG kernel:pcieport 0000:00:17.2: setting latency timer to 64 -05:50:20,526 DEBUG kernel: alloc irq_desc for 42 on node -1 -05:50:20,526 DEBUG kernel: alloc kstat_irqs on node -1 -05:50:20,526 DEBUG kernel:pcieport 0000:00:17.2: irq 42 for MSI/MSI-X -05:50:20,526 DEBUG kernel:pcieport 0000:00:17.3: setting latency timer to 64 -05:50:20,526 DEBUG kernel: alloc irq_desc for 43 on node -1 -05:50:20,526 DEBUG kernel: alloc kstat_irqs on node -1 -05:50:20,526 DEBUG kernel:pcieport 0000:00:17.3: irq 43 for MSI/MSI-X -05:50:20,526 DEBUG kernel:pcieport 0000:00:17.4: setting latency timer to 64 -05:50:20,526 DEBUG kernel: alloc irq_desc for 44 on node -1 -05:50:20,526 DEBUG kernel: alloc kstat_irqs on node -1 -05:50:20,526 DEBUG kernel:pcieport 0000:00:17.4: irq 44 for MSI/MSI-X -05:50:20,526 DEBUG kernel:pcieport 0000:00:17.5: setting latency timer to 64 -05:50:20,526 DEBUG kernel: alloc irq_desc for 45 on node -1 -05:50:20,526 DEBUG kernel: alloc kstat_irqs on node -1 -05:50:20,526 DEBUG kernel:pcieport 0000:00:17.5: irq 45 for MSI/MSI-X -05:50:20,526 DEBUG kernel:pcieport 0000:00:17.6: setting latency timer to 64 -05:50:20,526 DEBUG kernel: alloc irq_desc for 46 on node -1 -05:50:20,526 DEBUG kernel: alloc kstat_irqs on node -1 -05:50:20,526 DEBUG kernel:pcieport 0000:00:17.6: irq 46 for MSI/MSI-X -05:50:20,526 DEBUG kernel:pcieport 0000:00:17.7: setting latency timer to 64 -05:50:20,526 DEBUG kernel: alloc irq_desc for 47 on node -1 -05:50:20,526 DEBUG kernel: alloc kstat_irqs on node -1 -05:50:20,526 DEBUG kernel:pcieport 0000:00:17.7: irq 47 for MSI/MSI-X -05:50:20,526 DEBUG kernel:pcieport 0000:00:18.0: setting latency timer to 64 -05:50:20,526 DEBUG kernel: alloc irq_desc for 48 on node -1 -05:50:20,526 DEBUG kernel: alloc kstat_irqs on node -1 -05:50:20,526 DEBUG kernel:pcieport 0000:00:18.0: irq 48 for MSI/MSI-X -05:50:20,526 DEBUG kernel:pcieport 0000:00:18.1: setting latency timer to 64 -05:50:20,526 DEBUG kernel: alloc irq_desc for 49 on node -1 -05:50:20,526 DEBUG kernel: alloc kstat_irqs on node -1 -05:50:20,526 DEBUG kernel:pcieport 0000:00:18.1: irq 49 for MSI/MSI-X -05:50:20,526 DEBUG kernel:pcieport 0000:00:18.2: setting latency timer to 64 -05:50:20,526 DEBUG kernel: alloc irq_desc for 50 on node -1 -05:50:20,526 DEBUG kernel: alloc kstat_irqs on node -1 -05:50:20,526 DEBUG kernel:pcieport 0000:00:18.2: irq 50 for MSI/MSI-X -05:50:20,526 DEBUG kernel:pcieport 0000:00:18.3: setting latency timer to 64 -05:50:20,526 DEBUG kernel: alloc irq_desc for 51 on node -1 -05:50:20,526 DEBUG kernel: alloc kstat_irqs on node -1 -05:50:20,526 DEBUG kernel:pcieport 0000:00:18.3: irq 51 for MSI/MSI-X -05:50:20,526 DEBUG kernel:pcieport 0000:00:18.4: setting latency timer to 64 -05:50:20,526 DEBUG kernel: alloc irq_desc for 52 on node -1 -05:50:20,526 DEBUG kernel: alloc kstat_irqs on node -1 -05:50:20,526 DEBUG kernel:pcieport 0000:00:18.4: irq 52 for MSI/MSI-X -05:50:20,526 DEBUG kernel:pcieport 0000:00:18.5: setting latency timer to 64 -05:50:20,526 DEBUG kernel: alloc irq_desc for 53 on node -1 -05:50:20,526 DEBUG kernel: alloc kstat_irqs on node -1 -05:50:20,526 DEBUG kernel:pcieport 0000:00:18.5: irq 53 for MSI/MSI-X -05:50:20,526 DEBUG kernel:pcieport 0000:00:18.6: setting latency timer to 64 -05:50:20,526 DEBUG kernel: alloc irq_desc for 54 on node -1 -05:50:20,526 DEBUG kernel: alloc kstat_irqs on node -1 -05:50:20,526 DEBUG kernel:pcieport 0000:00:18.6: irq 54 for MSI/MSI-X -05:50:20,526 DEBUG kernel:pcieport 0000:00:18.7: setting latency timer to 64 -05:50:20,526 DEBUG kernel: alloc irq_desc for 55 on node -1 -05:50:20,526 DEBUG kernel: alloc kstat_irqs on node -1 -05:50:20,526 DEBUG kernel:pcieport 0000:00:18.7: irq 55 for MSI/MSI-X -05:50:20,526 INFO kernel:pci_hotplug: PCI Hot Plug PCI Core version: 0.5 -05:50:20,526 INFO kernel:pciehp 0000:00:15.0:pcie04: HPC vendor_id 15ad device_id 7a0 ss_vid 0 ss_did 0 -05:50:20,526 DEBUG kernel:pciehp 0000:00:15.0:pcie04: service driver pciehp loaded -05:50:20,526 INFO kernel:pciehp 0000:00:15.1:pcie04: HPC vendor_id 15ad device_id 7a0 ss_vid 0 ss_did 0 -05:50:20,526 DEBUG kernel:pciehp 0000:00:15.1:pcie04: service driver pciehp loaded -05:50:20,526 INFO kernel:pciehp 0000:00:15.2:pcie04: HPC vendor_id 15ad device_id 7a0 ss_vid 0 ss_did 0 -05:50:20,526 DEBUG kernel:pciehp 0000:00:15.2:pcie04: service driver pciehp loaded -05:50:20,526 INFO kernel:pciehp 0000:00:15.3:pcie04: HPC vendor_id 15ad device_id 7a0 ss_vid 0 ss_did 0 -05:50:20,526 DEBUG kernel:pciehp 0000:00:15.3:pcie04: service driver pciehp loaded -05:50:20,526 INFO kernel:pciehp 0000:00:15.4:pcie04: HPC vendor_id 15ad device_id 7a0 ss_vid 0 ss_did 0 -05:50:20,526 DEBUG kernel:pciehp 0000:00:15.4:pcie04: service driver pciehp loaded -05:50:20,526 INFO kernel:pciehp 0000:00:15.5:pcie04: HPC vendor_id 15ad device_id 7a0 ss_vid 0 ss_did 0 -05:50:20,526 DEBUG kernel:pciehp 0000:00:15.5:pcie04: service driver pciehp loaded -05:50:20,526 INFO kernel:pciehp 0000:00:15.6:pcie04: HPC vendor_id 15ad device_id 7a0 ss_vid 0 ss_did 0 -05:50:20,526 DEBUG kernel:pciehp 0000:00:15.6:pcie04: service driver pciehp loaded -05:50:20,526 INFO kernel:pciehp 0000:00:15.7:pcie04: HPC vendor_id 15ad device_id 7a0 ss_vid 0 ss_did 0 -05:50:20,526 DEBUG kernel:pciehp 0000:00:15.7:pcie04: service driver pciehp loaded -05:50:20,526 INFO kernel:pciehp 0000:00:16.0:pcie04: HPC vendor_id 15ad device_id 7a0 ss_vid 0 ss_did 0 -05:50:20,526 DEBUG kernel:pciehp 0000:00:16.0:pcie04: service driver pciehp loaded -05:50:20,526 INFO kernel:pciehp 0000:00:16.1:pcie04: HPC vendor_id 15ad device_id 7a0 ss_vid 0 ss_did 0 -05:50:20,526 DEBUG kernel:pciehp 0000:00:16.1:pcie04: service driver pciehp loaded -05:50:20,526 INFO kernel:pciehp 0000:00:16.2:pcie04: HPC vendor_id 15ad device_id 7a0 ss_vid 0 ss_did 0 -05:50:20,526 DEBUG kernel:pciehp 0000:00:16.2:pcie04: service driver pciehp loaded -05:50:20,526 INFO kernel:pciehp 0000:00:16.3:pcie04: HPC vendor_id 15ad device_id 7a0 ss_vid 0 ss_did 0 -05:50:20,526 DEBUG kernel:pciehp 0000:00:16.3:pcie04: service driver pciehp loaded -05:50:20,526 INFO kernel:pciehp 0000:00:16.4:pcie04: HPC vendor_id 15ad device_id 7a0 ss_vid 0 ss_did 0 -05:50:20,526 DEBUG kernel:pciehp 0000:00:16.4:pcie04: service driver pciehp loaded -05:50:20,526 INFO kernel:pciehp 0000:00:16.5:pcie04: HPC vendor_id 15ad device_id 7a0 ss_vid 0 ss_did 0 -05:50:20,526 DEBUG kernel:pciehp 0000:00:16.5:pcie04: service driver pciehp loaded -05:50:20,526 INFO kernel:pciehp 0000:00:16.6:pcie04: HPC vendor_id 15ad device_id 7a0 ss_vid 0 ss_did 0 -05:50:20,526 DEBUG kernel:pciehp 0000:00:16.6:pcie04: service driver pciehp loaded -05:50:20,526 INFO kernel:pciehp 0000:00:16.7:pcie04: HPC vendor_id 15ad device_id 7a0 ss_vid 0 ss_did 0 -05:50:20,526 DEBUG kernel:pciehp 0000:00:16.7:pcie04: service driver pciehp loaded -05:50:20,526 INFO kernel:pciehp 0000:00:17.0:pcie04: HPC vendor_id 15ad device_id 7a0 ss_vid 0 ss_did 0 -05:50:20,526 DEBUG kernel:pciehp 0000:00:17.0:pcie04: service driver pciehp loaded -05:50:20,526 INFO kernel:pciehp 0000:00:17.1:pcie04: HPC vendor_id 15ad device_id 7a0 ss_vid 0 ss_did 0 -05:50:20,526 DEBUG kernel:pciehp 0000:00:17.1:pcie04: service driver pciehp loaded -05:50:20,526 INFO kernel:pciehp 0000:00:17.2:pcie04: HPC vendor_id 15ad device_id 7a0 ss_vid 0 ss_did 0 -05:50:20,526 DEBUG kernel:pciehp 0000:00:17.2:pcie04: service driver pciehp loaded -05:50:20,526 INFO kernel:pciehp 0000:00:17.3:pcie04: HPC vendor_id 15ad device_id 7a0 ss_vid 0 ss_did 0 -05:50:20,526 DEBUG kernel:pciehp 0000:00:17.3:pcie04: service driver pciehp loaded -05:50:20,526 INFO kernel:pciehp 0000:00:17.4:pcie04: HPC vendor_id 15ad device_id 7a0 ss_vid 0 ss_did 0 -05:50:20,526 DEBUG kernel:pciehp 0000:00:17.4:pcie04: service driver pciehp loaded -05:50:20,526 INFO kernel:pciehp 0000:00:17.5:pcie04: HPC vendor_id 15ad device_id 7a0 ss_vid 0 ss_did 0 -05:50:20,526 DEBUG kernel:pciehp 0000:00:17.5:pcie04: service driver pciehp loaded -05:50:20,526 INFO kernel:pciehp 0000:00:17.6:pcie04: HPC vendor_id 15ad device_id 7a0 ss_vid 0 ss_did 0 -05:50:20,526 DEBUG kernel:pciehp 0000:00:17.6:pcie04: service driver pciehp loaded -05:50:20,526 INFO kernel:pciehp 0000:00:17.7:pcie04: HPC vendor_id 15ad device_id 7a0 ss_vid 0 ss_did 0 -05:50:20,526 DEBUG kernel:pciehp 0000:00:17.7:pcie04: service driver pciehp loaded -05:50:20,526 INFO kernel:pciehp 0000:00:18.0:pcie04: HPC vendor_id 15ad device_id 7a0 ss_vid 0 ss_did 0 -05:50:20,526 DEBUG kernel:pciehp 0000:00:18.0:pcie04: service driver pciehp loaded -05:50:20,526 INFO kernel:pciehp 0000:00:18.1:pcie04: HPC vendor_id 15ad device_id 7a0 ss_vid 0 ss_did 0 -05:50:20,526 DEBUG kernel:pciehp 0000:00:18.1:pcie04: service driver pciehp loaded -05:50:20,526 INFO kernel:pciehp 0000:00:18.2:pcie04: HPC vendor_id 15ad device_id 7a0 ss_vid 0 ss_did 0 -05:50:20,526 DEBUG kernel:pciehp 0000:00:18.2:pcie04: service driver pciehp loaded -05:50:20,526 INFO kernel:pciehp 0000:00:18.3:pcie04: HPC vendor_id 15ad device_id 7a0 ss_vid 0 ss_did 0 -05:50:20,526 DEBUG kernel:pciehp 0000:00:18.3:pcie04: service driver pciehp loaded -05:50:20,526 INFO kernel:pciehp 0000:00:18.4:pcie04: HPC vendor_id 15ad device_id 7a0 ss_vid 0 ss_did 0 -05:50:20,526 DEBUG kernel:pciehp 0000:00:18.4:pcie04: service driver pciehp loaded -05:50:20,526 INFO kernel:pciehp 0000:00:18.5:pcie04: HPC vendor_id 15ad device_id 7a0 ss_vid 0 ss_did 0 -05:50:20,526 DEBUG kernel:pciehp 0000:00:18.5:pcie04: service driver pciehp loaded -05:50:20,526 INFO kernel:pciehp 0000:00:18.6:pcie04: HPC vendor_id 15ad device_id 7a0 ss_vid 0 ss_did 0 -05:50:20,526 DEBUG kernel:pciehp 0000:00:18.6:pcie04: service driver pciehp loaded -05:50:20,526 INFO kernel:pciehp 0000:00:18.7:pcie04: HPC vendor_id 15ad device_id 7a0 ss_vid 0 ss_did 0 -05:50:20,526 DEBUG kernel:pciehp 0000:00:18.7:pcie04: service driver pciehp loaded -05:50:20,526 INFO kernel:pciehp: PCI Express Hot Plug Controller Driver version: 0.4 -05:50:20,526 INFO kernel:acpiphp: ACPI Hot Plug PCI Controller Driver version: 0.5 -05:50:20,526 INFO kernel:acpiphp: Slot [32] registered -05:50:20,526 INFO kernel:acpiphp: Slot [33] registered -05:50:20,526 INFO kernel:acpiphp: Slot [34] registered -05:50:20,526 INFO kernel:acpiphp: Slot [35] registered -05:50:20,526 INFO kernel:acpiphp: Slot [36] registered -05:50:20,526 INFO kernel:acpiphp: Slot [37] registered -05:50:20,526 INFO kernel:acpiphp: Slot [38] registered -05:50:20,527 INFO kernel:acpiphp: Slot [39] registered -05:50:20,527 INFO kernel:acpiphp: Slot [40] registered -05:50:20,527 INFO kernel:acpiphp: Slot [41] registered -05:50:20,527 INFO kernel:acpiphp: Slot [42] registered -05:50:20,527 INFO kernel:acpiphp: Slot [43] registered -05:50:20,527 INFO kernel:acpiphp: Slot [44] registered -05:50:20,527 INFO kernel:acpiphp: Slot [45] registered -05:50:20,527 INFO kernel:acpiphp: Slot [46] registered -05:50:20,527 INFO kernel:acpiphp: Slot [47] registered -05:50:20,527 INFO kernel:acpiphp: Slot [48] registered -05:50:20,527 INFO kernel:acpiphp: Slot [49] registered -05:50:20,527 INFO kernel:acpiphp: Slot [50] registered -05:50:20,527 INFO kernel:acpiphp: Slot [51] registered -05:50:20,527 INFO kernel:acpiphp: Slot [52] registered -05:50:20,527 INFO kernel:acpiphp: Slot [53] registered -05:50:20,527 INFO kernel:acpiphp: Slot [54] registered -05:50:20,527 INFO kernel:acpiphp: Slot [55] registered -05:50:20,527 INFO kernel:acpiphp: Slot [56] registered -05:50:20,527 INFO kernel:acpiphp: Slot [57] registered -05:50:20,527 INFO kernel:acpiphp: Slot [58] registered -05:50:20,527 INFO kernel:acpiphp: Slot [59] registered -05:50:20,527 INFO kernel:acpiphp: Slot [60] registered -05:50:20,527 INFO kernel:acpiphp: Slot [61] registered -05:50:20,527 INFO kernel:acpiphp: Slot [62] registered -05:50:20,527 INFO kernel:acpiphp: Slot [63] registered -05:50:20,527 WARNING kernel:acpiphp_glue: Slot 160 already registered by another hotplug driver -05:50:20,527 WARNING kernel:acpiphp_glue: Slot 192 already registered by another hotplug driver -05:50:20,527 WARNING kernel:acpiphp_glue: Slot 224 already registered by another hotplug driver -05:50:20,527 WARNING kernel:acpiphp_glue: Slot 256 already registered by another hotplug driver -05:50:20,527 WARNING kernel:acpiphp_glue: Slot 161 already registered by another hotplug driver -05:50:20,527 WARNING kernel:acpiphp_glue: Slot 162 already registered by another hotplug driver -05:50:20,527 WARNING kernel:acpiphp_glue: Slot 163 already registered by another hotplug driver -05:50:20,527 WARNING kernel:acpiphp_glue: Slot 164 already registered by another hotplug driver -05:50:20,527 WARNING kernel:acpiphp_glue: Slot 165 already registered by another hotplug driver -05:50:20,527 WARNING kernel:acpiphp_glue: Slot 166 already registered by another hotplug driver -05:50:20,527 WARNING kernel:acpiphp_glue: Slot 167 already registered by another hotplug driver -05:50:20,527 WARNING kernel:acpiphp_glue: Slot 193 already registered by another hotplug driver -05:50:20,527 WARNING kernel:acpiphp_glue: Slot 194 already registered by another hotplug driver -05:50:20,527 WARNING kernel:acpiphp_glue: Slot 195 already registered by another hotplug driver -05:50:20,527 WARNING kernel:acpiphp_glue: Slot 196 already registered by another hotplug driver -05:50:20,527 WARNING kernel:acpiphp_glue: Slot 197 already registered by another hotplug driver -05:50:20,527 WARNING kernel:acpiphp_glue: Slot 198 already registered by another hotplug driver -05:50:20,527 WARNING kernel:acpiphp_glue: Slot 199 already registered by another hotplug driver -05:50:20,527 WARNING kernel:acpiphp_glue: Slot 225 already registered by another hotplug driver -05:50:20,527 WARNING kernel:acpiphp_glue: Slot 226 already registered by another hotplug driver -05:50:20,527 WARNING kernel:acpiphp_glue: Slot 227 already registered by another hotplug driver -05:50:20,527 WARNING kernel:acpiphp_glue: Slot 228 already registered by another hotplug driver -05:50:20,527 WARNING kernel:acpiphp_glue: Slot 229 already registered by another hotplug driver -05:50:20,527 WARNING kernel:acpiphp_glue: Slot 230 already registered by another hotplug driver -05:50:20,527 WARNING kernel:acpiphp_glue: Slot 231 already registered by another hotplug driver -05:50:20,527 WARNING kernel:acpiphp_glue: Slot 257 already registered by another hotplug driver -05:50:20,527 WARNING kernel:acpiphp_glue: Slot 258 already registered by another hotplug driver -05:50:20,527 WARNING kernel:acpiphp_glue: Slot 259 already registered by another hotplug driver -05:50:20,527 WARNING kernel:acpiphp_glue: Slot 260 already registered by another hotplug driver -05:50:20,527 WARNING kernel:acpiphp_glue: Slot 261 already registered by another hotplug driver -05:50:20,527 WARNING kernel:acpiphp_glue: Slot 262 already registered by another hotplug driver -05:50:20,527 WARNING kernel:acpiphp_glue: Slot 263 already registered by another hotplug driver -05:50:20,527 INFO kernel:ipmi message handler version 39.2 -05:50:20,527 INFO kernel:IPMI System Interface driver. -05:50:20,527 INFO kernel:ipmi_si: Adding default-specified kcs state machine -05:50:20,527 INFO kernel:ipmi_si: Trying default-specified kcs state machine at i/o address 0xca2, slave address 0x0, irq 0 -05:50:20,527 INFO kernel:ipmi_si: Interface detection failed -05:50:20,527 INFO kernel:ipmi_si: Adding default-specified smic state machine -05:50:20,527 INFO kernel:ipmi_si: Trying default-specified smic state machine at i/o address 0xca9, slave address 0x0, irq 0 -05:50:20,527 INFO kernel:ipmi_si: Interface detection failed -05:50:20,527 INFO kernel:ipmi_si: Adding default-specified bt state machine -05:50:20,527 INFO kernel:ipmi_si: Trying default-specified bt state machine at i/o address 0xe4, slave address 0x0, irq 0 -05:50:20,527 INFO kernel:ipmi_si: Interface detection failed -05:50:20,527 WARNING kernel:ipmi_si: Unable to find any System Interface(s) -05:50:20,527 INFO kernel:ACPI: AC Adapter [ACAD] (on-line) -05:50:20,527 INFO kernel:input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input0 -05:50:20,527 INFO kernel:ACPI: Power Button [PWRF] -05:50:20,527 DEBUG kernel:ACPI: acpi_idle registered with cpuidle -05:50:20,527 WARNING kernel:ACPI Exception: AE_NOT_FOUND, No or invalid critical threshold (20090903/thermal-386) -05:50:20,527 INFO kernel:GHES: HEST is not enabled! -05:50:20,527 INFO kernel:Non-volatile memory driver v1.3 -05:50:20,527 INFO kernel:Linux agpgart interface v0.103 -05:50:20,527 INFO kernel:agpgart-intel 0000:00:00.0: Intel 440BX Chipset -05:50:20,527 INFO kernel:agpgart-intel 0000:00:00.0: AGP aperture is 256M @ 0x0 -05:50:20,527 INFO kernel:crash memory driver: version 1.1 -05:50:20,527 INFO kernel:Serial: 8250/16550 driver, 4 ports, IRQ sharing enabled -05:50:20,527 INFO kernel:serial8250: ttyS0 at I/O 0x3f8 (irq = 4) is a 16550A -05:50:20,527 INFO kernel:serial8250: ttyS1 at I/O 0x2f8 (irq = 3) is a 16550A -05:50:20,527 INFO kernel:00:0a: ttyS0 at I/O 0x3f8 (irq = 4) is a 16550A -05:50:20,527 INFO kernel:00:0b: ttyS1 at I/O 0x2f8 (irq = 3) is a 16550A -05:50:20,527 INFO kernel:brd: module loaded -05:50:20,527 INFO kernel:loop: module loaded -05:50:20,527 INFO kernel:input: Macintosh mouse button emulation as /devices/virtual/input/input1 -05:50:20,527 INFO kernel:Fixed MDIO Bus: probed -05:50:20,527 INFO kernel:ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver -05:50:20,527 INFO kernel:ohci_hcd: USB 1.1 'Open' Host Controller (OHCI) Driver -05:50:20,527 INFO kernel:uhci_hcd: USB Universal Host Controller Interface driver -05:50:20,527 INFO kernel:PNP: PS/2 Controller [PNP0303:KBC,PNP0f13:MOUS] at 0x60,0x64 irq 1,12 -05:50:20,527 INFO kernel:Refined TSC clocksource calibration: 2400.081 MHz. -05:50:20,527 INFO kernel:Switching to clocksource tsc -05:50:20,527 INFO kernel:serio: i8042 KBD port at 0x60,0x64 irq 1 -05:50:20,527 INFO kernel:serio: i8042 AUX port at 0x60,0x64 irq 12 -05:50:20,527 INFO kernel:mice: PS/2 mouse device common for all mice -05:50:20,527 INFO kernel:rtc_cmos 00:04: rtc core: registered rtc_cmos as rtc0 -05:50:20,527 INFO kernel:rtc0: alarms up to one month, y3k, 114 bytes nvram, hpet irqs -05:50:20,527 INFO kernel:cpuidle: using governor ladder -05:50:20,527 INFO kernel:cpuidle: using governor menu -05:50:20,527 INFO kernel:EFI Variables Facility v0.08 2004-May-17 -05:50:20,527 INFO kernel:usbcore: registered new interface driver hiddev -05:50:20,527 INFO kernel:usbcore: registered new interface driver usbhid -05:50:20,527 INFO kernel:usbhid: v2.6:USB HID core driver -05:50:20,527 INFO kernel:GRE over IPv4 demultiplexor driver -05:50:20,527 INFO kernel:input: AT Translated Set 2 keyboard as /devices/platform/i8042/serio0/input/input2 -05:50:20,527 INFO kernel:TCP cubic registered -05:50:20,527 INFO kernel:Initializing XFRM netlink socket -05:50:20,527 INFO kernel:NET: Registered protocol family 17 -05:50:20,527 WARNING kernel:registered taskstats version 1 -05:50:20,527 INFO kernel:input: ImPS/2 Generic Wheel Mouse as /devices/platform/i8042/serio1/input/input3 -05:50:20,527 INFO kernel:rtc_cmos 00:04: setting system clock to 2002-05-11 05:50:20 UTC (1021096220) -05:50:20,527 INFO kernel:Initalizing network drop monitor service -05:50:20,527 INFO kernel:Freeing unused kernel memory: 1276k freed -05:50:20,527 INFO kernel:Write protecting the kernel read-only data: 10240k -05:50:20,527 INFO kernel:Freeing unused kernel memory: 800k freed -05:50:20,527 INFO kernel:Freeing unused kernel memory: 1588k freed -05:50:22,553 INFO kernel:squashfs: version 4.0 (2009/01/31) Phillip Lougher -05:50:22,564 INFO kernel:Loading iSCSI transport class v2.0-870. -05:50:22,583 NOTICE kernel:iscsi: registered transport (tcp) -05:50:22,589 INFO kernel:Floppy drive(s): fd0 is 1.44M -05:50:22,600 INFO kernel:FDC 0 is a post-1991 82077 -05:50:22,604 INFO kernel:BIOS EDD facility v0.16 2004-Jun-25, 2 devices found -05:50:22,608 INFO kernel:input: PC Speaker as /devices/platform/pcspkr/input/input4 -05:50:22,615 INFO kernel:No iBFT detected. -05:50:22,648 INFO kernel:NET: Registered protocol family 10 -05:50:22,648 INFO kernel:lo: Disabled Privacy Extensions -05:50:22,720 DEBUG kernel:ata_piix 0000:00:07.1: version 2.13 -05:50:22,720 INFO kernel:scsi0 : ata_piix -05:50:22,721 INFO kernel:scsi1 : ata_piix -05:50:22,721 INFO kernel:ata1: PATA max UDMA/33 cmd 0x1f0 ctl 0x3f6 bmdma 0x10c0 irq 14 -05:50:22,721 INFO kernel:ata2: PATA max UDMA/33 cmd 0x170 ctl 0x376 bmdma 0x10c8 irq 15 -05:50:22,731 ERR udevd-work: device node '/dev/rtc' already exists, link to '/dev/rtc0' will not overwrite it -05:50:22,907 INFO kernel:ata2.00: ATAPI: VMware Virtual IDE CDROM Drive, 00000001, max UDMA/33 -05:50:22,913 INFO kernel:ata2.00: configured for UDMA/33 -05:50:22,913 NOTICE kernel:scsi 1:0:0:0: CD-ROM NECVMWar VMware IDE CDR10 1.00 PQ: 0 ANSI: 5 -05:50:22,936 INFO kernel:Fusion MPT base driver 3.04.20 -05:50:22,936 INFO kernel:Copyright (c) 1999-2008 LSI Corporation -05:50:22,947 INFO kernel:Fusion MPT SPI Host driver 3.04.20 -05:50:22,947 DEBUG kernel: alloc irq_desc for 17 on node -1 -05:50:22,947 DEBUG kernel: alloc kstat_irqs on node -1 -05:50:22,947 INFO kernel:mptspi 0000:00:10.0: PCI INT A -> GSI 17 (level, low) -> IRQ 17 -05:50:22,947 INFO kernel:mptbase: ioc0: Initiating bringup -05:50:22,966 INFO kernel:ioc0: LSI53C1030 B0: Capabilities={Initiator} -05:50:23,007 INFO kernel:scsi2 : ioc0: LSI53C1030 B0, FwRev=01032920h, Ports=1, MaxQ=128, IRQ=17 -05:50:23,035 NOTICE kernel:scsi 2:0:0:0: Direct-Access VMware Virtual disk 1.0 PQ: 0 ANSI: 2 -05:50:23,035 INFO kernel:scsi target2:0:0: Beginning Domain Validation -05:50:23,035 INFO kernel:scsi target2:0:0: Domain Validation skipping write tests -05:50:23,035 INFO kernel:scsi target2:0:0: Ending Domain Validation -05:50:23,035 INFO kernel:scsi target2:0:0: FAST-40 WIDE SCSI 80.0 MB/s ST (25 ns, offset 127) -05:50:23,036 NOTICE kernel:scsi 2:0:1:0: Direct-Access VMware Virtual disk 1.0 PQ: 0 ANSI: 2 -05:50:23,036 INFO kernel:scsi target2:0:1: Beginning Domain Validation -05:50:23,037 INFO kernel:scsi target2:0:1: Domain Validation skipping write tests -05:50:23,037 INFO kernel:scsi target2:0:1: Ending Domain Validation -05:50:23,037 INFO kernel:scsi target2:0:1: FAST-40 WIDE SCSI 80.0 MB/s ST (25 ns, offset 127) -05:50:23,061 WARNING kernel:sr0: scsi3-mmc drive: 1x/1x writer dvd-ram cd/rw xa/form2 cdda tray -05:50:23,061 INFO kernel:Uniform CD-ROM driver Revision: 3.20 -05:50:23,061 DEBUG kernel:sr 1:0:0:0: Attached scsi CD-ROM sr0 -05:50:23,072 INFO kernel:e1000: Intel(R) PRO/1000 Network Driver - version 7.3.21-k8-NAPI -05:50:23,072 INFO kernel:e1000: Copyright (c) 1999-2006 Intel Corporation. -05:50:23,072 DEBUG kernel: alloc irq_desc for 18 on node -1 -05:50:23,072 DEBUG kernel: alloc kstat_irqs on node -1 -05:50:23,072 INFO kernel:e1000 0000:02:00.0: PCI INT A -> GSI 18 (level, low) -> IRQ 18 -05:50:23,072 DEBUG kernel:e1000 0000:02:00.0: setting latency timer to 64 -05:50:23,422 INFO kernel:e1000 0000:02:00.0: eth0: (PCI:66MHz:32-bit) 00:0c:29:5c:6a:b8 -05:50:23,422 INFO kernel:e1000 0000:02:00.0: eth0: Intel(R) PRO/1000 Network Connection -05:50:23,422 DEBUG kernel: alloc irq_desc for 19 on node -1 -05:50:23,422 DEBUG kernel: alloc kstat_irqs on node -1 -05:50:23,422 INFO kernel:e1000 0000:02:01.0: PCI INT A -> GSI 19 (level, low) -> IRQ 19 -05:50:23,422 DEBUG kernel:e1000 0000:02:01.0: setting latency timer to 64 -05:50:23,766 INFO kernel:e1000 0000:02:01.0: eth1: (PCI:66MHz:32-bit) 00:0c:29:5c:6a:c2 -05:50:23,766 INFO kernel:e1000 0000:02:01.0: eth1: Intel(R) PRO/1000 Network Connection -05:50:23,766 DEBUG kernel: alloc irq_desc for 16 on node -1 -05:50:23,766 DEBUG kernel: alloc kstat_irqs on node -1 -05:50:23,766 INFO kernel:e1000 0000:02:02.0: PCI INT A -> GSI 16 (level, low) -> IRQ 16 -05:50:23,766 DEBUG kernel:e1000 0000:02:02.0: setting latency timer to 64 -05:50:24,116 INFO kernel:e1000 0000:02:02.0: eth2: (PCI:66MHz:32-bit) 00:0c:29:5c:6a:cc -05:50:24,116 INFO kernel:e1000 0000:02:02.0: eth2: Intel(R) PRO/1000 Network Connection -05:50:24,116 INFO kernel:e1000 0000:02:03.0: PCI INT A -> GSI 17 (level, low) -> IRQ 17 -05:50:24,116 DEBUG kernel:e1000 0000:02:03.0: setting latency timer to 64 -05:50:24,461 INFO kernel:e1000 0000:02:03.0: eth3: (PCI:66MHz:32-bit) 00:0c:29:5c:6a:d6 -05:50:24,461 INFO kernel:e1000 0000:02:03.0: eth3: Intel(R) PRO/1000 Network Connection -05:50:24,497 NOTICE kernel:sd 2:0:0:0: [sda] 33554432 512-byte logical blocks: (17.1 GB/16.0 GiB) -05:50:24,497 NOTICE kernel:sd 2:0:0:0: [sda] Write Protect is off -05:50:24,497 DEBUG kernel:sd 2:0:0:0: [sda] Mode Sense: 61 00 00 00 -05:50:24,497 NOTICE kernel:sd 2:0:0:0: [sda] Cache data unavailable -05:50:24,497 ERR kernel:sd 2:0:0:0: [sda] Assuming drive cache: write through -05:50:24,497 NOTICE kernel:sd 2:0:0:0: [sda] Cache data unavailable -05:50:24,497 ERR kernel:sd 2:0:0:0: [sda] Assuming drive cache: write through -05:50:24,497 INFO kernel: sda: -05:50:24,497 NOTICE kernel:sd 2:0:1:0: [sdb] 33554432 512-byte logical blocks: (17.1 GB/16.0 GiB) -05:50:24,497 NOTICE kernel:sd 2:0:1:0: [sdb] Write Protect is off -05:50:24,497 DEBUG kernel:sd 2:0:1:0: [sdb] Mode Sense: 61 00 00 00 -05:50:24,497 NOTICE kernel:sd 2:0:1:0: [sdb] Cache data unavailable -05:50:24,497 ERR kernel:sd 2:0:1:0: [sdb] Assuming drive cache: write through -05:50:24,497 NOTICE kernel:sd 2:0:1:0: [sdb] Cache data unavailable -05:50:24,497 ERR kernel:sd 2:0:1:0: [sdb] Assuming drive cache: write through -05:50:24,502 INFO kernel: sdb: -05:50:24,502 NOTICE kernel:sd 2:0:1:0: [sdb] Cache data unavailable -05:50:24,502 ERR kernel:sd 2:0:1:0: [sdb] Assuming drive cache: write through -05:50:24,502 NOTICE kernel:sd 2:0:1:0: [sdb] Attached SCSI disk -05:50:24,505 WARNING kernel: sda1 sda2 -05:50:24,531 NOTICE kernel:sd 2:0:0:0: [sda] Cache data unavailable -05:50:24,531 ERR kernel:sd 2:0:0:0: [sda] Assuming drive cache: write through -05:50:24,531 NOTICE kernel:sd 2:0:0:0: [sda] Attached SCSI disk -05:50:24,537 NOTICE kernel:sr 1:0:0:0: Attached scsi generic sg0 type 5 -05:50:24,538 NOTICE kernel:sd 2:0:0:0: Attached scsi generic sg1 type 0 -05:50:24,538 NOTICE kernel:sd 2:0:1:0: Attached scsi generic sg2 type 0 -05:50:28,728 ERR udevd-work: device node '/dev/rtc' already exists, link to '/dev/rtc0' will not overwrite it -05:50:31,010 INFO NetworkManager: NetworkManager (version 0.8.1-66.el6) is starting... -05:50:31,010 INFO NetworkManager: Read config file /etc/NetworkManager/NetworkManager.conf -05:50:31,012 INFO NetworkManager: trying to start the modem manager... -05:50:31,016 INFO NetworkManager: monitoring kernel firmware directory '/lib/firmware'. -05:50:31,016 INFO NetworkManager: Bonding/Bridging/VLAN support enabled -05:50:31,017 NOTICE NetworkManager: ifcfg-rh: Acquired D-Bus service com.redhat.ifcfgrh1 -05:50:31,018 INFO NetworkManager: Loaded plugin ifcfg-rh: (c) 2007 - 2008 Red Hat, Inc. To report bugs please use the NetworkManager mailing list. -05:50:31,018 INFO NetworkManager: Loaded plugin keyfile: (c) 2007 - 2008 Red Hat, Inc. To report bugs please use the NetworkManager mailing list. -05:50:31,018 NOTICE NetworkManager: ifcfg-rh: parsing /etc/sysconfig/network-scripts/ifcfg-eth3 ... -05:50:31,020 NOTICE NetworkManager: ifcfg-rh: read connection 'System eth3' -05:50:31,020 NOTICE NetworkManager: ifcfg-rh: parsing /etc/sysconfig/network-scripts/ifcfg-eth2 ... -05:50:31,021 NOTICE NetworkManager: ifcfg-rh: read connection 'System eth2' -05:50:31,021 NOTICE NetworkManager: ifcfg-rh: parsing /etc/sysconfig/network-scripts/ifcfg-eth1 ... -05:50:31,022 NOTICE NetworkManager: ifcfg-rh: read connection 'System eth1' -05:50:31,022 NOTICE NetworkManager: ifcfg-rh: parsing /etc/sysconfig/network-scripts/ifcfg-eth0 ... -05:50:31,022 NOTICE NetworkManager: ifcfg-rh: read connection 'System eth0' -05:50:31,023 WARNING NetworkManager: Can not read directory '/etc/NetworkManager/system-connections': Error opening directory '/etc/NetworkManager/system-connections': No such file or directory -05:50:31,025 INFO NetworkManager: WiFi enabled by radio killswitch; enabled by state file -05:50:31,025 INFO NetworkManager: WWAN enabled by radio killswitch; enabled by state file -05:50:31,025 INFO NetworkManager: WiMAX enabled by radio killswitch; enabled by state file -05:50:31,025 INFO NetworkManager: Networking is enabled by state file -05:50:31,044 INFO kernel:802.1Q VLAN Support v1.8 Ben Greear -05:50:31,044 INFO kernel:All bugs added by David S. Miller -05:50:31,045 INFO NetworkManager: (eth0): carrier is OFF -05:50:31,045 INFO NetworkManager: (eth0): new Ethernet device (driver: 'e1000' ifindex: 2) -05:50:31,045 INFO NetworkManager: (eth0): exported as /org/freedesktop/NetworkManager/Devices/0 -05:50:31,045 INFO NetworkManager: (eth0): now managed -05:50:31,045 INFO NetworkManager: (eth0): device state change: 1 -> 2 (reason 2) -05:50:31,045 INFO NetworkManager: (eth0): bringing up device. -05:50:31,051 INFO kernel:e1000: eth0 NIC Link is Up 1000 Mbps Full Duplex, Flow Control: None -05:50:31,055 INFO kernel:8021q: adding VLAN 0 to HW filter on device eth0 -05:50:31,056 INFO NetworkManager: (eth0): carrier now ON (device state 2) -05:50:31,056 INFO NetworkManager: (eth0): preparing device. -05:50:31,056 INFO NetworkManager: (eth0): deactivating device (reason: 2). -05:50:31,057 INFO NetworkManager: (eth1): carrier is OFF -05:50:31,058 INFO NetworkManager: (eth1): new Ethernet device (driver: 'e1000' ifindex: 3) -05:50:31,058 INFO NetworkManager: (eth1): exported as /org/freedesktop/NetworkManager/Devices/1 -05:50:31,058 INFO NetworkManager: (eth1): now managed -05:50:31,058 INFO NetworkManager: (eth1): device state change: 1 -> 2 (reason 2) -05:50:31,058 INFO NetworkManager: (eth1): bringing up device. -05:50:31,063 INFO kernel:e1000: eth1 NIC Link is Up 1000 Mbps Full Duplex, Flow Control: None -05:50:31,068 INFO kernel:8021q: adding VLAN 0 to HW filter on device eth1 -05:50:31,068 INFO NetworkManager: (eth1): carrier now ON (device state 2) -05:50:31,068 INFO NetworkManager: (eth1): preparing device. -05:50:31,068 INFO NetworkManager: (eth1): deactivating device (reason: 2). -05:50:31,069 INFO NetworkManager: (eth2): carrier is OFF -05:50:31,070 INFO NetworkManager: (eth2): new Ethernet device (driver: 'e1000' ifindex: 4) -05:50:31,070 INFO NetworkManager: (eth2): exported as /org/freedesktop/NetworkManager/Devices/2 -05:50:31,070 INFO NetworkManager: (eth2): now managed -05:50:31,070 INFO NetworkManager: (eth2): device state change: 1 -> 2 (reason 2) -05:50:31,070 INFO NetworkManager: (eth2): bringing up device. -05:50:31,076 INFO kernel:e1000: eth2 NIC Link is Up 1000 Mbps Full Duplex, Flow Control: None -05:50:31,080 INFO kernel:8021q: adding VLAN 0 to HW filter on device eth2 -05:50:31,080 INFO NetworkManager: (eth2): carrier now ON (device state 2) -05:50:31,080 INFO NetworkManager: (eth2): preparing device. -05:50:31,080 INFO NetworkManager: (eth2): deactivating device (reason: 2). -05:50:31,081 INFO NetworkManager: (eth3): carrier is OFF -05:50:31,082 INFO NetworkManager: (eth3): new Ethernet device (driver: 'e1000' ifindex: 5) -05:50:31,082 INFO NetworkManager: (eth3): exported as /org/freedesktop/NetworkManager/Devices/3 -05:50:31,082 INFO NetworkManager: (eth3): now managed -05:50:31,082 INFO NetworkManager: (eth3): device state change: 1 -> 2 (reason 2) -05:50:31,082 INFO NetworkManager: (eth3): bringing up device. -05:50:31,086 INFO kernel:e1000: eth3 NIC Link is Up 1000 Mbps Full Duplex, Flow Control: None -05:50:31,091 INFO kernel:8021q: adding VLAN 0 to HW filter on device eth3 -05:50:31,091 INFO NetworkManager: (eth3): carrier now ON (device state 2) -05:50:31,091 INFO NetworkManager: (eth3): preparing device. -05:50:31,091 INFO NetworkManager: (eth3): deactivating device (reason: 2). -05:50:31,093 INFO NetworkManager: (eth0): carrier now OFF (device state 2) -05:50:31,094 INFO NetworkManager: (eth0): carrier now ON (device state 2) -05:50:31,094 WARNING NetworkManager: (nm-device.c:4447):nm_device_queue_state: runtime check failed: (priv->queued_state.id == 0) -05:50:31,094 INFO NetworkManager: (eth1): carrier now OFF (device state 2) -05:50:31,094 INFO NetworkManager: (eth1): carrier now ON (device state 2) -05:50:31,094 WARNING NetworkManager: (nm-device.c:4447):nm_device_queue_state: runtime check failed: (priv->queued_state.id == 0) -05:50:31,094 INFO NetworkManager: (eth2): carrier now OFF (device state 2) -05:50:31,095 INFO NetworkManager: (eth2): carrier now ON (device state 2) -05:50:31,095 WARNING NetworkManager: (nm-device.c:4447):nm_device_queue_state: runtime check failed: (priv->queued_state.id == 0) -05:50:31,095 INFO NetworkManager: (eth3): carrier now OFF (device state 2) -05:50:31,095 INFO NetworkManager: (eth3): carrier now ON (device state 2) -05:50:31,095 WARNING NetworkManager: (nm-device.c:4447):nm_device_queue_state: runtime check failed: (priv->queued_state.id == 0) -05:50:31,096 INFO NetworkManager: Trying to start the supplicant... -05:50:31,097 INFO NetworkManager: (eth0): device state change: 2 -> 3 (reason 40) -05:50:31,097 INFO NetworkManager: (eth1): device state change: 2 -> 3 (reason 40) -05:50:31,097 INFO NetworkManager: (eth2): device state change: 2 -> 3 (reason 40) -05:50:31,098 INFO NetworkManager: (eth3): device state change: 2 -> 3 (reason 40) -05:50:31,104 INFO NetworkManager: wpa_supplicant started -05:50:32,010 WARNING NetworkManager: error requesting auth for org.freedesktop.NetworkManager.enable-disable-network: (26) Remote Exception invoking org.freedesktop.PolicyKit1.Authority.CheckAuthorization() on /org/freedesktop/PolicyKit1/Authority at name org.freedesktop.PolicyKit1: org.freedesktop.DBus.Error.Spawn.ExecFailed: Cannot launch daemon, file not found or permissions invalid -05:50:32,010 WARNING NetworkManager: error requesting auth for org.freedesktop.NetworkManager.sleep-wake: (26) Remote Exception invoking org.freedesktop.PolicyKit1.Authority.CheckAuthorization() on /org/freedesktop/PolicyKit1/Authority at name org.freedesktop.PolicyKit1: org.freedesktop.DBus.Error.Spawn.ExecFailed: Cannot launch daemon, file not found or permissions invalid -05:50:32,010 WARNING NetworkManager: error requesting auth for org.freedesktop.NetworkManager.enable-disable-wifi: (26) Remote Exception invoking org.freedesktop.PolicyKit1.Authority.CheckAuthorization() on /org/freedesktop/PolicyKit1/Authority at name org.freedesktop.PolicyKit1: org.freedesktop.DBus.Error.Spawn.ExecFailed: Cannot launch daemon, file not found or permissions invalid -05:50:32,010 WARNING NetworkManager: error requesting auth for org.freedesktop.NetworkManager.enable-disable-wwan: (26) Remote Exception invoking org.freedesktop.PolicyKit1.Authority.CheckAuthorization() on /org/freedesktop/PolicyKit1/Authority at name org.freedesktop.PolicyKit1: org.freedesktop.DBus.Error.Spawn.ExecFailed: Cannot launch daemon, file not found or permissions invalid -05:50:32,010 WARNING NetworkManager: error requesting auth for org.freedesktop.NetworkManager.use-user-connections: (26) Remote Exception invoking org.freedesktop.PolicyKit1.Authority.CheckAuthorization() on /org/freedesktop/PolicyKit1/Authority at name org.freedesktop.PolicyKit1: org.freedesktop.DBus.Error.Spawn.ExecFailed: Cannot launch daemon, file not found or permissions invalid -05:50:32,010 WARNING NetworkManager: error requesting auth for org.freedesktop.NetworkManager.network-control: (26) Remote Exception invoking org.freedesktop.PolicyKit1.Authority.CheckAuthorization() on /org/freedesktop/PolicyKit1/Authority at name org.freedesktop.PolicyKit1: org.freedesktop.DBus.Error.Spawn.ExecFailed: Cannot launch daemon, file not found or permissions invalid -05:50:32,010 WARNING NetworkManager: error requesting auth for org.freedesktop.network-manager-settings.system.wifi.share.open: (26) Remote Exception invoking org.freedesktop.PolicyKit1.Authority.CheckAuthorization() on /org/freedesktop/PolicyKit1/Authority at name org.freedesktop.PolicyKit1: org.freedesktop.DBus.Error.Spawn.ExecFailed: Cannot launch daemon, file not found or permissions invalid -05:50:32,010 WARNING NetworkManager: error requesting auth for org.freedesktop.network-manager-settings.system.wifi.share.protected: (26) Remote Exception invoking org.freedesktop.PolicyKit1.Authority.CheckAuthorization() on /org/freedesktop/PolicyKit1/Authority at name org.freedesktop.PolicyKit1: org.freedesktop.DBus.Error.Spawn.ExecFailed: Cannot launch daemon, file not found or permissions invalid -05:50:32,019 WARNING NetworkManager: error requesting auth for org.freedesktop.NetworkManager.enable-disable-network: (26) Remote Exception invoking org.freedesktop.PolicyKit1.Authority.CheckAuthorization() on /org/freedesktop/PolicyKit1/Authority at name org.freedesktop.PolicyKit1: org.freedesktop.DBus.Error.Spawn.ExecFailed: Cannot launch daemon, file not found or permissions invalid -05:50:32,019 WARNING NetworkManager: error requesting auth for org.freedesktop.NetworkManager.sleep-wake: (26) Remote Exception invoking org.freedesktop.PolicyKit1.Authority.CheckAuthorization() on /org/freedesktop/PolicyKit1/Authority at name org.freedesktop.PolicyKit1: org.freedesktop.DBus.Error.Spawn.ExecFailed: Cannot launch daemon, file not found or permissions invalid -05:50:32,019 WARNING NetworkManager: error requesting auth for org.freedesktop.NetworkManager.enable-disable-wifi: (26) Remote Exception invoking org.freedesktop.PolicyKit1.Authority.CheckAuthorization() on /org/freedesktop/PolicyKit1/Authority at name org.freedesktop.PolicyKit1: org.freedesktop.DBus.Error.Spawn.ExecFailed: Cannot launch daemon, file not found or permissions invalid -05:50:32,019 WARNING NetworkManager: error requesting auth for org.freedesktop.NetworkManager.enable-disable-wwan: (26) Remote Exception invoking org.freedesktop.PolicyKit1.Authority.CheckAuthorization() on /org/freedesktop/PolicyKit1/Authority at name org.freedesktop.PolicyKit1: org.freedesktop.DBus.Error.Spawn.ExecFailed: Cannot launch daemon, file not found or permissions invalid -05:50:32,019 WARNING NetworkManager: error requesting auth for org.freedesktop.NetworkManager.use-user-connections: (26) Remote Exception invoking org.freedesktop.PolicyKit1.Authority.CheckAuthorization() on /org/freedesktop/PolicyKit1/Authority at name org.freedesktop.PolicyKit1: org.freedesktop.DBus.Error.Spawn.ExecFailed: Cannot launch daemon, file not found or permissions invalid -05:50:32,019 WARNING NetworkManager: error requesting auth for org.freedesktop.NetworkManager.network-control: (26) Remote Exception invoking org.freedesktop.PolicyKit1.Authority.CheckAuthorization() on /org/freedesktop/PolicyKit1/Authority at name org.freedesktop.PolicyKit1: org.freedesktop.DBus.Error.Spawn.ExecFailed: Cannot launch daemon, file not found or permissions invalid -05:50:32,019 WARNING NetworkManager: error requesting auth for org.freedesktop.network-manager-settings.system.wifi.share.open: (26) Remote Exception invoking org.freedesktop.PolicyKit1.Authority.CheckAuthorization() on /org/freedesktop/PolicyKit1/Authority at name org.freedesktop.PolicyKit1: org.freedesktop.DBus.Error.Spawn.ExecFailed: Cannot launch daemon, file not found or permissions invalid -05:50:32,019 WARNING NetworkManager: error requesting auth for org.freedesktop.network-manager-settings.system.wifi.share.protected: (26) Remote Exception invoking org.freedesktop.PolicyKit1.Authority.CheckAuthorization() on /org/freedesktop/PolicyKit1/Authority at name org.freedesktop.PolicyKit1: org.freedesktop.DBus.Error.Spawn.ExecFailed: Cannot launch daemon, file not found or permissions invalid -05:50:32,026 WARNING NetworkManager: error requesting auth for org.freedesktop.NetworkManager.enable-disable-network: (26) Remote Exception invoking org.freedesktop.PolicyKit1.Authority.CheckAuthorization() on /org/freedesktop/PolicyKit1/Authority at name org.freedesktop.PolicyKit1: org.freedesktop.DBus.Error.Spawn.ExecFailed: Cannot launch daemon, file not found or permissions invalid -05:50:32,026 WARNING NetworkManager: error requesting auth for org.freedesktop.NetworkManager.sleep-wake: (26) Remote Exception invoking org.freedesktop.PolicyKit1.Authority.CheckAuthorization() on /org/freedesktop/PolicyKit1/Authority at name org.freedesktop.PolicyKit1: org.freedesktop.DBus.Error.Spawn.ExecFailed: Cannot launch daemon, file not found or permissions invalid -05:50:32,027 WARNING NetworkManager: error requesting auth for org.freedesktop.NetworkManager.enable-disable-wifi: (26) Remote Exception invoking org.freedesktop.PolicyKit1.Authority.CheckAuthorization() on /org/freedesktop/PolicyKit1/Authority at name org.freedesktop.PolicyKit1: org.freedesktop.DBus.Error.Spawn.ExecFailed: Cannot launch daemon, file not found or permissions invalid -05:50:32,027 WARNING NetworkManager: error requesting auth for org.freedesktop.NetworkManager.enable-disable-wwan: (26) Remote Exception invoking org.freedesktop.PolicyKit1.Authority.CheckAuthorization() on /org/freedesktop/PolicyKit1/Authority at name org.freedesktop.PolicyKit1: org.freedesktop.DBus.Error.Spawn.ExecFailed: Cannot launch daemon, file not found or permissions invalid -05:50:32,027 WARNING NetworkManager: error requesting auth for org.freedesktop.NetworkManager.use-user-connections: (26) Remote Exception invoking org.freedesktop.PolicyKit1.Authority.CheckAuthorization() on /org/freedesktop/PolicyKit1/Authority at name org.freedesktop.PolicyKit1: org.freedesktop.DBus.Error.Spawn.ExecFailed: Cannot launch daemon, file not found or permissions invalid -05:50:32,027 WARNING NetworkManager: error requesting auth for org.freedesktop.NetworkManager.network-control: (26) Remote Exception invoking org.freedesktop.PolicyKit1.Authority.CheckAuthorization() on /org/freedesktop/PolicyKit1/Authority at name org.freedesktop.PolicyKit1: org.freedesktop.DBus.Error.Spawn.ExecFailed: Cannot launch daemon, file not found or permissions invalid -05:50:32,027 WARNING NetworkManager: error requesting auth for org.freedesktop.network-manager-settings.system.wifi.share.open: (26) Remote Exception invoking org.freedesktop.PolicyKit1.Authority.CheckAuthorization() on /org/freedesktop/PolicyKit1/Authority at name org.freedesktop.PolicyKit1: org.freedesktop.DBus.Error.Spawn.ExecFailed: Cannot launch daemon, file not found or permissions invalid -05:50:32,027 WARNING NetworkManager: error requesting auth for org.freedesktop.network-manager-settings.system.wifi.share.protected: (26) Remote Exception invoking org.freedesktop.PolicyKit1.Authority.CheckAuthorization() on /org/freedesktop/PolicyKit1/Authority at name org.freedesktop.PolicyKit1: org.freedesktop.DBus.Error.Spawn.ExecFailed: Cannot launch daemon, file not found or permissions invalid -05:50:32,039 WARNING NetworkManager: error requesting auth for org.freedesktop.NetworkManager.enable-disable-network: (26) Remote Exception invoking org.freedesktop.PolicyKit1.Authority.CheckAuthorization() on /org/freedesktop/PolicyKit1/Authority at name org.freedesktop.PolicyKit1: org.freedesktop.DBus.Error.Spawn.ExecFailed: Cannot launch daemon, file not found or permissions invalid -05:50:32,039 WARNING NetworkManager: error requesting auth for org.freedesktop.NetworkManager.sleep-wake: (26) Remote Exception invoking org.freedesktop.PolicyKit1.Authority.CheckAuthorization() on /org/freedesktop/PolicyKit1/Authority at name org.freedesktop.PolicyKit1: org.freedesktop.DBus.Error.Spawn.ExecFailed: Cannot launch daemon, file not found or permissions invalid -05:50:32,039 WARNING NetworkManager: error requesting auth for org.freedesktop.NetworkManager.enable-disable-wifi: (26) Remote Exception invoking org.freedesktop.PolicyKit1.Authority.CheckAuthorization() on /org/freedesktop/PolicyKit1/Authority at name org.freedesktop.PolicyKit1: org.freedesktop.DBus.Error.Spawn.ExecFailed: Cannot launch daemon, file not found or permissions invalid -05:50:32,039 WARNING NetworkManager: error requesting auth for org.freedesktop.NetworkManager.enable-disable-wwan: (26) Remote Exception invoking org.freedesktop.PolicyKit1.Authority.CheckAuthorization() on /org/freedesktop/PolicyKit1/Authority at name org.freedesktop.PolicyKit1: org.freedesktop.DBus.Error.Spawn.ExecFailed: Cannot launch daemon, file not found or permissions invalid -05:50:32,039 WARNING NetworkManager: error requesting auth for org.freedesktop.NetworkManager.use-user-connections: (26) Remote Exception invoking org.freedesktop.PolicyKit1.Authority.CheckAuthorization() on /org/freedesktop/PolicyKit1/Authority at name org.freedesktop.PolicyKit1: org.freedesktop.DBus.Error.Spawn.ExecFailed: Cannot launch daemon, file not found or permissions invalid -05:50:32,039 WARNING NetworkManager: error requesting auth for org.freedesktop.NetworkManager.network-control: (26) Remote Exception invoking org.freedesktop.PolicyKit1.Authority.CheckAuthorization() on /org/freedesktop/PolicyKit1/Authority at name org.freedesktop.PolicyKit1: org.freedesktop.DBus.Error.Spawn.ExecFailed: Cannot launch daemon, file not found or permissions invalid -05:50:32,039 WARNING NetworkManager: error requesting auth for org.freedesktop.network-manager-settings.system.wifi.share.open: (26) Remote Exception invoking org.freedesktop.PolicyKit1.Authority.CheckAuthorization() on /org/freedesktop/PolicyKit1/Authority at name org.freedesktop.PolicyKit1: org.freedesktop.DBus.Error.Spawn.ExecFailed: Cannot launch daemon, file not found or permissions invalid -05:50:32,039 WARNING NetworkManager: error requesting auth for org.freedesktop.network-manager-settings.system.wifi.share.protected: (26) Remote Exception invoking org.freedesktop.PolicyKit1.Authority.CheckAuthorization() on /org/freedesktop/PolicyKit1/Authority at name org.freedesktop.PolicyKit1: org.freedesktop.DBus.Error.Spawn.ExecFailed: Cannot launch daemon, file not found or permissions invalid -05:50:33,054 NOTICE NetworkManager: ifcfg-rh: updating /etc/sysconfig/network-scripts/ifcfg-eth0 -05:50:33,057 INFO NetworkManager: Auto-activating connection 'System eth0'. -05:50:33,057 INFO NetworkManager: Activation (eth0) starting connection 'System eth0' -05:50:33,058 INFO NetworkManager: (eth0): device state change: 3 -> 4 (reason 0) -05:50:33,058 INFO NetworkManager: Activation (eth0) Stage 1 of 5 (Device Prepare) scheduled... -05:50:33,058 INFO NetworkManager: Activation (eth0) Stage 1 of 5 (Device Prepare) started... -05:50:33,059 INFO NetworkManager: Activation (eth0) Stage 2 of 5 (Device Configure) scheduled... -05:50:33,059 INFO NetworkManager: Activation (eth0) Stage 1 of 5 (Device Prepare) complete. -05:50:33,059 INFO NetworkManager: Activation (eth0) Stage 2 of 5 (Device Configure) starting... -05:50:33,059 INFO NetworkManager: (eth0): device state change: 4 -> 5 (reason 0) -05:50:33,059 INFO NetworkManager: Activation (eth0) Stage 2 of 5 (Device Configure) successful. -05:50:33,059 INFO NetworkManager: Activation (eth0) Stage 3 of 5 (IP Configure Start) scheduled. -05:50:33,059 INFO NetworkManager: Activation (eth0) Stage 2 of 5 (Device Configure) complete. -05:50:33,059 INFO NetworkManager: Activation (eth0) Stage 3 of 5 (IP Configure Start) started... -05:50:33,059 INFO NetworkManager: (eth0): device state change: 5 -> 7 (reason 0) -05:50:33,060 INFO NetworkManager: Activation (eth0) Beginning DHCPv4 transaction -05:50:33,062 INFO dhclient: Internet Systems Consortium DHCP Client 4.1.1-P1 -05:50:33,062 INFO NetworkManager: dhclient started with pid 654 -05:50:33,063 INFO NetworkManager: Activation (eth0) DHCPv4 will time out in 45 seconds -05:50:33,063 INFO dhclient: Copyright 2004-2010 Internet Systems Consortium. -05:50:33,063 INFO dhclient: All rights reserved. -05:50:33,063 INFO dhclient: For info, please visit https://www.isc.org/software/dhcp/ -05:50:33,063 INFO dhclient: -05:50:33,063 INFO NetworkManager: Activation (eth0) Stage 3 of 5 (IP Configure Start) complete. -05:50:33,066 INFO NetworkManager: (eth0): DHCPv4 state changed nbi -> preinit -05:50:33,068 INFO dhclient: Listening on LPF/eth0/00:0c:29:5c:6a:b8 -05:50:33,068 INFO dhclient: Sending on LPF/eth0/00:0c:29:5c:6a:b8 -05:50:33,068 INFO dhclient: Sending on Socket/fallback -05:50:37,004 INFO dhclient: DHCPDISCOVER on eth0 to 255.255.255.255 port 67 interval 7 (xid=0x3433ec2c) -05:50:37,048 INFO dhclient: DHCPOFFER from 10.145.88.211 -05:50:37,048 INFO dhclient: DHCPREQUEST on eth0 to 255.255.255.255 port 67 (xid=0x3433ec2c) -05:50:38,084 INFO dhclient: DHCPACK from 10.145.88.211 (xid=0x3433ec2c) -05:50:38,087 INFO dhclient: bound to 10.145.88.104 -- renewal in 10764 seconds. -05:50:38,087 INFO NetworkManager: (eth0): DHCPv4 state changed preinit -> bound -05:50:38,087 INFO NetworkManager: Activation (eth0) Stage 4 of 5 (IP4 Configure Get) scheduled... -05:50:38,087 INFO NetworkManager: Activation (eth0) Stage 4 of 5 (IP4 Configure Get) started... -05:50:38,087 INFO NetworkManager: address 10.145.88.104 -05:50:38,087 INFO NetworkManager: prefix 23 (255.255.254.0) -05:50:38,087 INFO NetworkManager: gateway 10.145.88.1 -05:50:38,087 INFO NetworkManager: hostname 'server2' -05:50:38,087 INFO NetworkManager: nameserver '10.145.88.211' -05:50:38,088 INFO NetworkManager: Activation (eth0) Stage 5 of 5 (IP Configure Commit) scheduled... -05:50:38,088 INFO NetworkManager: Activation (eth0) Stage 4 of 5 (IP4 Configure Get) complete. -05:50:38,088 INFO NetworkManager: Activation (eth0) Stage 5 of 5 (IP Configure Commit) started... -05:50:39,089 INFO NetworkManager: (eth0): device state change: 7 -> 8 (reason 0) -05:50:39,090 INFO NetworkManager: Policy set 'System eth0' (eth0) as default for IPv4 routing and DNS. -05:50:39,090 INFO NetworkManager: Setting system hostname to 'server2' (from DHCPv4) -05:50:39,091 INFO NetworkManager: Activation (eth0) successful, device activated. -05:50:39,092 INFO NetworkManager: Activation (eth0) Stage 5 of 5 (IP Configure Commit) complete. -05:50:55,174 WARNING NetworkManager: error requesting auth for org.freedesktop.NetworkManager.enable-disable-network: (26) Remote Exception invoking org.freedesktop.PolicyKit1.Authority.CheckAuthorization() on /org/freedesktop/PolicyKit1/Authority at name org.freedesktop.PolicyKit1: org.freedesktop.DBus.Error.Spawn.ExecFailed: Cannot launch daemon, file not found or permissions invalid -05:50:55,174 WARNING NetworkManager: error requesting auth for org.freedesktop.NetworkManager.sleep-wake: (26) Remote Exception invoking org.freedesktop.PolicyKit1.Authority.CheckAuthorization() on /org/freedesktop/PolicyKit1/Authority at name org.freedesktop.PolicyKit1: org.freedesktop.DBus.Error.Spawn.ExecFailed: Cannot launch daemon, file not found or permissions invalid -05:50:55,174 WARNING NetworkManager: error requesting auth for org.freedesktop.NetworkManager.enable-disable-wifi: (26) Remote Exception invoking org.freedesktop.PolicyKit1.Authority.CheckAuthorization() on /org/freedesktop/PolicyKit1/Authority at name org.freedesktop.PolicyKit1: org.freedesktop.DBus.Error.Spawn.ExecFailed: Cannot launch daemon, file not found or permissions invalid -05:50:55,174 WARNING NetworkManager: error requesting auth for org.freedesktop.NetworkManager.enable-disable-wwan: (26) Remote Exception invoking org.freedesktop.PolicyKit1.Authority.CheckAuthorization() on /org/freedesktop/PolicyKit1/Authority at name org.freedesktop.PolicyKit1: org.freedesktop.DBus.Error.Spawn.ExecFailed: Cannot launch daemon, file not found or permissions invalid -05:50:55,174 WARNING NetworkManager: error requesting auth for org.freedesktop.NetworkManager.use-user-connections: (26) Remote Exception invoking org.freedesktop.PolicyKit1.Authority.CheckAuthorization() on /org/freedesktop/PolicyKit1/Authority at name org.freedesktop.PolicyKit1: org.freedesktop.DBus.Error.Spawn.ExecFailed: Cannot launch daemon, file not found or permissions invalid -05:50:55,174 WARNING NetworkManager: error requesting auth for org.freedesktop.NetworkManager.network-control: (26) Remote Exception invoking org.freedesktop.PolicyKit1.Authority.CheckAuthorization() on /org/freedesktop/PolicyKit1/Authority at name org.freedesktop.PolicyKit1: org.freedesktop.DBus.Error.Spawn.ExecFailed: Cannot launch daemon, file not found or permissions invalid -05:50:55,174 WARNING NetworkManager: error requesting auth for org.freedesktop.network-manager-settings.system.wifi.share.open: (26) Remote Exception invoking org.freedesktop.PolicyKit1.Authority.CheckAuthorization() on /org/freedesktop/PolicyKit1/Authority at name org.freedesktop.PolicyKit1: org.freedesktop.DBus.Error.Spawn.ExecFailed: Cannot launch daemon, file not found or permissions invalid -05:50:55,174 WARNING NetworkManager: error requesting auth for org.freedesktop.network-manager-settings.system.wifi.share.protected: (26) Remote Exception invoking org.freedesktop.PolicyKit1.Authority.CheckAuthorization() on /org/freedesktop/PolicyKit1/Authority at name org.freedesktop.PolicyKit1: org.freedesktop.DBus.Error.Spawn.ExecFailed: Cannot launch daemon, file not found or permissions invalid -05:51:46,967 NOTICE dbus-daemon: [system] Unable to reload configuration: Error in file /etc/dbus-1/system.d/nm-dhcp-client.conf, line 1, column 0: no element found -05:51:46,969 NOTICE dbus-daemon: [system] Unable to reload configuration: Error in file /etc/dbus-1/system.d/org.freedesktop.PolicyKit1.conf, line 1, column 0: no element found -05:51:46,976 NOTICE dbus-daemon: [system] Reloaded configuration -05:51:47,135 DEBUG kernel:SELinux: 2048 avtab hash slots, 277800 rules. -05:51:47,214 DEBUG kernel:SELinux: 2048 avtab hash slots, 277800 rules. -05:51:47,702 DEBUG kernel:SELinux: 9 users, 12 roles, 3917 types, 217 bools, 1 sens, 1024 cats -05:51:47,702 DEBUG kernel:SELinux: 81 classes, 277800 rules -05:51:47,706 DEBUG kernel:SELinux: Completing initialization. -05:51:47,706 DEBUG kernel:SELinux: Setting up existing superblocks. -05:51:47,706 DEBUG kernel:SELinux: initialized (dev loop0, type squashfs), not configured for labeling -05:51:47,706 DEBUG kernel:SELinux: initialized (dev tmpfs, type tmpfs), uses transition SIDs -05:51:47,706 DEBUG kernel:SELinux: initialized (dev tmpfs, type tmpfs), uses transition SIDs -05:51:47,708 DEBUG kernel:SELinux: initialized (dev selinuxfs, type selinuxfs), uses genfs_contexts -05:51:47,708 DEBUG kernel:SELinux: initialized (dev mqueue, type mqueue), uses transition SIDs -05:51:47,708 DEBUG kernel:SELinux: initialized (dev hugetlbfs, type hugetlbfs), uses transition SIDs -05:51:47,708 DEBUG kernel:SELinux: initialized (dev devpts, type devpts), uses transition SIDs -05:51:47,708 DEBUG kernel:SELinux: initialized (dev inotifyfs, type inotifyfs), uses genfs_contexts -05:51:47,708 DEBUG kernel:SELinux: initialized (dev anon_inodefs, type anon_inodefs), uses genfs_contexts -05:51:47,708 DEBUG kernel:SELinux: initialized (dev pipefs, type pipefs), uses task SIDs -05:51:47,708 DEBUG kernel:SELinux: initialized (dev debugfs, type debugfs), uses genfs_contexts -05:51:47,708 DEBUG kernel:SELinux: initialized (dev sockfs, type sockfs), uses task SIDs -05:51:47,708 DEBUG kernel:SELinux: initialized (dev devtmpfs, type devtmpfs), uses transition SIDs -05:51:47,708 DEBUG kernel:SELinux: initialized (dev tmpfs, type tmpfs), uses transition SIDs -05:51:47,708 DEBUG kernel:SELinux: initialized (dev proc, type proc), uses genfs_contexts -05:51:47,708 DEBUG kernel:SELinux: initialized (dev bdev, type bdev), uses genfs_contexts -05:51:47,708 DEBUG kernel:SELinux: initialized (dev rootfs, type rootfs), uses genfs_contexts -05:51:47,709 DEBUG kernel:SELinux: initialized (dev sysfs, type sysfs), uses genfs_contexts -05:51:47,751 NOTICE kernel:type=1403 audit(1021096307.739:2): policy loaded auid=4294967295 ses=4294967295 -05:51:47,786 INFO kernel:md: raid0 personality registered for level 0 -05:51:47,793 INFO kernel:md: raid1 personality registered for level 1 -05:51:47,797 INFO kernel:async_tx: api initialized (async) -05:51:47,802 INFO kernel:xor: automatically using best checksumming function: generic_sse -05:51:47,810 INFO kernel: generic_sse: 9176.000 MB/sec -05:51:47,810 INFO kernel:xor: using function: generic_sse (9176.000 MB/sec) -05:51:47,834 WARNING kernel:raid6: sse2x1 4742 MB/s -05:51:47,851 WARNING kernel:raid6: sse2x2 7117 MB/s -05:51:47,868 WARNING kernel:raid6: sse2x4 7660 MB/s -05:51:47,868 WARNING kernel:raid6: using algorithm sse2x4 (7660 MB/s) -05:51:47,868 WARNING kernel:raid6: using ssse3x2 recovery algorithm -05:51:47,882 INFO kernel:md: raid6 personality registered for level 6 -05:51:47,882 INFO kernel:md: raid5 personality registered for level 5 -05:51:47,882 INFO kernel:md: raid4 personality registered for level 4 -05:51:47,893 INFO kernel:md: raid10 personality registered for level 10 -05:51:47,896 INFO kernel:md: linear personality registered for level -1 -05:51:47,909 INFO kernel:device-mapper: uevent: version 1.0.3 -05:51:47,909 INFO kernel:device-mapper: ioctl: 4.24.6-ioctl (2013-01-15) initialised: dm-devel@redhat.com -05:51:47,940 INFO kernel:device-mapper: multipath: version 1.5.0 loaded -05:51:47,944 INFO kernel:device-mapper: multipath round-robin: version 1.0.0 loaded -05:52:05,224 NOTICE kernel:sd 2:0:0:0: [sda] Cache data unavailable -05:52:05,224 ERR kernel:sd 2:0:0:0: [sda] Assuming drive cache: write through -05:52:05,225 INFO kernel: sda: sda1 -05:52:06,013 NOTICE kernel:sd 2:0:0:0: [sda] Cache data unavailable -05:52:06,013 ERR kernel:sd 2:0:0:0: [sda] Assuming drive cache: write through -05:52:06,023 INFO kernel: sda: -05:52:06,365 NOTICE kernel:sd 2:0:0:0: [sda] Cache data unavailable -05:52:06,365 ERR kernel:sd 2:0:0:0: [sda] Assuming drive cache: write through -05:52:06,415 INFO kernel: sda: sda1 -05:52:09,171 NOTICE kernel:sd 2:0:0:0: [sda] Cache data unavailable -05:52:09,171 ERR kernel:sd 2:0:0:0: [sda] Assuming drive cache: write through -05:52:09,171 INFO kernel: sda: sda1 sda2 -05:52:11,280 NOTICE kernel:sd 2:0:0:0: [sda] Cache data unavailable -05:52:11,280 ERR kernel:sd 2:0:0:0: [sda] Assuming drive cache: write through -05:52:11,280 INFO kernel: sda: sda1 sda2 sda3 -05:52:44,551 INFO kernel:Adding 3354616k swap on /dev/sda2. Priority:-1 extents:1 across:3354616k -05:52:45,044 INFO kernel:kjournald starting. Commit interval 5 seconds -05:52:45,053 INFO kernel:EXT3-fs (dm-0): using internal journal -05:52:45,053 INFO kernel:EXT3-fs (dm-0): mounted filesystem with ordered data mode -05:52:45,053 DEBUG kernel:SELinux: initialized (dev dm-0, type ext3), uses xattr -05:52:45,103 INFO kernel:kjournald starting. Commit interval 5 seconds -05:52:45,170 INFO kernel:EXT3-fs (sda1): using internal journal -05:52:45,170 INFO kernel:EXT3-fs (sda1): mounted filesystem with ordered data mode -05:52:45,170 DEBUG kernel:SELinux: initialized (dev sda1, type ext3), uses xattr -05:52:45,250 DEBUG kernel:SELinux: initialized (dev tmpfs, type tmpfs), uses transition SIDs -05:52:45,384 INFO kernel:kjournald starting. Commit interval 5 seconds -05:52:45,439 INFO kernel:EXT3-fs (dm-1): using internal journal -05:52:45,439 INFO kernel:EXT3-fs (dm-1): mounted filesystem with ordered data mode -05:52:45,439 DEBUG kernel:SELinux: initialized (dev dm-1, type ext3), uses xattr -05:52:45,604 INFO kernel:kjournald starting. Commit interval 5 seconds -05:52:45,648 INFO kernel:EXT3-fs (dm-2): using internal journal -05:52:45,648 INFO kernel:EXT3-fs (dm-2): mounted filesystem with ordered data mode -05:52:45,648 DEBUG kernel:SELinux: initialized (dev dm-2, type ext3), uses xattr -05:52:45,851 INFO kernel:kjournald starting. Commit interval 5 seconds -05:52:45,875 INFO kernel:EXT3-fs (dm-3): using internal journal -05:52:45,875 INFO kernel:EXT3-fs (dm-3): mounted filesystem with ordered data mode -05:52:45,875 DEBUG kernel:SELinux: initialized (dev dm-3, type ext3), uses xattr -05:52:54,110 DEBUG kernel:SELinux: initialized (dev usbfs, type usbfs), uses genfs_contexts -05:52:54,121 NOTICE NetworkManager: ifcfg-rh: updating /etc/sysconfig/network-scripts/ifcfg-eth3 -05:52:54,121 NOTICE NetworkManager: ifcfg-rh: updating /etc/sysconfig/network-scripts/ifcfg-eth2 -05:52:54,124 NOTICE NetworkManager: ifcfg-rh: updating /etc/sysconfig/network-scripts/ifcfg-eth1 -05:52:55,143 NOTICE NetworkManager: ifcfg-rh: updating /etc/sysconfig/network-scripts/ifcfg-eth3 -05:52:55,145 NOTICE NetworkManager: ifcfg-rh: updating /etc/sysconfig/network-scripts/ifcfg-eth2 -05:52:55,146 NOTICE NetworkManager: ifcfg-rh: updating /etc/sysconfig/network-scripts/ifcfg-eth1 -05:52:55,146 NOTICE NetworkManager: ifcfg-rh: updating /etc/sysconfig/network-scripts/ifcfg-eth0 -06:11:24,179 DEBUG kernel:SELinux: 2048 avtab hash slots, 277800 rules. -06:11:24,305 DEBUG kernel:SELinux: 2048 avtab hash slots, 277800 rules. -06:11:24,821 DEBUG kernel:SELinux: 9 users, 12 roles, 3917 types, 217 bools, 1 sens, 1024 cats -06:11:24,821 DEBUG kernel:SELinux: 81 classes, 277800 rules diff --git a/compass/tests/actions/update_progress/data/test2/anamon/checkpoint_2/server1.1/anaconda.log.template b/compass/tests/actions/update_progress/data/test2/anamon/checkpoint_2/server1.1/anaconda.log.template deleted file mode 100644 index 77c5c1c1..00000000 --- a/compass/tests/actions/update_progress/data/test2/anamon/checkpoint_2/server1.1/anaconda.log.template +++ /dev/null @@ -1,223 +0,0 @@ -05:51:20,534 INFO : kernel command line: initrd=/images/CentOS-6.5-x86_64/initrd.img ksdevice=bootif lang= kssendmac text ks=http://10.145.88.211/cblr/svc/op/ks/system/server1.1 BOOT_IMAGE=/images/CentOS-6.5-x86_64/vmlinuz BOOTIF=01-00-0c-29-21-89-af - -05:51:20,534 INFO : text mode forced from cmdline -05:51:20,534 DEBUG : readNetInfo /tmp/s390net not found, early return -05:51:20,534 INFO : anaconda version 13.21.215 on x86_64 starting -05:51:20,656 DEBUG : Saving module ipv6 -05:51:20,656 DEBUG : Saving module iscsi_ibft -05:51:20,656 DEBUG : Saving module iscsi_boot_sysfs -05:51:20,656 DEBUG : Saving module pcspkr -05:51:20,656 DEBUG : Saving module edd -05:51:20,656 DEBUG : Saving module floppy -05:51:20,656 DEBUG : Saving module iscsi_tcp -05:51:20,656 DEBUG : Saving module libiscsi_tcp -05:51:20,656 DEBUG : Saving module libiscsi -05:51:20,656 DEBUG : Saving module scsi_transport_iscsi -05:51:20,656 DEBUG : Saving module squashfs -05:51:20,656 DEBUG : Saving module cramfs -05:51:20,656 DEBUG : probing buses -05:51:20,693 DEBUG : waiting for hardware to initialize -05:51:27,902 DEBUG : probing buses -05:51:27,925 DEBUG : waiting for hardware to initialize -05:51:47,187 INFO : getting kickstart file -05:51:47,196 INFO : eth0 has link, using it -05:51:47,208 INFO : doing kickstart... setting it up -05:51:47,208 DEBUG : activating device eth0 -05:51:52,221 INFO : wait_for_iface_activation (2502): device eth0 activated -05:51:52,222 INFO : file location: http://10.145.88.211/cblr/svc/op/ks/system/server1.1 -05:51:52,223 INFO : transferring http://10.145.88.211/cblr/svc/op/ks/system/server1.1 -05:51:52,611 INFO : setting up kickstart -05:51:52,611 INFO : kickstart forcing text mode -05:51:52,611 INFO : kickstartFromUrl -05:51:52,612 INFO : results of url ks, url http://10.145.88.211/cblr/links/CentOS-6.5-x86_64 -05:51:52,612 INFO : trying to mount CD device /dev/sr0 on /mnt/stage2 -05:51:52,616 INFO : drive status is CDS_TRAY_OPEN -05:51:52,616 ERROR : Drive tray reports open when it should be closed -05:52:07,635 INFO : no stage2= given, assuming http://10.145.88.211/cblr/links/CentOS-6.5-x86_64/images/install.img -05:52:07,636 DEBUG : going to set language to en_US.UTF-8 -05:52:07,636 INFO : setting language to en_US.UTF-8 -05:52:07,654 INFO : starting STEP_METHOD -05:52:07,654 DEBUG : loaderData->method is set, adding skipMethodDialog -05:52:07,654 DEBUG : skipMethodDialog is set -05:52:07,663 INFO : starting STEP_STAGE2 -05:52:07,663 INFO : URL_STAGE_MAIN: url is http://10.145.88.211/cblr/links/CentOS-6.5-x86_64/images/install.img -05:52:07,663 INFO : transferring http://10.145.88.211/cblr/links/CentOS-6.5-x86_64/images/updates.img -05:52:07,780 ERROR : failed to mount loopback device /dev/loop7 on /tmp/update-disk as /tmp/updates-disk.img: (null) -05:52:07,780 ERROR : Error mounting /dev/loop7 on /tmp/update-disk: No such file or directory -05:52:07,780 INFO : transferring http://10.145.88.211/cblr/links/CentOS-6.5-x86_64/images/product.img -05:52:07,814 ERROR : Error downloading http://10.145.88.211/cblr/links/CentOS-6.5-x86_64/images/product.img: HTTP response code said error -05:52:07,815 INFO : transferring http://10.145.88.211/cblr/links/CentOS-6.5-x86_64/images/install.img -05:52:47,354 INFO : mounted loopback device /mnt/runtime on /dev/loop0 as /tmp/install.img -05:52:47,354 INFO : got stage2 at url http://10.145.88.211/cblr/links/CentOS-6.5-x86_64/images/install.img -05:52:47,403 INFO : Loading SELinux policy -05:52:48,130 INFO : getting ready to spawn shell now -05:52:48,359 INFO : Running anaconda script /usr/bin/anaconda -05:52:54,804 INFO : CentOS Linux is the highest priority installclass, using it -05:52:54,867 WARNING : /usr/lib/python2.6/site-packages/pykickstart/parser.py:713: DeprecationWarning: Script does not end with %end. This syntax has been deprecated. It may be removed from future releases, which will result in a fatal error from kickstart. Please modify your kickstart file to use this updated syntax. - warnings.warn(_("%s does not end with %%end. This syntax has been deprecated. It may be removed from future releases, which will result in a fatal error from kickstart. Please modify your kickstart file to use this updated syntax.") % _("Script"), DeprecationWarning) - -05:52:54,868 INFO : Running kickstart %%pre script(s) -05:52:54,868 WARNING : '/bin/sh' specified as full path -05:52:56,966 INFO : All kickstart %%pre script(s) have been run -05:52:57,017 INFO : ISCSID is /usr/sbin/iscsid -05:52:57,017 INFO : no initiator set -05:52:57,128 WARNING : '/usr/libexec/fcoe/fcoe_edd.sh' specified as full path -05:52:57,137 INFO : No FCoE EDD info found: No FCoE boot disk information is found in EDD! - -05:52:57,138 INFO : no /etc/zfcp.conf; not configuring zfcp -05:53:00,902 INFO : created new libuser.conf at /tmp/libuser.WMDW9M with instPath="/mnt/sysimage" -05:53:00,903 INFO : anaconda called with cmdline = ['/usr/bin/anaconda', '--stage2', 'http://10.145.88.211/cblr/links/CentOS-6.5-x86_64/images/install.img', '--kickstart', '/tmp/ks.cfg', '-T', '--selinux', '--lang', 'en_US', '--keymap', 'us', '--repo', 'http://10.145.88.211/cblr/links/CentOS-6.5-x86_64'] -05:53:00,903 INFO : Display mode = t -05:53:00,903 INFO : Default encoding = utf-8 -05:53:01,064 INFO : Detected 2016M of memory -05:53:01,064 INFO : Swap attempt of 4032M -05:53:01,398 INFO : ISCSID is /usr/sbin/iscsid -05:53:01,399 INFO : no initiator set -05:53:05,059 INFO : setting installation environment hostname to server1 -05:53:05,104 WARNING : Timezone US/Pacific set in kickstart is not valid. -05:53:05,276 INFO : Detected 2016M of memory -05:53:05,277 INFO : Suggested swap size (4032 M) exceeds 10 % of disk space, using 10 % of disk space (3276 M) instead. -05:53:05,277 INFO : Swap attempt of 3276M -05:53:05,453 WARNING : step installtype does not exist -05:53:05,454 WARNING : step confirminstall does not exist -05:53:05,454 WARNING : step complete does not exist -05:53:05,454 WARNING : step complete does not exist -05:53:05,454 WARNING : step complete does not exist -05:53:05,454 WARNING : step complete does not exist -05:53:05,455 WARNING : step complete does not exist -05:53:05,455 WARNING : step complete does not exist -05:53:05,455 WARNING : step complete does not exist -05:53:05,455 WARNING : step complete does not exist -05:53:05,455 WARNING : step complete does not exist -05:53:05,456 WARNING : step complete does not exist -05:53:05,456 WARNING : step complete does not exist -05:53:05,456 WARNING : step complete does not exist -05:53:05,456 WARNING : step complete does not exist -05:53:05,456 WARNING : step complete does not exist -05:53:05,457 WARNING : step complete does not exist -05:53:05,457 INFO : moving (1) to step setuptime -05:53:05,458 DEBUG : setuptime is a direct step -22:53:05,458 WARNING : '/usr/sbin/hwclock' specified as full path -22:53:06,002 INFO : leaving (1) step setuptime -22:53:06,003 INFO : moving (1) to step autopartitionexecute -22:53:06,003 DEBUG : autopartitionexecute is a direct step -22:53:06,138 INFO : leaving (1) step autopartitionexecute -22:53:06,138 INFO : moving (1) to step storagedone -22:53:06,138 DEBUG : storagedone is a direct step -22:53:06,138 INFO : leaving (1) step storagedone -22:53:06,139 INFO : moving (1) to step enablefilesystems -22:53:06,139 DEBUG : enablefilesystems is a direct step -22:53:10,959 DEBUG : notifying kernel of 'change' event on device /sys/class/block/sda3 -22:53:41,215 DEBUG : notifying kernel of 'change' event on device /sys/class/block/sda1 -22:53:57,388 DEBUG : notifying kernel of 'change' event on device /sys/class/block/sda3 -22:54:14,838 DEBUG : notifying kernel of 'change' event on device /sys/class/block/dm-0 -22:54:21,717 DEBUG : notifying kernel of 'change' event on device /sys/class/block/dm-1 -22:54:27,576 DEBUG : notifying kernel of 'change' event on device /sys/class/block/dm-2 -22:54:40,058 DEBUG : notifying kernel of 'change' event on device /sys/class/block/dm-3 -22:54:41,949 INFO : failed to set SELinux context for /mnt/sysimage: [Errno 95] Operation not supported -22:54:41,950 DEBUG : isys.py:mount()- going to mount /dev/mapper/server1-rootvol on /mnt/sysimage as ext3 with options defaults -22:54:42,826 DEBUG : isys.py:mount()- going to mount /dev/sda1 on /mnt/sysimage/boot as ext3 with options defaults -22:54:43,148 DEBUG : isys.py:mount()- going to mount //dev on /mnt/sysimage/dev as bind with options defaults,bind -22:54:43,158 DEBUG : isys.py:mount()- going to mount devpts on /mnt/sysimage/dev/pts as devpts with options gid=5,mode=620 -22:54:43,164 DEBUG : isys.py:mount()- going to mount tmpfs on /mnt/sysimage/dev/shm as tmpfs with options defaults -22:54:43,207 DEBUG : isys.py:mount()- going to mount /dev/mapper/server1-homevol on /mnt/sysimage/home as ext3 with options defaults -22:54:43,434 INFO : failed to get default SELinux context for /proc: [Errno 2] No such file or directory -22:54:43,435 DEBUG : isys.py:mount()- going to mount proc on /mnt/sysimage/proc as proc with options defaults -22:54:43,439 INFO : failed to get default SELinux context for /proc: [Errno 2] No such file or directory -22:54:43,496 DEBUG : isys.py:mount()- going to mount sysfs on /mnt/sysimage/sys as sysfs with options defaults -22:54:43,609 DEBUG : isys.py:mount()- going to mount /dev/mapper/server1-tmpvol on /mnt/sysimage/tmp as ext3 with options defaults -22:54:43,874 DEBUG : isys.py:mount()- going to mount /dev/mapper/server1-varvol on /mnt/sysimage/var as ext3 with options defaults -22:54:44,056 INFO : leaving (1) step enablefilesystems -22:54:44,057 INFO : moving (1) to step bootloadersetup -22:54:44,057 DEBUG : bootloadersetup is a direct step -22:54:44,061 INFO : leaving (1) step bootloadersetup -22:54:44,061 INFO : moving (1) to step reposetup -22:54:44,061 DEBUG : reposetup is a direct step -22:54:56,952 ERROR : Error downloading treeinfo file: [Errno 14] PYCURL ERROR 22 - "The requested URL returned error: 404 Not Found" -22:54:56,953 INFO : added repository ppa_repo with URL http://10.145.88.211:80/cobbler/repo_mirror/ppa_repo/ -22:54:57,133 DEBUG : Grabbing http://10.145.88.211/cblr/links/CentOS-6.5-x86_64/repodata/repomd.xml -22:54:57,454 DEBUG : Grabbing http://10.145.88.211/cblr/links/CentOS-6.5-x86_64/repodata/0e371b19e547b9d7a7e8acc4b8c0c7c074509d33653cfaef9e8f4fd1d62d95de-primary.sqlite.bz2 -22:54:58,637 DEBUG : Grabbing http://10.145.88.211/cblr/links/CentOS-6.5-x86_64/repodata/34bae2d3c9c78e04ed2429923bc095005af1b166d1a354422c4c04274bae0f59-c6-minimal-x86_64.xml -22:54:58,971 INFO : leaving (1) step reposetup -22:54:58,971 INFO : moving (1) to step basepkgsel -22:54:58,972 DEBUG : basepkgsel is a direct step -22:54:58,986 WARNING : not adding Base group -22:54:59,388 INFO : leaving (1) step basepkgsel -22:54:59,388 INFO : moving (1) to step postselection -22:54:59,388 DEBUG : postselection is a direct step -22:54:59,390 INFO : selected kernel package for kernel -22:54:59,848 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/fs/ext3/ext3.ko.gz -22:54:59,848 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/fs/jbd/jbd.ko.gz -22:54:59,848 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/fs/mbcache.ko.gz -22:54:59,848 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/scsi/fcoe/fcoe.ko.gz -22:54:59,848 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/scsi/fcoe/libfcoe.ko.gz -22:54:59,849 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/scsi/libfc/libfc.ko.gz -22:54:59,849 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/scsi/scsi_transport_fc.ko.gz -22:54:59,849 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/scsi/scsi_tgt.ko.gz -22:54:59,849 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/crypto/xts.ko.gz -22:54:59,849 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/crypto/lrw.ko.gz -22:54:59,849 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/crypto/gf128mul.ko.gz -22:54:59,849 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/crypto/sha256_generic.ko.gz -22:54:59,849 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/crypto/cbc.ko.gz -22:54:59,849 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/md/dm-raid.ko.gz -22:54:59,849 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/md/dm-crypt.ko.gz -22:54:59,850 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/md/dm-round-robin.ko.gz -22:54:59,850 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/md/dm-multipath.ko.gz -22:54:59,850 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/md/dm-snapshot.ko.gz -22:54:59,850 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/md/dm-mirror.ko.gz -22:54:59,850 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/md/dm-region-hash.ko.gz -22:54:59,850 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/md/dm-log.ko.gz -22:54:59,850 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/md/dm-zero.ko.gz -22:54:59,850 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/md/dm-mod.ko.gz -22:54:59,850 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/md/linear.ko.gz -22:54:59,850 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/md/raid10.ko.gz -22:54:59,850 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/md/raid456.ko.gz -22:54:59,851 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/crypto/async_tx/async_raid6_recov.ko.gz -22:54:59,851 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/crypto/async_tx/async_pq.ko.gz -22:54:59,851 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/lib/raid6/raid6_pq.ko.gz -22:54:59,851 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/crypto/async_tx/async_xor.ko.gz -22:54:59,851 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/crypto/xor.ko.gz -22:54:59,851 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/crypto/async_tx/async_memcpy.ko.gz -22:54:59,851 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/crypto/async_tx/async_tx.ko.gz -22:54:59,851 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/md/raid1.ko.gz -22:54:59,851 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/md/raid0.ko.gz -22:54:59,852 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/net/8021q/8021q.ko.gz -22:54:59,852 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/net/802/garp.ko.gz -22:54:59,852 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/net/802/stp.ko.gz -22:54:59,852 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/net/llc/llc.ko.gz -22:54:59,852 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/infiniband/hw/mlx4/mlx4_ib.ko.gz -22:54:59,852 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/net/mlx4/mlx4_en.ko.gz -22:54:59,852 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/net/mlx4/mlx4_core.ko.gz -22:54:59,852 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/infiniband/ulp/ipoib/ib_ipoib.ko.gz -22:54:59,852 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/infiniband/core/ib_cm.ko.gz -22:54:59,853 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/infiniband/core/ib_sa.ko.gz -22:54:59,853 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/infiniband/core/ib_mad.ko.gz -22:54:59,853 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/infiniband/core/ib_core.ko.gz -22:54:59,853 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/scsi/sg.ko.gz -22:54:59,853 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/scsi/sd_mod.ko.gz -22:54:59,853 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/lib/crc-t10dif.ko.gz -22:54:59,853 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/net/e1000/e1000.ko.gz -22:54:59,853 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/scsi/sr_mod.ko.gz -22:54:59,853 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/cdrom/cdrom.ko.gz -22:54:59,853 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/misc/vmware_balloon.ko.gz -22:54:59,853 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/message/fusion/mptspi.ko.gz -22:54:59,854 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/message/fusion/mptscsih.ko.gz -22:54:59,854 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/message/fusion/mptbase.ko.gz -22:54:59,854 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/scsi/scsi_transport_spi.ko.gz -22:54:59,854 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/ata/pata_acpi.ko.gz -22:54:59,854 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/ata/ata_generic.ko.gz -22:54:59,854 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/ata/ata_piix.ko.gz -22:54:59,854 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/net/ipv6/ipv6.ko.gz -22:54:59,854 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/firmware/iscsi_ibft.ko.gz -22:54:59,854 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/scsi/iscsi_boot_sysfs.ko.gz -22:54:59,854 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/input/misc/pcspkr.ko.gz -22:54:59,855 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/firmware/edd.ko.gz -22:54:59,855 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/block/floppy.ko.gz -22:54:59,855 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/scsi/iscsi_tcp.ko.gz -22:54:59,855 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/scsi/libiscsi_tcp.ko.gz -22:54:59,855 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/scsi/libiscsi.ko.gz -22:54:59,855 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/scsi/scsi_transport_iscsi.ko.gz -22:54:59,855 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/fs/squashfs/squashfs.ko.gz -22:54:59,855 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/fs/cramfs/cramfs.ko.gz -22:55:07,745 INFO : leaving (1) step postselection -22:55:07,745 INFO : moving (1) to step install diff --git a/compass/tests/actions/update_progress/data/test2/anamon/checkpoint_2/server1.1/sys.log.template b/compass/tests/actions/update_progress/data/test2/anamon/checkpoint_2/server1.1/sys.log.template deleted file mode 100644 index 7390276a..00000000 --- a/compass/tests/actions/update_progress/data/test2/anamon/checkpoint_2/server1.1/sys.log.template +++ /dev/null @@ -1,1726 +0,0 @@ -05:51:18,517 INFO kernel:imklog 5.8.10, log source = /proc/kmsg started. -05:51:18,517 INFO rsyslogd: [origin software="rsyslogd" swVersion="5.8.10" x-pid="68" x-info="http://www.rsyslog.com"] start -05:51:18,517 INFO kernel:Initializing cgroup subsys cpuset -05:51:18,517 INFO kernel:Initializing cgroup subsys cpu -05:51:18,517 NOTICE kernel:Linux version 2.6.32-431.el6.x86_64 (mockbuild@c6b8.bsys.dev.centos.org) (gcc version 4.4.7 20120313 (Red Hat 4.4.7-4) (GCC) ) #1 SMP Fri Nov 22 03:15:09 UTC 2013 -05:51:18,517 INFO kernel:Command line: initrd=/images/CentOS-6.5-x86_64/initrd.img ksdevice=bootif lang= kssendmac text ks=http://10.145.88.211/cblr/svc/op/ks/system/server1.1 BOOT_IMAGE=/images/CentOS-6.5-x86_64/vmlinuz BOOTIF=01-00-0c-29-21-89-af -05:51:18,517 INFO kernel:KERNEL supported cpus: -05:51:18,517 INFO kernel: Intel GenuineIntel -05:51:18,517 INFO kernel: AMD AuthenticAMD -05:51:18,517 INFO kernel: Centaur CentaurHauls -05:51:18,517 INFO kernel:Disabled fast string operations -05:51:18,517 INFO kernel:BIOS-provided physical RAM map: -05:51:18,517 INFO kernel: BIOS-e820: 0000000000000000 - 000000000009f400 (usable) -05:51:18,517 INFO kernel: BIOS-e820: 000000000009f400 - 00000000000a0000 (reserved) -05:51:18,517 INFO kernel: BIOS-e820: 00000000000ca000 - 00000000000cc000 (reserved) -05:51:18,517 INFO kernel: BIOS-e820: 00000000000dc000 - 0000000000100000 (reserved) -05:51:18,517 INFO kernel: BIOS-e820: 0000000000100000 - 000000007fef0000 (usable) -05:51:18,517 INFO kernel: BIOS-e820: 000000007fef0000 - 000000007feff000 (ACPI data) -05:51:18,517 INFO kernel: BIOS-e820: 000000007feff000 - 000000007ff00000 (ACPI NVS) -05:51:18,517 INFO kernel: BIOS-e820: 000000007ff00000 - 0000000080000000 (usable) -05:51:18,517 INFO kernel: BIOS-e820: 00000000e0000000 - 00000000f0000000 (reserved) -05:51:18,517 INFO kernel: BIOS-e820: 00000000fec00000 - 00000000fec10000 (reserved) -05:51:18,517 INFO kernel: BIOS-e820: 00000000fee00000 - 00000000fee01000 (reserved) -05:51:18,517 INFO kernel: BIOS-e820: 00000000fffe0000 - 0000000100000000 (reserved) -05:51:18,517 INFO kernel:DMI present. -05:51:18,517 WARNING kernel:SMBIOS version 2.4 @ 0xF68F0 -05:51:18,517 DEBUG kernel:DMI: VMware, Inc. VMware Virtual Platform/440BX Desktop Reference Platform, BIOS 6.00 01/07/2011 -05:51:18,517 NOTICE kernel:Phoenix BIOS detected: BIOS may corrupt low RAM, working around it. -05:51:18,517 DEBUG kernel:e820 update range: 0000000000000000 - 0000000000010000 (usable) ==> (reserved) -05:51:18,517 INFO kernel:Hypervisor detected: VMware -05:51:18,517 DEBUG kernel:e820 update range: 0000000000000000 - 0000000000001000 (usable) ==> (reserved) -05:51:18,517 DEBUG kernel:e820 remove range: 00000000000a0000 - 0000000000100000 (usable) -05:51:18,517 INFO kernel:last_pfn = 0x80000 max_arch_pfn = 0x400000000 -05:51:18,517 DEBUG kernel:MTRR default type: uncachable -05:51:18,517 DEBUG kernel:MTRR fixed ranges enabled: -05:51:18,517 DEBUG kernel: 00000-9FFFF write-back -05:51:18,517 DEBUG kernel: A0000-BFFFF uncachable -05:51:18,517 DEBUG kernel: C0000-CFFFF write-protect -05:51:18,517 DEBUG kernel: D0000-EFFFF uncachable -05:51:18,517 DEBUG kernel: F0000-FFFFF write-protect -05:51:18,517 DEBUG kernel:MTRR variable ranges enabled: -05:51:18,517 DEBUG kernel: 0 base 0000000000 mask FF80000000 write-back -05:51:18,517 DEBUG kernel: 1 disabled -05:51:18,517 DEBUG kernel: 2 disabled -05:51:18,517 DEBUG kernel: 3 disabled -05:51:18,517 DEBUG kernel: 4 disabled -05:51:18,517 DEBUG kernel: 5 disabled -05:51:18,517 DEBUG kernel: 6 disabled -05:51:18,517 DEBUG kernel: 7 disabled -05:51:18,517 INFO kernel:x86 PAT enabled: cpu 0, old 0x0, new 0x7010600070106 -05:51:18,517 DEBUG kernel:initial memory mapped : 0 - 20000000 -05:51:18,517 INFO kernel:init_memory_mapping: 0000000000000000-0000000080000000 -05:51:18,517 DEBUG kernel: 0000000000 - 0080000000 page 2M -05:51:18,517 DEBUG kernel:kernel direct mapping tables up to 80000000 @ 10000-13000 -05:51:18,517 INFO kernel:RAMDISK: 7def9000 - 7fecf4ff -05:51:18,517 WARNING kernel:ACPI: RSDP 00000000000f6940 00024 (v02 PTLTD ) -05:51:18,517 WARNING kernel:ACPI: XSDT 000000007fef0333 00054 (v01 INTEL 440BX 06040000 VMW 01324272) -05:51:18,517 WARNING kernel:ACPI: FACP 000000007fefee98 000F4 (v04 INTEL 440BX 06040000 PTL 000F4240) -05:51:18,517 WARNING kernel:ACPI: DSDT 000000007fef055d 0E93B (v01 PTLTD Custom 06040000 MSFT 03000001) -05:51:18,517 WARNING kernel:ACPI: FACS 000000007fefffc0 00040 -05:51:18,517 WARNING kernel:ACPI: BOOT 000000007fef0535 00028 (v01 PTLTD $SBFTBL$ 06040000 LTP 00000001) -05:51:18,517 WARNING kernel:ACPI: APIC 000000007fef04d7 0005E (v01 PTLTD ? APIC 06040000 LTP 00000000) -05:51:18,517 WARNING kernel:ACPI: MCFG 000000007fef049b 0003C (v01 PTLTD $PCITBL$ 06040000 LTP 00000001) -05:51:18,517 WARNING kernel:ACPI: SRAT 000000007fef03fb 000A0 (v02 VMWARE MEMPLUG 06040000 VMW 00000001) -05:51:18,517 WARNING kernel:ACPI: HPET 000000007fef03c3 00038 (v01 VMWARE VMW HPET 06040000 WMV 00000001) -05:51:18,517 DEBUG kernel:ACPI: Local APIC address 0xfee00000 -05:51:18,517 INFO kernel:Setting APIC routing to flat. -05:51:18,517 INFO kernel:SRAT: PXM 0 -> APIC 0 -> Node 0 -05:51:18,517 INFO kernel:SRAT: PXM 0 -> APIC 1 -> Node 0 -05:51:18,517 INFO kernel:SRAT: Node 0 PXM 0 0-a0000 -05:51:18,517 INFO kernel:SRAT: Node 0 PXM 0 100000-80000000 -05:51:18,517 DEBUG kernel:NUMA: Allocated memnodemap from 11000 - 12040 -05:51:18,517 DEBUG kernel:NUMA: Using 20 for the hash shift. -05:51:18,517 INFO kernel:Bootmem setup node 0 0000000000000000-0000000080000000 -05:51:18,517 INFO kernel: NODE_DATA [0000000000012040 - 000000000004603f] -05:51:18,517 INFO kernel: bootmap [0000000000047000 - 0000000000056fff] pages 10 -05:51:18,517 INFO kernel:(8 early reservations) ==> bootmem [0000000000 - 0080000000] -05:51:18,517 INFO kernel: #0 [0000000000 - 0000001000] BIOS data page ==> [0000000000 - 0000001000] -05:51:18,517 INFO kernel: #1 [0000006000 - 0000008000] TRAMPOLINE ==> [0000006000 - 0000008000] -05:51:18,517 INFO kernel: #2 [0001000000 - 000201faa4] TEXT DATA BSS ==> [0001000000 - 000201faa4] -05:51:18,517 INFO kernel: #3 [007def9000 - 007fecf4ff] RAMDISK ==> [007def9000 - 007fecf4ff] -05:51:18,517 INFO kernel: #4 [000009f400 - 0000100000] BIOS reserved ==> [000009f400 - 0000100000] -05:51:18,517 INFO kernel: #5 [0002020000 - 00020201f0] BRK ==> [0002020000 - 00020201f0] -05:51:18,517 INFO kernel: #6 [0000010000 - 0000011000] PGTABLE ==> [0000010000 - 0000011000] -05:51:18,517 INFO kernel: #7 [0000011000 - 0000012040] MEMNODEMAP ==> [0000011000 - 0000012040] -05:51:18,517 INFO kernel:found SMP MP-table at [ffff8800000f69b0] f69b0 -05:51:18,517 DEBUG kernel: [ffffea0000000000-ffffea0001bfffff] PMD -> [ffff880002600000-ffff8800041fffff] on node 0 -05:51:18,517 WARNING kernel:Zone PFN ranges: -05:51:18,517 WARNING kernel: DMA 0x00000010 -> 0x00001000 -05:51:18,517 WARNING kernel: DMA32 0x00001000 -> 0x00100000 -05:51:18,517 WARNING kernel: Normal 0x00100000 -> 0x00100000 -05:51:18,517 WARNING kernel:Movable zone start PFN for each node -05:51:18,517 WARNING kernel:early_node_map[3] active PFN ranges -05:51:18,517 WARNING kernel: 0: 0x00000010 -> 0x0000009f -05:51:18,517 WARNING kernel: 0: 0x00000100 -> 0x0007fef0 -05:51:18,517 WARNING kernel: 0: 0x0007ff00 -> 0x00080000 -05:51:18,517 DEBUG kernel:On node 0 totalpages: 524159 -05:51:18,517 DEBUG kernel: DMA zone: 56 pages used for memmap -05:51:18,517 DEBUG kernel: DMA zone: 101 pages reserved -05:51:18,517 DEBUG kernel: DMA zone: 3826 pages, LIFO batch:0 -05:51:18,517 DEBUG kernel: DMA32 zone: 7112 pages used for memmap -05:51:18,517 DEBUG kernel: DMA32 zone: 513064 pages, LIFO batch:31 -05:51:18,517 INFO kernel:ACPI: PM-Timer IO Port: 0x1008 -05:51:18,517 DEBUG kernel:ACPI: Local APIC address 0xfee00000 -05:51:18,517 INFO kernel:Setting APIC routing to flat. -05:51:18,517 INFO kernel:ACPI: LAPIC (acpi_id[0x00] lapic_id[0x00] enabled) -05:51:18,517 INFO kernel:ACPI: LAPIC (acpi_id[0x01] lapic_id[0x01] enabled) -05:51:18,517 INFO kernel:ACPI: LAPIC_NMI (acpi_id[0x00] high edge lint[0x1]) -05:51:18,517 INFO kernel:ACPI: LAPIC_NMI (acpi_id[0x01] high edge lint[0x1]) -05:51:18,517 INFO kernel:ACPI: IOAPIC (id[0x02] address[0xfec00000] gsi_base[0]) -05:51:18,518 INFO kernel:IOAPIC[0]: apic_id 2, version 17, address 0xfec00000, GSI 0-23 -05:51:18,518 INFO kernel:ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 high edge) -05:51:18,518 DEBUG kernel:ACPI: IRQ0 used by override. -05:51:18,518 DEBUG kernel:ACPI: IRQ2 used by override. -05:51:18,518 DEBUG kernel:ACPI: IRQ9 used by override. -05:51:18,518 INFO kernel:Using ACPI (MADT) for SMP configuration information -05:51:18,518 INFO kernel:ACPI: HPET id: 0x8086af01 base: 0xfed00000 -05:51:18,518 INFO kernel:SMP: Allowing 2 CPUs, 0 hotplug CPUs -05:51:18,518 DEBUG kernel:nr_irqs_gsi: 24 -05:51:18,518 INFO kernel:PM: Registered nosave memory: 000000000009f000 - 00000000000a0000 -05:51:18,518 INFO kernel:PM: Registered nosave memory: 00000000000a0000 - 00000000000ca000 -05:51:18,518 INFO kernel:PM: Registered nosave memory: 00000000000ca000 - 00000000000cc000 -05:51:18,518 INFO kernel:PM: Registered nosave memory: 00000000000cc000 - 00000000000dc000 -05:51:18,518 INFO kernel:PM: Registered nosave memory: 00000000000dc000 - 0000000000100000 -05:51:18,518 INFO kernel:PM: Registered nosave memory: 000000007fef0000 - 000000007feff000 -05:51:18,518 INFO kernel:PM: Registered nosave memory: 000000007feff000 - 000000007ff00000 -05:51:18,518 INFO kernel:Allocating PCI resources starting at 80000000 (gap: 80000000:60000000) -05:51:18,518 INFO kernel:Booting paravirtualized kernel on bare hardware -05:51:18,518 INFO kernel:NR_CPUS:4096 nr_cpumask_bits:2 nr_cpu_ids:2 nr_node_ids:1 -05:51:18,518 INFO kernel:PERCPU: Embedded 31 pages/cpu @ffff880002200000 s94872 r8192 d23912 u1048576 -05:51:18,518 INFO kernel:pcpu-alloc: s94872 r8192 d23912 u1048576 alloc=1*2097152 -05:51:18,518 INFO kernel:pcpu-alloc: [0] 0 1 -05:51:18,518 WARNING kernel:Built 1 zonelists in Node order, mobility grouping on. Total pages: 516890 -05:51:18,520 WARNING kernel:Policy zone: DMA32 -05:51:18,520 NOTICE kernel:Kernel command line: initrd=/images/CentOS-6.5-x86_64/initrd.img ksdevice=bootif lang= kssendmac text ks=http://10.145.88.211/cblr/svc/op/ks/system/server1.1 BOOT_IMAGE=/images/CentOS-6.5-x86_64/vmlinuz BOOTIF=01-00-0c-29-21-89-af -05:51:18,520 INFO kernel:PID hash table entries: 4096 (order: 3, 32768 bytes) -05:51:18,520 INFO kernel:Checking aperture... -05:51:18,520 INFO kernel:No AGP bridge found -05:51:18,520 INFO kernel:Memory: 2018096k/2097152k available (5325k kernel code, 516k absent, 78540k reserved, 7013k data, 1276k init) -05:51:18,520 INFO kernel:Hierarchical RCU implementation. -05:51:18,520 INFO kernel:NR_IRQS:33024 nr_irqs:424 -05:51:18,520 INFO kernel:Extended CMOS year: 2000 -05:51:18,520 WARNING kernel:Console: colour VGA+ 80x25 -05:51:18,520 INFO kernel:console [tty0] enabled -05:51:18,520 INFO kernel:allocated 8388608 bytes of page_cgroup -05:51:18,520 INFO kernel:please try 'cgroup_disable=memory' option if you don't want memory cgroups -05:51:18,520 DEBUG kernel:hpet clockevent registered -05:51:18,520 INFO kernel:TSC freq read from hypervisor : 2400.085 MHz -05:51:18,520 WARNING kernel:Detected 2400.085 MHz processor. -05:51:18,520 INFO kernel:Calibrating delay loop (skipped) preset value.. 4800.17 BogoMIPS (lpj=2400085) -05:51:18,520 INFO kernel:pid_max: default: 32768 minimum: 301 -05:51:18,520 INFO kernel:Security Framework initialized -05:51:18,520 INFO kernel:SELinux: Initializing. -05:51:18,520 DEBUG kernel:SELinux: Starting in permissive mode -05:51:18,520 INFO kernel:Dentry cache hash table entries: 262144 (order: 9, 2097152 bytes) -05:51:18,520 INFO kernel:Inode-cache hash table entries: 131072 (order: 8, 1048576 bytes) -05:51:18,520 WARNING kernel:Mount-cache hash table entries: 256 -05:51:18,520 INFO kernel:Initializing cgroup subsys ns -05:51:18,520 INFO kernel:Initializing cgroup subsys cpuacct -05:51:18,520 INFO kernel:Initializing cgroup subsys memory -05:51:18,520 INFO kernel:Initializing cgroup subsys devices -05:51:18,520 INFO kernel:Initializing cgroup subsys freezer -05:51:18,520 INFO kernel:Initializing cgroup subsys net_cls -05:51:18,520 INFO kernel:Initializing cgroup subsys blkio -05:51:18,520 INFO kernel:Initializing cgroup subsys perf_event -05:51:18,520 INFO kernel:Initializing cgroup subsys net_prio -05:51:18,520 INFO kernel:Disabled fast string operations -05:51:18,520 INFO kernel:CPU: Physical Processor ID: 0 -05:51:18,520 INFO kernel:mce: CPU supports 0 MCE banks -05:51:18,520 INFO kernel:alternatives: switching to unfair spinlock -05:51:18,520 INFO kernel:ACPI: Core revision 20090903 -05:51:18,520 INFO kernel:ftrace: converting mcount calls to 0f 1f 44 00 00 -05:51:18,520 INFO kernel:ftrace: allocating 21769 entries in 86 pages -05:51:18,520 INFO kernel:APIC routing finalized to flat. -05:51:18,520 INFO kernel:..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1 -05:51:18,520 INFO kernel:CPU0: Intel(R) Xeon(R) CPU E5620 @ 2.40GHz stepping 02 -05:51:18,520 INFO kernel:Performance Events: 16-deep LBR, Westmere events, Intel PMU driver. -05:51:18,520 WARNING kernel:CPUID marked event: 'cpu cycles' unavailable -05:51:18,520 WARNING kernel:CPUID marked event: 'instructions' unavailable -05:51:18,520 WARNING kernel:CPUID marked event: 'bus cycles' unavailable -05:51:18,520 WARNING kernel:CPUID marked event: 'cache references' unavailable -05:51:18,520 WARNING kernel:CPUID marked event: 'cache misses' unavailable -05:51:18,520 WARNING kernel:CPUID marked event: 'branch instructions' unavailable -05:51:18,520 WARNING kernel:CPUID marked event: 'branch misses' unavailable -05:51:18,520 INFO kernel:... version: 3 -05:51:18,520 INFO kernel:... bit width: 48 -05:51:18,520 INFO kernel:... generic registers: 4 -05:51:18,520 INFO kernel:... value mask: 0000ffffffffffff -05:51:18,520 INFO kernel:... max period: 000000007fffffff -05:51:18,520 INFO kernel:... fixed-purpose events: 3 -05:51:18,520 INFO kernel:... event mask: 000000070000000f -05:51:18,520 WARNING kernel:NMI watchdog disabled (cpu0): hardware events not enabled -05:51:18,520 INFO kernel:Booting Node 0, Processors #1 Ok. -05:51:18,520 INFO kernel:Disabled fast string operations -05:51:18,520 INFO kernel:mce: CPU supports 0 MCE banks -05:51:18,520 INFO kernel:Skipped synchronization checks as TSC is reliable. -05:51:18,520 INFO kernel:Brought up 2 CPUs -05:51:18,520 INFO kernel:Total of 2 processors activated (9600.34 BogoMIPS). -05:51:18,520 INFO kernel:x86 PAT enabled: cpu 0, old 0x0, new 0x7010600070106 -05:51:18,520 INFO kernel:x86 PAT enabled: cpu 1, old 0x0, new 0x7010600070106 -05:51:18,520 DEBUG kernel:sizeof(vma)=200 bytes -05:51:18,520 DEBUG kernel:sizeof(page)=56 bytes -05:51:18,520 DEBUG kernel:sizeof(inode)=592 bytes -05:51:18,520 DEBUG kernel:sizeof(dentry)=192 bytes -05:51:18,520 DEBUG kernel:sizeof(ext3inode)=800 bytes -05:51:18,520 DEBUG kernel:sizeof(buffer_head)=104 bytes -05:51:18,520 DEBUG kernel:sizeof(skbuff)=232 bytes -05:51:18,520 DEBUG kernel:sizeof(task_struct)=2648 bytes -05:51:18,520 INFO kernel:devtmpfs: initialized -05:51:18,520 INFO kernel:PM: Registering ACPI NVS region at 7feff000 (4096 bytes) -05:51:18,520 INFO kernel:regulator: core version 0.5 -05:51:18,520 INFO kernel:NET: Registered protocol family 16 -05:51:18,520 INFO kernel:ACPI: bus type pci registered -05:51:18,520 NOTICE kernel:PCI: MCFG configuration 0: base e0000000 segment 0 buses 0 - 255 -05:51:18,520 NOTICE kernel:PCI: MCFG area at e0000000 reserved in E820 -05:51:18,520 INFO kernel:PCI: Using MMCONFIG at e0000000 - efffffff -05:51:18,520 INFO kernel:PCI: Using configuration type 1 for base access -05:51:18,520 WARNING kernel:bio: create slab at 0 -05:51:18,520 DEBUG kernel:ACPI: EC: Look up EC in DSDT -05:51:18,520 NOTICE kernel:ACPI: BIOS _OSI(Linux) query ignored -05:51:18,520 INFO kernel:ACPI: Interpreter enabled -05:51:18,520 INFO kernel:ACPI: (supports S0 S1 S4 S5) -05:51:18,520 INFO kernel:ACPI: Using IOAPIC for interrupt routing -05:51:18,520 INFO kernel:ACPI: No dock devices found. -05:51:18,520 INFO kernel:PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug -05:51:18,520 INFO kernel:ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-ff]) -05:51:18,520 INFO kernel:pci_root PNP0A03:00: host bridge window [mem 0x000a0000-0x000bffff] -05:51:18,520 INFO kernel:pci_root PNP0A03:00: host bridge window [mem 0x000d0000-0x000d3fff] -05:51:18,520 INFO kernel:pci_root PNP0A03:00: host bridge window [mem 0x000d4000-0x000d7fff] -05:51:18,520 INFO kernel:pci_root PNP0A03:00: host bridge window [mem 0x000d8000-0x000dbfff] -05:51:18,520 INFO kernel:pci_root PNP0A03:00: host bridge window [mem 0x80000000-0xfebfffff] -05:51:18,520 INFO kernel:pci_root PNP0A03:00: host bridge window [io 0x0000-0x0cf7] -05:51:18,520 INFO kernel:pci_root PNP0A03:00: host bridge window [io 0x0d00-0xfeff] -05:51:18,520 INFO kernel:PCI host bridge to bus 0000:00 -05:51:18,520 INFO kernel:pci_bus 0000:00: root bus resource [mem 0x000a0000-0x000bffff] -05:51:18,520 INFO kernel:pci_bus 0000:00: root bus resource [mem 0x000d0000-0x000d3fff] -05:51:18,520 INFO kernel:pci_bus 0000:00: root bus resource [mem 0x000d4000-0x000d7fff] -05:51:18,520 INFO kernel:pci_bus 0000:00: root bus resource [mem 0x000d8000-0x000dbfff] -05:51:18,520 INFO kernel:pci_bus 0000:00: root bus resource [mem 0x80000000-0xfebfffff] -05:51:18,520 INFO kernel:pci_bus 0000:00: root bus resource [io 0x0000-0x0cf7] -05:51:18,520 INFO kernel:pci_bus 0000:00: root bus resource [io 0x0d00-0xfeff] -05:51:18,520 DEBUG kernel:pci 0000:00:07.1: reg 20: [io 0x10c0-0x10cf] -05:51:18,520 INFO kernel:pci 0000:00:07.3: quirk: [io 0x1000-0x103f] claimed by PIIX4 ACPI -05:51:18,520 INFO kernel:pci 0000:00:07.3: quirk: [io 0x1040-0x104f] claimed by PIIX4 SMB -05:51:18,520 DEBUG kernel:pci 0000:00:07.7: reg 10: [io 0x1080-0x10bf] -05:51:18,520 DEBUG kernel:pci 0000:00:07.7: reg 14: [mem 0xd0000000-0xd0001fff 64bit] -05:51:18,520 DEBUG kernel:pci 0000:00:0f.0: reg 10: [io 0x10d0-0x10df] -05:51:18,520 DEBUG kernel:pci 0000:00:0f.0: reg 14: [mem 0xd8000000-0xdbffffff pref] -05:51:18,520 DEBUG kernel:pci 0000:00:0f.0: reg 18: [mem 0xd0800000-0xd0ffffff] -05:51:18,520 DEBUG kernel:pci 0000:00:0f.0: reg 30: [mem 0x00000000-0x00007fff pref] -05:51:18,520 DEBUG kernel:pci 0000:00:10.0: reg 10: [io 0x1400-0x14ff] -05:51:18,520 DEBUG kernel:pci 0000:00:10.0: reg 14: [mem 0xd0040000-0xd005ffff 64bit] -05:51:18,520 DEBUG kernel:pci 0000:00:10.0: reg 1c: [mem 0xd0020000-0xd003ffff 64bit] -05:51:18,520 DEBUG kernel:pci 0000:00:10.0: reg 30: [mem 0x00000000-0x00003fff pref] -05:51:18,520 INFO kernel:pci 0000:00:15.0: PME# supported from D0 D3hot D3cold -05:51:18,520 INFO kernel:pci 0000:00:15.0: PME# disabled -05:51:18,520 INFO kernel:pci 0000:00:15.1: PME# supported from D0 D3hot D3cold -05:51:18,520 INFO kernel:pci 0000:00:15.1: PME# disabled -05:51:18,520 INFO kernel:pci 0000:00:15.2: PME# supported from D0 D3hot D3cold -05:51:18,520 INFO kernel:pci 0000:00:15.2: PME# disabled -05:51:18,520 INFO kernel:pci 0000:00:15.3: PME# supported from D0 D3hot D3cold -05:51:18,520 INFO kernel:pci 0000:00:15.3: PME# disabled -05:51:18,520 INFO kernel:pci 0000:00:15.4: PME# supported from D0 D3hot D3cold -05:51:18,520 INFO kernel:pci 0000:00:15.4: PME# disabled -05:51:18,520 INFO kernel:pci 0000:00:15.5: PME# supported from D0 D3hot D3cold -05:51:18,520 INFO kernel:pci 0000:00:15.5: PME# disabled -05:51:18,520 INFO kernel:pci 0000:00:15.6: PME# supported from D0 D3hot D3cold -05:51:18,520 INFO kernel:pci 0000:00:15.6: PME# disabled -05:51:18,520 INFO kernel:pci 0000:00:15.7: PME# supported from D0 D3hot D3cold -05:51:18,520 INFO kernel:pci 0000:00:15.7: PME# disabled -05:51:18,520 INFO kernel:pci 0000:00:16.0: PME# supported from D0 D3hot D3cold -05:51:18,520 INFO kernel:pci 0000:00:16.0: PME# disabled -05:51:18,520 INFO kernel:pci 0000:00:16.1: PME# supported from D0 D3hot D3cold -05:51:18,520 INFO kernel:pci 0000:00:16.1: PME# disabled -05:51:18,520 INFO kernel:pci 0000:00:16.2: PME# supported from D0 D3hot D3cold -05:51:18,520 INFO kernel:pci 0000:00:16.2: PME# disabled -05:51:18,520 INFO kernel:pci 0000:00:16.3: PME# supported from D0 D3hot D3cold -05:51:18,520 INFO kernel:pci 0000:00:16.3: PME# disabled -05:51:18,520 INFO kernel:pci 0000:00:16.4: PME# supported from D0 D3hot D3cold -05:51:18,520 INFO kernel:pci 0000:00:16.4: PME# disabled -05:51:18,520 INFO kernel:pci 0000:00:16.5: PME# supported from D0 D3hot D3cold -05:51:18,520 INFO kernel:pci 0000:00:16.5: PME# disabled -05:51:18,520 INFO kernel:pci 0000:00:16.6: PME# supported from D0 D3hot D3cold -05:51:18,520 INFO kernel:pci 0000:00:16.6: PME# disabled -05:51:18,520 INFO kernel:pci 0000:00:16.7: PME# supported from D0 D3hot D3cold -05:51:18,520 INFO kernel:pci 0000:00:16.7: PME# disabled -05:51:18,520 INFO kernel:pci 0000:00:17.0: PME# supported from D0 D3hot D3cold -05:51:18,520 INFO kernel:pci 0000:00:17.0: PME# disabled -05:51:18,520 INFO kernel:pci 0000:00:17.1: PME# supported from D0 D3hot D3cold -05:51:18,520 INFO kernel:pci 0000:00:17.1: PME# disabled -05:51:18,520 INFO kernel:pci 0000:00:17.2: PME# supported from D0 D3hot D3cold -05:51:18,520 INFO kernel:pci 0000:00:17.2: PME# disabled -05:51:18,520 INFO kernel:pci 0000:00:17.3: PME# supported from D0 D3hot D3cold -05:51:18,520 INFO kernel:pci 0000:00:17.3: PME# disabled -05:51:18,520 INFO kernel:pci 0000:00:17.4: PME# supported from D0 D3hot D3cold -05:51:18,520 INFO kernel:pci 0000:00:17.4: PME# disabled -05:51:18,520 INFO kernel:pci 0000:00:17.5: PME# supported from D0 D3hot D3cold -05:51:18,520 INFO kernel:pci 0000:00:17.5: PME# disabled -05:51:18,520 INFO kernel:pci 0000:00:17.6: PME# supported from D0 D3hot D3cold -05:51:18,520 INFO kernel:pci 0000:00:17.6: PME# disabled -05:51:18,520 INFO kernel:pci 0000:00:17.7: PME# supported from D0 D3hot D3cold -05:51:18,520 INFO kernel:pci 0000:00:17.7: PME# disabled -05:51:18,520 INFO kernel:pci 0000:00:18.0: PME# supported from D0 D3hot D3cold -05:51:18,520 INFO kernel:pci 0000:00:18.0: PME# disabled -05:51:18,520 INFO kernel:pci 0000:00:18.1: PME# supported from D0 D3hot D3cold -05:51:18,520 INFO kernel:pci 0000:00:18.1: PME# disabled -05:51:18,520 INFO kernel:pci 0000:00:18.2: PME# supported from D0 D3hot D3cold -05:51:18,520 INFO kernel:pci 0000:00:18.2: PME# disabled -05:51:18,520 INFO kernel:pci 0000:00:18.3: PME# supported from D0 D3hot D3cold -05:51:18,520 INFO kernel:pci 0000:00:18.3: PME# disabled -05:51:18,520 INFO kernel:pci 0000:00:18.4: PME# supported from D0 D3hot D3cold -05:51:18,520 INFO kernel:pci 0000:00:18.4: PME# disabled -05:51:18,520 INFO kernel:pci 0000:00:18.5: PME# supported from D0 D3hot D3cold -05:51:18,520 INFO kernel:pci 0000:00:18.5: PME# disabled -05:51:18,520 INFO kernel:pci 0000:00:18.6: PME# supported from D0 D3hot D3cold -05:51:18,520 INFO kernel:pci 0000:00:18.6: PME# disabled -05:51:18,520 INFO kernel:pci 0000:00:18.7: PME# supported from D0 D3hot D3cold -05:51:18,520 INFO kernel:pci 0000:00:18.7: PME# disabled -05:51:18,520 INFO kernel:pci 0000:00:01.0: PCI bridge to [bus 01-01] -05:51:18,520 DEBUG kernel:pci 0000:00:01.0: bridge window [io 0xf000-0x0000] (disabled) -05:51:18,520 DEBUG kernel:pci 0000:00:01.0: bridge window [mem 0xfff00000-0x000fffff] (disabled) -05:51:18,520 DEBUG kernel:pci 0000:00:01.0: bridge window [mem 0xfff00000-0x000fffff pref] (disabled) -05:51:18,520 DEBUG kernel:pci 0000:02:00.0: reg 10: [mem 0xd1020000-0xd103ffff 64bit] -05:51:18,520 DEBUG kernel:pci 0000:02:00.0: reg 18: [mem 0xd1000000-0xd100ffff 64bit] -05:51:18,520 DEBUG kernel:pci 0000:02:00.0: reg 20: [io 0x2000-0x203f] -05:51:18,520 DEBUG kernel:pci 0000:02:00.0: reg 30: [mem 0x00000000-0x0000ffff pref] -05:51:18,520 INFO kernel:pci 0000:02:00.0: PME# supported from D0 D3hot D3cold -05:51:18,520 INFO kernel:pci 0000:02:00.0: PME# disabled -05:51:18,520 DEBUG kernel:pci 0000:02:01.0: reg 10: [mem 0xd1040000-0xd105ffff 64bit] -05:51:18,520 DEBUG kernel:pci 0000:02:01.0: reg 18: [mem 0xd1010000-0xd101ffff 64bit] -05:51:18,520 DEBUG kernel:pci 0000:02:01.0: reg 20: [io 0x2040-0x207f] -05:51:18,520 DEBUG kernel:pci 0000:02:01.0: reg 30: [mem 0x00000000-0x0000ffff pref] -05:51:18,520 INFO kernel:pci 0000:02:01.0: PME# supported from D0 D3hot D3cold -05:51:18,520 INFO kernel:pci 0000:02:01.0: PME# disabled -05:51:18,520 DEBUG kernel:pci 0000:02:02.0: reg 10: [mem 0xd1080000-0xd109ffff 64bit] -05:51:18,520 DEBUG kernel:pci 0000:02:02.0: reg 18: [mem 0xd1060000-0xd106ffff 64bit] -05:51:18,520 DEBUG kernel:pci 0000:02:02.0: reg 20: [io 0x2080-0x20bf] -05:51:18,520 DEBUG kernel:pci 0000:02:02.0: reg 30: [mem 0x00000000-0x0000ffff pref] -05:51:18,520 INFO kernel:pci 0000:02:02.0: PME# supported from D0 D3hot D3cold -05:51:18,520 INFO kernel:pci 0000:02:02.0: PME# disabled -05:51:18,520 DEBUG kernel:pci 0000:02:03.0: reg 10: [mem 0xd10a0000-0xd10bffff 64bit] -05:51:18,520 DEBUG kernel:pci 0000:02:03.0: reg 18: [mem 0xd1070000-0xd107ffff 64bit] -05:51:18,520 DEBUG kernel:pci 0000:02:03.0: reg 20: [io 0x20c0-0x20ff] -05:51:18,520 DEBUG kernel:pci 0000:02:03.0: reg 30: [mem 0x00000000-0x0000ffff pref] -05:51:18,520 INFO kernel:pci 0000:02:03.0: PME# supported from D0 D3hot D3cold -05:51:18,520 INFO kernel:pci 0000:02:03.0: PME# disabled -05:51:18,520 INFO kernel:pci 0000:00:11.0: PCI bridge to [bus 02-02] (subtractive decode) -05:51:18,520 DEBUG kernel:pci 0000:00:11.0: bridge window [io 0x2000-0x3fff] -05:51:18,520 DEBUG kernel:pci 0000:00:11.0: bridge window [mem 0xd1000000-0xd23fffff] -05:51:18,520 DEBUG kernel:pci 0000:00:11.0: bridge window [mem 0xdc400000-0xdc9fffff 64bit pref] -05:51:18,520 DEBUG kernel:pci 0000:00:11.0: bridge window [mem 0x000a0000-0x000bffff] (subtractive decode) -05:51:18,520 DEBUG kernel:pci 0000:00:11.0: bridge window [mem 0x000d0000-0x000d3fff] (subtractive decode) -05:51:18,520 DEBUG kernel:pci 0000:00:11.0: bridge window [mem 0x000d4000-0x000d7fff] (subtractive decode) -05:51:18,520 DEBUG kernel:pci 0000:00:11.0: bridge window [mem 0x000d8000-0x000dbfff] (subtractive decode) -05:51:18,520 DEBUG kernel:pci 0000:00:11.0: bridge window [mem 0x80000000-0xfebfffff] (subtractive decode) -05:51:18,520 DEBUG kernel:pci 0000:00:11.0: bridge window [io 0x0000-0x0cf7] (subtractive decode) -05:51:18,520 DEBUG kernel:pci 0000:00:11.0: bridge window [io 0x0d00-0xfeff] (subtractive decode) -05:51:18,520 INFO kernel:pci 0000:00:15.0: PCI bridge to [bus 03-03] -05:51:18,520 DEBUG kernel:pci 0000:00:15.0: bridge window [io 0x4000-0x4fff] -05:51:18,520 DEBUG kernel:pci 0000:00:15.0: bridge window [mem 0xd2400000-0xd24fffff] -05:51:18,520 DEBUG kernel:pci 0000:00:15.0: bridge window [mem 0xd4400000-0xd44fffff 64bit pref] -05:51:18,520 INFO kernel:pci 0000:00:15.1: PCI bridge to [bus 04-04] -05:51:18,520 DEBUG kernel:pci 0000:00:15.1: bridge window [io 0x8000-0x8fff] -05:51:18,520 DEBUG kernel:pci 0000:00:15.1: bridge window [mem 0xd2800000-0xd28fffff] -05:51:18,520 DEBUG kernel:pci 0000:00:15.1: bridge window [mem 0xd4800000-0xd48fffff 64bit pref] -05:51:18,520 INFO kernel:pci 0000:00:15.2: PCI bridge to [bus 05-05] -05:51:18,520 DEBUG kernel:pci 0000:00:15.2: bridge window [io 0xc000-0xcfff] -05:51:18,520 DEBUG kernel:pci 0000:00:15.2: bridge window [mem 0xd2c00000-0xd2cfffff] -05:51:18,520 DEBUG kernel:pci 0000:00:15.2: bridge window [mem 0xdcb00000-0xdcbfffff 64bit pref] -05:51:18,520 INFO kernel:pci 0000:00:15.3: PCI bridge to [bus 06-06] -05:51:18,520 DEBUG kernel:pci 0000:00:15.3: bridge window [io 0xf000-0x0000] (disabled) -05:51:18,520 DEBUG kernel:pci 0000:00:15.3: bridge window [mem 0xd3000000-0xd30fffff] -05:51:18,520 DEBUG kernel:pci 0000:00:15.3: bridge window [mem 0xdcd00000-0xdcdfffff 64bit pref] -05:51:18,520 INFO kernel:pci 0000:00:15.4: PCI bridge to [bus 07-07] -05:51:18,520 DEBUG kernel:pci 0000:00:15.4: bridge window [io 0xf000-0x0000] (disabled) -05:51:18,520 DEBUG kernel:pci 0000:00:15.4: bridge window [mem 0xd3400000-0xd34fffff] -05:51:18,520 DEBUG kernel:pci 0000:00:15.4: bridge window [mem 0xdcf00000-0xdcffffff 64bit pref] -05:51:18,520 INFO kernel:pci 0000:00:15.5: PCI bridge to [bus 08-08] -05:51:18,520 DEBUG kernel:pci 0000:00:15.5: bridge window [io 0xf000-0x0000] (disabled) -05:51:18,520 DEBUG kernel:pci 0000:00:15.5: bridge window [mem 0xd3800000-0xd38fffff] -05:51:18,520 DEBUG kernel:pci 0000:00:15.5: bridge window [mem 0xdd100000-0xdd1fffff 64bit pref] -05:51:18,520 INFO kernel:pci 0000:00:15.6: PCI bridge to [bus 09-09] -05:51:18,520 DEBUG kernel:pci 0000:00:15.6: bridge window [io 0xf000-0x0000] (disabled) -05:51:18,520 DEBUG kernel:pci 0000:00:15.6: bridge window [mem 0xd3c00000-0xd3cfffff] -05:51:18,520 DEBUG kernel:pci 0000:00:15.6: bridge window [mem 0xdd300000-0xdd3fffff 64bit pref] -05:51:18,520 INFO kernel:pci 0000:00:15.7: PCI bridge to [bus 0a-0a] -05:51:18,520 DEBUG kernel:pci 0000:00:15.7: bridge window [io 0xf000-0x0000] (disabled) -05:51:18,520 DEBUG kernel:pci 0000:00:15.7: bridge window [mem 0xd4000000-0xd40fffff] -05:51:18,520 DEBUG kernel:pci 0000:00:15.7: bridge window [mem 0xdd500000-0xdd5fffff 64bit pref] -05:51:18,520 INFO kernel:pci 0000:00:16.0: PCI bridge to [bus 0b-0b] -05:51:18,520 DEBUG kernel:pci 0000:00:16.0: bridge window [io 0x5000-0x5fff] -05:51:18,520 DEBUG kernel:pci 0000:00:16.0: bridge window [mem 0xd2500000-0xd25fffff] -05:51:18,520 DEBUG kernel:pci 0000:00:16.0: bridge window [mem 0xd4500000-0xd45fffff 64bit pref] -05:51:18,521 INFO kernel:pci 0000:00:16.1: PCI bridge to [bus 0c-0c] -05:51:18,521 DEBUG kernel:pci 0000:00:16.1: bridge window [io 0x9000-0x9fff] -05:51:18,521 DEBUG kernel:pci 0000:00:16.1: bridge window [mem 0xd2900000-0xd29fffff] -05:51:18,521 DEBUG kernel:pci 0000:00:16.1: bridge window [mem 0xd4900000-0xd49fffff 64bit pref] -05:51:18,521 INFO kernel:pci 0000:00:16.2: PCI bridge to [bus 0d-0d] -05:51:18,521 DEBUG kernel:pci 0000:00:16.2: bridge window [io 0xd000-0xdfff] -05:51:18,521 DEBUG kernel:pci 0000:00:16.2: bridge window [mem 0xd2d00000-0xd2dfffff] -05:51:18,521 DEBUG kernel:pci 0000:00:16.2: bridge window [mem 0xd4b00000-0xd4bfffff 64bit pref] -05:51:18,521 INFO kernel:pci 0000:00:16.3: PCI bridge to [bus 0e-0e] -05:51:18,521 DEBUG kernel:pci 0000:00:16.3: bridge window [io 0xf000-0x0000] (disabled) -05:51:18,521 DEBUG kernel:pci 0000:00:16.3: bridge window [mem 0xd3100000-0xd31fffff] -05:51:18,521 DEBUG kernel:pci 0000:00:16.3: bridge window [mem 0xd4d00000-0xd4dfffff 64bit pref] -05:51:18,521 INFO kernel:pci 0000:00:16.4: PCI bridge to [bus 0f-0f] -05:51:18,521 DEBUG kernel:pci 0000:00:16.4: bridge window [io 0xf000-0x0000] (disabled) -05:51:18,521 DEBUG kernel:pci 0000:00:16.4: bridge window [mem 0xd3500000-0xd35fffff] -05:51:18,521 DEBUG kernel:pci 0000:00:16.4: bridge window [mem 0xd4f00000-0xd4ffffff 64bit pref] -05:51:18,521 INFO kernel:pci 0000:00:16.5: PCI bridge to [bus 10-10] -05:51:18,521 DEBUG kernel:pci 0000:00:16.5: bridge window [io 0xf000-0x0000] (disabled) -05:51:18,521 DEBUG kernel:pci 0000:00:16.5: bridge window [mem 0xd3900000-0xd39fffff] -05:51:18,521 DEBUG kernel:pci 0000:00:16.5: bridge window [mem 0xd5100000-0xd51fffff 64bit pref] -05:51:18,521 INFO kernel:pci 0000:00:16.6: PCI bridge to [bus 11-11] -05:51:18,521 DEBUG kernel:pci 0000:00:16.6: bridge window [io 0xf000-0x0000] (disabled) -05:51:18,521 DEBUG kernel:pci 0000:00:16.6: bridge window [mem 0xd3d00000-0xd3dfffff] -05:51:18,521 DEBUG kernel:pci 0000:00:16.6: bridge window [mem 0xd5300000-0xd53fffff 64bit pref] -05:51:18,521 INFO kernel:pci 0000:00:16.7: PCI bridge to [bus 12-12] -05:51:18,521 DEBUG kernel:pci 0000:00:16.7: bridge window [io 0xf000-0x0000] (disabled) -05:51:18,521 DEBUG kernel:pci 0000:00:16.7: bridge window [mem 0xd4100000-0xd41fffff] -05:51:18,521 DEBUG kernel:pci 0000:00:16.7: bridge window [mem 0xd5500000-0xd55fffff 64bit pref] -05:51:18,521 INFO kernel:pci 0000:00:17.0: PCI bridge to [bus 13-13] -05:51:18,521 DEBUG kernel:pci 0000:00:17.0: bridge window [io 0x6000-0x6fff] -05:51:18,521 DEBUG kernel:pci 0000:00:17.0: bridge window [mem 0xd2600000-0xd26fffff] -05:51:18,521 DEBUG kernel:pci 0000:00:17.0: bridge window [mem 0xd4600000-0xd46fffff 64bit pref] -05:51:18,521 INFO kernel:pci 0000:00:17.1: PCI bridge to [bus 14-14] -05:51:18,521 DEBUG kernel:pci 0000:00:17.1: bridge window [io 0xa000-0xafff] -05:51:18,521 DEBUG kernel:pci 0000:00:17.1: bridge window [mem 0xd2a00000-0xd2afffff] -05:51:18,521 DEBUG kernel:pci 0000:00:17.1: bridge window [mem 0xdca00000-0xdcafffff 64bit pref] -05:51:18,521 INFO kernel:pci 0000:00:17.2: PCI bridge to [bus 15-15] -05:51:18,521 DEBUG kernel:pci 0000:00:17.2: bridge window [io 0xe000-0xefff] -05:51:18,521 DEBUG kernel:pci 0000:00:17.2: bridge window [mem 0xd2e00000-0xd2efffff] -05:51:18,521 DEBUG kernel:pci 0000:00:17.2: bridge window [mem 0xdcc00000-0xdccfffff 64bit pref] -05:51:18,521 INFO kernel:pci 0000:00:17.3: PCI bridge to [bus 16-16] -05:51:18,521 DEBUG kernel:pci 0000:00:17.3: bridge window [io 0xf000-0x0000] (disabled) -05:51:18,521 DEBUG kernel:pci 0000:00:17.3: bridge window [mem 0xd3200000-0xd32fffff] -05:51:18,521 DEBUG kernel:pci 0000:00:17.3: bridge window [mem 0xdce00000-0xdcefffff 64bit pref] -05:51:18,521 INFO kernel:pci 0000:00:17.4: PCI bridge to [bus 17-17] -05:51:18,521 DEBUG kernel:pci 0000:00:17.4: bridge window [io 0xf000-0x0000] (disabled) -05:51:18,521 DEBUG kernel:pci 0000:00:17.4: bridge window [mem 0xd3600000-0xd36fffff] -05:51:18,521 DEBUG kernel:pci 0000:00:17.4: bridge window [mem 0xdd000000-0xdd0fffff 64bit pref] -05:51:18,521 INFO kernel:pci 0000:00:17.5: PCI bridge to [bus 18-18] -05:51:18,521 DEBUG kernel:pci 0000:00:17.5: bridge window [io 0xf000-0x0000] (disabled) -05:51:18,521 DEBUG kernel:pci 0000:00:17.5: bridge window [mem 0xd3a00000-0xd3afffff] -05:51:18,521 DEBUG kernel:pci 0000:00:17.5: bridge window [mem 0xdd200000-0xdd2fffff 64bit pref] -05:51:18,521 INFO kernel:pci 0000:00:17.6: PCI bridge to [bus 19-19] -05:51:18,521 DEBUG kernel:pci 0000:00:17.6: bridge window [io 0xf000-0x0000] (disabled) -05:51:18,521 DEBUG kernel:pci 0000:00:17.6: bridge window [mem 0xd3e00000-0xd3efffff] -05:51:18,521 DEBUG kernel:pci 0000:00:17.6: bridge window [mem 0xdd400000-0xdd4fffff 64bit pref] -05:51:18,521 INFO kernel:pci 0000:00:17.7: PCI bridge to [bus 1a-1a] -05:51:18,521 DEBUG kernel:pci 0000:00:17.7: bridge window [io 0xf000-0x0000] (disabled) -05:51:18,521 DEBUG kernel:pci 0000:00:17.7: bridge window [mem 0xd4200000-0xd42fffff] -05:51:18,521 DEBUG kernel:pci 0000:00:17.7: bridge window [mem 0xdd600000-0xdd6fffff 64bit pref] -05:51:18,521 INFO kernel:pci 0000:00:18.0: PCI bridge to [bus 1b-1b] -05:51:18,521 DEBUG kernel:pci 0000:00:18.0: bridge window [io 0x7000-0x7fff] -05:51:18,521 DEBUG kernel:pci 0000:00:18.0: bridge window [mem 0xd2700000-0xd27fffff] -05:51:18,521 DEBUG kernel:pci 0000:00:18.0: bridge window [mem 0xd4700000-0xd47fffff 64bit pref] -05:51:18,521 INFO kernel:pci 0000:00:18.1: PCI bridge to [bus 1c-1c] -05:51:18,521 DEBUG kernel:pci 0000:00:18.1: bridge window [io 0xb000-0xbfff] -05:51:18,521 DEBUG kernel:pci 0000:00:18.1: bridge window [mem 0xd2b00000-0xd2bfffff] -05:51:18,521 DEBUG kernel:pci 0000:00:18.1: bridge window [mem 0xd4a00000-0xd4afffff 64bit pref] -05:51:18,521 INFO kernel:pci 0000:00:18.2: PCI bridge to [bus 1d-1d] -05:51:18,521 DEBUG kernel:pci 0000:00:18.2: bridge window [io 0xf000-0xffff] -05:51:18,521 DEBUG kernel:pci 0000:00:18.2: bridge window [mem 0xd2f00000-0xd2ffffff] -05:51:18,521 DEBUG kernel:pci 0000:00:18.2: bridge window [mem 0xd4c00000-0xd4cfffff 64bit pref] -05:51:18,521 INFO kernel:pci 0000:00:18.3: PCI bridge to [bus 1e-1e] -05:51:18,521 DEBUG kernel:pci 0000:00:18.3: bridge window [io 0xf000-0x0000] (disabled) -05:51:18,521 DEBUG kernel:pci 0000:00:18.3: bridge window [mem 0xd3300000-0xd33fffff] -05:51:18,521 DEBUG kernel:pci 0000:00:18.3: bridge window [mem 0xd4e00000-0xd4efffff 64bit pref] -05:51:18,521 INFO kernel:pci 0000:00:18.4: PCI bridge to [bus 1f-1f] -05:51:18,521 DEBUG kernel:pci 0000:00:18.4: bridge window [io 0xf000-0x0000] (disabled) -05:51:18,521 DEBUG kernel:pci 0000:00:18.4: bridge window [mem 0xd3700000-0xd37fffff] -05:51:18,521 DEBUG kernel:pci 0000:00:18.4: bridge window [mem 0xd5000000-0xd50fffff 64bit pref] -05:51:18,521 INFO kernel:pci 0000:00:18.5: PCI bridge to [bus 20-20] -05:51:18,521 DEBUG kernel:pci 0000:00:18.5: bridge window [io 0xf000-0x0000] (disabled) -05:51:18,521 DEBUG kernel:pci 0000:00:18.5: bridge window [mem 0xd3b00000-0xd3bfffff] -05:51:18,521 DEBUG kernel:pci 0000:00:18.5: bridge window [mem 0xd5200000-0xd52fffff 64bit pref] -05:51:18,521 INFO kernel:pci 0000:00:18.6: PCI bridge to [bus 21-21] -05:51:18,521 DEBUG kernel:pci 0000:00:18.6: bridge window [io 0xf000-0x0000] (disabled) -05:51:18,521 DEBUG kernel:pci 0000:00:18.6: bridge window [mem 0xd3f00000-0xd3ffffff] -05:51:18,521 DEBUG kernel:pci 0000:00:18.6: bridge window [mem 0xd5400000-0xd54fffff 64bit pref] -05:51:18,521 INFO kernel:pci 0000:00:18.7: PCI bridge to [bus 22-22] -05:51:18,521 DEBUG kernel:pci 0000:00:18.7: bridge window [io 0xf000-0x0000] (disabled) -05:51:18,521 DEBUG kernel:pci 0000:00:18.7: bridge window [mem 0xd4300000-0xd43fffff] -05:51:18,521 DEBUG kernel:pci 0000:00:18.7: bridge window [mem 0xd5600000-0xd56fffff 64bit pref] -05:51:18,521 DEBUG kernel:ACPI: PCI Interrupt Routing Table [\_SB_.PCI0._PRT] -05:51:18,521 INFO kernel: pci0000:00: Requesting ACPI _OSC control (0x1d) -05:51:18,521 INFO kernel: pci0000:00: ACPI _OSC control (0x15) granted -05:51:18,521 INFO kernel:ACPI: PCI Interrupt Link [LNKA] (IRQs 3 4 5 6 7 *9 10 11 14 15) -05:51:18,521 INFO kernel:ACPI: PCI Interrupt Link [LNKB] (IRQs 3 4 5 6 7 9 10 *11 14 15) -05:51:18,521 INFO kernel:ACPI: PCI Interrupt Link [LNKC] (IRQs 3 4 5 6 7 9 *10 11 14 15) -05:51:18,521 INFO kernel:ACPI: PCI Interrupt Link [LNKD] (IRQs 3 4 *5 6 7 9 10 11 14 15) -05:51:18,521 INFO kernel:vgaarb: device added: PCI:0000:00:0f.0,decodes=io+mem,owns=io+mem,locks=none -05:51:18,521 INFO kernel:vgaarb: loaded -05:51:18,521 INFO kernel:vgaarb: bridge control possible 0000:00:0f.0 -05:51:18,521 NOTICE kernel:SCSI subsystem initialized -05:51:18,521 DEBUG kernel:libata version 3.00 loaded. -05:51:18,521 INFO kernel:usbcore: registered new interface driver usbfs -05:51:18,521 INFO kernel:usbcore: registered new interface driver hub -05:51:18,521 INFO kernel:usbcore: registered new device driver usb -05:51:18,521 INFO kernel:PCI: Using ACPI for IRQ routing -05:51:18,521 DEBUG kernel:PCI: old code would have set cacheline size to 32 bytes, but clflush_size = 64 -05:51:18,521 DEBUG kernel:PCI: pci_cache_line_size set to 64 bytes -05:51:18,521 INFO kernel:pci 0000:00:18.2: no compatible bridge window for [io 0xf000-0xffff] -05:51:18,521 INFO kernel:pci 0000:00:18.2: can't reserve window [io 0xf000-0xffff] -05:51:18,521 NOTICE kernel:lo: Dropping TSO features since no CSUM feature. -05:51:18,521 INFO kernel:NetLabel: Initializing -05:51:18,521 INFO kernel:NetLabel: domain hash size = 128 -05:51:18,521 INFO kernel:NetLabel: protocols = UNLABELED CIPSOv4 -05:51:18,521 INFO kernel:NetLabel: unlabeled traffic allowed by default -05:51:18,521 INFO kernel:HPET: 16 timers in total, 0 timers will be used for per-cpu timer -05:51:18,521 INFO kernel:hpet0: at MMIO 0xfed00000, IRQs 2, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 -05:51:18,521 INFO kernel:hpet0: 16 comparators, 64-bit 14.318180 MHz counter -05:51:18,521 INFO kernel:Switching to clocksource hpet -05:51:18,521 INFO kernel:pnp: PnP ACPI init -05:51:18,521 INFO kernel:ACPI: bus type pnp registered -05:51:18,521 DEBUG kernel:pnp 00:00: [io 0x0cf8-0x0cff] -05:51:18,521 DEBUG kernel:pnp 00:00: Plug and Play ACPI device, IDs PNP0a03 PNP0a08 (active) -05:51:18,521 DEBUG kernel:pnp 00:01: [io 0x0010-0x001f] -05:51:18,521 DEBUG kernel:pnp 00:01: [io 0x0024-0x0025] -05:51:18,521 DEBUG kernel:pnp 00:01: [io 0x0028-0x0029] -05:51:18,521 DEBUG kernel:pnp 00:01: [io 0x002c-0x002d] -05:51:18,521 DEBUG kernel:pnp 00:01: [io 0x002e-0x002f] -05:51:18,521 DEBUG kernel:pnp 00:01: [io 0x0030-0x0031] -05:51:18,521 DEBUG kernel:pnp 00:01: [io 0x0034-0x0035] -05:51:18,521 DEBUG kernel:pnp 00:01: [io 0x0038-0x0039] -05:51:18,521 DEBUG kernel:pnp 00:01: [io 0x003c-0x003d] -05:51:18,521 DEBUG kernel:pnp 00:01: [io 0x0050-0x0053] -05:51:18,521 DEBUG kernel:pnp 00:01: [io 0x0072-0x0077] -05:51:18,521 DEBUG kernel:pnp 00:01: [io 0x0080] -05:51:18,521 DEBUG kernel:pnp 00:01: [io 0x0090-0x009f] -05:51:18,521 DEBUG kernel:pnp 00:01: [io 0x00a4-0x00a5] -05:51:18,521 DEBUG kernel:pnp 00:01: [io 0x00a8-0x00a9] -05:51:18,521 DEBUG kernel:pnp 00:01: [io 0x00ac-0x00ad] -05:51:18,521 DEBUG kernel:pnp 00:01: [io 0x00b0-0x00b5] -05:51:18,521 DEBUG kernel:pnp 00:01: [io 0x00b8-0x00b9] -05:51:18,521 DEBUG kernel:pnp 00:01: [io 0x00bc-0x00bd] -05:51:18,521 DEBUG kernel:pnp 00:01: [io 0x1000-0x103f] -05:51:18,521 DEBUG kernel:pnp 00:01: [io 0x1040-0x104f] -05:51:18,521 DEBUG kernel:pnp 00:01: [io 0x0cf0-0x0cf1] -05:51:18,521 DEBUG kernel:pnp 00:01: Plug and Play ACPI device, IDs PNP0c02 (active) -05:51:18,521 DEBUG kernel:pnp 00:02: [io 0x0000-0x000f] -05:51:18,521 DEBUG kernel:pnp 00:02: [io 0x0081-0x008f] -05:51:18,521 DEBUG kernel:pnp 00:02: [io 0x00c0-0x00df] -05:51:18,521 DEBUG kernel:pnp 00:02: [dma 4] -05:51:18,521 DEBUG kernel:pnp 00:02: Plug and Play ACPI device, IDs PNP0200 (active) -05:51:18,521 DEBUG kernel:pnp 00:03: [io 0x0020-0x0021] -05:51:18,521 DEBUG kernel:pnp 00:03: [io 0x00a0-0x00a1] -05:51:18,521 DEBUG kernel:pnp 00:03: [io 0x04d0-0x04d1] -05:51:18,521 DEBUG kernel:pnp 00:03: [irq 2 disabled] -05:51:18,521 DEBUG kernel:pnp 00:03: Plug and Play ACPI device, IDs PNP0001 (active) -05:51:18,521 DEBUG kernel:pnp 00:04: [io 0x0070-0x0071] -05:51:18,521 DEBUG kernel:pnp 00:04: [irq 8] -05:51:18,521 DEBUG kernel:pnp 00:04: Plug and Play ACPI device, IDs PNP0b00 (active) -05:51:18,521 DEBUG kernel:pnp 00:05: [io 0x0061] -05:51:18,521 DEBUG kernel:pnp 00:05: Plug and Play ACPI device, IDs PNP0800 (active) -05:51:18,521 DEBUG kernel:pnp 00:06: [io 0x0060] -05:51:18,521 DEBUG kernel:pnp 00:06: [io 0x0064] -05:51:18,521 DEBUG kernel:pnp 00:06: [irq 1] -05:51:18,521 DEBUG kernel:pnp 00:06: Plug and Play ACPI device, IDs PNP0303 (active) -05:51:18,521 DEBUG kernel:pnp 00:07: [irq 12] -05:51:18,521 DEBUG kernel:pnp 00:07: Plug and Play ACPI device, IDs PNP0f13 (active) -05:51:18,521 DEBUG kernel:pnp 00:08: [mem 0xfed00000-0xfed003ff] -05:51:18,521 DEBUG kernel:pnp 00:08: Plug and Play ACPI device, IDs PNP0103 PNP0c01 (active) -05:51:18,521 DEBUG kernel:pnp 00:09: [io 0x0378-0x037f] -05:51:18,521 DEBUG kernel:pnp 00:09: [irq 7] -05:51:18,521 DEBUG kernel:pnp 00:09: Plug and Play ACPI device, IDs PNP0400 (active) -05:51:18,521 DEBUG kernel:pnp 00:0a: [io 0x03f8-0x03ff] -05:51:18,521 DEBUG kernel:pnp 00:0a: [irq 4] -05:51:18,521 DEBUG kernel:pnp 00:0a: Plug and Play ACPI device, IDs PNP0501 (active) -05:51:18,521 DEBUG kernel:pnp 00:0b: [io 0x02f8-0x02ff] -05:51:18,521 DEBUG kernel:pnp 00:0b: [irq 3] -05:51:18,521 DEBUG kernel:pnp 00:0b: Plug and Play ACPI device, IDs PNP0501 (active) -05:51:18,521 DEBUG kernel:pnp 00:0c: [io 0x03f0-0x03f5] -05:51:18,521 DEBUG kernel:pnp 00:0c: [io 0x03f7] -05:51:18,521 DEBUG kernel:pnp 00:0c: [irq 6] -05:51:18,521 DEBUG kernel:pnp 00:0c: [dma 2] -05:51:18,521 DEBUG kernel:pnp 00:0c: Plug and Play ACPI device, IDs PNP0700 (active) -05:51:18,521 DEBUG kernel:pnp 00:0d: [mem 0xe0000000-0xefffffff] -05:51:18,521 DEBUG kernel:pnp 00:0d: [io 0x1060-0x107f] -05:51:18,521 DEBUG kernel:pnp 00:0d: [mem 0xd0200000-0xd03fffff] -05:51:18,521 DEBUG kernel:pnp 00:0d: Plug and Play ACPI device, IDs PNP0c02 (active) -05:51:18,521 INFO kernel:pnp: PnP ACPI: found 14 devices -05:51:18,521 INFO kernel:ACPI: ACPI bus type pnp unregistered -05:51:18,521 INFO kernel:system 00:01: [io 0x1000-0x103f] has been reserved -05:51:18,521 INFO kernel:system 00:01: [io 0x1040-0x104f] has been reserved -05:51:18,521 INFO kernel:system 00:01: [io 0x0cf0-0x0cf1] has been reserved -05:51:18,521 INFO kernel:system 00:08: [mem 0xfed00000-0xfed003ff] has been reserved -05:51:18,521 INFO kernel:system 00:0d: [io 0x1060-0x107f] has been reserved -05:51:18,521 INFO kernel:system 00:0d: [mem 0xe0000000-0xefffffff] has been reserved -05:51:18,521 INFO kernel:system 00:0d: [mem 0xd0200000-0xd03fffff] has been reserved -05:51:18,521 DEBUG kernel:PCI: max bus depth: 1 pci_try_num: 2 -05:51:18,521 INFO kernel:pci 0000:00:0f.0: BAR 6: assigned [mem 0x80000000-0x80007fff pref] -05:51:18,521 INFO kernel:pci 0000:00:10.0: BAR 6: assigned [mem 0x80008000-0x8000bfff pref] -05:51:18,521 INFO kernel:pci 0000:00:18.2: BAR 13: can't assign io (size 0x1000) -05:51:18,521 INFO kernel:pci 0000:00:18.7: BAR 13: can't assign io (size 0x1000) -05:51:18,521 INFO kernel:pci 0000:00:18.6: BAR 13: can't assign io (size 0x1000) -05:51:18,521 INFO kernel:pci 0000:00:18.5: BAR 13: can't assign io (size 0x1000) -05:51:18,521 INFO kernel:pci 0000:00:18.4: BAR 13: can't assign io (size 0x1000) -05:51:18,521 INFO kernel:pci 0000:00:18.3: BAR 13: can't assign io (size 0x1000) -05:51:18,521 INFO kernel:pci 0000:00:17.7: BAR 13: can't assign io (size 0x1000) -05:51:18,521 INFO kernel:pci 0000:00:17.6: BAR 13: can't assign io (size 0x1000) -05:51:18,521 INFO kernel:pci 0000:00:17.5: BAR 13: can't assign io (size 0x1000) -05:51:18,521 INFO kernel:pci 0000:00:17.4: BAR 13: can't assign io (size 0x1000) -05:51:18,521 INFO kernel:pci 0000:00:17.3: BAR 13: can't assign io (size 0x1000) -05:51:18,521 INFO kernel:pci 0000:00:16.7: BAR 13: can't assign io (size 0x1000) -05:51:18,521 INFO kernel:pci 0000:00:16.6: BAR 13: can't assign io (size 0x1000) -05:51:18,521 INFO kernel:pci 0000:00:16.5: BAR 13: can't assign io (size 0x1000) -05:51:18,521 INFO kernel:pci 0000:00:16.4: BAR 13: can't assign io (size 0x1000) -05:51:18,521 INFO kernel:pci 0000:00:16.3: BAR 13: can't assign io (size 0x1000) -05:51:18,521 INFO kernel:pci 0000:00:15.7: BAR 13: can't assign io (size 0x1000) -05:51:18,521 INFO kernel:pci 0000:00:15.6: BAR 13: can't assign io (size 0x1000) -05:51:18,521 INFO kernel:pci 0000:00:15.5: BAR 13: can't assign io (size 0x1000) -05:51:18,521 INFO kernel:pci 0000:00:15.4: BAR 13: can't assign io (size 0x1000) -05:51:18,521 INFO kernel:pci 0000:00:15.3: BAR 13: can't assign io (size 0x1000) -05:51:18,521 INFO kernel:pci 0000:00:01.0: PCI bridge to [bus 01-01] -05:51:18,521 INFO kernel:pci 0000:00:01.0: PCI bridge to [bus 01-01] -05:51:18,521 INFO kernel:pci 0000:00:01.0: bridge window [io disabled] -05:51:18,521 INFO kernel:pci 0000:00:01.0: bridge window [mem disabled] -05:51:18,521 INFO kernel:pci 0000:00:01.0: bridge window [mem pref disabled] -05:51:18,521 INFO kernel:pci 0000:02:00.0: BAR 6: assigned [mem 0xdc400000-0xdc40ffff pref] -05:51:18,521 INFO kernel:pci 0000:02:01.0: BAR 6: assigned [mem 0xdc410000-0xdc41ffff pref] -05:51:18,521 INFO kernel:pci 0000:02:02.0: BAR 6: assigned [mem 0xdc420000-0xdc42ffff pref] -05:51:18,521 INFO kernel:pci 0000:02:03.0: BAR 6: assigned [mem 0xdc430000-0xdc43ffff pref] -05:51:18,521 INFO kernel:pci 0000:00:11.0: PCI bridge to [bus 02-02] -05:51:18,521 INFO kernel:pci 0000:00:11.0: PCI bridge to [bus 02-02] -05:51:18,521 INFO kernel:pci 0000:00:11.0: bridge window [io 0x2000-0x3fff] -05:51:18,521 INFO kernel:pci 0000:00:11.0: bridge window [mem 0xd1000000-0xd23fffff] -05:51:18,521 INFO kernel:pci 0000:00:11.0: bridge window [mem 0xdc400000-0xdc9fffff 64bit pref] -05:51:18,521 INFO kernel:pci 0000:00:15.0: PCI bridge to [bus 03-03] -05:51:18,521 INFO kernel:pci 0000:00:15.0: PCI bridge to [bus 03-03] -05:51:18,521 INFO kernel:pci 0000:00:15.0: bridge window [io 0x4000-0x4fff] -05:51:18,521 INFO kernel:pci 0000:00:15.0: bridge window [mem 0xd2400000-0xd24fffff] -05:51:18,521 INFO kernel:pci 0000:00:15.0: bridge window [mem 0xd4400000-0xd44fffff 64bit pref] -05:51:18,521 INFO kernel:pci 0000:00:15.1: PCI bridge to [bus 04-04] -05:51:18,521 INFO kernel:pci 0000:00:15.1: PCI bridge to [bus 04-04] -05:51:18,521 INFO kernel:pci 0000:00:15.1: bridge window [io 0x8000-0x8fff] -05:51:18,521 INFO kernel:pci 0000:00:15.1: bridge window [mem 0xd2800000-0xd28fffff] -05:51:18,521 INFO kernel:pci 0000:00:15.1: bridge window [mem 0xd4800000-0xd48fffff 64bit pref] -05:51:18,521 INFO kernel:pci 0000:00:15.2: PCI bridge to [bus 05-05] -05:51:18,521 INFO kernel:pci 0000:00:15.2: PCI bridge to [bus 05-05] -05:51:18,521 INFO kernel:pci 0000:00:15.2: bridge window [io 0xc000-0xcfff] -05:51:18,521 INFO kernel:pci 0000:00:15.2: bridge window [mem 0xd2c00000-0xd2cfffff] -05:51:18,521 INFO kernel:pci 0000:00:15.2: bridge window [mem 0xdcb00000-0xdcbfffff 64bit pref] -05:51:18,521 INFO kernel:pci 0000:00:15.3: PCI bridge to [bus 06-06] -05:51:18,521 INFO kernel:pci 0000:00:15.3: PCI bridge to [bus 06-06] -05:51:18,521 INFO kernel:pci 0000:00:15.3: bridge window [io disabled] -05:51:18,521 INFO kernel:pci 0000:00:15.3: bridge window [mem 0xd3000000-0xd30fffff] -05:51:18,521 INFO kernel:pci 0000:00:15.3: bridge window [mem 0xdcd00000-0xdcdfffff 64bit pref] -05:51:18,521 INFO kernel:pci 0000:00:15.4: PCI bridge to [bus 07-07] -05:51:18,521 INFO kernel:pci 0000:00:15.4: PCI bridge to [bus 07-07] -05:51:18,521 INFO kernel:pci 0000:00:15.4: bridge window [io disabled] -05:51:18,521 INFO kernel:pci 0000:00:15.4: bridge window [mem 0xd3400000-0xd34fffff] -05:51:18,521 INFO kernel:pci 0000:00:15.4: bridge window [mem 0xdcf00000-0xdcffffff 64bit pref] -05:51:18,521 INFO kernel:pci 0000:00:15.5: PCI bridge to [bus 08-08] -05:51:18,521 INFO kernel:pci 0000:00:15.5: PCI bridge to [bus 08-08] -05:51:18,521 INFO kernel:pci 0000:00:15.5: bridge window [io disabled] -05:51:18,521 INFO kernel:pci 0000:00:15.5: bridge window [mem 0xd3800000-0xd38fffff] -05:51:18,521 INFO kernel:pci 0000:00:15.5: bridge window [mem 0xdd100000-0xdd1fffff 64bit pref] -05:51:18,521 INFO kernel:pci 0000:00:15.6: PCI bridge to [bus 09-09] -05:51:18,521 INFO kernel:pci 0000:00:15.6: PCI bridge to [bus 09-09] -05:51:18,521 INFO kernel:pci 0000:00:15.6: bridge window [io disabled] -05:51:18,521 INFO kernel:pci 0000:00:15.6: bridge window [mem 0xd3c00000-0xd3cfffff] -05:51:18,521 INFO kernel:pci 0000:00:15.6: bridge window [mem 0xdd300000-0xdd3fffff 64bit pref] -05:51:18,521 INFO kernel:pci 0000:00:15.7: PCI bridge to [bus 0a-0a] -05:51:18,521 INFO kernel:pci 0000:00:15.7: PCI bridge to [bus 0a-0a] -05:51:18,521 INFO kernel:pci 0000:00:15.7: bridge window [io disabled] -05:51:18,521 INFO kernel:pci 0000:00:15.7: bridge window [mem 0xd4000000-0xd40fffff] -05:51:18,521 INFO kernel:pci 0000:00:15.7: bridge window [mem 0xdd500000-0xdd5fffff 64bit pref] -05:51:18,521 INFO kernel:pci 0000:00:16.0: PCI bridge to [bus 0b-0b] -05:51:18,521 INFO kernel:pci 0000:00:16.0: PCI bridge to [bus 0b-0b] -05:51:18,521 INFO kernel:pci 0000:00:16.0: bridge window [io 0x5000-0x5fff] -05:51:18,521 INFO kernel:pci 0000:00:16.0: bridge window [mem 0xd2500000-0xd25fffff] -05:51:18,521 INFO kernel:pci 0000:00:16.0: bridge window [mem 0xd4500000-0xd45fffff 64bit pref] -05:51:18,521 INFO kernel:pci 0000:00:16.1: PCI bridge to [bus 0c-0c] -05:51:18,521 INFO kernel:pci 0000:00:16.1: PCI bridge to [bus 0c-0c] -05:51:18,521 INFO kernel:pci 0000:00:16.1: bridge window [io 0x9000-0x9fff] -05:51:18,521 INFO kernel:pci 0000:00:16.1: bridge window [mem 0xd2900000-0xd29fffff] -05:51:18,521 INFO kernel:pci 0000:00:16.1: bridge window [mem 0xd4900000-0xd49fffff 64bit pref] -05:51:18,521 INFO kernel:pci 0000:00:16.2: PCI bridge to [bus 0d-0d] -05:51:18,521 INFO kernel:pci 0000:00:16.2: PCI bridge to [bus 0d-0d] -05:51:18,521 INFO kernel:pci 0000:00:16.2: bridge window [io 0xd000-0xdfff] -05:51:18,521 INFO kernel:pci 0000:00:16.2: bridge window [mem 0xd2d00000-0xd2dfffff] -05:51:18,521 INFO kernel:pci 0000:00:16.2: bridge window [mem 0xd4b00000-0xd4bfffff 64bit pref] -05:51:18,521 INFO kernel:pci 0000:00:16.3: PCI bridge to [bus 0e-0e] -05:51:18,521 INFO kernel:pci 0000:00:16.3: PCI bridge to [bus 0e-0e] -05:51:18,521 INFO kernel:pci 0000:00:16.3: bridge window [io disabled] -05:51:18,521 INFO kernel:pci 0000:00:16.3: bridge window [mem 0xd3100000-0xd31fffff] -05:51:18,521 INFO kernel:pci 0000:00:16.3: bridge window [mem 0xd4d00000-0xd4dfffff 64bit pref] -05:51:18,521 INFO kernel:pci 0000:00:16.4: PCI bridge to [bus 0f-0f] -05:51:18,521 INFO kernel:pci 0000:00:16.4: PCI bridge to [bus 0f-0f] -05:51:18,521 INFO kernel:pci 0000:00:16.4: bridge window [io disabled] -05:51:18,521 INFO kernel:pci 0000:00:16.4: bridge window [mem 0xd3500000-0xd35fffff] -05:51:18,521 INFO kernel:pci 0000:00:16.4: bridge window [mem 0xd4f00000-0xd4ffffff 64bit pref] -05:51:18,521 INFO kernel:pci 0000:00:16.5: PCI bridge to [bus 10-10] -05:51:18,521 INFO kernel:pci 0000:00:16.5: PCI bridge to [bus 10-10] -05:51:18,521 INFO kernel:pci 0000:00:16.5: bridge window [io disabled] -05:51:18,521 INFO kernel:pci 0000:00:16.5: bridge window [mem 0xd3900000-0xd39fffff] -05:51:18,521 INFO kernel:pci 0000:00:16.5: bridge window [mem 0xd5100000-0xd51fffff 64bit pref] -05:51:18,521 INFO kernel:pci 0000:00:16.6: PCI bridge to [bus 11-11] -05:51:18,521 INFO kernel:pci 0000:00:16.6: PCI bridge to [bus 11-11] -05:51:18,521 INFO kernel:pci 0000:00:16.6: bridge window [io disabled] -05:51:18,521 INFO kernel:pci 0000:00:16.6: bridge window [mem 0xd3d00000-0xd3dfffff] -05:51:18,521 INFO kernel:pci 0000:00:16.6: bridge window [mem 0xd5300000-0xd53fffff 64bit pref] -05:51:18,521 INFO kernel:pci 0000:00:16.7: PCI bridge to [bus 12-12] -05:51:18,521 INFO kernel:pci 0000:00:16.7: PCI bridge to [bus 12-12] -05:51:18,521 INFO kernel:pci 0000:00:16.7: bridge window [io disabled] -05:51:18,521 INFO kernel:pci 0000:00:16.7: bridge window [mem 0xd4100000-0xd41fffff] -05:51:18,521 INFO kernel:pci 0000:00:16.7: bridge window [mem 0xd5500000-0xd55fffff 64bit pref] -05:51:18,521 INFO kernel:pci 0000:00:17.0: PCI bridge to [bus 13-13] -05:51:18,521 INFO kernel:pci 0000:00:17.0: PCI bridge to [bus 13-13] -05:51:18,521 INFO kernel:pci 0000:00:17.0: bridge window [io 0x6000-0x6fff] -05:51:18,521 INFO kernel:pci 0000:00:17.0: bridge window [mem 0xd2600000-0xd26fffff] -05:51:18,521 INFO kernel:pci 0000:00:17.0: bridge window [mem 0xd4600000-0xd46fffff 64bit pref] -05:51:18,521 INFO kernel:pci 0000:00:17.1: PCI bridge to [bus 14-14] -05:51:18,521 INFO kernel:pci 0000:00:17.1: PCI bridge to [bus 14-14] -05:51:18,521 INFO kernel:pci 0000:00:17.1: bridge window [io 0xa000-0xafff] -05:51:18,521 INFO kernel:pci 0000:00:17.1: bridge window [mem 0xd2a00000-0xd2afffff] -05:51:18,521 INFO kernel:pci 0000:00:17.1: bridge window [mem 0xdca00000-0xdcafffff 64bit pref] -05:51:18,521 INFO kernel:pci 0000:00:17.2: PCI bridge to [bus 15-15] -05:51:18,521 INFO kernel:pci 0000:00:17.2: PCI bridge to [bus 15-15] -05:51:18,521 INFO kernel:pci 0000:00:17.2: bridge window [io 0xe000-0xefff] -05:51:18,521 INFO kernel:pci 0000:00:17.2: bridge window [mem 0xd2e00000-0xd2efffff] -05:51:18,521 INFO kernel:pci 0000:00:17.2: bridge window [mem 0xdcc00000-0xdccfffff 64bit pref] -05:51:18,521 INFO kernel:pci 0000:00:17.3: PCI bridge to [bus 16-16] -05:51:18,521 INFO kernel:pci 0000:00:17.3: PCI bridge to [bus 16-16] -05:51:18,521 INFO kernel:pci 0000:00:17.3: bridge window [io disabled] -05:51:18,521 INFO kernel:pci 0000:00:17.3: bridge window [mem 0xd3200000-0xd32fffff] -05:51:18,521 INFO kernel:pci 0000:00:17.3: bridge window [mem 0xdce00000-0xdcefffff 64bit pref] -05:51:18,521 INFO kernel:pci 0000:00:17.4: PCI bridge to [bus 17-17] -05:51:18,521 INFO kernel:pci 0000:00:17.4: PCI bridge to [bus 17-17] -05:51:18,521 INFO kernel:pci 0000:00:17.4: bridge window [io disabled] -05:51:18,521 INFO kernel:pci 0000:00:17.4: bridge window [mem 0xd3600000-0xd36fffff] -05:51:18,521 INFO kernel:pci 0000:00:17.4: bridge window [mem 0xdd000000-0xdd0fffff 64bit pref] -05:51:18,521 INFO kernel:pci 0000:00:17.5: PCI bridge to [bus 18-18] -05:51:18,521 INFO kernel:pci 0000:00:17.5: PCI bridge to [bus 18-18] -05:51:18,521 INFO kernel:pci 0000:00:17.5: bridge window [io disabled] -05:51:18,521 INFO kernel:pci 0000:00:17.5: bridge window [mem 0xd3a00000-0xd3afffff] -05:51:18,521 INFO kernel:pci 0000:00:17.5: bridge window [mem 0xdd200000-0xdd2fffff 64bit pref] -05:51:18,521 INFO kernel:pci 0000:00:17.6: PCI bridge to [bus 19-19] -05:51:18,521 INFO kernel:pci 0000:00:17.6: PCI bridge to [bus 19-19] -05:51:18,521 INFO kernel:pci 0000:00:17.6: bridge window [io disabled] -05:51:18,521 INFO kernel:pci 0000:00:17.6: bridge window [mem 0xd3e00000-0xd3efffff] -05:51:18,521 INFO kernel:pci 0000:00:17.6: bridge window [mem 0xdd400000-0xdd4fffff 64bit pref] -05:51:18,521 INFO kernel:pci 0000:00:17.7: PCI bridge to [bus 1a-1a] -05:51:18,521 INFO kernel:pci 0000:00:17.7: PCI bridge to [bus 1a-1a] -05:51:18,521 INFO kernel:pci 0000:00:17.7: bridge window [io disabled] -05:51:18,521 INFO kernel:pci 0000:00:17.7: bridge window [mem 0xd4200000-0xd42fffff] -05:51:18,521 INFO kernel:pci 0000:00:17.7: bridge window [mem 0xdd600000-0xdd6fffff 64bit pref] -05:51:18,521 INFO kernel:pci 0000:00:18.0: PCI bridge to [bus 1b-1b] -05:51:18,521 INFO kernel:pci 0000:00:18.0: PCI bridge to [bus 1b-1b] -05:51:18,521 INFO kernel:pci 0000:00:18.0: bridge window [io 0x7000-0x7fff] -05:51:18,521 INFO kernel:pci 0000:00:18.0: bridge window [mem 0xd2700000-0xd27fffff] -05:51:18,521 INFO kernel:pci 0000:00:18.0: bridge window [mem 0xd4700000-0xd47fffff 64bit pref] -05:51:18,521 INFO kernel:pci 0000:00:18.1: PCI bridge to [bus 1c-1c] -05:51:18,521 INFO kernel:pci 0000:00:18.1: PCI bridge to [bus 1c-1c] -05:51:18,521 INFO kernel:pci 0000:00:18.1: bridge window [io 0xb000-0xbfff] -05:51:18,521 INFO kernel:pci 0000:00:18.1: bridge window [mem 0xd2b00000-0xd2bfffff] -05:51:18,521 INFO kernel:pci 0000:00:18.1: bridge window [mem 0xd4a00000-0xd4afffff 64bit pref] -05:51:18,521 INFO kernel:pci 0000:00:18.2: PCI bridge to [bus 1d-1d] -05:51:18,521 INFO kernel:pci 0000:00:18.2: PCI bridge to [bus 1d-1d] -05:51:18,521 INFO kernel:pci 0000:00:18.2: bridge window [io disabled] -05:51:18,521 INFO kernel:pci 0000:00:18.2: bridge window [mem 0xd2f00000-0xd2ffffff] -05:51:18,521 INFO kernel:pci 0000:00:18.2: bridge window [mem 0xd4c00000-0xd4cfffff 64bit pref] -05:51:18,521 INFO kernel:pci 0000:00:18.3: PCI bridge to [bus 1e-1e] -05:51:18,521 INFO kernel:pci 0000:00:18.3: PCI bridge to [bus 1e-1e] -05:51:18,521 INFO kernel:pci 0000:00:18.3: bridge window [io disabled] -05:51:18,521 INFO kernel:pci 0000:00:18.3: bridge window [mem 0xd3300000-0xd33fffff] -05:51:18,521 INFO kernel:pci 0000:00:18.3: bridge window [mem 0xd4e00000-0xd4efffff 64bit pref] -05:51:18,521 INFO kernel:pci 0000:00:18.4: PCI bridge to [bus 1f-1f] -05:51:18,521 INFO kernel:pci 0000:00:18.4: PCI bridge to [bus 1f-1f] -05:51:18,521 INFO kernel:pci 0000:00:18.4: bridge window [io disabled] -05:51:18,521 INFO kernel:pci 0000:00:18.4: bridge window [mem 0xd3700000-0xd37fffff] -05:51:18,521 INFO kernel:pci 0000:00:18.4: bridge window [mem 0xd5000000-0xd50fffff 64bit pref] -05:51:18,521 INFO kernel:pci 0000:00:18.5: PCI bridge to [bus 20-20] -05:51:18,521 INFO kernel:pci 0000:00:18.5: PCI bridge to [bus 20-20] -05:51:18,521 INFO kernel:pci 0000:00:18.5: bridge window [io disabled] -05:51:18,521 INFO kernel:pci 0000:00:18.5: bridge window [mem 0xd3b00000-0xd3bfffff] -05:51:18,521 INFO kernel:pci 0000:00:18.5: bridge window [mem 0xd5200000-0xd52fffff 64bit pref] -05:51:18,521 INFO kernel:pci 0000:00:18.6: PCI bridge to [bus 21-21] -05:51:18,521 INFO kernel:pci 0000:00:18.6: PCI bridge to [bus 21-21] -05:51:18,521 INFO kernel:pci 0000:00:18.6: bridge window [io disabled] -05:51:18,521 INFO kernel:pci 0000:00:18.6: bridge window [mem 0xd3f00000-0xd3ffffff] -05:51:18,521 INFO kernel:pci 0000:00:18.6: bridge window [mem 0xd5400000-0xd54fffff 64bit pref] -05:51:18,521 INFO kernel:pci 0000:00:18.7: PCI bridge to [bus 22-22] -05:51:18,521 INFO kernel:pci 0000:00:18.7: PCI bridge to [bus 22-22] -05:51:18,521 INFO kernel:pci 0000:00:18.7: bridge window [io disabled] -05:51:18,521 INFO kernel:pci 0000:00:18.7: bridge window [mem 0xd4300000-0xd43fffff] -05:51:18,521 INFO kernel:pci 0000:00:18.7: bridge window [mem 0xd5600000-0xd56fffff 64bit pref] -05:51:18,521 DEBUG kernel:pci 0000:00:01.0: setting latency timer to 64 -05:51:18,521 DEBUG kernel:pci 0000:00:15.0: setting latency timer to 64 -05:51:18,521 DEBUG kernel:pci 0000:00:15.1: setting latency timer to 64 -05:51:18,521 DEBUG kernel:pci 0000:00:15.2: setting latency timer to 64 -05:51:18,521 DEBUG kernel:pci 0000:00:15.3: setting latency timer to 64 -05:51:18,521 DEBUG kernel:pci 0000:00:15.4: setting latency timer to 64 -05:51:18,521 DEBUG kernel:pci 0000:00:15.5: setting latency timer to 64 -05:51:18,521 DEBUG kernel:pci 0000:00:15.6: setting latency timer to 64 -05:51:18,521 DEBUG kernel:pci 0000:00:15.7: setting latency timer to 64 -05:51:18,521 DEBUG kernel:pci 0000:00:16.0: setting latency timer to 64 -05:51:18,521 DEBUG kernel:pci 0000:00:16.1: setting latency timer to 64 -05:51:18,521 DEBUG kernel:pci 0000:00:16.2: setting latency timer to 64 -05:51:18,521 DEBUG kernel:pci 0000:00:16.3: setting latency timer to 64 -05:51:18,521 DEBUG kernel:pci 0000:00:16.4: setting latency timer to 64 -05:51:18,521 DEBUG kernel:pci 0000:00:16.5: setting latency timer to 64 -05:51:18,521 DEBUG kernel:pci 0000:00:16.6: setting latency timer to 64 -05:51:18,521 DEBUG kernel:pci 0000:00:16.7: setting latency timer to 64 -05:51:18,521 DEBUG kernel:pci 0000:00:17.0: setting latency timer to 64 -05:51:18,521 DEBUG kernel:pci 0000:00:17.1: setting latency timer to 64 -05:51:18,522 DEBUG kernel:pci 0000:00:17.2: setting latency timer to 64 -05:51:18,522 DEBUG kernel:pci 0000:00:17.3: setting latency timer to 64 -05:51:18,522 DEBUG kernel:pci 0000:00:17.4: setting latency timer to 64 -05:51:18,522 DEBUG kernel:pci 0000:00:17.5: setting latency timer to 64 -05:51:18,522 DEBUG kernel:pci 0000:00:17.6: setting latency timer to 64 -05:51:18,522 DEBUG kernel:pci 0000:00:17.7: setting latency timer to 64 -05:51:18,522 DEBUG kernel:pci 0000:00:18.0: setting latency timer to 64 -05:51:18,522 DEBUG kernel:pci 0000:00:18.1: setting latency timer to 64 -05:51:18,522 DEBUG kernel:pci 0000:00:18.2: setting latency timer to 64 -05:51:18,522 DEBUG kernel:pci 0000:00:18.3: setting latency timer to 64 -05:51:18,522 DEBUG kernel:pci 0000:00:18.4: setting latency timer to 64 -05:51:18,522 DEBUG kernel:pci 0000:00:18.5: setting latency timer to 64 -05:51:18,522 DEBUG kernel:pci 0000:00:18.6: setting latency timer to 64 -05:51:18,522 DEBUG kernel:pci 0000:00:18.7: setting latency timer to 64 -05:51:18,522 DEBUG kernel:pci_bus 0000:00: resource 4 [mem 0x000a0000-0x000bffff] -05:51:18,522 DEBUG kernel:pci_bus 0000:00: resource 5 [mem 0x000d0000-0x000d3fff] -05:51:18,522 DEBUG kernel:pci_bus 0000:00: resource 6 [mem 0x000d4000-0x000d7fff] -05:51:18,522 DEBUG kernel:pci_bus 0000:00: resource 7 [mem 0x000d8000-0x000dbfff] -05:51:18,522 DEBUG kernel:pci_bus 0000:00: resource 8 [mem 0x80000000-0xfebfffff] -05:51:18,522 DEBUG kernel:pci_bus 0000:00: resource 9 [io 0x0000-0x0cf7] -05:51:18,522 DEBUG kernel:pci_bus 0000:00: resource 10 [io 0x0d00-0xfeff] -05:51:18,522 DEBUG kernel:pci_bus 0000:02: resource 0 [io 0x2000-0x3fff] -05:51:18,522 DEBUG kernel:pci_bus 0000:02: resource 1 [mem 0xd1000000-0xd23fffff] -05:51:18,522 DEBUG kernel:pci_bus 0000:02: resource 2 [mem 0xdc400000-0xdc9fffff 64bit pref] -05:51:18,522 DEBUG kernel:pci_bus 0000:02: resource 4 [mem 0x000a0000-0x000bffff] -05:51:18,522 DEBUG kernel:pci_bus 0000:02: resource 5 [mem 0x000d0000-0x000d3fff] -05:51:18,522 DEBUG kernel:pci_bus 0000:02: resource 6 [mem 0x000d4000-0x000d7fff] -05:51:18,522 DEBUG kernel:pci_bus 0000:02: resource 7 [mem 0x000d8000-0x000dbfff] -05:51:18,522 DEBUG kernel:pci_bus 0000:02: resource 8 [mem 0x80000000-0xfebfffff] -05:51:18,522 DEBUG kernel:pci_bus 0000:02: resource 9 [io 0x0000-0x0cf7] -05:51:18,522 DEBUG kernel:pci_bus 0000:02: resource 10 [io 0x0d00-0xfeff] -05:51:18,522 DEBUG kernel:pci_bus 0000:03: resource 0 [io 0x4000-0x4fff] -05:51:18,522 DEBUG kernel:pci_bus 0000:03: resource 1 [mem 0xd2400000-0xd24fffff] -05:51:18,522 DEBUG kernel:pci_bus 0000:03: resource 2 [mem 0xd4400000-0xd44fffff 64bit pref] -05:51:18,522 DEBUG kernel:pci_bus 0000:04: resource 0 [io 0x8000-0x8fff] -05:51:18,522 DEBUG kernel:pci_bus 0000:04: resource 1 [mem 0xd2800000-0xd28fffff] -05:51:18,522 DEBUG kernel:pci_bus 0000:04: resource 2 [mem 0xd4800000-0xd48fffff 64bit pref] -05:51:18,522 DEBUG kernel:pci_bus 0000:05: resource 0 [io 0xc000-0xcfff] -05:51:18,522 DEBUG kernel:pci_bus 0000:05: resource 1 [mem 0xd2c00000-0xd2cfffff] -05:51:18,522 DEBUG kernel:pci_bus 0000:05: resource 2 [mem 0xdcb00000-0xdcbfffff 64bit pref] -05:51:18,522 DEBUG kernel:pci_bus 0000:06: resource 1 [mem 0xd3000000-0xd30fffff] -05:51:18,522 DEBUG kernel:pci_bus 0000:06: resource 2 [mem 0xdcd00000-0xdcdfffff 64bit pref] -05:51:18,522 DEBUG kernel:pci_bus 0000:07: resource 1 [mem 0xd3400000-0xd34fffff] -05:51:18,522 DEBUG kernel:pci_bus 0000:07: resource 2 [mem 0xdcf00000-0xdcffffff 64bit pref] -05:51:18,522 DEBUG kernel:pci_bus 0000:08: resource 1 [mem 0xd3800000-0xd38fffff] -05:51:18,522 DEBUG kernel:pci_bus 0000:08: resource 2 [mem 0xdd100000-0xdd1fffff 64bit pref] -05:51:18,522 DEBUG kernel:pci_bus 0000:09: resource 1 [mem 0xd3c00000-0xd3cfffff] -05:51:18,522 DEBUG kernel:pci_bus 0000:09: resource 2 [mem 0xdd300000-0xdd3fffff 64bit pref] -05:51:18,522 DEBUG kernel:pci_bus 0000:0a: resource 1 [mem 0xd4000000-0xd40fffff] -05:51:18,522 DEBUG kernel:pci_bus 0000:0a: resource 2 [mem 0xdd500000-0xdd5fffff 64bit pref] -05:51:18,522 DEBUG kernel:pci_bus 0000:0b: resource 0 [io 0x5000-0x5fff] -05:51:18,522 DEBUG kernel:pci_bus 0000:0b: resource 1 [mem 0xd2500000-0xd25fffff] -05:51:18,522 DEBUG kernel:pci_bus 0000:0b: resource 2 [mem 0xd4500000-0xd45fffff 64bit pref] -05:51:18,522 DEBUG kernel:pci_bus 0000:0c: resource 0 [io 0x9000-0x9fff] -05:51:18,522 DEBUG kernel:pci_bus 0000:0c: resource 1 [mem 0xd2900000-0xd29fffff] -05:51:18,522 DEBUG kernel:pci_bus 0000:0c: resource 2 [mem 0xd4900000-0xd49fffff 64bit pref] -05:51:18,522 DEBUG kernel:pci_bus 0000:0d: resource 0 [io 0xd000-0xdfff] -05:51:18,522 DEBUG kernel:pci_bus 0000:0d: resource 1 [mem 0xd2d00000-0xd2dfffff] -05:51:18,522 DEBUG kernel:pci_bus 0000:0d: resource 2 [mem 0xd4b00000-0xd4bfffff 64bit pref] -05:51:18,522 DEBUG kernel:pci_bus 0000:0e: resource 1 [mem 0xd3100000-0xd31fffff] -05:51:18,522 DEBUG kernel:pci_bus 0000:0e: resource 2 [mem 0xd4d00000-0xd4dfffff 64bit pref] -05:51:18,522 DEBUG kernel:pci_bus 0000:0f: resource 1 [mem 0xd3500000-0xd35fffff] -05:51:18,522 DEBUG kernel:pci_bus 0000:0f: resource 2 [mem 0xd4f00000-0xd4ffffff 64bit pref] -05:51:18,522 DEBUG kernel:pci_bus 0000:10: resource 1 [mem 0xd3900000-0xd39fffff] -05:51:18,522 DEBUG kernel:pci_bus 0000:10: resource 2 [mem 0xd5100000-0xd51fffff 64bit pref] -05:51:18,522 DEBUG kernel:pci_bus 0000:11: resource 1 [mem 0xd3d00000-0xd3dfffff] -05:51:18,522 DEBUG kernel:pci_bus 0000:11: resource 2 [mem 0xd5300000-0xd53fffff 64bit pref] -05:51:18,522 DEBUG kernel:pci_bus 0000:12: resource 1 [mem 0xd4100000-0xd41fffff] -05:51:18,522 DEBUG kernel:pci_bus 0000:12: resource 2 [mem 0xd5500000-0xd55fffff 64bit pref] -05:51:18,522 DEBUG kernel:pci_bus 0000:13: resource 0 [io 0x6000-0x6fff] -05:51:18,522 DEBUG kernel:pci_bus 0000:13: resource 1 [mem 0xd2600000-0xd26fffff] -05:51:18,522 DEBUG kernel:pci_bus 0000:13: resource 2 [mem 0xd4600000-0xd46fffff 64bit pref] -05:51:18,522 DEBUG kernel:pci_bus 0000:14: resource 0 [io 0xa000-0xafff] -05:51:18,522 DEBUG kernel:pci_bus 0000:14: resource 1 [mem 0xd2a00000-0xd2afffff] -05:51:18,522 DEBUG kernel:pci_bus 0000:14: resource 2 [mem 0xdca00000-0xdcafffff 64bit pref] -05:51:18,522 DEBUG kernel:pci_bus 0000:15: resource 0 [io 0xe000-0xefff] -05:51:18,522 DEBUG kernel:pci_bus 0000:15: resource 1 [mem 0xd2e00000-0xd2efffff] -05:51:18,522 DEBUG kernel:pci_bus 0000:15: resource 2 [mem 0xdcc00000-0xdccfffff 64bit pref] -05:51:18,522 DEBUG kernel:pci_bus 0000:16: resource 1 [mem 0xd3200000-0xd32fffff] -05:51:18,522 DEBUG kernel:pci_bus 0000:16: resource 2 [mem 0xdce00000-0xdcefffff 64bit pref] -05:51:18,522 DEBUG kernel:pci_bus 0000:17: resource 1 [mem 0xd3600000-0xd36fffff] -05:51:18,522 DEBUG kernel:pci_bus 0000:17: resource 2 [mem 0xdd000000-0xdd0fffff 64bit pref] -05:51:18,522 DEBUG kernel:pci_bus 0000:18: resource 1 [mem 0xd3a00000-0xd3afffff] -05:51:18,522 DEBUG kernel:pci_bus 0000:18: resource 2 [mem 0xdd200000-0xdd2fffff 64bit pref] -05:51:18,522 DEBUG kernel:pci_bus 0000:19: resource 1 [mem 0xd3e00000-0xd3efffff] -05:51:18,522 DEBUG kernel:pci_bus 0000:19: resource 2 [mem 0xdd400000-0xdd4fffff 64bit pref] -05:51:18,522 DEBUG kernel:pci_bus 0000:1a: resource 1 [mem 0xd4200000-0xd42fffff] -05:51:18,522 DEBUG kernel:pci_bus 0000:1a: resource 2 [mem 0xdd600000-0xdd6fffff 64bit pref] -05:51:18,522 DEBUG kernel:pci_bus 0000:1b: resource 0 [io 0x7000-0x7fff] -05:51:18,522 DEBUG kernel:pci_bus 0000:1b: resource 1 [mem 0xd2700000-0xd27fffff] -05:51:18,522 DEBUG kernel:pci_bus 0000:1b: resource 2 [mem 0xd4700000-0xd47fffff 64bit pref] -05:51:18,522 DEBUG kernel:pci_bus 0000:1c: resource 0 [io 0xb000-0xbfff] -05:51:18,522 DEBUG kernel:pci_bus 0000:1c: resource 1 [mem 0xd2b00000-0xd2bfffff] -05:51:18,522 DEBUG kernel:pci_bus 0000:1c: resource 2 [mem 0xd4a00000-0xd4afffff 64bit pref] -05:51:18,522 DEBUG kernel:pci_bus 0000:1d: resource 1 [mem 0xd2f00000-0xd2ffffff] -05:51:18,522 DEBUG kernel:pci_bus 0000:1d: resource 2 [mem 0xd4c00000-0xd4cfffff 64bit pref] -05:51:18,522 DEBUG kernel:pci_bus 0000:1e: resource 1 [mem 0xd3300000-0xd33fffff] -05:51:18,522 DEBUG kernel:pci_bus 0000:1e: resource 2 [mem 0xd4e00000-0xd4efffff 64bit pref] -05:51:18,522 DEBUG kernel:pci_bus 0000:1f: resource 1 [mem 0xd3700000-0xd37fffff] -05:51:18,522 DEBUG kernel:pci_bus 0000:1f: resource 2 [mem 0xd5000000-0xd50fffff 64bit pref] -05:51:18,522 DEBUG kernel:pci_bus 0000:20: resource 1 [mem 0xd3b00000-0xd3bfffff] -05:51:18,522 DEBUG kernel:pci_bus 0000:20: resource 2 [mem 0xd5200000-0xd52fffff 64bit pref] -05:51:18,522 DEBUG kernel:pci_bus 0000:21: resource 1 [mem 0xd3f00000-0xd3ffffff] -05:51:18,522 DEBUG kernel:pci_bus 0000:21: resource 2 [mem 0xd5400000-0xd54fffff 64bit pref] -05:51:18,522 DEBUG kernel:pci_bus 0000:22: resource 1 [mem 0xd4300000-0xd43fffff] -05:51:18,522 DEBUG kernel:pci_bus 0000:22: resource 2 [mem 0xd5600000-0xd56fffff 64bit pref] -05:51:18,522 INFO kernel:NET: Registered protocol family 2 -05:51:18,522 INFO kernel:IP route cache hash table entries: 65536 (order: 7, 524288 bytes) -05:51:18,522 INFO kernel:TCP established hash table entries: 262144 (order: 10, 4194304 bytes) -05:51:18,527 INFO kernel:TCP bind hash table entries: 65536 (order: 8, 1048576 bytes) -05:51:18,527 INFO kernel:TCP: Hash tables configured (established 262144 bind 65536) -05:51:18,527 INFO kernel:TCP reno registered -05:51:18,527 INFO kernel:NET: Registered protocol family 1 -05:51:18,527 INFO kernel:pci 0000:00:00.0: Limiting direct PCI/PCI transfers -05:51:18,527 DEBUG kernel:pci 0000:00:0f.0: Boot video device -05:51:18,527 INFO kernel:Trying to unpack rootfs image as initramfs... -05:51:18,527 INFO kernel:Freeing initrd memory: 32601k freed -05:51:18,527 INFO kernel:Simple Boot Flag at 0x36 set to 0x80 -05:51:18,527 INFO kernel:audit: initializing netlink socket (disabled) -05:51:18,527 NOTICE kernel:type=2000 audit(1021096275.782:1): initialized -05:51:18,527 INFO kernel:HugeTLB registered 2 MB page size, pre-allocated 0 pages -05:51:18,527 NOTICE kernel:VFS: Disk quotas dquot_6.5.2 -05:51:18,527 WARNING kernel:Dquot-cache hash table entries: 512 (order 0, 4096 bytes) -05:51:18,527 INFO kernel:msgmni has been set to 4005 -05:51:18,527 DEBUG kernel:SELinux: Registering netfilter hooks -05:51:18,527 INFO kernel:alg: No test for stdrng (krng) -05:51:18,527 WARNING kernel:ksign: Installing public key data -05:51:18,527 WARNING kernel:Loading keyring -05:51:18,527 WARNING kernel:- Added public key 8A44323FB303E068 -05:51:18,527 WARNING kernel: - key was been created 363988184 seconds in future -05:51:18,527 WARNING kernel:- User ID: CentOS (Kernel Module GPG key) -05:51:18,527 INFO kernel:Block layer SCSI generic (bsg) driver version 0.4 loaded (major 251) -05:51:18,527 INFO kernel:io scheduler noop registered -05:51:18,527 INFO kernel:io scheduler anticipatory registered -05:51:18,527 INFO kernel:io scheduler deadline registered -05:51:18,527 INFO kernel:io scheduler cfq registered (default) -05:51:18,527 DEBUG kernel:pcieport 0000:00:15.0: setting latency timer to 64 -05:51:18,527 DEBUG kernel: alloc irq_desc for 24 on node -1 -05:51:18,527 DEBUG kernel: alloc kstat_irqs on node -1 -05:51:18,527 DEBUG kernel:pcieport 0000:00:15.0: irq 24 for MSI/MSI-X -05:51:18,527 DEBUG kernel:pcieport 0000:00:15.1: setting latency timer to 64 -05:51:18,527 DEBUG kernel: alloc irq_desc for 25 on node -1 -05:51:18,527 DEBUG kernel: alloc kstat_irqs on node -1 -05:51:18,527 DEBUG kernel:pcieport 0000:00:15.1: irq 25 for MSI/MSI-X -05:51:18,527 DEBUG kernel:pcieport 0000:00:15.2: setting latency timer to 64 -05:51:18,527 DEBUG kernel: alloc irq_desc for 26 on node -1 -05:51:18,527 DEBUG kernel: alloc kstat_irqs on node -1 -05:51:18,527 DEBUG kernel:pcieport 0000:00:15.2: irq 26 for MSI/MSI-X -05:51:18,527 DEBUG kernel:pcieport 0000:00:15.3: setting latency timer to 64 -05:51:18,527 DEBUG kernel: alloc irq_desc for 27 on node -1 -05:51:18,527 DEBUG kernel: alloc kstat_irqs on node -1 -05:51:18,527 DEBUG kernel:pcieport 0000:00:15.3: irq 27 for MSI/MSI-X -05:51:18,527 DEBUG kernel:pcieport 0000:00:15.4: setting latency timer to 64 -05:51:18,527 DEBUG kernel: alloc irq_desc for 28 on node -1 -05:51:18,527 DEBUG kernel: alloc kstat_irqs on node -1 -05:51:18,527 DEBUG kernel:pcieport 0000:00:15.4: irq 28 for MSI/MSI-X -05:51:18,527 DEBUG kernel:pcieport 0000:00:15.5: setting latency timer to 64 -05:51:18,527 DEBUG kernel: alloc irq_desc for 29 on node -1 -05:51:18,527 DEBUG kernel: alloc kstat_irqs on node -1 -05:51:18,527 DEBUG kernel:pcieport 0000:00:15.5: irq 29 for MSI/MSI-X -05:51:18,527 DEBUG kernel:pcieport 0000:00:15.6: setting latency timer to 64 -05:51:18,527 DEBUG kernel: alloc irq_desc for 30 on node -1 -05:51:18,527 DEBUG kernel: alloc kstat_irqs on node -1 -05:51:18,527 DEBUG kernel:pcieport 0000:00:15.6: irq 30 for MSI/MSI-X -05:51:18,527 DEBUG kernel:pcieport 0000:00:15.7: setting latency timer to 64 -05:51:18,527 DEBUG kernel: alloc irq_desc for 31 on node -1 -05:51:18,527 DEBUG kernel: alloc kstat_irqs on node -1 -05:51:18,527 DEBUG kernel:pcieport 0000:00:15.7: irq 31 for MSI/MSI-X -05:51:18,527 DEBUG kernel:pcieport 0000:00:16.0: setting latency timer to 64 -05:51:18,527 DEBUG kernel: alloc irq_desc for 32 on node -1 -05:51:18,527 DEBUG kernel: alloc kstat_irqs on node -1 -05:51:18,527 DEBUG kernel:pcieport 0000:00:16.0: irq 32 for MSI/MSI-X -05:51:18,527 DEBUG kernel:pcieport 0000:00:16.1: setting latency timer to 64 -05:51:18,527 DEBUG kernel: alloc irq_desc for 33 on node -1 -05:51:18,527 DEBUG kernel: alloc kstat_irqs on node -1 -05:51:18,527 DEBUG kernel:pcieport 0000:00:16.1: irq 33 for MSI/MSI-X -05:51:18,527 DEBUG kernel:pcieport 0000:00:16.2: setting latency timer to 64 -05:51:18,527 DEBUG kernel: alloc irq_desc for 34 on node -1 -05:51:18,527 DEBUG kernel: alloc kstat_irqs on node -1 -05:51:18,527 DEBUG kernel:pcieport 0000:00:16.2: irq 34 for MSI/MSI-X -05:51:18,527 DEBUG kernel:pcieport 0000:00:16.3: setting latency timer to 64 -05:51:18,527 DEBUG kernel: alloc irq_desc for 35 on node -1 -05:51:18,527 DEBUG kernel: alloc kstat_irqs on node -1 -05:51:18,527 DEBUG kernel:pcieport 0000:00:16.3: irq 35 for MSI/MSI-X -05:51:18,527 DEBUG kernel:pcieport 0000:00:16.4: setting latency timer to 64 -05:51:18,527 DEBUG kernel: alloc irq_desc for 36 on node -1 -05:51:18,527 DEBUG kernel: alloc kstat_irqs on node -1 -05:51:18,527 DEBUG kernel:pcieport 0000:00:16.4: irq 36 for MSI/MSI-X -05:51:18,527 DEBUG kernel:pcieport 0000:00:16.5: setting latency timer to 64 -05:51:18,527 DEBUG kernel: alloc irq_desc for 37 on node -1 -05:51:18,527 DEBUG kernel: alloc kstat_irqs on node -1 -05:51:18,527 DEBUG kernel:pcieport 0000:00:16.5: irq 37 for MSI/MSI-X -05:51:18,527 DEBUG kernel:pcieport 0000:00:16.6: setting latency timer to 64 -05:51:18,527 DEBUG kernel: alloc irq_desc for 38 on node -1 -05:51:18,527 DEBUG kernel: alloc kstat_irqs on node -1 -05:51:18,527 DEBUG kernel:pcieport 0000:00:16.6: irq 38 for MSI/MSI-X -05:51:18,527 DEBUG kernel:pcieport 0000:00:16.7: setting latency timer to 64 -05:51:18,527 DEBUG kernel: alloc irq_desc for 39 on node -1 -05:51:18,527 DEBUG kernel: alloc kstat_irqs on node -1 -05:51:18,527 DEBUG kernel:pcieport 0000:00:16.7: irq 39 for MSI/MSI-X -05:51:18,527 DEBUG kernel:pcieport 0000:00:17.0: setting latency timer to 64 -05:51:18,527 DEBUG kernel: alloc irq_desc for 40 on node -1 -05:51:18,527 DEBUG kernel: alloc kstat_irqs on node -1 -05:51:18,527 DEBUG kernel:pcieport 0000:00:17.0: irq 40 for MSI/MSI-X -05:51:18,527 DEBUG kernel:pcieport 0000:00:17.1: setting latency timer to 64 -05:51:18,527 DEBUG kernel: alloc irq_desc for 41 on node -1 -05:51:18,527 DEBUG kernel: alloc kstat_irqs on node -1 -05:51:18,527 DEBUG kernel:pcieport 0000:00:17.1: irq 41 for MSI/MSI-X -05:51:18,527 DEBUG kernel:pcieport 0000:00:17.2: setting latency timer to 64 -05:51:18,527 DEBUG kernel: alloc irq_desc for 42 on node -1 -05:51:18,527 DEBUG kernel: alloc kstat_irqs on node -1 -05:51:18,527 DEBUG kernel:pcieport 0000:00:17.2: irq 42 for MSI/MSI-X -05:51:18,527 DEBUG kernel:pcieport 0000:00:17.3: setting latency timer to 64 -05:51:18,527 DEBUG kernel: alloc irq_desc for 43 on node -1 -05:51:18,527 DEBUG kernel: alloc kstat_irqs on node -1 -05:51:18,527 DEBUG kernel:pcieport 0000:00:17.3: irq 43 for MSI/MSI-X -05:51:18,527 DEBUG kernel:pcieport 0000:00:17.4: setting latency timer to 64 -05:51:18,527 DEBUG kernel: alloc irq_desc for 44 on node -1 -05:51:18,527 DEBUG kernel: alloc kstat_irqs on node -1 -05:51:18,527 DEBUG kernel:pcieport 0000:00:17.4: irq 44 for MSI/MSI-X -05:51:18,527 DEBUG kernel:pcieport 0000:00:17.5: setting latency timer to 64 -05:51:18,527 DEBUG kernel: alloc irq_desc for 45 on node -1 -05:51:18,527 DEBUG kernel: alloc kstat_irqs on node -1 -05:51:18,527 DEBUG kernel:pcieport 0000:00:17.5: irq 45 for MSI/MSI-X -05:51:18,527 DEBUG kernel:pcieport 0000:00:17.6: setting latency timer to 64 -05:51:18,527 DEBUG kernel: alloc irq_desc for 46 on node -1 -05:51:18,527 DEBUG kernel: alloc kstat_irqs on node -1 -05:51:18,527 DEBUG kernel:pcieport 0000:00:17.6: irq 46 for MSI/MSI-X -05:51:18,527 DEBUG kernel:pcieport 0000:00:17.7: setting latency timer to 64 -05:51:18,527 DEBUG kernel: alloc irq_desc for 47 on node -1 -05:51:18,527 DEBUG kernel: alloc kstat_irqs on node -1 -05:51:18,527 DEBUG kernel:pcieport 0000:00:17.7: irq 47 for MSI/MSI-X -05:51:18,527 DEBUG kernel:pcieport 0000:00:18.0: setting latency timer to 64 -05:51:18,527 DEBUG kernel: alloc irq_desc for 48 on node -1 -05:51:18,527 DEBUG kernel: alloc kstat_irqs on node -1 -05:51:18,527 DEBUG kernel:pcieport 0000:00:18.0: irq 48 for MSI/MSI-X -05:51:18,527 DEBUG kernel:pcieport 0000:00:18.1: setting latency timer to 64 -05:51:18,527 DEBUG kernel: alloc irq_desc for 49 on node -1 -05:51:18,527 DEBUG kernel: alloc kstat_irqs on node -1 -05:51:18,527 DEBUG kernel:pcieport 0000:00:18.1: irq 49 for MSI/MSI-X -05:51:18,527 DEBUG kernel:pcieport 0000:00:18.2: setting latency timer to 64 -05:51:18,527 DEBUG kernel: alloc irq_desc for 50 on node -1 -05:51:18,527 DEBUG kernel: alloc kstat_irqs on node -1 -05:51:18,527 DEBUG kernel:pcieport 0000:00:18.2: irq 50 for MSI/MSI-X -05:51:18,527 DEBUG kernel:pcieport 0000:00:18.3: setting latency timer to 64 -05:51:18,527 DEBUG kernel: alloc irq_desc for 51 on node -1 -05:51:18,527 DEBUG kernel: alloc kstat_irqs on node -1 -05:51:18,527 DEBUG kernel:pcieport 0000:00:18.3: irq 51 for MSI/MSI-X -05:51:18,527 DEBUG kernel:pcieport 0000:00:18.4: setting latency timer to 64 -05:51:18,527 DEBUG kernel: alloc irq_desc for 52 on node -1 -05:51:18,527 DEBUG kernel: alloc kstat_irqs on node -1 -05:51:18,527 DEBUG kernel:pcieport 0000:00:18.4: irq 52 for MSI/MSI-X -05:51:18,527 DEBUG kernel:pcieport 0000:00:18.5: setting latency timer to 64 -05:51:18,527 DEBUG kernel: alloc irq_desc for 53 on node -1 -05:51:18,527 DEBUG kernel: alloc kstat_irqs on node -1 -05:51:18,527 DEBUG kernel:pcieport 0000:00:18.5: irq 53 for MSI/MSI-X -05:51:18,527 DEBUG kernel:pcieport 0000:00:18.6: setting latency timer to 64 -05:51:18,527 DEBUG kernel: alloc irq_desc for 54 on node -1 -05:51:18,527 DEBUG kernel: alloc kstat_irqs on node -1 -05:51:18,527 DEBUG kernel:pcieport 0000:00:18.6: irq 54 for MSI/MSI-X -05:51:18,527 DEBUG kernel:pcieport 0000:00:18.7: setting latency timer to 64 -05:51:18,527 DEBUG kernel: alloc irq_desc for 55 on node -1 -05:51:18,527 DEBUG kernel: alloc kstat_irqs on node -1 -05:51:18,527 DEBUG kernel:pcieport 0000:00:18.7: irq 55 for MSI/MSI-X -05:51:18,527 INFO kernel:pci_hotplug: PCI Hot Plug PCI Core version: 0.5 -05:51:18,527 INFO kernel:pciehp 0000:00:15.0:pcie04: HPC vendor_id 15ad device_id 7a0 ss_vid 0 ss_did 0 -05:51:18,527 DEBUG kernel:pciehp 0000:00:15.0:pcie04: service driver pciehp loaded -05:51:18,527 INFO kernel:pciehp 0000:00:15.1:pcie04: HPC vendor_id 15ad device_id 7a0 ss_vid 0 ss_did 0 -05:51:18,527 DEBUG kernel:pciehp 0000:00:15.1:pcie04: service driver pciehp loaded -05:51:18,527 INFO kernel:pciehp 0000:00:15.2:pcie04: HPC vendor_id 15ad device_id 7a0 ss_vid 0 ss_did 0 -05:51:18,527 DEBUG kernel:pciehp 0000:00:15.2:pcie04: service driver pciehp loaded -05:51:18,527 INFO kernel:pciehp 0000:00:15.3:pcie04: HPC vendor_id 15ad device_id 7a0 ss_vid 0 ss_did 0 -05:51:18,527 DEBUG kernel:pciehp 0000:00:15.3:pcie04: service driver pciehp loaded -05:51:18,527 INFO kernel:pciehp 0000:00:15.4:pcie04: HPC vendor_id 15ad device_id 7a0 ss_vid 0 ss_did 0 -05:51:18,527 DEBUG kernel:pciehp 0000:00:15.4:pcie04: service driver pciehp loaded -05:51:18,527 INFO kernel:pciehp 0000:00:15.5:pcie04: HPC vendor_id 15ad device_id 7a0 ss_vid 0 ss_did 0 -05:51:18,527 DEBUG kernel:pciehp 0000:00:15.5:pcie04: service driver pciehp loaded -05:51:18,527 INFO kernel:pciehp 0000:00:15.6:pcie04: HPC vendor_id 15ad device_id 7a0 ss_vid 0 ss_did 0 -05:51:18,527 DEBUG kernel:pciehp 0000:00:15.6:pcie04: service driver pciehp loaded -05:51:18,527 INFO kernel:pciehp 0000:00:15.7:pcie04: HPC vendor_id 15ad device_id 7a0 ss_vid 0 ss_did 0 -05:51:18,527 DEBUG kernel:pciehp 0000:00:15.7:pcie04: service driver pciehp loaded -05:51:18,527 INFO kernel:pciehp 0000:00:16.0:pcie04: HPC vendor_id 15ad device_id 7a0 ss_vid 0 ss_did 0 -05:51:18,527 DEBUG kernel:pciehp 0000:00:16.0:pcie04: service driver pciehp loaded -05:51:18,527 INFO kernel:pciehp 0000:00:16.1:pcie04: HPC vendor_id 15ad device_id 7a0 ss_vid 0 ss_did 0 -05:51:18,527 DEBUG kernel:pciehp 0000:00:16.1:pcie04: service driver pciehp loaded -05:51:18,527 INFO kernel:pciehp 0000:00:16.2:pcie04: HPC vendor_id 15ad device_id 7a0 ss_vid 0 ss_did 0 -05:51:18,527 DEBUG kernel:pciehp 0000:00:16.2:pcie04: service driver pciehp loaded -05:51:18,527 INFO kernel:pciehp 0000:00:16.3:pcie04: HPC vendor_id 15ad device_id 7a0 ss_vid 0 ss_did 0 -05:51:18,527 DEBUG kernel:pciehp 0000:00:16.3:pcie04: service driver pciehp loaded -05:51:18,527 INFO kernel:pciehp 0000:00:16.4:pcie04: HPC vendor_id 15ad device_id 7a0 ss_vid 0 ss_did 0 -05:51:18,527 DEBUG kernel:pciehp 0000:00:16.4:pcie04: service driver pciehp loaded -05:51:18,527 INFO kernel:pciehp 0000:00:16.5:pcie04: HPC vendor_id 15ad device_id 7a0 ss_vid 0 ss_did 0 -05:51:18,527 DEBUG kernel:pciehp 0000:00:16.5:pcie04: service driver pciehp loaded -05:51:18,527 INFO kernel:pciehp 0000:00:16.6:pcie04: HPC vendor_id 15ad device_id 7a0 ss_vid 0 ss_did 0 -05:51:18,527 DEBUG kernel:pciehp 0000:00:16.6:pcie04: service driver pciehp loaded -05:51:18,527 INFO kernel:pciehp 0000:00:16.7:pcie04: HPC vendor_id 15ad device_id 7a0 ss_vid 0 ss_did 0 -05:51:18,527 DEBUG kernel:pciehp 0000:00:16.7:pcie04: service driver pciehp loaded -05:51:18,527 INFO kernel:pciehp 0000:00:17.0:pcie04: HPC vendor_id 15ad device_id 7a0 ss_vid 0 ss_did 0 -05:51:18,527 DEBUG kernel:pciehp 0000:00:17.0:pcie04: service driver pciehp loaded -05:51:18,527 INFO kernel:pciehp 0000:00:17.1:pcie04: HPC vendor_id 15ad device_id 7a0 ss_vid 0 ss_did 0 -05:51:18,527 DEBUG kernel:pciehp 0000:00:17.1:pcie04: service driver pciehp loaded -05:51:18,527 INFO kernel:pciehp 0000:00:17.2:pcie04: HPC vendor_id 15ad device_id 7a0 ss_vid 0 ss_did 0 -05:51:18,527 DEBUG kernel:pciehp 0000:00:17.2:pcie04: service driver pciehp loaded -05:51:18,527 INFO kernel:pciehp 0000:00:17.3:pcie04: HPC vendor_id 15ad device_id 7a0 ss_vid 0 ss_did 0 -05:51:18,527 DEBUG kernel:pciehp 0000:00:17.3:pcie04: service driver pciehp loaded -05:51:18,527 INFO kernel:pciehp 0000:00:17.4:pcie04: HPC vendor_id 15ad device_id 7a0 ss_vid 0 ss_did 0 -05:51:18,527 DEBUG kernel:pciehp 0000:00:17.4:pcie04: service driver pciehp loaded -05:51:18,527 INFO kernel:pciehp 0000:00:17.5:pcie04: HPC vendor_id 15ad device_id 7a0 ss_vid 0 ss_did 0 -05:51:18,527 DEBUG kernel:pciehp 0000:00:17.5:pcie04: service driver pciehp loaded -05:51:18,527 INFO kernel:pciehp 0000:00:17.6:pcie04: HPC vendor_id 15ad device_id 7a0 ss_vid 0 ss_did 0 -05:51:18,527 DEBUG kernel:pciehp 0000:00:17.6:pcie04: service driver pciehp loaded -05:51:18,527 INFO kernel:pciehp 0000:00:17.7:pcie04: HPC vendor_id 15ad device_id 7a0 ss_vid 0 ss_did 0 -05:51:18,527 DEBUG kernel:pciehp 0000:00:17.7:pcie04: service driver pciehp loaded -05:51:18,527 INFO kernel:pciehp 0000:00:18.0:pcie04: HPC vendor_id 15ad device_id 7a0 ss_vid 0 ss_did 0 -05:51:18,527 DEBUG kernel:pciehp 0000:00:18.0:pcie04: service driver pciehp loaded -05:51:18,527 INFO kernel:pciehp 0000:00:18.1:pcie04: HPC vendor_id 15ad device_id 7a0 ss_vid 0 ss_did 0 -05:51:18,527 DEBUG kernel:pciehp 0000:00:18.1:pcie04: service driver pciehp loaded -05:51:18,527 INFO kernel:pciehp 0000:00:18.2:pcie04: HPC vendor_id 15ad device_id 7a0 ss_vid 0 ss_did 0 -05:51:18,527 DEBUG kernel:pciehp 0000:00:18.2:pcie04: service driver pciehp loaded -05:51:18,527 INFO kernel:pciehp 0000:00:18.3:pcie04: HPC vendor_id 15ad device_id 7a0 ss_vid 0 ss_did 0 -05:51:18,527 DEBUG kernel:pciehp 0000:00:18.3:pcie04: service driver pciehp loaded -05:51:18,527 INFO kernel:pciehp 0000:00:18.4:pcie04: HPC vendor_id 15ad device_id 7a0 ss_vid 0 ss_did 0 -05:51:18,527 DEBUG kernel:pciehp 0000:00:18.4:pcie04: service driver pciehp loaded -05:51:18,527 INFO kernel:pciehp 0000:00:18.5:pcie04: HPC vendor_id 15ad device_id 7a0 ss_vid 0 ss_did 0 -05:51:18,527 DEBUG kernel:pciehp 0000:00:18.5:pcie04: service driver pciehp loaded -05:51:18,527 INFO kernel:pciehp 0000:00:18.6:pcie04: HPC vendor_id 15ad device_id 7a0 ss_vid 0 ss_did 0 -05:51:18,527 DEBUG kernel:pciehp 0000:00:18.6:pcie04: service driver pciehp loaded -05:51:18,527 INFO kernel:pciehp 0000:00:18.7:pcie04: HPC vendor_id 15ad device_id 7a0 ss_vid 0 ss_did 0 -05:51:18,527 DEBUG kernel:pciehp 0000:00:18.7:pcie04: service driver pciehp loaded -05:51:18,527 INFO kernel:pciehp: PCI Express Hot Plug Controller Driver version: 0.4 -05:51:18,527 INFO kernel:acpiphp: ACPI Hot Plug PCI Controller Driver version: 0.5 -05:51:18,527 INFO kernel:acpiphp: Slot [32] registered -05:51:18,527 INFO kernel:acpiphp: Slot [33] registered -05:51:18,527 INFO kernel:acpiphp: Slot [34] registered -05:51:18,527 INFO kernel:acpiphp: Slot [35] registered -05:51:18,527 INFO kernel:acpiphp: Slot [36] registered -05:51:18,527 INFO kernel:acpiphp: Slot [37] registered -05:51:18,527 INFO kernel:acpiphp: Slot [38] registered -05:51:18,527 INFO kernel:acpiphp: Slot [39] registered -05:51:18,527 INFO kernel:acpiphp: Slot [40] registered -05:51:18,527 INFO kernel:acpiphp: Slot [41] registered -05:51:18,527 INFO kernel:acpiphp: Slot [42] registered -05:51:18,527 INFO kernel:acpiphp: Slot [43] registered -05:51:18,527 INFO kernel:acpiphp: Slot [44] registered -05:51:18,527 INFO kernel:acpiphp: Slot [45] registered -05:51:18,527 INFO kernel:acpiphp: Slot [46] registered -05:51:18,527 INFO kernel:acpiphp: Slot [47] registered -05:51:18,527 INFO kernel:acpiphp: Slot [48] registered -05:51:18,527 INFO kernel:acpiphp: Slot [49] registered -05:51:18,527 INFO kernel:acpiphp: Slot [50] registered -05:51:18,527 INFO kernel:acpiphp: Slot [51] registered -05:51:18,527 INFO kernel:acpiphp: Slot [52] registered -05:51:18,527 INFO kernel:acpiphp: Slot [53] registered -05:51:18,527 INFO kernel:acpiphp: Slot [54] registered -05:51:18,527 INFO kernel:acpiphp: Slot [55] registered -05:51:18,527 INFO kernel:acpiphp: Slot [56] registered -05:51:18,527 INFO kernel:acpiphp: Slot [57] registered -05:51:18,527 INFO kernel:acpiphp: Slot [58] registered -05:51:18,527 INFO kernel:acpiphp: Slot [59] registered -05:51:18,527 INFO kernel:acpiphp: Slot [60] registered -05:51:18,527 INFO kernel:acpiphp: Slot [61] registered -05:51:18,527 INFO kernel:acpiphp: Slot [62] registered -05:51:18,527 INFO kernel:acpiphp: Slot [63] registered -05:51:18,527 WARNING kernel:acpiphp_glue: Slot 160 already registered by another hotplug driver -05:51:18,527 WARNING kernel:acpiphp_glue: Slot 192 already registered by another hotplug driver -05:51:18,527 WARNING kernel:acpiphp_glue: Slot 224 already registered by another hotplug driver -05:51:18,527 WARNING kernel:acpiphp_glue: Slot 256 already registered by another hotplug driver -05:51:18,527 WARNING kernel:acpiphp_glue: Slot 161 already registered by another hotplug driver -05:51:18,527 WARNING kernel:acpiphp_glue: Slot 162 already registered by another hotplug driver -05:51:18,527 WARNING kernel:acpiphp_glue: Slot 163 already registered by another hotplug driver -05:51:18,527 WARNING kernel:acpiphp_glue: Slot 164 already registered by another hotplug driver -05:51:18,527 WARNING kernel:acpiphp_glue: Slot 165 already registered by another hotplug driver -05:51:18,527 WARNING kernel:acpiphp_glue: Slot 166 already registered by another hotplug driver -05:51:18,527 WARNING kernel:acpiphp_glue: Slot 167 already registered by another hotplug driver -05:51:18,527 WARNING kernel:acpiphp_glue: Slot 193 already registered by another hotplug driver -05:51:18,527 WARNING kernel:acpiphp_glue: Slot 194 already registered by another hotplug driver -05:51:18,527 WARNING kernel:acpiphp_glue: Slot 195 already registered by another hotplug driver -05:51:18,527 WARNING kernel:acpiphp_glue: Slot 196 already registered by another hotplug driver -05:51:18,527 WARNING kernel:acpiphp_glue: Slot 197 already registered by another hotplug driver -05:51:18,527 WARNING kernel:acpiphp_glue: Slot 198 already registered by another hotplug driver -05:51:18,527 WARNING kernel:acpiphp_glue: Slot 199 already registered by another hotplug driver -05:51:18,527 WARNING kernel:acpiphp_glue: Slot 225 already registered by another hotplug driver -05:51:18,527 WARNING kernel:acpiphp_glue: Slot 226 already registered by another hotplug driver -05:51:18,527 WARNING kernel:acpiphp_glue: Slot 227 already registered by another hotplug driver -05:51:18,527 WARNING kernel:acpiphp_glue: Slot 228 already registered by another hotplug driver -05:51:18,527 WARNING kernel:acpiphp_glue: Slot 229 already registered by another hotplug driver -05:51:18,527 WARNING kernel:acpiphp_glue: Slot 230 already registered by another hotplug driver -05:51:18,527 WARNING kernel:acpiphp_glue: Slot 231 already registered by another hotplug driver -05:51:18,527 WARNING kernel:acpiphp_glue: Slot 257 already registered by another hotplug driver -05:51:18,527 WARNING kernel:acpiphp_glue: Slot 258 already registered by another hotplug driver -05:51:18,527 WARNING kernel:acpiphp_glue: Slot 259 already registered by another hotplug driver -05:51:18,527 WARNING kernel:acpiphp_glue: Slot 260 already registered by another hotplug driver -05:51:18,527 WARNING kernel:acpiphp_glue: Slot 261 already registered by another hotplug driver -05:51:18,527 WARNING kernel:acpiphp_glue: Slot 262 already registered by another hotplug driver -05:51:18,527 WARNING kernel:acpiphp_glue: Slot 263 already registered by another hotplug driver -05:51:18,527 INFO kernel:ipmi message handler version 39.2 -05:51:18,527 INFO kernel:IPMI System Interface driver. -05:51:18,527 INFO kernel:ipmi_si: Adding default-specified kcs state machine -05:51:18,527 INFO kernel:ipmi_si: Trying default-specified kcs state machine at i/o address 0xca2, slave address 0x0, irq 0 -05:51:18,527 INFO kernel:ipmi_si: Interface detection failed -05:51:18,527 INFO kernel:ipmi_si: Adding default-specified smic state machine -05:51:18,527 INFO kernel:ipmi_si: Trying default-specified smic state machine at i/o address 0xca9, slave address 0x0, irq 0 -05:51:18,527 INFO kernel:ipmi_si: Interface detection failed -05:51:18,527 INFO kernel:ipmi_si: Adding default-specified bt state machine -05:51:18,527 INFO kernel:ipmi_si: Trying default-specified bt state machine at i/o address 0xe4, slave address 0x0, irq 0 -05:51:18,527 INFO kernel:ipmi_si: Interface detection failed -05:51:18,527 WARNING kernel:ipmi_si: Unable to find any System Interface(s) -05:51:18,527 INFO kernel:ACPI: AC Adapter [ACAD] (on-line) -05:51:18,527 INFO kernel:input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input0 -05:51:18,527 INFO kernel:ACPI: Power Button [PWRF] -05:51:18,527 DEBUG kernel:ACPI: acpi_idle registered with cpuidle -05:51:18,527 WARNING kernel:ACPI Exception: AE_NOT_FOUND, No or invalid critical threshold (20090903/thermal-386) -05:51:18,527 INFO kernel:GHES: HEST is not enabled! -05:51:18,527 INFO kernel:Non-volatile memory driver v1.3 -05:51:18,527 INFO kernel:Linux agpgart interface v0.103 -05:51:18,527 INFO kernel:agpgart-intel 0000:00:00.0: Intel 440BX Chipset -05:51:18,527 INFO kernel:agpgart-intel 0000:00:00.0: AGP aperture is 256M @ 0x0 -05:51:18,527 INFO kernel:crash memory driver: version 1.1 -05:51:18,527 INFO kernel:Serial: 8250/16550 driver, 4 ports, IRQ sharing enabled -05:51:18,527 INFO kernel:serial8250: ttyS0 at I/O 0x3f8 (irq = 4) is a 16550A -05:51:18,527 INFO kernel:serial8250: ttyS1 at I/O 0x2f8 (irq = 3) is a 16550A -05:51:18,527 INFO kernel:00:0a: ttyS0 at I/O 0x3f8 (irq = 4) is a 16550A -05:51:18,527 INFO kernel:00:0b: ttyS1 at I/O 0x2f8 (irq = 3) is a 16550A -05:51:18,527 INFO kernel:brd: module loaded -05:51:18,527 INFO kernel:loop: module loaded -05:51:18,527 INFO kernel:input: Macintosh mouse button emulation as /devices/virtual/input/input1 -05:51:18,527 INFO kernel:Fixed MDIO Bus: probed -05:51:18,527 INFO kernel:ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver -05:51:18,527 INFO kernel:ohci_hcd: USB 1.1 'Open' Host Controller (OHCI) Driver -05:51:18,527 INFO kernel:uhci_hcd: USB Universal Host Controller Interface driver -05:51:18,527 INFO kernel:PNP: PS/2 Controller [PNP0303:KBC,PNP0f13:MOUS] at 0x60,0x64 irq 1,12 -05:51:18,527 INFO kernel:Refined TSC clocksource calibration: 2400.080 MHz. -05:51:18,527 INFO kernel:Switching to clocksource tsc -05:51:18,527 INFO kernel:serio: i8042 KBD port at 0x60,0x64 irq 1 -05:51:18,527 INFO kernel:serio: i8042 AUX port at 0x60,0x64 irq 12 -05:51:18,527 INFO kernel:mice: PS/2 mouse device common for all mice -05:51:18,527 INFO kernel:rtc_cmos 00:04: rtc core: registered rtc_cmos as rtc0 -05:51:18,527 INFO kernel:rtc0: alarms up to one month, y3k, 114 bytes nvram, hpet irqs -05:51:18,527 INFO kernel:cpuidle: using governor ladder -05:51:18,527 INFO kernel:cpuidle: using governor menu -05:51:18,527 INFO kernel:EFI Variables Facility v0.08 2004-May-17 -05:51:18,527 INFO kernel:usbcore: registered new interface driver hiddev -05:51:18,527 INFO kernel:usbcore: registered new interface driver usbhid -05:51:18,527 INFO kernel:usbhid: v2.6:USB HID core driver -05:51:18,527 INFO kernel:GRE over IPv4 demultiplexor driver -05:51:18,527 INFO kernel:TCP cubic registered -05:51:18,527 INFO kernel:input: AT Translated Set 2 keyboard as /devices/platform/i8042/serio0/input/input2 -05:51:18,527 INFO kernel:Initializing XFRM netlink socket -05:51:18,527 INFO kernel:NET: Registered protocol family 17 -05:51:18,527 WARNING kernel:registered taskstats version 1 -05:51:18,527 INFO kernel:input: ImPS/2 Generic Wheel Mouse as /devices/platform/i8042/serio1/input/input3 -05:51:18,527 INFO kernel:rtc_cmos 00:04: setting system clock to 2002-05-11 05:51:18 UTC (1021096278) -05:51:18,527 INFO kernel:Initalizing network drop monitor service -05:51:18,527 INFO kernel:Freeing unused kernel memory: 1276k freed -05:51:18,527 INFO kernel:Write protecting the kernel read-only data: 10240k -05:51:18,527 INFO kernel:Freeing unused kernel memory: 800k freed -05:51:18,527 INFO kernel:Freeing unused kernel memory: 1588k freed -05:51:20,557 INFO kernel:squashfs: version 4.0 (2009/01/31) Phillip Lougher -05:51:20,568 INFO kernel:Loading iSCSI transport class v2.0-870. -05:51:20,587 NOTICE kernel:iscsi: registered transport (tcp) -05:51:20,594 INFO kernel:Floppy drive(s): fd0 is 1.44M -05:51:20,605 INFO kernel:FDC 0 is a post-1991 82077 -05:51:20,610 INFO kernel:BIOS EDD facility v0.16 2004-Jun-25, 2 devices found -05:51:20,614 INFO kernel:input: PC Speaker as /devices/platform/pcspkr/input/input4 -05:51:20,620 INFO kernel:No iBFT detected. -05:51:20,655 INFO kernel:NET: Registered protocol family 10 -05:51:20,657 INFO kernel:lo: Disabled Privacy Extensions -05:51:20,739 DEBUG kernel:ata_piix 0000:00:07.1: version 2.13 -05:51:20,740 INFO kernel:scsi0 : ata_piix -05:51:20,740 INFO kernel:scsi1 : ata_piix -05:51:20,740 INFO kernel:ata1: PATA max UDMA/33 cmd 0x1f0 ctl 0x3f6 bmdma 0x10c0 irq 14 -05:51:20,740 INFO kernel:ata2: PATA max UDMA/33 cmd 0x170 ctl 0x376 bmdma 0x10c8 irq 15 -05:51:20,750 ERR udevd-work: device node '/dev/rtc' already exists, link to '/dev/rtc0' will not overwrite it -05:51:20,926 INFO kernel:ata2.00: ATAPI: VMware Virtual IDE CDROM Drive, 00000001, max UDMA/33 -05:51:20,934 INFO kernel:ata2.00: configured for UDMA/33 -05:51:20,934 NOTICE kernel:scsi 1:0:0:0: CD-ROM NECVMWar VMware IDE CDR10 1.00 PQ: 0 ANSI: 5 -05:51:20,959 INFO kernel:Fusion MPT base driver 3.04.20 -05:51:20,959 INFO kernel:Copyright (c) 1999-2008 LSI Corporation -05:51:20,971 INFO kernel:Fusion MPT SPI Host driver 3.04.20 -05:51:20,971 DEBUG kernel: alloc irq_desc for 17 on node -1 -05:51:20,971 DEBUG kernel: alloc kstat_irqs on node -1 -05:51:20,971 INFO kernel:mptspi 0000:00:10.0: PCI INT A -> GSI 17 (level, low) -> IRQ 17 -05:51:20,972 INFO kernel:mptbase: ioc0: Initiating bringup -05:51:20,990 INFO kernel:ioc0: LSI53C1030 B0: Capabilities={Initiator} -05:51:21,031 INFO kernel:scsi2 : ioc0: LSI53C1030 B0, FwRev=01032920h, Ports=1, MaxQ=128, IRQ=17 -05:51:21,061 NOTICE kernel:scsi 2:0:0:0: Direct-Access VMware Virtual disk 1.0 PQ: 0 ANSI: 2 -05:51:21,061 INFO kernel:scsi target2:0:0: Beginning Domain Validation -05:51:21,061 INFO kernel:scsi target2:0:0: Domain Validation skipping write tests -05:51:21,061 INFO kernel:scsi target2:0:0: Ending Domain Validation -05:51:21,061 INFO kernel:scsi target2:0:0: FAST-40 WIDE SCSI 80.0 MB/s ST (25 ns, offset 127) -05:51:21,061 NOTICE kernel:scsi 2:0:1:0: Direct-Access VMware Virtual disk 1.0 PQ: 0 ANSI: 2 -05:51:21,061 INFO kernel:scsi target2:0:1: Beginning Domain Validation -05:51:21,061 INFO kernel:scsi target2:0:1: Domain Validation skipping write tests -05:51:21,061 INFO kernel:scsi target2:0:1: Ending Domain Validation -05:51:21,061 INFO kernel:scsi target2:0:1: FAST-40 WIDE SCSI 80.0 MB/s ST (25 ns, offset 127) -05:51:21,088 WARNING kernel:sr0: scsi3-mmc drive: 1x/1x writer dvd-ram cd/rw xa/form2 cdda tray -05:51:21,088 INFO kernel:Uniform CD-ROM driver Revision: 3.20 -05:51:21,088 DEBUG kernel:sr 1:0:0:0: Attached scsi CD-ROM sr0 -05:51:21,098 INFO kernel:e1000: Intel(R) PRO/1000 Network Driver - version 7.3.21-k8-NAPI -05:51:21,098 INFO kernel:e1000: Copyright (c) 1999-2006 Intel Corporation. -05:51:21,098 DEBUG kernel: alloc irq_desc for 18 on node -1 -05:51:21,098 DEBUG kernel: alloc kstat_irqs on node -1 -05:51:21,098 INFO kernel:e1000 0000:02:00.0: PCI INT A -> GSI 18 (level, low) -> IRQ 18 -05:51:21,098 DEBUG kernel:e1000 0000:02:00.0: setting latency timer to 64 -05:51:21,447 INFO kernel:e1000 0000:02:00.0: eth0: (PCI:66MHz:32-bit) 00:0c:29:21:89:af -05:51:21,447 INFO kernel:e1000 0000:02:00.0: eth0: Intel(R) PRO/1000 Network Connection -05:51:21,447 DEBUG kernel: alloc irq_desc for 19 on node -1 -05:51:21,447 DEBUG kernel: alloc kstat_irqs on node -1 -05:51:21,447 INFO kernel:e1000 0000:02:01.0: PCI INT A -> GSI 19 (level, low) -> IRQ 19 -05:51:21,447 DEBUG kernel:e1000 0000:02:01.0: setting latency timer to 64 -05:51:21,793 INFO kernel:e1000 0000:02:01.0: eth1: (PCI:66MHz:32-bit) 00:0c:29:21:89:b9 -05:51:21,793 INFO kernel:e1000 0000:02:01.0: eth1: Intel(R) PRO/1000 Network Connection -05:51:21,793 DEBUG kernel: alloc irq_desc for 16 on node -1 -05:51:21,793 DEBUG kernel: alloc kstat_irqs on node -1 -05:51:21,793 INFO kernel:e1000 0000:02:02.0: PCI INT A -> GSI 16 (level, low) -> IRQ 16 -05:51:21,793 DEBUG kernel:e1000 0000:02:02.0: setting latency timer to 64 -05:51:22,142 INFO kernel:e1000 0000:02:02.0: eth2: (PCI:66MHz:32-bit) 00:0c:29:21:89:c3 -05:51:22,142 INFO kernel:e1000 0000:02:02.0: eth2: Intel(R) PRO/1000 Network Connection -05:51:22,142 INFO kernel:e1000 0000:02:03.0: PCI INT A -> GSI 17 (level, low) -> IRQ 17 -05:51:22,142 DEBUG kernel:e1000 0000:02:03.0: setting latency timer to 64 -05:51:22,485 INFO kernel:e1000 0000:02:03.0: eth3: (PCI:66MHz:32-bit) 00:0c:29:21:89:cd -05:51:22,485 INFO kernel:e1000 0000:02:03.0: eth3: Intel(R) PRO/1000 Network Connection -05:51:22,515 NOTICE kernel:sd 2:0:0:0: [sda] 33554432 512-byte logical blocks: (17.1 GB/16.0 GiB) -05:51:22,515 NOTICE kernel:sd 2:0:0:0: [sda] Write Protect is off -05:51:22,515 DEBUG kernel:sd 2:0:0:0: [sda] Mode Sense: 61 00 00 00 -05:51:22,515 NOTICE kernel:sd 2:0:0:0: [sda] Cache data unavailable -05:51:22,515 ERR kernel:sd 2:0:0:0: [sda] Assuming drive cache: write through -05:51:22,515 NOTICE kernel:sd 2:0:0:0: [sda] Cache data unavailable -05:51:22,515 ERR kernel:sd 2:0:0:0: [sda] Assuming drive cache: write through -05:51:22,516 INFO kernel: sda: -05:51:22,516 NOTICE kernel:sd 2:0:1:0: [sdb] 33554432 512-byte logical blocks: (17.1 GB/16.0 GiB) -05:51:22,516 NOTICE kernel:sd 2:0:1:0: [sdb] Write Protect is off -05:51:22,516 DEBUG kernel:sd 2:0:1:0: [sdb] Mode Sense: 61 00 00 00 -05:51:22,516 NOTICE kernel:sd 2:0:1:0: [sdb] Cache data unavailable -05:51:22,516 ERR kernel:sd 2:0:1:0: [sdb] Assuming drive cache: write through -05:51:22,516 NOTICE kernel:sd 2:0:1:0: [sdb] Cache data unavailable -05:51:22,516 ERR kernel:sd 2:0:1:0: [sdb] Assuming drive cache: write through -05:51:22,522 INFO kernel: sdb: -05:51:22,522 NOTICE kernel:sd 2:0:1:0: [sdb] Cache data unavailable -05:51:22,522 ERR kernel:sd 2:0:1:0: [sdb] Assuming drive cache: write through -05:51:22,522 NOTICE kernel:sd 2:0:1:0: [sdb] Attached SCSI disk -05:51:22,577 WARNING kernel: sda1 sda2 sda3 -05:51:22,598 NOTICE kernel:sd 2:0:0:0: [sda] Cache data unavailable -05:51:22,598 ERR kernel:sd 2:0:0:0: [sda] Assuming drive cache: write through -05:51:22,598 NOTICE kernel:sd 2:0:0:0: [sda] Attached SCSI disk -05:51:22,606 NOTICE kernel:sr 1:0:0:0: Attached scsi generic sg0 type 5 -05:51:22,606 NOTICE kernel:sd 2:0:0:0: Attached scsi generic sg1 type 0 -05:51:22,606 NOTICE kernel:sd 2:0:1:0: Attached scsi generic sg2 type 0 -05:51:28,012 ERR udevd-work: device node '/dev/rtc' already exists, link to '/dev/rtc0' will not overwrite it -05:51:46,181 INFO NetworkManager: NetworkManager (version 0.8.1-66.el6) is starting... -05:51:46,181 INFO NetworkManager: Read config file /etc/NetworkManager/NetworkManager.conf -05:51:46,183 INFO NetworkManager: trying to start the modem manager... -05:51:46,186 INFO NetworkManager: monitoring kernel firmware directory '/lib/firmware'. -05:51:46,186 INFO NetworkManager: Bonding/Bridging/VLAN support enabled -05:51:46,188 NOTICE NetworkManager: ifcfg-rh: Acquired D-Bus service com.redhat.ifcfgrh1 -05:51:46,188 INFO NetworkManager: Loaded plugin ifcfg-rh: (c) 2007 - 2008 Red Hat, Inc. To report bugs please use the NetworkManager mailing list. -05:51:46,188 INFO NetworkManager: Loaded plugin keyfile: (c) 2007 - 2008 Red Hat, Inc. To report bugs please use the NetworkManager mailing list. -05:51:46,188 NOTICE NetworkManager: ifcfg-rh: parsing /etc/sysconfig/network-scripts/ifcfg-eth3 ... -05:51:46,190 NOTICE NetworkManager: ifcfg-rh: read connection 'System eth3' -05:51:46,190 NOTICE NetworkManager: ifcfg-rh: parsing /etc/sysconfig/network-scripts/ifcfg-eth2 ... -05:51:46,190 NOTICE NetworkManager: ifcfg-rh: read connection 'System eth2' -05:51:46,190 NOTICE NetworkManager: ifcfg-rh: parsing /etc/sysconfig/network-scripts/ifcfg-eth1 ... -05:51:46,191 NOTICE NetworkManager: ifcfg-rh: read connection 'System eth1' -05:51:46,191 NOTICE NetworkManager: ifcfg-rh: parsing /etc/sysconfig/network-scripts/ifcfg-eth0 ... -05:51:46,192 NOTICE NetworkManager: ifcfg-rh: read connection 'System eth0' -05:51:46,192 WARNING NetworkManager: Can not read directory '/etc/NetworkManager/system-connections': Error opening directory '/etc/NetworkManager/system-connections': No such file or directory -05:51:46,194 INFO NetworkManager: WiFi enabled by radio killswitch; enabled by state file -05:51:46,194 INFO NetworkManager: WWAN enabled by radio killswitch; enabled by state file -05:51:46,194 INFO NetworkManager: WiMAX enabled by radio killswitch; enabled by state file -05:51:46,194 INFO NetworkManager: Networking is enabled by state file -05:51:46,212 INFO kernel:802.1Q VLAN Support v1.8 Ben Greear -05:51:46,212 INFO kernel:All bugs added by David S. Miller -05:51:46,217 INFO kernel:e1000: eth0 NIC Link is Up 1000 Mbps Full Duplex, Flow Control: None -05:51:46,218 INFO NetworkManager: (eth0): carrier is OFF -05:51:46,218 INFO NetworkManager: (eth0): new Ethernet device (driver: 'e1000' ifindex: 2) -05:51:46,218 INFO NetworkManager: (eth0): exported as /org/freedesktop/NetworkManager/Devices/0 -05:51:46,218 INFO NetworkManager: (eth0): now managed -05:51:46,218 INFO NetworkManager: (eth0): device state change: 1 -> 2 (reason 2) -05:51:46,218 INFO NetworkManager: (eth0): bringing up device. -05:51:46,221 INFO kernel:8021q: adding VLAN 0 to HW filter on device eth0 -05:51:46,222 INFO NetworkManager: (eth0): carrier now ON (device state 2) -05:51:46,222 INFO NetworkManager: (eth0): preparing device. -05:51:46,222 INFO NetworkManager: (eth0): deactivating device (reason: 2). -05:51:46,223 INFO NetworkManager: (eth1): carrier is OFF -05:51:46,224 INFO NetworkManager: (eth1): new Ethernet device (driver: 'e1000' ifindex: 3) -05:51:46,224 INFO NetworkManager: (eth1): exported as /org/freedesktop/NetworkManager/Devices/1 -05:51:46,224 INFO NetworkManager: (eth1): now managed -05:51:46,224 INFO NetworkManager: (eth1): device state change: 1 -> 2 (reason 2) -05:51:46,224 INFO NetworkManager: (eth1): bringing up device. -05:51:46,229 INFO kernel:e1000: eth1 NIC Link is Up 1000 Mbps Full Duplex, Flow Control: None -05:51:46,233 INFO kernel:8021q: adding VLAN 0 to HW filter on device eth1 -05:51:46,233 INFO NetworkManager: (eth1): carrier now ON (device state 2) -05:51:46,234 INFO NetworkManager: (eth1): preparing device. -05:51:46,234 INFO NetworkManager: (eth1): deactivating device (reason: 2). -05:51:46,235 INFO NetworkManager: (eth2): carrier is OFF -05:51:46,235 INFO NetworkManager: (eth2): new Ethernet device (driver: 'e1000' ifindex: 4) -05:51:46,235 INFO NetworkManager: (eth2): exported as /org/freedesktop/NetworkManager/Devices/2 -05:51:46,235 INFO NetworkManager: (eth2): now managed -05:51:46,235 INFO NetworkManager: (eth2): device state change: 1 -> 2 (reason 2) -05:51:46,235 INFO NetworkManager: (eth2): bringing up device. -05:51:46,240 INFO kernel:e1000: eth2 NIC Link is Up 1000 Mbps Full Duplex, Flow Control: None -05:51:46,244 INFO kernel:8021q: adding VLAN 0 to HW filter on device eth2 -05:51:46,245 INFO NetworkManager: (eth2): carrier now ON (device state 2) -05:51:46,245 INFO NetworkManager: (eth2): preparing device. -05:51:46,245 INFO NetworkManager: (eth2): deactivating device (reason: 2). -05:51:46,246 INFO NetworkManager: (eth3): carrier is OFF -05:51:46,247 INFO NetworkManager: (eth3): new Ethernet device (driver: 'e1000' ifindex: 5) -05:51:46,247 INFO NetworkManager: (eth3): exported as /org/freedesktop/NetworkManager/Devices/3 -05:51:46,247 INFO NetworkManager: (eth3): now managed -05:51:46,247 INFO NetworkManager: (eth3): device state change: 1 -> 2 (reason 2) -05:51:46,247 INFO NetworkManager: (eth3): bringing up device. -05:51:46,251 INFO kernel:e1000: eth3 NIC Link is Up 1000 Mbps Full Duplex, Flow Control: None -05:51:46,255 INFO kernel:8021q: adding VLAN 0 to HW filter on device eth3 -05:51:46,256 INFO NetworkManager: (eth3): carrier now ON (device state 2) -05:51:46,256 INFO NetworkManager: (eth3): preparing device. -05:51:46,256 INFO NetworkManager: (eth3): deactivating device (reason: 2). -05:51:46,258 INFO NetworkManager: (eth0): carrier now OFF (device state 2) -05:51:46,258 INFO NetworkManager: (eth0): carrier now ON (device state 2) -05:51:46,258 WARNING NetworkManager: (nm-device.c:4447):nm_device_queue_state: runtime check failed: (priv->queued_state.id == 0) -05:51:46,258 INFO NetworkManager: (eth1): carrier now OFF (device state 2) -05:51:46,259 INFO NetworkManager: (eth1): carrier now ON (device state 2) -05:51:46,259 WARNING NetworkManager: (nm-device.c:4447):nm_device_queue_state: runtime check failed: (priv->queued_state.id == 0) -05:51:46,259 INFO NetworkManager: (eth2): carrier now OFF (device state 2) -05:51:46,259 INFO NetworkManager: (eth2): carrier now ON (device state 2) -05:51:46,259 WARNING NetworkManager: (nm-device.c:4447):nm_device_queue_state: runtime check failed: (priv->queued_state.id == 0) -05:51:46,259 INFO NetworkManager: (eth3): carrier now OFF (device state 2) -05:51:46,259 INFO NetworkManager: (eth3): carrier now ON (device state 2) -05:51:46,259 WARNING NetworkManager: (nm-device.c:4447):nm_device_queue_state: runtime check failed: (priv->queued_state.id == 0) -05:51:46,260 INFO NetworkManager: Trying to start the supplicant... -05:51:46,261 INFO NetworkManager: (eth0): device state change: 2 -> 3 (reason 40) -05:51:46,261 INFO NetworkManager: (eth1): device state change: 2 -> 3 (reason 40) -05:51:46,261 INFO NetworkManager: (eth2): device state change: 2 -> 3 (reason 40) -05:51:46,262 INFO NetworkManager: (eth3): device state change: 2 -> 3 (reason 40) -05:51:46,268 INFO NetworkManager: wpa_supplicant started -05:51:47,181 WARNING NetworkManager: error requesting auth for org.freedesktop.NetworkManager.enable-disable-network: (26) Remote Exception invoking org.freedesktop.PolicyKit1.Authority.CheckAuthorization() on /org/freedesktop/PolicyKit1/Authority at name org.freedesktop.PolicyKit1: org.freedesktop.DBus.Error.Spawn.ExecFailed: Cannot launch daemon, file not found or permissions invalid -05:51:47,182 WARNING NetworkManager: error requesting auth for org.freedesktop.NetworkManager.sleep-wake: (26) Remote Exception invoking org.freedesktop.PolicyKit1.Authority.CheckAuthorization() on /org/freedesktop/PolicyKit1/Authority at name org.freedesktop.PolicyKit1: org.freedesktop.DBus.Error.Spawn.ExecFailed: Cannot launch daemon, file not found or permissions invalid -05:51:47,182 WARNING NetworkManager: error requesting auth for org.freedesktop.NetworkManager.enable-disable-wifi: (26) Remote Exception invoking org.freedesktop.PolicyKit1.Authority.CheckAuthorization() on /org/freedesktop/PolicyKit1/Authority at name org.freedesktop.PolicyKit1: org.freedesktop.DBus.Error.Spawn.ExecFailed: Cannot launch daemon, file not found or permissions invalid -05:51:47,182 WARNING NetworkManager: error requesting auth for org.freedesktop.NetworkManager.enable-disable-wwan: (26) Remote Exception invoking org.freedesktop.PolicyKit1.Authority.CheckAuthorization() on /org/freedesktop/PolicyKit1/Authority at name org.freedesktop.PolicyKit1: org.freedesktop.DBus.Error.Spawn.ExecFailed: Cannot launch daemon, file not found or permissions invalid -05:51:47,182 WARNING NetworkManager: error requesting auth for org.freedesktop.NetworkManager.use-user-connections: (26) Remote Exception invoking org.freedesktop.PolicyKit1.Authority.CheckAuthorization() on /org/freedesktop/PolicyKit1/Authority at name org.freedesktop.PolicyKit1: org.freedesktop.DBus.Error.Spawn.ExecFailed: Cannot launch daemon, file not found or permissions invalid -05:51:47,182 WARNING NetworkManager: error requesting auth for org.freedesktop.NetworkManager.network-control: (26) Remote Exception invoking org.freedesktop.PolicyKit1.Authority.CheckAuthorization() on /org/freedesktop/PolicyKit1/Authority at name org.freedesktop.PolicyKit1: org.freedesktop.DBus.Error.Spawn.ExecFailed: Cannot launch daemon, file not found or permissions invalid -05:51:47,182 WARNING NetworkManager: error requesting auth for org.freedesktop.network-manager-settings.system.wifi.share.open: (26) Remote Exception invoking org.freedesktop.PolicyKit1.Authority.CheckAuthorization() on /org/freedesktop/PolicyKit1/Authority at name org.freedesktop.PolicyKit1: org.freedesktop.DBus.Error.Spawn.ExecFailed: Cannot launch daemon, file not found or permissions invalid -05:51:47,183 WARNING NetworkManager: error requesting auth for org.freedesktop.network-manager-settings.system.wifi.share.protected: (26) Remote Exception invoking org.freedesktop.PolicyKit1.Authority.CheckAuthorization() on /org/freedesktop/PolicyKit1/Authority at name org.freedesktop.PolicyKit1: org.freedesktop.DBus.Error.Spawn.ExecFailed: Cannot launch daemon, file not found or permissions invalid -05:51:47,191 WARNING NetworkManager: error requesting auth for org.freedesktop.NetworkManager.enable-disable-network: (26) Remote Exception invoking org.freedesktop.PolicyKit1.Authority.CheckAuthorization() on /org/freedesktop/PolicyKit1/Authority at name org.freedesktop.PolicyKit1: org.freedesktop.DBus.Error.Spawn.ExecFailed: Cannot launch daemon, file not found or permissions invalid -05:51:47,191 WARNING NetworkManager: error requesting auth for org.freedesktop.NetworkManager.sleep-wake: (26) Remote Exception invoking org.freedesktop.PolicyKit1.Authority.CheckAuthorization() on /org/freedesktop/PolicyKit1/Authority at name org.freedesktop.PolicyKit1: org.freedesktop.DBus.Error.Spawn.ExecFailed: Cannot launch daemon, file not found or permissions invalid -05:51:47,191 WARNING NetworkManager: error requesting auth for org.freedesktop.NetworkManager.enable-disable-wifi: (26) Remote Exception invoking org.freedesktop.PolicyKit1.Authority.CheckAuthorization() on /org/freedesktop/PolicyKit1/Authority at name org.freedesktop.PolicyKit1: org.freedesktop.DBus.Error.Spawn.ExecFailed: Cannot launch daemon, file not found or permissions invalid -05:51:47,191 WARNING NetworkManager: error requesting auth for org.freedesktop.NetworkManager.enable-disable-wwan: (26) Remote Exception invoking org.freedesktop.PolicyKit1.Authority.CheckAuthorization() on /org/freedesktop/PolicyKit1/Authority at name org.freedesktop.PolicyKit1: org.freedesktop.DBus.Error.Spawn.ExecFailed: Cannot launch daemon, file not found or permissions invalid -05:51:47,191 WARNING NetworkManager: error requesting auth for org.freedesktop.NetworkManager.use-user-connections: (26) Remote Exception invoking org.freedesktop.PolicyKit1.Authority.CheckAuthorization() on /org/freedesktop/PolicyKit1/Authority at name org.freedesktop.PolicyKit1: org.freedesktop.DBus.Error.Spawn.ExecFailed: Cannot launch daemon, file not found or permissions invalid -05:51:47,191 WARNING NetworkManager: error requesting auth for org.freedesktop.NetworkManager.network-control: (26) Remote Exception invoking org.freedesktop.PolicyKit1.Authority.CheckAuthorization() on /org/freedesktop/PolicyKit1/Authority at name org.freedesktop.PolicyKit1: org.freedesktop.DBus.Error.Spawn.ExecFailed: Cannot launch daemon, file not found or permissions invalid -05:51:47,192 WARNING NetworkManager: error requesting auth for org.freedesktop.network-manager-settings.system.wifi.share.open: (26) Remote Exception invoking org.freedesktop.PolicyKit1.Authority.CheckAuthorization() on /org/freedesktop/PolicyKit1/Authority at name org.freedesktop.PolicyKit1: org.freedesktop.DBus.Error.Spawn.ExecFailed: Cannot launch daemon, file not found or permissions invalid -05:51:47,192 WARNING NetworkManager: error requesting auth for org.freedesktop.network-manager-settings.system.wifi.share.protected: (26) Remote Exception invoking org.freedesktop.PolicyKit1.Authority.CheckAuthorization() on /org/freedesktop/PolicyKit1/Authority at name org.freedesktop.PolicyKit1: org.freedesktop.DBus.Error.Spawn.ExecFailed: Cannot launch daemon, file not found or permissions invalid -05:51:47,200 WARNING NetworkManager: error requesting auth for org.freedesktop.NetworkManager.enable-disable-network: (26) Remote Exception invoking org.freedesktop.PolicyKit1.Authority.CheckAuthorization() on /org/freedesktop/PolicyKit1/Authority at name org.freedesktop.PolicyKit1: org.freedesktop.DBus.Error.Spawn.ExecFailed: Cannot launch daemon, file not found or permissions invalid -05:51:47,200 WARNING NetworkManager: error requesting auth for org.freedesktop.NetworkManager.sleep-wake: (26) Remote Exception invoking org.freedesktop.PolicyKit1.Authority.CheckAuthorization() on /org/freedesktop/PolicyKit1/Authority at name org.freedesktop.PolicyKit1: org.freedesktop.DBus.Error.Spawn.ExecFailed: Cannot launch daemon, file not found or permissions invalid -05:51:47,200 WARNING NetworkManager: error requesting auth for org.freedesktop.NetworkManager.enable-disable-wifi: (26) Remote Exception invoking org.freedesktop.PolicyKit1.Authority.CheckAuthorization() on /org/freedesktop/PolicyKit1/Authority at name org.freedesktop.PolicyKit1: org.freedesktop.DBus.Error.Spawn.ExecFailed: Cannot launch daemon, file not found or permissions invalid -05:51:47,200 WARNING NetworkManager: error requesting auth for org.freedesktop.NetworkManager.enable-disable-wwan: (26) Remote Exception invoking org.freedesktop.PolicyKit1.Authority.CheckAuthorization() on /org/freedesktop/PolicyKit1/Authority at name org.freedesktop.PolicyKit1: org.freedesktop.DBus.Error.Spawn.ExecFailed: Cannot launch daemon, file not found or permissions invalid -05:51:47,200 WARNING NetworkManager: error requesting auth for org.freedesktop.NetworkManager.use-user-connections: (26) Remote Exception invoking org.freedesktop.PolicyKit1.Authority.CheckAuthorization() on /org/freedesktop/PolicyKit1/Authority at name org.freedesktop.PolicyKit1: org.freedesktop.DBus.Error.Spawn.ExecFailed: Cannot launch daemon, file not found or permissions invalid -05:51:47,201 WARNING NetworkManager: error requesting auth for org.freedesktop.NetworkManager.network-control: (26) Remote Exception invoking org.freedesktop.PolicyKit1.Authority.CheckAuthorization() on /org/freedesktop/PolicyKit1/Authority at name org.freedesktop.PolicyKit1: org.freedesktop.DBus.Error.Spawn.ExecFailed: Cannot launch daemon, file not found or permissions invalid -05:51:47,201 WARNING NetworkManager: error requesting auth for org.freedesktop.network-manager-settings.system.wifi.share.open: (26) Remote Exception invoking org.freedesktop.PolicyKit1.Authority.CheckAuthorization() on /org/freedesktop/PolicyKit1/Authority at name org.freedesktop.PolicyKit1: org.freedesktop.DBus.Error.Spawn.ExecFailed: Cannot launch daemon, file not found or permissions invalid -05:51:47,201 WARNING NetworkManager: error requesting auth for org.freedesktop.network-manager-settings.system.wifi.share.protected: (26) Remote Exception invoking org.freedesktop.PolicyKit1.Authority.CheckAuthorization() on /org/freedesktop/PolicyKit1/Authority at name org.freedesktop.PolicyKit1: org.freedesktop.DBus.Error.Spawn.ExecFailed: Cannot launch daemon, file not found or permissions invalid -05:51:47,212 WARNING NetworkManager: error requesting auth for org.freedesktop.NetworkManager.enable-disable-network: (26) Remote Exception invoking org.freedesktop.PolicyKit1.Authority.CheckAuthorization() on /org/freedesktop/PolicyKit1/Authority at name org.freedesktop.PolicyKit1: org.freedesktop.DBus.Error.Spawn.ExecFailed: Cannot launch daemon, file not found or permissions invalid -05:51:47,212 WARNING NetworkManager: error requesting auth for org.freedesktop.NetworkManager.sleep-wake: (26) Remote Exception invoking org.freedesktop.PolicyKit1.Authority.CheckAuthorization() on /org/freedesktop/PolicyKit1/Authority at name org.freedesktop.PolicyKit1: org.freedesktop.DBus.Error.Spawn.ExecFailed: Cannot launch daemon, file not found or permissions invalid -05:51:47,212 WARNING NetworkManager: error requesting auth for org.freedesktop.NetworkManager.enable-disable-wifi: (26) Remote Exception invoking org.freedesktop.PolicyKit1.Authority.CheckAuthorization() on /org/freedesktop/PolicyKit1/Authority at name org.freedesktop.PolicyKit1: org.freedesktop.DBus.Error.Spawn.ExecFailed: Cannot launch daemon, file not found or permissions invalid -05:51:47,212 WARNING NetworkManager: error requesting auth for org.freedesktop.NetworkManager.enable-disable-wwan: (26) Remote Exception invoking org.freedesktop.PolicyKit1.Authority.CheckAuthorization() on /org/freedesktop/PolicyKit1/Authority at name org.freedesktop.PolicyKit1: org.freedesktop.DBus.Error.Spawn.ExecFailed: Cannot launch daemon, file not found or permissions invalid -05:51:47,212 WARNING NetworkManager: error requesting auth for org.freedesktop.NetworkManager.use-user-connections: (26) Remote Exception invoking org.freedesktop.PolicyKit1.Authority.CheckAuthorization() on /org/freedesktop/PolicyKit1/Authority at name org.freedesktop.PolicyKit1: org.freedesktop.DBus.Error.Spawn.ExecFailed: Cannot launch daemon, file not found or permissions invalid -05:51:47,212 WARNING NetworkManager: error requesting auth for org.freedesktop.NetworkManager.network-control: (26) Remote Exception invoking org.freedesktop.PolicyKit1.Authority.CheckAuthorization() on /org/freedesktop/PolicyKit1/Authority at name org.freedesktop.PolicyKit1: org.freedesktop.DBus.Error.Spawn.ExecFailed: Cannot launch daemon, file not found or permissions invalid -05:51:47,213 WARNING NetworkManager: error requesting auth for org.freedesktop.network-manager-settings.system.wifi.share.open: (26) Remote Exception invoking org.freedesktop.PolicyKit1.Authority.CheckAuthorization() on /org/freedesktop/PolicyKit1/Authority at name org.freedesktop.PolicyKit1: org.freedesktop.DBus.Error.Spawn.ExecFailed: Cannot launch daemon, file not found or permissions invalid -05:51:47,213 WARNING NetworkManager: error requesting auth for org.freedesktop.network-manager-settings.system.wifi.share.protected: (26) Remote Exception invoking org.freedesktop.PolicyKit1.Authority.CheckAuthorization() on /org/freedesktop/PolicyKit1/Authority at name org.freedesktop.PolicyKit1: org.freedesktop.DBus.Error.Spawn.ExecFailed: Cannot launch daemon, file not found or permissions invalid -05:51:48,220 NOTICE NetworkManager: ifcfg-rh: updating /etc/sysconfig/network-scripts/ifcfg-eth0 -05:51:48,223 INFO NetworkManager: Auto-activating connection 'System eth0'. -05:51:48,224 INFO NetworkManager: Activation (eth0) starting connection 'System eth0' -05:51:48,224 INFO NetworkManager: (eth0): device state change: 3 -> 4 (reason 0) -05:51:48,224 INFO NetworkManager: Activation (eth0) Stage 1 of 5 (Device Prepare) scheduled... -05:51:48,224 INFO NetworkManager: Activation (eth0) Stage 1 of 5 (Device Prepare) started... -05:51:48,224 INFO NetworkManager: Activation (eth0) Stage 2 of 5 (Device Configure) scheduled... -05:51:48,225 INFO NetworkManager: Activation (eth0) Stage 1 of 5 (Device Prepare) complete. -05:51:48,225 INFO NetworkManager: Activation (eth0) Stage 2 of 5 (Device Configure) starting... -05:51:48,225 INFO NetworkManager: (eth0): device state change: 4 -> 5 (reason 0) -05:51:48,225 INFO NetworkManager: Activation (eth0) Stage 2 of 5 (Device Configure) successful. -05:51:48,225 INFO NetworkManager: Activation (eth0) Stage 3 of 5 (IP Configure Start) scheduled. -05:51:48,225 INFO NetworkManager: Activation (eth0) Stage 2 of 5 (Device Configure) complete. -05:51:48,225 INFO NetworkManager: Activation (eth0) Stage 3 of 5 (IP Configure Start) started... -05:51:48,225 INFO NetworkManager: (eth0): device state change: 5 -> 7 (reason 0) -05:51:48,225 INFO NetworkManager: Activation (eth0) Beginning DHCPv4 transaction -05:51:48,228 INFO dhclient: Internet Systems Consortium DHCP Client 4.1.1-P1 -05:51:48,228 INFO NetworkManager: dhclient started with pid 670 -05:51:48,228 INFO NetworkManager: Activation (eth0) DHCPv4 will time out in 45 seconds -05:51:48,228 INFO NetworkManager: Activation (eth0) Stage 3 of 5 (IP Configure Start) complete. -05:51:48,228 INFO dhclient: Copyright 2004-2010 Internet Systems Consortium. -05:51:48,228 INFO dhclient: All rights reserved. -05:51:48,228 INFO dhclient: For info, please visit https://www.isc.org/software/dhcp/ -05:51:48,229 INFO dhclient: -05:51:48,232 INFO NetworkManager: (eth0): DHCPv4 state changed nbi -> preinit -05:51:48,238 INFO dhclient: Listening on LPF/eth0/00:0c:29:21:89:af -05:51:48,238 INFO dhclient: Sending on LPF/eth0/00:0c:29:21:89:af -05:51:48,238 INFO dhclient: Sending on Socket/fallback -05:51:48,238 INFO dhclient: DHCPDISCOVER on eth0 to 255.255.255.255 port 67 interval 7 (xid=0x4cbfa09c) -05:51:48,266 INFO dhclient: DHCPOFFER from 10.145.88.211 -05:51:48,267 INFO dhclient: DHCPREQUEST on eth0 to 255.255.255.255 port 67 (xid=0x4cbfa09c) -05:51:50,624 INFO dhclient: DHCPACK from 10.145.88.211 (xid=0x4cbfa09c) -05:51:50,627 INFO NetworkManager: (eth0): DHCPv4 state changed preinit -> bound -05:51:50,627 INFO NetworkManager: Activation (eth0) Stage 4 of 5 (IP4 Configure Get) scheduled... -05:51:50,627 INFO NetworkManager: Activation (eth0) Stage 4 of 5 (IP4 Configure Get) started... -05:51:50,627 INFO NetworkManager: address 10.145.88.106 -05:51:50,627 INFO NetworkManager: prefix 23 (255.255.254.0) -05:51:50,627 INFO NetworkManager: gateway 10.145.88.1 -05:51:50,627 INFO NetworkManager: hostname 'server1' -05:51:50,627 INFO NetworkManager: nameserver '10.145.88.211' -05:51:50,628 INFO NetworkManager: Activation (eth0) Stage 5 of 5 (IP Configure Commit) scheduled... -05:51:50,628 INFO NetworkManager: Activation (eth0) Stage 4 of 5 (IP4 Configure Get) complete. -05:51:50,628 INFO NetworkManager: Activation (eth0) Stage 5 of 5 (IP Configure Commit) started... -05:51:50,628 INFO dhclient: bound to 10.145.88.106 -- renewal in 10408 seconds. -05:51:51,629 INFO NetworkManager: (eth0): device state change: 7 -> 8 (reason 0) -05:51:51,629 INFO NetworkManager: Policy set 'System eth0' (eth0) as default for IPv4 routing and DNS. -05:51:51,630 INFO NetworkManager: Setting system hostname to 'server1' (from DHCPv4) -05:51:51,630 INFO NetworkManager: Activation (eth0) successful, device activated. -05:51:51,631 INFO NetworkManager: Activation (eth0) Stage 5 of 5 (IP Configure Commit) complete. -05:52:07,660 WARNING NetworkManager: error requesting auth for org.freedesktop.NetworkManager.enable-disable-network: (26) Remote Exception invoking org.freedesktop.PolicyKit1.Authority.CheckAuthorization() on /org/freedesktop/PolicyKit1/Authority at name org.freedesktop.PolicyKit1: org.freedesktop.DBus.Error.Spawn.ExecFailed: Cannot launch daemon, file not found or permissions invalid -05:52:07,660 WARNING NetworkManager: error requesting auth for org.freedesktop.NetworkManager.sleep-wake: (26) Remote Exception invoking org.freedesktop.PolicyKit1.Authority.CheckAuthorization() on /org/freedesktop/PolicyKit1/Authority at name org.freedesktop.PolicyKit1: org.freedesktop.DBus.Error.Spawn.ExecFailed: Cannot launch daemon, file not found or permissions invalid -05:52:07,660 WARNING NetworkManager: error requesting auth for org.freedesktop.NetworkManager.enable-disable-wifi: (26) Remote Exception invoking org.freedesktop.PolicyKit1.Authority.CheckAuthorization() on /org/freedesktop/PolicyKit1/Authority at name org.freedesktop.PolicyKit1: org.freedesktop.DBus.Error.Spawn.ExecFailed: Cannot launch daemon, file not found or permissions invalid -05:52:07,660 WARNING NetworkManager: error requesting auth for org.freedesktop.NetworkManager.enable-disable-wwan: (26) Remote Exception invoking org.freedesktop.PolicyKit1.Authority.CheckAuthorization() on /org/freedesktop/PolicyKit1/Authority at name org.freedesktop.PolicyKit1: org.freedesktop.DBus.Error.Spawn.ExecFailed: Cannot launch daemon, file not found or permissions invalid -05:52:07,660 WARNING NetworkManager: error requesting auth for org.freedesktop.NetworkManager.use-user-connections: (26) Remote Exception invoking org.freedesktop.PolicyKit1.Authority.CheckAuthorization() on /org/freedesktop/PolicyKit1/Authority at name org.freedesktop.PolicyKit1: org.freedesktop.DBus.Error.Spawn.ExecFailed: Cannot launch daemon, file not found or permissions invalid -05:52:07,660 WARNING NetworkManager: error requesting auth for org.freedesktop.NetworkManager.network-control: (26) Remote Exception invoking org.freedesktop.PolicyKit1.Authority.CheckAuthorization() on /org/freedesktop/PolicyKit1/Authority at name org.freedesktop.PolicyKit1: org.freedesktop.DBus.Error.Spawn.ExecFailed: Cannot launch daemon, file not found or permissions invalid -05:52:07,660 WARNING NetworkManager: error requesting auth for org.freedesktop.network-manager-settings.system.wifi.share.open: (26) Remote Exception invoking org.freedesktop.PolicyKit1.Authority.CheckAuthorization() on /org/freedesktop/PolicyKit1/Authority at name org.freedesktop.PolicyKit1: org.freedesktop.DBus.Error.Spawn.ExecFailed: Cannot launch daemon, file not found or permissions invalid -05:52:07,660 WARNING NetworkManager: error requesting auth for org.freedesktop.network-manager-settings.system.wifi.share.protected: (26) Remote Exception invoking org.freedesktop.PolicyKit1.Authority.CheckAuthorization() on /org/freedesktop/PolicyKit1/Authority at name org.freedesktop.PolicyKit1: org.freedesktop.DBus.Error.Spawn.ExecFailed: Cannot launch daemon, file not found or permissions invalid -05:52:47,362 NOTICE dbus-daemon: [system] Reloaded configuration -05:52:47,364 NOTICE dbus-daemon: [system] Reloaded configuration -05:52:47,512 DEBUG kernel:SELinux: 2048 avtab hash slots, 277800 rules. -05:52:47,588 DEBUG kernel:SELinux: 2048 avtab hash slots, 277800 rules. -05:52:48,083 DEBUG kernel:SELinux: 9 users, 12 roles, 3917 types, 217 bools, 1 sens, 1024 cats -05:52:48,083 DEBUG kernel:SELinux: 81 classes, 277800 rules -05:52:48,088 DEBUG kernel:SELinux: Completing initialization. -05:52:48,088 DEBUG kernel:SELinux: Setting up existing superblocks. -05:52:48,088 DEBUG kernel:SELinux: initialized (dev loop0, type squashfs), not configured for labeling -05:52:48,088 DEBUG kernel:SELinux: initialized (dev tmpfs, type tmpfs), uses transition SIDs -05:52:48,088 DEBUG kernel:SELinux: initialized (dev tmpfs, type tmpfs), uses transition SIDs -05:52:48,089 DEBUG kernel:SELinux: initialized (dev selinuxfs, type selinuxfs), uses genfs_contexts -05:52:48,089 DEBUG kernel:SELinux: initialized (dev mqueue, type mqueue), uses transition SIDs -05:52:48,089 DEBUG kernel:SELinux: initialized (dev hugetlbfs, type hugetlbfs), uses transition SIDs -05:52:48,089 DEBUG kernel:SELinux: initialized (dev devpts, type devpts), uses transition SIDs -05:52:48,089 DEBUG kernel:SELinux: initialized (dev inotifyfs, type inotifyfs), uses genfs_contexts -05:52:48,089 DEBUG kernel:SELinux: initialized (dev anon_inodefs, type anon_inodefs), uses genfs_contexts -05:52:48,089 DEBUG kernel:SELinux: initialized (dev pipefs, type pipefs), uses task SIDs -05:52:48,089 DEBUG kernel:SELinux: initialized (dev debugfs, type debugfs), uses genfs_contexts -05:52:48,090 DEBUG kernel:SELinux: initialized (dev sockfs, type sockfs), uses task SIDs -05:52:48,090 DEBUG kernel:SELinux: initialized (dev devtmpfs, type devtmpfs), uses transition SIDs -05:52:48,090 DEBUG kernel:SELinux: initialized (dev tmpfs, type tmpfs), uses transition SIDs -05:52:48,090 DEBUG kernel:SELinux: initialized (dev proc, type proc), uses genfs_contexts -05:52:48,090 DEBUG kernel:SELinux: initialized (dev bdev, type bdev), uses genfs_contexts -05:52:48,090 DEBUG kernel:SELinux: initialized (dev rootfs, type rootfs), uses genfs_contexts -05:52:48,090 DEBUG kernel:SELinux: initialized (dev sysfs, type sysfs), uses genfs_contexts -05:52:48,116 NOTICE kernel:type=1403 audit(1021096368.114:2): policy loaded auid=4294967295 ses=4294967295 -05:52:48,165 INFO kernel:md: raid0 personality registered for level 0 -05:52:48,172 INFO kernel:md: raid1 personality registered for level 1 -05:52:48,176 INFO kernel:async_tx: api initialized (async) -05:52:48,188 INFO kernel:xor: automatically using best checksumming function: generic_sse -05:52:48,191 INFO kernel: generic_sse: 9112.000 MB/sec -05:52:48,191 INFO kernel:xor: using function: generic_sse (9112.000 MB/sec) -05:52:48,212 WARNING kernel:raid6: sse2x1 5777 MB/s -05:52:48,229 WARNING kernel:raid6: sse2x2 7031 MB/s -05:52:48,247 WARNING kernel:raid6: sse2x4 7550 MB/s -05:52:48,247 WARNING kernel:raid6: using algorithm sse2x4 (7550 MB/s) -05:52:48,247 WARNING kernel:raid6: using ssse3x2 recovery algorithm -05:52:48,261 INFO kernel:md: raid6 personality registered for level 6 -05:52:48,261 INFO kernel:md: raid5 personality registered for level 5 -05:52:48,261 INFO kernel:md: raid4 personality registered for level 4 -05:52:48,273 INFO kernel:md: raid10 personality registered for level 10 -05:52:48,277 INFO kernel:md: linear personality registered for level -1 -05:52:48,290 INFO kernel:device-mapper: uevent: version 1.0.3 -05:52:48,291 INFO kernel:device-mapper: ioctl: 4.24.6-ioctl (2013-01-15) initialised: dm-devel@redhat.com -05:52:48,324 INFO kernel:device-mapper: multipath: version 1.5.0 loaded -05:52:48,328 INFO kernel:device-mapper: multipath round-robin: version 1.0.0 loaded -05:53:05,608 WARNING kernel:hpet1: lost 5 rtc interrupts -05:53:05,608 WARNING kernel:hpet1: lost 1 rtc interrupts -05:53:21,197 NOTICE kernel:sd 2:0:0:0: [sda] Cache data unavailable -05:53:21,197 ERR kernel:sd 2:0:0:0: [sda] Assuming drive cache: write through -05:53:21,238 INFO kernel: sda: sda1 sda2 -05:53:25,106 NOTICE kernel:sd 2:0:0:0: [sda] Cache data unavailable -05:53:25,106 ERR kernel:sd 2:0:0:0: [sda] Assuming drive cache: write through -05:53:25,117 INFO kernel: sda: sda1 -05:53:31,920 NOTICE kernel:sd 2:0:0:0: [sda] Cache data unavailable -05:53:31,920 ERR kernel:sd 2:0:0:0: [sda] Assuming drive cache: write through -05:53:31,962 INFO kernel: sda: -05:53:33,120 NOTICE kernel:sd 2:0:0:0: [sda] Cache data unavailable -05:53:33,120 ERR kernel:sd 2:0:0:0: [sda] Assuming drive cache: write through -05:53:33,120 INFO kernel: sda: sda1 -05:53:50,037 NOTICE kernel:sd 2:0:0:0: [sda] Cache data unavailable -05:53:50,037 ERR kernel:sd 2:0:0:0: [sda] Assuming drive cache: write through -05:53:50,037 INFO kernel: sda: sda1 sda2 -05:53:55,178 NOTICE kernel:sd 2:0:0:0: [sda] Cache data unavailable -05:53:55,178 ERR kernel:sd 2:0:0:0: [sda] Assuming drive cache: write through -05:53:55,211 INFO kernel: sda: sda1 sda2 sda3 -05:54:41,918 INFO kernel:Adding 3354616k swap on /dev/sda2. Priority:-1 extents:1 across:3354616k -05:54:42,441 INFO kernel:kjournald starting. Commit interval 5 seconds -05:54:42,489 INFO kernel:EXT3-fs (dm-0): using internal journal -05:54:42,489 INFO kernel:EXT3-fs (dm-0): mounted filesystem with ordered data mode -05:54:42,489 DEBUG kernel:SELinux: initialized (dev dm-0, type ext3), uses xattr -05:54:42,913 INFO kernel:kjournald starting. Commit interval 5 seconds -05:54:42,977 INFO kernel:EXT3-fs (sda1): using internal journal -05:54:42,977 INFO kernel:EXT3-fs (sda1): mounted filesystem with ordered data mode -05:54:42,977 DEBUG kernel:SELinux: initialized (dev sda1, type ext3), uses xattr -05:54:43,167 DEBUG kernel:SELinux: initialized (dev tmpfs, type tmpfs), uses transition SIDs -05:54:43,255 INFO kernel:kjournald starting. Commit interval 5 seconds -05:54:43,268 INFO kernel:EXT3-fs (dm-1): using internal journal -05:54:43,268 INFO kernel:EXT3-fs (dm-1): mounted filesystem with ordered data mode -05:54:43,268 DEBUG kernel:SELinux: initialized (dev dm-1, type ext3), uses xattr -05:54:43,657 INFO kernel:kjournald starting. Commit interval 5 seconds -05:54:43,719 INFO kernel:EXT3-fs (dm-2): using internal journal -05:54:43,719 INFO kernel:EXT3-fs (dm-2): mounted filesystem with ordered data mode -05:54:43,719 DEBUG kernel:SELinux: initialized (dev dm-2, type ext3), uses xattr -05:54:43,913 INFO kernel:kjournald starting. Commit interval 5 seconds -05:54:43,949 INFO kernel:EXT3-fs (dm-3): using internal journal -05:54:43,949 INFO kernel:EXT3-fs (dm-3): mounted filesystem with ordered data mode -05:54:43,949 DEBUG kernel:SELinux: initialized (dev dm-3, type ext3), uses xattr -05:55:08,095 DEBUG kernel:SELinux: initialized (dev usbfs, type usbfs), uses genfs_contexts -05:55:08,106 NOTICE NetworkManager: ifcfg-rh: updating /etc/sysconfig/network-scripts/ifcfg-eth3 -05:55:08,107 NOTICE NetworkManager: ifcfg-rh: updating /etc/sysconfig/network-scripts/ifcfg-eth2 -05:55:08,109 NOTICE NetworkManager: ifcfg-rh: updating /etc/sysconfig/network-scripts/ifcfg-eth1 -05:55:09,125 NOTICE NetworkManager: ifcfg-rh: updating /etc/sysconfig/network-scripts/ifcfg-eth3 -05:55:09,126 NOTICE NetworkManager: ifcfg-rh: updating /etc/sysconfig/network-scripts/ifcfg-eth2 -05:55:09,127 NOTICE NetworkManager: ifcfg-rh: updating /etc/sysconfig/network-scripts/ifcfg-eth1 -05:55:09,128 NOTICE NetworkManager: ifcfg-rh: updating /etc/sysconfig/network-scripts/ifcfg-eth0 -05:59:16,883 ERR kernel:INFO: task flush-253:0:1525 blocked for more than 120 seconds. -05:59:16,883 ERR kernel: Not tainted 2.6.32-431.el6.x86_64 #1 -05:59:16,883 ERR kernel:"echo 0 > /proc/sys/kernel/hung_task_timeout_secs" disables this message. -05:59:16,883 INFO kernel:flush-253:0 D 0000000000000000 0 1525 2 0x00000080 -05:59:16,883 WARNING kernel: ffff8800592df6e0 0000000000000046 0000000000000000 ffff880079226080 -05:59:16,883 WARNING kernel: 0000000000000001 ffff880064ed8e40 ffff880079226080 ffff880079269dd0 -05:59:16,883 WARNING kernel: ffff880079226638 ffff8800592dffd8 000000000000fbc8 ffff880079226638 -05:59:16,883 WARNING kernel:Call Trace: -05:59:16,883 WARNING kernel: [] io_schedule+0x73/0xc0 -05:59:16,883 WARNING kernel: [] get_request_wait+0x108/0x1d0 -05:59:16,883 WARNING kernel: [] ? autoremove_wake_function+0x0/0x40 -05:59:16,883 WARNING kernel: [] ? elv_merge+0x17e/0x1c0 -05:59:16,883 WARNING kernel: [] blk_queue_bio+0x99/0x620 -05:59:16,883 WARNING kernel: [] generic_make_request+0x240/0x5a0 -05:59:16,883 WARNING kernel: [] ? mempool_alloc_slab+0x15/0x20 -05:59:16,883 WARNING kernel: [] submit_bio+0x70/0x120 -05:59:16,883 WARNING kernel: [] submit_bh+0x11d/0x1f0 -05:59:16,883 WARNING kernel: [] __block_write_full_page+0x1c8/0x330 -05:59:16,883 WARNING kernel: [] ? end_buffer_async_write+0x0/0x190 -05:59:16,883 WARNING kernel: [] ? blkdev_get_block+0x0/0x20 -05:59:16,883 WARNING kernel: [] ? blkdev_get_block+0x0/0x20 -05:59:16,883 WARNING kernel: [] block_write_full_page_endio+0xe0/0x120 -05:59:16,883 WARNING kernel: [] ? find_get_pages_tag+0x40/0x130 -05:59:16,883 WARNING kernel: [] block_write_full_page+0x15/0x20 -05:59:16,883 WARNING kernel: [] blkdev_writepage+0x18/0x20 -05:59:16,883 WARNING kernel: [] __writepage+0x17/0x40 -05:59:16,883 WARNING kernel: [] write_cache_pages+0x1fd/0x4c0 -05:59:16,883 WARNING kernel: [] ? __writepage+0x0/0x40 -05:59:16,883 WARNING kernel: [] generic_writepages+0x24/0x30 -05:59:16,883 WARNING kernel: [] do_writepages+0x21/0x40 -05:59:16,883 WARNING kernel: [] writeback_single_inode+0xdd/0x290 -05:59:16,883 WARNING kernel: [] writeback_sb_inodes+0xbd/0x170 -05:59:16,883 WARNING kernel: [] writeback_inodes_wb+0xab/0x1b0 -05:59:16,883 WARNING kernel: [] wb_writeback+0x2f3/0x410 -05:59:16,883 WARNING kernel: [] ? thread_return+0x4e/0x76e -05:59:16,883 WARNING kernel: [] ? del_timer_sync+0x22/0x30 -05:59:16,883 WARNING kernel: [] wb_do_writeback+0x1a5/0x240 -05:59:16,883 WARNING kernel: [] bdi_writeback_task+0x63/0x1b0 -05:59:16,883 WARNING kernel: [] ? bit_waitqueue+0x17/0xd0 -05:59:16,883 WARNING kernel: [] ? bdi_start_fn+0x0/0x100 -05:59:16,883 WARNING kernel: [] bdi_start_fn+0x86/0x100 -05:59:16,883 WARNING kernel: [] ? bdi_start_fn+0x0/0x100 -05:59:16,883 WARNING kernel: [] kthread+0x96/0xa0 -05:59:16,883 WARNING kernel: [] child_rip+0xa/0x20 -05:59:16,883 WARNING kernel: [] ? kthread+0x0/0xa0 -05:59:16,883 WARNING kernel: [] ? child_rip+0x0/0x20 -05:59:16,883 ERR kernel:INFO: task flush-253:3:1622 blocked for more than 120 seconds. -05:59:16,883 ERR kernel: Not tainted 2.6.32-431.el6.x86_64 #1 -05:59:16,883 ERR kernel:"echo 0 > /proc/sys/kernel/hung_task_timeout_secs" disables this message. -05:59:16,883 INFO kernel:flush-253:3 D 0000000000000001 0 1622 2 0x00000080 -05:59:16,883 WARNING kernel: ffff88005a5636e0 0000000000000046 0000000000000000 ffff8800790e6ae0 -05:59:16,883 WARNING kernel: 0000000000000001 ffff8800615bc080 ffff8800790e6ae0 ffff880079269dd0 -05:59:16,883 WARNING kernel: ffff8800790e7098 ffff88005a563fd8 000000000000fbc8 ffff8800790e7098 -05:59:16,883 WARNING kernel:Call Trace: -05:59:16,883 WARNING kernel: [] io_schedule+0x73/0xc0 -05:59:16,883 WARNING kernel: [] get_request_wait+0x108/0x1d0 -05:59:16,883 WARNING kernel: [] ? autoremove_wake_function+0x0/0x40 -05:59:16,883 WARNING kernel: [] ? elv_merge+0x17e/0x1c0 -05:59:16,883 WARNING kernel: [] blk_queue_bio+0x99/0x620 -05:59:16,883 WARNING kernel: [] ? read_tsc+0x9/0x20 -05:59:16,883 WARNING kernel: [] generic_make_request+0x240/0x5a0 -05:59:16,883 WARNING kernel: [] ? mempool_alloc_slab+0x15/0x20 -05:59:16,883 WARNING kernel: [] ? __dec_zone_page_state+0x2e/0x30 -05:59:16,883 WARNING kernel: [] submit_bio+0x70/0x120 -05:59:16,883 WARNING kernel: [] submit_bh+0x11d/0x1f0 -05:59:16,883 WARNING kernel: [] __block_write_full_page+0x1c8/0x330 -05:59:16,883 WARNING kernel: [] ? end_buffer_async_write+0x0/0x190 -05:59:16,883 WARNING kernel: [] ? blkdev_get_block+0x0/0x20 -05:59:16,883 WARNING kernel: [] ? blkdev_get_block+0x0/0x20 -05:59:16,883 WARNING kernel: [] block_write_full_page_endio+0xe0/0x120 -05:59:16,883 WARNING kernel: [] ? find_get_pages_tag+0x40/0x130 -05:59:16,883 WARNING kernel: [] block_write_full_page+0x15/0x20 -05:59:16,883 WARNING kernel: [] blkdev_writepage+0x18/0x20 -05:59:16,883 WARNING kernel: [] __writepage+0x17/0x40 -05:59:16,883 WARNING kernel: [] write_cache_pages+0x1fd/0x4c0 -05:59:16,883 WARNING kernel: [] ? __writepage+0x0/0x40 -05:59:16,883 WARNING kernel: [] generic_writepages+0x24/0x30 -05:59:16,883 WARNING kernel: [] do_writepages+0x21/0x40 -05:59:16,883 WARNING kernel: [] writeback_single_inode+0xdd/0x290 -05:59:16,883 WARNING kernel: [] writeback_sb_inodes+0xbd/0x170 -05:59:16,883 WARNING kernel: [] writeback_inodes_wb+0xab/0x1b0 -05:59:16,883 WARNING kernel: [] wb_writeback+0x2f3/0x410 -05:59:16,883 WARNING kernel: [] ? thread_return+0x4e/0x76e -05:59:16,883 WARNING kernel: [] ? del_timer_sync+0x22/0x30 -05:59:16,883 WARNING kernel: [] wb_do_writeback+0x1a5/0x240 -05:59:16,883 WARNING kernel: [] bdi_writeback_task+0x63/0x1b0 -05:59:16,883 WARNING kernel: [] ? bit_waitqueue+0x17/0xd0 -05:59:16,883 WARNING kernel: [] ? bdi_start_fn+0x0/0x100 -05:59:16,883 WARNING kernel: [] bdi_start_fn+0x86/0x100 -05:59:16,883 WARNING kernel: [] ? bdi_start_fn+0x0/0x100 -05:59:16,883 WARNING kernel: [] kthread+0x96/0xa0 -05:59:16,883 WARNING kernel: [] child_rip+0xa/0x20 -05:59:16,883 WARNING kernel: [] ? kthread+0x0/0xa0 -05:59:16,883 WARNING kernel: [] ? child_rip+0x0/0x20 -06:11:26,657 DEBUG kernel:SELinux: 2048 avtab hash slots, 277800 rules. -06:11:26,705 DEBUG kernel:SELinux: 2048 avtab hash slots, 277800 rules. -06:11:27,220 DEBUG kernel:SELinux: 9 users, 12 roles, 3917 types, 217 bools, 1 sens, 1024 cats -06:11:27,220 DEBUG kernel:SELinux: 81 classes, 277800 rules diff --git a/compass/tests/actions/update_progress/data/test2/anamon/checkpoint_2/server2.1/anaconda.log.template b/compass/tests/actions/update_progress/data/test2/anamon/checkpoint_2/server2.1/anaconda.log.template deleted file mode 100644 index 39ab3f27..00000000 --- a/compass/tests/actions/update_progress/data/test2/anamon/checkpoint_2/server2.1/anaconda.log.template +++ /dev/null @@ -1,222 +0,0 @@ -05:50:22,531 INFO : kernel command line: initrd=/images/CentOS-6.5-x86_64/initrd.img ksdevice=bootif lang= kssendmac text ks=http://10.145.88.211/cblr/svc/op/ks/system/server2.1 BOOT_IMAGE=/images/CentOS-6.5-x86_64/vmlinuz BOOTIF=01-00-0c-29-5c-6a-b8 - -05:50:22,531 INFO : text mode forced from cmdline -05:50:22,531 DEBUG : readNetInfo /tmp/s390net not found, early return -05:50:22,531 INFO : anaconda version 13.21.215 on x86_64 starting -05:50:22,649 DEBUG : Saving module ipv6 -05:50:22,649 DEBUG : Saving module iscsi_ibft -05:50:22,649 DEBUG : Saving module iscsi_boot_sysfs -05:50:22,649 DEBUG : Saving module pcspkr -05:50:22,649 DEBUG : Saving module edd -05:50:22,649 DEBUG : Saving module floppy -05:50:22,649 DEBUG : Saving module iscsi_tcp -05:50:22,649 DEBUG : Saving module libiscsi_tcp -05:50:22,649 DEBUG : Saving module libiscsi -05:50:22,649 DEBUG : Saving module scsi_transport_iscsi -05:50:22,649 DEBUG : Saving module squashfs -05:50:22,649 DEBUG : Saving module cramfs -05:50:22,649 DEBUG : probing buses -05:50:22,673 DEBUG : waiting for hardware to initialize -05:50:28,619 DEBUG : probing buses -05:50:28,644 DEBUG : waiting for hardware to initialize -05:50:32,015 INFO : getting kickstart file -05:50:32,022 INFO : eth0 has link, using it -05:50:32,033 INFO : doing kickstart... setting it up -05:50:32,034 DEBUG : activating device eth0 -05:50:40,048 INFO : wait_for_iface_activation (2502): device eth0 activated -05:50:40,048 INFO : file location: http://10.145.88.211/cblr/svc/op/ks/system/server2.1 -05:50:40,049 INFO : transferring http://10.145.88.211/cblr/svc/op/ks/system/server2.1 -05:50:40,134 INFO : setting up kickstart -05:50:40,134 INFO : kickstart forcing text mode -05:50:40,134 INFO : kickstartFromUrl -05:50:40,134 INFO : results of url ks, url http://10.145.88.211/cblr/links/CentOS-6.5-x86_64 -05:50:40,135 INFO : trying to mount CD device /dev/sr0 on /mnt/stage2 -05:50:40,137 INFO : drive status is CDS_TRAY_OPEN -05:50:40,137 ERROR : Drive tray reports open when it should be closed -05:50:55,155 INFO : no stage2= given, assuming http://10.145.88.211/cblr/links/CentOS-6.5-x86_64/images/install.img -05:50:55,156 DEBUG : going to set language to en_US.UTF-8 -05:50:55,156 INFO : setting language to en_US.UTF-8 -05:50:55,169 INFO : starting STEP_METHOD -05:50:55,169 DEBUG : loaderData->method is set, adding skipMethodDialog -05:50:55,169 DEBUG : skipMethodDialog is set -05:50:55,176 INFO : starting STEP_STAGE2 -05:50:55,176 INFO : URL_STAGE_MAIN: url is http://10.145.88.211/cblr/links/CentOS-6.5-x86_64/images/install.img -05:50:55,176 INFO : transferring http://10.145.88.211/cblr/links/CentOS-6.5-x86_64/images/updates.img -05:50:56,174 ERROR : failed to mount loopback device /dev/loop7 on /tmp/update-disk as /tmp/updates-disk.img: (null) -05:50:56,175 ERROR : Error mounting /dev/loop7 on /tmp/update-disk: No such file or directory -05:50:56,175 INFO : transferring http://10.145.88.211/cblr/links/CentOS-6.5-x86_64/images/product.img -05:50:57,459 ERROR : Error downloading http://10.145.88.211/cblr/links/CentOS-6.5-x86_64/images/product.img: HTTP response code said error -05:50:57,459 INFO : transferring http://10.145.88.211/cblr/links/CentOS-6.5-x86_64/images/install.img -05:51:46,964 INFO : mounted loopback device /mnt/runtime on /dev/loop0 as /tmp/install.img -05:51:46,964 INFO : got stage2 at url http://10.145.88.211/cblr/links/CentOS-6.5-x86_64/images/install.img -05:51:47,009 INFO : Loading SELinux policy -05:51:47,753 INFO : getting ready to spawn shell now -05:51:47,973 INFO : Running anaconda script /usr/bin/anaconda -05:51:52,842 INFO : CentOS Linux is the highest priority installclass, using it -05:51:52,887 WARNING : /usr/lib/python2.6/site-packages/pykickstart/parser.py:713: DeprecationWarning: Script does not end with %end. This syntax has been deprecated. It may be removed from future releases, which will result in a fatal error from kickstart. Please modify your kickstart file to use this updated syntax. - warnings.warn(_("%s does not end with %%end. This syntax has been deprecated. It may be removed from future releases, which will result in a fatal error from kickstart. Please modify your kickstart file to use this updated syntax.") % _("Script"), DeprecationWarning) - -05:51:52,888 INFO : Running kickstart %%pre script(s) -05:51:52,888 WARNING : '/bin/sh' specified as full path -05:51:54,265 INFO : All kickstart %%pre script(s) have been run -05:51:54,314 INFO : ISCSID is /usr/sbin/iscsid -05:51:54,314 INFO : no initiator set -05:51:54,416 WARNING : '/usr/libexec/fcoe/fcoe_edd.sh' specified as full path -05:51:54,425 INFO : No FCoE EDD info found: No FCoE boot disk information is found in EDD! - -05:51:54,425 INFO : no /etc/zfcp.conf; not configuring zfcp -05:51:59,033 INFO : created new libuser.conf at /tmp/libuser.KyLOeb with instPath="/mnt/sysimage" -05:51:59,033 INFO : anaconda called with cmdline = ['/usr/bin/anaconda', '--stage2', 'http://10.145.88.211/cblr/links/CentOS-6.5-x86_64/images/install.img', '--kickstart', '/tmp/ks.cfg', '-T', '--selinux', '--lang', 'en_US', '--keymap', 'us', '--repo', 'http://10.145.88.211/cblr/links/CentOS-6.5-x86_64'] -05:51:59,033 INFO : Display mode = t -05:51:59,034 INFO : Default encoding = utf-8 -05:51:59,193 INFO : Detected 2016M of memory -05:51:59,193 INFO : Swap attempt of 4032M -05:51:59,528 INFO : ISCSID is /usr/sbin/iscsid -05:51:59,528 INFO : no initiator set -05:52:00,372 INFO : setting installation environment hostname to server2 -05:52:00,415 WARNING : Timezone US/Pacific set in kickstart is not valid. -05:52:00,541 INFO : Detected 2016M of memory -05:52:00,541 INFO : Suggested swap size (4032 M) exceeds 10 % of disk space, using 10 % of disk space (3276 M) instead. -05:52:00,541 INFO : Swap attempt of 3276M -05:52:00,698 WARNING : step installtype does not exist -05:52:00,699 WARNING : step confirminstall does not exist -05:52:00,699 WARNING : step complete does not exist -05:52:00,699 WARNING : step complete does not exist -05:52:00,699 WARNING : step complete does not exist -05:52:00,699 WARNING : step complete does not exist -05:52:00,700 WARNING : step complete does not exist -05:52:00,700 WARNING : step complete does not exist -05:52:00,700 WARNING : step complete does not exist -05:52:00,700 WARNING : step complete does not exist -05:52:00,700 WARNING : step complete does not exist -05:52:00,700 WARNING : step complete does not exist -05:52:00,701 WARNING : step complete does not exist -05:52:00,701 WARNING : step complete does not exist -05:52:00,701 WARNING : step complete does not exist -05:52:00,701 WARNING : step complete does not exist -05:52:00,701 WARNING : step complete does not exist -05:52:00,702 INFO : moving (1) to step setuptime -05:52:00,702 DEBUG : setuptime is a direct step -22:52:00,703 WARNING : '/usr/sbin/hwclock' specified as full path -22:52:02,003 INFO : leaving (1) step setuptime -22:52:02,003 INFO : moving (1) to step autopartitionexecute -22:52:02,003 DEBUG : autopartitionexecute is a direct step -22:52:02,141 INFO : leaving (1) step autopartitionexecute -22:52:02,141 INFO : moving (1) to step storagedone -22:52:02,141 DEBUG : storagedone is a direct step -22:52:02,142 INFO : leaving (1) step storagedone -22:52:02,142 INFO : moving (1) to step enablefilesystems -22:52:02,142 DEBUG : enablefilesystems is a direct step -22:52:08,928 DEBUG : notifying kernel of 'change' event on device /sys/class/block/sda1 -22:52:12,407 DEBUG : notifying kernel of 'change' event on device /sys/class/block/sda3 -22:52:25,536 DEBUG : notifying kernel of 'change' event on device /sys/class/block/dm-0 -22:52:30,102 DEBUG : notifying kernel of 'change' event on device /sys/class/block/dm-1 -22:52:35,181 DEBUG : notifying kernel of 'change' event on device /sys/class/block/dm-2 -22:52:40,809 DEBUG : notifying kernel of 'change' event on device /sys/class/block/dm-3 -22:52:44,576 INFO : failed to set SELinux context for /mnt/sysimage: [Errno 95] Operation not supported -22:52:44,576 DEBUG : isys.py:mount()- going to mount /dev/mapper/server2-rootvol on /mnt/sysimage as ext3 with options defaults -22:52:45,082 DEBUG : isys.py:mount()- going to mount /dev/sda1 on /mnt/sysimage/boot as ext3 with options defaults -22:52:45,230 DEBUG : isys.py:mount()- going to mount //dev on /mnt/sysimage/dev as bind with options defaults,bind -22:52:45,240 DEBUG : isys.py:mount()- going to mount devpts on /mnt/sysimage/dev/pts as devpts with options gid=5,mode=620 -22:52:45,247 DEBUG : isys.py:mount()- going to mount tmpfs on /mnt/sysimage/dev/shm as tmpfs with options defaults -22:52:45,333 DEBUG : isys.py:mount()- going to mount /dev/mapper/server2-homevol on /mnt/sysimage/home as ext3 with options defaults -22:52:45,482 INFO : failed to get default SELinux context for /proc: [Errno 2] No such file or directory -22:52:45,483 DEBUG : isys.py:mount()- going to mount proc on /mnt/sysimage/proc as proc with options defaults -22:52:45,487 INFO : failed to get default SELinux context for /proc: [Errno 2] No such file or directory -22:52:45,534 DEBUG : isys.py:mount()- going to mount sysfs on /mnt/sysimage/sys as sysfs with options defaults -22:52:45,571 DEBUG : isys.py:mount()- going to mount /dev/mapper/server2-tmpvol on /mnt/sysimage/tmp as ext3 with options defaults -22:52:45,795 DEBUG : isys.py:mount()- going to mount /dev/mapper/server2-varvol on /mnt/sysimage/var as ext3 with options defaults -22:52:45,955 INFO : leaving (1) step enablefilesystems -22:52:45,955 INFO : moving (1) to step bootloadersetup -22:52:45,956 DEBUG : bootloadersetup is a direct step -22:52:45,960 INFO : leaving (1) step bootloadersetup -22:52:45,960 INFO : moving (1) to step reposetup -22:52:45,960 DEBUG : reposetup is a direct step -22:52:47,076 ERROR : Error downloading treeinfo file: [Errno 14] PYCURL ERROR 22 - "The requested URL returned error: 404 Not Found" -22:52:47,077 INFO : added repository ppa_repo with URL http://10.145.88.211:80/cobbler/repo_mirror/ppa_repo/ -22:52:47,296 DEBUG : Grabbing http://10.145.88.211/cblr/links/CentOS-6.5-x86_64/repodata/repomd.xml -22:52:47,358 DEBUG : Grabbing http://10.145.88.211/cblr/links/CentOS-6.5-x86_64/repodata/0e371b19e547b9d7a7e8acc4b8c0c7c074509d33653cfaef9e8f4fd1d62d95de-primary.sqlite.bz2 -22:52:47,499 DEBUG : Grabbing http://10.145.88.211/cblr/links/CentOS-6.5-x86_64/repodata/34bae2d3c9c78e04ed2429923bc095005af1b166d1a354422c4c04274bae0f59-c6-minimal-x86_64.xml -22:52:47,629 INFO : leaving (1) step reposetup -22:52:47,629 INFO : moving (1) to step basepkgsel -22:52:47,629 DEBUG : basepkgsel is a direct step -22:52:47,645 WARNING : not adding Base group -22:52:48,052 INFO : leaving (1) step basepkgsel -22:52:48,053 INFO : moving (1) to step postselection -22:52:48,053 DEBUG : postselection is a direct step -22:52:48,056 INFO : selected kernel package for kernel -22:52:48,521 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/fs/ext3/ext3.ko.gz -22:52:48,521 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/fs/jbd/jbd.ko.gz -22:52:48,521 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/fs/mbcache.ko.gz -22:52:48,521 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/scsi/fcoe/fcoe.ko.gz -22:52:48,521 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/scsi/fcoe/libfcoe.ko.gz -22:52:48,521 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/scsi/libfc/libfc.ko.gz -22:52:48,521 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/scsi/scsi_transport_fc.ko.gz -22:52:48,521 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/scsi/scsi_tgt.ko.gz -22:52:48,521 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/crypto/xts.ko.gz -22:52:48,521 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/crypto/lrw.ko.gz -22:52:48,522 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/crypto/gf128mul.ko.gz -22:52:48,522 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/crypto/sha256_generic.ko.gz -22:52:48,522 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/crypto/cbc.ko.gz -22:52:48,522 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/md/dm-raid.ko.gz -22:52:48,522 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/md/dm-crypt.ko.gz -22:52:48,522 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/md/dm-round-robin.ko.gz -22:52:48,522 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/md/dm-multipath.ko.gz -22:52:48,522 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/md/dm-snapshot.ko.gz -22:52:48,522 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/md/dm-mirror.ko.gz -22:52:48,522 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/md/dm-region-hash.ko.gz -22:52:48,523 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/md/dm-log.ko.gz -22:52:48,523 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/md/dm-zero.ko.gz -22:52:48,523 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/md/dm-mod.ko.gz -22:52:48,523 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/md/linear.ko.gz -22:52:48,523 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/md/raid10.ko.gz -22:52:48,523 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/md/raid456.ko.gz -22:52:48,523 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/crypto/async_tx/async_raid6_recov.ko.gz -22:52:48,523 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/crypto/async_tx/async_pq.ko.gz -22:52:48,523 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/lib/raid6/raid6_pq.ko.gz -22:52:48,523 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/crypto/async_tx/async_xor.ko.gz -22:52:48,523 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/crypto/xor.ko.gz -22:52:48,524 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/crypto/async_tx/async_memcpy.ko.gz -22:52:48,524 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/crypto/async_tx/async_tx.ko.gz -22:52:48,524 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/md/raid1.ko.gz -22:52:48,524 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/md/raid0.ko.gz -22:52:48,524 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/net/8021q/8021q.ko.gz -22:52:48,524 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/net/802/garp.ko.gz -22:52:48,524 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/net/802/stp.ko.gz -22:52:48,524 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/net/llc/llc.ko.gz -22:52:48,524 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/infiniband/hw/mlx4/mlx4_ib.ko.gz -22:52:48,524 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/net/mlx4/mlx4_en.ko.gz -22:52:48,524 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/net/mlx4/mlx4_core.ko.gz -22:52:48,525 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/infiniband/ulp/ipoib/ib_ipoib.ko.gz -22:52:48,525 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/infiniband/core/ib_cm.ko.gz -22:52:48,525 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/infiniband/core/ib_sa.ko.gz -22:52:48,525 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/infiniband/core/ib_mad.ko.gz -22:52:48,525 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/infiniband/core/ib_core.ko.gz -22:52:48,525 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/scsi/sg.ko.gz -22:52:48,525 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/scsi/sd_mod.ko.gz -22:52:48,525 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/lib/crc-t10dif.ko.gz -22:52:48,525 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/net/e1000/e1000.ko.gz -22:52:48,525 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/scsi/sr_mod.ko.gz -22:52:48,526 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/cdrom/cdrom.ko.gz -22:52:48,526 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/misc/vmware_balloon.ko.gz -22:52:48,526 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/message/fusion/mptspi.ko.gz -22:52:48,526 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/message/fusion/mptscsih.ko.gz -22:52:48,526 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/message/fusion/mptbase.ko.gz -22:52:48,526 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/scsi/scsi_transport_spi.ko.gz -22:52:48,526 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/ata/pata_acpi.ko.gz -22:52:48,526 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/ata/ata_generic.ko.gz -22:52:48,526 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/ata/ata_piix.ko.gz -22:52:48,526 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/net/ipv6/ipv6.ko.gz -22:52:48,526 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/firmware/iscsi_ibft.ko.gz -22:52:48,527 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/scsi/iscsi_boot_sysfs.ko.gz -22:52:48,527 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/input/misc/pcspkr.ko.gz -22:52:48,527 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/firmware/edd.ko.gz -22:52:48,527 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/block/floppy.ko.gz -22:52:48,527 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/scsi/iscsi_tcp.ko.gz -22:52:48,527 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/scsi/libiscsi_tcp.ko.gz -22:52:48,527 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/scsi/libiscsi.ko.gz -22:52:48,527 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/scsi/scsi_transport_iscsi.ko.gz -22:52:48,527 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/fs/squashfs/squashfs.ko.gz -22:52:48,527 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/fs/cramfs/cramfs.ko.gz -22:52:53,656 INFO : leaving (1) step postselection -22:52:53,657 INFO : moving (1) to step install diff --git a/compass/tests/actions/update_progress/data/test2/anamon/checkpoint_2/server2.1/sys.log.template b/compass/tests/actions/update_progress/data/test2/anamon/checkpoint_2/server2.1/sys.log.template deleted file mode 100644 index 1fbb5602..00000000 --- a/compass/tests/actions/update_progress/data/test2/anamon/checkpoint_2/server2.1/sys.log.template +++ /dev/null @@ -1,1628 +0,0 @@ -05:50:20,517 INFO kernel:imklog 5.8.10, log source = /proc/kmsg started. -05:50:20,517 INFO rsyslogd: [origin software="rsyslogd" swVersion="5.8.10" x-pid="68" x-info="http://www.rsyslog.com"] start -05:50:20,517 INFO kernel:Initializing cgroup subsys cpuset -05:50:20,517 INFO kernel:Initializing cgroup subsys cpu -05:50:20,517 NOTICE kernel:Linux version 2.6.32-431.el6.x86_64 (mockbuild@c6b8.bsys.dev.centos.org) (gcc version 4.4.7 20120313 (Red Hat 4.4.7-4) (GCC) ) #1 SMP Fri Nov 22 03:15:09 UTC 2013 -05:50:20,517 INFO kernel:Command line: initrd=/images/CentOS-6.5-x86_64/initrd.img ksdevice=bootif lang= kssendmac text ks=http://10.145.88.211/cblr/svc/op/ks/system/server2.1 BOOT_IMAGE=/images/CentOS-6.5-x86_64/vmlinuz BOOTIF=01-00-0c-29-5c-6a-b8 -05:50:20,517 INFO kernel:KERNEL supported cpus: -05:50:20,517 INFO kernel: Intel GenuineIntel -05:50:20,517 INFO kernel: AMD AuthenticAMD -05:50:20,517 INFO kernel: Centaur CentaurHauls -05:50:20,517 INFO kernel:Disabled fast string operations -05:50:20,517 INFO kernel:BIOS-provided physical RAM map: -05:50:20,517 INFO kernel: BIOS-e820: 0000000000000000 - 000000000009f400 (usable) -05:50:20,517 INFO kernel: BIOS-e820: 000000000009f400 - 00000000000a0000 (reserved) -05:50:20,517 INFO kernel: BIOS-e820: 00000000000ca000 - 00000000000cc000 (reserved) -05:50:20,517 INFO kernel: BIOS-e820: 00000000000dc000 - 0000000000100000 (reserved) -05:50:20,517 INFO kernel: BIOS-e820: 0000000000100000 - 000000007fef0000 (usable) -05:50:20,517 INFO kernel: BIOS-e820: 000000007fef0000 - 000000007feff000 (ACPI data) -05:50:20,517 INFO kernel: BIOS-e820: 000000007feff000 - 000000007ff00000 (ACPI NVS) -05:50:20,517 INFO kernel: BIOS-e820: 000000007ff00000 - 0000000080000000 (usable) -05:50:20,517 INFO kernel: BIOS-e820: 00000000e0000000 - 00000000f0000000 (reserved) -05:50:20,517 INFO kernel: BIOS-e820: 00000000fec00000 - 00000000fec10000 (reserved) -05:50:20,517 INFO kernel: BIOS-e820: 00000000fee00000 - 00000000fee01000 (reserved) -05:50:20,517 INFO kernel: BIOS-e820: 00000000fffe0000 - 0000000100000000 (reserved) -05:50:20,517 INFO kernel:DMI present. -05:50:20,517 WARNING kernel:SMBIOS version 2.4 @ 0xF68F0 -05:50:20,517 DEBUG kernel:DMI: VMware, Inc. VMware Virtual Platform/440BX Desktop Reference Platform, BIOS 6.00 01/07/2011 -05:50:20,517 NOTICE kernel:Phoenix BIOS detected: BIOS may corrupt low RAM, working around it. -05:50:20,517 DEBUG kernel:e820 update range: 0000000000000000 - 0000000000010000 (usable) ==> (reserved) -05:50:20,517 INFO kernel:Hypervisor detected: VMware -05:50:20,517 DEBUG kernel:e820 update range: 0000000000000000 - 0000000000001000 (usable) ==> (reserved) -05:50:20,517 DEBUG kernel:e820 remove range: 00000000000a0000 - 0000000000100000 (usable) -05:50:20,517 INFO kernel:last_pfn = 0x80000 max_arch_pfn = 0x400000000 -05:50:20,517 DEBUG kernel:MTRR default type: uncachable -05:50:20,517 DEBUG kernel:MTRR fixed ranges enabled: -05:50:20,517 DEBUG kernel: 00000-9FFFF write-back -05:50:20,517 DEBUG kernel: A0000-BFFFF uncachable -05:50:20,517 DEBUG kernel: C0000-CFFFF write-protect -05:50:20,517 DEBUG kernel: D0000-EFFFF uncachable -05:50:20,517 DEBUG kernel: F0000-FFFFF write-protect -05:50:20,517 DEBUG kernel:MTRR variable ranges enabled: -05:50:20,517 DEBUG kernel: 0 base 0000000000 mask FF80000000 write-back -05:50:20,517 DEBUG kernel: 1 disabled -05:50:20,517 DEBUG kernel: 2 disabled -05:50:20,517 DEBUG kernel: 3 disabled -05:50:20,517 DEBUG kernel: 4 disabled -05:50:20,517 DEBUG kernel: 5 disabled -05:50:20,517 DEBUG kernel: 6 disabled -05:50:20,517 DEBUG kernel: 7 disabled -05:50:20,517 INFO kernel:x86 PAT enabled: cpu 0, old 0x0, new 0x7010600070106 -05:50:20,517 DEBUG kernel:initial memory mapped : 0 - 20000000 -05:50:20,517 INFO kernel:init_memory_mapping: 0000000000000000-0000000080000000 -05:50:20,517 DEBUG kernel: 0000000000 - 0080000000 page 2M -05:50:20,517 DEBUG kernel:kernel direct mapping tables up to 80000000 @ 10000-13000 -05:50:20,517 INFO kernel:RAMDISK: 7def9000 - 7fecf4ff -05:50:20,517 WARNING kernel:ACPI: RSDP 00000000000f6940 00024 (v02 PTLTD ) -05:50:20,517 WARNING kernel:ACPI: XSDT 000000007fef0333 00054 (v01 INTEL 440BX 06040000 VMW 01324272) -05:50:20,517 WARNING kernel:ACPI: FACP 000000007fefee98 000F4 (v04 INTEL 440BX 06040000 PTL 000F4240) -05:50:20,517 WARNING kernel:ACPI: DSDT 000000007fef055d 0E93B (v01 PTLTD Custom 06040000 MSFT 03000001) -05:50:20,517 WARNING kernel:ACPI: FACS 000000007fefffc0 00040 -05:50:20,517 WARNING kernel:ACPI: BOOT 000000007fef0535 00028 (v01 PTLTD $SBFTBL$ 06040000 LTP 00000001) -05:50:20,517 WARNING kernel:ACPI: APIC 000000007fef04d7 0005E (v01 PTLTD ? APIC 06040000 LTP 00000000) -05:50:20,517 WARNING kernel:ACPI: MCFG 000000007fef049b 0003C (v01 PTLTD $PCITBL$ 06040000 LTP 00000001) -05:50:20,517 WARNING kernel:ACPI: SRAT 000000007fef03fb 000A0 (v02 VMWARE MEMPLUG 06040000 VMW 00000001) -05:50:20,517 WARNING kernel:ACPI: HPET 000000007fef03c3 00038 (v01 VMWARE VMW HPET 06040000 WMV 00000001) -05:50:20,517 DEBUG kernel:ACPI: Local APIC address 0xfee00000 -05:50:20,517 INFO kernel:Setting APIC routing to flat. -05:50:20,517 INFO kernel:SRAT: PXM 0 -> APIC 0 -> Node 0 -05:50:20,517 INFO kernel:SRAT: PXM 0 -> APIC 1 -> Node 0 -05:50:20,517 INFO kernel:SRAT: Node 0 PXM 0 0-a0000 -05:50:20,517 INFO kernel:SRAT: Node 0 PXM 0 100000-80000000 -05:50:20,517 DEBUG kernel:NUMA: Allocated memnodemap from 11000 - 12040 -05:50:20,517 DEBUG kernel:NUMA: Using 20 for the hash shift. -05:50:20,517 INFO kernel:Bootmem setup node 0 0000000000000000-0000000080000000 -05:50:20,517 INFO kernel: NODE_DATA [0000000000012040 - 000000000004603f] -05:50:20,517 INFO kernel: bootmap [0000000000047000 - 0000000000056fff] pages 10 -05:50:20,517 INFO kernel:(8 early reservations) ==> bootmem [0000000000 - 0080000000] -05:50:20,517 INFO kernel: #0 [0000000000 - 0000001000] BIOS data page ==> [0000000000 - 0000001000] -05:50:20,517 INFO kernel: #1 [0000006000 - 0000008000] TRAMPOLINE ==> [0000006000 - 0000008000] -05:50:20,517 INFO kernel: #2 [0001000000 - 000201faa4] TEXT DATA BSS ==> [0001000000 - 000201faa4] -05:50:20,517 INFO kernel: #3 [007def9000 - 007fecf4ff] RAMDISK ==> [007def9000 - 007fecf4ff] -05:50:20,517 INFO kernel: #4 [000009f400 - 0000100000] BIOS reserved ==> [000009f400 - 0000100000] -05:50:20,517 INFO kernel: #5 [0002020000 - 00020201f0] BRK ==> [0002020000 - 00020201f0] -05:50:20,517 INFO kernel: #6 [0000010000 - 0000011000] PGTABLE ==> [0000010000 - 0000011000] -05:50:20,517 INFO kernel: #7 [0000011000 - 0000012040] MEMNODEMAP ==> [0000011000 - 0000012040] -05:50:20,517 INFO kernel:found SMP MP-table at [ffff8800000f69b0] f69b0 -05:50:20,517 DEBUG kernel: [ffffea0000000000-ffffea0001bfffff] PMD -> [ffff880002600000-ffff8800041fffff] on node 0 -05:50:20,517 WARNING kernel:Zone PFN ranges: -05:50:20,517 WARNING kernel: DMA 0x00000010 -> 0x00001000 -05:50:20,517 WARNING kernel: DMA32 0x00001000 -> 0x00100000 -05:50:20,517 WARNING kernel: Normal 0x00100000 -> 0x00100000 -05:50:20,517 WARNING kernel:Movable zone start PFN for each node -05:50:20,517 WARNING kernel:early_node_map[3] active PFN ranges -05:50:20,517 WARNING kernel: 0: 0x00000010 -> 0x0000009f -05:50:20,517 WARNING kernel: 0: 0x00000100 -> 0x0007fef0 -05:50:20,520 WARNING kernel: 0: 0x0007ff00 -> 0x00080000 -05:50:20,520 DEBUG kernel:On node 0 totalpages: 524159 -05:50:20,520 DEBUG kernel: DMA zone: 56 pages used for memmap -05:50:20,520 DEBUG kernel: DMA zone: 101 pages reserved -05:50:20,520 DEBUG kernel: DMA zone: 3826 pages, LIFO batch:0 -05:50:20,520 DEBUG kernel: DMA32 zone: 7112 pages used for memmap -05:50:20,520 DEBUG kernel: DMA32 zone: 513064 pages, LIFO batch:31 -05:50:20,520 INFO kernel:ACPI: PM-Timer IO Port: 0x1008 -05:50:20,520 DEBUG kernel:ACPI: Local APIC address 0xfee00000 -05:50:20,520 INFO kernel:Setting APIC routing to flat. -05:50:20,520 INFO kernel:ACPI: LAPIC (acpi_id[0x00] lapic_id[0x00] enabled) -05:50:20,520 INFO kernel:ACPI: LAPIC (acpi_id[0x01] lapic_id[0x01] enabled) -05:50:20,520 INFO kernel:ACPI: LAPIC_NMI (acpi_id[0x00] high edge lint[0x1]) -05:50:20,520 INFO kernel:ACPI: LAPIC_NMI (acpi_id[0x01] high edge lint[0x1]) -05:50:20,520 INFO kernel:ACPI: IOAPIC (id[0x02] address[0xfec00000] gsi_base[0]) -05:50:20,521 INFO kernel:IOAPIC[0]: apic_id 2, version 17, address 0xfec00000, GSI 0-23 -05:50:20,521 INFO kernel:ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 high edge) -05:50:20,521 DEBUG kernel:ACPI: IRQ0 used by override. -05:50:20,521 DEBUG kernel:ACPI: IRQ2 used by override. -05:50:20,521 DEBUG kernel:ACPI: IRQ9 used by override. -05:50:20,521 INFO kernel:Using ACPI (MADT) for SMP configuration information -05:50:20,521 INFO kernel:ACPI: HPET id: 0x8086af01 base: 0xfed00000 -05:50:20,521 INFO kernel:SMP: Allowing 2 CPUs, 0 hotplug CPUs -05:50:20,521 DEBUG kernel:nr_irqs_gsi: 24 -05:50:20,521 INFO kernel:PM: Registered nosave memory: 000000000009f000 - 00000000000a0000 -05:50:20,521 INFO kernel:PM: Registered nosave memory: 00000000000a0000 - 00000000000ca000 -05:50:20,521 INFO kernel:PM: Registered nosave memory: 00000000000ca000 - 00000000000cc000 -05:50:20,521 INFO kernel:PM: Registered nosave memory: 00000000000cc000 - 00000000000dc000 -05:50:20,521 INFO kernel:PM: Registered nosave memory: 00000000000dc000 - 0000000000100000 -05:50:20,521 INFO kernel:PM: Registered nosave memory: 000000007fef0000 - 000000007feff000 -05:50:20,521 INFO kernel:PM: Registered nosave memory: 000000007feff000 - 000000007ff00000 -05:50:20,521 INFO kernel:Allocating PCI resources starting at 80000000 (gap: 80000000:60000000) -05:50:20,521 INFO kernel:Booting paravirtualized kernel on bare hardware -05:50:20,521 INFO kernel:NR_CPUS:4096 nr_cpumask_bits:2 nr_cpu_ids:2 nr_node_ids:1 -05:50:20,521 INFO kernel:PERCPU: Embedded 31 pages/cpu @ffff880002200000 s94872 r8192 d23912 u1048576 -05:50:20,521 INFO kernel:pcpu-alloc: s94872 r8192 d23912 u1048576 alloc=1*2097152 -05:50:20,521 INFO kernel:pcpu-alloc: [0] 0 1 -05:50:20,521 WARNING kernel:Built 1 zonelists in Node order, mobility grouping on. Total pages: 516890 -05:50:20,521 WARNING kernel:Policy zone: DMA32 -05:50:20,521 NOTICE kernel:Kernel command line: initrd=/images/CentOS-6.5-x86_64/initrd.img ksdevice=bootif lang= kssendmac text ks=http://10.145.88.211/cblr/svc/op/ks/system/server2.1 BOOT_IMAGE=/images/CentOS-6.5-x86_64/vmlinuz BOOTIF=01-00-0c-29-5c-6a-b8 -05:50:20,521 INFO kernel:PID hash table entries: 4096 (order: 3, 32768 bytes) -05:50:20,521 INFO kernel:Checking aperture... -05:50:20,521 INFO kernel:No AGP bridge found -05:50:20,521 INFO kernel:Memory: 2018096k/2097152k available (5325k kernel code, 516k absent, 78540k reserved, 7013k data, 1276k init) -05:50:20,521 INFO kernel:Hierarchical RCU implementation. -05:50:20,521 INFO kernel:NR_IRQS:33024 nr_irqs:424 -05:50:20,521 INFO kernel:Extended CMOS year: 2000 -05:50:20,521 WARNING kernel:Console: colour VGA+ 80x25 -05:50:20,521 INFO kernel:console [tty0] enabled -05:50:20,521 INFO kernel:allocated 8388608 bytes of page_cgroup -05:50:20,521 INFO kernel:please try 'cgroup_disable=memory' option if you don't want memory cgroups -05:50:20,521 DEBUG kernel:hpet clockevent registered -05:50:20,521 INFO kernel:TSC freq read from hypervisor : 2400.085 MHz -05:50:20,521 WARNING kernel:Detected 2400.085 MHz processor. -05:50:20,521 INFO kernel:Calibrating delay loop (skipped) preset value.. 4800.17 BogoMIPS (lpj=2400085) -05:50:20,521 INFO kernel:pid_max: default: 32768 minimum: 301 -05:50:20,521 INFO kernel:Security Framework initialized -05:50:20,521 INFO kernel:SELinux: Initializing. -05:50:20,521 DEBUG kernel:SELinux: Starting in permissive mode -05:50:20,521 INFO kernel:Dentry cache hash table entries: 262144 (order: 9, 2097152 bytes) -05:50:20,521 INFO kernel:Inode-cache hash table entries: 131072 (order: 8, 1048576 bytes) -05:50:20,521 WARNING kernel:Mount-cache hash table entries: 256 -05:50:20,521 INFO kernel:Initializing cgroup subsys ns -05:50:20,521 INFO kernel:Initializing cgroup subsys cpuacct -05:50:20,521 INFO kernel:Initializing cgroup subsys memory -05:50:20,521 INFO kernel:Initializing cgroup subsys devices -05:50:20,521 INFO kernel:Initializing cgroup subsys freezer -05:50:20,521 INFO kernel:Initializing cgroup subsys net_cls -05:50:20,521 INFO kernel:Initializing cgroup subsys blkio -05:50:20,521 INFO kernel:Initializing cgroup subsys perf_event -05:50:20,521 INFO kernel:Initializing cgroup subsys net_prio -05:50:20,521 INFO kernel:Disabled fast string operations -05:50:20,521 INFO kernel:CPU: Physical Processor ID: 0 -05:50:20,521 INFO kernel:mce: CPU supports 0 MCE banks -05:50:20,521 INFO kernel:alternatives: switching to unfair spinlock -05:50:20,521 INFO kernel:ACPI: Core revision 20090903 -05:50:20,521 INFO kernel:ftrace: converting mcount calls to 0f 1f 44 00 00 -05:50:20,521 INFO kernel:ftrace: allocating 21769 entries in 86 pages -05:50:20,521 INFO kernel:APIC routing finalized to flat. -05:50:20,521 INFO kernel:..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1 -05:50:20,521 INFO kernel:CPU0: Intel(R) Xeon(R) CPU E5620 @ 2.40GHz stepping 02 -05:50:20,521 INFO kernel:Performance Events: 16-deep LBR, Westmere events, Intel PMU driver. -05:50:20,521 WARNING kernel:CPUID marked event: 'cpu cycles' unavailable -05:50:20,521 WARNING kernel:CPUID marked event: 'instructions' unavailable -05:50:20,521 WARNING kernel:CPUID marked event: 'bus cycles' unavailable -05:50:20,521 WARNING kernel:CPUID marked event: 'cache references' unavailable -05:50:20,521 WARNING kernel:CPUID marked event: 'cache misses' unavailable -05:50:20,521 WARNING kernel:CPUID marked event: 'branch instructions' unavailable -05:50:20,521 WARNING kernel:CPUID marked event: 'branch misses' unavailable -05:50:20,521 INFO kernel:... version: 3 -05:50:20,521 INFO kernel:... bit width: 48 -05:50:20,521 INFO kernel:... generic registers: 4 -05:50:20,521 INFO kernel:... value mask: 0000ffffffffffff -05:50:20,521 INFO kernel:... max period: 000000007fffffff -05:50:20,521 INFO kernel:... fixed-purpose events: 3 -05:50:20,521 INFO kernel:... event mask: 000000070000000f -05:50:20,521 WARNING kernel:NMI watchdog disabled (cpu0): hardware events not enabled -05:50:20,521 INFO kernel:Booting Node 0, Processors #1 Ok. -05:50:20,521 INFO kernel:Disabled fast string operations -05:50:20,521 INFO kernel:mce: CPU supports 0 MCE banks -05:50:20,521 INFO kernel:Skipped synchronization checks as TSC is reliable. -05:50:20,521 INFO kernel:Brought up 2 CPUs -05:50:20,521 INFO kernel:Total of 2 processors activated (9600.34 BogoMIPS). -05:50:20,521 INFO kernel:x86 PAT enabled: cpu 0, old 0x0, new 0x7010600070106 -05:50:20,521 INFO kernel:x86 PAT enabled: cpu 1, old 0x0, new 0x7010600070106 -05:50:20,521 DEBUG kernel:sizeof(vma)=200 bytes -05:50:20,521 DEBUG kernel:sizeof(page)=56 bytes -05:50:20,521 DEBUG kernel:sizeof(inode)=592 bytes -05:50:20,521 DEBUG kernel:sizeof(dentry)=192 bytes -05:50:20,521 DEBUG kernel:sizeof(ext3inode)=800 bytes -05:50:20,521 DEBUG kernel:sizeof(buffer_head)=104 bytes -05:50:20,521 DEBUG kernel:sizeof(skbuff)=232 bytes -05:50:20,521 DEBUG kernel:sizeof(task_struct)=2648 bytes -05:50:20,521 INFO kernel:devtmpfs: initialized -05:50:20,521 INFO kernel:PM: Registering ACPI NVS region at 7feff000 (4096 bytes) -05:50:20,521 INFO kernel:regulator: core version 0.5 -05:50:20,521 INFO kernel:NET: Registered protocol family 16 -05:50:20,521 INFO kernel:ACPI: bus type pci registered -05:50:20,521 NOTICE kernel:PCI: MCFG configuration 0: base e0000000 segment 0 buses 0 - 255 -05:50:20,521 NOTICE kernel:PCI: MCFG area at e0000000 reserved in E820 -05:50:20,521 INFO kernel:PCI: Using MMCONFIG at e0000000 - efffffff -05:50:20,521 INFO kernel:PCI: Using configuration type 1 for base access -05:50:20,521 WARNING kernel:bio: create slab at 0 -05:50:20,521 DEBUG kernel:ACPI: EC: Look up EC in DSDT -05:50:20,521 NOTICE kernel:ACPI: BIOS _OSI(Linux) query ignored -05:50:20,521 INFO kernel:ACPI: Interpreter enabled -05:50:20,521 INFO kernel:ACPI: (supports S0 S1 S4 S5) -05:50:20,521 INFO kernel:ACPI: Using IOAPIC for interrupt routing -05:50:20,521 INFO kernel:ACPI: No dock devices found. -05:50:20,521 INFO kernel:PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug -05:50:20,521 INFO kernel:ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-ff]) -05:50:20,521 INFO kernel:pci_root PNP0A03:00: host bridge window [mem 0x000a0000-0x000bffff] -05:50:20,521 INFO kernel:pci_root PNP0A03:00: host bridge window [mem 0x000d0000-0x000d3fff] -05:50:20,521 INFO kernel:pci_root PNP0A03:00: host bridge window [mem 0x000d4000-0x000d7fff] -05:50:20,521 INFO kernel:pci_root PNP0A03:00: host bridge window [mem 0x000d8000-0x000dbfff] -05:50:20,521 INFO kernel:pci_root PNP0A03:00: host bridge window [mem 0x80000000-0xfebfffff] -05:50:20,521 INFO kernel:pci_root PNP0A03:00: host bridge window [io 0x0000-0x0cf7] -05:50:20,521 INFO kernel:pci_root PNP0A03:00: host bridge window [io 0x0d00-0xfeff] -05:50:20,521 INFO kernel:PCI host bridge to bus 0000:00 -05:50:20,521 INFO kernel:pci_bus 0000:00: root bus resource [mem 0x000a0000-0x000bffff] -05:50:20,521 INFO kernel:pci_bus 0000:00: root bus resource [mem 0x000d0000-0x000d3fff] -05:50:20,521 INFO kernel:pci_bus 0000:00: root bus resource [mem 0x000d4000-0x000d7fff] -05:50:20,521 INFO kernel:pci_bus 0000:00: root bus resource [mem 0x000d8000-0x000dbfff] -05:50:20,521 INFO kernel:pci_bus 0000:00: root bus resource [mem 0x80000000-0xfebfffff] -05:50:20,521 INFO kernel:pci_bus 0000:00: root bus resource [io 0x0000-0x0cf7] -05:50:20,521 INFO kernel:pci_bus 0000:00: root bus resource [io 0x0d00-0xfeff] -05:50:20,521 DEBUG kernel:pci 0000:00:07.1: reg 20: [io 0x10c0-0x10cf] -05:50:20,521 INFO kernel:pci 0000:00:07.3: quirk: [io 0x1000-0x103f] claimed by PIIX4 ACPI -05:50:20,521 INFO kernel:pci 0000:00:07.3: quirk: [io 0x1040-0x104f] claimed by PIIX4 SMB -05:50:20,521 DEBUG kernel:pci 0000:00:07.7: reg 10: [io 0x1080-0x10bf] -05:50:20,521 DEBUG kernel:pci 0000:00:07.7: reg 14: [mem 0xd0000000-0xd0001fff 64bit] -05:50:20,521 DEBUG kernel:pci 0000:00:0f.0: reg 10: [io 0x10d0-0x10df] -05:50:20,521 DEBUG kernel:pci 0000:00:0f.0: reg 14: [mem 0xd8000000-0xdbffffff pref] -05:50:20,521 DEBUG kernel:pci 0000:00:0f.0: reg 18: [mem 0xd0800000-0xd0ffffff] -05:50:20,521 DEBUG kernel:pci 0000:00:0f.0: reg 30: [mem 0x00000000-0x00007fff pref] -05:50:20,521 DEBUG kernel:pci 0000:00:10.0: reg 10: [io 0x1400-0x14ff] -05:50:20,521 DEBUG kernel:pci 0000:00:10.0: reg 14: [mem 0xd0040000-0xd005ffff 64bit] -05:50:20,521 DEBUG kernel:pci 0000:00:10.0: reg 1c: [mem 0xd0020000-0xd003ffff 64bit] -05:50:20,521 DEBUG kernel:pci 0000:00:10.0: reg 30: [mem 0x00000000-0x00003fff pref] -05:50:20,521 INFO kernel:pci 0000:00:15.0: PME# supported from D0 D3hot D3cold -05:50:20,521 INFO kernel:pci 0000:00:15.0: PME# disabled -05:50:20,521 INFO kernel:pci 0000:00:15.1: PME# supported from D0 D3hot D3cold -05:50:20,521 INFO kernel:pci 0000:00:15.1: PME# disabled -05:50:20,521 INFO kernel:pci 0000:00:15.2: PME# supported from D0 D3hot D3cold -05:50:20,521 INFO kernel:pci 0000:00:15.2: PME# disabled -05:50:20,521 INFO kernel:pci 0000:00:15.3: PME# supported from D0 D3hot D3cold -05:50:20,521 INFO kernel:pci 0000:00:15.3: PME# disabled -05:50:20,521 INFO kernel:pci 0000:00:15.4: PME# supported from D0 D3hot D3cold -05:50:20,521 INFO kernel:pci 0000:00:15.4: PME# disabled -05:50:20,521 INFO kernel:pci 0000:00:15.5: PME# supported from D0 D3hot D3cold -05:50:20,521 INFO kernel:pci 0000:00:15.5: PME# disabled -05:50:20,521 INFO kernel:pci 0000:00:15.6: PME# supported from D0 D3hot D3cold -05:50:20,521 INFO kernel:pci 0000:00:15.6: PME# disabled -05:50:20,521 INFO kernel:pci 0000:00:15.7: PME# supported from D0 D3hot D3cold -05:50:20,521 INFO kernel:pci 0000:00:15.7: PME# disabled -05:50:20,521 INFO kernel:pci 0000:00:16.0: PME# supported from D0 D3hot D3cold -05:50:20,521 INFO kernel:pci 0000:00:16.0: PME# disabled -05:50:20,521 INFO kernel:pci 0000:00:16.1: PME# supported from D0 D3hot D3cold -05:50:20,521 INFO kernel:pci 0000:00:16.1: PME# disabled -05:50:20,521 INFO kernel:pci 0000:00:16.2: PME# supported from D0 D3hot D3cold -05:50:20,521 INFO kernel:pci 0000:00:16.2: PME# disabled -05:50:20,521 INFO kernel:pci 0000:00:16.3: PME# supported from D0 D3hot D3cold -05:50:20,521 INFO kernel:pci 0000:00:16.3: PME# disabled -05:50:20,521 INFO kernel:pci 0000:00:16.4: PME# supported from D0 D3hot D3cold -05:50:20,521 INFO kernel:pci 0000:00:16.4: PME# disabled -05:50:20,521 INFO kernel:pci 0000:00:16.5: PME# supported from D0 D3hot D3cold -05:50:20,521 INFO kernel:pci 0000:00:16.5: PME# disabled -05:50:20,521 INFO kernel:pci 0000:00:16.6: PME# supported from D0 D3hot D3cold -05:50:20,521 INFO kernel:pci 0000:00:16.6: PME# disabled -05:50:20,521 INFO kernel:pci 0000:00:16.7: PME# supported from D0 D3hot D3cold -05:50:20,521 INFO kernel:pci 0000:00:16.7: PME# disabled -05:50:20,521 INFO kernel:pci 0000:00:17.0: PME# supported from D0 D3hot D3cold -05:50:20,521 INFO kernel:pci 0000:00:17.0: PME# disabled -05:50:20,521 INFO kernel:pci 0000:00:17.1: PME# supported from D0 D3hot D3cold -05:50:20,521 INFO kernel:pci 0000:00:17.1: PME# disabled -05:50:20,521 INFO kernel:pci 0000:00:17.2: PME# supported from D0 D3hot D3cold -05:50:20,521 INFO kernel:pci 0000:00:17.2: PME# disabled -05:50:20,521 INFO kernel:pci 0000:00:17.3: PME# supported from D0 D3hot D3cold -05:50:20,521 INFO kernel:pci 0000:00:17.3: PME# disabled -05:50:20,521 INFO kernel:pci 0000:00:17.4: PME# supported from D0 D3hot D3cold -05:50:20,521 INFO kernel:pci 0000:00:17.4: PME# disabled -05:50:20,521 INFO kernel:pci 0000:00:17.5: PME# supported from D0 D3hot D3cold -05:50:20,521 INFO kernel:pci 0000:00:17.5: PME# disabled -05:50:20,521 INFO kernel:pci 0000:00:17.6: PME# supported from D0 D3hot D3cold -05:50:20,521 INFO kernel:pci 0000:00:17.6: PME# disabled -05:50:20,521 INFO kernel:pci 0000:00:17.7: PME# supported from D0 D3hot D3cold -05:50:20,521 INFO kernel:pci 0000:00:17.7: PME# disabled -05:50:20,521 INFO kernel:pci 0000:00:18.0: PME# supported from D0 D3hot D3cold -05:50:20,521 INFO kernel:pci 0000:00:18.0: PME# disabled -05:50:20,521 INFO kernel:pci 0000:00:18.1: PME# supported from D0 D3hot D3cold -05:50:20,521 INFO kernel:pci 0000:00:18.1: PME# disabled -05:50:20,521 INFO kernel:pci 0000:00:18.2: PME# supported from D0 D3hot D3cold -05:50:20,521 INFO kernel:pci 0000:00:18.2: PME# disabled -05:50:20,521 INFO kernel:pci 0000:00:18.3: PME# supported from D0 D3hot D3cold -05:50:20,521 INFO kernel:pci 0000:00:18.3: PME# disabled -05:50:20,521 INFO kernel:pci 0000:00:18.4: PME# supported from D0 D3hot D3cold -05:50:20,521 INFO kernel:pci 0000:00:18.4: PME# disabled -05:50:20,521 INFO kernel:pci 0000:00:18.5: PME# supported from D0 D3hot D3cold -05:50:20,521 INFO kernel:pci 0000:00:18.5: PME# disabled -05:50:20,521 INFO kernel:pci 0000:00:18.6: PME# supported from D0 D3hot D3cold -05:50:20,521 INFO kernel:pci 0000:00:18.6: PME# disabled -05:50:20,521 INFO kernel:pci 0000:00:18.7: PME# supported from D0 D3hot D3cold -05:50:20,521 INFO kernel:pci 0000:00:18.7: PME# disabled -05:50:20,521 INFO kernel:pci 0000:00:01.0: PCI bridge to [bus 01-01] -05:50:20,521 DEBUG kernel:pci 0000:00:01.0: bridge window [io 0xf000-0x0000] (disabled) -05:50:20,521 DEBUG kernel:pci 0000:00:01.0: bridge window [mem 0xfff00000-0x000fffff] (disabled) -05:50:20,521 DEBUG kernel:pci 0000:00:01.0: bridge window [mem 0xfff00000-0x000fffff pref] (disabled) -05:50:20,521 DEBUG kernel:pci 0000:02:00.0: reg 10: [mem 0xd1020000-0xd103ffff 64bit] -05:50:20,521 DEBUG kernel:pci 0000:02:00.0: reg 18: [mem 0xd1000000-0xd100ffff 64bit] -05:50:20,521 DEBUG kernel:pci 0000:02:00.0: reg 20: [io 0x2000-0x203f] -05:50:20,521 DEBUG kernel:pci 0000:02:00.0: reg 30: [mem 0x00000000-0x0000ffff pref] -05:50:20,521 INFO kernel:pci 0000:02:00.0: PME# supported from D0 D3hot D3cold -05:50:20,521 INFO kernel:pci 0000:02:00.0: PME# disabled -05:50:20,521 DEBUG kernel:pci 0000:02:01.0: reg 10: [mem 0xd1040000-0xd105ffff 64bit] -05:50:20,521 DEBUG kernel:pci 0000:02:01.0: reg 18: [mem 0xd1010000-0xd101ffff 64bit] -05:50:20,521 DEBUG kernel:pci 0000:02:01.0: reg 20: [io 0x2040-0x207f] -05:50:20,521 DEBUG kernel:pci 0000:02:01.0: reg 30: [mem 0x00000000-0x0000ffff pref] -05:50:20,521 INFO kernel:pci 0000:02:01.0: PME# supported from D0 D3hot D3cold -05:50:20,521 INFO kernel:pci 0000:02:01.0: PME# disabled -05:50:20,521 DEBUG kernel:pci 0000:02:02.0: reg 10: [mem 0xd1080000-0xd109ffff 64bit] -05:50:20,521 DEBUG kernel:pci 0000:02:02.0: reg 18: [mem 0xd1060000-0xd106ffff 64bit] -05:50:20,521 DEBUG kernel:pci 0000:02:02.0: reg 20: [io 0x2080-0x20bf] -05:50:20,521 DEBUG kernel:pci 0000:02:02.0: reg 30: [mem 0x00000000-0x0000ffff pref] -05:50:20,521 INFO kernel:pci 0000:02:02.0: PME# supported from D0 D3hot D3cold -05:50:20,521 INFO kernel:pci 0000:02:02.0: PME# disabled -05:50:20,521 DEBUG kernel:pci 0000:02:03.0: reg 10: [mem 0xd10a0000-0xd10bffff 64bit] -05:50:20,521 DEBUG kernel:pci 0000:02:03.0: reg 18: [mem 0xd1070000-0xd107ffff 64bit] -05:50:20,521 DEBUG kernel:pci 0000:02:03.0: reg 20: [io 0x20c0-0x20ff] -05:50:20,521 DEBUG kernel:pci 0000:02:03.0: reg 30: [mem 0x00000000-0x0000ffff pref] -05:50:20,521 INFO kernel:pci 0000:02:03.0: PME# supported from D0 D3hot D3cold -05:50:20,521 INFO kernel:pci 0000:02:03.0: PME# disabled -05:50:20,521 INFO kernel:pci 0000:00:11.0: PCI bridge to [bus 02-02] (subtractive decode) -05:50:20,521 DEBUG kernel:pci 0000:00:11.0: bridge window [io 0x2000-0x3fff] -05:50:20,521 DEBUG kernel:pci 0000:00:11.0: bridge window [mem 0xd1000000-0xd23fffff] -05:50:20,521 DEBUG kernel:pci 0000:00:11.0: bridge window [mem 0xdc400000-0xdc9fffff 64bit pref] -05:50:20,521 DEBUG kernel:pci 0000:00:11.0: bridge window [mem 0x000a0000-0x000bffff] (subtractive decode) -05:50:20,521 DEBUG kernel:pci 0000:00:11.0: bridge window [mem 0x000d0000-0x000d3fff] (subtractive decode) -05:50:20,521 DEBUG kernel:pci 0000:00:11.0: bridge window [mem 0x000d4000-0x000d7fff] (subtractive decode) -05:50:20,521 DEBUG kernel:pci 0000:00:11.0: bridge window [mem 0x000d8000-0x000dbfff] (subtractive decode) -05:50:20,521 DEBUG kernel:pci 0000:00:11.0: bridge window [mem 0x80000000-0xfebfffff] (subtractive decode) -05:50:20,521 DEBUG kernel:pci 0000:00:11.0: bridge window [io 0x0000-0x0cf7] (subtractive decode) -05:50:20,521 DEBUG kernel:pci 0000:00:11.0: bridge window [io 0x0d00-0xfeff] (subtractive decode) -05:50:20,521 INFO kernel:pci 0000:00:15.0: PCI bridge to [bus 03-03] -05:50:20,521 DEBUG kernel:pci 0000:00:15.0: bridge window [io 0x4000-0x4fff] -05:50:20,521 DEBUG kernel:pci 0000:00:15.0: bridge window [mem 0xd2400000-0xd24fffff] -05:50:20,521 DEBUG kernel:pci 0000:00:15.0: bridge window [mem 0xd4400000-0xd44fffff 64bit pref] -05:50:20,521 INFO kernel:pci 0000:00:15.1: PCI bridge to [bus 04-04] -05:50:20,521 DEBUG kernel:pci 0000:00:15.1: bridge window [io 0x8000-0x8fff] -05:50:20,521 DEBUG kernel:pci 0000:00:15.1: bridge window [mem 0xd2800000-0xd28fffff] -05:50:20,521 DEBUG kernel:pci 0000:00:15.1: bridge window [mem 0xd4800000-0xd48fffff 64bit pref] -05:50:20,521 INFO kernel:pci 0000:00:15.2: PCI bridge to [bus 05-05] -05:50:20,521 DEBUG kernel:pci 0000:00:15.2: bridge window [io 0xc000-0xcfff] -05:50:20,521 DEBUG kernel:pci 0000:00:15.2: bridge window [mem 0xd2c00000-0xd2cfffff] -05:50:20,521 DEBUG kernel:pci 0000:00:15.2: bridge window [mem 0xdcb00000-0xdcbfffff 64bit pref] -05:50:20,521 INFO kernel:pci 0000:00:15.3: PCI bridge to [bus 06-06] -05:50:20,521 DEBUG kernel:pci 0000:00:15.3: bridge window [io 0xf000-0x0000] (disabled) -05:50:20,521 DEBUG kernel:pci 0000:00:15.3: bridge window [mem 0xd3000000-0xd30fffff] -05:50:20,521 DEBUG kernel:pci 0000:00:15.3: bridge window [mem 0xdcd00000-0xdcdfffff 64bit pref] -05:50:20,521 INFO kernel:pci 0000:00:15.4: PCI bridge to [bus 07-07] -05:50:20,521 DEBUG kernel:pci 0000:00:15.4: bridge window [io 0xf000-0x0000] (disabled) -05:50:20,521 DEBUG kernel:pci 0000:00:15.4: bridge window [mem 0xd3400000-0xd34fffff] -05:50:20,521 DEBUG kernel:pci 0000:00:15.4: bridge window [mem 0xdcf00000-0xdcffffff 64bit pref] -05:50:20,521 INFO kernel:pci 0000:00:15.5: PCI bridge to [bus 08-08] -05:50:20,521 DEBUG kernel:pci 0000:00:15.5: bridge window [io 0xf000-0x0000] (disabled) -05:50:20,521 DEBUG kernel:pci 0000:00:15.5: bridge window [mem 0xd3800000-0xd38fffff] -05:50:20,521 DEBUG kernel:pci 0000:00:15.5: bridge window [mem 0xdd100000-0xdd1fffff 64bit pref] -05:50:20,521 INFO kernel:pci 0000:00:15.6: PCI bridge to [bus 09-09] -05:50:20,521 DEBUG kernel:pci 0000:00:15.6: bridge window [io 0xf000-0x0000] (disabled) -05:50:20,521 DEBUG kernel:pci 0000:00:15.6: bridge window [mem 0xd3c00000-0xd3cfffff] -05:50:20,521 DEBUG kernel:pci 0000:00:15.6: bridge window [mem 0xdd300000-0xdd3fffff 64bit pref] -05:50:20,521 INFO kernel:pci 0000:00:15.7: PCI bridge to [bus 0a-0a] -05:50:20,521 DEBUG kernel:pci 0000:00:15.7: bridge window [io 0xf000-0x0000] (disabled) -05:50:20,521 DEBUG kernel:pci 0000:00:15.7: bridge window [mem 0xd4000000-0xd40fffff] -05:50:20,521 DEBUG kernel:pci 0000:00:15.7: bridge window [mem 0xdd500000-0xdd5fffff 64bit pref] -05:50:20,521 INFO kernel:pci 0000:00:16.0: PCI bridge to [bus 0b-0b] -05:50:20,521 DEBUG kernel:pci 0000:00:16.0: bridge window [io 0x5000-0x5fff] -05:50:20,521 DEBUG kernel:pci 0000:00:16.0: bridge window [mem 0xd2500000-0xd25fffff] -05:50:20,521 DEBUG kernel:pci 0000:00:16.0: bridge window [mem 0xd4500000-0xd45fffff 64bit pref] -05:50:20,522 INFO kernel:pci 0000:00:16.1: PCI bridge to [bus 0c-0c] -05:50:20,522 DEBUG kernel:pci 0000:00:16.1: bridge window [io 0x9000-0x9fff] -05:50:20,522 DEBUG kernel:pci 0000:00:16.1: bridge window [mem 0xd2900000-0xd29fffff] -05:50:20,522 DEBUG kernel:pci 0000:00:16.1: bridge window [mem 0xd4900000-0xd49fffff 64bit pref] -05:50:20,522 INFO kernel:pci 0000:00:16.2: PCI bridge to [bus 0d-0d] -05:50:20,522 DEBUG kernel:pci 0000:00:16.2: bridge window [io 0xd000-0xdfff] -05:50:20,522 DEBUG kernel:pci 0000:00:16.2: bridge window [mem 0xd2d00000-0xd2dfffff] -05:50:20,522 DEBUG kernel:pci 0000:00:16.2: bridge window [mem 0xd4b00000-0xd4bfffff 64bit pref] -05:50:20,522 INFO kernel:pci 0000:00:16.3: PCI bridge to [bus 0e-0e] -05:50:20,522 DEBUG kernel:pci 0000:00:16.3: bridge window [io 0xf000-0x0000] (disabled) -05:50:20,522 DEBUG kernel:pci 0000:00:16.3: bridge window [mem 0xd3100000-0xd31fffff] -05:50:20,522 DEBUG kernel:pci 0000:00:16.3: bridge window [mem 0xd4d00000-0xd4dfffff 64bit pref] -05:50:20,522 INFO kernel:pci 0000:00:16.4: PCI bridge to [bus 0f-0f] -05:50:20,522 DEBUG kernel:pci 0000:00:16.4: bridge window [io 0xf000-0x0000] (disabled) -05:50:20,522 DEBUG kernel:pci 0000:00:16.4: bridge window [mem 0xd3500000-0xd35fffff] -05:50:20,522 DEBUG kernel:pci 0000:00:16.4: bridge window [mem 0xd4f00000-0xd4ffffff 64bit pref] -05:50:20,522 INFO kernel:pci 0000:00:16.5: PCI bridge to [bus 10-10] -05:50:20,522 DEBUG kernel:pci 0000:00:16.5: bridge window [io 0xf000-0x0000] (disabled) -05:50:20,522 DEBUG kernel:pci 0000:00:16.5: bridge window [mem 0xd3900000-0xd39fffff] -05:50:20,522 DEBUG kernel:pci 0000:00:16.5: bridge window [mem 0xd5100000-0xd51fffff 64bit pref] -05:50:20,522 INFO kernel:pci 0000:00:16.6: PCI bridge to [bus 11-11] -05:50:20,522 DEBUG kernel:pci 0000:00:16.6: bridge window [io 0xf000-0x0000] (disabled) -05:50:20,522 DEBUG kernel:pci 0000:00:16.6: bridge window [mem 0xd3d00000-0xd3dfffff] -05:50:20,522 DEBUG kernel:pci 0000:00:16.6: bridge window [mem 0xd5300000-0xd53fffff 64bit pref] -05:50:20,522 INFO kernel:pci 0000:00:16.7: PCI bridge to [bus 12-12] -05:50:20,522 DEBUG kernel:pci 0000:00:16.7: bridge window [io 0xf000-0x0000] (disabled) -05:50:20,522 DEBUG kernel:pci 0000:00:16.7: bridge window [mem 0xd4100000-0xd41fffff] -05:50:20,522 DEBUG kernel:pci 0000:00:16.7: bridge window [mem 0xd5500000-0xd55fffff 64bit pref] -05:50:20,522 INFO kernel:pci 0000:00:17.0: PCI bridge to [bus 13-13] -05:50:20,522 DEBUG kernel:pci 0000:00:17.0: bridge window [io 0x6000-0x6fff] -05:50:20,522 DEBUG kernel:pci 0000:00:17.0: bridge window [mem 0xd2600000-0xd26fffff] -05:50:20,522 DEBUG kernel:pci 0000:00:17.0: bridge window [mem 0xd4600000-0xd46fffff 64bit pref] -05:50:20,522 INFO kernel:pci 0000:00:17.1: PCI bridge to [bus 14-14] -05:50:20,522 DEBUG kernel:pci 0000:00:17.1: bridge window [io 0xa000-0xafff] -05:50:20,522 DEBUG kernel:pci 0000:00:17.1: bridge window [mem 0xd2a00000-0xd2afffff] -05:50:20,522 DEBUG kernel:pci 0000:00:17.1: bridge window [mem 0xdca00000-0xdcafffff 64bit pref] -05:50:20,522 INFO kernel:pci 0000:00:17.2: PCI bridge to [bus 15-15] -05:50:20,522 DEBUG kernel:pci 0000:00:17.2: bridge window [io 0xe000-0xefff] -05:50:20,522 DEBUG kernel:pci 0000:00:17.2: bridge window [mem 0xd2e00000-0xd2efffff] -05:50:20,522 DEBUG kernel:pci 0000:00:17.2: bridge window [mem 0xdcc00000-0xdccfffff 64bit pref] -05:50:20,522 INFO kernel:pci 0000:00:17.3: PCI bridge to [bus 16-16] -05:50:20,522 DEBUG kernel:pci 0000:00:17.3: bridge window [io 0xf000-0x0000] (disabled) -05:50:20,522 DEBUG kernel:pci 0000:00:17.3: bridge window [mem 0xd3200000-0xd32fffff] -05:50:20,522 DEBUG kernel:pci 0000:00:17.3: bridge window [mem 0xdce00000-0xdcefffff 64bit pref] -05:50:20,522 INFO kernel:pci 0000:00:17.4: PCI bridge to [bus 17-17] -05:50:20,522 DEBUG kernel:pci 0000:00:17.4: bridge window [io 0xf000-0x0000] (disabled) -05:50:20,522 DEBUG kernel:pci 0000:00:17.4: bridge window [mem 0xd3600000-0xd36fffff] -05:50:20,522 DEBUG kernel:pci 0000:00:17.4: bridge window [mem 0xdd000000-0xdd0fffff 64bit pref] -05:50:20,522 INFO kernel:pci 0000:00:17.5: PCI bridge to [bus 18-18] -05:50:20,522 DEBUG kernel:pci 0000:00:17.5: bridge window [io 0xf000-0x0000] (disabled) -05:50:20,522 DEBUG kernel:pci 0000:00:17.5: bridge window [mem 0xd3a00000-0xd3afffff] -05:50:20,522 DEBUG kernel:pci 0000:00:17.5: bridge window [mem 0xdd200000-0xdd2fffff 64bit pref] -05:50:20,522 INFO kernel:pci 0000:00:17.6: PCI bridge to [bus 19-19] -05:50:20,522 DEBUG kernel:pci 0000:00:17.6: bridge window [io 0xf000-0x0000] (disabled) -05:50:20,522 DEBUG kernel:pci 0000:00:17.6: bridge window [mem 0xd3e00000-0xd3efffff] -05:50:20,522 DEBUG kernel:pci 0000:00:17.6: bridge window [mem 0xdd400000-0xdd4fffff 64bit pref] -05:50:20,522 INFO kernel:pci 0000:00:17.7: PCI bridge to [bus 1a-1a] -05:50:20,522 DEBUG kernel:pci 0000:00:17.7: bridge window [io 0xf000-0x0000] (disabled) -05:50:20,522 DEBUG kernel:pci 0000:00:17.7: bridge window [mem 0xd4200000-0xd42fffff] -05:50:20,522 DEBUG kernel:pci 0000:00:17.7: bridge window [mem 0xdd600000-0xdd6fffff 64bit pref] -05:50:20,522 INFO kernel:pci 0000:00:18.0: PCI bridge to [bus 1b-1b] -05:50:20,522 DEBUG kernel:pci 0000:00:18.0: bridge window [io 0x7000-0x7fff] -05:50:20,522 DEBUG kernel:pci 0000:00:18.0: bridge window [mem 0xd2700000-0xd27fffff] -05:50:20,522 DEBUG kernel:pci 0000:00:18.0: bridge window [mem 0xd4700000-0xd47fffff 64bit pref] -05:50:20,522 INFO kernel:pci 0000:00:18.1: PCI bridge to [bus 1c-1c] -05:50:20,522 DEBUG kernel:pci 0000:00:18.1: bridge window [io 0xb000-0xbfff] -05:50:20,522 DEBUG kernel:pci 0000:00:18.1: bridge window [mem 0xd2b00000-0xd2bfffff] -05:50:20,522 DEBUG kernel:pci 0000:00:18.1: bridge window [mem 0xd4a00000-0xd4afffff 64bit pref] -05:50:20,522 INFO kernel:pci 0000:00:18.2: PCI bridge to [bus 1d-1d] -05:50:20,522 DEBUG kernel:pci 0000:00:18.2: bridge window [io 0xf000-0xffff] -05:50:20,522 DEBUG kernel:pci 0000:00:18.2: bridge window [mem 0xd2f00000-0xd2ffffff] -05:50:20,522 DEBUG kernel:pci 0000:00:18.2: bridge window [mem 0xd4c00000-0xd4cfffff 64bit pref] -05:50:20,522 INFO kernel:pci 0000:00:18.3: PCI bridge to [bus 1e-1e] -05:50:20,522 DEBUG kernel:pci 0000:00:18.3: bridge window [io 0xf000-0x0000] (disabled) -05:50:20,522 DEBUG kernel:pci 0000:00:18.3: bridge window [mem 0xd3300000-0xd33fffff] -05:50:20,522 DEBUG kernel:pci 0000:00:18.3: bridge window [mem 0xd4e00000-0xd4efffff 64bit pref] -05:50:20,522 INFO kernel:pci 0000:00:18.4: PCI bridge to [bus 1f-1f] -05:50:20,522 DEBUG kernel:pci 0000:00:18.4: bridge window [io 0xf000-0x0000] (disabled) -05:50:20,522 DEBUG kernel:pci 0000:00:18.4: bridge window [mem 0xd3700000-0xd37fffff] -05:50:20,522 DEBUG kernel:pci 0000:00:18.4: bridge window [mem 0xd5000000-0xd50fffff 64bit pref] -05:50:20,522 INFO kernel:pci 0000:00:18.5: PCI bridge to [bus 20-20] -05:50:20,522 DEBUG kernel:pci 0000:00:18.5: bridge window [io 0xf000-0x0000] (disabled) -05:50:20,522 DEBUG kernel:pci 0000:00:18.5: bridge window [mem 0xd3b00000-0xd3bfffff] -05:50:20,522 DEBUG kernel:pci 0000:00:18.5: bridge window [mem 0xd5200000-0xd52fffff 64bit pref] -05:50:20,522 INFO kernel:pci 0000:00:18.6: PCI bridge to [bus 21-21] -05:50:20,522 DEBUG kernel:pci 0000:00:18.6: bridge window [io 0xf000-0x0000] (disabled) -05:50:20,522 DEBUG kernel:pci 0000:00:18.6: bridge window [mem 0xd3f00000-0xd3ffffff] -05:50:20,522 DEBUG kernel:pci 0000:00:18.6: bridge window [mem 0xd5400000-0xd54fffff 64bit pref] -05:50:20,522 INFO kernel:pci 0000:00:18.7: PCI bridge to [bus 22-22] -05:50:20,522 DEBUG kernel:pci 0000:00:18.7: bridge window [io 0xf000-0x0000] (disabled) -05:50:20,522 DEBUG kernel:pci 0000:00:18.7: bridge window [mem 0xd4300000-0xd43fffff] -05:50:20,522 DEBUG kernel:pci 0000:00:18.7: bridge window [mem 0xd5600000-0xd56fffff 64bit pref] -05:50:20,522 DEBUG kernel:ACPI: PCI Interrupt Routing Table [\_SB_.PCI0._PRT] -05:50:20,522 INFO kernel: pci0000:00: Requesting ACPI _OSC control (0x1d) -05:50:20,522 INFO kernel: pci0000:00: ACPI _OSC control (0x15) granted -05:50:20,522 INFO kernel:ACPI: PCI Interrupt Link [LNKA] (IRQs 3 4 5 6 7 *9 10 11 14 15) -05:50:20,522 INFO kernel:ACPI: PCI Interrupt Link [LNKB] (IRQs 3 4 5 6 7 9 10 *11 14 15) -05:50:20,522 INFO kernel:ACPI: PCI Interrupt Link [LNKC] (IRQs 3 4 5 6 7 9 *10 11 14 15) -05:50:20,522 INFO kernel:ACPI: PCI Interrupt Link [LNKD] (IRQs 3 4 *5 6 7 9 10 11 14 15) -05:50:20,522 INFO kernel:vgaarb: device added: PCI:0000:00:0f.0,decodes=io+mem,owns=io+mem,locks=none -05:50:20,522 INFO kernel:vgaarb: loaded -05:50:20,522 INFO kernel:vgaarb: bridge control possible 0000:00:0f.0 -05:50:20,522 NOTICE kernel:SCSI subsystem initialized -05:50:20,522 DEBUG kernel:libata version 3.00 loaded. -05:50:20,522 INFO kernel:usbcore: registered new interface driver usbfs -05:50:20,522 INFO kernel:usbcore: registered new interface driver hub -05:50:20,522 INFO kernel:usbcore: registered new device driver usb -05:50:20,522 INFO kernel:PCI: Using ACPI for IRQ routing -05:50:20,522 DEBUG kernel:PCI: old code would have set cacheline size to 32 bytes, but clflush_size = 64 -05:50:20,522 DEBUG kernel:PCI: pci_cache_line_size set to 64 bytes -05:50:20,522 INFO kernel:pci 0000:00:18.2: no compatible bridge window for [io 0xf000-0xffff] -05:50:20,522 INFO kernel:pci 0000:00:18.2: can't reserve window [io 0xf000-0xffff] -05:50:20,522 NOTICE kernel:lo: Dropping TSO features since no CSUM feature. -05:50:20,522 INFO kernel:NetLabel: Initializing -05:50:20,522 INFO kernel:NetLabel: domain hash size = 128 -05:50:20,522 INFO kernel:NetLabel: protocols = UNLABELED CIPSOv4 -05:50:20,522 INFO kernel:NetLabel: unlabeled traffic allowed by default -05:50:20,522 INFO kernel:HPET: 16 timers in total, 0 timers will be used for per-cpu timer -05:50:20,522 INFO kernel:hpet0: at MMIO 0xfed00000, IRQs 2, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 -05:50:20,522 INFO kernel:hpet0: 16 comparators, 64-bit 14.318180 MHz counter -05:50:20,522 INFO kernel:Switching to clocksource hpet -05:50:20,522 INFO kernel:pnp: PnP ACPI init -05:50:20,522 INFO kernel:ACPI: bus type pnp registered -05:50:20,522 DEBUG kernel:pnp 00:00: [io 0x0cf8-0x0cff] -05:50:20,522 DEBUG kernel:pnp 00:00: Plug and Play ACPI device, IDs PNP0a03 PNP0a08 (active) -05:50:20,522 DEBUG kernel:pnp 00:01: [io 0x0010-0x001f] -05:50:20,522 DEBUG kernel:pnp 00:01: [io 0x0024-0x0025] -05:50:20,522 DEBUG kernel:pnp 00:01: [io 0x0028-0x0029] -05:50:20,522 DEBUG kernel:pnp 00:01: [io 0x002c-0x002d] -05:50:20,522 DEBUG kernel:pnp 00:01: [io 0x002e-0x002f] -05:50:20,522 DEBUG kernel:pnp 00:01: [io 0x0030-0x0031] -05:50:20,522 DEBUG kernel:pnp 00:01: [io 0x0034-0x0035] -05:50:20,522 DEBUG kernel:pnp 00:01: [io 0x0038-0x0039] -05:50:20,522 DEBUG kernel:pnp 00:01: [io 0x003c-0x003d] -05:50:20,522 DEBUG kernel:pnp 00:01: [io 0x0050-0x0053] -05:50:20,522 DEBUG kernel:pnp 00:01: [io 0x0072-0x0077] -05:50:20,522 DEBUG kernel:pnp 00:01: [io 0x0080] -05:50:20,522 DEBUG kernel:pnp 00:01: [io 0x0090-0x009f] -05:50:20,522 DEBUG kernel:pnp 00:01: [io 0x00a4-0x00a5] -05:50:20,522 DEBUG kernel:pnp 00:01: [io 0x00a8-0x00a9] -05:50:20,522 DEBUG kernel:pnp 00:01: [io 0x00ac-0x00ad] -05:50:20,522 DEBUG kernel:pnp 00:01: [io 0x00b0-0x00b5] -05:50:20,522 DEBUG kernel:pnp 00:01: [io 0x00b8-0x00b9] -05:50:20,522 DEBUG kernel:pnp 00:01: [io 0x00bc-0x00bd] -05:50:20,522 DEBUG kernel:pnp 00:01: [io 0x1000-0x103f] -05:50:20,522 DEBUG kernel:pnp 00:01: [io 0x1040-0x104f] -05:50:20,522 DEBUG kernel:pnp 00:01: [io 0x0cf0-0x0cf1] -05:50:20,522 DEBUG kernel:pnp 00:01: Plug and Play ACPI device, IDs PNP0c02 (active) -05:50:20,522 DEBUG kernel:pnp 00:02: [io 0x0000-0x000f] -05:50:20,522 DEBUG kernel:pnp 00:02: [io 0x0081-0x008f] -05:50:20,522 DEBUG kernel:pnp 00:02: [io 0x00c0-0x00df] -05:50:20,522 DEBUG kernel:pnp 00:02: [dma 4] -05:50:20,522 DEBUG kernel:pnp 00:02: Plug and Play ACPI device, IDs PNP0200 (active) -05:50:20,522 DEBUG kernel:pnp 00:03: [io 0x0020-0x0021] -05:50:20,522 DEBUG kernel:pnp 00:03: [io 0x00a0-0x00a1] -05:50:20,522 DEBUG kernel:pnp 00:03: [io 0x04d0-0x04d1] -05:50:20,522 DEBUG kernel:pnp 00:03: [irq 2 disabled] -05:50:20,522 DEBUG kernel:pnp 00:03: Plug and Play ACPI device, IDs PNP0001 (active) -05:50:20,522 DEBUG kernel:pnp 00:04: [io 0x0070-0x0071] -05:50:20,522 DEBUG kernel:pnp 00:04: [irq 8] -05:50:20,522 DEBUG kernel:pnp 00:04: Plug and Play ACPI device, IDs PNP0b00 (active) -05:50:20,522 DEBUG kernel:pnp 00:05: [io 0x0061] -05:50:20,522 DEBUG kernel:pnp 00:05: Plug and Play ACPI device, IDs PNP0800 (active) -05:50:20,522 DEBUG kernel:pnp 00:06: [io 0x0060] -05:50:20,522 DEBUG kernel:pnp 00:06: [io 0x0064] -05:50:20,522 DEBUG kernel:pnp 00:06: [irq 1] -05:50:20,522 DEBUG kernel:pnp 00:06: Plug and Play ACPI device, IDs PNP0303 (active) -05:50:20,522 DEBUG kernel:pnp 00:07: [irq 12] -05:50:20,522 DEBUG kernel:pnp 00:07: Plug and Play ACPI device, IDs PNP0f13 (active) -05:50:20,522 DEBUG kernel:pnp 00:08: [mem 0xfed00000-0xfed003ff] -05:50:20,522 DEBUG kernel:pnp 00:08: Plug and Play ACPI device, IDs PNP0103 PNP0c01 (active) -05:50:20,522 DEBUG kernel:pnp 00:09: [io 0x0378-0x037f] -05:50:20,522 DEBUG kernel:pnp 00:09: [irq 7] -05:50:20,522 DEBUG kernel:pnp 00:09: Plug and Play ACPI device, IDs PNP0400 (active) -05:50:20,522 DEBUG kernel:pnp 00:0a: [io 0x03f8-0x03ff] -05:50:20,522 DEBUG kernel:pnp 00:0a: [irq 4] -05:50:20,522 DEBUG kernel:pnp 00:0a: Plug and Play ACPI device, IDs PNP0501 (active) -05:50:20,522 DEBUG kernel:pnp 00:0b: [io 0x02f8-0x02ff] -05:50:20,522 DEBUG kernel:pnp 00:0b: [irq 3] -05:50:20,522 DEBUG kernel:pnp 00:0b: Plug and Play ACPI device, IDs PNP0501 (active) -05:50:20,522 DEBUG kernel:pnp 00:0c: [io 0x03f0-0x03f5] -05:50:20,522 DEBUG kernel:pnp 00:0c: [io 0x03f7] -05:50:20,522 DEBUG kernel:pnp 00:0c: [irq 6] -05:50:20,522 DEBUG kernel:pnp 00:0c: [dma 2] -05:50:20,522 DEBUG kernel:pnp 00:0c: Plug and Play ACPI device, IDs PNP0700 (active) -05:50:20,522 DEBUG kernel:pnp 00:0d: [mem 0xe0000000-0xefffffff] -05:50:20,522 DEBUG kernel:pnp 00:0d: [io 0x1060-0x107f] -05:50:20,522 DEBUG kernel:pnp 00:0d: [mem 0xd0200000-0xd03fffff] -05:50:20,522 DEBUG kernel:pnp 00:0d: Plug and Play ACPI device, IDs PNP0c02 (active) -05:50:20,522 INFO kernel:pnp: PnP ACPI: found 14 devices -05:50:20,522 INFO kernel:ACPI: ACPI bus type pnp unregistered -05:50:20,522 INFO kernel:system 00:01: [io 0x1000-0x103f] has been reserved -05:50:20,522 INFO kernel:system 00:01: [io 0x1040-0x104f] has been reserved -05:50:20,522 INFO kernel:system 00:01: [io 0x0cf0-0x0cf1] has been reserved -05:50:20,522 INFO kernel:system 00:08: [mem 0xfed00000-0xfed003ff] has been reserved -05:50:20,522 INFO kernel:system 00:0d: [io 0x1060-0x107f] has been reserved -05:50:20,522 INFO kernel:system 00:0d: [mem 0xe0000000-0xefffffff] has been reserved -05:50:20,522 INFO kernel:system 00:0d: [mem 0xd0200000-0xd03fffff] has been reserved -05:50:20,522 DEBUG kernel:PCI: max bus depth: 1 pci_try_num: 2 -05:50:20,522 INFO kernel:pci 0000:00:0f.0: BAR 6: assigned [mem 0x80000000-0x80007fff pref] -05:50:20,522 INFO kernel:pci 0000:00:10.0: BAR 6: assigned [mem 0x80008000-0x8000bfff pref] -05:50:20,522 INFO kernel:pci 0000:00:18.2: BAR 13: can't assign io (size 0x1000) -05:50:20,522 INFO kernel:pci 0000:00:18.7: BAR 13: can't assign io (size 0x1000) -05:50:20,522 INFO kernel:pci 0000:00:18.6: BAR 13: can't assign io (size 0x1000) -05:50:20,522 INFO kernel:pci 0000:00:18.5: BAR 13: can't assign io (size 0x1000) -05:50:20,522 INFO kernel:pci 0000:00:18.4: BAR 13: can't assign io (size 0x1000) -05:50:20,522 INFO kernel:pci 0000:00:18.3: BAR 13: can't assign io (size 0x1000) -05:50:20,523 INFO kernel:pci 0000:00:17.7: BAR 13: can't assign io (size 0x1000) -05:50:20,523 INFO kernel:pci 0000:00:17.6: BAR 13: can't assign io (size 0x1000) -05:50:20,523 INFO kernel:pci 0000:00:17.5: BAR 13: can't assign io (size 0x1000) -05:50:20,523 INFO kernel:pci 0000:00:17.4: BAR 13: can't assign io (size 0x1000) -05:50:20,523 INFO kernel:pci 0000:00:17.3: BAR 13: can't assign io (size 0x1000) -05:50:20,523 INFO kernel:pci 0000:00:16.7: BAR 13: can't assign io (size 0x1000) -05:50:20,523 INFO kernel:pci 0000:00:16.6: BAR 13: can't assign io (size 0x1000) -05:50:20,523 INFO kernel:pci 0000:00:16.5: BAR 13: can't assign io (size 0x1000) -05:50:20,523 INFO kernel:pci 0000:00:16.4: BAR 13: can't assign io (size 0x1000) -05:50:20,523 INFO kernel:pci 0000:00:16.3: BAR 13: can't assign io (size 0x1000) -05:50:20,523 INFO kernel:pci 0000:00:15.7: BAR 13: can't assign io (size 0x1000) -05:50:20,523 INFO kernel:pci 0000:00:15.6: BAR 13: can't assign io (size 0x1000) -05:50:20,523 INFO kernel:pci 0000:00:15.5: BAR 13: can't assign io (size 0x1000) -05:50:20,523 INFO kernel:pci 0000:00:15.4: BAR 13: can't assign io (size 0x1000) -05:50:20,523 INFO kernel:pci 0000:00:15.3: BAR 13: can't assign io (size 0x1000) -05:50:20,523 INFO kernel:pci 0000:00:01.0: PCI bridge to [bus 01-01] -05:50:20,523 INFO kernel:pci 0000:00:01.0: PCI bridge to [bus 01-01] -05:50:20,523 INFO kernel:pci 0000:00:01.0: bridge window [io disabled] -05:50:20,523 INFO kernel:pci 0000:00:01.0: bridge window [mem disabled] -05:50:20,523 INFO kernel:pci 0000:00:01.0: bridge window [mem pref disabled] -05:50:20,523 INFO kernel:pci 0000:02:00.0: BAR 6: assigned [mem 0xdc400000-0xdc40ffff pref] -05:50:20,523 INFO kernel:pci 0000:02:01.0: BAR 6: assigned [mem 0xdc410000-0xdc41ffff pref] -05:50:20,523 INFO kernel:pci 0000:02:02.0: BAR 6: assigned [mem 0xdc420000-0xdc42ffff pref] -05:50:20,523 INFO kernel:pci 0000:02:03.0: BAR 6: assigned [mem 0xdc430000-0xdc43ffff pref] -05:50:20,523 INFO kernel:pci 0000:00:11.0: PCI bridge to [bus 02-02] -05:50:20,523 INFO kernel:pci 0000:00:11.0: PCI bridge to [bus 02-02] -05:50:20,523 INFO kernel:pci 0000:00:11.0: bridge window [io 0x2000-0x3fff] -05:50:20,523 INFO kernel:pci 0000:00:11.0: bridge window [mem 0xd1000000-0xd23fffff] -05:50:20,523 INFO kernel:pci 0000:00:11.0: bridge window [mem 0xdc400000-0xdc9fffff 64bit pref] -05:50:20,523 INFO kernel:pci 0000:00:15.0: PCI bridge to [bus 03-03] -05:50:20,523 INFO kernel:pci 0000:00:15.0: PCI bridge to [bus 03-03] -05:50:20,523 INFO kernel:pci 0000:00:15.0: bridge window [io 0x4000-0x4fff] -05:50:20,523 INFO kernel:pci 0000:00:15.0: bridge window [mem 0xd2400000-0xd24fffff] -05:50:20,523 INFO kernel:pci 0000:00:15.0: bridge window [mem 0xd4400000-0xd44fffff 64bit pref] -05:50:20,523 INFO kernel:pci 0000:00:15.1: PCI bridge to [bus 04-04] -05:50:20,523 INFO kernel:pci 0000:00:15.1: PCI bridge to [bus 04-04] -05:50:20,523 INFO kernel:pci 0000:00:15.1: bridge window [io 0x8000-0x8fff] -05:50:20,523 INFO kernel:pci 0000:00:15.1: bridge window [mem 0xd2800000-0xd28fffff] -05:50:20,523 INFO kernel:pci 0000:00:15.1: bridge window [mem 0xd4800000-0xd48fffff 64bit pref] -05:50:20,523 INFO kernel:pci 0000:00:15.2: PCI bridge to [bus 05-05] -05:50:20,523 INFO kernel:pci 0000:00:15.2: PCI bridge to [bus 05-05] -05:50:20,523 INFO kernel:pci 0000:00:15.2: bridge window [io 0xc000-0xcfff] -05:50:20,523 INFO kernel:pci 0000:00:15.2: bridge window [mem 0xd2c00000-0xd2cfffff] -05:50:20,523 INFO kernel:pci 0000:00:15.2: bridge window [mem 0xdcb00000-0xdcbfffff 64bit pref] -05:50:20,523 INFO kernel:pci 0000:00:15.3: PCI bridge to [bus 06-06] -05:50:20,523 INFO kernel:pci 0000:00:15.3: PCI bridge to [bus 06-06] -05:50:20,523 INFO kernel:pci 0000:00:15.3: bridge window [io disabled] -05:50:20,523 INFO kernel:pci 0000:00:15.3: bridge window [mem 0xd3000000-0xd30fffff] -05:50:20,523 INFO kernel:pci 0000:00:15.3: bridge window [mem 0xdcd00000-0xdcdfffff 64bit pref] -05:50:20,523 INFO kernel:pci 0000:00:15.4: PCI bridge to [bus 07-07] -05:50:20,523 INFO kernel:pci 0000:00:15.4: PCI bridge to [bus 07-07] -05:50:20,523 INFO kernel:pci 0000:00:15.4: bridge window [io disabled] -05:50:20,523 INFO kernel:pci 0000:00:15.4: bridge window [mem 0xd3400000-0xd34fffff] -05:50:20,523 INFO kernel:pci 0000:00:15.4: bridge window [mem 0xdcf00000-0xdcffffff 64bit pref] -05:50:20,523 INFO kernel:pci 0000:00:15.5: PCI bridge to [bus 08-08] -05:50:20,523 INFO kernel:pci 0000:00:15.5: PCI bridge to [bus 08-08] -05:50:20,523 INFO kernel:pci 0000:00:15.5: bridge window [io disabled] -05:50:20,523 INFO kernel:pci 0000:00:15.5: bridge window [mem 0xd3800000-0xd38fffff] -05:50:20,523 INFO kernel:pci 0000:00:15.5: bridge window [mem 0xdd100000-0xdd1fffff 64bit pref] -05:50:20,523 INFO kernel:pci 0000:00:15.6: PCI bridge to [bus 09-09] -05:50:20,523 INFO kernel:pci 0000:00:15.6: PCI bridge to [bus 09-09] -05:50:20,523 INFO kernel:pci 0000:00:15.6: bridge window [io disabled] -05:50:20,523 INFO kernel:pci 0000:00:15.6: bridge window [mem 0xd3c00000-0xd3cfffff] -05:50:20,523 INFO kernel:pci 0000:00:15.6: bridge window [mem 0xdd300000-0xdd3fffff 64bit pref] -05:50:20,523 INFO kernel:pci 0000:00:15.7: PCI bridge to [bus 0a-0a] -05:50:20,523 INFO kernel:pci 0000:00:15.7: PCI bridge to [bus 0a-0a] -05:50:20,523 INFO kernel:pci 0000:00:15.7: bridge window [io disabled] -05:50:20,523 INFO kernel:pci 0000:00:15.7: bridge window [mem 0xd4000000-0xd40fffff] -05:50:20,523 INFO kernel:pci 0000:00:15.7: bridge window [mem 0xdd500000-0xdd5fffff 64bit pref] -05:50:20,523 INFO kernel:pci 0000:00:16.0: PCI bridge to [bus 0b-0b] -05:50:20,523 INFO kernel:pci 0000:00:16.0: PCI bridge to [bus 0b-0b] -05:50:20,523 INFO kernel:pci 0000:00:16.0: bridge window [io 0x5000-0x5fff] -05:50:20,523 INFO kernel:pci 0000:00:16.0: bridge window [mem 0xd2500000-0xd25fffff] -05:50:20,523 INFO kernel:pci 0000:00:16.0: bridge window [mem 0xd4500000-0xd45fffff 64bit pref] -05:50:20,523 INFO kernel:pci 0000:00:16.1: PCI bridge to [bus 0c-0c] -05:50:20,523 INFO kernel:pci 0000:00:16.1: PCI bridge to [bus 0c-0c] -05:50:20,523 INFO kernel:pci 0000:00:16.1: bridge window [io 0x9000-0x9fff] -05:50:20,523 INFO kernel:pci 0000:00:16.1: bridge window [mem 0xd2900000-0xd29fffff] -05:50:20,523 INFO kernel:pci 0000:00:16.1: bridge window [mem 0xd4900000-0xd49fffff 64bit pref] -05:50:20,523 INFO kernel:pci 0000:00:16.2: PCI bridge to [bus 0d-0d] -05:50:20,523 INFO kernel:pci 0000:00:16.2: PCI bridge to [bus 0d-0d] -05:50:20,523 INFO kernel:pci 0000:00:16.2: bridge window [io 0xd000-0xdfff] -05:50:20,523 INFO kernel:pci 0000:00:16.2: bridge window [mem 0xd2d00000-0xd2dfffff] -05:50:20,523 INFO kernel:pci 0000:00:16.2: bridge window [mem 0xd4b00000-0xd4bfffff 64bit pref] -05:50:20,523 INFO kernel:pci 0000:00:16.3: PCI bridge to [bus 0e-0e] -05:50:20,523 INFO kernel:pci 0000:00:16.3: PCI bridge to [bus 0e-0e] -05:50:20,523 INFO kernel:pci 0000:00:16.3: bridge window [io disabled] -05:50:20,523 INFO kernel:pci 0000:00:16.3: bridge window [mem 0xd3100000-0xd31fffff] -05:50:20,523 INFO kernel:pci 0000:00:16.3: bridge window [mem 0xd4d00000-0xd4dfffff 64bit pref] -05:50:20,523 INFO kernel:pci 0000:00:16.4: PCI bridge to [bus 0f-0f] -05:50:20,523 INFO kernel:pci 0000:00:16.4: PCI bridge to [bus 0f-0f] -05:50:20,523 INFO kernel:pci 0000:00:16.4: bridge window [io disabled] -05:50:20,523 INFO kernel:pci 0000:00:16.4: bridge window [mem 0xd3500000-0xd35fffff] -05:50:20,523 INFO kernel:pci 0000:00:16.4: bridge window [mem 0xd4f00000-0xd4ffffff 64bit pref] -05:50:20,523 INFO kernel:pci 0000:00:16.5: PCI bridge to [bus 10-10] -05:50:20,523 INFO kernel:pci 0000:00:16.5: PCI bridge to [bus 10-10] -05:50:20,523 INFO kernel:pci 0000:00:16.5: bridge window [io disabled] -05:50:20,523 INFO kernel:pci 0000:00:16.5: bridge window [mem 0xd3900000-0xd39fffff] -05:50:20,523 INFO kernel:pci 0000:00:16.5: bridge window [mem 0xd5100000-0xd51fffff 64bit pref] -05:50:20,523 INFO kernel:pci 0000:00:16.6: PCI bridge to [bus 11-11] -05:50:20,523 INFO kernel:pci 0000:00:16.6: PCI bridge to [bus 11-11] -05:50:20,523 INFO kernel:pci 0000:00:16.6: bridge window [io disabled] -05:50:20,523 INFO kernel:pci 0000:00:16.6: bridge window [mem 0xd3d00000-0xd3dfffff] -05:50:20,523 INFO kernel:pci 0000:00:16.6: bridge window [mem 0xd5300000-0xd53fffff 64bit pref] -05:50:20,523 INFO kernel:pci 0000:00:16.7: PCI bridge to [bus 12-12] -05:50:20,523 INFO kernel:pci 0000:00:16.7: PCI bridge to [bus 12-12] -05:50:20,523 INFO kernel:pci 0000:00:16.7: bridge window [io disabled] -05:50:20,523 INFO kernel:pci 0000:00:16.7: bridge window [mem 0xd4100000-0xd41fffff] -05:50:20,523 INFO kernel:pci 0000:00:16.7: bridge window [mem 0xd5500000-0xd55fffff 64bit pref] -05:50:20,523 INFO kernel:pci 0000:00:17.0: PCI bridge to [bus 13-13] -05:50:20,523 INFO kernel:pci 0000:00:17.0: PCI bridge to [bus 13-13] -05:50:20,523 INFO kernel:pci 0000:00:17.0: bridge window [io 0x6000-0x6fff] -05:50:20,523 INFO kernel:pci 0000:00:17.0: bridge window [mem 0xd2600000-0xd26fffff] -05:50:20,523 INFO kernel:pci 0000:00:17.0: bridge window [mem 0xd4600000-0xd46fffff 64bit pref] -05:50:20,523 INFO kernel:pci 0000:00:17.1: PCI bridge to [bus 14-14] -05:50:20,523 INFO kernel:pci 0000:00:17.1: PCI bridge to [bus 14-14] -05:50:20,523 INFO kernel:pci 0000:00:17.1: bridge window [io 0xa000-0xafff] -05:50:20,523 INFO kernel:pci 0000:00:17.1: bridge window [mem 0xd2a00000-0xd2afffff] -05:50:20,523 INFO kernel:pci 0000:00:17.1: bridge window [mem 0xdca00000-0xdcafffff 64bit pref] -05:50:20,523 INFO kernel:pci 0000:00:17.2: PCI bridge to [bus 15-15] -05:50:20,523 INFO kernel:pci 0000:00:17.2: PCI bridge to [bus 15-15] -05:50:20,523 INFO kernel:pci 0000:00:17.2: bridge window [io 0xe000-0xefff] -05:50:20,523 INFO kernel:pci 0000:00:17.2: bridge window [mem 0xd2e00000-0xd2efffff] -05:50:20,523 INFO kernel:pci 0000:00:17.2: bridge window [mem 0xdcc00000-0xdccfffff 64bit pref] -05:50:20,523 INFO kernel:pci 0000:00:17.3: PCI bridge to [bus 16-16] -05:50:20,523 INFO kernel:pci 0000:00:17.3: PCI bridge to [bus 16-16] -05:50:20,523 INFO kernel:pci 0000:00:17.3: bridge window [io disabled] -05:50:20,523 INFO kernel:pci 0000:00:17.3: bridge window [mem 0xd3200000-0xd32fffff] -05:50:20,523 INFO kernel:pci 0000:00:17.3: bridge window [mem 0xdce00000-0xdcefffff 64bit pref] -05:50:20,523 INFO kernel:pci 0000:00:17.4: PCI bridge to [bus 17-17] -05:50:20,523 INFO kernel:pci 0000:00:17.4: PCI bridge to [bus 17-17] -05:50:20,523 INFO kernel:pci 0000:00:17.4: bridge window [io disabled] -05:50:20,523 INFO kernel:pci 0000:00:17.4: bridge window [mem 0xd3600000-0xd36fffff] -05:50:20,523 INFO kernel:pci 0000:00:17.4: bridge window [mem 0xdd000000-0xdd0fffff 64bit pref] -05:50:20,523 INFO kernel:pci 0000:00:17.5: PCI bridge to [bus 18-18] -05:50:20,523 INFO kernel:pci 0000:00:17.5: PCI bridge to [bus 18-18] -05:50:20,523 INFO kernel:pci 0000:00:17.5: bridge window [io disabled] -05:50:20,523 INFO kernel:pci 0000:00:17.5: bridge window [mem 0xd3a00000-0xd3afffff] -05:50:20,523 INFO kernel:pci 0000:00:17.5: bridge window [mem 0xdd200000-0xdd2fffff 64bit pref] -05:50:20,523 INFO kernel:pci 0000:00:17.6: PCI bridge to [bus 19-19] -05:50:20,523 INFO kernel:pci 0000:00:17.6: PCI bridge to [bus 19-19] -05:50:20,523 INFO kernel:pci 0000:00:17.6: bridge window [io disabled] -05:50:20,523 INFO kernel:pci 0000:00:17.6: bridge window [mem 0xd3e00000-0xd3efffff] -05:50:20,523 INFO kernel:pci 0000:00:17.6: bridge window [mem 0xdd400000-0xdd4fffff 64bit pref] -05:50:20,523 INFO kernel:pci 0000:00:17.7: PCI bridge to [bus 1a-1a] -05:50:20,523 INFO kernel:pci 0000:00:17.7: PCI bridge to [bus 1a-1a] -05:50:20,523 INFO kernel:pci 0000:00:17.7: bridge window [io disabled] -05:50:20,523 INFO kernel:pci 0000:00:17.7: bridge window [mem 0xd4200000-0xd42fffff] -05:50:20,523 INFO kernel:pci 0000:00:17.7: bridge window [mem 0xdd600000-0xdd6fffff 64bit pref] -05:50:20,523 INFO kernel:pci 0000:00:18.0: PCI bridge to [bus 1b-1b] -05:50:20,523 INFO kernel:pci 0000:00:18.0: PCI bridge to [bus 1b-1b] -05:50:20,523 INFO kernel:pci 0000:00:18.0: bridge window [io 0x7000-0x7fff] -05:50:20,523 INFO kernel:pci 0000:00:18.0: bridge window [mem 0xd2700000-0xd27fffff] -05:50:20,523 INFO kernel:pci 0000:00:18.0: bridge window [mem 0xd4700000-0xd47fffff 64bit pref] -05:50:20,523 INFO kernel:pci 0000:00:18.1: PCI bridge to [bus 1c-1c] -05:50:20,523 INFO kernel:pci 0000:00:18.1: PCI bridge to [bus 1c-1c] -05:50:20,523 INFO kernel:pci 0000:00:18.1: bridge window [io 0xb000-0xbfff] -05:50:20,523 INFO kernel:pci 0000:00:18.1: bridge window [mem 0xd2b00000-0xd2bfffff] -05:50:20,523 INFO kernel:pci 0000:00:18.1: bridge window [mem 0xd4a00000-0xd4afffff 64bit pref] -05:50:20,523 INFO kernel:pci 0000:00:18.2: PCI bridge to [bus 1d-1d] -05:50:20,523 INFO kernel:pci 0000:00:18.2: PCI bridge to [bus 1d-1d] -05:50:20,523 INFO kernel:pci 0000:00:18.2: bridge window [io disabled] -05:50:20,523 INFO kernel:pci 0000:00:18.2: bridge window [mem 0xd2f00000-0xd2ffffff] -05:50:20,523 INFO kernel:pci 0000:00:18.2: bridge window [mem 0xd4c00000-0xd4cfffff 64bit pref] -05:50:20,523 INFO kernel:pci 0000:00:18.3: PCI bridge to [bus 1e-1e] -05:50:20,523 INFO kernel:pci 0000:00:18.3: PCI bridge to [bus 1e-1e] -05:50:20,523 INFO kernel:pci 0000:00:18.3: bridge window [io disabled] -05:50:20,523 INFO kernel:pci 0000:00:18.3: bridge window [mem 0xd3300000-0xd33fffff] -05:50:20,523 INFO kernel:pci 0000:00:18.3: bridge window [mem 0xd4e00000-0xd4efffff 64bit pref] -05:50:20,523 INFO kernel:pci 0000:00:18.4: PCI bridge to [bus 1f-1f] -05:50:20,523 INFO kernel:pci 0000:00:18.4: PCI bridge to [bus 1f-1f] -05:50:20,523 INFO kernel:pci 0000:00:18.4: bridge window [io disabled] -05:50:20,523 INFO kernel:pci 0000:00:18.4: bridge window [mem 0xd3700000-0xd37fffff] -05:50:20,523 INFO kernel:pci 0000:00:18.4: bridge window [mem 0xd5000000-0xd50fffff 64bit pref] -05:50:20,523 INFO kernel:pci 0000:00:18.5: PCI bridge to [bus 20-20] -05:50:20,523 INFO kernel:pci 0000:00:18.5: PCI bridge to [bus 20-20] -05:50:20,523 INFO kernel:pci 0000:00:18.5: bridge window [io disabled] -05:50:20,523 INFO kernel:pci 0000:00:18.5: bridge window [mem 0xd3b00000-0xd3bfffff] -05:50:20,523 INFO kernel:pci 0000:00:18.5: bridge window [mem 0xd5200000-0xd52fffff 64bit pref] -05:50:20,523 INFO kernel:pci 0000:00:18.6: PCI bridge to [bus 21-21] -05:50:20,523 INFO kernel:pci 0000:00:18.6: PCI bridge to [bus 21-21] -05:50:20,523 INFO kernel:pci 0000:00:18.6: bridge window [io disabled] -05:50:20,523 INFO kernel:pci 0000:00:18.6: bridge window [mem 0xd3f00000-0xd3ffffff] -05:50:20,523 INFO kernel:pci 0000:00:18.6: bridge window [mem 0xd5400000-0xd54fffff 64bit pref] -05:50:20,523 INFO kernel:pci 0000:00:18.7: PCI bridge to [bus 22-22] -05:50:20,523 INFO kernel:pci 0000:00:18.7: PCI bridge to [bus 22-22] -05:50:20,523 INFO kernel:pci 0000:00:18.7: bridge window [io disabled] -05:50:20,523 INFO kernel:pci 0000:00:18.7: bridge window [mem 0xd4300000-0xd43fffff] -05:50:20,523 INFO kernel:pci 0000:00:18.7: bridge window [mem 0xd5600000-0xd56fffff 64bit pref] -05:50:20,523 DEBUG kernel:pci 0000:00:01.0: setting latency timer to 64 -05:50:20,523 DEBUG kernel:pci 0000:00:15.0: setting latency timer to 64 -05:50:20,523 DEBUG kernel:pci 0000:00:15.1: setting latency timer to 64 -05:50:20,523 DEBUG kernel:pci 0000:00:15.2: setting latency timer to 64 -05:50:20,523 DEBUG kernel:pci 0000:00:15.3: setting latency timer to 64 -05:50:20,523 DEBUG kernel:pci 0000:00:15.4: setting latency timer to 64 -05:50:20,523 DEBUG kernel:pci 0000:00:15.5: setting latency timer to 64 -05:50:20,523 DEBUG kernel:pci 0000:00:15.6: setting latency timer to 64 -05:50:20,523 DEBUG kernel:pci 0000:00:15.7: setting latency timer to 64 -05:50:20,523 DEBUG kernel:pci 0000:00:16.0: setting latency timer to 64 -05:50:20,523 DEBUG kernel:pci 0000:00:16.1: setting latency timer to 64 -05:50:20,523 DEBUG kernel:pci 0000:00:16.2: setting latency timer to 64 -05:50:20,523 DEBUG kernel:pci 0000:00:16.3: setting latency timer to 64 -05:50:20,523 DEBUG kernel:pci 0000:00:16.4: setting latency timer to 64 -05:50:20,523 DEBUG kernel:pci 0000:00:16.5: setting latency timer to 64 -05:50:20,523 DEBUG kernel:pci 0000:00:16.6: setting latency timer to 64 -05:50:20,523 DEBUG kernel:pci 0000:00:16.7: setting latency timer to 64 -05:50:20,523 DEBUG kernel:pci 0000:00:17.0: setting latency timer to 64 -05:50:20,523 DEBUG kernel:pci 0000:00:17.1: setting latency timer to 64 -05:50:20,523 DEBUG kernel:pci 0000:00:17.2: setting latency timer to 64 -05:50:20,523 DEBUG kernel:pci 0000:00:17.3: setting latency timer to 64 -05:50:20,523 DEBUG kernel:pci 0000:00:17.4: setting latency timer to 64 -05:50:20,523 DEBUG kernel:pci 0000:00:17.5: setting latency timer to 64 -05:50:20,523 DEBUG kernel:pci 0000:00:17.6: setting latency timer to 64 -05:50:20,523 DEBUG kernel:pci 0000:00:17.7: setting latency timer to 64 -05:50:20,523 DEBUG kernel:pci 0000:00:18.0: setting latency timer to 64 -05:50:20,523 DEBUG kernel:pci 0000:00:18.1: setting latency timer to 64 -05:50:20,523 DEBUG kernel:pci 0000:00:18.2: setting latency timer to 64 -05:50:20,523 DEBUG kernel:pci 0000:00:18.3: setting latency timer to 64 -05:50:20,523 DEBUG kernel:pci 0000:00:18.4: setting latency timer to 64 -05:50:20,523 DEBUG kernel:pci 0000:00:18.5: setting latency timer to 64 -05:50:20,523 DEBUG kernel:pci 0000:00:18.6: setting latency timer to 64 -05:50:20,523 DEBUG kernel:pci 0000:00:18.7: setting latency timer to 64 -05:50:20,523 DEBUG kernel:pci_bus 0000:00: resource 4 [mem 0x000a0000-0x000bffff] -05:50:20,523 DEBUG kernel:pci_bus 0000:00: resource 5 [mem 0x000d0000-0x000d3fff] -05:50:20,523 DEBUG kernel:pci_bus 0000:00: resource 6 [mem 0x000d4000-0x000d7fff] -05:50:20,523 DEBUG kernel:pci_bus 0000:00: resource 7 [mem 0x000d8000-0x000dbfff] -05:50:20,523 DEBUG kernel:pci_bus 0000:00: resource 8 [mem 0x80000000-0xfebfffff] -05:50:20,523 DEBUG kernel:pci_bus 0000:00: resource 9 [io 0x0000-0x0cf7] -05:50:20,523 DEBUG kernel:pci_bus 0000:00: resource 10 [io 0x0d00-0xfeff] -05:50:20,523 DEBUG kernel:pci_bus 0000:02: resource 0 [io 0x2000-0x3fff] -05:50:20,523 DEBUG kernel:pci_bus 0000:02: resource 1 [mem 0xd1000000-0xd23fffff] -05:50:20,523 DEBUG kernel:pci_bus 0000:02: resource 2 [mem 0xdc400000-0xdc9fffff 64bit pref] -05:50:20,523 DEBUG kernel:pci_bus 0000:02: resource 4 [mem 0x000a0000-0x000bffff] -05:50:20,523 DEBUG kernel:pci_bus 0000:02: resource 5 [mem 0x000d0000-0x000d3fff] -05:50:20,523 DEBUG kernel:pci_bus 0000:02: resource 6 [mem 0x000d4000-0x000d7fff] -05:50:20,523 DEBUG kernel:pci_bus 0000:02: resource 7 [mem 0x000d8000-0x000dbfff] -05:50:20,523 DEBUG kernel:pci_bus 0000:02: resource 8 [mem 0x80000000-0xfebfffff] -05:50:20,523 DEBUG kernel:pci_bus 0000:02: resource 9 [io 0x0000-0x0cf7] -05:50:20,523 DEBUG kernel:pci_bus 0000:02: resource 10 [io 0x0d00-0xfeff] -05:50:20,523 DEBUG kernel:pci_bus 0000:03: resource 0 [io 0x4000-0x4fff] -05:50:20,523 DEBUG kernel:pci_bus 0000:03: resource 1 [mem 0xd2400000-0xd24fffff] -05:50:20,523 DEBUG kernel:pci_bus 0000:03: resource 2 [mem 0xd4400000-0xd44fffff 64bit pref] -05:50:20,523 DEBUG kernel:pci_bus 0000:04: resource 0 [io 0x8000-0x8fff] -05:50:20,523 DEBUG kernel:pci_bus 0000:04: resource 1 [mem 0xd2800000-0xd28fffff] -05:50:20,523 DEBUG kernel:pci_bus 0000:04: resource 2 [mem 0xd4800000-0xd48fffff 64bit pref] -05:50:20,523 DEBUG kernel:pci_bus 0000:05: resource 0 [io 0xc000-0xcfff] -05:50:20,523 DEBUG kernel:pci_bus 0000:05: resource 1 [mem 0xd2c00000-0xd2cfffff] -05:50:20,523 DEBUG kernel:pci_bus 0000:05: resource 2 [mem 0xdcb00000-0xdcbfffff 64bit pref] -05:50:20,523 DEBUG kernel:pci_bus 0000:06: resource 1 [mem 0xd3000000-0xd30fffff] -05:50:20,523 DEBUG kernel:pci_bus 0000:06: resource 2 [mem 0xdcd00000-0xdcdfffff 64bit pref] -05:50:20,523 DEBUG kernel:pci_bus 0000:07: resource 1 [mem 0xd3400000-0xd34fffff] -05:50:20,523 DEBUG kernel:pci_bus 0000:07: resource 2 [mem 0xdcf00000-0xdcffffff 64bit pref] -05:50:20,523 DEBUG kernel:pci_bus 0000:08: resource 1 [mem 0xd3800000-0xd38fffff] -05:50:20,523 DEBUG kernel:pci_bus 0000:08: resource 2 [mem 0xdd100000-0xdd1fffff 64bit pref] -05:50:20,523 DEBUG kernel:pci_bus 0000:09: resource 1 [mem 0xd3c00000-0xd3cfffff] -05:50:20,523 DEBUG kernel:pci_bus 0000:09: resource 2 [mem 0xdd300000-0xdd3fffff 64bit pref] -05:50:20,523 DEBUG kernel:pci_bus 0000:0a: resource 1 [mem 0xd4000000-0xd40fffff] -05:50:20,523 DEBUG kernel:pci_bus 0000:0a: resource 2 [mem 0xdd500000-0xdd5fffff 64bit pref] -05:50:20,523 DEBUG kernel:pci_bus 0000:0b: resource 0 [io 0x5000-0x5fff] -05:50:20,523 DEBUG kernel:pci_bus 0000:0b: resource 1 [mem 0xd2500000-0xd25fffff] -05:50:20,523 DEBUG kernel:pci_bus 0000:0b: resource 2 [mem 0xd4500000-0xd45fffff 64bit pref] -05:50:20,523 DEBUG kernel:pci_bus 0000:0c: resource 0 [io 0x9000-0x9fff] -05:50:20,523 DEBUG kernel:pci_bus 0000:0c: resource 1 [mem 0xd2900000-0xd29fffff] -05:50:20,523 DEBUG kernel:pci_bus 0000:0c: resource 2 [mem 0xd4900000-0xd49fffff 64bit pref] -05:50:20,523 DEBUG kernel:pci_bus 0000:0d: resource 0 [io 0xd000-0xdfff] -05:50:20,523 DEBUG kernel:pci_bus 0000:0d: resource 1 [mem 0xd2d00000-0xd2dfffff] -05:50:20,523 DEBUG kernel:pci_bus 0000:0d: resource 2 [mem 0xd4b00000-0xd4bfffff 64bit pref] -05:50:20,523 DEBUG kernel:pci_bus 0000:0e: resource 1 [mem 0xd3100000-0xd31fffff] -05:50:20,523 DEBUG kernel:pci_bus 0000:0e: resource 2 [mem 0xd4d00000-0xd4dfffff 64bit pref] -05:50:20,523 DEBUG kernel:pci_bus 0000:0f: resource 1 [mem 0xd3500000-0xd35fffff] -05:50:20,523 DEBUG kernel:pci_bus 0000:0f: resource 2 [mem 0xd4f00000-0xd4ffffff 64bit pref] -05:50:20,523 DEBUG kernel:pci_bus 0000:10: resource 1 [mem 0xd3900000-0xd39fffff] -05:50:20,523 DEBUG kernel:pci_bus 0000:10: resource 2 [mem 0xd5100000-0xd51fffff 64bit pref] -05:50:20,523 DEBUG kernel:pci_bus 0000:11: resource 1 [mem 0xd3d00000-0xd3dfffff] -05:50:20,523 DEBUG kernel:pci_bus 0000:11: resource 2 [mem 0xd5300000-0xd53fffff 64bit pref] -05:50:20,523 DEBUG kernel:pci_bus 0000:12: resource 1 [mem 0xd4100000-0xd41fffff] -05:50:20,523 DEBUG kernel:pci_bus 0000:12: resource 2 [mem 0xd5500000-0xd55fffff 64bit pref] -05:50:20,523 DEBUG kernel:pci_bus 0000:13: resource 0 [io 0x6000-0x6fff] -05:50:20,523 DEBUG kernel:pci_bus 0000:13: resource 1 [mem 0xd2600000-0xd26fffff] -05:50:20,523 DEBUG kernel:pci_bus 0000:13: resource 2 [mem 0xd4600000-0xd46fffff 64bit pref] -05:50:20,523 DEBUG kernel:pci_bus 0000:14: resource 0 [io 0xa000-0xafff] -05:50:20,523 DEBUG kernel:pci_bus 0000:14: resource 1 [mem 0xd2a00000-0xd2afffff] -05:50:20,523 DEBUG kernel:pci_bus 0000:14: resource 2 [mem 0xdca00000-0xdcafffff 64bit pref] -05:50:20,523 DEBUG kernel:pci_bus 0000:15: resource 0 [io 0xe000-0xefff] -05:50:20,523 DEBUG kernel:pci_bus 0000:15: resource 1 [mem 0xd2e00000-0xd2efffff] -05:50:20,523 DEBUG kernel:pci_bus 0000:15: resource 2 [mem 0xdcc00000-0xdccfffff 64bit pref] -05:50:20,523 DEBUG kernel:pci_bus 0000:16: resource 1 [mem 0xd3200000-0xd32fffff] -05:50:20,523 DEBUG kernel:pci_bus 0000:16: resource 2 [mem 0xdce00000-0xdcefffff 64bit pref] -05:50:20,523 DEBUG kernel:pci_bus 0000:17: resource 1 [mem 0xd3600000-0xd36fffff] -05:50:20,523 DEBUG kernel:pci_bus 0000:17: resource 2 [mem 0xdd000000-0xdd0fffff 64bit pref] -05:50:20,523 DEBUG kernel:pci_bus 0000:18: resource 1 [mem 0xd3a00000-0xd3afffff] -05:50:20,523 DEBUG kernel:pci_bus 0000:18: resource 2 [mem 0xdd200000-0xdd2fffff 64bit pref] -05:50:20,523 DEBUG kernel:pci_bus 0000:19: resource 1 [mem 0xd3e00000-0xd3efffff] -05:50:20,523 DEBUG kernel:pci_bus 0000:19: resource 2 [mem 0xdd400000-0xdd4fffff 64bit pref] -05:50:20,524 DEBUG kernel:pci_bus 0000:1a: resource 1 [mem 0xd4200000-0xd42fffff] -05:50:20,524 DEBUG kernel:pci_bus 0000:1a: resource 2 [mem 0xdd600000-0xdd6fffff 64bit pref] -05:50:20,524 DEBUG kernel:pci_bus 0000:1b: resource 0 [io 0x7000-0x7fff] -05:50:20,524 DEBUG kernel:pci_bus 0000:1b: resource 1 [mem 0xd2700000-0xd27fffff] -05:50:20,524 DEBUG kernel:pci_bus 0000:1b: resource 2 [mem 0xd4700000-0xd47fffff 64bit pref] -05:50:20,524 DEBUG kernel:pci_bus 0000:1c: resource 0 [io 0xb000-0xbfff] -05:50:20,524 DEBUG kernel:pci_bus 0000:1c: resource 1 [mem 0xd2b00000-0xd2bfffff] -05:50:20,524 DEBUG kernel:pci_bus 0000:1c: resource 2 [mem 0xd4a00000-0xd4afffff 64bit pref] -05:50:20,524 DEBUG kernel:pci_bus 0000:1d: resource 1 [mem 0xd2f00000-0xd2ffffff] -05:50:20,524 DEBUG kernel:pci_bus 0000:1d: resource 2 [mem 0xd4c00000-0xd4cfffff 64bit pref] -05:50:20,524 DEBUG kernel:pci_bus 0000:1e: resource 1 [mem 0xd3300000-0xd33fffff] -05:50:20,524 DEBUG kernel:pci_bus 0000:1e: resource 2 [mem 0xd4e00000-0xd4efffff 64bit pref] -05:50:20,524 DEBUG kernel:pci_bus 0000:1f: resource 1 [mem 0xd3700000-0xd37fffff] -05:50:20,524 DEBUG kernel:pci_bus 0000:1f: resource 2 [mem 0xd5000000-0xd50fffff 64bit pref] -05:50:20,524 DEBUG kernel:pci_bus 0000:20: resource 1 [mem 0xd3b00000-0xd3bfffff] -05:50:20,524 DEBUG kernel:pci_bus 0000:20: resource 2 [mem 0xd5200000-0xd52fffff 64bit pref] -05:50:20,524 DEBUG kernel:pci_bus 0000:21: resource 1 [mem 0xd3f00000-0xd3ffffff] -05:50:20,524 DEBUG kernel:pci_bus 0000:21: resource 2 [mem 0xd5400000-0xd54fffff 64bit pref] -05:50:20,524 DEBUG kernel:pci_bus 0000:22: resource 1 [mem 0xd4300000-0xd43fffff] -05:50:20,524 DEBUG kernel:pci_bus 0000:22: resource 2 [mem 0xd5600000-0xd56fffff 64bit pref] -05:50:20,524 INFO kernel:NET: Registered protocol family 2 -05:50:20,524 INFO kernel:IP route cache hash table entries: 65536 (order: 7, 524288 bytes) -05:50:20,524 INFO kernel:TCP established hash table entries: 262144 (order: 10, 4194304 bytes) -05:50:20,524 INFO kernel:TCP bind hash table entries: 65536 (order: 8, 1048576 bytes) -05:50:20,524 INFO kernel:TCP: Hash tables configured (established 262144 bind 65536) -05:50:20,524 INFO kernel:TCP reno registered -05:50:20,524 INFO kernel:NET: Registered protocol family 1 -05:50:20,524 INFO kernel:pci 0000:00:00.0: Limiting direct PCI/PCI transfers -05:50:20,524 DEBUG kernel:pci 0000:00:0f.0: Boot video device -05:50:20,524 INFO kernel:Trying to unpack rootfs image as initramfs... -05:50:20,524 INFO kernel:Freeing initrd memory: 32601k freed -05:50:20,524 INFO kernel:Simple Boot Flag at 0x36 set to 0x80 -05:50:20,524 INFO kernel:audit: initializing netlink socket (disabled) -05:50:20,524 NOTICE kernel:type=2000 audit(1021096218.805:1): initialized -05:50:20,524 INFO kernel:HugeTLB registered 2 MB page size, pre-allocated 0 pages -05:50:20,524 NOTICE kernel:VFS: Disk quotas dquot_6.5.2 -05:50:20,524 WARNING kernel:Dquot-cache hash table entries: 512 (order 0, 4096 bytes) -05:50:20,524 INFO kernel:msgmni has been set to 4005 -05:50:20,526 DEBUG kernel:SELinux: Registering netfilter hooks -05:50:20,526 INFO kernel:alg: No test for stdrng (krng) -05:50:20,526 WARNING kernel:ksign: Installing public key data -05:50:20,526 WARNING kernel:Loading keyring -05:50:20,526 WARNING kernel:- Added public key 8A44323FB303E068 -05:50:20,526 WARNING kernel: - key was been created 363988241 seconds in future -05:50:20,526 WARNING kernel:- User ID: CentOS (Kernel Module GPG key) -05:50:20,526 INFO kernel:Block layer SCSI generic (bsg) driver version 0.4 loaded (major 251) -05:50:20,526 INFO kernel:io scheduler noop registered -05:50:20,526 INFO kernel:io scheduler anticipatory registered -05:50:20,526 INFO kernel:io scheduler deadline registered -05:50:20,526 INFO kernel:io scheduler cfq registered (default) -05:50:20,526 DEBUG kernel:pcieport 0000:00:15.0: setting latency timer to 64 -05:50:20,526 DEBUG kernel: alloc irq_desc for 24 on node -1 -05:50:20,526 DEBUG kernel: alloc kstat_irqs on node -1 -05:50:20,526 DEBUG kernel:pcieport 0000:00:15.0: irq 24 for MSI/MSI-X -05:50:20,526 DEBUG kernel:pcieport 0000:00:15.1: setting latency timer to 64 -05:50:20,526 DEBUG kernel: alloc irq_desc for 25 on node -1 -05:50:20,526 DEBUG kernel: alloc kstat_irqs on node -1 -05:50:20,526 DEBUG kernel:pcieport 0000:00:15.1: irq 25 for MSI/MSI-X -05:50:20,526 DEBUG kernel:pcieport 0000:00:15.2: setting latency timer to 64 -05:50:20,526 DEBUG kernel: alloc irq_desc for 26 on node -1 -05:50:20,526 DEBUG kernel: alloc kstat_irqs on node -1 -05:50:20,526 DEBUG kernel:pcieport 0000:00:15.2: irq 26 for MSI/MSI-X -05:50:20,526 DEBUG kernel:pcieport 0000:00:15.3: setting latency timer to 64 -05:50:20,526 DEBUG kernel: alloc irq_desc for 27 on node -1 -05:50:20,526 DEBUG kernel: alloc kstat_irqs on node -1 -05:50:20,526 DEBUG kernel:pcieport 0000:00:15.3: irq 27 for MSI/MSI-X -05:50:20,526 DEBUG kernel:pcieport 0000:00:15.4: setting latency timer to 64 -05:50:20,526 DEBUG kernel: alloc irq_desc for 28 on node -1 -05:50:20,526 DEBUG kernel: alloc kstat_irqs on node -1 -05:50:20,526 DEBUG kernel:pcieport 0000:00:15.4: irq 28 for MSI/MSI-X -05:50:20,526 DEBUG kernel:pcieport 0000:00:15.5: setting latency timer to 64 -05:50:20,526 DEBUG kernel: alloc irq_desc for 29 on node -1 -05:50:20,526 DEBUG kernel: alloc kstat_irqs on node -1 -05:50:20,526 DEBUG kernel:pcieport 0000:00:15.5: irq 29 for MSI/MSI-X -05:50:20,526 DEBUG kernel:pcieport 0000:00:15.6: setting latency timer to 64 -05:50:20,526 DEBUG kernel: alloc irq_desc for 30 on node -1 -05:50:20,526 DEBUG kernel: alloc kstat_irqs on node -1 -05:50:20,526 DEBUG kernel:pcieport 0000:00:15.6: irq 30 for MSI/MSI-X -05:50:20,526 DEBUG kernel:pcieport 0000:00:15.7: setting latency timer to 64 -05:50:20,526 DEBUG kernel: alloc irq_desc for 31 on node -1 -05:50:20,526 DEBUG kernel: alloc kstat_irqs on node -1 -05:50:20,526 DEBUG kernel:pcieport 0000:00:15.7: irq 31 for MSI/MSI-X -05:50:20,526 DEBUG kernel:pcieport 0000:00:16.0: setting latency timer to 64 -05:50:20,526 DEBUG kernel: alloc irq_desc for 32 on node -1 -05:50:20,526 DEBUG kernel: alloc kstat_irqs on node -1 -05:50:20,526 DEBUG kernel:pcieport 0000:00:16.0: irq 32 for MSI/MSI-X -05:50:20,526 DEBUG kernel:pcieport 0000:00:16.1: setting latency timer to 64 -05:50:20,526 DEBUG kernel: alloc irq_desc for 33 on node -1 -05:50:20,526 DEBUG kernel: alloc kstat_irqs on node -1 -05:50:20,526 DEBUG kernel:pcieport 0000:00:16.1: irq 33 for MSI/MSI-X -05:50:20,526 DEBUG kernel:pcieport 0000:00:16.2: setting latency timer to 64 -05:50:20,526 DEBUG kernel: alloc irq_desc for 34 on node -1 -05:50:20,526 DEBUG kernel: alloc kstat_irqs on node -1 -05:50:20,526 DEBUG kernel:pcieport 0000:00:16.2: irq 34 for MSI/MSI-X -05:50:20,526 DEBUG kernel:pcieport 0000:00:16.3: setting latency timer to 64 -05:50:20,526 DEBUG kernel: alloc irq_desc for 35 on node -1 -05:50:20,526 DEBUG kernel: alloc kstat_irqs on node -1 -05:50:20,526 DEBUG kernel:pcieport 0000:00:16.3: irq 35 for MSI/MSI-X -05:50:20,526 DEBUG kernel:pcieport 0000:00:16.4: setting latency timer to 64 -05:50:20,526 DEBUG kernel: alloc irq_desc for 36 on node -1 -05:50:20,526 DEBUG kernel: alloc kstat_irqs on node -1 -05:50:20,526 DEBUG kernel:pcieport 0000:00:16.4: irq 36 for MSI/MSI-X -05:50:20,526 DEBUG kernel:pcieport 0000:00:16.5: setting latency timer to 64 -05:50:20,526 DEBUG kernel: alloc irq_desc for 37 on node -1 -05:50:20,526 DEBUG kernel: alloc kstat_irqs on node -1 -05:50:20,526 DEBUG kernel:pcieport 0000:00:16.5: irq 37 for MSI/MSI-X -05:50:20,526 DEBUG kernel:pcieport 0000:00:16.6: setting latency timer to 64 -05:50:20,526 DEBUG kernel: alloc irq_desc for 38 on node -1 -05:50:20,526 DEBUG kernel: alloc kstat_irqs on node -1 -05:50:20,526 DEBUG kernel:pcieport 0000:00:16.6: irq 38 for MSI/MSI-X -05:50:20,526 DEBUG kernel:pcieport 0000:00:16.7: setting latency timer to 64 -05:50:20,526 DEBUG kernel: alloc irq_desc for 39 on node -1 -05:50:20,526 DEBUG kernel: alloc kstat_irqs on node -1 -05:50:20,526 DEBUG kernel:pcieport 0000:00:16.7: irq 39 for MSI/MSI-X -05:50:20,526 DEBUG kernel:pcieport 0000:00:17.0: setting latency timer to 64 -05:50:20,526 DEBUG kernel: alloc irq_desc for 40 on node -1 -05:50:20,526 DEBUG kernel: alloc kstat_irqs on node -1 -05:50:20,526 DEBUG kernel:pcieport 0000:00:17.0: irq 40 for MSI/MSI-X -05:50:20,526 DEBUG kernel:pcieport 0000:00:17.1: setting latency timer to 64 -05:50:20,526 DEBUG kernel: alloc irq_desc for 41 on node -1 -05:50:20,526 DEBUG kernel: alloc kstat_irqs on node -1 -05:50:20,526 DEBUG kernel:pcieport 0000:00:17.1: irq 41 for MSI/MSI-X -05:50:20,526 DEBUG kernel:pcieport 0000:00:17.2: setting latency timer to 64 -05:50:20,526 DEBUG kernel: alloc irq_desc for 42 on node -1 -05:50:20,526 DEBUG kernel: alloc kstat_irqs on node -1 -05:50:20,526 DEBUG kernel:pcieport 0000:00:17.2: irq 42 for MSI/MSI-X -05:50:20,526 DEBUG kernel:pcieport 0000:00:17.3: setting latency timer to 64 -05:50:20,526 DEBUG kernel: alloc irq_desc for 43 on node -1 -05:50:20,526 DEBUG kernel: alloc kstat_irqs on node -1 -05:50:20,526 DEBUG kernel:pcieport 0000:00:17.3: irq 43 for MSI/MSI-X -05:50:20,526 DEBUG kernel:pcieport 0000:00:17.4: setting latency timer to 64 -05:50:20,526 DEBUG kernel: alloc irq_desc for 44 on node -1 -05:50:20,526 DEBUG kernel: alloc kstat_irqs on node -1 -05:50:20,526 DEBUG kernel:pcieport 0000:00:17.4: irq 44 for MSI/MSI-X -05:50:20,526 DEBUG kernel:pcieport 0000:00:17.5: setting latency timer to 64 -05:50:20,526 DEBUG kernel: alloc irq_desc for 45 on node -1 -05:50:20,526 DEBUG kernel: alloc kstat_irqs on node -1 -05:50:20,526 DEBUG kernel:pcieport 0000:00:17.5: irq 45 for MSI/MSI-X -05:50:20,526 DEBUG kernel:pcieport 0000:00:17.6: setting latency timer to 64 -05:50:20,526 DEBUG kernel: alloc irq_desc for 46 on node -1 -05:50:20,526 DEBUG kernel: alloc kstat_irqs on node -1 -05:50:20,526 DEBUG kernel:pcieport 0000:00:17.6: irq 46 for MSI/MSI-X -05:50:20,526 DEBUG kernel:pcieport 0000:00:17.7: setting latency timer to 64 -05:50:20,526 DEBUG kernel: alloc irq_desc for 47 on node -1 -05:50:20,526 DEBUG kernel: alloc kstat_irqs on node -1 -05:50:20,526 DEBUG kernel:pcieport 0000:00:17.7: irq 47 for MSI/MSI-X -05:50:20,526 DEBUG kernel:pcieport 0000:00:18.0: setting latency timer to 64 -05:50:20,526 DEBUG kernel: alloc irq_desc for 48 on node -1 -05:50:20,526 DEBUG kernel: alloc kstat_irqs on node -1 -05:50:20,526 DEBUG kernel:pcieport 0000:00:18.0: irq 48 for MSI/MSI-X -05:50:20,526 DEBUG kernel:pcieport 0000:00:18.1: setting latency timer to 64 -05:50:20,526 DEBUG kernel: alloc irq_desc for 49 on node -1 -05:50:20,526 DEBUG kernel: alloc kstat_irqs on node -1 -05:50:20,526 DEBUG kernel:pcieport 0000:00:18.1: irq 49 for MSI/MSI-X -05:50:20,526 DEBUG kernel:pcieport 0000:00:18.2: setting latency timer to 64 -05:50:20,526 DEBUG kernel: alloc irq_desc for 50 on node -1 -05:50:20,526 DEBUG kernel: alloc kstat_irqs on node -1 -05:50:20,526 DEBUG kernel:pcieport 0000:00:18.2: irq 50 for MSI/MSI-X -05:50:20,526 DEBUG kernel:pcieport 0000:00:18.3: setting latency timer to 64 -05:50:20,526 DEBUG kernel: alloc irq_desc for 51 on node -1 -05:50:20,526 DEBUG kernel: alloc kstat_irqs on node -1 -05:50:20,526 DEBUG kernel:pcieport 0000:00:18.3: irq 51 for MSI/MSI-X -05:50:20,526 DEBUG kernel:pcieport 0000:00:18.4: setting latency timer to 64 -05:50:20,526 DEBUG kernel: alloc irq_desc for 52 on node -1 -05:50:20,526 DEBUG kernel: alloc kstat_irqs on node -1 -05:50:20,526 DEBUG kernel:pcieport 0000:00:18.4: irq 52 for MSI/MSI-X -05:50:20,526 DEBUG kernel:pcieport 0000:00:18.5: setting latency timer to 64 -05:50:20,526 DEBUG kernel: alloc irq_desc for 53 on node -1 -05:50:20,526 DEBUG kernel: alloc kstat_irqs on node -1 -05:50:20,526 DEBUG kernel:pcieport 0000:00:18.5: irq 53 for MSI/MSI-X -05:50:20,526 DEBUG kernel:pcieport 0000:00:18.6: setting latency timer to 64 -05:50:20,526 DEBUG kernel: alloc irq_desc for 54 on node -1 -05:50:20,526 DEBUG kernel: alloc kstat_irqs on node -1 -05:50:20,526 DEBUG kernel:pcieport 0000:00:18.6: irq 54 for MSI/MSI-X -05:50:20,526 DEBUG kernel:pcieport 0000:00:18.7: setting latency timer to 64 -05:50:20,526 DEBUG kernel: alloc irq_desc for 55 on node -1 -05:50:20,526 DEBUG kernel: alloc kstat_irqs on node -1 -05:50:20,526 DEBUG kernel:pcieport 0000:00:18.7: irq 55 for MSI/MSI-X -05:50:20,526 INFO kernel:pci_hotplug: PCI Hot Plug PCI Core version: 0.5 -05:50:20,526 INFO kernel:pciehp 0000:00:15.0:pcie04: HPC vendor_id 15ad device_id 7a0 ss_vid 0 ss_did 0 -05:50:20,526 DEBUG kernel:pciehp 0000:00:15.0:pcie04: service driver pciehp loaded -05:50:20,526 INFO kernel:pciehp 0000:00:15.1:pcie04: HPC vendor_id 15ad device_id 7a0 ss_vid 0 ss_did 0 -05:50:20,526 DEBUG kernel:pciehp 0000:00:15.1:pcie04: service driver pciehp loaded -05:50:20,526 INFO kernel:pciehp 0000:00:15.2:pcie04: HPC vendor_id 15ad device_id 7a0 ss_vid 0 ss_did 0 -05:50:20,526 DEBUG kernel:pciehp 0000:00:15.2:pcie04: service driver pciehp loaded -05:50:20,526 INFO kernel:pciehp 0000:00:15.3:pcie04: HPC vendor_id 15ad device_id 7a0 ss_vid 0 ss_did 0 -05:50:20,526 DEBUG kernel:pciehp 0000:00:15.3:pcie04: service driver pciehp loaded -05:50:20,526 INFO kernel:pciehp 0000:00:15.4:pcie04: HPC vendor_id 15ad device_id 7a0 ss_vid 0 ss_did 0 -05:50:20,526 DEBUG kernel:pciehp 0000:00:15.4:pcie04: service driver pciehp loaded -05:50:20,526 INFO kernel:pciehp 0000:00:15.5:pcie04: HPC vendor_id 15ad device_id 7a0 ss_vid 0 ss_did 0 -05:50:20,526 DEBUG kernel:pciehp 0000:00:15.5:pcie04: service driver pciehp loaded -05:50:20,526 INFO kernel:pciehp 0000:00:15.6:pcie04: HPC vendor_id 15ad device_id 7a0 ss_vid 0 ss_did 0 -05:50:20,526 DEBUG kernel:pciehp 0000:00:15.6:pcie04: service driver pciehp loaded -05:50:20,526 INFO kernel:pciehp 0000:00:15.7:pcie04: HPC vendor_id 15ad device_id 7a0 ss_vid 0 ss_did 0 -05:50:20,526 DEBUG kernel:pciehp 0000:00:15.7:pcie04: service driver pciehp loaded -05:50:20,526 INFO kernel:pciehp 0000:00:16.0:pcie04: HPC vendor_id 15ad device_id 7a0 ss_vid 0 ss_did 0 -05:50:20,526 DEBUG kernel:pciehp 0000:00:16.0:pcie04: service driver pciehp loaded -05:50:20,526 INFO kernel:pciehp 0000:00:16.1:pcie04: HPC vendor_id 15ad device_id 7a0 ss_vid 0 ss_did 0 -05:50:20,526 DEBUG kernel:pciehp 0000:00:16.1:pcie04: service driver pciehp loaded -05:50:20,526 INFO kernel:pciehp 0000:00:16.2:pcie04: HPC vendor_id 15ad device_id 7a0 ss_vid 0 ss_did 0 -05:50:20,526 DEBUG kernel:pciehp 0000:00:16.2:pcie04: service driver pciehp loaded -05:50:20,526 INFO kernel:pciehp 0000:00:16.3:pcie04: HPC vendor_id 15ad device_id 7a0 ss_vid 0 ss_did 0 -05:50:20,526 DEBUG kernel:pciehp 0000:00:16.3:pcie04: service driver pciehp loaded -05:50:20,526 INFO kernel:pciehp 0000:00:16.4:pcie04: HPC vendor_id 15ad device_id 7a0 ss_vid 0 ss_did 0 -05:50:20,526 DEBUG kernel:pciehp 0000:00:16.4:pcie04: service driver pciehp loaded -05:50:20,526 INFO kernel:pciehp 0000:00:16.5:pcie04: HPC vendor_id 15ad device_id 7a0 ss_vid 0 ss_did 0 -05:50:20,526 DEBUG kernel:pciehp 0000:00:16.5:pcie04: service driver pciehp loaded -05:50:20,526 INFO kernel:pciehp 0000:00:16.6:pcie04: HPC vendor_id 15ad device_id 7a0 ss_vid 0 ss_did 0 -05:50:20,526 DEBUG kernel:pciehp 0000:00:16.6:pcie04: service driver pciehp loaded -05:50:20,526 INFO kernel:pciehp 0000:00:16.7:pcie04: HPC vendor_id 15ad device_id 7a0 ss_vid 0 ss_did 0 -05:50:20,526 DEBUG kernel:pciehp 0000:00:16.7:pcie04: service driver pciehp loaded -05:50:20,526 INFO kernel:pciehp 0000:00:17.0:pcie04: HPC vendor_id 15ad device_id 7a0 ss_vid 0 ss_did 0 -05:50:20,526 DEBUG kernel:pciehp 0000:00:17.0:pcie04: service driver pciehp loaded -05:50:20,526 INFO kernel:pciehp 0000:00:17.1:pcie04: HPC vendor_id 15ad device_id 7a0 ss_vid 0 ss_did 0 -05:50:20,526 DEBUG kernel:pciehp 0000:00:17.1:pcie04: service driver pciehp loaded -05:50:20,526 INFO kernel:pciehp 0000:00:17.2:pcie04: HPC vendor_id 15ad device_id 7a0 ss_vid 0 ss_did 0 -05:50:20,526 DEBUG kernel:pciehp 0000:00:17.2:pcie04: service driver pciehp loaded -05:50:20,526 INFO kernel:pciehp 0000:00:17.3:pcie04: HPC vendor_id 15ad device_id 7a0 ss_vid 0 ss_did 0 -05:50:20,526 DEBUG kernel:pciehp 0000:00:17.3:pcie04: service driver pciehp loaded -05:50:20,526 INFO kernel:pciehp 0000:00:17.4:pcie04: HPC vendor_id 15ad device_id 7a0 ss_vid 0 ss_did 0 -05:50:20,526 DEBUG kernel:pciehp 0000:00:17.4:pcie04: service driver pciehp loaded -05:50:20,526 INFO kernel:pciehp 0000:00:17.5:pcie04: HPC vendor_id 15ad device_id 7a0 ss_vid 0 ss_did 0 -05:50:20,526 DEBUG kernel:pciehp 0000:00:17.5:pcie04: service driver pciehp loaded -05:50:20,526 INFO kernel:pciehp 0000:00:17.6:pcie04: HPC vendor_id 15ad device_id 7a0 ss_vid 0 ss_did 0 -05:50:20,526 DEBUG kernel:pciehp 0000:00:17.6:pcie04: service driver pciehp loaded -05:50:20,526 INFO kernel:pciehp 0000:00:17.7:pcie04: HPC vendor_id 15ad device_id 7a0 ss_vid 0 ss_did 0 -05:50:20,526 DEBUG kernel:pciehp 0000:00:17.7:pcie04: service driver pciehp loaded -05:50:20,526 INFO kernel:pciehp 0000:00:18.0:pcie04: HPC vendor_id 15ad device_id 7a0 ss_vid 0 ss_did 0 -05:50:20,526 DEBUG kernel:pciehp 0000:00:18.0:pcie04: service driver pciehp loaded -05:50:20,526 INFO kernel:pciehp 0000:00:18.1:pcie04: HPC vendor_id 15ad device_id 7a0 ss_vid 0 ss_did 0 -05:50:20,526 DEBUG kernel:pciehp 0000:00:18.1:pcie04: service driver pciehp loaded -05:50:20,526 INFO kernel:pciehp 0000:00:18.2:pcie04: HPC vendor_id 15ad device_id 7a0 ss_vid 0 ss_did 0 -05:50:20,526 DEBUG kernel:pciehp 0000:00:18.2:pcie04: service driver pciehp loaded -05:50:20,526 INFO kernel:pciehp 0000:00:18.3:pcie04: HPC vendor_id 15ad device_id 7a0 ss_vid 0 ss_did 0 -05:50:20,526 DEBUG kernel:pciehp 0000:00:18.3:pcie04: service driver pciehp loaded -05:50:20,526 INFO kernel:pciehp 0000:00:18.4:pcie04: HPC vendor_id 15ad device_id 7a0 ss_vid 0 ss_did 0 -05:50:20,526 DEBUG kernel:pciehp 0000:00:18.4:pcie04: service driver pciehp loaded -05:50:20,526 INFO kernel:pciehp 0000:00:18.5:pcie04: HPC vendor_id 15ad device_id 7a0 ss_vid 0 ss_did 0 -05:50:20,526 DEBUG kernel:pciehp 0000:00:18.5:pcie04: service driver pciehp loaded -05:50:20,526 INFO kernel:pciehp 0000:00:18.6:pcie04: HPC vendor_id 15ad device_id 7a0 ss_vid 0 ss_did 0 -05:50:20,526 DEBUG kernel:pciehp 0000:00:18.6:pcie04: service driver pciehp loaded -05:50:20,526 INFO kernel:pciehp 0000:00:18.7:pcie04: HPC vendor_id 15ad device_id 7a0 ss_vid 0 ss_did 0 -05:50:20,526 DEBUG kernel:pciehp 0000:00:18.7:pcie04: service driver pciehp loaded -05:50:20,526 INFO kernel:pciehp: PCI Express Hot Plug Controller Driver version: 0.4 -05:50:20,526 INFO kernel:acpiphp: ACPI Hot Plug PCI Controller Driver version: 0.5 -05:50:20,526 INFO kernel:acpiphp: Slot [32] registered -05:50:20,526 INFO kernel:acpiphp: Slot [33] registered -05:50:20,526 INFO kernel:acpiphp: Slot [34] registered -05:50:20,526 INFO kernel:acpiphp: Slot [35] registered -05:50:20,526 INFO kernel:acpiphp: Slot [36] registered -05:50:20,526 INFO kernel:acpiphp: Slot [37] registered -05:50:20,526 INFO kernel:acpiphp: Slot [38] registered -05:50:20,527 INFO kernel:acpiphp: Slot [39] registered -05:50:20,527 INFO kernel:acpiphp: Slot [40] registered -05:50:20,527 INFO kernel:acpiphp: Slot [41] registered -05:50:20,527 INFO kernel:acpiphp: Slot [42] registered -05:50:20,527 INFO kernel:acpiphp: Slot [43] registered -05:50:20,527 INFO kernel:acpiphp: Slot [44] registered -05:50:20,527 INFO kernel:acpiphp: Slot [45] registered -05:50:20,527 INFO kernel:acpiphp: Slot [46] registered -05:50:20,527 INFO kernel:acpiphp: Slot [47] registered -05:50:20,527 INFO kernel:acpiphp: Slot [48] registered -05:50:20,527 INFO kernel:acpiphp: Slot [49] registered -05:50:20,527 INFO kernel:acpiphp: Slot [50] registered -05:50:20,527 INFO kernel:acpiphp: Slot [51] registered -05:50:20,527 INFO kernel:acpiphp: Slot [52] registered -05:50:20,527 INFO kernel:acpiphp: Slot [53] registered -05:50:20,527 INFO kernel:acpiphp: Slot [54] registered -05:50:20,527 INFO kernel:acpiphp: Slot [55] registered -05:50:20,527 INFO kernel:acpiphp: Slot [56] registered -05:50:20,527 INFO kernel:acpiphp: Slot [57] registered -05:50:20,527 INFO kernel:acpiphp: Slot [58] registered -05:50:20,527 INFO kernel:acpiphp: Slot [59] registered -05:50:20,527 INFO kernel:acpiphp: Slot [60] registered -05:50:20,527 INFO kernel:acpiphp: Slot [61] registered -05:50:20,527 INFO kernel:acpiphp: Slot [62] registered -05:50:20,527 INFO kernel:acpiphp: Slot [63] registered -05:50:20,527 WARNING kernel:acpiphp_glue: Slot 160 already registered by another hotplug driver -05:50:20,527 WARNING kernel:acpiphp_glue: Slot 192 already registered by another hotplug driver -05:50:20,527 WARNING kernel:acpiphp_glue: Slot 224 already registered by another hotplug driver -05:50:20,527 WARNING kernel:acpiphp_glue: Slot 256 already registered by another hotplug driver -05:50:20,527 WARNING kernel:acpiphp_glue: Slot 161 already registered by another hotplug driver -05:50:20,527 WARNING kernel:acpiphp_glue: Slot 162 already registered by another hotplug driver -05:50:20,527 WARNING kernel:acpiphp_glue: Slot 163 already registered by another hotplug driver -05:50:20,527 WARNING kernel:acpiphp_glue: Slot 164 already registered by another hotplug driver -05:50:20,527 WARNING kernel:acpiphp_glue: Slot 165 already registered by another hotplug driver -05:50:20,527 WARNING kernel:acpiphp_glue: Slot 166 already registered by another hotplug driver -05:50:20,527 WARNING kernel:acpiphp_glue: Slot 167 already registered by another hotplug driver -05:50:20,527 WARNING kernel:acpiphp_glue: Slot 193 already registered by another hotplug driver -05:50:20,527 WARNING kernel:acpiphp_glue: Slot 194 already registered by another hotplug driver -05:50:20,527 WARNING kernel:acpiphp_glue: Slot 195 already registered by another hotplug driver -05:50:20,527 WARNING kernel:acpiphp_glue: Slot 196 already registered by another hotplug driver -05:50:20,527 WARNING kernel:acpiphp_glue: Slot 197 already registered by another hotplug driver -05:50:20,527 WARNING kernel:acpiphp_glue: Slot 198 already registered by another hotplug driver -05:50:20,527 WARNING kernel:acpiphp_glue: Slot 199 already registered by another hotplug driver -05:50:20,527 WARNING kernel:acpiphp_glue: Slot 225 already registered by another hotplug driver -05:50:20,527 WARNING kernel:acpiphp_glue: Slot 226 already registered by another hotplug driver -05:50:20,527 WARNING kernel:acpiphp_glue: Slot 227 already registered by another hotplug driver -05:50:20,527 WARNING kernel:acpiphp_glue: Slot 228 already registered by another hotplug driver -05:50:20,527 WARNING kernel:acpiphp_glue: Slot 229 already registered by another hotplug driver -05:50:20,527 WARNING kernel:acpiphp_glue: Slot 230 already registered by another hotplug driver -05:50:20,527 WARNING kernel:acpiphp_glue: Slot 231 already registered by another hotplug driver -05:50:20,527 WARNING kernel:acpiphp_glue: Slot 257 already registered by another hotplug driver -05:50:20,527 WARNING kernel:acpiphp_glue: Slot 258 already registered by another hotplug driver -05:50:20,527 WARNING kernel:acpiphp_glue: Slot 259 already registered by another hotplug driver -05:50:20,527 WARNING kernel:acpiphp_glue: Slot 260 already registered by another hotplug driver -05:50:20,527 WARNING kernel:acpiphp_glue: Slot 261 already registered by another hotplug driver -05:50:20,527 WARNING kernel:acpiphp_glue: Slot 262 already registered by another hotplug driver -05:50:20,527 WARNING kernel:acpiphp_glue: Slot 263 already registered by another hotplug driver -05:50:20,527 INFO kernel:ipmi message handler version 39.2 -05:50:20,527 INFO kernel:IPMI System Interface driver. -05:50:20,527 INFO kernel:ipmi_si: Adding default-specified kcs state machine -05:50:20,527 INFO kernel:ipmi_si: Trying default-specified kcs state machine at i/o address 0xca2, slave address 0x0, irq 0 -05:50:20,527 INFO kernel:ipmi_si: Interface detection failed -05:50:20,527 INFO kernel:ipmi_si: Adding default-specified smic state machine -05:50:20,527 INFO kernel:ipmi_si: Trying default-specified smic state machine at i/o address 0xca9, slave address 0x0, irq 0 -05:50:20,527 INFO kernel:ipmi_si: Interface detection failed -05:50:20,527 INFO kernel:ipmi_si: Adding default-specified bt state machine -05:50:20,527 INFO kernel:ipmi_si: Trying default-specified bt state machine at i/o address 0xe4, slave address 0x0, irq 0 -05:50:20,527 INFO kernel:ipmi_si: Interface detection failed -05:50:20,527 WARNING kernel:ipmi_si: Unable to find any System Interface(s) -05:50:20,527 INFO kernel:ACPI: AC Adapter [ACAD] (on-line) -05:50:20,527 INFO kernel:input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input0 -05:50:20,527 INFO kernel:ACPI: Power Button [PWRF] -05:50:20,527 DEBUG kernel:ACPI: acpi_idle registered with cpuidle -05:50:20,527 WARNING kernel:ACPI Exception: AE_NOT_FOUND, No or invalid critical threshold (20090903/thermal-386) -05:50:20,527 INFO kernel:GHES: HEST is not enabled! -05:50:20,527 INFO kernel:Non-volatile memory driver v1.3 -05:50:20,527 INFO kernel:Linux agpgart interface v0.103 -05:50:20,527 INFO kernel:agpgart-intel 0000:00:00.0: Intel 440BX Chipset -05:50:20,527 INFO kernel:agpgart-intel 0000:00:00.0: AGP aperture is 256M @ 0x0 -05:50:20,527 INFO kernel:crash memory driver: version 1.1 -05:50:20,527 INFO kernel:Serial: 8250/16550 driver, 4 ports, IRQ sharing enabled -05:50:20,527 INFO kernel:serial8250: ttyS0 at I/O 0x3f8 (irq = 4) is a 16550A -05:50:20,527 INFO kernel:serial8250: ttyS1 at I/O 0x2f8 (irq = 3) is a 16550A -05:50:20,527 INFO kernel:00:0a: ttyS0 at I/O 0x3f8 (irq = 4) is a 16550A -05:50:20,527 INFO kernel:00:0b: ttyS1 at I/O 0x2f8 (irq = 3) is a 16550A -05:50:20,527 INFO kernel:brd: module loaded -05:50:20,527 INFO kernel:loop: module loaded -05:50:20,527 INFO kernel:input: Macintosh mouse button emulation as /devices/virtual/input/input1 -05:50:20,527 INFO kernel:Fixed MDIO Bus: probed -05:50:20,527 INFO kernel:ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver -05:50:20,527 INFO kernel:ohci_hcd: USB 1.1 'Open' Host Controller (OHCI) Driver -05:50:20,527 INFO kernel:uhci_hcd: USB Universal Host Controller Interface driver -05:50:20,527 INFO kernel:PNP: PS/2 Controller [PNP0303:KBC,PNP0f13:MOUS] at 0x60,0x64 irq 1,12 -05:50:20,527 INFO kernel:Refined TSC clocksource calibration: 2400.081 MHz. -05:50:20,527 INFO kernel:Switching to clocksource tsc -05:50:20,527 INFO kernel:serio: i8042 KBD port at 0x60,0x64 irq 1 -05:50:20,527 INFO kernel:serio: i8042 AUX port at 0x60,0x64 irq 12 -05:50:20,527 INFO kernel:mice: PS/2 mouse device common for all mice -05:50:20,527 INFO kernel:rtc_cmos 00:04: rtc core: registered rtc_cmos as rtc0 -05:50:20,527 INFO kernel:rtc0: alarms up to one month, y3k, 114 bytes nvram, hpet irqs -05:50:20,527 INFO kernel:cpuidle: using governor ladder -05:50:20,527 INFO kernel:cpuidle: using governor menu -05:50:20,527 INFO kernel:EFI Variables Facility v0.08 2004-May-17 -05:50:20,527 INFO kernel:usbcore: registered new interface driver hiddev -05:50:20,527 INFO kernel:usbcore: registered new interface driver usbhid -05:50:20,527 INFO kernel:usbhid: v2.6:USB HID core driver -05:50:20,527 INFO kernel:GRE over IPv4 demultiplexor driver -05:50:20,527 INFO kernel:input: AT Translated Set 2 keyboard as /devices/platform/i8042/serio0/input/input2 -05:50:20,527 INFO kernel:TCP cubic registered -05:50:20,527 INFO kernel:Initializing XFRM netlink socket -05:50:20,527 INFO kernel:NET: Registered protocol family 17 -05:50:20,527 WARNING kernel:registered taskstats version 1 -05:50:20,527 INFO kernel:input: ImPS/2 Generic Wheel Mouse as /devices/platform/i8042/serio1/input/input3 -05:50:20,527 INFO kernel:rtc_cmos 00:04: setting system clock to 2002-05-11 05:50:20 UTC (1021096220) -05:50:20,527 INFO kernel:Initalizing network drop monitor service -05:50:20,527 INFO kernel:Freeing unused kernel memory: 1276k freed -05:50:20,527 INFO kernel:Write protecting the kernel read-only data: 10240k -05:50:20,527 INFO kernel:Freeing unused kernel memory: 800k freed -05:50:20,527 INFO kernel:Freeing unused kernel memory: 1588k freed -05:50:22,553 INFO kernel:squashfs: version 4.0 (2009/01/31) Phillip Lougher -05:50:22,564 INFO kernel:Loading iSCSI transport class v2.0-870. -05:50:22,583 NOTICE kernel:iscsi: registered transport (tcp) -05:50:22,589 INFO kernel:Floppy drive(s): fd0 is 1.44M -05:50:22,600 INFO kernel:FDC 0 is a post-1991 82077 -05:50:22,604 INFO kernel:BIOS EDD facility v0.16 2004-Jun-25, 2 devices found -05:50:22,608 INFO kernel:input: PC Speaker as /devices/platform/pcspkr/input/input4 -05:50:22,615 INFO kernel:No iBFT detected. -05:50:22,648 INFO kernel:NET: Registered protocol family 10 -05:50:22,648 INFO kernel:lo: Disabled Privacy Extensions -05:50:22,720 DEBUG kernel:ata_piix 0000:00:07.1: version 2.13 -05:50:22,720 INFO kernel:scsi0 : ata_piix -05:50:22,721 INFO kernel:scsi1 : ata_piix -05:50:22,721 INFO kernel:ata1: PATA max UDMA/33 cmd 0x1f0 ctl 0x3f6 bmdma 0x10c0 irq 14 -05:50:22,721 INFO kernel:ata2: PATA max UDMA/33 cmd 0x170 ctl 0x376 bmdma 0x10c8 irq 15 -05:50:22,731 ERR udevd-work: device node '/dev/rtc' already exists, link to '/dev/rtc0' will not overwrite it -05:50:22,907 INFO kernel:ata2.00: ATAPI: VMware Virtual IDE CDROM Drive, 00000001, max UDMA/33 -05:50:22,913 INFO kernel:ata2.00: configured for UDMA/33 -05:50:22,913 NOTICE kernel:scsi 1:0:0:0: CD-ROM NECVMWar VMware IDE CDR10 1.00 PQ: 0 ANSI: 5 -05:50:22,936 INFO kernel:Fusion MPT base driver 3.04.20 -05:50:22,936 INFO kernel:Copyright (c) 1999-2008 LSI Corporation -05:50:22,947 INFO kernel:Fusion MPT SPI Host driver 3.04.20 -05:50:22,947 DEBUG kernel: alloc irq_desc for 17 on node -1 -05:50:22,947 DEBUG kernel: alloc kstat_irqs on node -1 -05:50:22,947 INFO kernel:mptspi 0000:00:10.0: PCI INT A -> GSI 17 (level, low) -> IRQ 17 -05:50:22,947 INFO kernel:mptbase: ioc0: Initiating bringup -05:50:22,966 INFO kernel:ioc0: LSI53C1030 B0: Capabilities={Initiator} -05:50:23,007 INFO kernel:scsi2 : ioc0: LSI53C1030 B0, FwRev=01032920h, Ports=1, MaxQ=128, IRQ=17 -05:50:23,035 NOTICE kernel:scsi 2:0:0:0: Direct-Access VMware Virtual disk 1.0 PQ: 0 ANSI: 2 -05:50:23,035 INFO kernel:scsi target2:0:0: Beginning Domain Validation -05:50:23,035 INFO kernel:scsi target2:0:0: Domain Validation skipping write tests -05:50:23,035 INFO kernel:scsi target2:0:0: Ending Domain Validation -05:50:23,035 INFO kernel:scsi target2:0:0: FAST-40 WIDE SCSI 80.0 MB/s ST (25 ns, offset 127) -05:50:23,036 NOTICE kernel:scsi 2:0:1:0: Direct-Access VMware Virtual disk 1.0 PQ: 0 ANSI: 2 -05:50:23,036 INFO kernel:scsi target2:0:1: Beginning Domain Validation -05:50:23,037 INFO kernel:scsi target2:0:1: Domain Validation skipping write tests -05:50:23,037 INFO kernel:scsi target2:0:1: Ending Domain Validation -05:50:23,037 INFO kernel:scsi target2:0:1: FAST-40 WIDE SCSI 80.0 MB/s ST (25 ns, offset 127) -05:50:23,061 WARNING kernel:sr0: scsi3-mmc drive: 1x/1x writer dvd-ram cd/rw xa/form2 cdda tray -05:50:23,061 INFO kernel:Uniform CD-ROM driver Revision: 3.20 -05:50:23,061 DEBUG kernel:sr 1:0:0:0: Attached scsi CD-ROM sr0 -05:50:23,072 INFO kernel:e1000: Intel(R) PRO/1000 Network Driver - version 7.3.21-k8-NAPI -05:50:23,072 INFO kernel:e1000: Copyright (c) 1999-2006 Intel Corporation. -05:50:23,072 DEBUG kernel: alloc irq_desc for 18 on node -1 -05:50:23,072 DEBUG kernel: alloc kstat_irqs on node -1 -05:50:23,072 INFO kernel:e1000 0000:02:00.0: PCI INT A -> GSI 18 (level, low) -> IRQ 18 -05:50:23,072 DEBUG kernel:e1000 0000:02:00.0: setting latency timer to 64 -05:50:23,422 INFO kernel:e1000 0000:02:00.0: eth0: (PCI:66MHz:32-bit) 00:0c:29:5c:6a:b8 -05:50:23,422 INFO kernel:e1000 0000:02:00.0: eth0: Intel(R) PRO/1000 Network Connection -05:50:23,422 DEBUG kernel: alloc irq_desc for 19 on node -1 -05:50:23,422 DEBUG kernel: alloc kstat_irqs on node -1 -05:50:23,422 INFO kernel:e1000 0000:02:01.0: PCI INT A -> GSI 19 (level, low) -> IRQ 19 -05:50:23,422 DEBUG kernel:e1000 0000:02:01.0: setting latency timer to 64 -05:50:23,766 INFO kernel:e1000 0000:02:01.0: eth1: (PCI:66MHz:32-bit) 00:0c:29:5c:6a:c2 -05:50:23,766 INFO kernel:e1000 0000:02:01.0: eth1: Intel(R) PRO/1000 Network Connection -05:50:23,766 DEBUG kernel: alloc irq_desc for 16 on node -1 -05:50:23,766 DEBUG kernel: alloc kstat_irqs on node -1 -05:50:23,766 INFO kernel:e1000 0000:02:02.0: PCI INT A -> GSI 16 (level, low) -> IRQ 16 -05:50:23,766 DEBUG kernel:e1000 0000:02:02.0: setting latency timer to 64 -05:50:24,116 INFO kernel:e1000 0000:02:02.0: eth2: (PCI:66MHz:32-bit) 00:0c:29:5c:6a:cc -05:50:24,116 INFO kernel:e1000 0000:02:02.0: eth2: Intel(R) PRO/1000 Network Connection -05:50:24,116 INFO kernel:e1000 0000:02:03.0: PCI INT A -> GSI 17 (level, low) -> IRQ 17 -05:50:24,116 DEBUG kernel:e1000 0000:02:03.0: setting latency timer to 64 -05:50:24,461 INFO kernel:e1000 0000:02:03.0: eth3: (PCI:66MHz:32-bit) 00:0c:29:5c:6a:d6 -05:50:24,461 INFO kernel:e1000 0000:02:03.0: eth3: Intel(R) PRO/1000 Network Connection -05:50:24,497 NOTICE kernel:sd 2:0:0:0: [sda] 33554432 512-byte logical blocks: (17.1 GB/16.0 GiB) -05:50:24,497 NOTICE kernel:sd 2:0:0:0: [sda] Write Protect is off -05:50:24,497 DEBUG kernel:sd 2:0:0:0: [sda] Mode Sense: 61 00 00 00 -05:50:24,497 NOTICE kernel:sd 2:0:0:0: [sda] Cache data unavailable -05:50:24,497 ERR kernel:sd 2:0:0:0: [sda] Assuming drive cache: write through -05:50:24,497 NOTICE kernel:sd 2:0:0:0: [sda] Cache data unavailable -05:50:24,497 ERR kernel:sd 2:0:0:0: [sda] Assuming drive cache: write through -05:50:24,497 INFO kernel: sda: -05:50:24,497 NOTICE kernel:sd 2:0:1:0: [sdb] 33554432 512-byte logical blocks: (17.1 GB/16.0 GiB) -05:50:24,497 NOTICE kernel:sd 2:0:1:0: [sdb] Write Protect is off -05:50:24,497 DEBUG kernel:sd 2:0:1:0: [sdb] Mode Sense: 61 00 00 00 -05:50:24,497 NOTICE kernel:sd 2:0:1:0: [sdb] Cache data unavailable -05:50:24,497 ERR kernel:sd 2:0:1:0: [sdb] Assuming drive cache: write through -05:50:24,497 NOTICE kernel:sd 2:0:1:0: [sdb] Cache data unavailable -05:50:24,497 ERR kernel:sd 2:0:1:0: [sdb] Assuming drive cache: write through -05:50:24,502 INFO kernel: sdb: -05:50:24,502 NOTICE kernel:sd 2:0:1:0: [sdb] Cache data unavailable -05:50:24,502 ERR kernel:sd 2:0:1:0: [sdb] Assuming drive cache: write through -05:50:24,502 NOTICE kernel:sd 2:0:1:0: [sdb] Attached SCSI disk -05:50:24,505 WARNING kernel: sda1 sda2 -05:50:24,531 NOTICE kernel:sd 2:0:0:0: [sda] Cache data unavailable -05:50:24,531 ERR kernel:sd 2:0:0:0: [sda] Assuming drive cache: write through -05:50:24,531 NOTICE kernel:sd 2:0:0:0: [sda] Attached SCSI disk -05:50:24,537 NOTICE kernel:sr 1:0:0:0: Attached scsi generic sg0 type 5 -05:50:24,538 NOTICE kernel:sd 2:0:0:0: Attached scsi generic sg1 type 0 -05:50:24,538 NOTICE kernel:sd 2:0:1:0: Attached scsi generic sg2 type 0 -05:50:28,728 ERR udevd-work: device node '/dev/rtc' already exists, link to '/dev/rtc0' will not overwrite it -05:50:31,010 INFO NetworkManager: NetworkManager (version 0.8.1-66.el6) is starting... -05:50:31,010 INFO NetworkManager: Read config file /etc/NetworkManager/NetworkManager.conf -05:50:31,012 INFO NetworkManager: trying to start the modem manager... -05:50:31,016 INFO NetworkManager: monitoring kernel firmware directory '/lib/firmware'. -05:50:31,016 INFO NetworkManager: Bonding/Bridging/VLAN support enabled -05:50:31,017 NOTICE NetworkManager: ifcfg-rh: Acquired D-Bus service com.redhat.ifcfgrh1 -05:50:31,018 INFO NetworkManager: Loaded plugin ifcfg-rh: (c) 2007 - 2008 Red Hat, Inc. To report bugs please use the NetworkManager mailing list. -05:50:31,018 INFO NetworkManager: Loaded plugin keyfile: (c) 2007 - 2008 Red Hat, Inc. To report bugs please use the NetworkManager mailing list. -05:50:31,018 NOTICE NetworkManager: ifcfg-rh: parsing /etc/sysconfig/network-scripts/ifcfg-eth3 ... -05:50:31,020 NOTICE NetworkManager: ifcfg-rh: read connection 'System eth3' -05:50:31,020 NOTICE NetworkManager: ifcfg-rh: parsing /etc/sysconfig/network-scripts/ifcfg-eth2 ... -05:50:31,021 NOTICE NetworkManager: ifcfg-rh: read connection 'System eth2' -05:50:31,021 NOTICE NetworkManager: ifcfg-rh: parsing /etc/sysconfig/network-scripts/ifcfg-eth1 ... -05:50:31,022 NOTICE NetworkManager: ifcfg-rh: read connection 'System eth1' -05:50:31,022 NOTICE NetworkManager: ifcfg-rh: parsing /etc/sysconfig/network-scripts/ifcfg-eth0 ... -05:50:31,022 NOTICE NetworkManager: ifcfg-rh: read connection 'System eth0' -05:50:31,023 WARNING NetworkManager: Can not read directory '/etc/NetworkManager/system-connections': Error opening directory '/etc/NetworkManager/system-connections': No such file or directory -05:50:31,025 INFO NetworkManager: WiFi enabled by radio killswitch; enabled by state file -05:50:31,025 INFO NetworkManager: WWAN enabled by radio killswitch; enabled by state file -05:50:31,025 INFO NetworkManager: WiMAX enabled by radio killswitch; enabled by state file -05:50:31,025 INFO NetworkManager: Networking is enabled by state file -05:50:31,044 INFO kernel:802.1Q VLAN Support v1.8 Ben Greear -05:50:31,044 INFO kernel:All bugs added by David S. Miller -05:50:31,045 INFO NetworkManager: (eth0): carrier is OFF -05:50:31,045 INFO NetworkManager: (eth0): new Ethernet device (driver: 'e1000' ifindex: 2) -05:50:31,045 INFO NetworkManager: (eth0): exported as /org/freedesktop/NetworkManager/Devices/0 -05:50:31,045 INFO NetworkManager: (eth0): now managed -05:50:31,045 INFO NetworkManager: (eth0): device state change: 1 -> 2 (reason 2) -05:50:31,045 INFO NetworkManager: (eth0): bringing up device. -05:50:31,051 INFO kernel:e1000: eth0 NIC Link is Up 1000 Mbps Full Duplex, Flow Control: None -05:50:31,055 INFO kernel:8021q: adding VLAN 0 to HW filter on device eth0 -05:50:31,056 INFO NetworkManager: (eth0): carrier now ON (device state 2) -05:50:31,056 INFO NetworkManager: (eth0): preparing device. -05:50:31,056 INFO NetworkManager: (eth0): deactivating device (reason: 2). -05:50:31,057 INFO NetworkManager: (eth1): carrier is OFF -05:50:31,058 INFO NetworkManager: (eth1): new Ethernet device (driver: 'e1000' ifindex: 3) -05:50:31,058 INFO NetworkManager: (eth1): exported as /org/freedesktop/NetworkManager/Devices/1 -05:50:31,058 INFO NetworkManager: (eth1): now managed -05:50:31,058 INFO NetworkManager: (eth1): device state change: 1 -> 2 (reason 2) -05:50:31,058 INFO NetworkManager: (eth1): bringing up device. -05:50:31,063 INFO kernel:e1000: eth1 NIC Link is Up 1000 Mbps Full Duplex, Flow Control: None -05:50:31,068 INFO kernel:8021q: adding VLAN 0 to HW filter on device eth1 -05:50:31,068 INFO NetworkManager: (eth1): carrier now ON (device state 2) -05:50:31,068 INFO NetworkManager: (eth1): preparing device. -05:50:31,068 INFO NetworkManager: (eth1): deactivating device (reason: 2). -05:50:31,069 INFO NetworkManager: (eth2): carrier is OFF -05:50:31,070 INFO NetworkManager: (eth2): new Ethernet device (driver: 'e1000' ifindex: 4) -05:50:31,070 INFO NetworkManager: (eth2): exported as /org/freedesktop/NetworkManager/Devices/2 -05:50:31,070 INFO NetworkManager: (eth2): now managed -05:50:31,070 INFO NetworkManager: (eth2): device state change: 1 -> 2 (reason 2) -05:50:31,070 INFO NetworkManager: (eth2): bringing up device. -05:50:31,076 INFO kernel:e1000: eth2 NIC Link is Up 1000 Mbps Full Duplex, Flow Control: None -05:50:31,080 INFO kernel:8021q: adding VLAN 0 to HW filter on device eth2 -05:50:31,080 INFO NetworkManager: (eth2): carrier now ON (device state 2) -05:50:31,080 INFO NetworkManager: (eth2): preparing device. -05:50:31,080 INFO NetworkManager: (eth2): deactivating device (reason: 2). -05:50:31,081 INFO NetworkManager: (eth3): carrier is OFF -05:50:31,082 INFO NetworkManager: (eth3): new Ethernet device (driver: 'e1000' ifindex: 5) -05:50:31,082 INFO NetworkManager: (eth3): exported as /org/freedesktop/NetworkManager/Devices/3 -05:50:31,082 INFO NetworkManager: (eth3): now managed -05:50:31,082 INFO NetworkManager: (eth3): device state change: 1 -> 2 (reason 2) -05:50:31,082 INFO NetworkManager: (eth3): bringing up device. -05:50:31,086 INFO kernel:e1000: eth3 NIC Link is Up 1000 Mbps Full Duplex, Flow Control: None -05:50:31,091 INFO kernel:8021q: adding VLAN 0 to HW filter on device eth3 -05:50:31,091 INFO NetworkManager: (eth3): carrier now ON (device state 2) -05:50:31,091 INFO NetworkManager: (eth3): preparing device. -05:50:31,091 INFO NetworkManager: (eth3): deactivating device (reason: 2). -05:50:31,093 INFO NetworkManager: (eth0): carrier now OFF (device state 2) -05:50:31,094 INFO NetworkManager: (eth0): carrier now ON (device state 2) -05:50:31,094 WARNING NetworkManager: (nm-device.c:4447):nm_device_queue_state: runtime check failed: (priv->queued_state.id == 0) -05:50:31,094 INFO NetworkManager: (eth1): carrier now OFF (device state 2) -05:50:31,094 INFO NetworkManager: (eth1): carrier now ON (device state 2) -05:50:31,094 WARNING NetworkManager: (nm-device.c:4447):nm_device_queue_state: runtime check failed: (priv->queued_state.id == 0) -05:50:31,094 INFO NetworkManager: (eth2): carrier now OFF (device state 2) -05:50:31,095 INFO NetworkManager: (eth2): carrier now ON (device state 2) -05:50:31,095 WARNING NetworkManager: (nm-device.c:4447):nm_device_queue_state: runtime check failed: (priv->queued_state.id == 0) -05:50:31,095 INFO NetworkManager: (eth3): carrier now OFF (device state 2) -05:50:31,095 INFO NetworkManager: (eth3): carrier now ON (device state 2) -05:50:31,095 WARNING NetworkManager: (nm-device.c:4447):nm_device_queue_state: runtime check failed: (priv->queued_state.id == 0) -05:50:31,096 INFO NetworkManager: Trying to start the supplicant... -05:50:31,097 INFO NetworkManager: (eth0): device state change: 2 -> 3 (reason 40) -05:50:31,097 INFO NetworkManager: (eth1): device state change: 2 -> 3 (reason 40) -05:50:31,097 INFO NetworkManager: (eth2): device state change: 2 -> 3 (reason 40) -05:50:31,098 INFO NetworkManager: (eth3): device state change: 2 -> 3 (reason 40) -05:50:31,104 INFO NetworkManager: wpa_supplicant started -05:50:32,010 WARNING NetworkManager: error requesting auth for org.freedesktop.NetworkManager.enable-disable-network: (26) Remote Exception invoking org.freedesktop.PolicyKit1.Authority.CheckAuthorization() on /org/freedesktop/PolicyKit1/Authority at name org.freedesktop.PolicyKit1: org.freedesktop.DBus.Error.Spawn.ExecFailed: Cannot launch daemon, file not found or permissions invalid -05:50:32,010 WARNING NetworkManager: error requesting auth for org.freedesktop.NetworkManager.sleep-wake: (26) Remote Exception invoking org.freedesktop.PolicyKit1.Authority.CheckAuthorization() on /org/freedesktop/PolicyKit1/Authority at name org.freedesktop.PolicyKit1: org.freedesktop.DBus.Error.Spawn.ExecFailed: Cannot launch daemon, file not found or permissions invalid -05:50:32,010 WARNING NetworkManager: error requesting auth for org.freedesktop.NetworkManager.enable-disable-wifi: (26) Remote Exception invoking org.freedesktop.PolicyKit1.Authority.CheckAuthorization() on /org/freedesktop/PolicyKit1/Authority at name org.freedesktop.PolicyKit1: org.freedesktop.DBus.Error.Spawn.ExecFailed: Cannot launch daemon, file not found or permissions invalid -05:50:32,010 WARNING NetworkManager: error requesting auth for org.freedesktop.NetworkManager.enable-disable-wwan: (26) Remote Exception invoking org.freedesktop.PolicyKit1.Authority.CheckAuthorization() on /org/freedesktop/PolicyKit1/Authority at name org.freedesktop.PolicyKit1: org.freedesktop.DBus.Error.Spawn.ExecFailed: Cannot launch daemon, file not found or permissions invalid -05:50:32,010 WARNING NetworkManager: error requesting auth for org.freedesktop.NetworkManager.use-user-connections: (26) Remote Exception invoking org.freedesktop.PolicyKit1.Authority.CheckAuthorization() on /org/freedesktop/PolicyKit1/Authority at name org.freedesktop.PolicyKit1: org.freedesktop.DBus.Error.Spawn.ExecFailed: Cannot launch daemon, file not found or permissions invalid -05:50:32,010 WARNING NetworkManager: error requesting auth for org.freedesktop.NetworkManager.network-control: (26) Remote Exception invoking org.freedesktop.PolicyKit1.Authority.CheckAuthorization() on /org/freedesktop/PolicyKit1/Authority at name org.freedesktop.PolicyKit1: org.freedesktop.DBus.Error.Spawn.ExecFailed: Cannot launch daemon, file not found or permissions invalid -05:50:32,010 WARNING NetworkManager: error requesting auth for org.freedesktop.network-manager-settings.system.wifi.share.open: (26) Remote Exception invoking org.freedesktop.PolicyKit1.Authority.CheckAuthorization() on /org/freedesktop/PolicyKit1/Authority at name org.freedesktop.PolicyKit1: org.freedesktop.DBus.Error.Spawn.ExecFailed: Cannot launch daemon, file not found or permissions invalid -05:50:32,010 WARNING NetworkManager: error requesting auth for org.freedesktop.network-manager-settings.system.wifi.share.protected: (26) Remote Exception invoking org.freedesktop.PolicyKit1.Authority.CheckAuthorization() on /org/freedesktop/PolicyKit1/Authority at name org.freedesktop.PolicyKit1: org.freedesktop.DBus.Error.Spawn.ExecFailed: Cannot launch daemon, file not found or permissions invalid -05:50:32,019 WARNING NetworkManager: error requesting auth for org.freedesktop.NetworkManager.enable-disable-network: (26) Remote Exception invoking org.freedesktop.PolicyKit1.Authority.CheckAuthorization() on /org/freedesktop/PolicyKit1/Authority at name org.freedesktop.PolicyKit1: org.freedesktop.DBus.Error.Spawn.ExecFailed: Cannot launch daemon, file not found or permissions invalid -05:50:32,019 WARNING NetworkManager: error requesting auth for org.freedesktop.NetworkManager.sleep-wake: (26) Remote Exception invoking org.freedesktop.PolicyKit1.Authority.CheckAuthorization() on /org/freedesktop/PolicyKit1/Authority at name org.freedesktop.PolicyKit1: org.freedesktop.DBus.Error.Spawn.ExecFailed: Cannot launch daemon, file not found or permissions invalid -05:50:32,019 WARNING NetworkManager: error requesting auth for org.freedesktop.NetworkManager.enable-disable-wifi: (26) Remote Exception invoking org.freedesktop.PolicyKit1.Authority.CheckAuthorization() on /org/freedesktop/PolicyKit1/Authority at name org.freedesktop.PolicyKit1: org.freedesktop.DBus.Error.Spawn.ExecFailed: Cannot launch daemon, file not found or permissions invalid -05:50:32,019 WARNING NetworkManager: error requesting auth for org.freedesktop.NetworkManager.enable-disable-wwan: (26) Remote Exception invoking org.freedesktop.PolicyKit1.Authority.CheckAuthorization() on /org/freedesktop/PolicyKit1/Authority at name org.freedesktop.PolicyKit1: org.freedesktop.DBus.Error.Spawn.ExecFailed: Cannot launch daemon, file not found or permissions invalid -05:50:32,019 WARNING NetworkManager: error requesting auth for org.freedesktop.NetworkManager.use-user-connections: (26) Remote Exception invoking org.freedesktop.PolicyKit1.Authority.CheckAuthorization() on /org/freedesktop/PolicyKit1/Authority at name org.freedesktop.PolicyKit1: org.freedesktop.DBus.Error.Spawn.ExecFailed: Cannot launch daemon, file not found or permissions invalid -05:50:32,019 WARNING NetworkManager: error requesting auth for org.freedesktop.NetworkManager.network-control: (26) Remote Exception invoking org.freedesktop.PolicyKit1.Authority.CheckAuthorization() on /org/freedesktop/PolicyKit1/Authority at name org.freedesktop.PolicyKit1: org.freedesktop.DBus.Error.Spawn.ExecFailed: Cannot launch daemon, file not found or permissions invalid -05:50:32,019 WARNING NetworkManager: error requesting auth for org.freedesktop.network-manager-settings.system.wifi.share.open: (26) Remote Exception invoking org.freedesktop.PolicyKit1.Authority.CheckAuthorization() on /org/freedesktop/PolicyKit1/Authority at name org.freedesktop.PolicyKit1: org.freedesktop.DBus.Error.Spawn.ExecFailed: Cannot launch daemon, file not found or permissions invalid -05:50:32,019 WARNING NetworkManager: error requesting auth for org.freedesktop.network-manager-settings.system.wifi.share.protected: (26) Remote Exception invoking org.freedesktop.PolicyKit1.Authority.CheckAuthorization() on /org/freedesktop/PolicyKit1/Authority at name org.freedesktop.PolicyKit1: org.freedesktop.DBus.Error.Spawn.ExecFailed: Cannot launch daemon, file not found or permissions invalid -05:50:32,026 WARNING NetworkManager: error requesting auth for org.freedesktop.NetworkManager.enable-disable-network: (26) Remote Exception invoking org.freedesktop.PolicyKit1.Authority.CheckAuthorization() on /org/freedesktop/PolicyKit1/Authority at name org.freedesktop.PolicyKit1: org.freedesktop.DBus.Error.Spawn.ExecFailed: Cannot launch daemon, file not found or permissions invalid -05:50:32,026 WARNING NetworkManager: error requesting auth for org.freedesktop.NetworkManager.sleep-wake: (26) Remote Exception invoking org.freedesktop.PolicyKit1.Authority.CheckAuthorization() on /org/freedesktop/PolicyKit1/Authority at name org.freedesktop.PolicyKit1: org.freedesktop.DBus.Error.Spawn.ExecFailed: Cannot launch daemon, file not found or permissions invalid -05:50:32,027 WARNING NetworkManager: error requesting auth for org.freedesktop.NetworkManager.enable-disable-wifi: (26) Remote Exception invoking org.freedesktop.PolicyKit1.Authority.CheckAuthorization() on /org/freedesktop/PolicyKit1/Authority at name org.freedesktop.PolicyKit1: org.freedesktop.DBus.Error.Spawn.ExecFailed: Cannot launch daemon, file not found or permissions invalid -05:50:32,027 WARNING NetworkManager: error requesting auth for org.freedesktop.NetworkManager.enable-disable-wwan: (26) Remote Exception invoking org.freedesktop.PolicyKit1.Authority.CheckAuthorization() on /org/freedesktop/PolicyKit1/Authority at name org.freedesktop.PolicyKit1: org.freedesktop.DBus.Error.Spawn.ExecFailed: Cannot launch daemon, file not found or permissions invalid -05:50:32,027 WARNING NetworkManager: error requesting auth for org.freedesktop.NetworkManager.use-user-connections: (26) Remote Exception invoking org.freedesktop.PolicyKit1.Authority.CheckAuthorization() on /org/freedesktop/PolicyKit1/Authority at name org.freedesktop.PolicyKit1: org.freedesktop.DBus.Error.Spawn.ExecFailed: Cannot launch daemon, file not found or permissions invalid -05:50:32,027 WARNING NetworkManager: error requesting auth for org.freedesktop.NetworkManager.network-control: (26) Remote Exception invoking org.freedesktop.PolicyKit1.Authority.CheckAuthorization() on /org/freedesktop/PolicyKit1/Authority at name org.freedesktop.PolicyKit1: org.freedesktop.DBus.Error.Spawn.ExecFailed: Cannot launch daemon, file not found or permissions invalid -05:50:32,027 WARNING NetworkManager: error requesting auth for org.freedesktop.network-manager-settings.system.wifi.share.open: (26) Remote Exception invoking org.freedesktop.PolicyKit1.Authority.CheckAuthorization() on /org/freedesktop/PolicyKit1/Authority at name org.freedesktop.PolicyKit1: org.freedesktop.DBus.Error.Spawn.ExecFailed: Cannot launch daemon, file not found or permissions invalid -05:50:32,027 WARNING NetworkManager: error requesting auth for org.freedesktop.network-manager-settings.system.wifi.share.protected: (26) Remote Exception invoking org.freedesktop.PolicyKit1.Authority.CheckAuthorization() on /org/freedesktop/PolicyKit1/Authority at name org.freedesktop.PolicyKit1: org.freedesktop.DBus.Error.Spawn.ExecFailed: Cannot launch daemon, file not found or permissions invalid -05:50:32,039 WARNING NetworkManager: error requesting auth for org.freedesktop.NetworkManager.enable-disable-network: (26) Remote Exception invoking org.freedesktop.PolicyKit1.Authority.CheckAuthorization() on /org/freedesktop/PolicyKit1/Authority at name org.freedesktop.PolicyKit1: org.freedesktop.DBus.Error.Spawn.ExecFailed: Cannot launch daemon, file not found or permissions invalid -05:50:32,039 WARNING NetworkManager: error requesting auth for org.freedesktop.NetworkManager.sleep-wake: (26) Remote Exception invoking org.freedesktop.PolicyKit1.Authority.CheckAuthorization() on /org/freedesktop/PolicyKit1/Authority at name org.freedesktop.PolicyKit1: org.freedesktop.DBus.Error.Spawn.ExecFailed: Cannot launch daemon, file not found or permissions invalid -05:50:32,039 WARNING NetworkManager: error requesting auth for org.freedesktop.NetworkManager.enable-disable-wifi: (26) Remote Exception invoking org.freedesktop.PolicyKit1.Authority.CheckAuthorization() on /org/freedesktop/PolicyKit1/Authority at name org.freedesktop.PolicyKit1: org.freedesktop.DBus.Error.Spawn.ExecFailed: Cannot launch daemon, file not found or permissions invalid -05:50:32,039 WARNING NetworkManager: error requesting auth for org.freedesktop.NetworkManager.enable-disable-wwan: (26) Remote Exception invoking org.freedesktop.PolicyKit1.Authority.CheckAuthorization() on /org/freedesktop/PolicyKit1/Authority at name org.freedesktop.PolicyKit1: org.freedesktop.DBus.Error.Spawn.ExecFailed: Cannot launch daemon, file not found or permissions invalid -05:50:32,039 WARNING NetworkManager: error requesting auth for org.freedesktop.NetworkManager.use-user-connections: (26) Remote Exception invoking org.freedesktop.PolicyKit1.Authority.CheckAuthorization() on /org/freedesktop/PolicyKit1/Authority at name org.freedesktop.PolicyKit1: org.freedesktop.DBus.Error.Spawn.ExecFailed: Cannot launch daemon, file not found or permissions invalid -05:50:32,039 WARNING NetworkManager: error requesting auth for org.freedesktop.NetworkManager.network-control: (26) Remote Exception invoking org.freedesktop.PolicyKit1.Authority.CheckAuthorization() on /org/freedesktop/PolicyKit1/Authority at name org.freedesktop.PolicyKit1: org.freedesktop.DBus.Error.Spawn.ExecFailed: Cannot launch daemon, file not found or permissions invalid -05:50:32,039 WARNING NetworkManager: error requesting auth for org.freedesktop.network-manager-settings.system.wifi.share.open: (26) Remote Exception invoking org.freedesktop.PolicyKit1.Authority.CheckAuthorization() on /org/freedesktop/PolicyKit1/Authority at name org.freedesktop.PolicyKit1: org.freedesktop.DBus.Error.Spawn.ExecFailed: Cannot launch daemon, file not found or permissions invalid -05:50:32,039 WARNING NetworkManager: error requesting auth for org.freedesktop.network-manager-settings.system.wifi.share.protected: (26) Remote Exception invoking org.freedesktop.PolicyKit1.Authority.CheckAuthorization() on /org/freedesktop/PolicyKit1/Authority at name org.freedesktop.PolicyKit1: org.freedesktop.DBus.Error.Spawn.ExecFailed: Cannot launch daemon, file not found or permissions invalid -05:50:33,054 NOTICE NetworkManager: ifcfg-rh: updating /etc/sysconfig/network-scripts/ifcfg-eth0 -05:50:33,057 INFO NetworkManager: Auto-activating connection 'System eth0'. -05:50:33,057 INFO NetworkManager: Activation (eth0) starting connection 'System eth0' -05:50:33,058 INFO NetworkManager: (eth0): device state change: 3 -> 4 (reason 0) -05:50:33,058 INFO NetworkManager: Activation (eth0) Stage 1 of 5 (Device Prepare) scheduled... -05:50:33,058 INFO NetworkManager: Activation (eth0) Stage 1 of 5 (Device Prepare) started... -05:50:33,059 INFO NetworkManager: Activation (eth0) Stage 2 of 5 (Device Configure) scheduled... -05:50:33,059 INFO NetworkManager: Activation (eth0) Stage 1 of 5 (Device Prepare) complete. -05:50:33,059 INFO NetworkManager: Activation (eth0) Stage 2 of 5 (Device Configure) starting... -05:50:33,059 INFO NetworkManager: (eth0): device state change: 4 -> 5 (reason 0) -05:50:33,059 INFO NetworkManager: Activation (eth0) Stage 2 of 5 (Device Configure) successful. -05:50:33,059 INFO NetworkManager: Activation (eth0) Stage 3 of 5 (IP Configure Start) scheduled. -05:50:33,059 INFO NetworkManager: Activation (eth0) Stage 2 of 5 (Device Configure) complete. -05:50:33,059 INFO NetworkManager: Activation (eth0) Stage 3 of 5 (IP Configure Start) started... -05:50:33,059 INFO NetworkManager: (eth0): device state change: 5 -> 7 (reason 0) -05:50:33,060 INFO NetworkManager: Activation (eth0) Beginning DHCPv4 transaction -05:50:33,062 INFO dhclient: Internet Systems Consortium DHCP Client 4.1.1-P1 -05:50:33,062 INFO NetworkManager: dhclient started with pid 654 -05:50:33,063 INFO NetworkManager: Activation (eth0) DHCPv4 will time out in 45 seconds -05:50:33,063 INFO dhclient: Copyright 2004-2010 Internet Systems Consortium. -05:50:33,063 INFO dhclient: All rights reserved. -05:50:33,063 INFO dhclient: For info, please visit https://www.isc.org/software/dhcp/ -05:50:33,063 INFO dhclient: -05:50:33,063 INFO NetworkManager: Activation (eth0) Stage 3 of 5 (IP Configure Start) complete. -05:50:33,066 INFO NetworkManager: (eth0): DHCPv4 state changed nbi -> preinit -05:50:33,068 INFO dhclient: Listening on LPF/eth0/00:0c:29:5c:6a:b8 -05:50:33,068 INFO dhclient: Sending on LPF/eth0/00:0c:29:5c:6a:b8 -05:50:33,068 INFO dhclient: Sending on Socket/fallback -05:50:37,004 INFO dhclient: DHCPDISCOVER on eth0 to 255.255.255.255 port 67 interval 7 (xid=0x3433ec2c) -05:50:37,048 INFO dhclient: DHCPOFFER from 10.145.88.211 -05:50:37,048 INFO dhclient: DHCPREQUEST on eth0 to 255.255.255.255 port 67 (xid=0x3433ec2c) -05:50:38,084 INFO dhclient: DHCPACK from 10.145.88.211 (xid=0x3433ec2c) -05:50:38,087 INFO dhclient: bound to 10.145.88.104 -- renewal in 10764 seconds. -05:50:38,087 INFO NetworkManager: (eth0): DHCPv4 state changed preinit -> bound -05:50:38,087 INFO NetworkManager: Activation (eth0) Stage 4 of 5 (IP4 Configure Get) scheduled... -05:50:38,087 INFO NetworkManager: Activation (eth0) Stage 4 of 5 (IP4 Configure Get) started... -05:50:38,087 INFO NetworkManager: address 10.145.88.104 -05:50:38,087 INFO NetworkManager: prefix 23 (255.255.254.0) -05:50:38,087 INFO NetworkManager: gateway 10.145.88.1 -05:50:38,087 INFO NetworkManager: hostname 'server2' -05:50:38,087 INFO NetworkManager: nameserver '10.145.88.211' -05:50:38,088 INFO NetworkManager: Activation (eth0) Stage 5 of 5 (IP Configure Commit) scheduled... -05:50:38,088 INFO NetworkManager: Activation (eth0) Stage 4 of 5 (IP4 Configure Get) complete. -05:50:38,088 INFO NetworkManager: Activation (eth0) Stage 5 of 5 (IP Configure Commit) started... -05:50:39,089 INFO NetworkManager: (eth0): device state change: 7 -> 8 (reason 0) -05:50:39,090 INFO NetworkManager: Policy set 'System eth0' (eth0) as default for IPv4 routing and DNS. -05:50:39,090 INFO NetworkManager: Setting system hostname to 'server2' (from DHCPv4) -05:50:39,091 INFO NetworkManager: Activation (eth0) successful, device activated. -05:50:39,092 INFO NetworkManager: Activation (eth0) Stage 5 of 5 (IP Configure Commit) complete. -05:50:55,174 WARNING NetworkManager: error requesting auth for org.freedesktop.NetworkManager.enable-disable-network: (26) Remote Exception invoking org.freedesktop.PolicyKit1.Authority.CheckAuthorization() on /org/freedesktop/PolicyKit1/Authority at name org.freedesktop.PolicyKit1: org.freedesktop.DBus.Error.Spawn.ExecFailed: Cannot launch daemon, file not found or permissions invalid -05:50:55,174 WARNING NetworkManager: error requesting auth for org.freedesktop.NetworkManager.sleep-wake: (26) Remote Exception invoking org.freedesktop.PolicyKit1.Authority.CheckAuthorization() on /org/freedesktop/PolicyKit1/Authority at name org.freedesktop.PolicyKit1: org.freedesktop.DBus.Error.Spawn.ExecFailed: Cannot launch daemon, file not found or permissions invalid -05:50:55,174 WARNING NetworkManager: error requesting auth for org.freedesktop.NetworkManager.enable-disable-wifi: (26) Remote Exception invoking org.freedesktop.PolicyKit1.Authority.CheckAuthorization() on /org/freedesktop/PolicyKit1/Authority at name org.freedesktop.PolicyKit1: org.freedesktop.DBus.Error.Spawn.ExecFailed: Cannot launch daemon, file not found or permissions invalid -05:50:55,174 WARNING NetworkManager: error requesting auth for org.freedesktop.NetworkManager.enable-disable-wwan: (26) Remote Exception invoking org.freedesktop.PolicyKit1.Authority.CheckAuthorization() on /org/freedesktop/PolicyKit1/Authority at name org.freedesktop.PolicyKit1: org.freedesktop.DBus.Error.Spawn.ExecFailed: Cannot launch daemon, file not found or permissions invalid -05:50:55,174 WARNING NetworkManager: error requesting auth for org.freedesktop.NetworkManager.use-user-connections: (26) Remote Exception invoking org.freedesktop.PolicyKit1.Authority.CheckAuthorization() on /org/freedesktop/PolicyKit1/Authority at name org.freedesktop.PolicyKit1: org.freedesktop.DBus.Error.Spawn.ExecFailed: Cannot launch daemon, file not found or permissions invalid -05:50:55,174 WARNING NetworkManager: error requesting auth for org.freedesktop.NetworkManager.network-control: (26) Remote Exception invoking org.freedesktop.PolicyKit1.Authority.CheckAuthorization() on /org/freedesktop/PolicyKit1/Authority at name org.freedesktop.PolicyKit1: org.freedesktop.DBus.Error.Spawn.ExecFailed: Cannot launch daemon, file not found or permissions invalid -05:50:55,174 WARNING NetworkManager: error requesting auth for org.freedesktop.network-manager-settings.system.wifi.share.open: (26) Remote Exception invoking org.freedesktop.PolicyKit1.Authority.CheckAuthorization() on /org/freedesktop/PolicyKit1/Authority at name org.freedesktop.PolicyKit1: org.freedesktop.DBus.Error.Spawn.ExecFailed: Cannot launch daemon, file not found or permissions invalid -05:50:55,174 WARNING NetworkManager: error requesting auth for org.freedesktop.network-manager-settings.system.wifi.share.protected: (26) Remote Exception invoking org.freedesktop.PolicyKit1.Authority.CheckAuthorization() on /org/freedesktop/PolicyKit1/Authority at name org.freedesktop.PolicyKit1: org.freedesktop.DBus.Error.Spawn.ExecFailed: Cannot launch daemon, file not found or permissions invalid -05:51:46,967 NOTICE dbus-daemon: [system] Unable to reload configuration: Error in file /etc/dbus-1/system.d/nm-dhcp-client.conf, line 1, column 0: no element found -05:51:46,969 NOTICE dbus-daemon: [system] Unable to reload configuration: Error in file /etc/dbus-1/system.d/org.freedesktop.PolicyKit1.conf, line 1, column 0: no element found -05:51:46,976 NOTICE dbus-daemon: [system] Reloaded configuration -05:51:47,135 DEBUG kernel:SELinux: 2048 avtab hash slots, 277800 rules. -05:51:47,214 DEBUG kernel:SELinux: 2048 avtab hash slots, 277800 rules. -05:51:47,702 DEBUG kernel:SELinux: 9 users, 12 roles, 3917 types, 217 bools, 1 sens, 1024 cats -05:51:47,702 DEBUG kernel:SELinux: 81 classes, 277800 rules -05:51:47,706 DEBUG kernel:SELinux: Completing initialization. -05:51:47,706 DEBUG kernel:SELinux: Setting up existing superblocks. -05:51:47,706 DEBUG kernel:SELinux: initialized (dev loop0, type squashfs), not configured for labeling -05:51:47,706 DEBUG kernel:SELinux: initialized (dev tmpfs, type tmpfs), uses transition SIDs -05:51:47,706 DEBUG kernel:SELinux: initialized (dev tmpfs, type tmpfs), uses transition SIDs -05:51:47,708 DEBUG kernel:SELinux: initialized (dev selinuxfs, type selinuxfs), uses genfs_contexts -05:51:47,708 DEBUG kernel:SELinux: initialized (dev mqueue, type mqueue), uses transition SIDs -05:51:47,708 DEBUG kernel:SELinux: initialized (dev hugetlbfs, type hugetlbfs), uses transition SIDs -05:51:47,708 DEBUG kernel:SELinux: initialized (dev devpts, type devpts), uses transition SIDs -05:51:47,708 DEBUG kernel:SELinux: initialized (dev inotifyfs, type inotifyfs), uses genfs_contexts -05:51:47,708 DEBUG kernel:SELinux: initialized (dev anon_inodefs, type anon_inodefs), uses genfs_contexts -05:51:47,708 DEBUG kernel:SELinux: initialized (dev pipefs, type pipefs), uses task SIDs -05:51:47,708 DEBUG kernel:SELinux: initialized (dev debugfs, type debugfs), uses genfs_contexts -05:51:47,708 DEBUG kernel:SELinux: initialized (dev sockfs, type sockfs), uses task SIDs -05:51:47,708 DEBUG kernel:SELinux: initialized (dev devtmpfs, type devtmpfs), uses transition SIDs -05:51:47,708 DEBUG kernel:SELinux: initialized (dev tmpfs, type tmpfs), uses transition SIDs -05:51:47,708 DEBUG kernel:SELinux: initialized (dev proc, type proc), uses genfs_contexts -05:51:47,708 DEBUG kernel:SELinux: initialized (dev bdev, type bdev), uses genfs_contexts -05:51:47,708 DEBUG kernel:SELinux: initialized (dev rootfs, type rootfs), uses genfs_contexts -05:51:47,709 DEBUG kernel:SELinux: initialized (dev sysfs, type sysfs), uses genfs_contexts -05:51:47,751 NOTICE kernel:type=1403 audit(1021096307.739:2): policy loaded auid=4294967295 ses=4294967295 -05:51:47,786 INFO kernel:md: raid0 personality registered for level 0 -05:51:47,793 INFO kernel:md: raid1 personality registered for level 1 -05:51:47,797 INFO kernel:async_tx: api initialized (async) -05:51:47,802 INFO kernel:xor: automatically using best checksumming function: generic_sse -05:51:47,810 INFO kernel: generic_sse: 9176.000 MB/sec -05:51:47,810 INFO kernel:xor: using function: generic_sse (9176.000 MB/sec) -05:51:47,834 WARNING kernel:raid6: sse2x1 4742 MB/s -05:51:47,851 WARNING kernel:raid6: sse2x2 7117 MB/s -05:51:47,868 WARNING kernel:raid6: sse2x4 7660 MB/s -05:51:47,868 WARNING kernel:raid6: using algorithm sse2x4 (7660 MB/s) -05:51:47,868 WARNING kernel:raid6: using ssse3x2 recovery algorithm -05:51:47,882 INFO kernel:md: raid6 personality registered for level 6 -05:51:47,882 INFO kernel:md: raid5 personality registered for level 5 -05:51:47,882 INFO kernel:md: raid4 personality registered for level 4 -05:51:47,893 INFO kernel:md: raid10 personality registered for level 10 -05:51:47,896 INFO kernel:md: linear personality registered for level -1 -05:51:47,909 INFO kernel:device-mapper: uevent: version 1.0.3 -05:51:47,909 INFO kernel:device-mapper: ioctl: 4.24.6-ioctl (2013-01-15) initialised: dm-devel@redhat.com -05:51:47,940 INFO kernel:device-mapper: multipath: version 1.5.0 loaded -05:51:47,944 INFO kernel:device-mapper: multipath round-robin: version 1.0.0 loaded -05:52:05,224 NOTICE kernel:sd 2:0:0:0: [sda] Cache data unavailable -05:52:05,224 ERR kernel:sd 2:0:0:0: [sda] Assuming drive cache: write through -05:52:05,225 INFO kernel: sda: sda1 -05:52:06,013 NOTICE kernel:sd 2:0:0:0: [sda] Cache data unavailable -05:52:06,013 ERR kernel:sd 2:0:0:0: [sda] Assuming drive cache: write through -05:52:06,023 INFO kernel: sda: -05:52:06,365 NOTICE kernel:sd 2:0:0:0: [sda] Cache data unavailable -05:52:06,365 ERR kernel:sd 2:0:0:0: [sda] Assuming drive cache: write through -05:52:06,415 INFO kernel: sda: sda1 -05:52:09,171 NOTICE kernel:sd 2:0:0:0: [sda] Cache data unavailable -05:52:09,171 ERR kernel:sd 2:0:0:0: [sda] Assuming drive cache: write through -05:52:09,171 INFO kernel: sda: sda1 sda2 -05:52:11,280 NOTICE kernel:sd 2:0:0:0: [sda] Cache data unavailable -05:52:11,280 ERR kernel:sd 2:0:0:0: [sda] Assuming drive cache: write through -05:52:11,280 INFO kernel: sda: sda1 sda2 sda3 -05:52:44,551 INFO kernel:Adding 3354616k swap on /dev/sda2. Priority:-1 extents:1 across:3354616k -05:52:45,044 INFO kernel:kjournald starting. Commit interval 5 seconds -05:52:45,053 INFO kernel:EXT3-fs (dm-0): using internal journal -05:52:45,053 INFO kernel:EXT3-fs (dm-0): mounted filesystem with ordered data mode -05:52:45,053 DEBUG kernel:SELinux: initialized (dev dm-0, type ext3), uses xattr -05:52:45,103 INFO kernel:kjournald starting. Commit interval 5 seconds -05:52:45,170 INFO kernel:EXT3-fs (sda1): using internal journal -05:52:45,170 INFO kernel:EXT3-fs (sda1): mounted filesystem with ordered data mode -05:52:45,170 DEBUG kernel:SELinux: initialized (dev sda1, type ext3), uses xattr -05:52:45,250 DEBUG kernel:SELinux: initialized (dev tmpfs, type tmpfs), uses transition SIDs -05:52:45,384 INFO kernel:kjournald starting. Commit interval 5 seconds -05:52:45,439 INFO kernel:EXT3-fs (dm-1): using internal journal -05:52:45,439 INFO kernel:EXT3-fs (dm-1): mounted filesystem with ordered data mode -05:52:45,439 DEBUG kernel:SELinux: initialized (dev dm-1, type ext3), uses xattr -05:52:45,604 INFO kernel:kjournald starting. Commit interval 5 seconds -05:52:45,648 INFO kernel:EXT3-fs (dm-2): using internal journal -05:52:45,648 INFO kernel:EXT3-fs (dm-2): mounted filesystem with ordered data mode -05:52:45,648 DEBUG kernel:SELinux: initialized (dev dm-2, type ext3), uses xattr -05:52:45,851 INFO kernel:kjournald starting. Commit interval 5 seconds -05:52:45,875 INFO kernel:EXT3-fs (dm-3): using internal journal -05:52:45,875 INFO kernel:EXT3-fs (dm-3): mounted filesystem with ordered data mode -05:52:45,875 DEBUG kernel:SELinux: initialized (dev dm-3, type ext3), uses xattr -05:52:54,110 DEBUG kernel:SELinux: initialized (dev usbfs, type usbfs), uses genfs_contexts -05:52:54,121 NOTICE NetworkManager: ifcfg-rh: updating /etc/sysconfig/network-scripts/ifcfg-eth3 -05:52:54,121 NOTICE NetworkManager: ifcfg-rh: updating /etc/sysconfig/network-scripts/ifcfg-eth2 -05:52:54,124 NOTICE NetworkManager: ifcfg-rh: updating /etc/sysconfig/network-scripts/ifcfg-eth1 -05:52:55,143 NOTICE NetworkManager: ifcfg-rh: updating /etc/sysconfig/network-scripts/ifcfg-eth3 -05:52:55,145 NOTICE NetworkManager: ifcfg-rh: updating /etc/sysconfig/network-scripts/ifcfg-eth2 -05:52:55,146 NOTICE NetworkManager: ifcfg-rh: updating /etc/sysconfig/network-scripts/ifcfg-eth1 -05:52:55,146 NOTICE NetworkManager: ifcfg-rh: updating /etc/sysconfig/network-scripts/ifcfg-eth0 -06:11:24,179 DEBUG kernel:SELinux: 2048 avtab hash slots, 277800 rules. -06:11:24,305 DEBUG kernel:SELinux: 2048 avtab hash slots, 277800 rules. -06:11:24,821 DEBUG kernel:SELinux: 9 users, 12 roles, 3917 types, 217 bools, 1 sens, 1024 cats -06:11:24,821 DEBUG kernel:SELinux: 81 classes, 277800 rules diff --git a/compass/tests/actions/update_progress/data/test2/anamon/checkpoint_3/server1.1/anaconda.log.template b/compass/tests/actions/update_progress/data/test2/anamon/checkpoint_3/server1.1/anaconda.log.template deleted file mode 100644 index f04da66a..00000000 --- a/compass/tests/actions/update_progress/data/test2/anamon/checkpoint_3/server1.1/anaconda.log.template +++ /dev/null @@ -1,286 +0,0 @@ -05:51:20,534 INFO : kernel command line: initrd=/images/CentOS-6.5-x86_64/initrd.img ksdevice=bootif lang= kssendmac text ks=http://10.145.88.211/cblr/svc/op/ks/system/server1.1 BOOT_IMAGE=/images/CentOS-6.5-x86_64/vmlinuz BOOTIF=01-00-0c-29-21-89-af - -05:51:20,534 INFO : text mode forced from cmdline -05:51:20,534 DEBUG : readNetInfo /tmp/s390net not found, early return -05:51:20,534 INFO : anaconda version 13.21.215 on x86_64 starting -05:51:20,656 DEBUG : Saving module ipv6 -05:51:20,656 DEBUG : Saving module iscsi_ibft -05:51:20,656 DEBUG : Saving module iscsi_boot_sysfs -05:51:20,656 DEBUG : Saving module pcspkr -05:51:20,656 DEBUG : Saving module edd -05:51:20,656 DEBUG : Saving module floppy -05:51:20,656 DEBUG : Saving module iscsi_tcp -05:51:20,656 DEBUG : Saving module libiscsi_tcp -05:51:20,656 DEBUG : Saving module libiscsi -05:51:20,656 DEBUG : Saving module scsi_transport_iscsi -05:51:20,656 DEBUG : Saving module squashfs -05:51:20,656 DEBUG : Saving module cramfs -05:51:20,656 DEBUG : probing buses -05:51:20,693 DEBUG : waiting for hardware to initialize -05:51:27,902 DEBUG : probing buses -05:51:27,925 DEBUG : waiting for hardware to initialize -05:51:47,187 INFO : getting kickstart file -05:51:47,196 INFO : eth0 has link, using it -05:51:47,208 INFO : doing kickstart... setting it up -05:51:47,208 DEBUG : activating device eth0 -05:51:52,221 INFO : wait_for_iface_activation (2502): device eth0 activated -05:51:52,222 INFO : file location: http://10.145.88.211/cblr/svc/op/ks/system/server1.1 -05:51:52,223 INFO : transferring http://10.145.88.211/cblr/svc/op/ks/system/server1.1 -05:51:52,611 INFO : setting up kickstart -05:51:52,611 INFO : kickstart forcing text mode -05:51:52,611 INFO : kickstartFromUrl -05:51:52,612 INFO : results of url ks, url http://10.145.88.211/cblr/links/CentOS-6.5-x86_64 -05:51:52,612 INFO : trying to mount CD device /dev/sr0 on /mnt/stage2 -05:51:52,616 INFO : drive status is CDS_TRAY_OPEN -05:51:52,616 ERROR : Drive tray reports open when it should be closed -05:52:07,635 INFO : no stage2= given, assuming http://10.145.88.211/cblr/links/CentOS-6.5-x86_64/images/install.img -05:52:07,636 DEBUG : going to set language to en_US.UTF-8 -05:52:07,636 INFO : setting language to en_US.UTF-8 -05:52:07,654 INFO : starting STEP_METHOD -05:52:07,654 DEBUG : loaderData->method is set, adding skipMethodDialog -05:52:07,654 DEBUG : skipMethodDialog is set -05:52:07,663 INFO : starting STEP_STAGE2 -05:52:07,663 INFO : URL_STAGE_MAIN: url is http://10.145.88.211/cblr/links/CentOS-6.5-x86_64/images/install.img -05:52:07,663 INFO : transferring http://10.145.88.211/cblr/links/CentOS-6.5-x86_64/images/updates.img -05:52:07,780 ERROR : failed to mount loopback device /dev/loop7 on /tmp/update-disk as /tmp/updates-disk.img: (null) -05:52:07,780 ERROR : Error mounting /dev/loop7 on /tmp/update-disk: No such file or directory -05:52:07,780 INFO : transferring http://10.145.88.211/cblr/links/CentOS-6.5-x86_64/images/product.img -05:52:07,814 ERROR : Error downloading http://10.145.88.211/cblr/links/CentOS-6.5-x86_64/images/product.img: HTTP response code said error -05:52:07,815 INFO : transferring http://10.145.88.211/cblr/links/CentOS-6.5-x86_64/images/install.img -05:52:47,354 INFO : mounted loopback device /mnt/runtime on /dev/loop0 as /tmp/install.img -05:52:47,354 INFO : got stage2 at url http://10.145.88.211/cblr/links/CentOS-6.5-x86_64/images/install.img -05:52:47,403 INFO : Loading SELinux policy -05:52:48,130 INFO : getting ready to spawn shell now -05:52:48,359 INFO : Running anaconda script /usr/bin/anaconda -05:52:54,804 INFO : CentOS Linux is the highest priority installclass, using it -05:52:54,867 WARNING : /usr/lib/python2.6/site-packages/pykickstart/parser.py:713: DeprecationWarning: Script does not end with %end. This syntax has been deprecated. It may be removed from future releases, which will result in a fatal error from kickstart. Please modify your kickstart file to use this updated syntax. - warnings.warn(_("%s does not end with %%end. This syntax has been deprecated. It may be removed from future releases, which will result in a fatal error from kickstart. Please modify your kickstart file to use this updated syntax.") % _("Script"), DeprecationWarning) - -05:52:54,868 INFO : Running kickstart %%pre script(s) -05:52:54,868 WARNING : '/bin/sh' specified as full path -05:52:56,966 INFO : All kickstart %%pre script(s) have been run -05:52:57,017 INFO : ISCSID is /usr/sbin/iscsid -05:52:57,017 INFO : no initiator set -05:52:57,128 WARNING : '/usr/libexec/fcoe/fcoe_edd.sh' specified as full path -05:52:57,137 INFO : No FCoE EDD info found: No FCoE boot disk information is found in EDD! - -05:52:57,138 INFO : no /etc/zfcp.conf; not configuring zfcp -05:53:00,902 INFO : created new libuser.conf at /tmp/libuser.WMDW9M with instPath="/mnt/sysimage" -05:53:00,903 INFO : anaconda called with cmdline = ['/usr/bin/anaconda', '--stage2', 'http://10.145.88.211/cblr/links/CentOS-6.5-x86_64/images/install.img', '--kickstart', '/tmp/ks.cfg', '-T', '--selinux', '--lang', 'en_US', '--keymap', 'us', '--repo', 'http://10.145.88.211/cblr/links/CentOS-6.5-x86_64'] -05:53:00,903 INFO : Display mode = t -05:53:00,903 INFO : Default encoding = utf-8 -05:53:01,064 INFO : Detected 2016M of memory -05:53:01,064 INFO : Swap attempt of 4032M -05:53:01,398 INFO : ISCSID is /usr/sbin/iscsid -05:53:01,399 INFO : no initiator set -05:53:05,059 INFO : setting installation environment hostname to server1 -05:53:05,104 WARNING : Timezone US/Pacific set in kickstart is not valid. -05:53:05,276 INFO : Detected 2016M of memory -05:53:05,277 INFO : Suggested swap size (4032 M) exceeds 10 % of disk space, using 10 % of disk space (3276 M) instead. -05:53:05,277 INFO : Swap attempt of 3276M -05:53:05,453 WARNING : step installtype does not exist -05:53:05,454 WARNING : step confirminstall does not exist -05:53:05,454 WARNING : step complete does not exist -05:53:05,454 WARNING : step complete does not exist -05:53:05,454 WARNING : step complete does not exist -05:53:05,454 WARNING : step complete does not exist -05:53:05,455 WARNING : step complete does not exist -05:53:05,455 WARNING : step complete does not exist -05:53:05,455 WARNING : step complete does not exist -05:53:05,455 WARNING : step complete does not exist -05:53:05,455 WARNING : step complete does not exist -05:53:05,456 WARNING : step complete does not exist -05:53:05,456 WARNING : step complete does not exist -05:53:05,456 WARNING : step complete does not exist -05:53:05,456 WARNING : step complete does not exist -05:53:05,456 WARNING : step complete does not exist -05:53:05,457 WARNING : step complete does not exist -05:53:05,457 INFO : moving (1) to step setuptime -05:53:05,458 DEBUG : setuptime is a direct step -22:53:05,458 WARNING : '/usr/sbin/hwclock' specified as full path -22:53:06,002 INFO : leaving (1) step setuptime -22:53:06,003 INFO : moving (1) to step autopartitionexecute -22:53:06,003 DEBUG : autopartitionexecute is a direct step -22:53:06,138 INFO : leaving (1) step autopartitionexecute -22:53:06,138 INFO : moving (1) to step storagedone -22:53:06,138 DEBUG : storagedone is a direct step -22:53:06,138 INFO : leaving (1) step storagedone -22:53:06,139 INFO : moving (1) to step enablefilesystems -22:53:06,139 DEBUG : enablefilesystems is a direct step -22:53:10,959 DEBUG : notifying kernel of 'change' event on device /sys/class/block/sda3 -22:53:41,215 DEBUG : notifying kernel of 'change' event on device /sys/class/block/sda1 -22:53:57,388 DEBUG : notifying kernel of 'change' event on device /sys/class/block/sda3 -22:54:14,838 DEBUG : notifying kernel of 'change' event on device /sys/class/block/dm-0 -22:54:21,717 DEBUG : notifying kernel of 'change' event on device /sys/class/block/dm-1 -22:54:27,576 DEBUG : notifying kernel of 'change' event on device /sys/class/block/dm-2 -22:54:40,058 DEBUG : notifying kernel of 'change' event on device /sys/class/block/dm-3 -22:54:41,949 INFO : failed to set SELinux context for /mnt/sysimage: [Errno 95] Operation not supported -22:54:41,950 DEBUG : isys.py:mount()- going to mount /dev/mapper/server1-rootvol on /mnt/sysimage as ext3 with options defaults -22:54:42,826 DEBUG : isys.py:mount()- going to mount /dev/sda1 on /mnt/sysimage/boot as ext3 with options defaults -22:54:43,148 DEBUG : isys.py:mount()- going to mount //dev on /mnt/sysimage/dev as bind with options defaults,bind -22:54:43,158 DEBUG : isys.py:mount()- going to mount devpts on /mnt/sysimage/dev/pts as devpts with options gid=5,mode=620 -22:54:43,164 DEBUG : isys.py:mount()- going to mount tmpfs on /mnt/sysimage/dev/shm as tmpfs with options defaults -22:54:43,207 DEBUG : isys.py:mount()- going to mount /dev/mapper/server1-homevol on /mnt/sysimage/home as ext3 with options defaults -22:54:43,434 INFO : failed to get default SELinux context for /proc: [Errno 2] No such file or directory -22:54:43,435 DEBUG : isys.py:mount()- going to mount proc on /mnt/sysimage/proc as proc with options defaults -22:54:43,439 INFO : failed to get default SELinux context for /proc: [Errno 2] No such file or directory -22:54:43,496 DEBUG : isys.py:mount()- going to mount sysfs on /mnt/sysimage/sys as sysfs with options defaults -22:54:43,609 DEBUG : isys.py:mount()- going to mount /dev/mapper/server1-tmpvol on /mnt/sysimage/tmp as ext3 with options defaults -22:54:43,874 DEBUG : isys.py:mount()- going to mount /dev/mapper/server1-varvol on /mnt/sysimage/var as ext3 with options defaults -22:54:44,056 INFO : leaving (1) step enablefilesystems -22:54:44,057 INFO : moving (1) to step bootloadersetup -22:54:44,057 DEBUG : bootloadersetup is a direct step -22:54:44,061 INFO : leaving (1) step bootloadersetup -22:54:44,061 INFO : moving (1) to step reposetup -22:54:44,061 DEBUG : reposetup is a direct step -22:54:56,952 ERROR : Error downloading treeinfo file: [Errno 14] PYCURL ERROR 22 - "The requested URL returned error: 404 Not Found" -22:54:56,953 INFO : added repository ppa_repo with URL http://10.145.88.211:80/cobbler/repo_mirror/ppa_repo/ -22:54:57,133 DEBUG : Grabbing http://10.145.88.211/cblr/links/CentOS-6.5-x86_64/repodata/repomd.xml -22:54:57,454 DEBUG : Grabbing http://10.145.88.211/cblr/links/CentOS-6.5-x86_64/repodata/0e371b19e547b9d7a7e8acc4b8c0c7c074509d33653cfaef9e8f4fd1d62d95de-primary.sqlite.bz2 -22:54:58,637 DEBUG : Grabbing http://10.145.88.211/cblr/links/CentOS-6.5-x86_64/repodata/34bae2d3c9c78e04ed2429923bc095005af1b166d1a354422c4c04274bae0f59-c6-minimal-x86_64.xml -22:54:58,971 INFO : leaving (1) step reposetup -22:54:58,971 INFO : moving (1) to step basepkgsel -22:54:58,972 DEBUG : basepkgsel is a direct step -22:54:58,986 WARNING : not adding Base group -22:54:59,388 INFO : leaving (1) step basepkgsel -22:54:59,388 INFO : moving (1) to step postselection -22:54:59,388 DEBUG : postselection is a direct step -22:54:59,390 INFO : selected kernel package for kernel -22:54:59,848 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/fs/ext3/ext3.ko.gz -22:54:59,848 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/fs/jbd/jbd.ko.gz -22:54:59,848 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/fs/mbcache.ko.gz -22:54:59,848 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/scsi/fcoe/fcoe.ko.gz -22:54:59,848 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/scsi/fcoe/libfcoe.ko.gz -22:54:59,849 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/scsi/libfc/libfc.ko.gz -22:54:59,849 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/scsi/scsi_transport_fc.ko.gz -22:54:59,849 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/scsi/scsi_tgt.ko.gz -22:54:59,849 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/crypto/xts.ko.gz -22:54:59,849 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/crypto/lrw.ko.gz -22:54:59,849 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/crypto/gf128mul.ko.gz -22:54:59,849 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/crypto/sha256_generic.ko.gz -22:54:59,849 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/crypto/cbc.ko.gz -22:54:59,849 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/md/dm-raid.ko.gz -22:54:59,849 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/md/dm-crypt.ko.gz -22:54:59,850 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/md/dm-round-robin.ko.gz -22:54:59,850 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/md/dm-multipath.ko.gz -22:54:59,850 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/md/dm-snapshot.ko.gz -22:54:59,850 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/md/dm-mirror.ko.gz -22:54:59,850 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/md/dm-region-hash.ko.gz -22:54:59,850 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/md/dm-log.ko.gz -22:54:59,850 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/md/dm-zero.ko.gz -22:54:59,850 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/md/dm-mod.ko.gz -22:54:59,850 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/md/linear.ko.gz -22:54:59,850 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/md/raid10.ko.gz -22:54:59,850 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/md/raid456.ko.gz -22:54:59,851 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/crypto/async_tx/async_raid6_recov.ko.gz -22:54:59,851 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/crypto/async_tx/async_pq.ko.gz -22:54:59,851 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/lib/raid6/raid6_pq.ko.gz -22:54:59,851 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/crypto/async_tx/async_xor.ko.gz -22:54:59,851 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/crypto/xor.ko.gz -22:54:59,851 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/crypto/async_tx/async_memcpy.ko.gz -22:54:59,851 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/crypto/async_tx/async_tx.ko.gz -22:54:59,851 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/md/raid1.ko.gz -22:54:59,851 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/md/raid0.ko.gz -22:54:59,852 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/net/8021q/8021q.ko.gz -22:54:59,852 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/net/802/garp.ko.gz -22:54:59,852 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/net/802/stp.ko.gz -22:54:59,852 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/net/llc/llc.ko.gz -22:54:59,852 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/infiniband/hw/mlx4/mlx4_ib.ko.gz -22:54:59,852 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/net/mlx4/mlx4_en.ko.gz -22:54:59,852 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/net/mlx4/mlx4_core.ko.gz -22:54:59,852 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/infiniband/ulp/ipoib/ib_ipoib.ko.gz -22:54:59,852 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/infiniband/core/ib_cm.ko.gz -22:54:59,853 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/infiniband/core/ib_sa.ko.gz -22:54:59,853 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/infiniband/core/ib_mad.ko.gz -22:54:59,853 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/infiniband/core/ib_core.ko.gz -22:54:59,853 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/scsi/sg.ko.gz -22:54:59,853 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/scsi/sd_mod.ko.gz -22:54:59,853 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/lib/crc-t10dif.ko.gz -22:54:59,853 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/net/e1000/e1000.ko.gz -22:54:59,853 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/scsi/sr_mod.ko.gz -22:54:59,853 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/cdrom/cdrom.ko.gz -22:54:59,853 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/misc/vmware_balloon.ko.gz -22:54:59,853 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/message/fusion/mptspi.ko.gz -22:54:59,854 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/message/fusion/mptscsih.ko.gz -22:54:59,854 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/message/fusion/mptbase.ko.gz -22:54:59,854 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/scsi/scsi_transport_spi.ko.gz -22:54:59,854 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/ata/pata_acpi.ko.gz -22:54:59,854 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/ata/ata_generic.ko.gz -22:54:59,854 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/ata/ata_piix.ko.gz -22:54:59,854 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/net/ipv6/ipv6.ko.gz -22:54:59,854 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/firmware/iscsi_ibft.ko.gz -22:54:59,854 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/scsi/iscsi_boot_sysfs.ko.gz -22:54:59,854 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/input/misc/pcspkr.ko.gz -22:54:59,855 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/firmware/edd.ko.gz -22:54:59,855 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/block/floppy.ko.gz -22:54:59,855 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/scsi/iscsi_tcp.ko.gz -22:54:59,855 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/scsi/libiscsi_tcp.ko.gz -22:54:59,855 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/scsi/libiscsi.ko.gz -22:54:59,855 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/scsi/scsi_transport_iscsi.ko.gz -22:54:59,855 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/fs/squashfs/squashfs.ko.gz -22:54:59,855 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/fs/cramfs/cramfs.ko.gz -22:55:07,745 INFO : leaving (1) step postselection -22:55:07,745 INFO : moving (1) to step install -22:55:07,748 INFO : leaving (1) step install -22:55:07,748 INFO : moving (1) to step preinstallconfig -22:55:07,748 DEBUG : preinstallconfig is a direct step -22:55:08,087 DEBUG : isys.py:mount()- going to mount /selinux on /mnt/sysimage/selinux as selinuxfs with options defaults -22:55:08,091 DEBUG : isys.py:mount()- going to mount /proc/bus/usb on /mnt/sysimage/proc/bus/usb as usbfs with options defaults -22:55:08,102 INFO : copy_to_sysimage: source '/etc/multipath/wwids' does not exist. -22:55:08,102 INFO : copy_to_sysimage: source '/etc/multipath/bindings' does not exist. -22:55:08,118 INFO : copy_to_sysimage: source '/etc/multipath/wwids' does not exist. -22:55:08,118 INFO : copy_to_sysimage: source '/etc/multipath/bindings' does not exist. -22:55:08,122 INFO : leaving (1) step preinstallconfig -22:55:08,122 INFO : moving (1) to step installpackages -22:55:08,122 DEBUG : installpackages is a direct step -22:55:08,122 INFO : Preparing to install packages -23:17:06,152 INFO : leaving (1) step installpackages -23:17:06,153 INFO : moving (1) to step postinstallconfig -23:17:06,153 DEBUG : postinstallconfig is a direct step -23:17:06,162 DEBUG : Removing cachedir: /mnt/sysimage/var/cache/yum/anaconda-CentOS-201311291202.x86_64 -23:17:06,181 DEBUG : Removing headers and packages from /mnt/sysimage/var/cache/yum/ppa_repo -23:17:06,183 INFO : leaving (1) step postinstallconfig -23:17:06,184 INFO : moving (1) to step writeconfig -23:17:06,184 DEBUG : writeconfig is a direct step -23:17:06,184 INFO : Writing main configuration -23:17:06,219 WARNING : '/usr/sbin/authconfig' specified as full path -23:17:11,643 WARNING : '/usr/sbin/lokkit' specified as full path -23:17:11,703 WARNING : '/usr/sbin/lokkit' specified as full path -23:17:11,885 INFO : removing libuser.conf at /tmp/libuser.WMDW9M -23:17:11,885 INFO : created new libuser.conf at /tmp/libuser.WMDW9M with instPath="/mnt/sysimage" -23:17:12,722 INFO : leaving (1) step writeconfig -23:17:12,722 INFO : moving (1) to step firstboot -23:17:12,723 DEBUG : firstboot is a direct step -23:17:12,723 INFO : leaving (1) step firstboot -23:17:12,723 INFO : moving (1) to step instbootloader -23:17:12,724 DEBUG : instbootloader is a direct step -23:17:14,664 WARNING : '/sbin/grub-install' specified as full path -23:17:15,006 WARNING : '/sbin/grub' specified as full path -23:17:16,039 INFO : leaving (1) step instbootloader -23:17:16,040 INFO : moving (1) to step reipl -23:17:16,040 DEBUG : reipl is a direct step -23:17:16,040 INFO : leaving (1) step reipl -23:17:16,040 INFO : moving (1) to step writeksconfig -23:17:16,040 DEBUG : writeksconfig is a direct step -23:17:16,041 INFO : Writing autokickstart file -23:17:16,070 INFO : leaving (1) step writeksconfig -23:17:16,071 INFO : moving (1) to step setfilecon -23:17:16,071 DEBUG : setfilecon is a direct step -23:17:16,071 INFO : setting SELinux contexts for anaconda created files -23:17:17,822 INFO : leaving (1) step setfilecon -23:17:17,822 INFO : moving (1) to step copylogs -23:17:17,822 DEBUG : copylogs is a direct step -23:17:17,822 INFO : Copying anaconda logs -23:17:17,825 INFO : leaving (1) step copylogs -23:17:17,825 INFO : moving (1) to step methodcomplete -23:17:17,825 DEBUG : methodcomplete is a direct step -23:17:17,825 INFO : leaving (1) step methodcomplete -23:17:17,826 INFO : moving (1) to step postscripts -23:17:17,826 DEBUG : postscripts is a direct step -23:17:17,826 INFO : Running kickstart %%post script(s) -23:17:17,858 WARNING : '/bin/sh' specified as full path -23:17:21,002 INFO : All kickstart %%post script(s) have been run -23:17:21,002 INFO : leaving (1) step postscripts -23:17:21,002 INFO : moving (1) to step dopostaction -23:17:21,002 DEBUG : dopostaction is a direct step -23:17:21,003 INFO : leaving (1) step dopostaction diff --git a/compass/tests/actions/update_progress/data/test2/anamon/checkpoint_3/server1.1/install.log.template b/compass/tests/actions/update_progress/data/test2/anamon/checkpoint_3/server1.1/install.log.template deleted file mode 100644 index 861b3a53..00000000 --- a/compass/tests/actions/update_progress/data/test2/anamon/checkpoint_3/server1.1/install.log.template +++ /dev/null @@ -1,212 +0,0 @@ -Installing libgcc-4.4.7-4.el6.x86_64 -warning: libgcc-4.4.7-4.el6.x86_64: Header V3 RSA/SHA1 Signature, key ID c105b9de: NOKEY -Installing setup-2.8.14-20.el6_4.1.noarch -Installing filesystem-2.4.30-3.el6.x86_64 -Installing basesystem-10.0-4.el6.noarch -Installing ncurses-base-5.7-3.20090208.el6.x86_64 -Installing kernel-firmware-2.6.32-431.el6.noarch -Installing tzdata-2013g-1.el6.noarch -Installing nss-softokn-freebl-3.14.3-9.el6.x86_64 -Installing glibc-common-2.12-1.132.el6.x86_64 -Installing glibc-2.12-1.132.el6.x86_64 -Installing ncurses-libs-5.7-3.20090208.el6.x86_64 -Installing bash-4.1.2-15.el6_4.x86_64 -Installing libattr-2.4.44-7.el6.x86_64 -Installing libcap-2.16-5.5.el6.x86_64 -Installing zlib-1.2.3-29.el6.x86_64 -Installing info-4.13a-8.el6.x86_64 -Installing popt-1.13-7.el6.x86_64 -Installing chkconfig-1.3.49.3-2.el6_4.1.x86_64 -Installing audit-libs-2.2-2.el6.x86_64 -Installing libcom_err-1.41.12-18.el6.x86_64 -Installing libacl-2.2.49-6.el6.x86_64 -Installing db4-4.7.25-18.el6_4.x86_64 -Installing nspr-4.10.0-1.el6.x86_64 -Installing nss-util-3.15.1-3.el6.x86_64 -Installing readline-6.0-4.el6.x86_64 -Installing libsepol-2.0.41-4.el6.x86_64 -Installing libselinux-2.0.94-5.3.el6_4.1.x86_64 -Installing shadow-utils-4.1.4.2-13.el6.x86_64 -Installing sed-4.2.1-10.el6.x86_64 -Installing bzip2-libs-1.0.5-7.el6_0.x86_64 -Installing libuuid-2.17.2-12.14.el6.x86_64 -Installing libstdc++-4.4.7-4.el6.x86_64 -Installing libblkid-2.17.2-12.14.el6.x86_64 -Installing gawk-3.1.7-10.el6.x86_64 -Installing file-libs-5.04-15.el6.x86_64 -Installing libgpg-error-1.7-4.el6.x86_64 -Installing dbus-libs-1.2.24-7.el6_3.x86_64 -Installing libudev-147-2.51.el6.x86_64 -Installing pcre-7.8-6.el6.x86_64 -Installing grep-2.6.3-4.el6.x86_64 -Installing lua-5.1.4-4.1.el6.x86_64 -Installing sqlite-3.6.20-1.el6.x86_64 -Installing cyrus-sasl-lib-2.1.23-13.el6_3.1.x86_64 -Installing libidn-1.18-2.el6.x86_64 -Installing expat-2.0.1-11.el6_2.x86_64 -Installing xz-libs-4.999.9-0.3.beta.20091007git.el6.x86_64 -Installing elfutils-libelf-0.152-1.el6.x86_64 -Installing libgcrypt-1.4.5-11.el6_4.x86_64 -Installing bzip2-1.0.5-7.el6_0.x86_64 -Installing findutils-4.4.2-6.el6.x86_64 -Installing libselinux-utils-2.0.94-5.3.el6_4.1.x86_64 -Installing checkpolicy-2.0.22-1.el6.x86_64 -Installing cpio-2.10-11.el6_3.x86_64 -Installing which-2.19-6.el6.x86_64 -Installing libxml2-2.7.6-14.el6.x86_64 -Installing libedit-2.11-4.20080712cvs.1.el6.x86_64 -Installing pth-2.0.7-9.3.el6.x86_64 -Installing tcp_wrappers-libs-7.6-57.el6.x86_64 -Installing sysvinit-tools-2.87-5.dsf.el6.x86_64 -Installing libtasn1-2.3-3.el6_2.1.x86_64 -Installing p11-kit-0.18.5-2.el6.x86_64 -Installing p11-kit-trust-0.18.5-2.el6.x86_64 -Installing ca-certificates-2013.1.94-65.0.el6.noarch -Installing device-mapper-persistent-data-0.2.8-2.el6.x86_64 -Installing nss-softokn-3.14.3-9.el6.x86_64 -Installing libnih-1.0.1-7.el6.x86_64 -Installing upstart-0.6.5-12.el6_4.1.x86_64 -Installing file-5.04-15.el6.x86_64 -Installing gmp-4.3.1-7.el6_2.2.x86_64 -Installing libusb-0.1.12-23.el6.x86_64 -Installing MAKEDEV-3.24-6.el6.x86_64 -Installing libutempter-1.1.5-4.1.el6.x86_64 -Installing psmisc-22.6-15.el6_0.1.x86_64 -Installing net-tools-1.60-110.el6_2.x86_64 -Installing vim-minimal-7.2.411-1.8.el6.x86_64 -Installing tar-1.23-11.el6.x86_64 -Installing procps-3.2.8-25.el6.x86_64 -Installing db4-utils-4.7.25-18.el6_4.x86_64 -Installing e2fsprogs-libs-1.41.12-18.el6.x86_64 -Installing libss-1.41.12-18.el6.x86_64 -Installing pinentry-0.7.6-6.el6.x86_64 -Installing binutils-2.20.51.0.2-5.36.el6.x86_64 -Installing m4-1.4.13-5.el6.x86_64 -Installing diffutils-2.8.1-28.el6.x86_64 -Installing make-3.81-20.el6.x86_64 -Installing dash-0.5.5.1-4.el6.x86_64 -Installing ncurses-5.7-3.20090208.el6.x86_64 -Installing groff-1.18.1.4-21.el6.x86_64 -Installing less-436-10.el6.x86_64 -Installing coreutils-libs-8.4-31.el6.x86_64 -Installing gzip-1.3.12-19.el6_4.x86_64 -Installing cracklib-2.8.16-4.el6.x86_64 -Installing cracklib-dicts-2.8.16-4.el6.x86_64 -Installing coreutils-8.4-31.el6.x86_64 -Installing pam-1.1.1-17.el6.x86_64 -Installing module-init-tools-3.9-21.el6_4.x86_64 -Installing hwdata-0.233-9.1.el6.noarch -Installing redhat-logos-60.0.14-12.el6.centos.noarch -Installing plymouth-scripts-0.8.3-27.el6.centos.x86_64 -Installing libpciaccess-0.13.1-2.el6.x86_64 -Installing nss-3.15.1-15.el6.x86_64 -Installing nss-sysinit-3.15.1-15.el6.x86_64 -Installing nss-tools-3.15.1-15.el6.x86_64 -Installing openldap-2.4.23-32.el6_4.1.x86_64 -Installing logrotate-3.7.8-17.el6.x86_64 -Installing gdbm-1.8.0-36.el6.x86_64 -Installing mingetty-1.08-5.el6.x86_64 -Installing keyutils-libs-1.4-4.el6.x86_64 -Installing krb5-libs-1.10.3-10.el6_4.6.x86_64 -Installing openssl-1.0.1e-15.el6.x86_64 -Installing libssh2-1.4.2-1.el6.x86_64 -Installing libcurl-7.19.7-37.el6_4.x86_64 -Installing gnupg2-2.0.14-6.el6_4.x86_64 -Installing gpgme-1.1.8-3.el6.x86_64 -Installing curl-7.19.7-37.el6_4.x86_64 -Installing rpm-libs-4.8.0-37.el6.x86_64 -Installing rpm-4.8.0-37.el6.x86_64 -Installing fipscheck-lib-1.2.0-7.el6.x86_64 -Installing fipscheck-1.2.0-7.el6.x86_64 -Installing mysql-libs-5.1.71-1.el6.x86_64 -Installing ethtool-3.5-1.el6.x86_64 -Installing pciutils-libs-3.1.10-2.el6.x86_64 -Installing plymouth-core-libs-0.8.3-27.el6.centos.x86_64 -Installing libcap-ng-0.6.4-3.el6_0.1.x86_64 -Installing libffi-3.0.5-3.2.el6.x86_64 -Installing python-2.6.6-51.el6.x86_64 -Installing python-libs-2.6.6-51.el6.x86_64 -Installing python-pycurl-7.19.0-8.el6.x86_64 -Installing python-urlgrabber-3.9.1-9.el6.noarch -Installing pygpgme-0.1-18.20090824bzr68.el6.x86_64 -Installing rpm-python-4.8.0-37.el6.x86_64 -Installing python-iniparse-0.3.1-2.1.el6.noarch -Installing slang-2.2.1-1.el6.x86_64 -Installing newt-0.52.11-3.el6.x86_64 -Installing newt-python-0.52.11-3.el6.x86_64 -Installing ustr-1.0.4-9.1.el6.x86_64 -Installing libsemanage-2.0.43-4.2.el6.x86_64 -Installing libaio-0.3.107-10.el6.x86_64 -Installing pkgconfig-0.23-9.1.el6.x86_64 -Installing gamin-0.1.10-9.el6.x86_64 -Installing glib2-2.26.1-3.el6.x86_64 -Installing shared-mime-info-0.70-4.el6.x86_64 -Installing libuser-0.56.13-5.el6.x86_64 -Installing grubby-7.0.15-5.el6.x86_64 -Installing yum-metadata-parser-1.1.2-16.el6.x86_64 -Installing yum-plugin-fastestmirror-1.1.30-14.el6.noarch -Installing yum-3.2.29-40.el6.centos.noarch -Installing dbus-glib-0.86-6.el6.x86_64 -Installing dhcp-common-4.1.1-38.P1.el6.centos.x86_64 -Installing centos-release-6-5.el6.centos.11.1.x86_64 -Installing policycoreutils-2.0.83-19.39.el6.x86_64 -Installing iptables-1.4.7-11.el6.x86_64 -Installing iproute-2.6.32-31.el6.x86_64 -Installing iputils-20071127-17.el6_4.2.x86_64 -Installing util-linux-ng-2.17.2-12.14.el6.x86_64 -Installing initscripts-9.03.40-2.el6.centos.x86_64 -Installing udev-147-2.51.el6.x86_64 -Installing device-mapper-libs-1.02.79-8.el6.x86_64 -Installing device-mapper-1.02.79-8.el6.x86_64 -Installing device-mapper-event-libs-1.02.79-8.el6.x86_64 -Installing openssh-5.3p1-94.el6.x86_64 -Installing device-mapper-event-1.02.79-8.el6.x86_64 -Installing lvm2-libs-2.02.100-8.el6.x86_64 -Installing cryptsetup-luks-libs-1.2.0-7.el6.x86_64 -Installing device-mapper-multipath-libs-0.4.9-72.el6.x86_64 -Installing kpartx-0.4.9-72.el6.x86_64 -Installing libdrm-2.4.45-2.el6.x86_64 -Installing plymouth-0.8.3-27.el6.centos.x86_64 -Installing rsyslog-5.8.10-8.el6.x86_64 -Installing cyrus-sasl-2.1.23-13.el6_3.1.x86_64 -Installing postfix-2.6.6-2.2.el6_1.x86_64 -Installing cronie-anacron-1.4.4-12.el6.x86_64 -Installing cronie-1.4.4-12.el6.x86_64 -Installing crontabs-1.10-33.el6.noarch -Installing ntpdate-4.2.6p5-1.el6.centos.x86_64 -Installing iptables-ipv6-1.4.7-11.el6.x86_64 -Installing selinux-policy-3.7.19-231.el6.noarch -Installing kbd-misc-1.15-11.el6.noarch -Installing kbd-1.15-11.el6.x86_64 -Installing dracut-004-335.el6.noarch -Installing dracut-kernel-004-335.el6.noarch -Installing kernel-2.6.32-431.el6.x86_64 -Installing fuse-2.8.3-4.el6.x86_64 -Installing selinux-policy-targeted-3.7.19-231.el6.noarch -Installing system-config-firewall-base-1.2.27-5.el6.noarch -Installing ntp-4.2.6p5-1.el6.centos.x86_64 -Installing device-mapper-multipath-0.4.9-72.el6.x86_64 -Installing cryptsetup-luks-1.2.0-7.el6.x86_64 -Installing lvm2-2.02.100-8.el6.x86_64 -Installing openssh-clients-5.3p1-94.el6.x86_64 -Installing openssh-server-5.3p1-94.el6.x86_64 -Installing mdadm-3.2.6-7.el6.x86_64 -Installing b43-openfwwf-5.2-4.el6.noarch -Installing dhclient-4.1.1-38.P1.el6.centos.x86_64 -Installing iscsi-initiator-utils-6.2.0.873-10.el6.x86_64 -Installing passwd-0.77-4.el6_2.2.x86_64 -Installing authconfig-6.1.12-13.el6.x86_64 -Installing grub-0.97-83.el6.x86_64 -Installing efibootmgr-0.5.4-11.el6.x86_64 -Installing wget-1.12-1.8.el6.x86_64 -Installing sudo-1.8.6p3-12.el6.x86_64 -Installing audit-2.2-2.el6.x86_64 -Installing e2fsprogs-1.41.12-18.el6.x86_64 -Installing xfsprogs-3.1.1-14.el6.x86_64 -Installing acl-2.2.49-6.el6.x86_64 -Installing attr-2.4.44-7.el6.x86_64 -Installing chef-11.8.0-1.el6.x86_64 -warning: chef-11.8.0-1.el6.x86_64: Header V4 DSA/SHA1 Signature, key ID 83ef826a: NOKEY -Installing bridge-utils-1.2-10.el6.x86_64 -Installing rootfiles-8.1-6.1.el6.noarch -*** FINISHED INSTALLING PACKAGES *** \ No newline at end of file diff --git a/compass/tests/actions/update_progress/data/test2/anamon/checkpoint_3/server1.1/sys.log.template b/compass/tests/actions/update_progress/data/test2/anamon/checkpoint_3/server1.1/sys.log.template deleted file mode 100644 index 7390276a..00000000 --- a/compass/tests/actions/update_progress/data/test2/anamon/checkpoint_3/server1.1/sys.log.template +++ /dev/null @@ -1,1726 +0,0 @@ -05:51:18,517 INFO kernel:imklog 5.8.10, log source = /proc/kmsg started. -05:51:18,517 INFO rsyslogd: [origin software="rsyslogd" swVersion="5.8.10" x-pid="68" x-info="http://www.rsyslog.com"] start -05:51:18,517 INFO kernel:Initializing cgroup subsys cpuset -05:51:18,517 INFO kernel:Initializing cgroup subsys cpu -05:51:18,517 NOTICE kernel:Linux version 2.6.32-431.el6.x86_64 (mockbuild@c6b8.bsys.dev.centos.org) (gcc version 4.4.7 20120313 (Red Hat 4.4.7-4) (GCC) ) #1 SMP Fri Nov 22 03:15:09 UTC 2013 -05:51:18,517 INFO kernel:Command line: initrd=/images/CentOS-6.5-x86_64/initrd.img ksdevice=bootif lang= kssendmac text ks=http://10.145.88.211/cblr/svc/op/ks/system/server1.1 BOOT_IMAGE=/images/CentOS-6.5-x86_64/vmlinuz BOOTIF=01-00-0c-29-21-89-af -05:51:18,517 INFO kernel:KERNEL supported cpus: -05:51:18,517 INFO kernel: Intel GenuineIntel -05:51:18,517 INFO kernel: AMD AuthenticAMD -05:51:18,517 INFO kernel: Centaur CentaurHauls -05:51:18,517 INFO kernel:Disabled fast string operations -05:51:18,517 INFO kernel:BIOS-provided physical RAM map: -05:51:18,517 INFO kernel: BIOS-e820: 0000000000000000 - 000000000009f400 (usable) -05:51:18,517 INFO kernel: BIOS-e820: 000000000009f400 - 00000000000a0000 (reserved) -05:51:18,517 INFO kernel: BIOS-e820: 00000000000ca000 - 00000000000cc000 (reserved) -05:51:18,517 INFO kernel: BIOS-e820: 00000000000dc000 - 0000000000100000 (reserved) -05:51:18,517 INFO kernel: BIOS-e820: 0000000000100000 - 000000007fef0000 (usable) -05:51:18,517 INFO kernel: BIOS-e820: 000000007fef0000 - 000000007feff000 (ACPI data) -05:51:18,517 INFO kernel: BIOS-e820: 000000007feff000 - 000000007ff00000 (ACPI NVS) -05:51:18,517 INFO kernel: BIOS-e820: 000000007ff00000 - 0000000080000000 (usable) -05:51:18,517 INFO kernel: BIOS-e820: 00000000e0000000 - 00000000f0000000 (reserved) -05:51:18,517 INFO kernel: BIOS-e820: 00000000fec00000 - 00000000fec10000 (reserved) -05:51:18,517 INFO kernel: BIOS-e820: 00000000fee00000 - 00000000fee01000 (reserved) -05:51:18,517 INFO kernel: BIOS-e820: 00000000fffe0000 - 0000000100000000 (reserved) -05:51:18,517 INFO kernel:DMI present. -05:51:18,517 WARNING kernel:SMBIOS version 2.4 @ 0xF68F0 -05:51:18,517 DEBUG kernel:DMI: VMware, Inc. VMware Virtual Platform/440BX Desktop Reference Platform, BIOS 6.00 01/07/2011 -05:51:18,517 NOTICE kernel:Phoenix BIOS detected: BIOS may corrupt low RAM, working around it. -05:51:18,517 DEBUG kernel:e820 update range: 0000000000000000 - 0000000000010000 (usable) ==> (reserved) -05:51:18,517 INFO kernel:Hypervisor detected: VMware -05:51:18,517 DEBUG kernel:e820 update range: 0000000000000000 - 0000000000001000 (usable) ==> (reserved) -05:51:18,517 DEBUG kernel:e820 remove range: 00000000000a0000 - 0000000000100000 (usable) -05:51:18,517 INFO kernel:last_pfn = 0x80000 max_arch_pfn = 0x400000000 -05:51:18,517 DEBUG kernel:MTRR default type: uncachable -05:51:18,517 DEBUG kernel:MTRR fixed ranges enabled: -05:51:18,517 DEBUG kernel: 00000-9FFFF write-back -05:51:18,517 DEBUG kernel: A0000-BFFFF uncachable -05:51:18,517 DEBUG kernel: C0000-CFFFF write-protect -05:51:18,517 DEBUG kernel: D0000-EFFFF uncachable -05:51:18,517 DEBUG kernel: F0000-FFFFF write-protect -05:51:18,517 DEBUG kernel:MTRR variable ranges enabled: -05:51:18,517 DEBUG kernel: 0 base 0000000000 mask FF80000000 write-back -05:51:18,517 DEBUG kernel: 1 disabled -05:51:18,517 DEBUG kernel: 2 disabled -05:51:18,517 DEBUG kernel: 3 disabled -05:51:18,517 DEBUG kernel: 4 disabled -05:51:18,517 DEBUG kernel: 5 disabled -05:51:18,517 DEBUG kernel: 6 disabled -05:51:18,517 DEBUG kernel: 7 disabled -05:51:18,517 INFO kernel:x86 PAT enabled: cpu 0, old 0x0, new 0x7010600070106 -05:51:18,517 DEBUG kernel:initial memory mapped : 0 - 20000000 -05:51:18,517 INFO kernel:init_memory_mapping: 0000000000000000-0000000080000000 -05:51:18,517 DEBUG kernel: 0000000000 - 0080000000 page 2M -05:51:18,517 DEBUG kernel:kernel direct mapping tables up to 80000000 @ 10000-13000 -05:51:18,517 INFO kernel:RAMDISK: 7def9000 - 7fecf4ff -05:51:18,517 WARNING kernel:ACPI: RSDP 00000000000f6940 00024 (v02 PTLTD ) -05:51:18,517 WARNING kernel:ACPI: XSDT 000000007fef0333 00054 (v01 INTEL 440BX 06040000 VMW 01324272) -05:51:18,517 WARNING kernel:ACPI: FACP 000000007fefee98 000F4 (v04 INTEL 440BX 06040000 PTL 000F4240) -05:51:18,517 WARNING kernel:ACPI: DSDT 000000007fef055d 0E93B (v01 PTLTD Custom 06040000 MSFT 03000001) -05:51:18,517 WARNING kernel:ACPI: FACS 000000007fefffc0 00040 -05:51:18,517 WARNING kernel:ACPI: BOOT 000000007fef0535 00028 (v01 PTLTD $SBFTBL$ 06040000 LTP 00000001) -05:51:18,517 WARNING kernel:ACPI: APIC 000000007fef04d7 0005E (v01 PTLTD ? APIC 06040000 LTP 00000000) -05:51:18,517 WARNING kernel:ACPI: MCFG 000000007fef049b 0003C (v01 PTLTD $PCITBL$ 06040000 LTP 00000001) -05:51:18,517 WARNING kernel:ACPI: SRAT 000000007fef03fb 000A0 (v02 VMWARE MEMPLUG 06040000 VMW 00000001) -05:51:18,517 WARNING kernel:ACPI: HPET 000000007fef03c3 00038 (v01 VMWARE VMW HPET 06040000 WMV 00000001) -05:51:18,517 DEBUG kernel:ACPI: Local APIC address 0xfee00000 -05:51:18,517 INFO kernel:Setting APIC routing to flat. -05:51:18,517 INFO kernel:SRAT: PXM 0 -> APIC 0 -> Node 0 -05:51:18,517 INFO kernel:SRAT: PXM 0 -> APIC 1 -> Node 0 -05:51:18,517 INFO kernel:SRAT: Node 0 PXM 0 0-a0000 -05:51:18,517 INFO kernel:SRAT: Node 0 PXM 0 100000-80000000 -05:51:18,517 DEBUG kernel:NUMA: Allocated memnodemap from 11000 - 12040 -05:51:18,517 DEBUG kernel:NUMA: Using 20 for the hash shift. -05:51:18,517 INFO kernel:Bootmem setup node 0 0000000000000000-0000000080000000 -05:51:18,517 INFO kernel: NODE_DATA [0000000000012040 - 000000000004603f] -05:51:18,517 INFO kernel: bootmap [0000000000047000 - 0000000000056fff] pages 10 -05:51:18,517 INFO kernel:(8 early reservations) ==> bootmem [0000000000 - 0080000000] -05:51:18,517 INFO kernel: #0 [0000000000 - 0000001000] BIOS data page ==> [0000000000 - 0000001000] -05:51:18,517 INFO kernel: #1 [0000006000 - 0000008000] TRAMPOLINE ==> [0000006000 - 0000008000] -05:51:18,517 INFO kernel: #2 [0001000000 - 000201faa4] TEXT DATA BSS ==> [0001000000 - 000201faa4] -05:51:18,517 INFO kernel: #3 [007def9000 - 007fecf4ff] RAMDISK ==> [007def9000 - 007fecf4ff] -05:51:18,517 INFO kernel: #4 [000009f400 - 0000100000] BIOS reserved ==> [000009f400 - 0000100000] -05:51:18,517 INFO kernel: #5 [0002020000 - 00020201f0] BRK ==> [0002020000 - 00020201f0] -05:51:18,517 INFO kernel: #6 [0000010000 - 0000011000] PGTABLE ==> [0000010000 - 0000011000] -05:51:18,517 INFO kernel: #7 [0000011000 - 0000012040] MEMNODEMAP ==> [0000011000 - 0000012040] -05:51:18,517 INFO kernel:found SMP MP-table at [ffff8800000f69b0] f69b0 -05:51:18,517 DEBUG kernel: [ffffea0000000000-ffffea0001bfffff] PMD -> [ffff880002600000-ffff8800041fffff] on node 0 -05:51:18,517 WARNING kernel:Zone PFN ranges: -05:51:18,517 WARNING kernel: DMA 0x00000010 -> 0x00001000 -05:51:18,517 WARNING kernel: DMA32 0x00001000 -> 0x00100000 -05:51:18,517 WARNING kernel: Normal 0x00100000 -> 0x00100000 -05:51:18,517 WARNING kernel:Movable zone start PFN for each node -05:51:18,517 WARNING kernel:early_node_map[3] active PFN ranges -05:51:18,517 WARNING kernel: 0: 0x00000010 -> 0x0000009f -05:51:18,517 WARNING kernel: 0: 0x00000100 -> 0x0007fef0 -05:51:18,517 WARNING kernel: 0: 0x0007ff00 -> 0x00080000 -05:51:18,517 DEBUG kernel:On node 0 totalpages: 524159 -05:51:18,517 DEBUG kernel: DMA zone: 56 pages used for memmap -05:51:18,517 DEBUG kernel: DMA zone: 101 pages reserved -05:51:18,517 DEBUG kernel: DMA zone: 3826 pages, LIFO batch:0 -05:51:18,517 DEBUG kernel: DMA32 zone: 7112 pages used for memmap -05:51:18,517 DEBUG kernel: DMA32 zone: 513064 pages, LIFO batch:31 -05:51:18,517 INFO kernel:ACPI: PM-Timer IO Port: 0x1008 -05:51:18,517 DEBUG kernel:ACPI: Local APIC address 0xfee00000 -05:51:18,517 INFO kernel:Setting APIC routing to flat. -05:51:18,517 INFO kernel:ACPI: LAPIC (acpi_id[0x00] lapic_id[0x00] enabled) -05:51:18,517 INFO kernel:ACPI: LAPIC (acpi_id[0x01] lapic_id[0x01] enabled) -05:51:18,517 INFO kernel:ACPI: LAPIC_NMI (acpi_id[0x00] high edge lint[0x1]) -05:51:18,517 INFO kernel:ACPI: LAPIC_NMI (acpi_id[0x01] high edge lint[0x1]) -05:51:18,517 INFO kernel:ACPI: IOAPIC (id[0x02] address[0xfec00000] gsi_base[0]) -05:51:18,518 INFO kernel:IOAPIC[0]: apic_id 2, version 17, address 0xfec00000, GSI 0-23 -05:51:18,518 INFO kernel:ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 high edge) -05:51:18,518 DEBUG kernel:ACPI: IRQ0 used by override. -05:51:18,518 DEBUG kernel:ACPI: IRQ2 used by override. -05:51:18,518 DEBUG kernel:ACPI: IRQ9 used by override. -05:51:18,518 INFO kernel:Using ACPI (MADT) for SMP configuration information -05:51:18,518 INFO kernel:ACPI: HPET id: 0x8086af01 base: 0xfed00000 -05:51:18,518 INFO kernel:SMP: Allowing 2 CPUs, 0 hotplug CPUs -05:51:18,518 DEBUG kernel:nr_irqs_gsi: 24 -05:51:18,518 INFO kernel:PM: Registered nosave memory: 000000000009f000 - 00000000000a0000 -05:51:18,518 INFO kernel:PM: Registered nosave memory: 00000000000a0000 - 00000000000ca000 -05:51:18,518 INFO kernel:PM: Registered nosave memory: 00000000000ca000 - 00000000000cc000 -05:51:18,518 INFO kernel:PM: Registered nosave memory: 00000000000cc000 - 00000000000dc000 -05:51:18,518 INFO kernel:PM: Registered nosave memory: 00000000000dc000 - 0000000000100000 -05:51:18,518 INFO kernel:PM: Registered nosave memory: 000000007fef0000 - 000000007feff000 -05:51:18,518 INFO kernel:PM: Registered nosave memory: 000000007feff000 - 000000007ff00000 -05:51:18,518 INFO kernel:Allocating PCI resources starting at 80000000 (gap: 80000000:60000000) -05:51:18,518 INFO kernel:Booting paravirtualized kernel on bare hardware -05:51:18,518 INFO kernel:NR_CPUS:4096 nr_cpumask_bits:2 nr_cpu_ids:2 nr_node_ids:1 -05:51:18,518 INFO kernel:PERCPU: Embedded 31 pages/cpu @ffff880002200000 s94872 r8192 d23912 u1048576 -05:51:18,518 INFO kernel:pcpu-alloc: s94872 r8192 d23912 u1048576 alloc=1*2097152 -05:51:18,518 INFO kernel:pcpu-alloc: [0] 0 1 -05:51:18,518 WARNING kernel:Built 1 zonelists in Node order, mobility grouping on. Total pages: 516890 -05:51:18,520 WARNING kernel:Policy zone: DMA32 -05:51:18,520 NOTICE kernel:Kernel command line: initrd=/images/CentOS-6.5-x86_64/initrd.img ksdevice=bootif lang= kssendmac text ks=http://10.145.88.211/cblr/svc/op/ks/system/server1.1 BOOT_IMAGE=/images/CentOS-6.5-x86_64/vmlinuz BOOTIF=01-00-0c-29-21-89-af -05:51:18,520 INFO kernel:PID hash table entries: 4096 (order: 3, 32768 bytes) -05:51:18,520 INFO kernel:Checking aperture... -05:51:18,520 INFO kernel:No AGP bridge found -05:51:18,520 INFO kernel:Memory: 2018096k/2097152k available (5325k kernel code, 516k absent, 78540k reserved, 7013k data, 1276k init) -05:51:18,520 INFO kernel:Hierarchical RCU implementation. -05:51:18,520 INFO kernel:NR_IRQS:33024 nr_irqs:424 -05:51:18,520 INFO kernel:Extended CMOS year: 2000 -05:51:18,520 WARNING kernel:Console: colour VGA+ 80x25 -05:51:18,520 INFO kernel:console [tty0] enabled -05:51:18,520 INFO kernel:allocated 8388608 bytes of page_cgroup -05:51:18,520 INFO kernel:please try 'cgroup_disable=memory' option if you don't want memory cgroups -05:51:18,520 DEBUG kernel:hpet clockevent registered -05:51:18,520 INFO kernel:TSC freq read from hypervisor : 2400.085 MHz -05:51:18,520 WARNING kernel:Detected 2400.085 MHz processor. -05:51:18,520 INFO kernel:Calibrating delay loop (skipped) preset value.. 4800.17 BogoMIPS (lpj=2400085) -05:51:18,520 INFO kernel:pid_max: default: 32768 minimum: 301 -05:51:18,520 INFO kernel:Security Framework initialized -05:51:18,520 INFO kernel:SELinux: Initializing. -05:51:18,520 DEBUG kernel:SELinux: Starting in permissive mode -05:51:18,520 INFO kernel:Dentry cache hash table entries: 262144 (order: 9, 2097152 bytes) -05:51:18,520 INFO kernel:Inode-cache hash table entries: 131072 (order: 8, 1048576 bytes) -05:51:18,520 WARNING kernel:Mount-cache hash table entries: 256 -05:51:18,520 INFO kernel:Initializing cgroup subsys ns -05:51:18,520 INFO kernel:Initializing cgroup subsys cpuacct -05:51:18,520 INFO kernel:Initializing cgroup subsys memory -05:51:18,520 INFO kernel:Initializing cgroup subsys devices -05:51:18,520 INFO kernel:Initializing cgroup subsys freezer -05:51:18,520 INFO kernel:Initializing cgroup subsys net_cls -05:51:18,520 INFO kernel:Initializing cgroup subsys blkio -05:51:18,520 INFO kernel:Initializing cgroup subsys perf_event -05:51:18,520 INFO kernel:Initializing cgroup subsys net_prio -05:51:18,520 INFO kernel:Disabled fast string operations -05:51:18,520 INFO kernel:CPU: Physical Processor ID: 0 -05:51:18,520 INFO kernel:mce: CPU supports 0 MCE banks -05:51:18,520 INFO kernel:alternatives: switching to unfair spinlock -05:51:18,520 INFO kernel:ACPI: Core revision 20090903 -05:51:18,520 INFO kernel:ftrace: converting mcount calls to 0f 1f 44 00 00 -05:51:18,520 INFO kernel:ftrace: allocating 21769 entries in 86 pages -05:51:18,520 INFO kernel:APIC routing finalized to flat. -05:51:18,520 INFO kernel:..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1 -05:51:18,520 INFO kernel:CPU0: Intel(R) Xeon(R) CPU E5620 @ 2.40GHz stepping 02 -05:51:18,520 INFO kernel:Performance Events: 16-deep LBR, Westmere events, Intel PMU driver. -05:51:18,520 WARNING kernel:CPUID marked event: 'cpu cycles' unavailable -05:51:18,520 WARNING kernel:CPUID marked event: 'instructions' unavailable -05:51:18,520 WARNING kernel:CPUID marked event: 'bus cycles' unavailable -05:51:18,520 WARNING kernel:CPUID marked event: 'cache references' unavailable -05:51:18,520 WARNING kernel:CPUID marked event: 'cache misses' unavailable -05:51:18,520 WARNING kernel:CPUID marked event: 'branch instructions' unavailable -05:51:18,520 WARNING kernel:CPUID marked event: 'branch misses' unavailable -05:51:18,520 INFO kernel:... version: 3 -05:51:18,520 INFO kernel:... bit width: 48 -05:51:18,520 INFO kernel:... generic registers: 4 -05:51:18,520 INFO kernel:... value mask: 0000ffffffffffff -05:51:18,520 INFO kernel:... max period: 000000007fffffff -05:51:18,520 INFO kernel:... fixed-purpose events: 3 -05:51:18,520 INFO kernel:... event mask: 000000070000000f -05:51:18,520 WARNING kernel:NMI watchdog disabled (cpu0): hardware events not enabled -05:51:18,520 INFO kernel:Booting Node 0, Processors #1 Ok. -05:51:18,520 INFO kernel:Disabled fast string operations -05:51:18,520 INFO kernel:mce: CPU supports 0 MCE banks -05:51:18,520 INFO kernel:Skipped synchronization checks as TSC is reliable. -05:51:18,520 INFO kernel:Brought up 2 CPUs -05:51:18,520 INFO kernel:Total of 2 processors activated (9600.34 BogoMIPS). -05:51:18,520 INFO kernel:x86 PAT enabled: cpu 0, old 0x0, new 0x7010600070106 -05:51:18,520 INFO kernel:x86 PAT enabled: cpu 1, old 0x0, new 0x7010600070106 -05:51:18,520 DEBUG kernel:sizeof(vma)=200 bytes -05:51:18,520 DEBUG kernel:sizeof(page)=56 bytes -05:51:18,520 DEBUG kernel:sizeof(inode)=592 bytes -05:51:18,520 DEBUG kernel:sizeof(dentry)=192 bytes -05:51:18,520 DEBUG kernel:sizeof(ext3inode)=800 bytes -05:51:18,520 DEBUG kernel:sizeof(buffer_head)=104 bytes -05:51:18,520 DEBUG kernel:sizeof(skbuff)=232 bytes -05:51:18,520 DEBUG kernel:sizeof(task_struct)=2648 bytes -05:51:18,520 INFO kernel:devtmpfs: initialized -05:51:18,520 INFO kernel:PM: Registering ACPI NVS region at 7feff000 (4096 bytes) -05:51:18,520 INFO kernel:regulator: core version 0.5 -05:51:18,520 INFO kernel:NET: Registered protocol family 16 -05:51:18,520 INFO kernel:ACPI: bus type pci registered -05:51:18,520 NOTICE kernel:PCI: MCFG configuration 0: base e0000000 segment 0 buses 0 - 255 -05:51:18,520 NOTICE kernel:PCI: MCFG area at e0000000 reserved in E820 -05:51:18,520 INFO kernel:PCI: Using MMCONFIG at e0000000 - efffffff -05:51:18,520 INFO kernel:PCI: Using configuration type 1 for base access -05:51:18,520 WARNING kernel:bio: create slab at 0 -05:51:18,520 DEBUG kernel:ACPI: EC: Look up EC in DSDT -05:51:18,520 NOTICE kernel:ACPI: BIOS _OSI(Linux) query ignored -05:51:18,520 INFO kernel:ACPI: Interpreter enabled -05:51:18,520 INFO kernel:ACPI: (supports S0 S1 S4 S5) -05:51:18,520 INFO kernel:ACPI: Using IOAPIC for interrupt routing -05:51:18,520 INFO kernel:ACPI: No dock devices found. -05:51:18,520 INFO kernel:PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug -05:51:18,520 INFO kernel:ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-ff]) -05:51:18,520 INFO kernel:pci_root PNP0A03:00: host bridge window [mem 0x000a0000-0x000bffff] -05:51:18,520 INFO kernel:pci_root PNP0A03:00: host bridge window [mem 0x000d0000-0x000d3fff] -05:51:18,520 INFO kernel:pci_root PNP0A03:00: host bridge window [mem 0x000d4000-0x000d7fff] -05:51:18,520 INFO kernel:pci_root PNP0A03:00: host bridge window [mem 0x000d8000-0x000dbfff] -05:51:18,520 INFO kernel:pci_root PNP0A03:00: host bridge window [mem 0x80000000-0xfebfffff] -05:51:18,520 INFO kernel:pci_root PNP0A03:00: host bridge window [io 0x0000-0x0cf7] -05:51:18,520 INFO kernel:pci_root PNP0A03:00: host bridge window [io 0x0d00-0xfeff] -05:51:18,520 INFO kernel:PCI host bridge to bus 0000:00 -05:51:18,520 INFO kernel:pci_bus 0000:00: root bus resource [mem 0x000a0000-0x000bffff] -05:51:18,520 INFO kernel:pci_bus 0000:00: root bus resource [mem 0x000d0000-0x000d3fff] -05:51:18,520 INFO kernel:pci_bus 0000:00: root bus resource [mem 0x000d4000-0x000d7fff] -05:51:18,520 INFO kernel:pci_bus 0000:00: root bus resource [mem 0x000d8000-0x000dbfff] -05:51:18,520 INFO kernel:pci_bus 0000:00: root bus resource [mem 0x80000000-0xfebfffff] -05:51:18,520 INFO kernel:pci_bus 0000:00: root bus resource [io 0x0000-0x0cf7] -05:51:18,520 INFO kernel:pci_bus 0000:00: root bus resource [io 0x0d00-0xfeff] -05:51:18,520 DEBUG kernel:pci 0000:00:07.1: reg 20: [io 0x10c0-0x10cf] -05:51:18,520 INFO kernel:pci 0000:00:07.3: quirk: [io 0x1000-0x103f] claimed by PIIX4 ACPI -05:51:18,520 INFO kernel:pci 0000:00:07.3: quirk: [io 0x1040-0x104f] claimed by PIIX4 SMB -05:51:18,520 DEBUG kernel:pci 0000:00:07.7: reg 10: [io 0x1080-0x10bf] -05:51:18,520 DEBUG kernel:pci 0000:00:07.7: reg 14: [mem 0xd0000000-0xd0001fff 64bit] -05:51:18,520 DEBUG kernel:pci 0000:00:0f.0: reg 10: [io 0x10d0-0x10df] -05:51:18,520 DEBUG kernel:pci 0000:00:0f.0: reg 14: [mem 0xd8000000-0xdbffffff pref] -05:51:18,520 DEBUG kernel:pci 0000:00:0f.0: reg 18: [mem 0xd0800000-0xd0ffffff] -05:51:18,520 DEBUG kernel:pci 0000:00:0f.0: reg 30: [mem 0x00000000-0x00007fff pref] -05:51:18,520 DEBUG kernel:pci 0000:00:10.0: reg 10: [io 0x1400-0x14ff] -05:51:18,520 DEBUG kernel:pci 0000:00:10.0: reg 14: [mem 0xd0040000-0xd005ffff 64bit] -05:51:18,520 DEBUG kernel:pci 0000:00:10.0: reg 1c: [mem 0xd0020000-0xd003ffff 64bit] -05:51:18,520 DEBUG kernel:pci 0000:00:10.0: reg 30: [mem 0x00000000-0x00003fff pref] -05:51:18,520 INFO kernel:pci 0000:00:15.0: PME# supported from D0 D3hot D3cold -05:51:18,520 INFO kernel:pci 0000:00:15.0: PME# disabled -05:51:18,520 INFO kernel:pci 0000:00:15.1: PME# supported from D0 D3hot D3cold -05:51:18,520 INFO kernel:pci 0000:00:15.1: PME# disabled -05:51:18,520 INFO kernel:pci 0000:00:15.2: PME# supported from D0 D3hot D3cold -05:51:18,520 INFO kernel:pci 0000:00:15.2: PME# disabled -05:51:18,520 INFO kernel:pci 0000:00:15.3: PME# supported from D0 D3hot D3cold -05:51:18,520 INFO kernel:pci 0000:00:15.3: PME# disabled -05:51:18,520 INFO kernel:pci 0000:00:15.4: PME# supported from D0 D3hot D3cold -05:51:18,520 INFO kernel:pci 0000:00:15.4: PME# disabled -05:51:18,520 INFO kernel:pci 0000:00:15.5: PME# supported from D0 D3hot D3cold -05:51:18,520 INFO kernel:pci 0000:00:15.5: PME# disabled -05:51:18,520 INFO kernel:pci 0000:00:15.6: PME# supported from D0 D3hot D3cold -05:51:18,520 INFO kernel:pci 0000:00:15.6: PME# disabled -05:51:18,520 INFO kernel:pci 0000:00:15.7: PME# supported from D0 D3hot D3cold -05:51:18,520 INFO kernel:pci 0000:00:15.7: PME# disabled -05:51:18,520 INFO kernel:pci 0000:00:16.0: PME# supported from D0 D3hot D3cold -05:51:18,520 INFO kernel:pci 0000:00:16.0: PME# disabled -05:51:18,520 INFO kernel:pci 0000:00:16.1: PME# supported from D0 D3hot D3cold -05:51:18,520 INFO kernel:pci 0000:00:16.1: PME# disabled -05:51:18,520 INFO kernel:pci 0000:00:16.2: PME# supported from D0 D3hot D3cold -05:51:18,520 INFO kernel:pci 0000:00:16.2: PME# disabled -05:51:18,520 INFO kernel:pci 0000:00:16.3: PME# supported from D0 D3hot D3cold -05:51:18,520 INFO kernel:pci 0000:00:16.3: PME# disabled -05:51:18,520 INFO kernel:pci 0000:00:16.4: PME# supported from D0 D3hot D3cold -05:51:18,520 INFO kernel:pci 0000:00:16.4: PME# disabled -05:51:18,520 INFO kernel:pci 0000:00:16.5: PME# supported from D0 D3hot D3cold -05:51:18,520 INFO kernel:pci 0000:00:16.5: PME# disabled -05:51:18,520 INFO kernel:pci 0000:00:16.6: PME# supported from D0 D3hot D3cold -05:51:18,520 INFO kernel:pci 0000:00:16.6: PME# disabled -05:51:18,520 INFO kernel:pci 0000:00:16.7: PME# supported from D0 D3hot D3cold -05:51:18,520 INFO kernel:pci 0000:00:16.7: PME# disabled -05:51:18,520 INFO kernel:pci 0000:00:17.0: PME# supported from D0 D3hot D3cold -05:51:18,520 INFO kernel:pci 0000:00:17.0: PME# disabled -05:51:18,520 INFO kernel:pci 0000:00:17.1: PME# supported from D0 D3hot D3cold -05:51:18,520 INFO kernel:pci 0000:00:17.1: PME# disabled -05:51:18,520 INFO kernel:pci 0000:00:17.2: PME# supported from D0 D3hot D3cold -05:51:18,520 INFO kernel:pci 0000:00:17.2: PME# disabled -05:51:18,520 INFO kernel:pci 0000:00:17.3: PME# supported from D0 D3hot D3cold -05:51:18,520 INFO kernel:pci 0000:00:17.3: PME# disabled -05:51:18,520 INFO kernel:pci 0000:00:17.4: PME# supported from D0 D3hot D3cold -05:51:18,520 INFO kernel:pci 0000:00:17.4: PME# disabled -05:51:18,520 INFO kernel:pci 0000:00:17.5: PME# supported from D0 D3hot D3cold -05:51:18,520 INFO kernel:pci 0000:00:17.5: PME# disabled -05:51:18,520 INFO kernel:pci 0000:00:17.6: PME# supported from D0 D3hot D3cold -05:51:18,520 INFO kernel:pci 0000:00:17.6: PME# disabled -05:51:18,520 INFO kernel:pci 0000:00:17.7: PME# supported from D0 D3hot D3cold -05:51:18,520 INFO kernel:pci 0000:00:17.7: PME# disabled -05:51:18,520 INFO kernel:pci 0000:00:18.0: PME# supported from D0 D3hot D3cold -05:51:18,520 INFO kernel:pci 0000:00:18.0: PME# disabled -05:51:18,520 INFO kernel:pci 0000:00:18.1: PME# supported from D0 D3hot D3cold -05:51:18,520 INFO kernel:pci 0000:00:18.1: PME# disabled -05:51:18,520 INFO kernel:pci 0000:00:18.2: PME# supported from D0 D3hot D3cold -05:51:18,520 INFO kernel:pci 0000:00:18.2: PME# disabled -05:51:18,520 INFO kernel:pci 0000:00:18.3: PME# supported from D0 D3hot D3cold -05:51:18,520 INFO kernel:pci 0000:00:18.3: PME# disabled -05:51:18,520 INFO kernel:pci 0000:00:18.4: PME# supported from D0 D3hot D3cold -05:51:18,520 INFO kernel:pci 0000:00:18.4: PME# disabled -05:51:18,520 INFO kernel:pci 0000:00:18.5: PME# supported from D0 D3hot D3cold -05:51:18,520 INFO kernel:pci 0000:00:18.5: PME# disabled -05:51:18,520 INFO kernel:pci 0000:00:18.6: PME# supported from D0 D3hot D3cold -05:51:18,520 INFO kernel:pci 0000:00:18.6: PME# disabled -05:51:18,520 INFO kernel:pci 0000:00:18.7: PME# supported from D0 D3hot D3cold -05:51:18,520 INFO kernel:pci 0000:00:18.7: PME# disabled -05:51:18,520 INFO kernel:pci 0000:00:01.0: PCI bridge to [bus 01-01] -05:51:18,520 DEBUG kernel:pci 0000:00:01.0: bridge window [io 0xf000-0x0000] (disabled) -05:51:18,520 DEBUG kernel:pci 0000:00:01.0: bridge window [mem 0xfff00000-0x000fffff] (disabled) -05:51:18,520 DEBUG kernel:pci 0000:00:01.0: bridge window [mem 0xfff00000-0x000fffff pref] (disabled) -05:51:18,520 DEBUG kernel:pci 0000:02:00.0: reg 10: [mem 0xd1020000-0xd103ffff 64bit] -05:51:18,520 DEBUG kernel:pci 0000:02:00.0: reg 18: [mem 0xd1000000-0xd100ffff 64bit] -05:51:18,520 DEBUG kernel:pci 0000:02:00.0: reg 20: [io 0x2000-0x203f] -05:51:18,520 DEBUG kernel:pci 0000:02:00.0: reg 30: [mem 0x00000000-0x0000ffff pref] -05:51:18,520 INFO kernel:pci 0000:02:00.0: PME# supported from D0 D3hot D3cold -05:51:18,520 INFO kernel:pci 0000:02:00.0: PME# disabled -05:51:18,520 DEBUG kernel:pci 0000:02:01.0: reg 10: [mem 0xd1040000-0xd105ffff 64bit] -05:51:18,520 DEBUG kernel:pci 0000:02:01.0: reg 18: [mem 0xd1010000-0xd101ffff 64bit] -05:51:18,520 DEBUG kernel:pci 0000:02:01.0: reg 20: [io 0x2040-0x207f] -05:51:18,520 DEBUG kernel:pci 0000:02:01.0: reg 30: [mem 0x00000000-0x0000ffff pref] -05:51:18,520 INFO kernel:pci 0000:02:01.0: PME# supported from D0 D3hot D3cold -05:51:18,520 INFO kernel:pci 0000:02:01.0: PME# disabled -05:51:18,520 DEBUG kernel:pci 0000:02:02.0: reg 10: [mem 0xd1080000-0xd109ffff 64bit] -05:51:18,520 DEBUG kernel:pci 0000:02:02.0: reg 18: [mem 0xd1060000-0xd106ffff 64bit] -05:51:18,520 DEBUG kernel:pci 0000:02:02.0: reg 20: [io 0x2080-0x20bf] -05:51:18,520 DEBUG kernel:pci 0000:02:02.0: reg 30: [mem 0x00000000-0x0000ffff pref] -05:51:18,520 INFO kernel:pci 0000:02:02.0: PME# supported from D0 D3hot D3cold -05:51:18,520 INFO kernel:pci 0000:02:02.0: PME# disabled -05:51:18,520 DEBUG kernel:pci 0000:02:03.0: reg 10: [mem 0xd10a0000-0xd10bffff 64bit] -05:51:18,520 DEBUG kernel:pci 0000:02:03.0: reg 18: [mem 0xd1070000-0xd107ffff 64bit] -05:51:18,520 DEBUG kernel:pci 0000:02:03.0: reg 20: [io 0x20c0-0x20ff] -05:51:18,520 DEBUG kernel:pci 0000:02:03.0: reg 30: [mem 0x00000000-0x0000ffff pref] -05:51:18,520 INFO kernel:pci 0000:02:03.0: PME# supported from D0 D3hot D3cold -05:51:18,520 INFO kernel:pci 0000:02:03.0: PME# disabled -05:51:18,520 INFO kernel:pci 0000:00:11.0: PCI bridge to [bus 02-02] (subtractive decode) -05:51:18,520 DEBUG kernel:pci 0000:00:11.0: bridge window [io 0x2000-0x3fff] -05:51:18,520 DEBUG kernel:pci 0000:00:11.0: bridge window [mem 0xd1000000-0xd23fffff] -05:51:18,520 DEBUG kernel:pci 0000:00:11.0: bridge window [mem 0xdc400000-0xdc9fffff 64bit pref] -05:51:18,520 DEBUG kernel:pci 0000:00:11.0: bridge window [mem 0x000a0000-0x000bffff] (subtractive decode) -05:51:18,520 DEBUG kernel:pci 0000:00:11.0: bridge window [mem 0x000d0000-0x000d3fff] (subtractive decode) -05:51:18,520 DEBUG kernel:pci 0000:00:11.0: bridge window [mem 0x000d4000-0x000d7fff] (subtractive decode) -05:51:18,520 DEBUG kernel:pci 0000:00:11.0: bridge window [mem 0x000d8000-0x000dbfff] (subtractive decode) -05:51:18,520 DEBUG kernel:pci 0000:00:11.0: bridge window [mem 0x80000000-0xfebfffff] (subtractive decode) -05:51:18,520 DEBUG kernel:pci 0000:00:11.0: bridge window [io 0x0000-0x0cf7] (subtractive decode) -05:51:18,520 DEBUG kernel:pci 0000:00:11.0: bridge window [io 0x0d00-0xfeff] (subtractive decode) -05:51:18,520 INFO kernel:pci 0000:00:15.0: PCI bridge to [bus 03-03] -05:51:18,520 DEBUG kernel:pci 0000:00:15.0: bridge window [io 0x4000-0x4fff] -05:51:18,520 DEBUG kernel:pci 0000:00:15.0: bridge window [mem 0xd2400000-0xd24fffff] -05:51:18,520 DEBUG kernel:pci 0000:00:15.0: bridge window [mem 0xd4400000-0xd44fffff 64bit pref] -05:51:18,520 INFO kernel:pci 0000:00:15.1: PCI bridge to [bus 04-04] -05:51:18,520 DEBUG kernel:pci 0000:00:15.1: bridge window [io 0x8000-0x8fff] -05:51:18,520 DEBUG kernel:pci 0000:00:15.1: bridge window [mem 0xd2800000-0xd28fffff] -05:51:18,520 DEBUG kernel:pci 0000:00:15.1: bridge window [mem 0xd4800000-0xd48fffff 64bit pref] -05:51:18,520 INFO kernel:pci 0000:00:15.2: PCI bridge to [bus 05-05] -05:51:18,520 DEBUG kernel:pci 0000:00:15.2: bridge window [io 0xc000-0xcfff] -05:51:18,520 DEBUG kernel:pci 0000:00:15.2: bridge window [mem 0xd2c00000-0xd2cfffff] -05:51:18,520 DEBUG kernel:pci 0000:00:15.2: bridge window [mem 0xdcb00000-0xdcbfffff 64bit pref] -05:51:18,520 INFO kernel:pci 0000:00:15.3: PCI bridge to [bus 06-06] -05:51:18,520 DEBUG kernel:pci 0000:00:15.3: bridge window [io 0xf000-0x0000] (disabled) -05:51:18,520 DEBUG kernel:pci 0000:00:15.3: bridge window [mem 0xd3000000-0xd30fffff] -05:51:18,520 DEBUG kernel:pci 0000:00:15.3: bridge window [mem 0xdcd00000-0xdcdfffff 64bit pref] -05:51:18,520 INFO kernel:pci 0000:00:15.4: PCI bridge to [bus 07-07] -05:51:18,520 DEBUG kernel:pci 0000:00:15.4: bridge window [io 0xf000-0x0000] (disabled) -05:51:18,520 DEBUG kernel:pci 0000:00:15.4: bridge window [mem 0xd3400000-0xd34fffff] -05:51:18,520 DEBUG kernel:pci 0000:00:15.4: bridge window [mem 0xdcf00000-0xdcffffff 64bit pref] -05:51:18,520 INFO kernel:pci 0000:00:15.5: PCI bridge to [bus 08-08] -05:51:18,520 DEBUG kernel:pci 0000:00:15.5: bridge window [io 0xf000-0x0000] (disabled) -05:51:18,520 DEBUG kernel:pci 0000:00:15.5: bridge window [mem 0xd3800000-0xd38fffff] -05:51:18,520 DEBUG kernel:pci 0000:00:15.5: bridge window [mem 0xdd100000-0xdd1fffff 64bit pref] -05:51:18,520 INFO kernel:pci 0000:00:15.6: PCI bridge to [bus 09-09] -05:51:18,520 DEBUG kernel:pci 0000:00:15.6: bridge window [io 0xf000-0x0000] (disabled) -05:51:18,520 DEBUG kernel:pci 0000:00:15.6: bridge window [mem 0xd3c00000-0xd3cfffff] -05:51:18,520 DEBUG kernel:pci 0000:00:15.6: bridge window [mem 0xdd300000-0xdd3fffff 64bit pref] -05:51:18,520 INFO kernel:pci 0000:00:15.7: PCI bridge to [bus 0a-0a] -05:51:18,520 DEBUG kernel:pci 0000:00:15.7: bridge window [io 0xf000-0x0000] (disabled) -05:51:18,520 DEBUG kernel:pci 0000:00:15.7: bridge window [mem 0xd4000000-0xd40fffff] -05:51:18,520 DEBUG kernel:pci 0000:00:15.7: bridge window [mem 0xdd500000-0xdd5fffff 64bit pref] -05:51:18,520 INFO kernel:pci 0000:00:16.0: PCI bridge to [bus 0b-0b] -05:51:18,520 DEBUG kernel:pci 0000:00:16.0: bridge window [io 0x5000-0x5fff] -05:51:18,520 DEBUG kernel:pci 0000:00:16.0: bridge window [mem 0xd2500000-0xd25fffff] -05:51:18,520 DEBUG kernel:pci 0000:00:16.0: bridge window [mem 0xd4500000-0xd45fffff 64bit pref] -05:51:18,521 INFO kernel:pci 0000:00:16.1: PCI bridge to [bus 0c-0c] -05:51:18,521 DEBUG kernel:pci 0000:00:16.1: bridge window [io 0x9000-0x9fff] -05:51:18,521 DEBUG kernel:pci 0000:00:16.1: bridge window [mem 0xd2900000-0xd29fffff] -05:51:18,521 DEBUG kernel:pci 0000:00:16.1: bridge window [mem 0xd4900000-0xd49fffff 64bit pref] -05:51:18,521 INFO kernel:pci 0000:00:16.2: PCI bridge to [bus 0d-0d] -05:51:18,521 DEBUG kernel:pci 0000:00:16.2: bridge window [io 0xd000-0xdfff] -05:51:18,521 DEBUG kernel:pci 0000:00:16.2: bridge window [mem 0xd2d00000-0xd2dfffff] -05:51:18,521 DEBUG kernel:pci 0000:00:16.2: bridge window [mem 0xd4b00000-0xd4bfffff 64bit pref] -05:51:18,521 INFO kernel:pci 0000:00:16.3: PCI bridge to [bus 0e-0e] -05:51:18,521 DEBUG kernel:pci 0000:00:16.3: bridge window [io 0xf000-0x0000] (disabled) -05:51:18,521 DEBUG kernel:pci 0000:00:16.3: bridge window [mem 0xd3100000-0xd31fffff] -05:51:18,521 DEBUG kernel:pci 0000:00:16.3: bridge window [mem 0xd4d00000-0xd4dfffff 64bit pref] -05:51:18,521 INFO kernel:pci 0000:00:16.4: PCI bridge to [bus 0f-0f] -05:51:18,521 DEBUG kernel:pci 0000:00:16.4: bridge window [io 0xf000-0x0000] (disabled) -05:51:18,521 DEBUG kernel:pci 0000:00:16.4: bridge window [mem 0xd3500000-0xd35fffff] -05:51:18,521 DEBUG kernel:pci 0000:00:16.4: bridge window [mem 0xd4f00000-0xd4ffffff 64bit pref] -05:51:18,521 INFO kernel:pci 0000:00:16.5: PCI bridge to [bus 10-10] -05:51:18,521 DEBUG kernel:pci 0000:00:16.5: bridge window [io 0xf000-0x0000] (disabled) -05:51:18,521 DEBUG kernel:pci 0000:00:16.5: bridge window [mem 0xd3900000-0xd39fffff] -05:51:18,521 DEBUG kernel:pci 0000:00:16.5: bridge window [mem 0xd5100000-0xd51fffff 64bit pref] -05:51:18,521 INFO kernel:pci 0000:00:16.6: PCI bridge to [bus 11-11] -05:51:18,521 DEBUG kernel:pci 0000:00:16.6: bridge window [io 0xf000-0x0000] (disabled) -05:51:18,521 DEBUG kernel:pci 0000:00:16.6: bridge window [mem 0xd3d00000-0xd3dfffff] -05:51:18,521 DEBUG kernel:pci 0000:00:16.6: bridge window [mem 0xd5300000-0xd53fffff 64bit pref] -05:51:18,521 INFO kernel:pci 0000:00:16.7: PCI bridge to [bus 12-12] -05:51:18,521 DEBUG kernel:pci 0000:00:16.7: bridge window [io 0xf000-0x0000] (disabled) -05:51:18,521 DEBUG kernel:pci 0000:00:16.7: bridge window [mem 0xd4100000-0xd41fffff] -05:51:18,521 DEBUG kernel:pci 0000:00:16.7: bridge window [mem 0xd5500000-0xd55fffff 64bit pref] -05:51:18,521 INFO kernel:pci 0000:00:17.0: PCI bridge to [bus 13-13] -05:51:18,521 DEBUG kernel:pci 0000:00:17.0: bridge window [io 0x6000-0x6fff] -05:51:18,521 DEBUG kernel:pci 0000:00:17.0: bridge window [mem 0xd2600000-0xd26fffff] -05:51:18,521 DEBUG kernel:pci 0000:00:17.0: bridge window [mem 0xd4600000-0xd46fffff 64bit pref] -05:51:18,521 INFO kernel:pci 0000:00:17.1: PCI bridge to [bus 14-14] -05:51:18,521 DEBUG kernel:pci 0000:00:17.1: bridge window [io 0xa000-0xafff] -05:51:18,521 DEBUG kernel:pci 0000:00:17.1: bridge window [mem 0xd2a00000-0xd2afffff] -05:51:18,521 DEBUG kernel:pci 0000:00:17.1: bridge window [mem 0xdca00000-0xdcafffff 64bit pref] -05:51:18,521 INFO kernel:pci 0000:00:17.2: PCI bridge to [bus 15-15] -05:51:18,521 DEBUG kernel:pci 0000:00:17.2: bridge window [io 0xe000-0xefff] -05:51:18,521 DEBUG kernel:pci 0000:00:17.2: bridge window [mem 0xd2e00000-0xd2efffff] -05:51:18,521 DEBUG kernel:pci 0000:00:17.2: bridge window [mem 0xdcc00000-0xdccfffff 64bit pref] -05:51:18,521 INFO kernel:pci 0000:00:17.3: PCI bridge to [bus 16-16] -05:51:18,521 DEBUG kernel:pci 0000:00:17.3: bridge window [io 0xf000-0x0000] (disabled) -05:51:18,521 DEBUG kernel:pci 0000:00:17.3: bridge window [mem 0xd3200000-0xd32fffff] -05:51:18,521 DEBUG kernel:pci 0000:00:17.3: bridge window [mem 0xdce00000-0xdcefffff 64bit pref] -05:51:18,521 INFO kernel:pci 0000:00:17.4: PCI bridge to [bus 17-17] -05:51:18,521 DEBUG kernel:pci 0000:00:17.4: bridge window [io 0xf000-0x0000] (disabled) -05:51:18,521 DEBUG kernel:pci 0000:00:17.4: bridge window [mem 0xd3600000-0xd36fffff] -05:51:18,521 DEBUG kernel:pci 0000:00:17.4: bridge window [mem 0xdd000000-0xdd0fffff 64bit pref] -05:51:18,521 INFO kernel:pci 0000:00:17.5: PCI bridge to [bus 18-18] -05:51:18,521 DEBUG kernel:pci 0000:00:17.5: bridge window [io 0xf000-0x0000] (disabled) -05:51:18,521 DEBUG kernel:pci 0000:00:17.5: bridge window [mem 0xd3a00000-0xd3afffff] -05:51:18,521 DEBUG kernel:pci 0000:00:17.5: bridge window [mem 0xdd200000-0xdd2fffff 64bit pref] -05:51:18,521 INFO kernel:pci 0000:00:17.6: PCI bridge to [bus 19-19] -05:51:18,521 DEBUG kernel:pci 0000:00:17.6: bridge window [io 0xf000-0x0000] (disabled) -05:51:18,521 DEBUG kernel:pci 0000:00:17.6: bridge window [mem 0xd3e00000-0xd3efffff] -05:51:18,521 DEBUG kernel:pci 0000:00:17.6: bridge window [mem 0xdd400000-0xdd4fffff 64bit pref] -05:51:18,521 INFO kernel:pci 0000:00:17.7: PCI bridge to [bus 1a-1a] -05:51:18,521 DEBUG kernel:pci 0000:00:17.7: bridge window [io 0xf000-0x0000] (disabled) -05:51:18,521 DEBUG kernel:pci 0000:00:17.7: bridge window [mem 0xd4200000-0xd42fffff] -05:51:18,521 DEBUG kernel:pci 0000:00:17.7: bridge window [mem 0xdd600000-0xdd6fffff 64bit pref] -05:51:18,521 INFO kernel:pci 0000:00:18.0: PCI bridge to [bus 1b-1b] -05:51:18,521 DEBUG kernel:pci 0000:00:18.0: bridge window [io 0x7000-0x7fff] -05:51:18,521 DEBUG kernel:pci 0000:00:18.0: bridge window [mem 0xd2700000-0xd27fffff] -05:51:18,521 DEBUG kernel:pci 0000:00:18.0: bridge window [mem 0xd4700000-0xd47fffff 64bit pref] -05:51:18,521 INFO kernel:pci 0000:00:18.1: PCI bridge to [bus 1c-1c] -05:51:18,521 DEBUG kernel:pci 0000:00:18.1: bridge window [io 0xb000-0xbfff] -05:51:18,521 DEBUG kernel:pci 0000:00:18.1: bridge window [mem 0xd2b00000-0xd2bfffff] -05:51:18,521 DEBUG kernel:pci 0000:00:18.1: bridge window [mem 0xd4a00000-0xd4afffff 64bit pref] -05:51:18,521 INFO kernel:pci 0000:00:18.2: PCI bridge to [bus 1d-1d] -05:51:18,521 DEBUG kernel:pci 0000:00:18.2: bridge window [io 0xf000-0xffff] -05:51:18,521 DEBUG kernel:pci 0000:00:18.2: bridge window [mem 0xd2f00000-0xd2ffffff] -05:51:18,521 DEBUG kernel:pci 0000:00:18.2: bridge window [mem 0xd4c00000-0xd4cfffff 64bit pref] -05:51:18,521 INFO kernel:pci 0000:00:18.3: PCI bridge to [bus 1e-1e] -05:51:18,521 DEBUG kernel:pci 0000:00:18.3: bridge window [io 0xf000-0x0000] (disabled) -05:51:18,521 DEBUG kernel:pci 0000:00:18.3: bridge window [mem 0xd3300000-0xd33fffff] -05:51:18,521 DEBUG kernel:pci 0000:00:18.3: bridge window [mem 0xd4e00000-0xd4efffff 64bit pref] -05:51:18,521 INFO kernel:pci 0000:00:18.4: PCI bridge to [bus 1f-1f] -05:51:18,521 DEBUG kernel:pci 0000:00:18.4: bridge window [io 0xf000-0x0000] (disabled) -05:51:18,521 DEBUG kernel:pci 0000:00:18.4: bridge window [mem 0xd3700000-0xd37fffff] -05:51:18,521 DEBUG kernel:pci 0000:00:18.4: bridge window [mem 0xd5000000-0xd50fffff 64bit pref] -05:51:18,521 INFO kernel:pci 0000:00:18.5: PCI bridge to [bus 20-20] -05:51:18,521 DEBUG kernel:pci 0000:00:18.5: bridge window [io 0xf000-0x0000] (disabled) -05:51:18,521 DEBUG kernel:pci 0000:00:18.5: bridge window [mem 0xd3b00000-0xd3bfffff] -05:51:18,521 DEBUG kernel:pci 0000:00:18.5: bridge window [mem 0xd5200000-0xd52fffff 64bit pref] -05:51:18,521 INFO kernel:pci 0000:00:18.6: PCI bridge to [bus 21-21] -05:51:18,521 DEBUG kernel:pci 0000:00:18.6: bridge window [io 0xf000-0x0000] (disabled) -05:51:18,521 DEBUG kernel:pci 0000:00:18.6: bridge window [mem 0xd3f00000-0xd3ffffff] -05:51:18,521 DEBUG kernel:pci 0000:00:18.6: bridge window [mem 0xd5400000-0xd54fffff 64bit pref] -05:51:18,521 INFO kernel:pci 0000:00:18.7: PCI bridge to [bus 22-22] -05:51:18,521 DEBUG kernel:pci 0000:00:18.7: bridge window [io 0xf000-0x0000] (disabled) -05:51:18,521 DEBUG kernel:pci 0000:00:18.7: bridge window [mem 0xd4300000-0xd43fffff] -05:51:18,521 DEBUG kernel:pci 0000:00:18.7: bridge window [mem 0xd5600000-0xd56fffff 64bit pref] -05:51:18,521 DEBUG kernel:ACPI: PCI Interrupt Routing Table [\_SB_.PCI0._PRT] -05:51:18,521 INFO kernel: pci0000:00: Requesting ACPI _OSC control (0x1d) -05:51:18,521 INFO kernel: pci0000:00: ACPI _OSC control (0x15) granted -05:51:18,521 INFO kernel:ACPI: PCI Interrupt Link [LNKA] (IRQs 3 4 5 6 7 *9 10 11 14 15) -05:51:18,521 INFO kernel:ACPI: PCI Interrupt Link [LNKB] (IRQs 3 4 5 6 7 9 10 *11 14 15) -05:51:18,521 INFO kernel:ACPI: PCI Interrupt Link [LNKC] (IRQs 3 4 5 6 7 9 *10 11 14 15) -05:51:18,521 INFO kernel:ACPI: PCI Interrupt Link [LNKD] (IRQs 3 4 *5 6 7 9 10 11 14 15) -05:51:18,521 INFO kernel:vgaarb: device added: PCI:0000:00:0f.0,decodes=io+mem,owns=io+mem,locks=none -05:51:18,521 INFO kernel:vgaarb: loaded -05:51:18,521 INFO kernel:vgaarb: bridge control possible 0000:00:0f.0 -05:51:18,521 NOTICE kernel:SCSI subsystem initialized -05:51:18,521 DEBUG kernel:libata version 3.00 loaded. -05:51:18,521 INFO kernel:usbcore: registered new interface driver usbfs -05:51:18,521 INFO kernel:usbcore: registered new interface driver hub -05:51:18,521 INFO kernel:usbcore: registered new device driver usb -05:51:18,521 INFO kernel:PCI: Using ACPI for IRQ routing -05:51:18,521 DEBUG kernel:PCI: old code would have set cacheline size to 32 bytes, but clflush_size = 64 -05:51:18,521 DEBUG kernel:PCI: pci_cache_line_size set to 64 bytes -05:51:18,521 INFO kernel:pci 0000:00:18.2: no compatible bridge window for [io 0xf000-0xffff] -05:51:18,521 INFO kernel:pci 0000:00:18.2: can't reserve window [io 0xf000-0xffff] -05:51:18,521 NOTICE kernel:lo: Dropping TSO features since no CSUM feature. -05:51:18,521 INFO kernel:NetLabel: Initializing -05:51:18,521 INFO kernel:NetLabel: domain hash size = 128 -05:51:18,521 INFO kernel:NetLabel: protocols = UNLABELED CIPSOv4 -05:51:18,521 INFO kernel:NetLabel: unlabeled traffic allowed by default -05:51:18,521 INFO kernel:HPET: 16 timers in total, 0 timers will be used for per-cpu timer -05:51:18,521 INFO kernel:hpet0: at MMIO 0xfed00000, IRQs 2, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 -05:51:18,521 INFO kernel:hpet0: 16 comparators, 64-bit 14.318180 MHz counter -05:51:18,521 INFO kernel:Switching to clocksource hpet -05:51:18,521 INFO kernel:pnp: PnP ACPI init -05:51:18,521 INFO kernel:ACPI: bus type pnp registered -05:51:18,521 DEBUG kernel:pnp 00:00: [io 0x0cf8-0x0cff] -05:51:18,521 DEBUG kernel:pnp 00:00: Plug and Play ACPI device, IDs PNP0a03 PNP0a08 (active) -05:51:18,521 DEBUG kernel:pnp 00:01: [io 0x0010-0x001f] -05:51:18,521 DEBUG kernel:pnp 00:01: [io 0x0024-0x0025] -05:51:18,521 DEBUG kernel:pnp 00:01: [io 0x0028-0x0029] -05:51:18,521 DEBUG kernel:pnp 00:01: [io 0x002c-0x002d] -05:51:18,521 DEBUG kernel:pnp 00:01: [io 0x002e-0x002f] -05:51:18,521 DEBUG kernel:pnp 00:01: [io 0x0030-0x0031] -05:51:18,521 DEBUG kernel:pnp 00:01: [io 0x0034-0x0035] -05:51:18,521 DEBUG kernel:pnp 00:01: [io 0x0038-0x0039] -05:51:18,521 DEBUG kernel:pnp 00:01: [io 0x003c-0x003d] -05:51:18,521 DEBUG kernel:pnp 00:01: [io 0x0050-0x0053] -05:51:18,521 DEBUG kernel:pnp 00:01: [io 0x0072-0x0077] -05:51:18,521 DEBUG kernel:pnp 00:01: [io 0x0080] -05:51:18,521 DEBUG kernel:pnp 00:01: [io 0x0090-0x009f] -05:51:18,521 DEBUG kernel:pnp 00:01: [io 0x00a4-0x00a5] -05:51:18,521 DEBUG kernel:pnp 00:01: [io 0x00a8-0x00a9] -05:51:18,521 DEBUG kernel:pnp 00:01: [io 0x00ac-0x00ad] -05:51:18,521 DEBUG kernel:pnp 00:01: [io 0x00b0-0x00b5] -05:51:18,521 DEBUG kernel:pnp 00:01: [io 0x00b8-0x00b9] -05:51:18,521 DEBUG kernel:pnp 00:01: [io 0x00bc-0x00bd] -05:51:18,521 DEBUG kernel:pnp 00:01: [io 0x1000-0x103f] -05:51:18,521 DEBUG kernel:pnp 00:01: [io 0x1040-0x104f] -05:51:18,521 DEBUG kernel:pnp 00:01: [io 0x0cf0-0x0cf1] -05:51:18,521 DEBUG kernel:pnp 00:01: Plug and Play ACPI device, IDs PNP0c02 (active) -05:51:18,521 DEBUG kernel:pnp 00:02: [io 0x0000-0x000f] -05:51:18,521 DEBUG kernel:pnp 00:02: [io 0x0081-0x008f] -05:51:18,521 DEBUG kernel:pnp 00:02: [io 0x00c0-0x00df] -05:51:18,521 DEBUG kernel:pnp 00:02: [dma 4] -05:51:18,521 DEBUG kernel:pnp 00:02: Plug and Play ACPI device, IDs PNP0200 (active) -05:51:18,521 DEBUG kernel:pnp 00:03: [io 0x0020-0x0021] -05:51:18,521 DEBUG kernel:pnp 00:03: [io 0x00a0-0x00a1] -05:51:18,521 DEBUG kernel:pnp 00:03: [io 0x04d0-0x04d1] -05:51:18,521 DEBUG kernel:pnp 00:03: [irq 2 disabled] -05:51:18,521 DEBUG kernel:pnp 00:03: Plug and Play ACPI device, IDs PNP0001 (active) -05:51:18,521 DEBUG kernel:pnp 00:04: [io 0x0070-0x0071] -05:51:18,521 DEBUG kernel:pnp 00:04: [irq 8] -05:51:18,521 DEBUG kernel:pnp 00:04: Plug and Play ACPI device, IDs PNP0b00 (active) -05:51:18,521 DEBUG kernel:pnp 00:05: [io 0x0061] -05:51:18,521 DEBUG kernel:pnp 00:05: Plug and Play ACPI device, IDs PNP0800 (active) -05:51:18,521 DEBUG kernel:pnp 00:06: [io 0x0060] -05:51:18,521 DEBUG kernel:pnp 00:06: [io 0x0064] -05:51:18,521 DEBUG kernel:pnp 00:06: [irq 1] -05:51:18,521 DEBUG kernel:pnp 00:06: Plug and Play ACPI device, IDs PNP0303 (active) -05:51:18,521 DEBUG kernel:pnp 00:07: [irq 12] -05:51:18,521 DEBUG kernel:pnp 00:07: Plug and Play ACPI device, IDs PNP0f13 (active) -05:51:18,521 DEBUG kernel:pnp 00:08: [mem 0xfed00000-0xfed003ff] -05:51:18,521 DEBUG kernel:pnp 00:08: Plug and Play ACPI device, IDs PNP0103 PNP0c01 (active) -05:51:18,521 DEBUG kernel:pnp 00:09: [io 0x0378-0x037f] -05:51:18,521 DEBUG kernel:pnp 00:09: [irq 7] -05:51:18,521 DEBUG kernel:pnp 00:09: Plug and Play ACPI device, IDs PNP0400 (active) -05:51:18,521 DEBUG kernel:pnp 00:0a: [io 0x03f8-0x03ff] -05:51:18,521 DEBUG kernel:pnp 00:0a: [irq 4] -05:51:18,521 DEBUG kernel:pnp 00:0a: Plug and Play ACPI device, IDs PNP0501 (active) -05:51:18,521 DEBUG kernel:pnp 00:0b: [io 0x02f8-0x02ff] -05:51:18,521 DEBUG kernel:pnp 00:0b: [irq 3] -05:51:18,521 DEBUG kernel:pnp 00:0b: Plug and Play ACPI device, IDs PNP0501 (active) -05:51:18,521 DEBUG kernel:pnp 00:0c: [io 0x03f0-0x03f5] -05:51:18,521 DEBUG kernel:pnp 00:0c: [io 0x03f7] -05:51:18,521 DEBUG kernel:pnp 00:0c: [irq 6] -05:51:18,521 DEBUG kernel:pnp 00:0c: [dma 2] -05:51:18,521 DEBUG kernel:pnp 00:0c: Plug and Play ACPI device, IDs PNP0700 (active) -05:51:18,521 DEBUG kernel:pnp 00:0d: [mem 0xe0000000-0xefffffff] -05:51:18,521 DEBUG kernel:pnp 00:0d: [io 0x1060-0x107f] -05:51:18,521 DEBUG kernel:pnp 00:0d: [mem 0xd0200000-0xd03fffff] -05:51:18,521 DEBUG kernel:pnp 00:0d: Plug and Play ACPI device, IDs PNP0c02 (active) -05:51:18,521 INFO kernel:pnp: PnP ACPI: found 14 devices -05:51:18,521 INFO kernel:ACPI: ACPI bus type pnp unregistered -05:51:18,521 INFO kernel:system 00:01: [io 0x1000-0x103f] has been reserved -05:51:18,521 INFO kernel:system 00:01: [io 0x1040-0x104f] has been reserved -05:51:18,521 INFO kernel:system 00:01: [io 0x0cf0-0x0cf1] has been reserved -05:51:18,521 INFO kernel:system 00:08: [mem 0xfed00000-0xfed003ff] has been reserved -05:51:18,521 INFO kernel:system 00:0d: [io 0x1060-0x107f] has been reserved -05:51:18,521 INFO kernel:system 00:0d: [mem 0xe0000000-0xefffffff] has been reserved -05:51:18,521 INFO kernel:system 00:0d: [mem 0xd0200000-0xd03fffff] has been reserved -05:51:18,521 DEBUG kernel:PCI: max bus depth: 1 pci_try_num: 2 -05:51:18,521 INFO kernel:pci 0000:00:0f.0: BAR 6: assigned [mem 0x80000000-0x80007fff pref] -05:51:18,521 INFO kernel:pci 0000:00:10.0: BAR 6: assigned [mem 0x80008000-0x8000bfff pref] -05:51:18,521 INFO kernel:pci 0000:00:18.2: BAR 13: can't assign io (size 0x1000) -05:51:18,521 INFO kernel:pci 0000:00:18.7: BAR 13: can't assign io (size 0x1000) -05:51:18,521 INFO kernel:pci 0000:00:18.6: BAR 13: can't assign io (size 0x1000) -05:51:18,521 INFO kernel:pci 0000:00:18.5: BAR 13: can't assign io (size 0x1000) -05:51:18,521 INFO kernel:pci 0000:00:18.4: BAR 13: can't assign io (size 0x1000) -05:51:18,521 INFO kernel:pci 0000:00:18.3: BAR 13: can't assign io (size 0x1000) -05:51:18,521 INFO kernel:pci 0000:00:17.7: BAR 13: can't assign io (size 0x1000) -05:51:18,521 INFO kernel:pci 0000:00:17.6: BAR 13: can't assign io (size 0x1000) -05:51:18,521 INFO kernel:pci 0000:00:17.5: BAR 13: can't assign io (size 0x1000) -05:51:18,521 INFO kernel:pci 0000:00:17.4: BAR 13: can't assign io (size 0x1000) -05:51:18,521 INFO kernel:pci 0000:00:17.3: BAR 13: can't assign io (size 0x1000) -05:51:18,521 INFO kernel:pci 0000:00:16.7: BAR 13: can't assign io (size 0x1000) -05:51:18,521 INFO kernel:pci 0000:00:16.6: BAR 13: can't assign io (size 0x1000) -05:51:18,521 INFO kernel:pci 0000:00:16.5: BAR 13: can't assign io (size 0x1000) -05:51:18,521 INFO kernel:pci 0000:00:16.4: BAR 13: can't assign io (size 0x1000) -05:51:18,521 INFO kernel:pci 0000:00:16.3: BAR 13: can't assign io (size 0x1000) -05:51:18,521 INFO kernel:pci 0000:00:15.7: BAR 13: can't assign io (size 0x1000) -05:51:18,521 INFO kernel:pci 0000:00:15.6: BAR 13: can't assign io (size 0x1000) -05:51:18,521 INFO kernel:pci 0000:00:15.5: BAR 13: can't assign io (size 0x1000) -05:51:18,521 INFO kernel:pci 0000:00:15.4: BAR 13: can't assign io (size 0x1000) -05:51:18,521 INFO kernel:pci 0000:00:15.3: BAR 13: can't assign io (size 0x1000) -05:51:18,521 INFO kernel:pci 0000:00:01.0: PCI bridge to [bus 01-01] -05:51:18,521 INFO kernel:pci 0000:00:01.0: PCI bridge to [bus 01-01] -05:51:18,521 INFO kernel:pci 0000:00:01.0: bridge window [io disabled] -05:51:18,521 INFO kernel:pci 0000:00:01.0: bridge window [mem disabled] -05:51:18,521 INFO kernel:pci 0000:00:01.0: bridge window [mem pref disabled] -05:51:18,521 INFO kernel:pci 0000:02:00.0: BAR 6: assigned [mem 0xdc400000-0xdc40ffff pref] -05:51:18,521 INFO kernel:pci 0000:02:01.0: BAR 6: assigned [mem 0xdc410000-0xdc41ffff pref] -05:51:18,521 INFO kernel:pci 0000:02:02.0: BAR 6: assigned [mem 0xdc420000-0xdc42ffff pref] -05:51:18,521 INFO kernel:pci 0000:02:03.0: BAR 6: assigned [mem 0xdc430000-0xdc43ffff pref] -05:51:18,521 INFO kernel:pci 0000:00:11.0: PCI bridge to [bus 02-02] -05:51:18,521 INFO kernel:pci 0000:00:11.0: PCI bridge to [bus 02-02] -05:51:18,521 INFO kernel:pci 0000:00:11.0: bridge window [io 0x2000-0x3fff] -05:51:18,521 INFO kernel:pci 0000:00:11.0: bridge window [mem 0xd1000000-0xd23fffff] -05:51:18,521 INFO kernel:pci 0000:00:11.0: bridge window [mem 0xdc400000-0xdc9fffff 64bit pref] -05:51:18,521 INFO kernel:pci 0000:00:15.0: PCI bridge to [bus 03-03] -05:51:18,521 INFO kernel:pci 0000:00:15.0: PCI bridge to [bus 03-03] -05:51:18,521 INFO kernel:pci 0000:00:15.0: bridge window [io 0x4000-0x4fff] -05:51:18,521 INFO kernel:pci 0000:00:15.0: bridge window [mem 0xd2400000-0xd24fffff] -05:51:18,521 INFO kernel:pci 0000:00:15.0: bridge window [mem 0xd4400000-0xd44fffff 64bit pref] -05:51:18,521 INFO kernel:pci 0000:00:15.1: PCI bridge to [bus 04-04] -05:51:18,521 INFO kernel:pci 0000:00:15.1: PCI bridge to [bus 04-04] -05:51:18,521 INFO kernel:pci 0000:00:15.1: bridge window [io 0x8000-0x8fff] -05:51:18,521 INFO kernel:pci 0000:00:15.1: bridge window [mem 0xd2800000-0xd28fffff] -05:51:18,521 INFO kernel:pci 0000:00:15.1: bridge window [mem 0xd4800000-0xd48fffff 64bit pref] -05:51:18,521 INFO kernel:pci 0000:00:15.2: PCI bridge to [bus 05-05] -05:51:18,521 INFO kernel:pci 0000:00:15.2: PCI bridge to [bus 05-05] -05:51:18,521 INFO kernel:pci 0000:00:15.2: bridge window [io 0xc000-0xcfff] -05:51:18,521 INFO kernel:pci 0000:00:15.2: bridge window [mem 0xd2c00000-0xd2cfffff] -05:51:18,521 INFO kernel:pci 0000:00:15.2: bridge window [mem 0xdcb00000-0xdcbfffff 64bit pref] -05:51:18,521 INFO kernel:pci 0000:00:15.3: PCI bridge to [bus 06-06] -05:51:18,521 INFO kernel:pci 0000:00:15.3: PCI bridge to [bus 06-06] -05:51:18,521 INFO kernel:pci 0000:00:15.3: bridge window [io disabled] -05:51:18,521 INFO kernel:pci 0000:00:15.3: bridge window [mem 0xd3000000-0xd30fffff] -05:51:18,521 INFO kernel:pci 0000:00:15.3: bridge window [mem 0xdcd00000-0xdcdfffff 64bit pref] -05:51:18,521 INFO kernel:pci 0000:00:15.4: PCI bridge to [bus 07-07] -05:51:18,521 INFO kernel:pci 0000:00:15.4: PCI bridge to [bus 07-07] -05:51:18,521 INFO kernel:pci 0000:00:15.4: bridge window [io disabled] -05:51:18,521 INFO kernel:pci 0000:00:15.4: bridge window [mem 0xd3400000-0xd34fffff] -05:51:18,521 INFO kernel:pci 0000:00:15.4: bridge window [mem 0xdcf00000-0xdcffffff 64bit pref] -05:51:18,521 INFO kernel:pci 0000:00:15.5: PCI bridge to [bus 08-08] -05:51:18,521 INFO kernel:pci 0000:00:15.5: PCI bridge to [bus 08-08] -05:51:18,521 INFO kernel:pci 0000:00:15.5: bridge window [io disabled] -05:51:18,521 INFO kernel:pci 0000:00:15.5: bridge window [mem 0xd3800000-0xd38fffff] -05:51:18,521 INFO kernel:pci 0000:00:15.5: bridge window [mem 0xdd100000-0xdd1fffff 64bit pref] -05:51:18,521 INFO kernel:pci 0000:00:15.6: PCI bridge to [bus 09-09] -05:51:18,521 INFO kernel:pci 0000:00:15.6: PCI bridge to [bus 09-09] -05:51:18,521 INFO kernel:pci 0000:00:15.6: bridge window [io disabled] -05:51:18,521 INFO kernel:pci 0000:00:15.6: bridge window [mem 0xd3c00000-0xd3cfffff] -05:51:18,521 INFO kernel:pci 0000:00:15.6: bridge window [mem 0xdd300000-0xdd3fffff 64bit pref] -05:51:18,521 INFO kernel:pci 0000:00:15.7: PCI bridge to [bus 0a-0a] -05:51:18,521 INFO kernel:pci 0000:00:15.7: PCI bridge to [bus 0a-0a] -05:51:18,521 INFO kernel:pci 0000:00:15.7: bridge window [io disabled] -05:51:18,521 INFO kernel:pci 0000:00:15.7: bridge window [mem 0xd4000000-0xd40fffff] -05:51:18,521 INFO kernel:pci 0000:00:15.7: bridge window [mem 0xdd500000-0xdd5fffff 64bit pref] -05:51:18,521 INFO kernel:pci 0000:00:16.0: PCI bridge to [bus 0b-0b] -05:51:18,521 INFO kernel:pci 0000:00:16.0: PCI bridge to [bus 0b-0b] -05:51:18,521 INFO kernel:pci 0000:00:16.0: bridge window [io 0x5000-0x5fff] -05:51:18,521 INFO kernel:pci 0000:00:16.0: bridge window [mem 0xd2500000-0xd25fffff] -05:51:18,521 INFO kernel:pci 0000:00:16.0: bridge window [mem 0xd4500000-0xd45fffff 64bit pref] -05:51:18,521 INFO kernel:pci 0000:00:16.1: PCI bridge to [bus 0c-0c] -05:51:18,521 INFO kernel:pci 0000:00:16.1: PCI bridge to [bus 0c-0c] -05:51:18,521 INFO kernel:pci 0000:00:16.1: bridge window [io 0x9000-0x9fff] -05:51:18,521 INFO kernel:pci 0000:00:16.1: bridge window [mem 0xd2900000-0xd29fffff] -05:51:18,521 INFO kernel:pci 0000:00:16.1: bridge window [mem 0xd4900000-0xd49fffff 64bit pref] -05:51:18,521 INFO kernel:pci 0000:00:16.2: PCI bridge to [bus 0d-0d] -05:51:18,521 INFO kernel:pci 0000:00:16.2: PCI bridge to [bus 0d-0d] -05:51:18,521 INFO kernel:pci 0000:00:16.2: bridge window [io 0xd000-0xdfff] -05:51:18,521 INFO kernel:pci 0000:00:16.2: bridge window [mem 0xd2d00000-0xd2dfffff] -05:51:18,521 INFO kernel:pci 0000:00:16.2: bridge window [mem 0xd4b00000-0xd4bfffff 64bit pref] -05:51:18,521 INFO kernel:pci 0000:00:16.3: PCI bridge to [bus 0e-0e] -05:51:18,521 INFO kernel:pci 0000:00:16.3: PCI bridge to [bus 0e-0e] -05:51:18,521 INFO kernel:pci 0000:00:16.3: bridge window [io disabled] -05:51:18,521 INFO kernel:pci 0000:00:16.3: bridge window [mem 0xd3100000-0xd31fffff] -05:51:18,521 INFO kernel:pci 0000:00:16.3: bridge window [mem 0xd4d00000-0xd4dfffff 64bit pref] -05:51:18,521 INFO kernel:pci 0000:00:16.4: PCI bridge to [bus 0f-0f] -05:51:18,521 INFO kernel:pci 0000:00:16.4: PCI bridge to [bus 0f-0f] -05:51:18,521 INFO kernel:pci 0000:00:16.4: bridge window [io disabled] -05:51:18,521 INFO kernel:pci 0000:00:16.4: bridge window [mem 0xd3500000-0xd35fffff] -05:51:18,521 INFO kernel:pci 0000:00:16.4: bridge window [mem 0xd4f00000-0xd4ffffff 64bit pref] -05:51:18,521 INFO kernel:pci 0000:00:16.5: PCI bridge to [bus 10-10] -05:51:18,521 INFO kernel:pci 0000:00:16.5: PCI bridge to [bus 10-10] -05:51:18,521 INFO kernel:pci 0000:00:16.5: bridge window [io disabled] -05:51:18,521 INFO kernel:pci 0000:00:16.5: bridge window [mem 0xd3900000-0xd39fffff] -05:51:18,521 INFO kernel:pci 0000:00:16.5: bridge window [mem 0xd5100000-0xd51fffff 64bit pref] -05:51:18,521 INFO kernel:pci 0000:00:16.6: PCI bridge to [bus 11-11] -05:51:18,521 INFO kernel:pci 0000:00:16.6: PCI bridge to [bus 11-11] -05:51:18,521 INFO kernel:pci 0000:00:16.6: bridge window [io disabled] -05:51:18,521 INFO kernel:pci 0000:00:16.6: bridge window [mem 0xd3d00000-0xd3dfffff] -05:51:18,521 INFO kernel:pci 0000:00:16.6: bridge window [mem 0xd5300000-0xd53fffff 64bit pref] -05:51:18,521 INFO kernel:pci 0000:00:16.7: PCI bridge to [bus 12-12] -05:51:18,521 INFO kernel:pci 0000:00:16.7: PCI bridge to [bus 12-12] -05:51:18,521 INFO kernel:pci 0000:00:16.7: bridge window [io disabled] -05:51:18,521 INFO kernel:pci 0000:00:16.7: bridge window [mem 0xd4100000-0xd41fffff] -05:51:18,521 INFO kernel:pci 0000:00:16.7: bridge window [mem 0xd5500000-0xd55fffff 64bit pref] -05:51:18,521 INFO kernel:pci 0000:00:17.0: PCI bridge to [bus 13-13] -05:51:18,521 INFO kernel:pci 0000:00:17.0: PCI bridge to [bus 13-13] -05:51:18,521 INFO kernel:pci 0000:00:17.0: bridge window [io 0x6000-0x6fff] -05:51:18,521 INFO kernel:pci 0000:00:17.0: bridge window [mem 0xd2600000-0xd26fffff] -05:51:18,521 INFO kernel:pci 0000:00:17.0: bridge window [mem 0xd4600000-0xd46fffff 64bit pref] -05:51:18,521 INFO kernel:pci 0000:00:17.1: PCI bridge to [bus 14-14] -05:51:18,521 INFO kernel:pci 0000:00:17.1: PCI bridge to [bus 14-14] -05:51:18,521 INFO kernel:pci 0000:00:17.1: bridge window [io 0xa000-0xafff] -05:51:18,521 INFO kernel:pci 0000:00:17.1: bridge window [mem 0xd2a00000-0xd2afffff] -05:51:18,521 INFO kernel:pci 0000:00:17.1: bridge window [mem 0xdca00000-0xdcafffff 64bit pref] -05:51:18,521 INFO kernel:pci 0000:00:17.2: PCI bridge to [bus 15-15] -05:51:18,521 INFO kernel:pci 0000:00:17.2: PCI bridge to [bus 15-15] -05:51:18,521 INFO kernel:pci 0000:00:17.2: bridge window [io 0xe000-0xefff] -05:51:18,521 INFO kernel:pci 0000:00:17.2: bridge window [mem 0xd2e00000-0xd2efffff] -05:51:18,521 INFO kernel:pci 0000:00:17.2: bridge window [mem 0xdcc00000-0xdccfffff 64bit pref] -05:51:18,521 INFO kernel:pci 0000:00:17.3: PCI bridge to [bus 16-16] -05:51:18,521 INFO kernel:pci 0000:00:17.3: PCI bridge to [bus 16-16] -05:51:18,521 INFO kernel:pci 0000:00:17.3: bridge window [io disabled] -05:51:18,521 INFO kernel:pci 0000:00:17.3: bridge window [mem 0xd3200000-0xd32fffff] -05:51:18,521 INFO kernel:pci 0000:00:17.3: bridge window [mem 0xdce00000-0xdcefffff 64bit pref] -05:51:18,521 INFO kernel:pci 0000:00:17.4: PCI bridge to [bus 17-17] -05:51:18,521 INFO kernel:pci 0000:00:17.4: PCI bridge to [bus 17-17] -05:51:18,521 INFO kernel:pci 0000:00:17.4: bridge window [io disabled] -05:51:18,521 INFO kernel:pci 0000:00:17.4: bridge window [mem 0xd3600000-0xd36fffff] -05:51:18,521 INFO kernel:pci 0000:00:17.4: bridge window [mem 0xdd000000-0xdd0fffff 64bit pref] -05:51:18,521 INFO kernel:pci 0000:00:17.5: PCI bridge to [bus 18-18] -05:51:18,521 INFO kernel:pci 0000:00:17.5: PCI bridge to [bus 18-18] -05:51:18,521 INFO kernel:pci 0000:00:17.5: bridge window [io disabled] -05:51:18,521 INFO kernel:pci 0000:00:17.5: bridge window [mem 0xd3a00000-0xd3afffff] -05:51:18,521 INFO kernel:pci 0000:00:17.5: bridge window [mem 0xdd200000-0xdd2fffff 64bit pref] -05:51:18,521 INFO kernel:pci 0000:00:17.6: PCI bridge to [bus 19-19] -05:51:18,521 INFO kernel:pci 0000:00:17.6: PCI bridge to [bus 19-19] -05:51:18,521 INFO kernel:pci 0000:00:17.6: bridge window [io disabled] -05:51:18,521 INFO kernel:pci 0000:00:17.6: bridge window [mem 0xd3e00000-0xd3efffff] -05:51:18,521 INFO kernel:pci 0000:00:17.6: bridge window [mem 0xdd400000-0xdd4fffff 64bit pref] -05:51:18,521 INFO kernel:pci 0000:00:17.7: PCI bridge to [bus 1a-1a] -05:51:18,521 INFO kernel:pci 0000:00:17.7: PCI bridge to [bus 1a-1a] -05:51:18,521 INFO kernel:pci 0000:00:17.7: bridge window [io disabled] -05:51:18,521 INFO kernel:pci 0000:00:17.7: bridge window [mem 0xd4200000-0xd42fffff] -05:51:18,521 INFO kernel:pci 0000:00:17.7: bridge window [mem 0xdd600000-0xdd6fffff 64bit pref] -05:51:18,521 INFO kernel:pci 0000:00:18.0: PCI bridge to [bus 1b-1b] -05:51:18,521 INFO kernel:pci 0000:00:18.0: PCI bridge to [bus 1b-1b] -05:51:18,521 INFO kernel:pci 0000:00:18.0: bridge window [io 0x7000-0x7fff] -05:51:18,521 INFO kernel:pci 0000:00:18.0: bridge window [mem 0xd2700000-0xd27fffff] -05:51:18,521 INFO kernel:pci 0000:00:18.0: bridge window [mem 0xd4700000-0xd47fffff 64bit pref] -05:51:18,521 INFO kernel:pci 0000:00:18.1: PCI bridge to [bus 1c-1c] -05:51:18,521 INFO kernel:pci 0000:00:18.1: PCI bridge to [bus 1c-1c] -05:51:18,521 INFO kernel:pci 0000:00:18.1: bridge window [io 0xb000-0xbfff] -05:51:18,521 INFO kernel:pci 0000:00:18.1: bridge window [mem 0xd2b00000-0xd2bfffff] -05:51:18,521 INFO kernel:pci 0000:00:18.1: bridge window [mem 0xd4a00000-0xd4afffff 64bit pref] -05:51:18,521 INFO kernel:pci 0000:00:18.2: PCI bridge to [bus 1d-1d] -05:51:18,521 INFO kernel:pci 0000:00:18.2: PCI bridge to [bus 1d-1d] -05:51:18,521 INFO kernel:pci 0000:00:18.2: bridge window [io disabled] -05:51:18,521 INFO kernel:pci 0000:00:18.2: bridge window [mem 0xd2f00000-0xd2ffffff] -05:51:18,521 INFO kernel:pci 0000:00:18.2: bridge window [mem 0xd4c00000-0xd4cfffff 64bit pref] -05:51:18,521 INFO kernel:pci 0000:00:18.3: PCI bridge to [bus 1e-1e] -05:51:18,521 INFO kernel:pci 0000:00:18.3: PCI bridge to [bus 1e-1e] -05:51:18,521 INFO kernel:pci 0000:00:18.3: bridge window [io disabled] -05:51:18,521 INFO kernel:pci 0000:00:18.3: bridge window [mem 0xd3300000-0xd33fffff] -05:51:18,521 INFO kernel:pci 0000:00:18.3: bridge window [mem 0xd4e00000-0xd4efffff 64bit pref] -05:51:18,521 INFO kernel:pci 0000:00:18.4: PCI bridge to [bus 1f-1f] -05:51:18,521 INFO kernel:pci 0000:00:18.4: PCI bridge to [bus 1f-1f] -05:51:18,521 INFO kernel:pci 0000:00:18.4: bridge window [io disabled] -05:51:18,521 INFO kernel:pci 0000:00:18.4: bridge window [mem 0xd3700000-0xd37fffff] -05:51:18,521 INFO kernel:pci 0000:00:18.4: bridge window [mem 0xd5000000-0xd50fffff 64bit pref] -05:51:18,521 INFO kernel:pci 0000:00:18.5: PCI bridge to [bus 20-20] -05:51:18,521 INFO kernel:pci 0000:00:18.5: PCI bridge to [bus 20-20] -05:51:18,521 INFO kernel:pci 0000:00:18.5: bridge window [io disabled] -05:51:18,521 INFO kernel:pci 0000:00:18.5: bridge window [mem 0xd3b00000-0xd3bfffff] -05:51:18,521 INFO kernel:pci 0000:00:18.5: bridge window [mem 0xd5200000-0xd52fffff 64bit pref] -05:51:18,521 INFO kernel:pci 0000:00:18.6: PCI bridge to [bus 21-21] -05:51:18,521 INFO kernel:pci 0000:00:18.6: PCI bridge to [bus 21-21] -05:51:18,521 INFO kernel:pci 0000:00:18.6: bridge window [io disabled] -05:51:18,521 INFO kernel:pci 0000:00:18.6: bridge window [mem 0xd3f00000-0xd3ffffff] -05:51:18,521 INFO kernel:pci 0000:00:18.6: bridge window [mem 0xd5400000-0xd54fffff 64bit pref] -05:51:18,521 INFO kernel:pci 0000:00:18.7: PCI bridge to [bus 22-22] -05:51:18,521 INFO kernel:pci 0000:00:18.7: PCI bridge to [bus 22-22] -05:51:18,521 INFO kernel:pci 0000:00:18.7: bridge window [io disabled] -05:51:18,521 INFO kernel:pci 0000:00:18.7: bridge window [mem 0xd4300000-0xd43fffff] -05:51:18,521 INFO kernel:pci 0000:00:18.7: bridge window [mem 0xd5600000-0xd56fffff 64bit pref] -05:51:18,521 DEBUG kernel:pci 0000:00:01.0: setting latency timer to 64 -05:51:18,521 DEBUG kernel:pci 0000:00:15.0: setting latency timer to 64 -05:51:18,521 DEBUG kernel:pci 0000:00:15.1: setting latency timer to 64 -05:51:18,521 DEBUG kernel:pci 0000:00:15.2: setting latency timer to 64 -05:51:18,521 DEBUG kernel:pci 0000:00:15.3: setting latency timer to 64 -05:51:18,521 DEBUG kernel:pci 0000:00:15.4: setting latency timer to 64 -05:51:18,521 DEBUG kernel:pci 0000:00:15.5: setting latency timer to 64 -05:51:18,521 DEBUG kernel:pci 0000:00:15.6: setting latency timer to 64 -05:51:18,521 DEBUG kernel:pci 0000:00:15.7: setting latency timer to 64 -05:51:18,521 DEBUG kernel:pci 0000:00:16.0: setting latency timer to 64 -05:51:18,521 DEBUG kernel:pci 0000:00:16.1: setting latency timer to 64 -05:51:18,521 DEBUG kernel:pci 0000:00:16.2: setting latency timer to 64 -05:51:18,521 DEBUG kernel:pci 0000:00:16.3: setting latency timer to 64 -05:51:18,521 DEBUG kernel:pci 0000:00:16.4: setting latency timer to 64 -05:51:18,521 DEBUG kernel:pci 0000:00:16.5: setting latency timer to 64 -05:51:18,521 DEBUG kernel:pci 0000:00:16.6: setting latency timer to 64 -05:51:18,521 DEBUG kernel:pci 0000:00:16.7: setting latency timer to 64 -05:51:18,521 DEBUG kernel:pci 0000:00:17.0: setting latency timer to 64 -05:51:18,521 DEBUG kernel:pci 0000:00:17.1: setting latency timer to 64 -05:51:18,522 DEBUG kernel:pci 0000:00:17.2: setting latency timer to 64 -05:51:18,522 DEBUG kernel:pci 0000:00:17.3: setting latency timer to 64 -05:51:18,522 DEBUG kernel:pci 0000:00:17.4: setting latency timer to 64 -05:51:18,522 DEBUG kernel:pci 0000:00:17.5: setting latency timer to 64 -05:51:18,522 DEBUG kernel:pci 0000:00:17.6: setting latency timer to 64 -05:51:18,522 DEBUG kernel:pci 0000:00:17.7: setting latency timer to 64 -05:51:18,522 DEBUG kernel:pci 0000:00:18.0: setting latency timer to 64 -05:51:18,522 DEBUG kernel:pci 0000:00:18.1: setting latency timer to 64 -05:51:18,522 DEBUG kernel:pci 0000:00:18.2: setting latency timer to 64 -05:51:18,522 DEBUG kernel:pci 0000:00:18.3: setting latency timer to 64 -05:51:18,522 DEBUG kernel:pci 0000:00:18.4: setting latency timer to 64 -05:51:18,522 DEBUG kernel:pci 0000:00:18.5: setting latency timer to 64 -05:51:18,522 DEBUG kernel:pci 0000:00:18.6: setting latency timer to 64 -05:51:18,522 DEBUG kernel:pci 0000:00:18.7: setting latency timer to 64 -05:51:18,522 DEBUG kernel:pci_bus 0000:00: resource 4 [mem 0x000a0000-0x000bffff] -05:51:18,522 DEBUG kernel:pci_bus 0000:00: resource 5 [mem 0x000d0000-0x000d3fff] -05:51:18,522 DEBUG kernel:pci_bus 0000:00: resource 6 [mem 0x000d4000-0x000d7fff] -05:51:18,522 DEBUG kernel:pci_bus 0000:00: resource 7 [mem 0x000d8000-0x000dbfff] -05:51:18,522 DEBUG kernel:pci_bus 0000:00: resource 8 [mem 0x80000000-0xfebfffff] -05:51:18,522 DEBUG kernel:pci_bus 0000:00: resource 9 [io 0x0000-0x0cf7] -05:51:18,522 DEBUG kernel:pci_bus 0000:00: resource 10 [io 0x0d00-0xfeff] -05:51:18,522 DEBUG kernel:pci_bus 0000:02: resource 0 [io 0x2000-0x3fff] -05:51:18,522 DEBUG kernel:pci_bus 0000:02: resource 1 [mem 0xd1000000-0xd23fffff] -05:51:18,522 DEBUG kernel:pci_bus 0000:02: resource 2 [mem 0xdc400000-0xdc9fffff 64bit pref] -05:51:18,522 DEBUG kernel:pci_bus 0000:02: resource 4 [mem 0x000a0000-0x000bffff] -05:51:18,522 DEBUG kernel:pci_bus 0000:02: resource 5 [mem 0x000d0000-0x000d3fff] -05:51:18,522 DEBUG kernel:pci_bus 0000:02: resource 6 [mem 0x000d4000-0x000d7fff] -05:51:18,522 DEBUG kernel:pci_bus 0000:02: resource 7 [mem 0x000d8000-0x000dbfff] -05:51:18,522 DEBUG kernel:pci_bus 0000:02: resource 8 [mem 0x80000000-0xfebfffff] -05:51:18,522 DEBUG kernel:pci_bus 0000:02: resource 9 [io 0x0000-0x0cf7] -05:51:18,522 DEBUG kernel:pci_bus 0000:02: resource 10 [io 0x0d00-0xfeff] -05:51:18,522 DEBUG kernel:pci_bus 0000:03: resource 0 [io 0x4000-0x4fff] -05:51:18,522 DEBUG kernel:pci_bus 0000:03: resource 1 [mem 0xd2400000-0xd24fffff] -05:51:18,522 DEBUG kernel:pci_bus 0000:03: resource 2 [mem 0xd4400000-0xd44fffff 64bit pref] -05:51:18,522 DEBUG kernel:pci_bus 0000:04: resource 0 [io 0x8000-0x8fff] -05:51:18,522 DEBUG kernel:pci_bus 0000:04: resource 1 [mem 0xd2800000-0xd28fffff] -05:51:18,522 DEBUG kernel:pci_bus 0000:04: resource 2 [mem 0xd4800000-0xd48fffff 64bit pref] -05:51:18,522 DEBUG kernel:pci_bus 0000:05: resource 0 [io 0xc000-0xcfff] -05:51:18,522 DEBUG kernel:pci_bus 0000:05: resource 1 [mem 0xd2c00000-0xd2cfffff] -05:51:18,522 DEBUG kernel:pci_bus 0000:05: resource 2 [mem 0xdcb00000-0xdcbfffff 64bit pref] -05:51:18,522 DEBUG kernel:pci_bus 0000:06: resource 1 [mem 0xd3000000-0xd30fffff] -05:51:18,522 DEBUG kernel:pci_bus 0000:06: resource 2 [mem 0xdcd00000-0xdcdfffff 64bit pref] -05:51:18,522 DEBUG kernel:pci_bus 0000:07: resource 1 [mem 0xd3400000-0xd34fffff] -05:51:18,522 DEBUG kernel:pci_bus 0000:07: resource 2 [mem 0xdcf00000-0xdcffffff 64bit pref] -05:51:18,522 DEBUG kernel:pci_bus 0000:08: resource 1 [mem 0xd3800000-0xd38fffff] -05:51:18,522 DEBUG kernel:pci_bus 0000:08: resource 2 [mem 0xdd100000-0xdd1fffff 64bit pref] -05:51:18,522 DEBUG kernel:pci_bus 0000:09: resource 1 [mem 0xd3c00000-0xd3cfffff] -05:51:18,522 DEBUG kernel:pci_bus 0000:09: resource 2 [mem 0xdd300000-0xdd3fffff 64bit pref] -05:51:18,522 DEBUG kernel:pci_bus 0000:0a: resource 1 [mem 0xd4000000-0xd40fffff] -05:51:18,522 DEBUG kernel:pci_bus 0000:0a: resource 2 [mem 0xdd500000-0xdd5fffff 64bit pref] -05:51:18,522 DEBUG kernel:pci_bus 0000:0b: resource 0 [io 0x5000-0x5fff] -05:51:18,522 DEBUG kernel:pci_bus 0000:0b: resource 1 [mem 0xd2500000-0xd25fffff] -05:51:18,522 DEBUG kernel:pci_bus 0000:0b: resource 2 [mem 0xd4500000-0xd45fffff 64bit pref] -05:51:18,522 DEBUG kernel:pci_bus 0000:0c: resource 0 [io 0x9000-0x9fff] -05:51:18,522 DEBUG kernel:pci_bus 0000:0c: resource 1 [mem 0xd2900000-0xd29fffff] -05:51:18,522 DEBUG kernel:pci_bus 0000:0c: resource 2 [mem 0xd4900000-0xd49fffff 64bit pref] -05:51:18,522 DEBUG kernel:pci_bus 0000:0d: resource 0 [io 0xd000-0xdfff] -05:51:18,522 DEBUG kernel:pci_bus 0000:0d: resource 1 [mem 0xd2d00000-0xd2dfffff] -05:51:18,522 DEBUG kernel:pci_bus 0000:0d: resource 2 [mem 0xd4b00000-0xd4bfffff 64bit pref] -05:51:18,522 DEBUG kernel:pci_bus 0000:0e: resource 1 [mem 0xd3100000-0xd31fffff] -05:51:18,522 DEBUG kernel:pci_bus 0000:0e: resource 2 [mem 0xd4d00000-0xd4dfffff 64bit pref] -05:51:18,522 DEBUG kernel:pci_bus 0000:0f: resource 1 [mem 0xd3500000-0xd35fffff] -05:51:18,522 DEBUG kernel:pci_bus 0000:0f: resource 2 [mem 0xd4f00000-0xd4ffffff 64bit pref] -05:51:18,522 DEBUG kernel:pci_bus 0000:10: resource 1 [mem 0xd3900000-0xd39fffff] -05:51:18,522 DEBUG kernel:pci_bus 0000:10: resource 2 [mem 0xd5100000-0xd51fffff 64bit pref] -05:51:18,522 DEBUG kernel:pci_bus 0000:11: resource 1 [mem 0xd3d00000-0xd3dfffff] -05:51:18,522 DEBUG kernel:pci_bus 0000:11: resource 2 [mem 0xd5300000-0xd53fffff 64bit pref] -05:51:18,522 DEBUG kernel:pci_bus 0000:12: resource 1 [mem 0xd4100000-0xd41fffff] -05:51:18,522 DEBUG kernel:pci_bus 0000:12: resource 2 [mem 0xd5500000-0xd55fffff 64bit pref] -05:51:18,522 DEBUG kernel:pci_bus 0000:13: resource 0 [io 0x6000-0x6fff] -05:51:18,522 DEBUG kernel:pci_bus 0000:13: resource 1 [mem 0xd2600000-0xd26fffff] -05:51:18,522 DEBUG kernel:pci_bus 0000:13: resource 2 [mem 0xd4600000-0xd46fffff 64bit pref] -05:51:18,522 DEBUG kernel:pci_bus 0000:14: resource 0 [io 0xa000-0xafff] -05:51:18,522 DEBUG kernel:pci_bus 0000:14: resource 1 [mem 0xd2a00000-0xd2afffff] -05:51:18,522 DEBUG kernel:pci_bus 0000:14: resource 2 [mem 0xdca00000-0xdcafffff 64bit pref] -05:51:18,522 DEBUG kernel:pci_bus 0000:15: resource 0 [io 0xe000-0xefff] -05:51:18,522 DEBUG kernel:pci_bus 0000:15: resource 1 [mem 0xd2e00000-0xd2efffff] -05:51:18,522 DEBUG kernel:pci_bus 0000:15: resource 2 [mem 0xdcc00000-0xdccfffff 64bit pref] -05:51:18,522 DEBUG kernel:pci_bus 0000:16: resource 1 [mem 0xd3200000-0xd32fffff] -05:51:18,522 DEBUG kernel:pci_bus 0000:16: resource 2 [mem 0xdce00000-0xdcefffff 64bit pref] -05:51:18,522 DEBUG kernel:pci_bus 0000:17: resource 1 [mem 0xd3600000-0xd36fffff] -05:51:18,522 DEBUG kernel:pci_bus 0000:17: resource 2 [mem 0xdd000000-0xdd0fffff 64bit pref] -05:51:18,522 DEBUG kernel:pci_bus 0000:18: resource 1 [mem 0xd3a00000-0xd3afffff] -05:51:18,522 DEBUG kernel:pci_bus 0000:18: resource 2 [mem 0xdd200000-0xdd2fffff 64bit pref] -05:51:18,522 DEBUG kernel:pci_bus 0000:19: resource 1 [mem 0xd3e00000-0xd3efffff] -05:51:18,522 DEBUG kernel:pci_bus 0000:19: resource 2 [mem 0xdd400000-0xdd4fffff 64bit pref] -05:51:18,522 DEBUG kernel:pci_bus 0000:1a: resource 1 [mem 0xd4200000-0xd42fffff] -05:51:18,522 DEBUG kernel:pci_bus 0000:1a: resource 2 [mem 0xdd600000-0xdd6fffff 64bit pref] -05:51:18,522 DEBUG kernel:pci_bus 0000:1b: resource 0 [io 0x7000-0x7fff] -05:51:18,522 DEBUG kernel:pci_bus 0000:1b: resource 1 [mem 0xd2700000-0xd27fffff] -05:51:18,522 DEBUG kernel:pci_bus 0000:1b: resource 2 [mem 0xd4700000-0xd47fffff 64bit pref] -05:51:18,522 DEBUG kernel:pci_bus 0000:1c: resource 0 [io 0xb000-0xbfff] -05:51:18,522 DEBUG kernel:pci_bus 0000:1c: resource 1 [mem 0xd2b00000-0xd2bfffff] -05:51:18,522 DEBUG kernel:pci_bus 0000:1c: resource 2 [mem 0xd4a00000-0xd4afffff 64bit pref] -05:51:18,522 DEBUG kernel:pci_bus 0000:1d: resource 1 [mem 0xd2f00000-0xd2ffffff] -05:51:18,522 DEBUG kernel:pci_bus 0000:1d: resource 2 [mem 0xd4c00000-0xd4cfffff 64bit pref] -05:51:18,522 DEBUG kernel:pci_bus 0000:1e: resource 1 [mem 0xd3300000-0xd33fffff] -05:51:18,522 DEBUG kernel:pci_bus 0000:1e: resource 2 [mem 0xd4e00000-0xd4efffff 64bit pref] -05:51:18,522 DEBUG kernel:pci_bus 0000:1f: resource 1 [mem 0xd3700000-0xd37fffff] -05:51:18,522 DEBUG kernel:pci_bus 0000:1f: resource 2 [mem 0xd5000000-0xd50fffff 64bit pref] -05:51:18,522 DEBUG kernel:pci_bus 0000:20: resource 1 [mem 0xd3b00000-0xd3bfffff] -05:51:18,522 DEBUG kernel:pci_bus 0000:20: resource 2 [mem 0xd5200000-0xd52fffff 64bit pref] -05:51:18,522 DEBUG kernel:pci_bus 0000:21: resource 1 [mem 0xd3f00000-0xd3ffffff] -05:51:18,522 DEBUG kernel:pci_bus 0000:21: resource 2 [mem 0xd5400000-0xd54fffff 64bit pref] -05:51:18,522 DEBUG kernel:pci_bus 0000:22: resource 1 [mem 0xd4300000-0xd43fffff] -05:51:18,522 DEBUG kernel:pci_bus 0000:22: resource 2 [mem 0xd5600000-0xd56fffff 64bit pref] -05:51:18,522 INFO kernel:NET: Registered protocol family 2 -05:51:18,522 INFO kernel:IP route cache hash table entries: 65536 (order: 7, 524288 bytes) -05:51:18,522 INFO kernel:TCP established hash table entries: 262144 (order: 10, 4194304 bytes) -05:51:18,527 INFO kernel:TCP bind hash table entries: 65536 (order: 8, 1048576 bytes) -05:51:18,527 INFO kernel:TCP: Hash tables configured (established 262144 bind 65536) -05:51:18,527 INFO kernel:TCP reno registered -05:51:18,527 INFO kernel:NET: Registered protocol family 1 -05:51:18,527 INFO kernel:pci 0000:00:00.0: Limiting direct PCI/PCI transfers -05:51:18,527 DEBUG kernel:pci 0000:00:0f.0: Boot video device -05:51:18,527 INFO kernel:Trying to unpack rootfs image as initramfs... -05:51:18,527 INFO kernel:Freeing initrd memory: 32601k freed -05:51:18,527 INFO kernel:Simple Boot Flag at 0x36 set to 0x80 -05:51:18,527 INFO kernel:audit: initializing netlink socket (disabled) -05:51:18,527 NOTICE kernel:type=2000 audit(1021096275.782:1): initialized -05:51:18,527 INFO kernel:HugeTLB registered 2 MB page size, pre-allocated 0 pages -05:51:18,527 NOTICE kernel:VFS: Disk quotas dquot_6.5.2 -05:51:18,527 WARNING kernel:Dquot-cache hash table entries: 512 (order 0, 4096 bytes) -05:51:18,527 INFO kernel:msgmni has been set to 4005 -05:51:18,527 DEBUG kernel:SELinux: Registering netfilter hooks -05:51:18,527 INFO kernel:alg: No test for stdrng (krng) -05:51:18,527 WARNING kernel:ksign: Installing public key data -05:51:18,527 WARNING kernel:Loading keyring -05:51:18,527 WARNING kernel:- Added public key 8A44323FB303E068 -05:51:18,527 WARNING kernel: - key was been created 363988184 seconds in future -05:51:18,527 WARNING kernel:- User ID: CentOS (Kernel Module GPG key) -05:51:18,527 INFO kernel:Block layer SCSI generic (bsg) driver version 0.4 loaded (major 251) -05:51:18,527 INFO kernel:io scheduler noop registered -05:51:18,527 INFO kernel:io scheduler anticipatory registered -05:51:18,527 INFO kernel:io scheduler deadline registered -05:51:18,527 INFO kernel:io scheduler cfq registered (default) -05:51:18,527 DEBUG kernel:pcieport 0000:00:15.0: setting latency timer to 64 -05:51:18,527 DEBUG kernel: alloc irq_desc for 24 on node -1 -05:51:18,527 DEBUG kernel: alloc kstat_irqs on node -1 -05:51:18,527 DEBUG kernel:pcieport 0000:00:15.0: irq 24 for MSI/MSI-X -05:51:18,527 DEBUG kernel:pcieport 0000:00:15.1: setting latency timer to 64 -05:51:18,527 DEBUG kernel: alloc irq_desc for 25 on node -1 -05:51:18,527 DEBUG kernel: alloc kstat_irqs on node -1 -05:51:18,527 DEBUG kernel:pcieport 0000:00:15.1: irq 25 for MSI/MSI-X -05:51:18,527 DEBUG kernel:pcieport 0000:00:15.2: setting latency timer to 64 -05:51:18,527 DEBUG kernel: alloc irq_desc for 26 on node -1 -05:51:18,527 DEBUG kernel: alloc kstat_irqs on node -1 -05:51:18,527 DEBUG kernel:pcieport 0000:00:15.2: irq 26 for MSI/MSI-X -05:51:18,527 DEBUG kernel:pcieport 0000:00:15.3: setting latency timer to 64 -05:51:18,527 DEBUG kernel: alloc irq_desc for 27 on node -1 -05:51:18,527 DEBUG kernel: alloc kstat_irqs on node -1 -05:51:18,527 DEBUG kernel:pcieport 0000:00:15.3: irq 27 for MSI/MSI-X -05:51:18,527 DEBUG kernel:pcieport 0000:00:15.4: setting latency timer to 64 -05:51:18,527 DEBUG kernel: alloc irq_desc for 28 on node -1 -05:51:18,527 DEBUG kernel: alloc kstat_irqs on node -1 -05:51:18,527 DEBUG kernel:pcieport 0000:00:15.4: irq 28 for MSI/MSI-X -05:51:18,527 DEBUG kernel:pcieport 0000:00:15.5: setting latency timer to 64 -05:51:18,527 DEBUG kernel: alloc irq_desc for 29 on node -1 -05:51:18,527 DEBUG kernel: alloc kstat_irqs on node -1 -05:51:18,527 DEBUG kernel:pcieport 0000:00:15.5: irq 29 for MSI/MSI-X -05:51:18,527 DEBUG kernel:pcieport 0000:00:15.6: setting latency timer to 64 -05:51:18,527 DEBUG kernel: alloc irq_desc for 30 on node -1 -05:51:18,527 DEBUG kernel: alloc kstat_irqs on node -1 -05:51:18,527 DEBUG kernel:pcieport 0000:00:15.6: irq 30 for MSI/MSI-X -05:51:18,527 DEBUG kernel:pcieport 0000:00:15.7: setting latency timer to 64 -05:51:18,527 DEBUG kernel: alloc irq_desc for 31 on node -1 -05:51:18,527 DEBUG kernel: alloc kstat_irqs on node -1 -05:51:18,527 DEBUG kernel:pcieport 0000:00:15.7: irq 31 for MSI/MSI-X -05:51:18,527 DEBUG kernel:pcieport 0000:00:16.0: setting latency timer to 64 -05:51:18,527 DEBUG kernel: alloc irq_desc for 32 on node -1 -05:51:18,527 DEBUG kernel: alloc kstat_irqs on node -1 -05:51:18,527 DEBUG kernel:pcieport 0000:00:16.0: irq 32 for MSI/MSI-X -05:51:18,527 DEBUG kernel:pcieport 0000:00:16.1: setting latency timer to 64 -05:51:18,527 DEBUG kernel: alloc irq_desc for 33 on node -1 -05:51:18,527 DEBUG kernel: alloc kstat_irqs on node -1 -05:51:18,527 DEBUG kernel:pcieport 0000:00:16.1: irq 33 for MSI/MSI-X -05:51:18,527 DEBUG kernel:pcieport 0000:00:16.2: setting latency timer to 64 -05:51:18,527 DEBUG kernel: alloc irq_desc for 34 on node -1 -05:51:18,527 DEBUG kernel: alloc kstat_irqs on node -1 -05:51:18,527 DEBUG kernel:pcieport 0000:00:16.2: irq 34 for MSI/MSI-X -05:51:18,527 DEBUG kernel:pcieport 0000:00:16.3: setting latency timer to 64 -05:51:18,527 DEBUG kernel: alloc irq_desc for 35 on node -1 -05:51:18,527 DEBUG kernel: alloc kstat_irqs on node -1 -05:51:18,527 DEBUG kernel:pcieport 0000:00:16.3: irq 35 for MSI/MSI-X -05:51:18,527 DEBUG kernel:pcieport 0000:00:16.4: setting latency timer to 64 -05:51:18,527 DEBUG kernel: alloc irq_desc for 36 on node -1 -05:51:18,527 DEBUG kernel: alloc kstat_irqs on node -1 -05:51:18,527 DEBUG kernel:pcieport 0000:00:16.4: irq 36 for MSI/MSI-X -05:51:18,527 DEBUG kernel:pcieport 0000:00:16.5: setting latency timer to 64 -05:51:18,527 DEBUG kernel: alloc irq_desc for 37 on node -1 -05:51:18,527 DEBUG kernel: alloc kstat_irqs on node -1 -05:51:18,527 DEBUG kernel:pcieport 0000:00:16.5: irq 37 for MSI/MSI-X -05:51:18,527 DEBUG kernel:pcieport 0000:00:16.6: setting latency timer to 64 -05:51:18,527 DEBUG kernel: alloc irq_desc for 38 on node -1 -05:51:18,527 DEBUG kernel: alloc kstat_irqs on node -1 -05:51:18,527 DEBUG kernel:pcieport 0000:00:16.6: irq 38 for MSI/MSI-X -05:51:18,527 DEBUG kernel:pcieport 0000:00:16.7: setting latency timer to 64 -05:51:18,527 DEBUG kernel: alloc irq_desc for 39 on node -1 -05:51:18,527 DEBUG kernel: alloc kstat_irqs on node -1 -05:51:18,527 DEBUG kernel:pcieport 0000:00:16.7: irq 39 for MSI/MSI-X -05:51:18,527 DEBUG kernel:pcieport 0000:00:17.0: setting latency timer to 64 -05:51:18,527 DEBUG kernel: alloc irq_desc for 40 on node -1 -05:51:18,527 DEBUG kernel: alloc kstat_irqs on node -1 -05:51:18,527 DEBUG kernel:pcieport 0000:00:17.0: irq 40 for MSI/MSI-X -05:51:18,527 DEBUG kernel:pcieport 0000:00:17.1: setting latency timer to 64 -05:51:18,527 DEBUG kernel: alloc irq_desc for 41 on node -1 -05:51:18,527 DEBUG kernel: alloc kstat_irqs on node -1 -05:51:18,527 DEBUG kernel:pcieport 0000:00:17.1: irq 41 for MSI/MSI-X -05:51:18,527 DEBUG kernel:pcieport 0000:00:17.2: setting latency timer to 64 -05:51:18,527 DEBUG kernel: alloc irq_desc for 42 on node -1 -05:51:18,527 DEBUG kernel: alloc kstat_irqs on node -1 -05:51:18,527 DEBUG kernel:pcieport 0000:00:17.2: irq 42 for MSI/MSI-X -05:51:18,527 DEBUG kernel:pcieport 0000:00:17.3: setting latency timer to 64 -05:51:18,527 DEBUG kernel: alloc irq_desc for 43 on node -1 -05:51:18,527 DEBUG kernel: alloc kstat_irqs on node -1 -05:51:18,527 DEBUG kernel:pcieport 0000:00:17.3: irq 43 for MSI/MSI-X -05:51:18,527 DEBUG kernel:pcieport 0000:00:17.4: setting latency timer to 64 -05:51:18,527 DEBUG kernel: alloc irq_desc for 44 on node -1 -05:51:18,527 DEBUG kernel: alloc kstat_irqs on node -1 -05:51:18,527 DEBUG kernel:pcieport 0000:00:17.4: irq 44 for MSI/MSI-X -05:51:18,527 DEBUG kernel:pcieport 0000:00:17.5: setting latency timer to 64 -05:51:18,527 DEBUG kernel: alloc irq_desc for 45 on node -1 -05:51:18,527 DEBUG kernel: alloc kstat_irqs on node -1 -05:51:18,527 DEBUG kernel:pcieport 0000:00:17.5: irq 45 for MSI/MSI-X -05:51:18,527 DEBUG kernel:pcieport 0000:00:17.6: setting latency timer to 64 -05:51:18,527 DEBUG kernel: alloc irq_desc for 46 on node -1 -05:51:18,527 DEBUG kernel: alloc kstat_irqs on node -1 -05:51:18,527 DEBUG kernel:pcieport 0000:00:17.6: irq 46 for MSI/MSI-X -05:51:18,527 DEBUG kernel:pcieport 0000:00:17.7: setting latency timer to 64 -05:51:18,527 DEBUG kernel: alloc irq_desc for 47 on node -1 -05:51:18,527 DEBUG kernel: alloc kstat_irqs on node -1 -05:51:18,527 DEBUG kernel:pcieport 0000:00:17.7: irq 47 for MSI/MSI-X -05:51:18,527 DEBUG kernel:pcieport 0000:00:18.0: setting latency timer to 64 -05:51:18,527 DEBUG kernel: alloc irq_desc for 48 on node -1 -05:51:18,527 DEBUG kernel: alloc kstat_irqs on node -1 -05:51:18,527 DEBUG kernel:pcieport 0000:00:18.0: irq 48 for MSI/MSI-X -05:51:18,527 DEBUG kernel:pcieport 0000:00:18.1: setting latency timer to 64 -05:51:18,527 DEBUG kernel: alloc irq_desc for 49 on node -1 -05:51:18,527 DEBUG kernel: alloc kstat_irqs on node -1 -05:51:18,527 DEBUG kernel:pcieport 0000:00:18.1: irq 49 for MSI/MSI-X -05:51:18,527 DEBUG kernel:pcieport 0000:00:18.2: setting latency timer to 64 -05:51:18,527 DEBUG kernel: alloc irq_desc for 50 on node -1 -05:51:18,527 DEBUG kernel: alloc kstat_irqs on node -1 -05:51:18,527 DEBUG kernel:pcieport 0000:00:18.2: irq 50 for MSI/MSI-X -05:51:18,527 DEBUG kernel:pcieport 0000:00:18.3: setting latency timer to 64 -05:51:18,527 DEBUG kernel: alloc irq_desc for 51 on node -1 -05:51:18,527 DEBUG kernel: alloc kstat_irqs on node -1 -05:51:18,527 DEBUG kernel:pcieport 0000:00:18.3: irq 51 for MSI/MSI-X -05:51:18,527 DEBUG kernel:pcieport 0000:00:18.4: setting latency timer to 64 -05:51:18,527 DEBUG kernel: alloc irq_desc for 52 on node -1 -05:51:18,527 DEBUG kernel: alloc kstat_irqs on node -1 -05:51:18,527 DEBUG kernel:pcieport 0000:00:18.4: irq 52 for MSI/MSI-X -05:51:18,527 DEBUG kernel:pcieport 0000:00:18.5: setting latency timer to 64 -05:51:18,527 DEBUG kernel: alloc irq_desc for 53 on node -1 -05:51:18,527 DEBUG kernel: alloc kstat_irqs on node -1 -05:51:18,527 DEBUG kernel:pcieport 0000:00:18.5: irq 53 for MSI/MSI-X -05:51:18,527 DEBUG kernel:pcieport 0000:00:18.6: setting latency timer to 64 -05:51:18,527 DEBUG kernel: alloc irq_desc for 54 on node -1 -05:51:18,527 DEBUG kernel: alloc kstat_irqs on node -1 -05:51:18,527 DEBUG kernel:pcieport 0000:00:18.6: irq 54 for MSI/MSI-X -05:51:18,527 DEBUG kernel:pcieport 0000:00:18.7: setting latency timer to 64 -05:51:18,527 DEBUG kernel: alloc irq_desc for 55 on node -1 -05:51:18,527 DEBUG kernel: alloc kstat_irqs on node -1 -05:51:18,527 DEBUG kernel:pcieport 0000:00:18.7: irq 55 for MSI/MSI-X -05:51:18,527 INFO kernel:pci_hotplug: PCI Hot Plug PCI Core version: 0.5 -05:51:18,527 INFO kernel:pciehp 0000:00:15.0:pcie04: HPC vendor_id 15ad device_id 7a0 ss_vid 0 ss_did 0 -05:51:18,527 DEBUG kernel:pciehp 0000:00:15.0:pcie04: service driver pciehp loaded -05:51:18,527 INFO kernel:pciehp 0000:00:15.1:pcie04: HPC vendor_id 15ad device_id 7a0 ss_vid 0 ss_did 0 -05:51:18,527 DEBUG kernel:pciehp 0000:00:15.1:pcie04: service driver pciehp loaded -05:51:18,527 INFO kernel:pciehp 0000:00:15.2:pcie04: HPC vendor_id 15ad device_id 7a0 ss_vid 0 ss_did 0 -05:51:18,527 DEBUG kernel:pciehp 0000:00:15.2:pcie04: service driver pciehp loaded -05:51:18,527 INFO kernel:pciehp 0000:00:15.3:pcie04: HPC vendor_id 15ad device_id 7a0 ss_vid 0 ss_did 0 -05:51:18,527 DEBUG kernel:pciehp 0000:00:15.3:pcie04: service driver pciehp loaded -05:51:18,527 INFO kernel:pciehp 0000:00:15.4:pcie04: HPC vendor_id 15ad device_id 7a0 ss_vid 0 ss_did 0 -05:51:18,527 DEBUG kernel:pciehp 0000:00:15.4:pcie04: service driver pciehp loaded -05:51:18,527 INFO kernel:pciehp 0000:00:15.5:pcie04: HPC vendor_id 15ad device_id 7a0 ss_vid 0 ss_did 0 -05:51:18,527 DEBUG kernel:pciehp 0000:00:15.5:pcie04: service driver pciehp loaded -05:51:18,527 INFO kernel:pciehp 0000:00:15.6:pcie04: HPC vendor_id 15ad device_id 7a0 ss_vid 0 ss_did 0 -05:51:18,527 DEBUG kernel:pciehp 0000:00:15.6:pcie04: service driver pciehp loaded -05:51:18,527 INFO kernel:pciehp 0000:00:15.7:pcie04: HPC vendor_id 15ad device_id 7a0 ss_vid 0 ss_did 0 -05:51:18,527 DEBUG kernel:pciehp 0000:00:15.7:pcie04: service driver pciehp loaded -05:51:18,527 INFO kernel:pciehp 0000:00:16.0:pcie04: HPC vendor_id 15ad device_id 7a0 ss_vid 0 ss_did 0 -05:51:18,527 DEBUG kernel:pciehp 0000:00:16.0:pcie04: service driver pciehp loaded -05:51:18,527 INFO kernel:pciehp 0000:00:16.1:pcie04: HPC vendor_id 15ad device_id 7a0 ss_vid 0 ss_did 0 -05:51:18,527 DEBUG kernel:pciehp 0000:00:16.1:pcie04: service driver pciehp loaded -05:51:18,527 INFO kernel:pciehp 0000:00:16.2:pcie04: HPC vendor_id 15ad device_id 7a0 ss_vid 0 ss_did 0 -05:51:18,527 DEBUG kernel:pciehp 0000:00:16.2:pcie04: service driver pciehp loaded -05:51:18,527 INFO kernel:pciehp 0000:00:16.3:pcie04: HPC vendor_id 15ad device_id 7a0 ss_vid 0 ss_did 0 -05:51:18,527 DEBUG kernel:pciehp 0000:00:16.3:pcie04: service driver pciehp loaded -05:51:18,527 INFO kernel:pciehp 0000:00:16.4:pcie04: HPC vendor_id 15ad device_id 7a0 ss_vid 0 ss_did 0 -05:51:18,527 DEBUG kernel:pciehp 0000:00:16.4:pcie04: service driver pciehp loaded -05:51:18,527 INFO kernel:pciehp 0000:00:16.5:pcie04: HPC vendor_id 15ad device_id 7a0 ss_vid 0 ss_did 0 -05:51:18,527 DEBUG kernel:pciehp 0000:00:16.5:pcie04: service driver pciehp loaded -05:51:18,527 INFO kernel:pciehp 0000:00:16.6:pcie04: HPC vendor_id 15ad device_id 7a0 ss_vid 0 ss_did 0 -05:51:18,527 DEBUG kernel:pciehp 0000:00:16.6:pcie04: service driver pciehp loaded -05:51:18,527 INFO kernel:pciehp 0000:00:16.7:pcie04: HPC vendor_id 15ad device_id 7a0 ss_vid 0 ss_did 0 -05:51:18,527 DEBUG kernel:pciehp 0000:00:16.7:pcie04: service driver pciehp loaded -05:51:18,527 INFO kernel:pciehp 0000:00:17.0:pcie04: HPC vendor_id 15ad device_id 7a0 ss_vid 0 ss_did 0 -05:51:18,527 DEBUG kernel:pciehp 0000:00:17.0:pcie04: service driver pciehp loaded -05:51:18,527 INFO kernel:pciehp 0000:00:17.1:pcie04: HPC vendor_id 15ad device_id 7a0 ss_vid 0 ss_did 0 -05:51:18,527 DEBUG kernel:pciehp 0000:00:17.1:pcie04: service driver pciehp loaded -05:51:18,527 INFO kernel:pciehp 0000:00:17.2:pcie04: HPC vendor_id 15ad device_id 7a0 ss_vid 0 ss_did 0 -05:51:18,527 DEBUG kernel:pciehp 0000:00:17.2:pcie04: service driver pciehp loaded -05:51:18,527 INFO kernel:pciehp 0000:00:17.3:pcie04: HPC vendor_id 15ad device_id 7a0 ss_vid 0 ss_did 0 -05:51:18,527 DEBUG kernel:pciehp 0000:00:17.3:pcie04: service driver pciehp loaded -05:51:18,527 INFO kernel:pciehp 0000:00:17.4:pcie04: HPC vendor_id 15ad device_id 7a0 ss_vid 0 ss_did 0 -05:51:18,527 DEBUG kernel:pciehp 0000:00:17.4:pcie04: service driver pciehp loaded -05:51:18,527 INFO kernel:pciehp 0000:00:17.5:pcie04: HPC vendor_id 15ad device_id 7a0 ss_vid 0 ss_did 0 -05:51:18,527 DEBUG kernel:pciehp 0000:00:17.5:pcie04: service driver pciehp loaded -05:51:18,527 INFO kernel:pciehp 0000:00:17.6:pcie04: HPC vendor_id 15ad device_id 7a0 ss_vid 0 ss_did 0 -05:51:18,527 DEBUG kernel:pciehp 0000:00:17.6:pcie04: service driver pciehp loaded -05:51:18,527 INFO kernel:pciehp 0000:00:17.7:pcie04: HPC vendor_id 15ad device_id 7a0 ss_vid 0 ss_did 0 -05:51:18,527 DEBUG kernel:pciehp 0000:00:17.7:pcie04: service driver pciehp loaded -05:51:18,527 INFO kernel:pciehp 0000:00:18.0:pcie04: HPC vendor_id 15ad device_id 7a0 ss_vid 0 ss_did 0 -05:51:18,527 DEBUG kernel:pciehp 0000:00:18.0:pcie04: service driver pciehp loaded -05:51:18,527 INFO kernel:pciehp 0000:00:18.1:pcie04: HPC vendor_id 15ad device_id 7a0 ss_vid 0 ss_did 0 -05:51:18,527 DEBUG kernel:pciehp 0000:00:18.1:pcie04: service driver pciehp loaded -05:51:18,527 INFO kernel:pciehp 0000:00:18.2:pcie04: HPC vendor_id 15ad device_id 7a0 ss_vid 0 ss_did 0 -05:51:18,527 DEBUG kernel:pciehp 0000:00:18.2:pcie04: service driver pciehp loaded -05:51:18,527 INFO kernel:pciehp 0000:00:18.3:pcie04: HPC vendor_id 15ad device_id 7a0 ss_vid 0 ss_did 0 -05:51:18,527 DEBUG kernel:pciehp 0000:00:18.3:pcie04: service driver pciehp loaded -05:51:18,527 INFO kernel:pciehp 0000:00:18.4:pcie04: HPC vendor_id 15ad device_id 7a0 ss_vid 0 ss_did 0 -05:51:18,527 DEBUG kernel:pciehp 0000:00:18.4:pcie04: service driver pciehp loaded -05:51:18,527 INFO kernel:pciehp 0000:00:18.5:pcie04: HPC vendor_id 15ad device_id 7a0 ss_vid 0 ss_did 0 -05:51:18,527 DEBUG kernel:pciehp 0000:00:18.5:pcie04: service driver pciehp loaded -05:51:18,527 INFO kernel:pciehp 0000:00:18.6:pcie04: HPC vendor_id 15ad device_id 7a0 ss_vid 0 ss_did 0 -05:51:18,527 DEBUG kernel:pciehp 0000:00:18.6:pcie04: service driver pciehp loaded -05:51:18,527 INFO kernel:pciehp 0000:00:18.7:pcie04: HPC vendor_id 15ad device_id 7a0 ss_vid 0 ss_did 0 -05:51:18,527 DEBUG kernel:pciehp 0000:00:18.7:pcie04: service driver pciehp loaded -05:51:18,527 INFO kernel:pciehp: PCI Express Hot Plug Controller Driver version: 0.4 -05:51:18,527 INFO kernel:acpiphp: ACPI Hot Plug PCI Controller Driver version: 0.5 -05:51:18,527 INFO kernel:acpiphp: Slot [32] registered -05:51:18,527 INFO kernel:acpiphp: Slot [33] registered -05:51:18,527 INFO kernel:acpiphp: Slot [34] registered -05:51:18,527 INFO kernel:acpiphp: Slot [35] registered -05:51:18,527 INFO kernel:acpiphp: Slot [36] registered -05:51:18,527 INFO kernel:acpiphp: Slot [37] registered -05:51:18,527 INFO kernel:acpiphp: Slot [38] registered -05:51:18,527 INFO kernel:acpiphp: Slot [39] registered -05:51:18,527 INFO kernel:acpiphp: Slot [40] registered -05:51:18,527 INFO kernel:acpiphp: Slot [41] registered -05:51:18,527 INFO kernel:acpiphp: Slot [42] registered -05:51:18,527 INFO kernel:acpiphp: Slot [43] registered -05:51:18,527 INFO kernel:acpiphp: Slot [44] registered -05:51:18,527 INFO kernel:acpiphp: Slot [45] registered -05:51:18,527 INFO kernel:acpiphp: Slot [46] registered -05:51:18,527 INFO kernel:acpiphp: Slot [47] registered -05:51:18,527 INFO kernel:acpiphp: Slot [48] registered -05:51:18,527 INFO kernel:acpiphp: Slot [49] registered -05:51:18,527 INFO kernel:acpiphp: Slot [50] registered -05:51:18,527 INFO kernel:acpiphp: Slot [51] registered -05:51:18,527 INFO kernel:acpiphp: Slot [52] registered -05:51:18,527 INFO kernel:acpiphp: Slot [53] registered -05:51:18,527 INFO kernel:acpiphp: Slot [54] registered -05:51:18,527 INFO kernel:acpiphp: Slot [55] registered -05:51:18,527 INFO kernel:acpiphp: Slot [56] registered -05:51:18,527 INFO kernel:acpiphp: Slot [57] registered -05:51:18,527 INFO kernel:acpiphp: Slot [58] registered -05:51:18,527 INFO kernel:acpiphp: Slot [59] registered -05:51:18,527 INFO kernel:acpiphp: Slot [60] registered -05:51:18,527 INFO kernel:acpiphp: Slot [61] registered -05:51:18,527 INFO kernel:acpiphp: Slot [62] registered -05:51:18,527 INFO kernel:acpiphp: Slot [63] registered -05:51:18,527 WARNING kernel:acpiphp_glue: Slot 160 already registered by another hotplug driver -05:51:18,527 WARNING kernel:acpiphp_glue: Slot 192 already registered by another hotplug driver -05:51:18,527 WARNING kernel:acpiphp_glue: Slot 224 already registered by another hotplug driver -05:51:18,527 WARNING kernel:acpiphp_glue: Slot 256 already registered by another hotplug driver -05:51:18,527 WARNING kernel:acpiphp_glue: Slot 161 already registered by another hotplug driver -05:51:18,527 WARNING kernel:acpiphp_glue: Slot 162 already registered by another hotplug driver -05:51:18,527 WARNING kernel:acpiphp_glue: Slot 163 already registered by another hotplug driver -05:51:18,527 WARNING kernel:acpiphp_glue: Slot 164 already registered by another hotplug driver -05:51:18,527 WARNING kernel:acpiphp_glue: Slot 165 already registered by another hotplug driver -05:51:18,527 WARNING kernel:acpiphp_glue: Slot 166 already registered by another hotplug driver -05:51:18,527 WARNING kernel:acpiphp_glue: Slot 167 already registered by another hotplug driver -05:51:18,527 WARNING kernel:acpiphp_glue: Slot 193 already registered by another hotplug driver -05:51:18,527 WARNING kernel:acpiphp_glue: Slot 194 already registered by another hotplug driver -05:51:18,527 WARNING kernel:acpiphp_glue: Slot 195 already registered by another hotplug driver -05:51:18,527 WARNING kernel:acpiphp_glue: Slot 196 already registered by another hotplug driver -05:51:18,527 WARNING kernel:acpiphp_glue: Slot 197 already registered by another hotplug driver -05:51:18,527 WARNING kernel:acpiphp_glue: Slot 198 already registered by another hotplug driver -05:51:18,527 WARNING kernel:acpiphp_glue: Slot 199 already registered by another hotplug driver -05:51:18,527 WARNING kernel:acpiphp_glue: Slot 225 already registered by another hotplug driver -05:51:18,527 WARNING kernel:acpiphp_glue: Slot 226 already registered by another hotplug driver -05:51:18,527 WARNING kernel:acpiphp_glue: Slot 227 already registered by another hotplug driver -05:51:18,527 WARNING kernel:acpiphp_glue: Slot 228 already registered by another hotplug driver -05:51:18,527 WARNING kernel:acpiphp_glue: Slot 229 already registered by another hotplug driver -05:51:18,527 WARNING kernel:acpiphp_glue: Slot 230 already registered by another hotplug driver -05:51:18,527 WARNING kernel:acpiphp_glue: Slot 231 already registered by another hotplug driver -05:51:18,527 WARNING kernel:acpiphp_glue: Slot 257 already registered by another hotplug driver -05:51:18,527 WARNING kernel:acpiphp_glue: Slot 258 already registered by another hotplug driver -05:51:18,527 WARNING kernel:acpiphp_glue: Slot 259 already registered by another hotplug driver -05:51:18,527 WARNING kernel:acpiphp_glue: Slot 260 already registered by another hotplug driver -05:51:18,527 WARNING kernel:acpiphp_glue: Slot 261 already registered by another hotplug driver -05:51:18,527 WARNING kernel:acpiphp_glue: Slot 262 already registered by another hotplug driver -05:51:18,527 WARNING kernel:acpiphp_glue: Slot 263 already registered by another hotplug driver -05:51:18,527 INFO kernel:ipmi message handler version 39.2 -05:51:18,527 INFO kernel:IPMI System Interface driver. -05:51:18,527 INFO kernel:ipmi_si: Adding default-specified kcs state machine -05:51:18,527 INFO kernel:ipmi_si: Trying default-specified kcs state machine at i/o address 0xca2, slave address 0x0, irq 0 -05:51:18,527 INFO kernel:ipmi_si: Interface detection failed -05:51:18,527 INFO kernel:ipmi_si: Adding default-specified smic state machine -05:51:18,527 INFO kernel:ipmi_si: Trying default-specified smic state machine at i/o address 0xca9, slave address 0x0, irq 0 -05:51:18,527 INFO kernel:ipmi_si: Interface detection failed -05:51:18,527 INFO kernel:ipmi_si: Adding default-specified bt state machine -05:51:18,527 INFO kernel:ipmi_si: Trying default-specified bt state machine at i/o address 0xe4, slave address 0x0, irq 0 -05:51:18,527 INFO kernel:ipmi_si: Interface detection failed -05:51:18,527 WARNING kernel:ipmi_si: Unable to find any System Interface(s) -05:51:18,527 INFO kernel:ACPI: AC Adapter [ACAD] (on-line) -05:51:18,527 INFO kernel:input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input0 -05:51:18,527 INFO kernel:ACPI: Power Button [PWRF] -05:51:18,527 DEBUG kernel:ACPI: acpi_idle registered with cpuidle -05:51:18,527 WARNING kernel:ACPI Exception: AE_NOT_FOUND, No or invalid critical threshold (20090903/thermal-386) -05:51:18,527 INFO kernel:GHES: HEST is not enabled! -05:51:18,527 INFO kernel:Non-volatile memory driver v1.3 -05:51:18,527 INFO kernel:Linux agpgart interface v0.103 -05:51:18,527 INFO kernel:agpgart-intel 0000:00:00.0: Intel 440BX Chipset -05:51:18,527 INFO kernel:agpgart-intel 0000:00:00.0: AGP aperture is 256M @ 0x0 -05:51:18,527 INFO kernel:crash memory driver: version 1.1 -05:51:18,527 INFO kernel:Serial: 8250/16550 driver, 4 ports, IRQ sharing enabled -05:51:18,527 INFO kernel:serial8250: ttyS0 at I/O 0x3f8 (irq = 4) is a 16550A -05:51:18,527 INFO kernel:serial8250: ttyS1 at I/O 0x2f8 (irq = 3) is a 16550A -05:51:18,527 INFO kernel:00:0a: ttyS0 at I/O 0x3f8 (irq = 4) is a 16550A -05:51:18,527 INFO kernel:00:0b: ttyS1 at I/O 0x2f8 (irq = 3) is a 16550A -05:51:18,527 INFO kernel:brd: module loaded -05:51:18,527 INFO kernel:loop: module loaded -05:51:18,527 INFO kernel:input: Macintosh mouse button emulation as /devices/virtual/input/input1 -05:51:18,527 INFO kernel:Fixed MDIO Bus: probed -05:51:18,527 INFO kernel:ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver -05:51:18,527 INFO kernel:ohci_hcd: USB 1.1 'Open' Host Controller (OHCI) Driver -05:51:18,527 INFO kernel:uhci_hcd: USB Universal Host Controller Interface driver -05:51:18,527 INFO kernel:PNP: PS/2 Controller [PNP0303:KBC,PNP0f13:MOUS] at 0x60,0x64 irq 1,12 -05:51:18,527 INFO kernel:Refined TSC clocksource calibration: 2400.080 MHz. -05:51:18,527 INFO kernel:Switching to clocksource tsc -05:51:18,527 INFO kernel:serio: i8042 KBD port at 0x60,0x64 irq 1 -05:51:18,527 INFO kernel:serio: i8042 AUX port at 0x60,0x64 irq 12 -05:51:18,527 INFO kernel:mice: PS/2 mouse device common for all mice -05:51:18,527 INFO kernel:rtc_cmos 00:04: rtc core: registered rtc_cmos as rtc0 -05:51:18,527 INFO kernel:rtc0: alarms up to one month, y3k, 114 bytes nvram, hpet irqs -05:51:18,527 INFO kernel:cpuidle: using governor ladder -05:51:18,527 INFO kernel:cpuidle: using governor menu -05:51:18,527 INFO kernel:EFI Variables Facility v0.08 2004-May-17 -05:51:18,527 INFO kernel:usbcore: registered new interface driver hiddev -05:51:18,527 INFO kernel:usbcore: registered new interface driver usbhid -05:51:18,527 INFO kernel:usbhid: v2.6:USB HID core driver -05:51:18,527 INFO kernel:GRE over IPv4 demultiplexor driver -05:51:18,527 INFO kernel:TCP cubic registered -05:51:18,527 INFO kernel:input: AT Translated Set 2 keyboard as /devices/platform/i8042/serio0/input/input2 -05:51:18,527 INFO kernel:Initializing XFRM netlink socket -05:51:18,527 INFO kernel:NET: Registered protocol family 17 -05:51:18,527 WARNING kernel:registered taskstats version 1 -05:51:18,527 INFO kernel:input: ImPS/2 Generic Wheel Mouse as /devices/platform/i8042/serio1/input/input3 -05:51:18,527 INFO kernel:rtc_cmos 00:04: setting system clock to 2002-05-11 05:51:18 UTC (1021096278) -05:51:18,527 INFO kernel:Initalizing network drop monitor service -05:51:18,527 INFO kernel:Freeing unused kernel memory: 1276k freed -05:51:18,527 INFO kernel:Write protecting the kernel read-only data: 10240k -05:51:18,527 INFO kernel:Freeing unused kernel memory: 800k freed -05:51:18,527 INFO kernel:Freeing unused kernel memory: 1588k freed -05:51:20,557 INFO kernel:squashfs: version 4.0 (2009/01/31) Phillip Lougher -05:51:20,568 INFO kernel:Loading iSCSI transport class v2.0-870. -05:51:20,587 NOTICE kernel:iscsi: registered transport (tcp) -05:51:20,594 INFO kernel:Floppy drive(s): fd0 is 1.44M -05:51:20,605 INFO kernel:FDC 0 is a post-1991 82077 -05:51:20,610 INFO kernel:BIOS EDD facility v0.16 2004-Jun-25, 2 devices found -05:51:20,614 INFO kernel:input: PC Speaker as /devices/platform/pcspkr/input/input4 -05:51:20,620 INFO kernel:No iBFT detected. -05:51:20,655 INFO kernel:NET: Registered protocol family 10 -05:51:20,657 INFO kernel:lo: Disabled Privacy Extensions -05:51:20,739 DEBUG kernel:ata_piix 0000:00:07.1: version 2.13 -05:51:20,740 INFO kernel:scsi0 : ata_piix -05:51:20,740 INFO kernel:scsi1 : ata_piix -05:51:20,740 INFO kernel:ata1: PATA max UDMA/33 cmd 0x1f0 ctl 0x3f6 bmdma 0x10c0 irq 14 -05:51:20,740 INFO kernel:ata2: PATA max UDMA/33 cmd 0x170 ctl 0x376 bmdma 0x10c8 irq 15 -05:51:20,750 ERR udevd-work: device node '/dev/rtc' already exists, link to '/dev/rtc0' will not overwrite it -05:51:20,926 INFO kernel:ata2.00: ATAPI: VMware Virtual IDE CDROM Drive, 00000001, max UDMA/33 -05:51:20,934 INFO kernel:ata2.00: configured for UDMA/33 -05:51:20,934 NOTICE kernel:scsi 1:0:0:0: CD-ROM NECVMWar VMware IDE CDR10 1.00 PQ: 0 ANSI: 5 -05:51:20,959 INFO kernel:Fusion MPT base driver 3.04.20 -05:51:20,959 INFO kernel:Copyright (c) 1999-2008 LSI Corporation -05:51:20,971 INFO kernel:Fusion MPT SPI Host driver 3.04.20 -05:51:20,971 DEBUG kernel: alloc irq_desc for 17 on node -1 -05:51:20,971 DEBUG kernel: alloc kstat_irqs on node -1 -05:51:20,971 INFO kernel:mptspi 0000:00:10.0: PCI INT A -> GSI 17 (level, low) -> IRQ 17 -05:51:20,972 INFO kernel:mptbase: ioc0: Initiating bringup -05:51:20,990 INFO kernel:ioc0: LSI53C1030 B0: Capabilities={Initiator} -05:51:21,031 INFO kernel:scsi2 : ioc0: LSI53C1030 B0, FwRev=01032920h, Ports=1, MaxQ=128, IRQ=17 -05:51:21,061 NOTICE kernel:scsi 2:0:0:0: Direct-Access VMware Virtual disk 1.0 PQ: 0 ANSI: 2 -05:51:21,061 INFO kernel:scsi target2:0:0: Beginning Domain Validation -05:51:21,061 INFO kernel:scsi target2:0:0: Domain Validation skipping write tests -05:51:21,061 INFO kernel:scsi target2:0:0: Ending Domain Validation -05:51:21,061 INFO kernel:scsi target2:0:0: FAST-40 WIDE SCSI 80.0 MB/s ST (25 ns, offset 127) -05:51:21,061 NOTICE kernel:scsi 2:0:1:0: Direct-Access VMware Virtual disk 1.0 PQ: 0 ANSI: 2 -05:51:21,061 INFO kernel:scsi target2:0:1: Beginning Domain Validation -05:51:21,061 INFO kernel:scsi target2:0:1: Domain Validation skipping write tests -05:51:21,061 INFO kernel:scsi target2:0:1: Ending Domain Validation -05:51:21,061 INFO kernel:scsi target2:0:1: FAST-40 WIDE SCSI 80.0 MB/s ST (25 ns, offset 127) -05:51:21,088 WARNING kernel:sr0: scsi3-mmc drive: 1x/1x writer dvd-ram cd/rw xa/form2 cdda tray -05:51:21,088 INFO kernel:Uniform CD-ROM driver Revision: 3.20 -05:51:21,088 DEBUG kernel:sr 1:0:0:0: Attached scsi CD-ROM sr0 -05:51:21,098 INFO kernel:e1000: Intel(R) PRO/1000 Network Driver - version 7.3.21-k8-NAPI -05:51:21,098 INFO kernel:e1000: Copyright (c) 1999-2006 Intel Corporation. -05:51:21,098 DEBUG kernel: alloc irq_desc for 18 on node -1 -05:51:21,098 DEBUG kernel: alloc kstat_irqs on node -1 -05:51:21,098 INFO kernel:e1000 0000:02:00.0: PCI INT A -> GSI 18 (level, low) -> IRQ 18 -05:51:21,098 DEBUG kernel:e1000 0000:02:00.0: setting latency timer to 64 -05:51:21,447 INFO kernel:e1000 0000:02:00.0: eth0: (PCI:66MHz:32-bit) 00:0c:29:21:89:af -05:51:21,447 INFO kernel:e1000 0000:02:00.0: eth0: Intel(R) PRO/1000 Network Connection -05:51:21,447 DEBUG kernel: alloc irq_desc for 19 on node -1 -05:51:21,447 DEBUG kernel: alloc kstat_irqs on node -1 -05:51:21,447 INFO kernel:e1000 0000:02:01.0: PCI INT A -> GSI 19 (level, low) -> IRQ 19 -05:51:21,447 DEBUG kernel:e1000 0000:02:01.0: setting latency timer to 64 -05:51:21,793 INFO kernel:e1000 0000:02:01.0: eth1: (PCI:66MHz:32-bit) 00:0c:29:21:89:b9 -05:51:21,793 INFO kernel:e1000 0000:02:01.0: eth1: Intel(R) PRO/1000 Network Connection -05:51:21,793 DEBUG kernel: alloc irq_desc for 16 on node -1 -05:51:21,793 DEBUG kernel: alloc kstat_irqs on node -1 -05:51:21,793 INFO kernel:e1000 0000:02:02.0: PCI INT A -> GSI 16 (level, low) -> IRQ 16 -05:51:21,793 DEBUG kernel:e1000 0000:02:02.0: setting latency timer to 64 -05:51:22,142 INFO kernel:e1000 0000:02:02.0: eth2: (PCI:66MHz:32-bit) 00:0c:29:21:89:c3 -05:51:22,142 INFO kernel:e1000 0000:02:02.0: eth2: Intel(R) PRO/1000 Network Connection -05:51:22,142 INFO kernel:e1000 0000:02:03.0: PCI INT A -> GSI 17 (level, low) -> IRQ 17 -05:51:22,142 DEBUG kernel:e1000 0000:02:03.0: setting latency timer to 64 -05:51:22,485 INFO kernel:e1000 0000:02:03.0: eth3: (PCI:66MHz:32-bit) 00:0c:29:21:89:cd -05:51:22,485 INFO kernel:e1000 0000:02:03.0: eth3: Intel(R) PRO/1000 Network Connection -05:51:22,515 NOTICE kernel:sd 2:0:0:0: [sda] 33554432 512-byte logical blocks: (17.1 GB/16.0 GiB) -05:51:22,515 NOTICE kernel:sd 2:0:0:0: [sda] Write Protect is off -05:51:22,515 DEBUG kernel:sd 2:0:0:0: [sda] Mode Sense: 61 00 00 00 -05:51:22,515 NOTICE kernel:sd 2:0:0:0: [sda] Cache data unavailable -05:51:22,515 ERR kernel:sd 2:0:0:0: [sda] Assuming drive cache: write through -05:51:22,515 NOTICE kernel:sd 2:0:0:0: [sda] Cache data unavailable -05:51:22,515 ERR kernel:sd 2:0:0:0: [sda] Assuming drive cache: write through -05:51:22,516 INFO kernel: sda: -05:51:22,516 NOTICE kernel:sd 2:0:1:0: [sdb] 33554432 512-byte logical blocks: (17.1 GB/16.0 GiB) -05:51:22,516 NOTICE kernel:sd 2:0:1:0: [sdb] Write Protect is off -05:51:22,516 DEBUG kernel:sd 2:0:1:0: [sdb] Mode Sense: 61 00 00 00 -05:51:22,516 NOTICE kernel:sd 2:0:1:0: [sdb] Cache data unavailable -05:51:22,516 ERR kernel:sd 2:0:1:0: [sdb] Assuming drive cache: write through -05:51:22,516 NOTICE kernel:sd 2:0:1:0: [sdb] Cache data unavailable -05:51:22,516 ERR kernel:sd 2:0:1:0: [sdb] Assuming drive cache: write through -05:51:22,522 INFO kernel: sdb: -05:51:22,522 NOTICE kernel:sd 2:0:1:0: [sdb] Cache data unavailable -05:51:22,522 ERR kernel:sd 2:0:1:0: [sdb] Assuming drive cache: write through -05:51:22,522 NOTICE kernel:sd 2:0:1:0: [sdb] Attached SCSI disk -05:51:22,577 WARNING kernel: sda1 sda2 sda3 -05:51:22,598 NOTICE kernel:sd 2:0:0:0: [sda] Cache data unavailable -05:51:22,598 ERR kernel:sd 2:0:0:0: [sda] Assuming drive cache: write through -05:51:22,598 NOTICE kernel:sd 2:0:0:0: [sda] Attached SCSI disk -05:51:22,606 NOTICE kernel:sr 1:0:0:0: Attached scsi generic sg0 type 5 -05:51:22,606 NOTICE kernel:sd 2:0:0:0: Attached scsi generic sg1 type 0 -05:51:22,606 NOTICE kernel:sd 2:0:1:0: Attached scsi generic sg2 type 0 -05:51:28,012 ERR udevd-work: device node '/dev/rtc' already exists, link to '/dev/rtc0' will not overwrite it -05:51:46,181 INFO NetworkManager: NetworkManager (version 0.8.1-66.el6) is starting... -05:51:46,181 INFO NetworkManager: Read config file /etc/NetworkManager/NetworkManager.conf -05:51:46,183 INFO NetworkManager: trying to start the modem manager... -05:51:46,186 INFO NetworkManager: monitoring kernel firmware directory '/lib/firmware'. -05:51:46,186 INFO NetworkManager: Bonding/Bridging/VLAN support enabled -05:51:46,188 NOTICE NetworkManager: ifcfg-rh: Acquired D-Bus service com.redhat.ifcfgrh1 -05:51:46,188 INFO NetworkManager: Loaded plugin ifcfg-rh: (c) 2007 - 2008 Red Hat, Inc. To report bugs please use the NetworkManager mailing list. -05:51:46,188 INFO NetworkManager: Loaded plugin keyfile: (c) 2007 - 2008 Red Hat, Inc. To report bugs please use the NetworkManager mailing list. -05:51:46,188 NOTICE NetworkManager: ifcfg-rh: parsing /etc/sysconfig/network-scripts/ifcfg-eth3 ... -05:51:46,190 NOTICE NetworkManager: ifcfg-rh: read connection 'System eth3' -05:51:46,190 NOTICE NetworkManager: ifcfg-rh: parsing /etc/sysconfig/network-scripts/ifcfg-eth2 ... -05:51:46,190 NOTICE NetworkManager: ifcfg-rh: read connection 'System eth2' -05:51:46,190 NOTICE NetworkManager: ifcfg-rh: parsing /etc/sysconfig/network-scripts/ifcfg-eth1 ... -05:51:46,191 NOTICE NetworkManager: ifcfg-rh: read connection 'System eth1' -05:51:46,191 NOTICE NetworkManager: ifcfg-rh: parsing /etc/sysconfig/network-scripts/ifcfg-eth0 ... -05:51:46,192 NOTICE NetworkManager: ifcfg-rh: read connection 'System eth0' -05:51:46,192 WARNING NetworkManager: Can not read directory '/etc/NetworkManager/system-connections': Error opening directory '/etc/NetworkManager/system-connections': No such file or directory -05:51:46,194 INFO NetworkManager: WiFi enabled by radio killswitch; enabled by state file -05:51:46,194 INFO NetworkManager: WWAN enabled by radio killswitch; enabled by state file -05:51:46,194 INFO NetworkManager: WiMAX enabled by radio killswitch; enabled by state file -05:51:46,194 INFO NetworkManager: Networking is enabled by state file -05:51:46,212 INFO kernel:802.1Q VLAN Support v1.8 Ben Greear -05:51:46,212 INFO kernel:All bugs added by David S. Miller -05:51:46,217 INFO kernel:e1000: eth0 NIC Link is Up 1000 Mbps Full Duplex, Flow Control: None -05:51:46,218 INFO NetworkManager: (eth0): carrier is OFF -05:51:46,218 INFO NetworkManager: (eth0): new Ethernet device (driver: 'e1000' ifindex: 2) -05:51:46,218 INFO NetworkManager: (eth0): exported as /org/freedesktop/NetworkManager/Devices/0 -05:51:46,218 INFO NetworkManager: (eth0): now managed -05:51:46,218 INFO NetworkManager: (eth0): device state change: 1 -> 2 (reason 2) -05:51:46,218 INFO NetworkManager: (eth0): bringing up device. -05:51:46,221 INFO kernel:8021q: adding VLAN 0 to HW filter on device eth0 -05:51:46,222 INFO NetworkManager: (eth0): carrier now ON (device state 2) -05:51:46,222 INFO NetworkManager: (eth0): preparing device. -05:51:46,222 INFO NetworkManager: (eth0): deactivating device (reason: 2). -05:51:46,223 INFO NetworkManager: (eth1): carrier is OFF -05:51:46,224 INFO NetworkManager: (eth1): new Ethernet device (driver: 'e1000' ifindex: 3) -05:51:46,224 INFO NetworkManager: (eth1): exported as /org/freedesktop/NetworkManager/Devices/1 -05:51:46,224 INFO NetworkManager: (eth1): now managed -05:51:46,224 INFO NetworkManager: (eth1): device state change: 1 -> 2 (reason 2) -05:51:46,224 INFO NetworkManager: (eth1): bringing up device. -05:51:46,229 INFO kernel:e1000: eth1 NIC Link is Up 1000 Mbps Full Duplex, Flow Control: None -05:51:46,233 INFO kernel:8021q: adding VLAN 0 to HW filter on device eth1 -05:51:46,233 INFO NetworkManager: (eth1): carrier now ON (device state 2) -05:51:46,234 INFO NetworkManager: (eth1): preparing device. -05:51:46,234 INFO NetworkManager: (eth1): deactivating device (reason: 2). -05:51:46,235 INFO NetworkManager: (eth2): carrier is OFF -05:51:46,235 INFO NetworkManager: (eth2): new Ethernet device (driver: 'e1000' ifindex: 4) -05:51:46,235 INFO NetworkManager: (eth2): exported as /org/freedesktop/NetworkManager/Devices/2 -05:51:46,235 INFO NetworkManager: (eth2): now managed -05:51:46,235 INFO NetworkManager: (eth2): device state change: 1 -> 2 (reason 2) -05:51:46,235 INFO NetworkManager: (eth2): bringing up device. -05:51:46,240 INFO kernel:e1000: eth2 NIC Link is Up 1000 Mbps Full Duplex, Flow Control: None -05:51:46,244 INFO kernel:8021q: adding VLAN 0 to HW filter on device eth2 -05:51:46,245 INFO NetworkManager: (eth2): carrier now ON (device state 2) -05:51:46,245 INFO NetworkManager: (eth2): preparing device. -05:51:46,245 INFO NetworkManager: (eth2): deactivating device (reason: 2). -05:51:46,246 INFO NetworkManager: (eth3): carrier is OFF -05:51:46,247 INFO NetworkManager: (eth3): new Ethernet device (driver: 'e1000' ifindex: 5) -05:51:46,247 INFO NetworkManager: (eth3): exported as /org/freedesktop/NetworkManager/Devices/3 -05:51:46,247 INFO NetworkManager: (eth3): now managed -05:51:46,247 INFO NetworkManager: (eth3): device state change: 1 -> 2 (reason 2) -05:51:46,247 INFO NetworkManager: (eth3): bringing up device. -05:51:46,251 INFO kernel:e1000: eth3 NIC Link is Up 1000 Mbps Full Duplex, Flow Control: None -05:51:46,255 INFO kernel:8021q: adding VLAN 0 to HW filter on device eth3 -05:51:46,256 INFO NetworkManager: (eth3): carrier now ON (device state 2) -05:51:46,256 INFO NetworkManager: (eth3): preparing device. -05:51:46,256 INFO NetworkManager: (eth3): deactivating device (reason: 2). -05:51:46,258 INFO NetworkManager: (eth0): carrier now OFF (device state 2) -05:51:46,258 INFO NetworkManager: (eth0): carrier now ON (device state 2) -05:51:46,258 WARNING NetworkManager: (nm-device.c:4447):nm_device_queue_state: runtime check failed: (priv->queued_state.id == 0) -05:51:46,258 INFO NetworkManager: (eth1): carrier now OFF (device state 2) -05:51:46,259 INFO NetworkManager: (eth1): carrier now ON (device state 2) -05:51:46,259 WARNING NetworkManager: (nm-device.c:4447):nm_device_queue_state: runtime check failed: (priv->queued_state.id == 0) -05:51:46,259 INFO NetworkManager: (eth2): carrier now OFF (device state 2) -05:51:46,259 INFO NetworkManager: (eth2): carrier now ON (device state 2) -05:51:46,259 WARNING NetworkManager: (nm-device.c:4447):nm_device_queue_state: runtime check failed: (priv->queued_state.id == 0) -05:51:46,259 INFO NetworkManager: (eth3): carrier now OFF (device state 2) -05:51:46,259 INFO NetworkManager: (eth3): carrier now ON (device state 2) -05:51:46,259 WARNING NetworkManager: (nm-device.c:4447):nm_device_queue_state: runtime check failed: (priv->queued_state.id == 0) -05:51:46,260 INFO NetworkManager: Trying to start the supplicant... -05:51:46,261 INFO NetworkManager: (eth0): device state change: 2 -> 3 (reason 40) -05:51:46,261 INFO NetworkManager: (eth1): device state change: 2 -> 3 (reason 40) -05:51:46,261 INFO NetworkManager: (eth2): device state change: 2 -> 3 (reason 40) -05:51:46,262 INFO NetworkManager: (eth3): device state change: 2 -> 3 (reason 40) -05:51:46,268 INFO NetworkManager: wpa_supplicant started -05:51:47,181 WARNING NetworkManager: error requesting auth for org.freedesktop.NetworkManager.enable-disable-network: (26) Remote Exception invoking org.freedesktop.PolicyKit1.Authority.CheckAuthorization() on /org/freedesktop/PolicyKit1/Authority at name org.freedesktop.PolicyKit1: org.freedesktop.DBus.Error.Spawn.ExecFailed: Cannot launch daemon, file not found or permissions invalid -05:51:47,182 WARNING NetworkManager: error requesting auth for org.freedesktop.NetworkManager.sleep-wake: (26) Remote Exception invoking org.freedesktop.PolicyKit1.Authority.CheckAuthorization() on /org/freedesktop/PolicyKit1/Authority at name org.freedesktop.PolicyKit1: org.freedesktop.DBus.Error.Spawn.ExecFailed: Cannot launch daemon, file not found or permissions invalid -05:51:47,182 WARNING NetworkManager: error requesting auth for org.freedesktop.NetworkManager.enable-disable-wifi: (26) Remote Exception invoking org.freedesktop.PolicyKit1.Authority.CheckAuthorization() on /org/freedesktop/PolicyKit1/Authority at name org.freedesktop.PolicyKit1: org.freedesktop.DBus.Error.Spawn.ExecFailed: Cannot launch daemon, file not found or permissions invalid -05:51:47,182 WARNING NetworkManager: error requesting auth for org.freedesktop.NetworkManager.enable-disable-wwan: (26) Remote Exception invoking org.freedesktop.PolicyKit1.Authority.CheckAuthorization() on /org/freedesktop/PolicyKit1/Authority at name org.freedesktop.PolicyKit1: org.freedesktop.DBus.Error.Spawn.ExecFailed: Cannot launch daemon, file not found or permissions invalid -05:51:47,182 WARNING NetworkManager: error requesting auth for org.freedesktop.NetworkManager.use-user-connections: (26) Remote Exception invoking org.freedesktop.PolicyKit1.Authority.CheckAuthorization() on /org/freedesktop/PolicyKit1/Authority at name org.freedesktop.PolicyKit1: org.freedesktop.DBus.Error.Spawn.ExecFailed: Cannot launch daemon, file not found or permissions invalid -05:51:47,182 WARNING NetworkManager: error requesting auth for org.freedesktop.NetworkManager.network-control: (26) Remote Exception invoking org.freedesktop.PolicyKit1.Authority.CheckAuthorization() on /org/freedesktop/PolicyKit1/Authority at name org.freedesktop.PolicyKit1: org.freedesktop.DBus.Error.Spawn.ExecFailed: Cannot launch daemon, file not found or permissions invalid -05:51:47,182 WARNING NetworkManager: error requesting auth for org.freedesktop.network-manager-settings.system.wifi.share.open: (26) Remote Exception invoking org.freedesktop.PolicyKit1.Authority.CheckAuthorization() on /org/freedesktop/PolicyKit1/Authority at name org.freedesktop.PolicyKit1: org.freedesktop.DBus.Error.Spawn.ExecFailed: Cannot launch daemon, file not found or permissions invalid -05:51:47,183 WARNING NetworkManager: error requesting auth for org.freedesktop.network-manager-settings.system.wifi.share.protected: (26) Remote Exception invoking org.freedesktop.PolicyKit1.Authority.CheckAuthorization() on /org/freedesktop/PolicyKit1/Authority at name org.freedesktop.PolicyKit1: org.freedesktop.DBus.Error.Spawn.ExecFailed: Cannot launch daemon, file not found or permissions invalid -05:51:47,191 WARNING NetworkManager: error requesting auth for org.freedesktop.NetworkManager.enable-disable-network: (26) Remote Exception invoking org.freedesktop.PolicyKit1.Authority.CheckAuthorization() on /org/freedesktop/PolicyKit1/Authority at name org.freedesktop.PolicyKit1: org.freedesktop.DBus.Error.Spawn.ExecFailed: Cannot launch daemon, file not found or permissions invalid -05:51:47,191 WARNING NetworkManager: error requesting auth for org.freedesktop.NetworkManager.sleep-wake: (26) Remote Exception invoking org.freedesktop.PolicyKit1.Authority.CheckAuthorization() on /org/freedesktop/PolicyKit1/Authority at name org.freedesktop.PolicyKit1: org.freedesktop.DBus.Error.Spawn.ExecFailed: Cannot launch daemon, file not found or permissions invalid -05:51:47,191 WARNING NetworkManager: error requesting auth for org.freedesktop.NetworkManager.enable-disable-wifi: (26) Remote Exception invoking org.freedesktop.PolicyKit1.Authority.CheckAuthorization() on /org/freedesktop/PolicyKit1/Authority at name org.freedesktop.PolicyKit1: org.freedesktop.DBus.Error.Spawn.ExecFailed: Cannot launch daemon, file not found or permissions invalid -05:51:47,191 WARNING NetworkManager: error requesting auth for org.freedesktop.NetworkManager.enable-disable-wwan: (26) Remote Exception invoking org.freedesktop.PolicyKit1.Authority.CheckAuthorization() on /org/freedesktop/PolicyKit1/Authority at name org.freedesktop.PolicyKit1: org.freedesktop.DBus.Error.Spawn.ExecFailed: Cannot launch daemon, file not found or permissions invalid -05:51:47,191 WARNING NetworkManager: error requesting auth for org.freedesktop.NetworkManager.use-user-connections: (26) Remote Exception invoking org.freedesktop.PolicyKit1.Authority.CheckAuthorization() on /org/freedesktop/PolicyKit1/Authority at name org.freedesktop.PolicyKit1: org.freedesktop.DBus.Error.Spawn.ExecFailed: Cannot launch daemon, file not found or permissions invalid -05:51:47,191 WARNING NetworkManager: error requesting auth for org.freedesktop.NetworkManager.network-control: (26) Remote Exception invoking org.freedesktop.PolicyKit1.Authority.CheckAuthorization() on /org/freedesktop/PolicyKit1/Authority at name org.freedesktop.PolicyKit1: org.freedesktop.DBus.Error.Spawn.ExecFailed: Cannot launch daemon, file not found or permissions invalid -05:51:47,192 WARNING NetworkManager: error requesting auth for org.freedesktop.network-manager-settings.system.wifi.share.open: (26) Remote Exception invoking org.freedesktop.PolicyKit1.Authority.CheckAuthorization() on /org/freedesktop/PolicyKit1/Authority at name org.freedesktop.PolicyKit1: org.freedesktop.DBus.Error.Spawn.ExecFailed: Cannot launch daemon, file not found or permissions invalid -05:51:47,192 WARNING NetworkManager: error requesting auth for org.freedesktop.network-manager-settings.system.wifi.share.protected: (26) Remote Exception invoking org.freedesktop.PolicyKit1.Authority.CheckAuthorization() on /org/freedesktop/PolicyKit1/Authority at name org.freedesktop.PolicyKit1: org.freedesktop.DBus.Error.Spawn.ExecFailed: Cannot launch daemon, file not found or permissions invalid -05:51:47,200 WARNING NetworkManager: error requesting auth for org.freedesktop.NetworkManager.enable-disable-network: (26) Remote Exception invoking org.freedesktop.PolicyKit1.Authority.CheckAuthorization() on /org/freedesktop/PolicyKit1/Authority at name org.freedesktop.PolicyKit1: org.freedesktop.DBus.Error.Spawn.ExecFailed: Cannot launch daemon, file not found or permissions invalid -05:51:47,200 WARNING NetworkManager: error requesting auth for org.freedesktop.NetworkManager.sleep-wake: (26) Remote Exception invoking org.freedesktop.PolicyKit1.Authority.CheckAuthorization() on /org/freedesktop/PolicyKit1/Authority at name org.freedesktop.PolicyKit1: org.freedesktop.DBus.Error.Spawn.ExecFailed: Cannot launch daemon, file not found or permissions invalid -05:51:47,200 WARNING NetworkManager: error requesting auth for org.freedesktop.NetworkManager.enable-disable-wifi: (26) Remote Exception invoking org.freedesktop.PolicyKit1.Authority.CheckAuthorization() on /org/freedesktop/PolicyKit1/Authority at name org.freedesktop.PolicyKit1: org.freedesktop.DBus.Error.Spawn.ExecFailed: Cannot launch daemon, file not found or permissions invalid -05:51:47,200 WARNING NetworkManager: error requesting auth for org.freedesktop.NetworkManager.enable-disable-wwan: (26) Remote Exception invoking org.freedesktop.PolicyKit1.Authority.CheckAuthorization() on /org/freedesktop/PolicyKit1/Authority at name org.freedesktop.PolicyKit1: org.freedesktop.DBus.Error.Spawn.ExecFailed: Cannot launch daemon, file not found or permissions invalid -05:51:47,200 WARNING NetworkManager: error requesting auth for org.freedesktop.NetworkManager.use-user-connections: (26) Remote Exception invoking org.freedesktop.PolicyKit1.Authority.CheckAuthorization() on /org/freedesktop/PolicyKit1/Authority at name org.freedesktop.PolicyKit1: org.freedesktop.DBus.Error.Spawn.ExecFailed: Cannot launch daemon, file not found or permissions invalid -05:51:47,201 WARNING NetworkManager: error requesting auth for org.freedesktop.NetworkManager.network-control: (26) Remote Exception invoking org.freedesktop.PolicyKit1.Authority.CheckAuthorization() on /org/freedesktop/PolicyKit1/Authority at name org.freedesktop.PolicyKit1: org.freedesktop.DBus.Error.Spawn.ExecFailed: Cannot launch daemon, file not found or permissions invalid -05:51:47,201 WARNING NetworkManager: error requesting auth for org.freedesktop.network-manager-settings.system.wifi.share.open: (26) Remote Exception invoking org.freedesktop.PolicyKit1.Authority.CheckAuthorization() on /org/freedesktop/PolicyKit1/Authority at name org.freedesktop.PolicyKit1: org.freedesktop.DBus.Error.Spawn.ExecFailed: Cannot launch daemon, file not found or permissions invalid -05:51:47,201 WARNING NetworkManager: error requesting auth for org.freedesktop.network-manager-settings.system.wifi.share.protected: (26) Remote Exception invoking org.freedesktop.PolicyKit1.Authority.CheckAuthorization() on /org/freedesktop/PolicyKit1/Authority at name org.freedesktop.PolicyKit1: org.freedesktop.DBus.Error.Spawn.ExecFailed: Cannot launch daemon, file not found or permissions invalid -05:51:47,212 WARNING NetworkManager: error requesting auth for org.freedesktop.NetworkManager.enable-disable-network: (26) Remote Exception invoking org.freedesktop.PolicyKit1.Authority.CheckAuthorization() on /org/freedesktop/PolicyKit1/Authority at name org.freedesktop.PolicyKit1: org.freedesktop.DBus.Error.Spawn.ExecFailed: Cannot launch daemon, file not found or permissions invalid -05:51:47,212 WARNING NetworkManager: error requesting auth for org.freedesktop.NetworkManager.sleep-wake: (26) Remote Exception invoking org.freedesktop.PolicyKit1.Authority.CheckAuthorization() on /org/freedesktop/PolicyKit1/Authority at name org.freedesktop.PolicyKit1: org.freedesktop.DBus.Error.Spawn.ExecFailed: Cannot launch daemon, file not found or permissions invalid -05:51:47,212 WARNING NetworkManager: error requesting auth for org.freedesktop.NetworkManager.enable-disable-wifi: (26) Remote Exception invoking org.freedesktop.PolicyKit1.Authority.CheckAuthorization() on /org/freedesktop/PolicyKit1/Authority at name org.freedesktop.PolicyKit1: org.freedesktop.DBus.Error.Spawn.ExecFailed: Cannot launch daemon, file not found or permissions invalid -05:51:47,212 WARNING NetworkManager: error requesting auth for org.freedesktop.NetworkManager.enable-disable-wwan: (26) Remote Exception invoking org.freedesktop.PolicyKit1.Authority.CheckAuthorization() on /org/freedesktop/PolicyKit1/Authority at name org.freedesktop.PolicyKit1: org.freedesktop.DBus.Error.Spawn.ExecFailed: Cannot launch daemon, file not found or permissions invalid -05:51:47,212 WARNING NetworkManager: error requesting auth for org.freedesktop.NetworkManager.use-user-connections: (26) Remote Exception invoking org.freedesktop.PolicyKit1.Authority.CheckAuthorization() on /org/freedesktop/PolicyKit1/Authority at name org.freedesktop.PolicyKit1: org.freedesktop.DBus.Error.Spawn.ExecFailed: Cannot launch daemon, file not found or permissions invalid -05:51:47,212 WARNING NetworkManager: error requesting auth for org.freedesktop.NetworkManager.network-control: (26) Remote Exception invoking org.freedesktop.PolicyKit1.Authority.CheckAuthorization() on /org/freedesktop/PolicyKit1/Authority at name org.freedesktop.PolicyKit1: org.freedesktop.DBus.Error.Spawn.ExecFailed: Cannot launch daemon, file not found or permissions invalid -05:51:47,213 WARNING NetworkManager: error requesting auth for org.freedesktop.network-manager-settings.system.wifi.share.open: (26) Remote Exception invoking org.freedesktop.PolicyKit1.Authority.CheckAuthorization() on /org/freedesktop/PolicyKit1/Authority at name org.freedesktop.PolicyKit1: org.freedesktop.DBus.Error.Spawn.ExecFailed: Cannot launch daemon, file not found or permissions invalid -05:51:47,213 WARNING NetworkManager: error requesting auth for org.freedesktop.network-manager-settings.system.wifi.share.protected: (26) Remote Exception invoking org.freedesktop.PolicyKit1.Authority.CheckAuthorization() on /org/freedesktop/PolicyKit1/Authority at name org.freedesktop.PolicyKit1: org.freedesktop.DBus.Error.Spawn.ExecFailed: Cannot launch daemon, file not found or permissions invalid -05:51:48,220 NOTICE NetworkManager: ifcfg-rh: updating /etc/sysconfig/network-scripts/ifcfg-eth0 -05:51:48,223 INFO NetworkManager: Auto-activating connection 'System eth0'. -05:51:48,224 INFO NetworkManager: Activation (eth0) starting connection 'System eth0' -05:51:48,224 INFO NetworkManager: (eth0): device state change: 3 -> 4 (reason 0) -05:51:48,224 INFO NetworkManager: Activation (eth0) Stage 1 of 5 (Device Prepare) scheduled... -05:51:48,224 INFO NetworkManager: Activation (eth0) Stage 1 of 5 (Device Prepare) started... -05:51:48,224 INFO NetworkManager: Activation (eth0) Stage 2 of 5 (Device Configure) scheduled... -05:51:48,225 INFO NetworkManager: Activation (eth0) Stage 1 of 5 (Device Prepare) complete. -05:51:48,225 INFO NetworkManager: Activation (eth0) Stage 2 of 5 (Device Configure) starting... -05:51:48,225 INFO NetworkManager: (eth0): device state change: 4 -> 5 (reason 0) -05:51:48,225 INFO NetworkManager: Activation (eth0) Stage 2 of 5 (Device Configure) successful. -05:51:48,225 INFO NetworkManager: Activation (eth0) Stage 3 of 5 (IP Configure Start) scheduled. -05:51:48,225 INFO NetworkManager: Activation (eth0) Stage 2 of 5 (Device Configure) complete. -05:51:48,225 INFO NetworkManager: Activation (eth0) Stage 3 of 5 (IP Configure Start) started... -05:51:48,225 INFO NetworkManager: (eth0): device state change: 5 -> 7 (reason 0) -05:51:48,225 INFO NetworkManager: Activation (eth0) Beginning DHCPv4 transaction -05:51:48,228 INFO dhclient: Internet Systems Consortium DHCP Client 4.1.1-P1 -05:51:48,228 INFO NetworkManager: dhclient started with pid 670 -05:51:48,228 INFO NetworkManager: Activation (eth0) DHCPv4 will time out in 45 seconds -05:51:48,228 INFO NetworkManager: Activation (eth0) Stage 3 of 5 (IP Configure Start) complete. -05:51:48,228 INFO dhclient: Copyright 2004-2010 Internet Systems Consortium. -05:51:48,228 INFO dhclient: All rights reserved. -05:51:48,228 INFO dhclient: For info, please visit https://www.isc.org/software/dhcp/ -05:51:48,229 INFO dhclient: -05:51:48,232 INFO NetworkManager: (eth0): DHCPv4 state changed nbi -> preinit -05:51:48,238 INFO dhclient: Listening on LPF/eth0/00:0c:29:21:89:af -05:51:48,238 INFO dhclient: Sending on LPF/eth0/00:0c:29:21:89:af -05:51:48,238 INFO dhclient: Sending on Socket/fallback -05:51:48,238 INFO dhclient: DHCPDISCOVER on eth0 to 255.255.255.255 port 67 interval 7 (xid=0x4cbfa09c) -05:51:48,266 INFO dhclient: DHCPOFFER from 10.145.88.211 -05:51:48,267 INFO dhclient: DHCPREQUEST on eth0 to 255.255.255.255 port 67 (xid=0x4cbfa09c) -05:51:50,624 INFO dhclient: DHCPACK from 10.145.88.211 (xid=0x4cbfa09c) -05:51:50,627 INFO NetworkManager: (eth0): DHCPv4 state changed preinit -> bound -05:51:50,627 INFO NetworkManager: Activation (eth0) Stage 4 of 5 (IP4 Configure Get) scheduled... -05:51:50,627 INFO NetworkManager: Activation (eth0) Stage 4 of 5 (IP4 Configure Get) started... -05:51:50,627 INFO NetworkManager: address 10.145.88.106 -05:51:50,627 INFO NetworkManager: prefix 23 (255.255.254.0) -05:51:50,627 INFO NetworkManager: gateway 10.145.88.1 -05:51:50,627 INFO NetworkManager: hostname 'server1' -05:51:50,627 INFO NetworkManager: nameserver '10.145.88.211' -05:51:50,628 INFO NetworkManager: Activation (eth0) Stage 5 of 5 (IP Configure Commit) scheduled... -05:51:50,628 INFO NetworkManager: Activation (eth0) Stage 4 of 5 (IP4 Configure Get) complete. -05:51:50,628 INFO NetworkManager: Activation (eth0) Stage 5 of 5 (IP Configure Commit) started... -05:51:50,628 INFO dhclient: bound to 10.145.88.106 -- renewal in 10408 seconds. -05:51:51,629 INFO NetworkManager: (eth0): device state change: 7 -> 8 (reason 0) -05:51:51,629 INFO NetworkManager: Policy set 'System eth0' (eth0) as default for IPv4 routing and DNS. -05:51:51,630 INFO NetworkManager: Setting system hostname to 'server1' (from DHCPv4) -05:51:51,630 INFO NetworkManager: Activation (eth0) successful, device activated. -05:51:51,631 INFO NetworkManager: Activation (eth0) Stage 5 of 5 (IP Configure Commit) complete. -05:52:07,660 WARNING NetworkManager: error requesting auth for org.freedesktop.NetworkManager.enable-disable-network: (26) Remote Exception invoking org.freedesktop.PolicyKit1.Authority.CheckAuthorization() on /org/freedesktop/PolicyKit1/Authority at name org.freedesktop.PolicyKit1: org.freedesktop.DBus.Error.Spawn.ExecFailed: Cannot launch daemon, file not found or permissions invalid -05:52:07,660 WARNING NetworkManager: error requesting auth for org.freedesktop.NetworkManager.sleep-wake: (26) Remote Exception invoking org.freedesktop.PolicyKit1.Authority.CheckAuthorization() on /org/freedesktop/PolicyKit1/Authority at name org.freedesktop.PolicyKit1: org.freedesktop.DBus.Error.Spawn.ExecFailed: Cannot launch daemon, file not found or permissions invalid -05:52:07,660 WARNING NetworkManager: error requesting auth for org.freedesktop.NetworkManager.enable-disable-wifi: (26) Remote Exception invoking org.freedesktop.PolicyKit1.Authority.CheckAuthorization() on /org/freedesktop/PolicyKit1/Authority at name org.freedesktop.PolicyKit1: org.freedesktop.DBus.Error.Spawn.ExecFailed: Cannot launch daemon, file not found or permissions invalid -05:52:07,660 WARNING NetworkManager: error requesting auth for org.freedesktop.NetworkManager.enable-disable-wwan: (26) Remote Exception invoking org.freedesktop.PolicyKit1.Authority.CheckAuthorization() on /org/freedesktop/PolicyKit1/Authority at name org.freedesktop.PolicyKit1: org.freedesktop.DBus.Error.Spawn.ExecFailed: Cannot launch daemon, file not found or permissions invalid -05:52:07,660 WARNING NetworkManager: error requesting auth for org.freedesktop.NetworkManager.use-user-connections: (26) Remote Exception invoking org.freedesktop.PolicyKit1.Authority.CheckAuthorization() on /org/freedesktop/PolicyKit1/Authority at name org.freedesktop.PolicyKit1: org.freedesktop.DBus.Error.Spawn.ExecFailed: Cannot launch daemon, file not found or permissions invalid -05:52:07,660 WARNING NetworkManager: error requesting auth for org.freedesktop.NetworkManager.network-control: (26) Remote Exception invoking org.freedesktop.PolicyKit1.Authority.CheckAuthorization() on /org/freedesktop/PolicyKit1/Authority at name org.freedesktop.PolicyKit1: org.freedesktop.DBus.Error.Spawn.ExecFailed: Cannot launch daemon, file not found or permissions invalid -05:52:07,660 WARNING NetworkManager: error requesting auth for org.freedesktop.network-manager-settings.system.wifi.share.open: (26) Remote Exception invoking org.freedesktop.PolicyKit1.Authority.CheckAuthorization() on /org/freedesktop/PolicyKit1/Authority at name org.freedesktop.PolicyKit1: org.freedesktop.DBus.Error.Spawn.ExecFailed: Cannot launch daemon, file not found or permissions invalid -05:52:07,660 WARNING NetworkManager: error requesting auth for org.freedesktop.network-manager-settings.system.wifi.share.protected: (26) Remote Exception invoking org.freedesktop.PolicyKit1.Authority.CheckAuthorization() on /org/freedesktop/PolicyKit1/Authority at name org.freedesktop.PolicyKit1: org.freedesktop.DBus.Error.Spawn.ExecFailed: Cannot launch daemon, file not found or permissions invalid -05:52:47,362 NOTICE dbus-daemon: [system] Reloaded configuration -05:52:47,364 NOTICE dbus-daemon: [system] Reloaded configuration -05:52:47,512 DEBUG kernel:SELinux: 2048 avtab hash slots, 277800 rules. -05:52:47,588 DEBUG kernel:SELinux: 2048 avtab hash slots, 277800 rules. -05:52:48,083 DEBUG kernel:SELinux: 9 users, 12 roles, 3917 types, 217 bools, 1 sens, 1024 cats -05:52:48,083 DEBUG kernel:SELinux: 81 classes, 277800 rules -05:52:48,088 DEBUG kernel:SELinux: Completing initialization. -05:52:48,088 DEBUG kernel:SELinux: Setting up existing superblocks. -05:52:48,088 DEBUG kernel:SELinux: initialized (dev loop0, type squashfs), not configured for labeling -05:52:48,088 DEBUG kernel:SELinux: initialized (dev tmpfs, type tmpfs), uses transition SIDs -05:52:48,088 DEBUG kernel:SELinux: initialized (dev tmpfs, type tmpfs), uses transition SIDs -05:52:48,089 DEBUG kernel:SELinux: initialized (dev selinuxfs, type selinuxfs), uses genfs_contexts -05:52:48,089 DEBUG kernel:SELinux: initialized (dev mqueue, type mqueue), uses transition SIDs -05:52:48,089 DEBUG kernel:SELinux: initialized (dev hugetlbfs, type hugetlbfs), uses transition SIDs -05:52:48,089 DEBUG kernel:SELinux: initialized (dev devpts, type devpts), uses transition SIDs -05:52:48,089 DEBUG kernel:SELinux: initialized (dev inotifyfs, type inotifyfs), uses genfs_contexts -05:52:48,089 DEBUG kernel:SELinux: initialized (dev anon_inodefs, type anon_inodefs), uses genfs_contexts -05:52:48,089 DEBUG kernel:SELinux: initialized (dev pipefs, type pipefs), uses task SIDs -05:52:48,089 DEBUG kernel:SELinux: initialized (dev debugfs, type debugfs), uses genfs_contexts -05:52:48,090 DEBUG kernel:SELinux: initialized (dev sockfs, type sockfs), uses task SIDs -05:52:48,090 DEBUG kernel:SELinux: initialized (dev devtmpfs, type devtmpfs), uses transition SIDs -05:52:48,090 DEBUG kernel:SELinux: initialized (dev tmpfs, type tmpfs), uses transition SIDs -05:52:48,090 DEBUG kernel:SELinux: initialized (dev proc, type proc), uses genfs_contexts -05:52:48,090 DEBUG kernel:SELinux: initialized (dev bdev, type bdev), uses genfs_contexts -05:52:48,090 DEBUG kernel:SELinux: initialized (dev rootfs, type rootfs), uses genfs_contexts -05:52:48,090 DEBUG kernel:SELinux: initialized (dev sysfs, type sysfs), uses genfs_contexts -05:52:48,116 NOTICE kernel:type=1403 audit(1021096368.114:2): policy loaded auid=4294967295 ses=4294967295 -05:52:48,165 INFO kernel:md: raid0 personality registered for level 0 -05:52:48,172 INFO kernel:md: raid1 personality registered for level 1 -05:52:48,176 INFO kernel:async_tx: api initialized (async) -05:52:48,188 INFO kernel:xor: automatically using best checksumming function: generic_sse -05:52:48,191 INFO kernel: generic_sse: 9112.000 MB/sec -05:52:48,191 INFO kernel:xor: using function: generic_sse (9112.000 MB/sec) -05:52:48,212 WARNING kernel:raid6: sse2x1 5777 MB/s -05:52:48,229 WARNING kernel:raid6: sse2x2 7031 MB/s -05:52:48,247 WARNING kernel:raid6: sse2x4 7550 MB/s -05:52:48,247 WARNING kernel:raid6: using algorithm sse2x4 (7550 MB/s) -05:52:48,247 WARNING kernel:raid6: using ssse3x2 recovery algorithm -05:52:48,261 INFO kernel:md: raid6 personality registered for level 6 -05:52:48,261 INFO kernel:md: raid5 personality registered for level 5 -05:52:48,261 INFO kernel:md: raid4 personality registered for level 4 -05:52:48,273 INFO kernel:md: raid10 personality registered for level 10 -05:52:48,277 INFO kernel:md: linear personality registered for level -1 -05:52:48,290 INFO kernel:device-mapper: uevent: version 1.0.3 -05:52:48,291 INFO kernel:device-mapper: ioctl: 4.24.6-ioctl (2013-01-15) initialised: dm-devel@redhat.com -05:52:48,324 INFO kernel:device-mapper: multipath: version 1.5.0 loaded -05:52:48,328 INFO kernel:device-mapper: multipath round-robin: version 1.0.0 loaded -05:53:05,608 WARNING kernel:hpet1: lost 5 rtc interrupts -05:53:05,608 WARNING kernel:hpet1: lost 1 rtc interrupts -05:53:21,197 NOTICE kernel:sd 2:0:0:0: [sda] Cache data unavailable -05:53:21,197 ERR kernel:sd 2:0:0:0: [sda] Assuming drive cache: write through -05:53:21,238 INFO kernel: sda: sda1 sda2 -05:53:25,106 NOTICE kernel:sd 2:0:0:0: [sda] Cache data unavailable -05:53:25,106 ERR kernel:sd 2:0:0:0: [sda] Assuming drive cache: write through -05:53:25,117 INFO kernel: sda: sda1 -05:53:31,920 NOTICE kernel:sd 2:0:0:0: [sda] Cache data unavailable -05:53:31,920 ERR kernel:sd 2:0:0:0: [sda] Assuming drive cache: write through -05:53:31,962 INFO kernel: sda: -05:53:33,120 NOTICE kernel:sd 2:0:0:0: [sda] Cache data unavailable -05:53:33,120 ERR kernel:sd 2:0:0:0: [sda] Assuming drive cache: write through -05:53:33,120 INFO kernel: sda: sda1 -05:53:50,037 NOTICE kernel:sd 2:0:0:0: [sda] Cache data unavailable -05:53:50,037 ERR kernel:sd 2:0:0:0: [sda] Assuming drive cache: write through -05:53:50,037 INFO kernel: sda: sda1 sda2 -05:53:55,178 NOTICE kernel:sd 2:0:0:0: [sda] Cache data unavailable -05:53:55,178 ERR kernel:sd 2:0:0:0: [sda] Assuming drive cache: write through -05:53:55,211 INFO kernel: sda: sda1 sda2 sda3 -05:54:41,918 INFO kernel:Adding 3354616k swap on /dev/sda2. Priority:-1 extents:1 across:3354616k -05:54:42,441 INFO kernel:kjournald starting. Commit interval 5 seconds -05:54:42,489 INFO kernel:EXT3-fs (dm-0): using internal journal -05:54:42,489 INFO kernel:EXT3-fs (dm-0): mounted filesystem with ordered data mode -05:54:42,489 DEBUG kernel:SELinux: initialized (dev dm-0, type ext3), uses xattr -05:54:42,913 INFO kernel:kjournald starting. Commit interval 5 seconds -05:54:42,977 INFO kernel:EXT3-fs (sda1): using internal journal -05:54:42,977 INFO kernel:EXT3-fs (sda1): mounted filesystem with ordered data mode -05:54:42,977 DEBUG kernel:SELinux: initialized (dev sda1, type ext3), uses xattr -05:54:43,167 DEBUG kernel:SELinux: initialized (dev tmpfs, type tmpfs), uses transition SIDs -05:54:43,255 INFO kernel:kjournald starting. Commit interval 5 seconds -05:54:43,268 INFO kernel:EXT3-fs (dm-1): using internal journal -05:54:43,268 INFO kernel:EXT3-fs (dm-1): mounted filesystem with ordered data mode -05:54:43,268 DEBUG kernel:SELinux: initialized (dev dm-1, type ext3), uses xattr -05:54:43,657 INFO kernel:kjournald starting. Commit interval 5 seconds -05:54:43,719 INFO kernel:EXT3-fs (dm-2): using internal journal -05:54:43,719 INFO kernel:EXT3-fs (dm-2): mounted filesystem with ordered data mode -05:54:43,719 DEBUG kernel:SELinux: initialized (dev dm-2, type ext3), uses xattr -05:54:43,913 INFO kernel:kjournald starting. Commit interval 5 seconds -05:54:43,949 INFO kernel:EXT3-fs (dm-3): using internal journal -05:54:43,949 INFO kernel:EXT3-fs (dm-3): mounted filesystem with ordered data mode -05:54:43,949 DEBUG kernel:SELinux: initialized (dev dm-3, type ext3), uses xattr -05:55:08,095 DEBUG kernel:SELinux: initialized (dev usbfs, type usbfs), uses genfs_contexts -05:55:08,106 NOTICE NetworkManager: ifcfg-rh: updating /etc/sysconfig/network-scripts/ifcfg-eth3 -05:55:08,107 NOTICE NetworkManager: ifcfg-rh: updating /etc/sysconfig/network-scripts/ifcfg-eth2 -05:55:08,109 NOTICE NetworkManager: ifcfg-rh: updating /etc/sysconfig/network-scripts/ifcfg-eth1 -05:55:09,125 NOTICE NetworkManager: ifcfg-rh: updating /etc/sysconfig/network-scripts/ifcfg-eth3 -05:55:09,126 NOTICE NetworkManager: ifcfg-rh: updating /etc/sysconfig/network-scripts/ifcfg-eth2 -05:55:09,127 NOTICE NetworkManager: ifcfg-rh: updating /etc/sysconfig/network-scripts/ifcfg-eth1 -05:55:09,128 NOTICE NetworkManager: ifcfg-rh: updating /etc/sysconfig/network-scripts/ifcfg-eth0 -05:59:16,883 ERR kernel:INFO: task flush-253:0:1525 blocked for more than 120 seconds. -05:59:16,883 ERR kernel: Not tainted 2.6.32-431.el6.x86_64 #1 -05:59:16,883 ERR kernel:"echo 0 > /proc/sys/kernel/hung_task_timeout_secs" disables this message. -05:59:16,883 INFO kernel:flush-253:0 D 0000000000000000 0 1525 2 0x00000080 -05:59:16,883 WARNING kernel: ffff8800592df6e0 0000000000000046 0000000000000000 ffff880079226080 -05:59:16,883 WARNING kernel: 0000000000000001 ffff880064ed8e40 ffff880079226080 ffff880079269dd0 -05:59:16,883 WARNING kernel: ffff880079226638 ffff8800592dffd8 000000000000fbc8 ffff880079226638 -05:59:16,883 WARNING kernel:Call Trace: -05:59:16,883 WARNING kernel: [] io_schedule+0x73/0xc0 -05:59:16,883 WARNING kernel: [] get_request_wait+0x108/0x1d0 -05:59:16,883 WARNING kernel: [] ? autoremove_wake_function+0x0/0x40 -05:59:16,883 WARNING kernel: [] ? elv_merge+0x17e/0x1c0 -05:59:16,883 WARNING kernel: [] blk_queue_bio+0x99/0x620 -05:59:16,883 WARNING kernel: [] generic_make_request+0x240/0x5a0 -05:59:16,883 WARNING kernel: [] ? mempool_alloc_slab+0x15/0x20 -05:59:16,883 WARNING kernel: [] submit_bio+0x70/0x120 -05:59:16,883 WARNING kernel: [] submit_bh+0x11d/0x1f0 -05:59:16,883 WARNING kernel: [] __block_write_full_page+0x1c8/0x330 -05:59:16,883 WARNING kernel: [] ? end_buffer_async_write+0x0/0x190 -05:59:16,883 WARNING kernel: [] ? blkdev_get_block+0x0/0x20 -05:59:16,883 WARNING kernel: [] ? blkdev_get_block+0x0/0x20 -05:59:16,883 WARNING kernel: [] block_write_full_page_endio+0xe0/0x120 -05:59:16,883 WARNING kernel: [] ? find_get_pages_tag+0x40/0x130 -05:59:16,883 WARNING kernel: [] block_write_full_page+0x15/0x20 -05:59:16,883 WARNING kernel: [] blkdev_writepage+0x18/0x20 -05:59:16,883 WARNING kernel: [] __writepage+0x17/0x40 -05:59:16,883 WARNING kernel: [] write_cache_pages+0x1fd/0x4c0 -05:59:16,883 WARNING kernel: [] ? __writepage+0x0/0x40 -05:59:16,883 WARNING kernel: [] generic_writepages+0x24/0x30 -05:59:16,883 WARNING kernel: [] do_writepages+0x21/0x40 -05:59:16,883 WARNING kernel: [] writeback_single_inode+0xdd/0x290 -05:59:16,883 WARNING kernel: [] writeback_sb_inodes+0xbd/0x170 -05:59:16,883 WARNING kernel: [] writeback_inodes_wb+0xab/0x1b0 -05:59:16,883 WARNING kernel: [] wb_writeback+0x2f3/0x410 -05:59:16,883 WARNING kernel: [] ? thread_return+0x4e/0x76e -05:59:16,883 WARNING kernel: [] ? del_timer_sync+0x22/0x30 -05:59:16,883 WARNING kernel: [] wb_do_writeback+0x1a5/0x240 -05:59:16,883 WARNING kernel: [] bdi_writeback_task+0x63/0x1b0 -05:59:16,883 WARNING kernel: [] ? bit_waitqueue+0x17/0xd0 -05:59:16,883 WARNING kernel: [] ? bdi_start_fn+0x0/0x100 -05:59:16,883 WARNING kernel: [] bdi_start_fn+0x86/0x100 -05:59:16,883 WARNING kernel: [] ? bdi_start_fn+0x0/0x100 -05:59:16,883 WARNING kernel: [] kthread+0x96/0xa0 -05:59:16,883 WARNING kernel: [] child_rip+0xa/0x20 -05:59:16,883 WARNING kernel: [] ? kthread+0x0/0xa0 -05:59:16,883 WARNING kernel: [] ? child_rip+0x0/0x20 -05:59:16,883 ERR kernel:INFO: task flush-253:3:1622 blocked for more than 120 seconds. -05:59:16,883 ERR kernel: Not tainted 2.6.32-431.el6.x86_64 #1 -05:59:16,883 ERR kernel:"echo 0 > /proc/sys/kernel/hung_task_timeout_secs" disables this message. -05:59:16,883 INFO kernel:flush-253:3 D 0000000000000001 0 1622 2 0x00000080 -05:59:16,883 WARNING kernel: ffff88005a5636e0 0000000000000046 0000000000000000 ffff8800790e6ae0 -05:59:16,883 WARNING kernel: 0000000000000001 ffff8800615bc080 ffff8800790e6ae0 ffff880079269dd0 -05:59:16,883 WARNING kernel: ffff8800790e7098 ffff88005a563fd8 000000000000fbc8 ffff8800790e7098 -05:59:16,883 WARNING kernel:Call Trace: -05:59:16,883 WARNING kernel: [] io_schedule+0x73/0xc0 -05:59:16,883 WARNING kernel: [] get_request_wait+0x108/0x1d0 -05:59:16,883 WARNING kernel: [] ? autoremove_wake_function+0x0/0x40 -05:59:16,883 WARNING kernel: [] ? elv_merge+0x17e/0x1c0 -05:59:16,883 WARNING kernel: [] blk_queue_bio+0x99/0x620 -05:59:16,883 WARNING kernel: [] ? read_tsc+0x9/0x20 -05:59:16,883 WARNING kernel: [] generic_make_request+0x240/0x5a0 -05:59:16,883 WARNING kernel: [] ? mempool_alloc_slab+0x15/0x20 -05:59:16,883 WARNING kernel: [] ? __dec_zone_page_state+0x2e/0x30 -05:59:16,883 WARNING kernel: [] submit_bio+0x70/0x120 -05:59:16,883 WARNING kernel: [] submit_bh+0x11d/0x1f0 -05:59:16,883 WARNING kernel: [] __block_write_full_page+0x1c8/0x330 -05:59:16,883 WARNING kernel: [] ? end_buffer_async_write+0x0/0x190 -05:59:16,883 WARNING kernel: [] ? blkdev_get_block+0x0/0x20 -05:59:16,883 WARNING kernel: [] ? blkdev_get_block+0x0/0x20 -05:59:16,883 WARNING kernel: [] block_write_full_page_endio+0xe0/0x120 -05:59:16,883 WARNING kernel: [] ? find_get_pages_tag+0x40/0x130 -05:59:16,883 WARNING kernel: [] block_write_full_page+0x15/0x20 -05:59:16,883 WARNING kernel: [] blkdev_writepage+0x18/0x20 -05:59:16,883 WARNING kernel: [] __writepage+0x17/0x40 -05:59:16,883 WARNING kernel: [] write_cache_pages+0x1fd/0x4c0 -05:59:16,883 WARNING kernel: [] ? __writepage+0x0/0x40 -05:59:16,883 WARNING kernel: [] generic_writepages+0x24/0x30 -05:59:16,883 WARNING kernel: [] do_writepages+0x21/0x40 -05:59:16,883 WARNING kernel: [] writeback_single_inode+0xdd/0x290 -05:59:16,883 WARNING kernel: [] writeback_sb_inodes+0xbd/0x170 -05:59:16,883 WARNING kernel: [] writeback_inodes_wb+0xab/0x1b0 -05:59:16,883 WARNING kernel: [] wb_writeback+0x2f3/0x410 -05:59:16,883 WARNING kernel: [] ? thread_return+0x4e/0x76e -05:59:16,883 WARNING kernel: [] ? del_timer_sync+0x22/0x30 -05:59:16,883 WARNING kernel: [] wb_do_writeback+0x1a5/0x240 -05:59:16,883 WARNING kernel: [] bdi_writeback_task+0x63/0x1b0 -05:59:16,883 WARNING kernel: [] ? bit_waitqueue+0x17/0xd0 -05:59:16,883 WARNING kernel: [] ? bdi_start_fn+0x0/0x100 -05:59:16,883 WARNING kernel: [] bdi_start_fn+0x86/0x100 -05:59:16,883 WARNING kernel: [] ? bdi_start_fn+0x0/0x100 -05:59:16,883 WARNING kernel: [] kthread+0x96/0xa0 -05:59:16,883 WARNING kernel: [] child_rip+0xa/0x20 -05:59:16,883 WARNING kernel: [] ? kthread+0x0/0xa0 -05:59:16,883 WARNING kernel: [] ? child_rip+0x0/0x20 -06:11:26,657 DEBUG kernel:SELinux: 2048 avtab hash slots, 277800 rules. -06:11:26,705 DEBUG kernel:SELinux: 2048 avtab hash slots, 277800 rules. -06:11:27,220 DEBUG kernel:SELinux: 9 users, 12 roles, 3917 types, 217 bools, 1 sens, 1024 cats -06:11:27,220 DEBUG kernel:SELinux: 81 classes, 277800 rules diff --git a/compass/tests/actions/update_progress/data/test2/anamon/checkpoint_3/server2.1/anaconda.log.template b/compass/tests/actions/update_progress/data/test2/anamon/checkpoint_3/server2.1/anaconda.log.template deleted file mode 100644 index 0e91936e..00000000 --- a/compass/tests/actions/update_progress/data/test2/anamon/checkpoint_3/server2.1/anaconda.log.template +++ /dev/null @@ -1,280 +0,0 @@ -05:50:22,531 INFO : kernel command line: initrd=/images/CentOS-6.5-x86_64/initrd.img ksdevice=bootif lang= kssendmac text ks=http://10.145.88.211/cblr/svc/op/ks/system/server2.1 BOOT_IMAGE=/images/CentOS-6.5-x86_64/vmlinuz BOOTIF=01-00-0c-29-5c-6a-b8 - -05:50:22,531 INFO : text mode forced from cmdline -05:50:22,531 DEBUG : readNetInfo /tmp/s390net not found, early return -05:50:22,531 INFO : anaconda version 13.21.215 on x86_64 starting -05:50:22,649 DEBUG : Saving module ipv6 -05:50:22,649 DEBUG : Saving module iscsi_ibft -05:50:22,649 DEBUG : Saving module iscsi_boot_sysfs -05:50:22,649 DEBUG : Saving module pcspkr -05:50:22,649 DEBUG : Saving module edd -05:50:22,649 DEBUG : Saving module floppy -05:50:22,649 DEBUG : Saving module iscsi_tcp -05:50:22,649 DEBUG : Saving module libiscsi_tcp -05:50:22,649 DEBUG : Saving module libiscsi -05:50:22,649 DEBUG : Saving module scsi_transport_iscsi -05:50:22,649 DEBUG : Saving module squashfs -05:50:22,649 DEBUG : Saving module cramfs -05:50:22,649 DEBUG : probing buses -05:50:22,673 DEBUG : waiting for hardware to initialize -05:50:28,619 DEBUG : probing buses -05:50:28,644 DEBUG : waiting for hardware to initialize -05:50:32,015 INFO : getting kickstart file -05:50:32,022 INFO : eth0 has link, using it -05:50:32,033 INFO : doing kickstart... setting it up -05:50:32,034 DEBUG : activating device eth0 -05:50:40,048 INFO : wait_for_iface_activation (2502): device eth0 activated -05:50:40,048 INFO : file location: http://10.145.88.211/cblr/svc/op/ks/system/server2.1 -05:50:40,049 INFO : transferring http://10.145.88.211/cblr/svc/op/ks/system/server2.1 -05:50:40,134 INFO : setting up kickstart -05:50:40,134 INFO : kickstart forcing text mode -05:50:40,134 INFO : kickstartFromUrl -05:50:40,134 INFO : results of url ks, url http://10.145.88.211/cblr/links/CentOS-6.5-x86_64 -05:50:40,135 INFO : trying to mount CD device /dev/sr0 on /mnt/stage2 -05:50:40,137 INFO : drive status is CDS_TRAY_OPEN -05:50:40,137 ERROR : Drive tray reports open when it should be closed -05:50:55,155 INFO : no stage2= given, assuming http://10.145.88.211/cblr/links/CentOS-6.5-x86_64/images/install.img -05:50:55,156 DEBUG : going to set language to en_US.UTF-8 -05:50:55,156 INFO : setting language to en_US.UTF-8 -05:50:55,169 INFO : starting STEP_METHOD -05:50:55,169 DEBUG : loaderData->method is set, adding skipMethodDialog -05:50:55,169 DEBUG : skipMethodDialog is set -05:50:55,176 INFO : starting STEP_STAGE2 -05:50:55,176 INFO : URL_STAGE_MAIN: url is http://10.145.88.211/cblr/links/CentOS-6.5-x86_64/images/install.img -05:50:55,176 INFO : transferring http://10.145.88.211/cblr/links/CentOS-6.5-x86_64/images/updates.img -05:50:56,174 ERROR : failed to mount loopback device /dev/loop7 on /tmp/update-disk as /tmp/updates-disk.img: (null) -05:50:56,175 ERROR : Error mounting /dev/loop7 on /tmp/update-disk: No such file or directory -05:50:56,175 INFO : transferring http://10.145.88.211/cblr/links/CentOS-6.5-x86_64/images/product.img -05:50:57,459 ERROR : Error downloading http://10.145.88.211/cblr/links/CentOS-6.5-x86_64/images/product.img: HTTP response code said error -05:50:57,459 INFO : transferring http://10.145.88.211/cblr/links/CentOS-6.5-x86_64/images/install.img -05:51:46,964 INFO : mounted loopback device /mnt/runtime on /dev/loop0 as /tmp/install.img -05:51:46,964 INFO : got stage2 at url http://10.145.88.211/cblr/links/CentOS-6.5-x86_64/images/install.img -05:51:47,009 INFO : Loading SELinux policy -05:51:47,753 INFO : getting ready to spawn shell now -05:51:47,973 INFO : Running anaconda script /usr/bin/anaconda -05:51:52,842 INFO : CentOS Linux is the highest priority installclass, using it -05:51:52,887 WARNING : /usr/lib/python2.6/site-packages/pykickstart/parser.py:713: DeprecationWarning: Script does not end with %end. This syntax has been deprecated. It may be removed from future releases, which will result in a fatal error from kickstart. Please modify your kickstart file to use this updated syntax. - warnings.warn(_("%s does not end with %%end. This syntax has been deprecated. It may be removed from future releases, which will result in a fatal error from kickstart. Please modify your kickstart file to use this updated syntax.") % _("Script"), DeprecationWarning) - -05:51:52,888 INFO : Running kickstart %%pre script(s) -05:51:52,888 WARNING : '/bin/sh' specified as full path -05:51:54,265 INFO : All kickstart %%pre script(s) have been run -05:51:54,314 INFO : ISCSID is /usr/sbin/iscsid -05:51:54,314 INFO : no initiator set -05:51:54,416 WARNING : '/usr/libexec/fcoe/fcoe_edd.sh' specified as full path -05:51:54,425 INFO : No FCoE EDD info found: No FCoE boot disk information is found in EDD! - -05:51:54,425 INFO : no /etc/zfcp.conf; not configuring zfcp -05:51:59,033 INFO : created new libuser.conf at /tmp/libuser.KyLOeb with instPath="/mnt/sysimage" -05:51:59,033 INFO : anaconda called with cmdline = ['/usr/bin/anaconda', '--stage2', 'http://10.145.88.211/cblr/links/CentOS-6.5-x86_64/images/install.img', '--kickstart', '/tmp/ks.cfg', '-T', '--selinux', '--lang', 'en_US', '--keymap', 'us', '--repo', 'http://10.145.88.211/cblr/links/CentOS-6.5-x86_64'] -05:51:59,033 INFO : Display mode = t -05:51:59,034 INFO : Default encoding = utf-8 -05:51:59,193 INFO : Detected 2016M of memory -05:51:59,193 INFO : Swap attempt of 4032M -05:51:59,528 INFO : ISCSID is /usr/sbin/iscsid -05:51:59,528 INFO : no initiator set -05:52:00,372 INFO : setting installation environment hostname to server2 -05:52:00,415 WARNING : Timezone US/Pacific set in kickstart is not valid. -05:52:00,541 INFO : Detected 2016M of memory -05:52:00,541 INFO : Suggested swap size (4032 M) exceeds 10 % of disk space, using 10 % of disk space (3276 M) instead. -05:52:00,541 INFO : Swap attempt of 3276M -05:52:00,698 WARNING : step installtype does not exist -05:52:00,699 WARNING : step confirminstall does not exist -05:52:00,699 WARNING : step complete does not exist -05:52:00,699 WARNING : step complete does not exist -05:52:00,699 WARNING : step complete does not exist -05:52:00,699 WARNING : step complete does not exist -05:52:00,700 WARNING : step complete does not exist -05:52:00,700 WARNING : step complete does not exist -05:52:00,700 WARNING : step complete does not exist -05:52:00,700 WARNING : step complete does not exist -05:52:00,700 WARNING : step complete does not exist -05:52:00,700 WARNING : step complete does not exist -05:52:00,701 WARNING : step complete does not exist -05:52:00,701 WARNING : step complete does not exist -05:52:00,701 WARNING : step complete does not exist -05:52:00,701 WARNING : step complete does not exist -05:52:00,701 WARNING : step complete does not exist -05:52:00,702 INFO : moving (1) to step setuptime -05:52:00,702 DEBUG : setuptime is a direct step -22:52:00,703 WARNING : '/usr/sbin/hwclock' specified as full path -22:52:02,003 INFO : leaving (1) step setuptime -22:52:02,003 INFO : moving (1) to step autopartitionexecute -22:52:02,003 DEBUG : autopartitionexecute is a direct step -22:52:02,141 INFO : leaving (1) step autopartitionexecute -22:52:02,141 INFO : moving (1) to step storagedone -22:52:02,141 DEBUG : storagedone is a direct step -22:52:02,142 INFO : leaving (1) step storagedone -22:52:02,142 INFO : moving (1) to step enablefilesystems -22:52:02,142 DEBUG : enablefilesystems is a direct step -22:52:08,928 DEBUG : notifying kernel of 'change' event on device /sys/class/block/sda1 -22:52:12,407 DEBUG : notifying kernel of 'change' event on device /sys/class/block/sda3 -22:52:25,536 DEBUG : notifying kernel of 'change' event on device /sys/class/block/dm-0 -22:52:30,102 DEBUG : notifying kernel of 'change' event on device /sys/class/block/dm-1 -22:52:35,181 DEBUG : notifying kernel of 'change' event on device /sys/class/block/dm-2 -22:52:40,809 DEBUG : notifying kernel of 'change' event on device /sys/class/block/dm-3 -22:52:44,576 INFO : failed to set SELinux context for /mnt/sysimage: [Errno 95] Operation not supported -22:52:44,576 DEBUG : isys.py:mount()- going to mount /dev/mapper/server2-rootvol on /mnt/sysimage as ext3 with options defaults -22:52:45,082 DEBUG : isys.py:mount()- going to mount /dev/sda1 on /mnt/sysimage/boot as ext3 with options defaults -22:52:45,230 DEBUG : isys.py:mount()- going to mount //dev on /mnt/sysimage/dev as bind with options defaults,bind -22:52:45,240 DEBUG : isys.py:mount()- going to mount devpts on /mnt/sysimage/dev/pts as devpts with options gid=5,mode=620 -22:52:45,247 DEBUG : isys.py:mount()- going to mount tmpfs on /mnt/sysimage/dev/shm as tmpfs with options defaults -22:52:45,333 DEBUG : isys.py:mount()- going to mount /dev/mapper/server2-homevol on /mnt/sysimage/home as ext3 with options defaults -22:52:45,482 INFO : failed to get default SELinux context for /proc: [Errno 2] No such file or directory -22:52:45,483 DEBUG : isys.py:mount()- going to mount proc on /mnt/sysimage/proc as proc with options defaults -22:52:45,487 INFO : failed to get default SELinux context for /proc: [Errno 2] No such file or directory -22:52:45,534 DEBUG : isys.py:mount()- going to mount sysfs on /mnt/sysimage/sys as sysfs with options defaults -22:52:45,571 DEBUG : isys.py:mount()- going to mount /dev/mapper/server2-tmpvol on /mnt/sysimage/tmp as ext3 with options defaults -22:52:45,795 DEBUG : isys.py:mount()- going to mount /dev/mapper/server2-varvol on /mnt/sysimage/var as ext3 with options defaults -22:52:45,955 INFO : leaving (1) step enablefilesystems -22:52:45,955 INFO : moving (1) to step bootloadersetup -22:52:45,956 DEBUG : bootloadersetup is a direct step -22:52:45,960 INFO : leaving (1) step bootloadersetup -22:52:45,960 INFO : moving (1) to step reposetup -22:52:45,960 DEBUG : reposetup is a direct step -22:52:47,076 ERROR : Error downloading treeinfo file: [Errno 14] PYCURL ERROR 22 - "The requested URL returned error: 404 Not Found" -22:52:47,077 INFO : added repository ppa_repo with URL http://10.145.88.211:80/cobbler/repo_mirror/ppa_repo/ -22:52:47,296 DEBUG : Grabbing http://10.145.88.211/cblr/links/CentOS-6.5-x86_64/repodata/repomd.xml -22:52:47,358 DEBUG : Grabbing http://10.145.88.211/cblr/links/CentOS-6.5-x86_64/repodata/0e371b19e547b9d7a7e8acc4b8c0c7c074509d33653cfaef9e8f4fd1d62d95de-primary.sqlite.bz2 -22:52:47,499 DEBUG : Grabbing http://10.145.88.211/cblr/links/CentOS-6.5-x86_64/repodata/34bae2d3c9c78e04ed2429923bc095005af1b166d1a354422c4c04274bae0f59-c6-minimal-x86_64.xml -22:52:47,629 INFO : leaving (1) step reposetup -22:52:47,629 INFO : moving (1) to step basepkgsel -22:52:47,629 DEBUG : basepkgsel is a direct step -22:52:47,645 WARNING : not adding Base group -22:52:48,052 INFO : leaving (1) step basepkgsel -22:52:48,053 INFO : moving (1) to step postselection -22:52:48,053 DEBUG : postselection is a direct step -22:52:48,056 INFO : selected kernel package for kernel -22:52:48,521 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/fs/ext3/ext3.ko.gz -22:52:48,521 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/fs/jbd/jbd.ko.gz -22:52:48,521 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/fs/mbcache.ko.gz -22:52:48,521 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/scsi/fcoe/fcoe.ko.gz -22:52:48,521 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/scsi/fcoe/libfcoe.ko.gz -22:52:48,521 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/scsi/libfc/libfc.ko.gz -22:52:48,521 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/scsi/scsi_transport_fc.ko.gz -22:52:48,521 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/scsi/scsi_tgt.ko.gz -22:52:48,521 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/crypto/xts.ko.gz -22:52:48,521 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/crypto/lrw.ko.gz -22:52:48,522 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/crypto/gf128mul.ko.gz -22:52:48,522 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/crypto/sha256_generic.ko.gz -22:52:48,522 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/crypto/cbc.ko.gz -22:52:48,522 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/md/dm-raid.ko.gz -22:52:48,522 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/md/dm-crypt.ko.gz -22:52:48,522 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/md/dm-round-robin.ko.gz -22:52:48,522 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/md/dm-multipath.ko.gz -22:52:48,522 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/md/dm-snapshot.ko.gz -22:52:48,522 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/md/dm-mirror.ko.gz -22:52:48,522 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/md/dm-region-hash.ko.gz -22:52:48,523 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/md/dm-log.ko.gz -22:52:48,523 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/md/dm-zero.ko.gz -22:52:48,523 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/md/dm-mod.ko.gz -22:52:48,523 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/md/linear.ko.gz -22:52:48,523 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/md/raid10.ko.gz -22:52:48,523 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/md/raid456.ko.gz -22:52:48,523 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/crypto/async_tx/async_raid6_recov.ko.gz -22:52:48,523 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/crypto/async_tx/async_pq.ko.gz -22:52:48,523 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/lib/raid6/raid6_pq.ko.gz -22:52:48,523 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/crypto/async_tx/async_xor.ko.gz -22:52:48,523 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/crypto/xor.ko.gz -22:52:48,524 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/crypto/async_tx/async_memcpy.ko.gz -22:52:48,524 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/crypto/async_tx/async_tx.ko.gz -22:52:48,524 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/md/raid1.ko.gz -22:52:48,524 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/md/raid0.ko.gz -22:52:48,524 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/net/8021q/8021q.ko.gz -22:52:48,524 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/net/802/garp.ko.gz -22:52:48,524 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/net/802/stp.ko.gz -22:52:48,524 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/net/llc/llc.ko.gz -22:52:48,524 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/infiniband/hw/mlx4/mlx4_ib.ko.gz -22:52:48,524 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/net/mlx4/mlx4_en.ko.gz -22:52:48,524 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/net/mlx4/mlx4_core.ko.gz -22:52:48,525 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/infiniband/ulp/ipoib/ib_ipoib.ko.gz -22:52:48,525 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/infiniband/core/ib_cm.ko.gz -22:52:48,525 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/infiniband/core/ib_sa.ko.gz -22:52:48,525 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/infiniband/core/ib_mad.ko.gz -22:52:48,525 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/infiniband/core/ib_core.ko.gz -22:52:48,525 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/scsi/sg.ko.gz -22:52:48,525 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/scsi/sd_mod.ko.gz -22:52:48,525 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/lib/crc-t10dif.ko.gz -22:52:48,525 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/net/e1000/e1000.ko.gz -22:52:48,525 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/scsi/sr_mod.ko.gz -22:52:48,526 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/cdrom/cdrom.ko.gz -22:52:48,526 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/misc/vmware_balloon.ko.gz -22:52:48,526 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/message/fusion/mptspi.ko.gz -22:52:48,526 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/message/fusion/mptscsih.ko.gz -22:52:48,526 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/message/fusion/mptbase.ko.gz -22:52:48,526 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/scsi/scsi_transport_spi.ko.gz -22:52:48,526 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/ata/pata_acpi.ko.gz -22:52:48,526 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/ata/ata_generic.ko.gz -22:52:48,526 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/ata/ata_piix.ko.gz -22:52:48,526 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/net/ipv6/ipv6.ko.gz -22:52:48,526 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/firmware/iscsi_ibft.ko.gz -22:52:48,527 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/scsi/iscsi_boot_sysfs.ko.gz -22:52:48,527 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/input/misc/pcspkr.ko.gz -22:52:48,527 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/firmware/edd.ko.gz -22:52:48,527 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/block/floppy.ko.gz -22:52:48,527 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/scsi/iscsi_tcp.ko.gz -22:52:48,527 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/scsi/libiscsi_tcp.ko.gz -22:52:48,527 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/scsi/libiscsi.ko.gz -22:52:48,527 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/scsi/scsi_transport_iscsi.ko.gz -22:52:48,527 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/fs/squashfs/squashfs.ko.gz -22:52:48,527 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/fs/cramfs/cramfs.ko.gz -22:52:53,656 INFO : leaving (1) step postselection -22:52:53,657 INFO : moving (1) to step install -22:52:53,660 INFO : leaving (1) step install -22:52:53,660 INFO : moving (1) to step preinstallconfig -22:52:53,660 DEBUG : preinstallconfig is a direct step -22:52:54,102 DEBUG : isys.py:mount()- going to mount /selinux on /mnt/sysimage/selinux as selinuxfs with options defaults -22:52:54,107 DEBUG : isys.py:mount()- going to mount /proc/bus/usb on /mnt/sysimage/proc/bus/usb as usbfs with options defaults -22:52:54,117 INFO : copy_to_sysimage: source '/etc/multipath/wwids' does not exist. -22:52:54,117 INFO : copy_to_sysimage: source '/etc/multipath/bindings' does not exist. -22:52:54,130 INFO : copy_to_sysimage: source '/etc/multipath/wwids' does not exist. -22:52:54,130 INFO : copy_to_sysimage: source '/etc/multipath/bindings' does not exist. -22:52:54,134 INFO : leaving (1) step preinstallconfig -22:52:54,134 INFO : moving (1) to step installpackages -22:52:54,134 DEBUG : installpackages is a direct step -22:52:54,134 INFO : Preparing to install packages -23:16:26,925 INFO : leaving (1) step installpackages -23:16:26,926 INFO : moving (1) to step postinstallconfig -23:16:26,926 DEBUG : postinstallconfig is a direct step -23:16:26,934 DEBUG : Removing cachedir: /mnt/sysimage/var/cache/yum/anaconda-CentOS-201311291202.x86_64 -23:16:26,949 DEBUG : Removing headers and packages from /mnt/sysimage/var/cache/yum/ppa_repo -23:16:26,953 INFO : leaving (1) step postinstallconfig -23:16:26,953 INFO : moving (1) to step writeconfig -23:16:26,953 DEBUG : writeconfig is a direct step -23:16:26,953 INFO : Writing main configuration -23:16:26,958 WARNING : '/usr/sbin/authconfig' specified as full path -23:16:30,473 WARNING : '/usr/sbin/lokkit' specified as full path -23:16:30,530 WARNING : '/usr/sbin/lokkit' specified as full path -23:16:30,632 INFO : removing libuser.conf at /tmp/libuser.KyLOeb -23:16:30,633 INFO : created new libuser.conf at /tmp/libuser.KyLOeb with instPath="/mnt/sysimage" -23:16:31,956 INFO : leaving (1) step writeconfig -23:16:31,956 INFO : moving (1) to step firstboot -23:16:31,957 DEBUG : firstboot is a direct step -23:16:31,957 INFO : leaving (1) step firstboot -23:16:31,957 INFO : moving (1) to step instbootloader -23:16:31,957 DEBUG : instbootloader is a direct step -23:16:33,920 WARNING : '/sbin/grub-install' specified as full path -23:16:34,226 WARNING : '/sbin/grub' specified as full path -23:16:35,092 INFO : leaving (1) step instbootloader -23:16:35,092 INFO : moving (1) to step reipl -23:16:35,092 DEBUG : reipl is a direct step -23:16:35,093 INFO : leaving (1) step reipl -23:16:35,093 INFO : moving (1) to step writeksconfig -23:16:35,093 DEBUG : writeksconfig is a direct step -23:16:35,093 INFO : Writing autokickstart file -23:16:35,124 INFO : leaving (1) step writeksconfig -23:16:35,124 INFO : moving (1) to step setfilecon -23:16:35,125 DEBUG : setfilecon is a direct step -23:16:35,125 INFO : setting SELinux contexts for anaconda created files -23:16:36,828 INFO : leaving (1) step setfilecon -23:16:36,829 INFO : moving (1) to step copylogs -23:16:36,829 DEBUG : copylogs is a direct step -23:16:36,829 INFO : Copying anaconda logs -23:16:36,831 INFO : leaving (1) step copylogs -23:16:36,831 INFO : moving (1) to step methodcomplete -23:16:36,832 DEBUG : methodcomplete is a direct step -23:16:36,832 INFO : leaving (1) step methodcomplete -23:16:36,832 INFO : moving (1) to step postscripts -23:16:36,832 DEBUG : postscripts is a direct step -23:16:36,832 INFO : Running kickstart %%post script(s) -23:16:36,872 WARNING : '/bin/sh' specified as full path diff --git a/compass/tests/actions/update_progress/data/test2/anamon/checkpoint_3/server2.1/install.log.template b/compass/tests/actions/update_progress/data/test2/anamon/checkpoint_3/server2.1/install.log.template deleted file mode 100644 index 861b3a53..00000000 --- a/compass/tests/actions/update_progress/data/test2/anamon/checkpoint_3/server2.1/install.log.template +++ /dev/null @@ -1,212 +0,0 @@ -Installing libgcc-4.4.7-4.el6.x86_64 -warning: libgcc-4.4.7-4.el6.x86_64: Header V3 RSA/SHA1 Signature, key ID c105b9de: NOKEY -Installing setup-2.8.14-20.el6_4.1.noarch -Installing filesystem-2.4.30-3.el6.x86_64 -Installing basesystem-10.0-4.el6.noarch -Installing ncurses-base-5.7-3.20090208.el6.x86_64 -Installing kernel-firmware-2.6.32-431.el6.noarch -Installing tzdata-2013g-1.el6.noarch -Installing nss-softokn-freebl-3.14.3-9.el6.x86_64 -Installing glibc-common-2.12-1.132.el6.x86_64 -Installing glibc-2.12-1.132.el6.x86_64 -Installing ncurses-libs-5.7-3.20090208.el6.x86_64 -Installing bash-4.1.2-15.el6_4.x86_64 -Installing libattr-2.4.44-7.el6.x86_64 -Installing libcap-2.16-5.5.el6.x86_64 -Installing zlib-1.2.3-29.el6.x86_64 -Installing info-4.13a-8.el6.x86_64 -Installing popt-1.13-7.el6.x86_64 -Installing chkconfig-1.3.49.3-2.el6_4.1.x86_64 -Installing audit-libs-2.2-2.el6.x86_64 -Installing libcom_err-1.41.12-18.el6.x86_64 -Installing libacl-2.2.49-6.el6.x86_64 -Installing db4-4.7.25-18.el6_4.x86_64 -Installing nspr-4.10.0-1.el6.x86_64 -Installing nss-util-3.15.1-3.el6.x86_64 -Installing readline-6.0-4.el6.x86_64 -Installing libsepol-2.0.41-4.el6.x86_64 -Installing libselinux-2.0.94-5.3.el6_4.1.x86_64 -Installing shadow-utils-4.1.4.2-13.el6.x86_64 -Installing sed-4.2.1-10.el6.x86_64 -Installing bzip2-libs-1.0.5-7.el6_0.x86_64 -Installing libuuid-2.17.2-12.14.el6.x86_64 -Installing libstdc++-4.4.7-4.el6.x86_64 -Installing libblkid-2.17.2-12.14.el6.x86_64 -Installing gawk-3.1.7-10.el6.x86_64 -Installing file-libs-5.04-15.el6.x86_64 -Installing libgpg-error-1.7-4.el6.x86_64 -Installing dbus-libs-1.2.24-7.el6_3.x86_64 -Installing libudev-147-2.51.el6.x86_64 -Installing pcre-7.8-6.el6.x86_64 -Installing grep-2.6.3-4.el6.x86_64 -Installing lua-5.1.4-4.1.el6.x86_64 -Installing sqlite-3.6.20-1.el6.x86_64 -Installing cyrus-sasl-lib-2.1.23-13.el6_3.1.x86_64 -Installing libidn-1.18-2.el6.x86_64 -Installing expat-2.0.1-11.el6_2.x86_64 -Installing xz-libs-4.999.9-0.3.beta.20091007git.el6.x86_64 -Installing elfutils-libelf-0.152-1.el6.x86_64 -Installing libgcrypt-1.4.5-11.el6_4.x86_64 -Installing bzip2-1.0.5-7.el6_0.x86_64 -Installing findutils-4.4.2-6.el6.x86_64 -Installing libselinux-utils-2.0.94-5.3.el6_4.1.x86_64 -Installing checkpolicy-2.0.22-1.el6.x86_64 -Installing cpio-2.10-11.el6_3.x86_64 -Installing which-2.19-6.el6.x86_64 -Installing libxml2-2.7.6-14.el6.x86_64 -Installing libedit-2.11-4.20080712cvs.1.el6.x86_64 -Installing pth-2.0.7-9.3.el6.x86_64 -Installing tcp_wrappers-libs-7.6-57.el6.x86_64 -Installing sysvinit-tools-2.87-5.dsf.el6.x86_64 -Installing libtasn1-2.3-3.el6_2.1.x86_64 -Installing p11-kit-0.18.5-2.el6.x86_64 -Installing p11-kit-trust-0.18.5-2.el6.x86_64 -Installing ca-certificates-2013.1.94-65.0.el6.noarch -Installing device-mapper-persistent-data-0.2.8-2.el6.x86_64 -Installing nss-softokn-3.14.3-9.el6.x86_64 -Installing libnih-1.0.1-7.el6.x86_64 -Installing upstart-0.6.5-12.el6_4.1.x86_64 -Installing file-5.04-15.el6.x86_64 -Installing gmp-4.3.1-7.el6_2.2.x86_64 -Installing libusb-0.1.12-23.el6.x86_64 -Installing MAKEDEV-3.24-6.el6.x86_64 -Installing libutempter-1.1.5-4.1.el6.x86_64 -Installing psmisc-22.6-15.el6_0.1.x86_64 -Installing net-tools-1.60-110.el6_2.x86_64 -Installing vim-minimal-7.2.411-1.8.el6.x86_64 -Installing tar-1.23-11.el6.x86_64 -Installing procps-3.2.8-25.el6.x86_64 -Installing db4-utils-4.7.25-18.el6_4.x86_64 -Installing e2fsprogs-libs-1.41.12-18.el6.x86_64 -Installing libss-1.41.12-18.el6.x86_64 -Installing pinentry-0.7.6-6.el6.x86_64 -Installing binutils-2.20.51.0.2-5.36.el6.x86_64 -Installing m4-1.4.13-5.el6.x86_64 -Installing diffutils-2.8.1-28.el6.x86_64 -Installing make-3.81-20.el6.x86_64 -Installing dash-0.5.5.1-4.el6.x86_64 -Installing ncurses-5.7-3.20090208.el6.x86_64 -Installing groff-1.18.1.4-21.el6.x86_64 -Installing less-436-10.el6.x86_64 -Installing coreutils-libs-8.4-31.el6.x86_64 -Installing gzip-1.3.12-19.el6_4.x86_64 -Installing cracklib-2.8.16-4.el6.x86_64 -Installing cracklib-dicts-2.8.16-4.el6.x86_64 -Installing coreutils-8.4-31.el6.x86_64 -Installing pam-1.1.1-17.el6.x86_64 -Installing module-init-tools-3.9-21.el6_4.x86_64 -Installing hwdata-0.233-9.1.el6.noarch -Installing redhat-logos-60.0.14-12.el6.centos.noarch -Installing plymouth-scripts-0.8.3-27.el6.centos.x86_64 -Installing libpciaccess-0.13.1-2.el6.x86_64 -Installing nss-3.15.1-15.el6.x86_64 -Installing nss-sysinit-3.15.1-15.el6.x86_64 -Installing nss-tools-3.15.1-15.el6.x86_64 -Installing openldap-2.4.23-32.el6_4.1.x86_64 -Installing logrotate-3.7.8-17.el6.x86_64 -Installing gdbm-1.8.0-36.el6.x86_64 -Installing mingetty-1.08-5.el6.x86_64 -Installing keyutils-libs-1.4-4.el6.x86_64 -Installing krb5-libs-1.10.3-10.el6_4.6.x86_64 -Installing openssl-1.0.1e-15.el6.x86_64 -Installing libssh2-1.4.2-1.el6.x86_64 -Installing libcurl-7.19.7-37.el6_4.x86_64 -Installing gnupg2-2.0.14-6.el6_4.x86_64 -Installing gpgme-1.1.8-3.el6.x86_64 -Installing curl-7.19.7-37.el6_4.x86_64 -Installing rpm-libs-4.8.0-37.el6.x86_64 -Installing rpm-4.8.0-37.el6.x86_64 -Installing fipscheck-lib-1.2.0-7.el6.x86_64 -Installing fipscheck-1.2.0-7.el6.x86_64 -Installing mysql-libs-5.1.71-1.el6.x86_64 -Installing ethtool-3.5-1.el6.x86_64 -Installing pciutils-libs-3.1.10-2.el6.x86_64 -Installing plymouth-core-libs-0.8.3-27.el6.centos.x86_64 -Installing libcap-ng-0.6.4-3.el6_0.1.x86_64 -Installing libffi-3.0.5-3.2.el6.x86_64 -Installing python-2.6.6-51.el6.x86_64 -Installing python-libs-2.6.6-51.el6.x86_64 -Installing python-pycurl-7.19.0-8.el6.x86_64 -Installing python-urlgrabber-3.9.1-9.el6.noarch -Installing pygpgme-0.1-18.20090824bzr68.el6.x86_64 -Installing rpm-python-4.8.0-37.el6.x86_64 -Installing python-iniparse-0.3.1-2.1.el6.noarch -Installing slang-2.2.1-1.el6.x86_64 -Installing newt-0.52.11-3.el6.x86_64 -Installing newt-python-0.52.11-3.el6.x86_64 -Installing ustr-1.0.4-9.1.el6.x86_64 -Installing libsemanage-2.0.43-4.2.el6.x86_64 -Installing libaio-0.3.107-10.el6.x86_64 -Installing pkgconfig-0.23-9.1.el6.x86_64 -Installing gamin-0.1.10-9.el6.x86_64 -Installing glib2-2.26.1-3.el6.x86_64 -Installing shared-mime-info-0.70-4.el6.x86_64 -Installing libuser-0.56.13-5.el6.x86_64 -Installing grubby-7.0.15-5.el6.x86_64 -Installing yum-metadata-parser-1.1.2-16.el6.x86_64 -Installing yum-plugin-fastestmirror-1.1.30-14.el6.noarch -Installing yum-3.2.29-40.el6.centos.noarch -Installing dbus-glib-0.86-6.el6.x86_64 -Installing dhcp-common-4.1.1-38.P1.el6.centos.x86_64 -Installing centos-release-6-5.el6.centos.11.1.x86_64 -Installing policycoreutils-2.0.83-19.39.el6.x86_64 -Installing iptables-1.4.7-11.el6.x86_64 -Installing iproute-2.6.32-31.el6.x86_64 -Installing iputils-20071127-17.el6_4.2.x86_64 -Installing util-linux-ng-2.17.2-12.14.el6.x86_64 -Installing initscripts-9.03.40-2.el6.centos.x86_64 -Installing udev-147-2.51.el6.x86_64 -Installing device-mapper-libs-1.02.79-8.el6.x86_64 -Installing device-mapper-1.02.79-8.el6.x86_64 -Installing device-mapper-event-libs-1.02.79-8.el6.x86_64 -Installing openssh-5.3p1-94.el6.x86_64 -Installing device-mapper-event-1.02.79-8.el6.x86_64 -Installing lvm2-libs-2.02.100-8.el6.x86_64 -Installing cryptsetup-luks-libs-1.2.0-7.el6.x86_64 -Installing device-mapper-multipath-libs-0.4.9-72.el6.x86_64 -Installing kpartx-0.4.9-72.el6.x86_64 -Installing libdrm-2.4.45-2.el6.x86_64 -Installing plymouth-0.8.3-27.el6.centos.x86_64 -Installing rsyslog-5.8.10-8.el6.x86_64 -Installing cyrus-sasl-2.1.23-13.el6_3.1.x86_64 -Installing postfix-2.6.6-2.2.el6_1.x86_64 -Installing cronie-anacron-1.4.4-12.el6.x86_64 -Installing cronie-1.4.4-12.el6.x86_64 -Installing crontabs-1.10-33.el6.noarch -Installing ntpdate-4.2.6p5-1.el6.centos.x86_64 -Installing iptables-ipv6-1.4.7-11.el6.x86_64 -Installing selinux-policy-3.7.19-231.el6.noarch -Installing kbd-misc-1.15-11.el6.noarch -Installing kbd-1.15-11.el6.x86_64 -Installing dracut-004-335.el6.noarch -Installing dracut-kernel-004-335.el6.noarch -Installing kernel-2.6.32-431.el6.x86_64 -Installing fuse-2.8.3-4.el6.x86_64 -Installing selinux-policy-targeted-3.7.19-231.el6.noarch -Installing system-config-firewall-base-1.2.27-5.el6.noarch -Installing ntp-4.2.6p5-1.el6.centos.x86_64 -Installing device-mapper-multipath-0.4.9-72.el6.x86_64 -Installing cryptsetup-luks-1.2.0-7.el6.x86_64 -Installing lvm2-2.02.100-8.el6.x86_64 -Installing openssh-clients-5.3p1-94.el6.x86_64 -Installing openssh-server-5.3p1-94.el6.x86_64 -Installing mdadm-3.2.6-7.el6.x86_64 -Installing b43-openfwwf-5.2-4.el6.noarch -Installing dhclient-4.1.1-38.P1.el6.centos.x86_64 -Installing iscsi-initiator-utils-6.2.0.873-10.el6.x86_64 -Installing passwd-0.77-4.el6_2.2.x86_64 -Installing authconfig-6.1.12-13.el6.x86_64 -Installing grub-0.97-83.el6.x86_64 -Installing efibootmgr-0.5.4-11.el6.x86_64 -Installing wget-1.12-1.8.el6.x86_64 -Installing sudo-1.8.6p3-12.el6.x86_64 -Installing audit-2.2-2.el6.x86_64 -Installing e2fsprogs-1.41.12-18.el6.x86_64 -Installing xfsprogs-3.1.1-14.el6.x86_64 -Installing acl-2.2.49-6.el6.x86_64 -Installing attr-2.4.44-7.el6.x86_64 -Installing chef-11.8.0-1.el6.x86_64 -warning: chef-11.8.0-1.el6.x86_64: Header V4 DSA/SHA1 Signature, key ID 83ef826a: NOKEY -Installing bridge-utils-1.2-10.el6.x86_64 -Installing rootfiles-8.1-6.1.el6.noarch -*** FINISHED INSTALLING PACKAGES *** \ No newline at end of file diff --git a/compass/tests/actions/update_progress/data/test2/anamon/checkpoint_3/server2.1/sys.log.template b/compass/tests/actions/update_progress/data/test2/anamon/checkpoint_3/server2.1/sys.log.template deleted file mode 100644 index 1fbb5602..00000000 --- a/compass/tests/actions/update_progress/data/test2/anamon/checkpoint_3/server2.1/sys.log.template +++ /dev/null @@ -1,1628 +0,0 @@ -05:50:20,517 INFO kernel:imklog 5.8.10, log source = /proc/kmsg started. -05:50:20,517 INFO rsyslogd: [origin software="rsyslogd" swVersion="5.8.10" x-pid="68" x-info="http://www.rsyslog.com"] start -05:50:20,517 INFO kernel:Initializing cgroup subsys cpuset -05:50:20,517 INFO kernel:Initializing cgroup subsys cpu -05:50:20,517 NOTICE kernel:Linux version 2.6.32-431.el6.x86_64 (mockbuild@c6b8.bsys.dev.centos.org) (gcc version 4.4.7 20120313 (Red Hat 4.4.7-4) (GCC) ) #1 SMP Fri Nov 22 03:15:09 UTC 2013 -05:50:20,517 INFO kernel:Command line: initrd=/images/CentOS-6.5-x86_64/initrd.img ksdevice=bootif lang= kssendmac text ks=http://10.145.88.211/cblr/svc/op/ks/system/server2.1 BOOT_IMAGE=/images/CentOS-6.5-x86_64/vmlinuz BOOTIF=01-00-0c-29-5c-6a-b8 -05:50:20,517 INFO kernel:KERNEL supported cpus: -05:50:20,517 INFO kernel: Intel GenuineIntel -05:50:20,517 INFO kernel: AMD AuthenticAMD -05:50:20,517 INFO kernel: Centaur CentaurHauls -05:50:20,517 INFO kernel:Disabled fast string operations -05:50:20,517 INFO kernel:BIOS-provided physical RAM map: -05:50:20,517 INFO kernel: BIOS-e820: 0000000000000000 - 000000000009f400 (usable) -05:50:20,517 INFO kernel: BIOS-e820: 000000000009f400 - 00000000000a0000 (reserved) -05:50:20,517 INFO kernel: BIOS-e820: 00000000000ca000 - 00000000000cc000 (reserved) -05:50:20,517 INFO kernel: BIOS-e820: 00000000000dc000 - 0000000000100000 (reserved) -05:50:20,517 INFO kernel: BIOS-e820: 0000000000100000 - 000000007fef0000 (usable) -05:50:20,517 INFO kernel: BIOS-e820: 000000007fef0000 - 000000007feff000 (ACPI data) -05:50:20,517 INFO kernel: BIOS-e820: 000000007feff000 - 000000007ff00000 (ACPI NVS) -05:50:20,517 INFO kernel: BIOS-e820: 000000007ff00000 - 0000000080000000 (usable) -05:50:20,517 INFO kernel: BIOS-e820: 00000000e0000000 - 00000000f0000000 (reserved) -05:50:20,517 INFO kernel: BIOS-e820: 00000000fec00000 - 00000000fec10000 (reserved) -05:50:20,517 INFO kernel: BIOS-e820: 00000000fee00000 - 00000000fee01000 (reserved) -05:50:20,517 INFO kernel: BIOS-e820: 00000000fffe0000 - 0000000100000000 (reserved) -05:50:20,517 INFO kernel:DMI present. -05:50:20,517 WARNING kernel:SMBIOS version 2.4 @ 0xF68F0 -05:50:20,517 DEBUG kernel:DMI: VMware, Inc. VMware Virtual Platform/440BX Desktop Reference Platform, BIOS 6.00 01/07/2011 -05:50:20,517 NOTICE kernel:Phoenix BIOS detected: BIOS may corrupt low RAM, working around it. -05:50:20,517 DEBUG kernel:e820 update range: 0000000000000000 - 0000000000010000 (usable) ==> (reserved) -05:50:20,517 INFO kernel:Hypervisor detected: VMware -05:50:20,517 DEBUG kernel:e820 update range: 0000000000000000 - 0000000000001000 (usable) ==> (reserved) -05:50:20,517 DEBUG kernel:e820 remove range: 00000000000a0000 - 0000000000100000 (usable) -05:50:20,517 INFO kernel:last_pfn = 0x80000 max_arch_pfn = 0x400000000 -05:50:20,517 DEBUG kernel:MTRR default type: uncachable -05:50:20,517 DEBUG kernel:MTRR fixed ranges enabled: -05:50:20,517 DEBUG kernel: 00000-9FFFF write-back -05:50:20,517 DEBUG kernel: A0000-BFFFF uncachable -05:50:20,517 DEBUG kernel: C0000-CFFFF write-protect -05:50:20,517 DEBUG kernel: D0000-EFFFF uncachable -05:50:20,517 DEBUG kernel: F0000-FFFFF write-protect -05:50:20,517 DEBUG kernel:MTRR variable ranges enabled: -05:50:20,517 DEBUG kernel: 0 base 0000000000 mask FF80000000 write-back -05:50:20,517 DEBUG kernel: 1 disabled -05:50:20,517 DEBUG kernel: 2 disabled -05:50:20,517 DEBUG kernel: 3 disabled -05:50:20,517 DEBUG kernel: 4 disabled -05:50:20,517 DEBUG kernel: 5 disabled -05:50:20,517 DEBUG kernel: 6 disabled -05:50:20,517 DEBUG kernel: 7 disabled -05:50:20,517 INFO kernel:x86 PAT enabled: cpu 0, old 0x0, new 0x7010600070106 -05:50:20,517 DEBUG kernel:initial memory mapped : 0 - 20000000 -05:50:20,517 INFO kernel:init_memory_mapping: 0000000000000000-0000000080000000 -05:50:20,517 DEBUG kernel: 0000000000 - 0080000000 page 2M -05:50:20,517 DEBUG kernel:kernel direct mapping tables up to 80000000 @ 10000-13000 -05:50:20,517 INFO kernel:RAMDISK: 7def9000 - 7fecf4ff -05:50:20,517 WARNING kernel:ACPI: RSDP 00000000000f6940 00024 (v02 PTLTD ) -05:50:20,517 WARNING kernel:ACPI: XSDT 000000007fef0333 00054 (v01 INTEL 440BX 06040000 VMW 01324272) -05:50:20,517 WARNING kernel:ACPI: FACP 000000007fefee98 000F4 (v04 INTEL 440BX 06040000 PTL 000F4240) -05:50:20,517 WARNING kernel:ACPI: DSDT 000000007fef055d 0E93B (v01 PTLTD Custom 06040000 MSFT 03000001) -05:50:20,517 WARNING kernel:ACPI: FACS 000000007fefffc0 00040 -05:50:20,517 WARNING kernel:ACPI: BOOT 000000007fef0535 00028 (v01 PTLTD $SBFTBL$ 06040000 LTP 00000001) -05:50:20,517 WARNING kernel:ACPI: APIC 000000007fef04d7 0005E (v01 PTLTD ? APIC 06040000 LTP 00000000) -05:50:20,517 WARNING kernel:ACPI: MCFG 000000007fef049b 0003C (v01 PTLTD $PCITBL$ 06040000 LTP 00000001) -05:50:20,517 WARNING kernel:ACPI: SRAT 000000007fef03fb 000A0 (v02 VMWARE MEMPLUG 06040000 VMW 00000001) -05:50:20,517 WARNING kernel:ACPI: HPET 000000007fef03c3 00038 (v01 VMWARE VMW HPET 06040000 WMV 00000001) -05:50:20,517 DEBUG kernel:ACPI: Local APIC address 0xfee00000 -05:50:20,517 INFO kernel:Setting APIC routing to flat. -05:50:20,517 INFO kernel:SRAT: PXM 0 -> APIC 0 -> Node 0 -05:50:20,517 INFO kernel:SRAT: PXM 0 -> APIC 1 -> Node 0 -05:50:20,517 INFO kernel:SRAT: Node 0 PXM 0 0-a0000 -05:50:20,517 INFO kernel:SRAT: Node 0 PXM 0 100000-80000000 -05:50:20,517 DEBUG kernel:NUMA: Allocated memnodemap from 11000 - 12040 -05:50:20,517 DEBUG kernel:NUMA: Using 20 for the hash shift. -05:50:20,517 INFO kernel:Bootmem setup node 0 0000000000000000-0000000080000000 -05:50:20,517 INFO kernel: NODE_DATA [0000000000012040 - 000000000004603f] -05:50:20,517 INFO kernel: bootmap [0000000000047000 - 0000000000056fff] pages 10 -05:50:20,517 INFO kernel:(8 early reservations) ==> bootmem [0000000000 - 0080000000] -05:50:20,517 INFO kernel: #0 [0000000000 - 0000001000] BIOS data page ==> [0000000000 - 0000001000] -05:50:20,517 INFO kernel: #1 [0000006000 - 0000008000] TRAMPOLINE ==> [0000006000 - 0000008000] -05:50:20,517 INFO kernel: #2 [0001000000 - 000201faa4] TEXT DATA BSS ==> [0001000000 - 000201faa4] -05:50:20,517 INFO kernel: #3 [007def9000 - 007fecf4ff] RAMDISK ==> [007def9000 - 007fecf4ff] -05:50:20,517 INFO kernel: #4 [000009f400 - 0000100000] BIOS reserved ==> [000009f400 - 0000100000] -05:50:20,517 INFO kernel: #5 [0002020000 - 00020201f0] BRK ==> [0002020000 - 00020201f0] -05:50:20,517 INFO kernel: #6 [0000010000 - 0000011000] PGTABLE ==> [0000010000 - 0000011000] -05:50:20,517 INFO kernel: #7 [0000011000 - 0000012040] MEMNODEMAP ==> [0000011000 - 0000012040] -05:50:20,517 INFO kernel:found SMP MP-table at [ffff8800000f69b0] f69b0 -05:50:20,517 DEBUG kernel: [ffffea0000000000-ffffea0001bfffff] PMD -> [ffff880002600000-ffff8800041fffff] on node 0 -05:50:20,517 WARNING kernel:Zone PFN ranges: -05:50:20,517 WARNING kernel: DMA 0x00000010 -> 0x00001000 -05:50:20,517 WARNING kernel: DMA32 0x00001000 -> 0x00100000 -05:50:20,517 WARNING kernel: Normal 0x00100000 -> 0x00100000 -05:50:20,517 WARNING kernel:Movable zone start PFN for each node -05:50:20,517 WARNING kernel:early_node_map[3] active PFN ranges -05:50:20,517 WARNING kernel: 0: 0x00000010 -> 0x0000009f -05:50:20,517 WARNING kernel: 0: 0x00000100 -> 0x0007fef0 -05:50:20,520 WARNING kernel: 0: 0x0007ff00 -> 0x00080000 -05:50:20,520 DEBUG kernel:On node 0 totalpages: 524159 -05:50:20,520 DEBUG kernel: DMA zone: 56 pages used for memmap -05:50:20,520 DEBUG kernel: DMA zone: 101 pages reserved -05:50:20,520 DEBUG kernel: DMA zone: 3826 pages, LIFO batch:0 -05:50:20,520 DEBUG kernel: DMA32 zone: 7112 pages used for memmap -05:50:20,520 DEBUG kernel: DMA32 zone: 513064 pages, LIFO batch:31 -05:50:20,520 INFO kernel:ACPI: PM-Timer IO Port: 0x1008 -05:50:20,520 DEBUG kernel:ACPI: Local APIC address 0xfee00000 -05:50:20,520 INFO kernel:Setting APIC routing to flat. -05:50:20,520 INFO kernel:ACPI: LAPIC (acpi_id[0x00] lapic_id[0x00] enabled) -05:50:20,520 INFO kernel:ACPI: LAPIC (acpi_id[0x01] lapic_id[0x01] enabled) -05:50:20,520 INFO kernel:ACPI: LAPIC_NMI (acpi_id[0x00] high edge lint[0x1]) -05:50:20,520 INFO kernel:ACPI: LAPIC_NMI (acpi_id[0x01] high edge lint[0x1]) -05:50:20,520 INFO kernel:ACPI: IOAPIC (id[0x02] address[0xfec00000] gsi_base[0]) -05:50:20,521 INFO kernel:IOAPIC[0]: apic_id 2, version 17, address 0xfec00000, GSI 0-23 -05:50:20,521 INFO kernel:ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 high edge) -05:50:20,521 DEBUG kernel:ACPI: IRQ0 used by override. -05:50:20,521 DEBUG kernel:ACPI: IRQ2 used by override. -05:50:20,521 DEBUG kernel:ACPI: IRQ9 used by override. -05:50:20,521 INFO kernel:Using ACPI (MADT) for SMP configuration information -05:50:20,521 INFO kernel:ACPI: HPET id: 0x8086af01 base: 0xfed00000 -05:50:20,521 INFO kernel:SMP: Allowing 2 CPUs, 0 hotplug CPUs -05:50:20,521 DEBUG kernel:nr_irqs_gsi: 24 -05:50:20,521 INFO kernel:PM: Registered nosave memory: 000000000009f000 - 00000000000a0000 -05:50:20,521 INFO kernel:PM: Registered nosave memory: 00000000000a0000 - 00000000000ca000 -05:50:20,521 INFO kernel:PM: Registered nosave memory: 00000000000ca000 - 00000000000cc000 -05:50:20,521 INFO kernel:PM: Registered nosave memory: 00000000000cc000 - 00000000000dc000 -05:50:20,521 INFO kernel:PM: Registered nosave memory: 00000000000dc000 - 0000000000100000 -05:50:20,521 INFO kernel:PM: Registered nosave memory: 000000007fef0000 - 000000007feff000 -05:50:20,521 INFO kernel:PM: Registered nosave memory: 000000007feff000 - 000000007ff00000 -05:50:20,521 INFO kernel:Allocating PCI resources starting at 80000000 (gap: 80000000:60000000) -05:50:20,521 INFO kernel:Booting paravirtualized kernel on bare hardware -05:50:20,521 INFO kernel:NR_CPUS:4096 nr_cpumask_bits:2 nr_cpu_ids:2 nr_node_ids:1 -05:50:20,521 INFO kernel:PERCPU: Embedded 31 pages/cpu @ffff880002200000 s94872 r8192 d23912 u1048576 -05:50:20,521 INFO kernel:pcpu-alloc: s94872 r8192 d23912 u1048576 alloc=1*2097152 -05:50:20,521 INFO kernel:pcpu-alloc: [0] 0 1 -05:50:20,521 WARNING kernel:Built 1 zonelists in Node order, mobility grouping on. Total pages: 516890 -05:50:20,521 WARNING kernel:Policy zone: DMA32 -05:50:20,521 NOTICE kernel:Kernel command line: initrd=/images/CentOS-6.5-x86_64/initrd.img ksdevice=bootif lang= kssendmac text ks=http://10.145.88.211/cblr/svc/op/ks/system/server2.1 BOOT_IMAGE=/images/CentOS-6.5-x86_64/vmlinuz BOOTIF=01-00-0c-29-5c-6a-b8 -05:50:20,521 INFO kernel:PID hash table entries: 4096 (order: 3, 32768 bytes) -05:50:20,521 INFO kernel:Checking aperture... -05:50:20,521 INFO kernel:No AGP bridge found -05:50:20,521 INFO kernel:Memory: 2018096k/2097152k available (5325k kernel code, 516k absent, 78540k reserved, 7013k data, 1276k init) -05:50:20,521 INFO kernel:Hierarchical RCU implementation. -05:50:20,521 INFO kernel:NR_IRQS:33024 nr_irqs:424 -05:50:20,521 INFO kernel:Extended CMOS year: 2000 -05:50:20,521 WARNING kernel:Console: colour VGA+ 80x25 -05:50:20,521 INFO kernel:console [tty0] enabled -05:50:20,521 INFO kernel:allocated 8388608 bytes of page_cgroup -05:50:20,521 INFO kernel:please try 'cgroup_disable=memory' option if you don't want memory cgroups -05:50:20,521 DEBUG kernel:hpet clockevent registered -05:50:20,521 INFO kernel:TSC freq read from hypervisor : 2400.085 MHz -05:50:20,521 WARNING kernel:Detected 2400.085 MHz processor. -05:50:20,521 INFO kernel:Calibrating delay loop (skipped) preset value.. 4800.17 BogoMIPS (lpj=2400085) -05:50:20,521 INFO kernel:pid_max: default: 32768 minimum: 301 -05:50:20,521 INFO kernel:Security Framework initialized -05:50:20,521 INFO kernel:SELinux: Initializing. -05:50:20,521 DEBUG kernel:SELinux: Starting in permissive mode -05:50:20,521 INFO kernel:Dentry cache hash table entries: 262144 (order: 9, 2097152 bytes) -05:50:20,521 INFO kernel:Inode-cache hash table entries: 131072 (order: 8, 1048576 bytes) -05:50:20,521 WARNING kernel:Mount-cache hash table entries: 256 -05:50:20,521 INFO kernel:Initializing cgroup subsys ns -05:50:20,521 INFO kernel:Initializing cgroup subsys cpuacct -05:50:20,521 INFO kernel:Initializing cgroup subsys memory -05:50:20,521 INFO kernel:Initializing cgroup subsys devices -05:50:20,521 INFO kernel:Initializing cgroup subsys freezer -05:50:20,521 INFO kernel:Initializing cgroup subsys net_cls -05:50:20,521 INFO kernel:Initializing cgroup subsys blkio -05:50:20,521 INFO kernel:Initializing cgroup subsys perf_event -05:50:20,521 INFO kernel:Initializing cgroup subsys net_prio -05:50:20,521 INFO kernel:Disabled fast string operations -05:50:20,521 INFO kernel:CPU: Physical Processor ID: 0 -05:50:20,521 INFO kernel:mce: CPU supports 0 MCE banks -05:50:20,521 INFO kernel:alternatives: switching to unfair spinlock -05:50:20,521 INFO kernel:ACPI: Core revision 20090903 -05:50:20,521 INFO kernel:ftrace: converting mcount calls to 0f 1f 44 00 00 -05:50:20,521 INFO kernel:ftrace: allocating 21769 entries in 86 pages -05:50:20,521 INFO kernel:APIC routing finalized to flat. -05:50:20,521 INFO kernel:..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1 -05:50:20,521 INFO kernel:CPU0: Intel(R) Xeon(R) CPU E5620 @ 2.40GHz stepping 02 -05:50:20,521 INFO kernel:Performance Events: 16-deep LBR, Westmere events, Intel PMU driver. -05:50:20,521 WARNING kernel:CPUID marked event: 'cpu cycles' unavailable -05:50:20,521 WARNING kernel:CPUID marked event: 'instructions' unavailable -05:50:20,521 WARNING kernel:CPUID marked event: 'bus cycles' unavailable -05:50:20,521 WARNING kernel:CPUID marked event: 'cache references' unavailable -05:50:20,521 WARNING kernel:CPUID marked event: 'cache misses' unavailable -05:50:20,521 WARNING kernel:CPUID marked event: 'branch instructions' unavailable -05:50:20,521 WARNING kernel:CPUID marked event: 'branch misses' unavailable -05:50:20,521 INFO kernel:... version: 3 -05:50:20,521 INFO kernel:... bit width: 48 -05:50:20,521 INFO kernel:... generic registers: 4 -05:50:20,521 INFO kernel:... value mask: 0000ffffffffffff -05:50:20,521 INFO kernel:... max period: 000000007fffffff -05:50:20,521 INFO kernel:... fixed-purpose events: 3 -05:50:20,521 INFO kernel:... event mask: 000000070000000f -05:50:20,521 WARNING kernel:NMI watchdog disabled (cpu0): hardware events not enabled -05:50:20,521 INFO kernel:Booting Node 0, Processors #1 Ok. -05:50:20,521 INFO kernel:Disabled fast string operations -05:50:20,521 INFO kernel:mce: CPU supports 0 MCE banks -05:50:20,521 INFO kernel:Skipped synchronization checks as TSC is reliable. -05:50:20,521 INFO kernel:Brought up 2 CPUs -05:50:20,521 INFO kernel:Total of 2 processors activated (9600.34 BogoMIPS). -05:50:20,521 INFO kernel:x86 PAT enabled: cpu 0, old 0x0, new 0x7010600070106 -05:50:20,521 INFO kernel:x86 PAT enabled: cpu 1, old 0x0, new 0x7010600070106 -05:50:20,521 DEBUG kernel:sizeof(vma)=200 bytes -05:50:20,521 DEBUG kernel:sizeof(page)=56 bytes -05:50:20,521 DEBUG kernel:sizeof(inode)=592 bytes -05:50:20,521 DEBUG kernel:sizeof(dentry)=192 bytes -05:50:20,521 DEBUG kernel:sizeof(ext3inode)=800 bytes -05:50:20,521 DEBUG kernel:sizeof(buffer_head)=104 bytes -05:50:20,521 DEBUG kernel:sizeof(skbuff)=232 bytes -05:50:20,521 DEBUG kernel:sizeof(task_struct)=2648 bytes -05:50:20,521 INFO kernel:devtmpfs: initialized -05:50:20,521 INFO kernel:PM: Registering ACPI NVS region at 7feff000 (4096 bytes) -05:50:20,521 INFO kernel:regulator: core version 0.5 -05:50:20,521 INFO kernel:NET: Registered protocol family 16 -05:50:20,521 INFO kernel:ACPI: bus type pci registered -05:50:20,521 NOTICE kernel:PCI: MCFG configuration 0: base e0000000 segment 0 buses 0 - 255 -05:50:20,521 NOTICE kernel:PCI: MCFG area at e0000000 reserved in E820 -05:50:20,521 INFO kernel:PCI: Using MMCONFIG at e0000000 - efffffff -05:50:20,521 INFO kernel:PCI: Using configuration type 1 for base access -05:50:20,521 WARNING kernel:bio: create slab at 0 -05:50:20,521 DEBUG kernel:ACPI: EC: Look up EC in DSDT -05:50:20,521 NOTICE kernel:ACPI: BIOS _OSI(Linux) query ignored -05:50:20,521 INFO kernel:ACPI: Interpreter enabled -05:50:20,521 INFO kernel:ACPI: (supports S0 S1 S4 S5) -05:50:20,521 INFO kernel:ACPI: Using IOAPIC for interrupt routing -05:50:20,521 INFO kernel:ACPI: No dock devices found. -05:50:20,521 INFO kernel:PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug -05:50:20,521 INFO kernel:ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-ff]) -05:50:20,521 INFO kernel:pci_root PNP0A03:00: host bridge window [mem 0x000a0000-0x000bffff] -05:50:20,521 INFO kernel:pci_root PNP0A03:00: host bridge window [mem 0x000d0000-0x000d3fff] -05:50:20,521 INFO kernel:pci_root PNP0A03:00: host bridge window [mem 0x000d4000-0x000d7fff] -05:50:20,521 INFO kernel:pci_root PNP0A03:00: host bridge window [mem 0x000d8000-0x000dbfff] -05:50:20,521 INFO kernel:pci_root PNP0A03:00: host bridge window [mem 0x80000000-0xfebfffff] -05:50:20,521 INFO kernel:pci_root PNP0A03:00: host bridge window [io 0x0000-0x0cf7] -05:50:20,521 INFO kernel:pci_root PNP0A03:00: host bridge window [io 0x0d00-0xfeff] -05:50:20,521 INFO kernel:PCI host bridge to bus 0000:00 -05:50:20,521 INFO kernel:pci_bus 0000:00: root bus resource [mem 0x000a0000-0x000bffff] -05:50:20,521 INFO kernel:pci_bus 0000:00: root bus resource [mem 0x000d0000-0x000d3fff] -05:50:20,521 INFO kernel:pci_bus 0000:00: root bus resource [mem 0x000d4000-0x000d7fff] -05:50:20,521 INFO kernel:pci_bus 0000:00: root bus resource [mem 0x000d8000-0x000dbfff] -05:50:20,521 INFO kernel:pci_bus 0000:00: root bus resource [mem 0x80000000-0xfebfffff] -05:50:20,521 INFO kernel:pci_bus 0000:00: root bus resource [io 0x0000-0x0cf7] -05:50:20,521 INFO kernel:pci_bus 0000:00: root bus resource [io 0x0d00-0xfeff] -05:50:20,521 DEBUG kernel:pci 0000:00:07.1: reg 20: [io 0x10c0-0x10cf] -05:50:20,521 INFO kernel:pci 0000:00:07.3: quirk: [io 0x1000-0x103f] claimed by PIIX4 ACPI -05:50:20,521 INFO kernel:pci 0000:00:07.3: quirk: [io 0x1040-0x104f] claimed by PIIX4 SMB -05:50:20,521 DEBUG kernel:pci 0000:00:07.7: reg 10: [io 0x1080-0x10bf] -05:50:20,521 DEBUG kernel:pci 0000:00:07.7: reg 14: [mem 0xd0000000-0xd0001fff 64bit] -05:50:20,521 DEBUG kernel:pci 0000:00:0f.0: reg 10: [io 0x10d0-0x10df] -05:50:20,521 DEBUG kernel:pci 0000:00:0f.0: reg 14: [mem 0xd8000000-0xdbffffff pref] -05:50:20,521 DEBUG kernel:pci 0000:00:0f.0: reg 18: [mem 0xd0800000-0xd0ffffff] -05:50:20,521 DEBUG kernel:pci 0000:00:0f.0: reg 30: [mem 0x00000000-0x00007fff pref] -05:50:20,521 DEBUG kernel:pci 0000:00:10.0: reg 10: [io 0x1400-0x14ff] -05:50:20,521 DEBUG kernel:pci 0000:00:10.0: reg 14: [mem 0xd0040000-0xd005ffff 64bit] -05:50:20,521 DEBUG kernel:pci 0000:00:10.0: reg 1c: [mem 0xd0020000-0xd003ffff 64bit] -05:50:20,521 DEBUG kernel:pci 0000:00:10.0: reg 30: [mem 0x00000000-0x00003fff pref] -05:50:20,521 INFO kernel:pci 0000:00:15.0: PME# supported from D0 D3hot D3cold -05:50:20,521 INFO kernel:pci 0000:00:15.0: PME# disabled -05:50:20,521 INFO kernel:pci 0000:00:15.1: PME# supported from D0 D3hot D3cold -05:50:20,521 INFO kernel:pci 0000:00:15.1: PME# disabled -05:50:20,521 INFO kernel:pci 0000:00:15.2: PME# supported from D0 D3hot D3cold -05:50:20,521 INFO kernel:pci 0000:00:15.2: PME# disabled -05:50:20,521 INFO kernel:pci 0000:00:15.3: PME# supported from D0 D3hot D3cold -05:50:20,521 INFO kernel:pci 0000:00:15.3: PME# disabled -05:50:20,521 INFO kernel:pci 0000:00:15.4: PME# supported from D0 D3hot D3cold -05:50:20,521 INFO kernel:pci 0000:00:15.4: PME# disabled -05:50:20,521 INFO kernel:pci 0000:00:15.5: PME# supported from D0 D3hot D3cold -05:50:20,521 INFO kernel:pci 0000:00:15.5: PME# disabled -05:50:20,521 INFO kernel:pci 0000:00:15.6: PME# supported from D0 D3hot D3cold -05:50:20,521 INFO kernel:pci 0000:00:15.6: PME# disabled -05:50:20,521 INFO kernel:pci 0000:00:15.7: PME# supported from D0 D3hot D3cold -05:50:20,521 INFO kernel:pci 0000:00:15.7: PME# disabled -05:50:20,521 INFO kernel:pci 0000:00:16.0: PME# supported from D0 D3hot D3cold -05:50:20,521 INFO kernel:pci 0000:00:16.0: PME# disabled -05:50:20,521 INFO kernel:pci 0000:00:16.1: PME# supported from D0 D3hot D3cold -05:50:20,521 INFO kernel:pci 0000:00:16.1: PME# disabled -05:50:20,521 INFO kernel:pci 0000:00:16.2: PME# supported from D0 D3hot D3cold -05:50:20,521 INFO kernel:pci 0000:00:16.2: PME# disabled -05:50:20,521 INFO kernel:pci 0000:00:16.3: PME# supported from D0 D3hot D3cold -05:50:20,521 INFO kernel:pci 0000:00:16.3: PME# disabled -05:50:20,521 INFO kernel:pci 0000:00:16.4: PME# supported from D0 D3hot D3cold -05:50:20,521 INFO kernel:pci 0000:00:16.4: PME# disabled -05:50:20,521 INFO kernel:pci 0000:00:16.5: PME# supported from D0 D3hot D3cold -05:50:20,521 INFO kernel:pci 0000:00:16.5: PME# disabled -05:50:20,521 INFO kernel:pci 0000:00:16.6: PME# supported from D0 D3hot D3cold -05:50:20,521 INFO kernel:pci 0000:00:16.6: PME# disabled -05:50:20,521 INFO kernel:pci 0000:00:16.7: PME# supported from D0 D3hot D3cold -05:50:20,521 INFO kernel:pci 0000:00:16.7: PME# disabled -05:50:20,521 INFO kernel:pci 0000:00:17.0: PME# supported from D0 D3hot D3cold -05:50:20,521 INFO kernel:pci 0000:00:17.0: PME# disabled -05:50:20,521 INFO kernel:pci 0000:00:17.1: PME# supported from D0 D3hot D3cold -05:50:20,521 INFO kernel:pci 0000:00:17.1: PME# disabled -05:50:20,521 INFO kernel:pci 0000:00:17.2: PME# supported from D0 D3hot D3cold -05:50:20,521 INFO kernel:pci 0000:00:17.2: PME# disabled -05:50:20,521 INFO kernel:pci 0000:00:17.3: PME# supported from D0 D3hot D3cold -05:50:20,521 INFO kernel:pci 0000:00:17.3: PME# disabled -05:50:20,521 INFO kernel:pci 0000:00:17.4: PME# supported from D0 D3hot D3cold -05:50:20,521 INFO kernel:pci 0000:00:17.4: PME# disabled -05:50:20,521 INFO kernel:pci 0000:00:17.5: PME# supported from D0 D3hot D3cold -05:50:20,521 INFO kernel:pci 0000:00:17.5: PME# disabled -05:50:20,521 INFO kernel:pci 0000:00:17.6: PME# supported from D0 D3hot D3cold -05:50:20,521 INFO kernel:pci 0000:00:17.6: PME# disabled -05:50:20,521 INFO kernel:pci 0000:00:17.7: PME# supported from D0 D3hot D3cold -05:50:20,521 INFO kernel:pci 0000:00:17.7: PME# disabled -05:50:20,521 INFO kernel:pci 0000:00:18.0: PME# supported from D0 D3hot D3cold -05:50:20,521 INFO kernel:pci 0000:00:18.0: PME# disabled -05:50:20,521 INFO kernel:pci 0000:00:18.1: PME# supported from D0 D3hot D3cold -05:50:20,521 INFO kernel:pci 0000:00:18.1: PME# disabled -05:50:20,521 INFO kernel:pci 0000:00:18.2: PME# supported from D0 D3hot D3cold -05:50:20,521 INFO kernel:pci 0000:00:18.2: PME# disabled -05:50:20,521 INFO kernel:pci 0000:00:18.3: PME# supported from D0 D3hot D3cold -05:50:20,521 INFO kernel:pci 0000:00:18.3: PME# disabled -05:50:20,521 INFO kernel:pci 0000:00:18.4: PME# supported from D0 D3hot D3cold -05:50:20,521 INFO kernel:pci 0000:00:18.4: PME# disabled -05:50:20,521 INFO kernel:pci 0000:00:18.5: PME# supported from D0 D3hot D3cold -05:50:20,521 INFO kernel:pci 0000:00:18.5: PME# disabled -05:50:20,521 INFO kernel:pci 0000:00:18.6: PME# supported from D0 D3hot D3cold -05:50:20,521 INFO kernel:pci 0000:00:18.6: PME# disabled -05:50:20,521 INFO kernel:pci 0000:00:18.7: PME# supported from D0 D3hot D3cold -05:50:20,521 INFO kernel:pci 0000:00:18.7: PME# disabled -05:50:20,521 INFO kernel:pci 0000:00:01.0: PCI bridge to [bus 01-01] -05:50:20,521 DEBUG kernel:pci 0000:00:01.0: bridge window [io 0xf000-0x0000] (disabled) -05:50:20,521 DEBUG kernel:pci 0000:00:01.0: bridge window [mem 0xfff00000-0x000fffff] (disabled) -05:50:20,521 DEBUG kernel:pci 0000:00:01.0: bridge window [mem 0xfff00000-0x000fffff pref] (disabled) -05:50:20,521 DEBUG kernel:pci 0000:02:00.0: reg 10: [mem 0xd1020000-0xd103ffff 64bit] -05:50:20,521 DEBUG kernel:pci 0000:02:00.0: reg 18: [mem 0xd1000000-0xd100ffff 64bit] -05:50:20,521 DEBUG kernel:pci 0000:02:00.0: reg 20: [io 0x2000-0x203f] -05:50:20,521 DEBUG kernel:pci 0000:02:00.0: reg 30: [mem 0x00000000-0x0000ffff pref] -05:50:20,521 INFO kernel:pci 0000:02:00.0: PME# supported from D0 D3hot D3cold -05:50:20,521 INFO kernel:pci 0000:02:00.0: PME# disabled -05:50:20,521 DEBUG kernel:pci 0000:02:01.0: reg 10: [mem 0xd1040000-0xd105ffff 64bit] -05:50:20,521 DEBUG kernel:pci 0000:02:01.0: reg 18: [mem 0xd1010000-0xd101ffff 64bit] -05:50:20,521 DEBUG kernel:pci 0000:02:01.0: reg 20: [io 0x2040-0x207f] -05:50:20,521 DEBUG kernel:pci 0000:02:01.0: reg 30: [mem 0x00000000-0x0000ffff pref] -05:50:20,521 INFO kernel:pci 0000:02:01.0: PME# supported from D0 D3hot D3cold -05:50:20,521 INFO kernel:pci 0000:02:01.0: PME# disabled -05:50:20,521 DEBUG kernel:pci 0000:02:02.0: reg 10: [mem 0xd1080000-0xd109ffff 64bit] -05:50:20,521 DEBUG kernel:pci 0000:02:02.0: reg 18: [mem 0xd1060000-0xd106ffff 64bit] -05:50:20,521 DEBUG kernel:pci 0000:02:02.0: reg 20: [io 0x2080-0x20bf] -05:50:20,521 DEBUG kernel:pci 0000:02:02.0: reg 30: [mem 0x00000000-0x0000ffff pref] -05:50:20,521 INFO kernel:pci 0000:02:02.0: PME# supported from D0 D3hot D3cold -05:50:20,521 INFO kernel:pci 0000:02:02.0: PME# disabled -05:50:20,521 DEBUG kernel:pci 0000:02:03.0: reg 10: [mem 0xd10a0000-0xd10bffff 64bit] -05:50:20,521 DEBUG kernel:pci 0000:02:03.0: reg 18: [mem 0xd1070000-0xd107ffff 64bit] -05:50:20,521 DEBUG kernel:pci 0000:02:03.0: reg 20: [io 0x20c0-0x20ff] -05:50:20,521 DEBUG kernel:pci 0000:02:03.0: reg 30: [mem 0x00000000-0x0000ffff pref] -05:50:20,521 INFO kernel:pci 0000:02:03.0: PME# supported from D0 D3hot D3cold -05:50:20,521 INFO kernel:pci 0000:02:03.0: PME# disabled -05:50:20,521 INFO kernel:pci 0000:00:11.0: PCI bridge to [bus 02-02] (subtractive decode) -05:50:20,521 DEBUG kernel:pci 0000:00:11.0: bridge window [io 0x2000-0x3fff] -05:50:20,521 DEBUG kernel:pci 0000:00:11.0: bridge window [mem 0xd1000000-0xd23fffff] -05:50:20,521 DEBUG kernel:pci 0000:00:11.0: bridge window [mem 0xdc400000-0xdc9fffff 64bit pref] -05:50:20,521 DEBUG kernel:pci 0000:00:11.0: bridge window [mem 0x000a0000-0x000bffff] (subtractive decode) -05:50:20,521 DEBUG kernel:pci 0000:00:11.0: bridge window [mem 0x000d0000-0x000d3fff] (subtractive decode) -05:50:20,521 DEBUG kernel:pci 0000:00:11.0: bridge window [mem 0x000d4000-0x000d7fff] (subtractive decode) -05:50:20,521 DEBUG kernel:pci 0000:00:11.0: bridge window [mem 0x000d8000-0x000dbfff] (subtractive decode) -05:50:20,521 DEBUG kernel:pci 0000:00:11.0: bridge window [mem 0x80000000-0xfebfffff] (subtractive decode) -05:50:20,521 DEBUG kernel:pci 0000:00:11.0: bridge window [io 0x0000-0x0cf7] (subtractive decode) -05:50:20,521 DEBUG kernel:pci 0000:00:11.0: bridge window [io 0x0d00-0xfeff] (subtractive decode) -05:50:20,521 INFO kernel:pci 0000:00:15.0: PCI bridge to [bus 03-03] -05:50:20,521 DEBUG kernel:pci 0000:00:15.0: bridge window [io 0x4000-0x4fff] -05:50:20,521 DEBUG kernel:pci 0000:00:15.0: bridge window [mem 0xd2400000-0xd24fffff] -05:50:20,521 DEBUG kernel:pci 0000:00:15.0: bridge window [mem 0xd4400000-0xd44fffff 64bit pref] -05:50:20,521 INFO kernel:pci 0000:00:15.1: PCI bridge to [bus 04-04] -05:50:20,521 DEBUG kernel:pci 0000:00:15.1: bridge window [io 0x8000-0x8fff] -05:50:20,521 DEBUG kernel:pci 0000:00:15.1: bridge window [mem 0xd2800000-0xd28fffff] -05:50:20,521 DEBUG kernel:pci 0000:00:15.1: bridge window [mem 0xd4800000-0xd48fffff 64bit pref] -05:50:20,521 INFO kernel:pci 0000:00:15.2: PCI bridge to [bus 05-05] -05:50:20,521 DEBUG kernel:pci 0000:00:15.2: bridge window [io 0xc000-0xcfff] -05:50:20,521 DEBUG kernel:pci 0000:00:15.2: bridge window [mem 0xd2c00000-0xd2cfffff] -05:50:20,521 DEBUG kernel:pci 0000:00:15.2: bridge window [mem 0xdcb00000-0xdcbfffff 64bit pref] -05:50:20,521 INFO kernel:pci 0000:00:15.3: PCI bridge to [bus 06-06] -05:50:20,521 DEBUG kernel:pci 0000:00:15.3: bridge window [io 0xf000-0x0000] (disabled) -05:50:20,521 DEBUG kernel:pci 0000:00:15.3: bridge window [mem 0xd3000000-0xd30fffff] -05:50:20,521 DEBUG kernel:pci 0000:00:15.3: bridge window [mem 0xdcd00000-0xdcdfffff 64bit pref] -05:50:20,521 INFO kernel:pci 0000:00:15.4: PCI bridge to [bus 07-07] -05:50:20,521 DEBUG kernel:pci 0000:00:15.4: bridge window [io 0xf000-0x0000] (disabled) -05:50:20,521 DEBUG kernel:pci 0000:00:15.4: bridge window [mem 0xd3400000-0xd34fffff] -05:50:20,521 DEBUG kernel:pci 0000:00:15.4: bridge window [mem 0xdcf00000-0xdcffffff 64bit pref] -05:50:20,521 INFO kernel:pci 0000:00:15.5: PCI bridge to [bus 08-08] -05:50:20,521 DEBUG kernel:pci 0000:00:15.5: bridge window [io 0xf000-0x0000] (disabled) -05:50:20,521 DEBUG kernel:pci 0000:00:15.5: bridge window [mem 0xd3800000-0xd38fffff] -05:50:20,521 DEBUG kernel:pci 0000:00:15.5: bridge window [mem 0xdd100000-0xdd1fffff 64bit pref] -05:50:20,521 INFO kernel:pci 0000:00:15.6: PCI bridge to [bus 09-09] -05:50:20,521 DEBUG kernel:pci 0000:00:15.6: bridge window [io 0xf000-0x0000] (disabled) -05:50:20,521 DEBUG kernel:pci 0000:00:15.6: bridge window [mem 0xd3c00000-0xd3cfffff] -05:50:20,521 DEBUG kernel:pci 0000:00:15.6: bridge window [mem 0xdd300000-0xdd3fffff 64bit pref] -05:50:20,521 INFO kernel:pci 0000:00:15.7: PCI bridge to [bus 0a-0a] -05:50:20,521 DEBUG kernel:pci 0000:00:15.7: bridge window [io 0xf000-0x0000] (disabled) -05:50:20,521 DEBUG kernel:pci 0000:00:15.7: bridge window [mem 0xd4000000-0xd40fffff] -05:50:20,521 DEBUG kernel:pci 0000:00:15.7: bridge window [mem 0xdd500000-0xdd5fffff 64bit pref] -05:50:20,521 INFO kernel:pci 0000:00:16.0: PCI bridge to [bus 0b-0b] -05:50:20,521 DEBUG kernel:pci 0000:00:16.0: bridge window [io 0x5000-0x5fff] -05:50:20,521 DEBUG kernel:pci 0000:00:16.0: bridge window [mem 0xd2500000-0xd25fffff] -05:50:20,521 DEBUG kernel:pci 0000:00:16.0: bridge window [mem 0xd4500000-0xd45fffff 64bit pref] -05:50:20,522 INFO kernel:pci 0000:00:16.1: PCI bridge to [bus 0c-0c] -05:50:20,522 DEBUG kernel:pci 0000:00:16.1: bridge window [io 0x9000-0x9fff] -05:50:20,522 DEBUG kernel:pci 0000:00:16.1: bridge window [mem 0xd2900000-0xd29fffff] -05:50:20,522 DEBUG kernel:pci 0000:00:16.1: bridge window [mem 0xd4900000-0xd49fffff 64bit pref] -05:50:20,522 INFO kernel:pci 0000:00:16.2: PCI bridge to [bus 0d-0d] -05:50:20,522 DEBUG kernel:pci 0000:00:16.2: bridge window [io 0xd000-0xdfff] -05:50:20,522 DEBUG kernel:pci 0000:00:16.2: bridge window [mem 0xd2d00000-0xd2dfffff] -05:50:20,522 DEBUG kernel:pci 0000:00:16.2: bridge window [mem 0xd4b00000-0xd4bfffff 64bit pref] -05:50:20,522 INFO kernel:pci 0000:00:16.3: PCI bridge to [bus 0e-0e] -05:50:20,522 DEBUG kernel:pci 0000:00:16.3: bridge window [io 0xf000-0x0000] (disabled) -05:50:20,522 DEBUG kernel:pci 0000:00:16.3: bridge window [mem 0xd3100000-0xd31fffff] -05:50:20,522 DEBUG kernel:pci 0000:00:16.3: bridge window [mem 0xd4d00000-0xd4dfffff 64bit pref] -05:50:20,522 INFO kernel:pci 0000:00:16.4: PCI bridge to [bus 0f-0f] -05:50:20,522 DEBUG kernel:pci 0000:00:16.4: bridge window [io 0xf000-0x0000] (disabled) -05:50:20,522 DEBUG kernel:pci 0000:00:16.4: bridge window [mem 0xd3500000-0xd35fffff] -05:50:20,522 DEBUG kernel:pci 0000:00:16.4: bridge window [mem 0xd4f00000-0xd4ffffff 64bit pref] -05:50:20,522 INFO kernel:pci 0000:00:16.5: PCI bridge to [bus 10-10] -05:50:20,522 DEBUG kernel:pci 0000:00:16.5: bridge window [io 0xf000-0x0000] (disabled) -05:50:20,522 DEBUG kernel:pci 0000:00:16.5: bridge window [mem 0xd3900000-0xd39fffff] -05:50:20,522 DEBUG kernel:pci 0000:00:16.5: bridge window [mem 0xd5100000-0xd51fffff 64bit pref] -05:50:20,522 INFO kernel:pci 0000:00:16.6: PCI bridge to [bus 11-11] -05:50:20,522 DEBUG kernel:pci 0000:00:16.6: bridge window [io 0xf000-0x0000] (disabled) -05:50:20,522 DEBUG kernel:pci 0000:00:16.6: bridge window [mem 0xd3d00000-0xd3dfffff] -05:50:20,522 DEBUG kernel:pci 0000:00:16.6: bridge window [mem 0xd5300000-0xd53fffff 64bit pref] -05:50:20,522 INFO kernel:pci 0000:00:16.7: PCI bridge to [bus 12-12] -05:50:20,522 DEBUG kernel:pci 0000:00:16.7: bridge window [io 0xf000-0x0000] (disabled) -05:50:20,522 DEBUG kernel:pci 0000:00:16.7: bridge window [mem 0xd4100000-0xd41fffff] -05:50:20,522 DEBUG kernel:pci 0000:00:16.7: bridge window [mem 0xd5500000-0xd55fffff 64bit pref] -05:50:20,522 INFO kernel:pci 0000:00:17.0: PCI bridge to [bus 13-13] -05:50:20,522 DEBUG kernel:pci 0000:00:17.0: bridge window [io 0x6000-0x6fff] -05:50:20,522 DEBUG kernel:pci 0000:00:17.0: bridge window [mem 0xd2600000-0xd26fffff] -05:50:20,522 DEBUG kernel:pci 0000:00:17.0: bridge window [mem 0xd4600000-0xd46fffff 64bit pref] -05:50:20,522 INFO kernel:pci 0000:00:17.1: PCI bridge to [bus 14-14] -05:50:20,522 DEBUG kernel:pci 0000:00:17.1: bridge window [io 0xa000-0xafff] -05:50:20,522 DEBUG kernel:pci 0000:00:17.1: bridge window [mem 0xd2a00000-0xd2afffff] -05:50:20,522 DEBUG kernel:pci 0000:00:17.1: bridge window [mem 0xdca00000-0xdcafffff 64bit pref] -05:50:20,522 INFO kernel:pci 0000:00:17.2: PCI bridge to [bus 15-15] -05:50:20,522 DEBUG kernel:pci 0000:00:17.2: bridge window [io 0xe000-0xefff] -05:50:20,522 DEBUG kernel:pci 0000:00:17.2: bridge window [mem 0xd2e00000-0xd2efffff] -05:50:20,522 DEBUG kernel:pci 0000:00:17.2: bridge window [mem 0xdcc00000-0xdccfffff 64bit pref] -05:50:20,522 INFO kernel:pci 0000:00:17.3: PCI bridge to [bus 16-16] -05:50:20,522 DEBUG kernel:pci 0000:00:17.3: bridge window [io 0xf000-0x0000] (disabled) -05:50:20,522 DEBUG kernel:pci 0000:00:17.3: bridge window [mem 0xd3200000-0xd32fffff] -05:50:20,522 DEBUG kernel:pci 0000:00:17.3: bridge window [mem 0xdce00000-0xdcefffff 64bit pref] -05:50:20,522 INFO kernel:pci 0000:00:17.4: PCI bridge to [bus 17-17] -05:50:20,522 DEBUG kernel:pci 0000:00:17.4: bridge window [io 0xf000-0x0000] (disabled) -05:50:20,522 DEBUG kernel:pci 0000:00:17.4: bridge window [mem 0xd3600000-0xd36fffff] -05:50:20,522 DEBUG kernel:pci 0000:00:17.4: bridge window [mem 0xdd000000-0xdd0fffff 64bit pref] -05:50:20,522 INFO kernel:pci 0000:00:17.5: PCI bridge to [bus 18-18] -05:50:20,522 DEBUG kernel:pci 0000:00:17.5: bridge window [io 0xf000-0x0000] (disabled) -05:50:20,522 DEBUG kernel:pci 0000:00:17.5: bridge window [mem 0xd3a00000-0xd3afffff] -05:50:20,522 DEBUG kernel:pci 0000:00:17.5: bridge window [mem 0xdd200000-0xdd2fffff 64bit pref] -05:50:20,522 INFO kernel:pci 0000:00:17.6: PCI bridge to [bus 19-19] -05:50:20,522 DEBUG kernel:pci 0000:00:17.6: bridge window [io 0xf000-0x0000] (disabled) -05:50:20,522 DEBUG kernel:pci 0000:00:17.6: bridge window [mem 0xd3e00000-0xd3efffff] -05:50:20,522 DEBUG kernel:pci 0000:00:17.6: bridge window [mem 0xdd400000-0xdd4fffff 64bit pref] -05:50:20,522 INFO kernel:pci 0000:00:17.7: PCI bridge to [bus 1a-1a] -05:50:20,522 DEBUG kernel:pci 0000:00:17.7: bridge window [io 0xf000-0x0000] (disabled) -05:50:20,522 DEBUG kernel:pci 0000:00:17.7: bridge window [mem 0xd4200000-0xd42fffff] -05:50:20,522 DEBUG kernel:pci 0000:00:17.7: bridge window [mem 0xdd600000-0xdd6fffff 64bit pref] -05:50:20,522 INFO kernel:pci 0000:00:18.0: PCI bridge to [bus 1b-1b] -05:50:20,522 DEBUG kernel:pci 0000:00:18.0: bridge window [io 0x7000-0x7fff] -05:50:20,522 DEBUG kernel:pci 0000:00:18.0: bridge window [mem 0xd2700000-0xd27fffff] -05:50:20,522 DEBUG kernel:pci 0000:00:18.0: bridge window [mem 0xd4700000-0xd47fffff 64bit pref] -05:50:20,522 INFO kernel:pci 0000:00:18.1: PCI bridge to [bus 1c-1c] -05:50:20,522 DEBUG kernel:pci 0000:00:18.1: bridge window [io 0xb000-0xbfff] -05:50:20,522 DEBUG kernel:pci 0000:00:18.1: bridge window [mem 0xd2b00000-0xd2bfffff] -05:50:20,522 DEBUG kernel:pci 0000:00:18.1: bridge window [mem 0xd4a00000-0xd4afffff 64bit pref] -05:50:20,522 INFO kernel:pci 0000:00:18.2: PCI bridge to [bus 1d-1d] -05:50:20,522 DEBUG kernel:pci 0000:00:18.2: bridge window [io 0xf000-0xffff] -05:50:20,522 DEBUG kernel:pci 0000:00:18.2: bridge window [mem 0xd2f00000-0xd2ffffff] -05:50:20,522 DEBUG kernel:pci 0000:00:18.2: bridge window [mem 0xd4c00000-0xd4cfffff 64bit pref] -05:50:20,522 INFO kernel:pci 0000:00:18.3: PCI bridge to [bus 1e-1e] -05:50:20,522 DEBUG kernel:pci 0000:00:18.3: bridge window [io 0xf000-0x0000] (disabled) -05:50:20,522 DEBUG kernel:pci 0000:00:18.3: bridge window [mem 0xd3300000-0xd33fffff] -05:50:20,522 DEBUG kernel:pci 0000:00:18.3: bridge window [mem 0xd4e00000-0xd4efffff 64bit pref] -05:50:20,522 INFO kernel:pci 0000:00:18.4: PCI bridge to [bus 1f-1f] -05:50:20,522 DEBUG kernel:pci 0000:00:18.4: bridge window [io 0xf000-0x0000] (disabled) -05:50:20,522 DEBUG kernel:pci 0000:00:18.4: bridge window [mem 0xd3700000-0xd37fffff] -05:50:20,522 DEBUG kernel:pci 0000:00:18.4: bridge window [mem 0xd5000000-0xd50fffff 64bit pref] -05:50:20,522 INFO kernel:pci 0000:00:18.5: PCI bridge to [bus 20-20] -05:50:20,522 DEBUG kernel:pci 0000:00:18.5: bridge window [io 0xf000-0x0000] (disabled) -05:50:20,522 DEBUG kernel:pci 0000:00:18.5: bridge window [mem 0xd3b00000-0xd3bfffff] -05:50:20,522 DEBUG kernel:pci 0000:00:18.5: bridge window [mem 0xd5200000-0xd52fffff 64bit pref] -05:50:20,522 INFO kernel:pci 0000:00:18.6: PCI bridge to [bus 21-21] -05:50:20,522 DEBUG kernel:pci 0000:00:18.6: bridge window [io 0xf000-0x0000] (disabled) -05:50:20,522 DEBUG kernel:pci 0000:00:18.6: bridge window [mem 0xd3f00000-0xd3ffffff] -05:50:20,522 DEBUG kernel:pci 0000:00:18.6: bridge window [mem 0xd5400000-0xd54fffff 64bit pref] -05:50:20,522 INFO kernel:pci 0000:00:18.7: PCI bridge to [bus 22-22] -05:50:20,522 DEBUG kernel:pci 0000:00:18.7: bridge window [io 0xf000-0x0000] (disabled) -05:50:20,522 DEBUG kernel:pci 0000:00:18.7: bridge window [mem 0xd4300000-0xd43fffff] -05:50:20,522 DEBUG kernel:pci 0000:00:18.7: bridge window [mem 0xd5600000-0xd56fffff 64bit pref] -05:50:20,522 DEBUG kernel:ACPI: PCI Interrupt Routing Table [\_SB_.PCI0._PRT] -05:50:20,522 INFO kernel: pci0000:00: Requesting ACPI _OSC control (0x1d) -05:50:20,522 INFO kernel: pci0000:00: ACPI _OSC control (0x15) granted -05:50:20,522 INFO kernel:ACPI: PCI Interrupt Link [LNKA] (IRQs 3 4 5 6 7 *9 10 11 14 15) -05:50:20,522 INFO kernel:ACPI: PCI Interrupt Link [LNKB] (IRQs 3 4 5 6 7 9 10 *11 14 15) -05:50:20,522 INFO kernel:ACPI: PCI Interrupt Link [LNKC] (IRQs 3 4 5 6 7 9 *10 11 14 15) -05:50:20,522 INFO kernel:ACPI: PCI Interrupt Link [LNKD] (IRQs 3 4 *5 6 7 9 10 11 14 15) -05:50:20,522 INFO kernel:vgaarb: device added: PCI:0000:00:0f.0,decodes=io+mem,owns=io+mem,locks=none -05:50:20,522 INFO kernel:vgaarb: loaded -05:50:20,522 INFO kernel:vgaarb: bridge control possible 0000:00:0f.0 -05:50:20,522 NOTICE kernel:SCSI subsystem initialized -05:50:20,522 DEBUG kernel:libata version 3.00 loaded. -05:50:20,522 INFO kernel:usbcore: registered new interface driver usbfs -05:50:20,522 INFO kernel:usbcore: registered new interface driver hub -05:50:20,522 INFO kernel:usbcore: registered new device driver usb -05:50:20,522 INFO kernel:PCI: Using ACPI for IRQ routing -05:50:20,522 DEBUG kernel:PCI: old code would have set cacheline size to 32 bytes, but clflush_size = 64 -05:50:20,522 DEBUG kernel:PCI: pci_cache_line_size set to 64 bytes -05:50:20,522 INFO kernel:pci 0000:00:18.2: no compatible bridge window for [io 0xf000-0xffff] -05:50:20,522 INFO kernel:pci 0000:00:18.2: can't reserve window [io 0xf000-0xffff] -05:50:20,522 NOTICE kernel:lo: Dropping TSO features since no CSUM feature. -05:50:20,522 INFO kernel:NetLabel: Initializing -05:50:20,522 INFO kernel:NetLabel: domain hash size = 128 -05:50:20,522 INFO kernel:NetLabel: protocols = UNLABELED CIPSOv4 -05:50:20,522 INFO kernel:NetLabel: unlabeled traffic allowed by default -05:50:20,522 INFO kernel:HPET: 16 timers in total, 0 timers will be used for per-cpu timer -05:50:20,522 INFO kernel:hpet0: at MMIO 0xfed00000, IRQs 2, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 -05:50:20,522 INFO kernel:hpet0: 16 comparators, 64-bit 14.318180 MHz counter -05:50:20,522 INFO kernel:Switching to clocksource hpet -05:50:20,522 INFO kernel:pnp: PnP ACPI init -05:50:20,522 INFO kernel:ACPI: bus type pnp registered -05:50:20,522 DEBUG kernel:pnp 00:00: [io 0x0cf8-0x0cff] -05:50:20,522 DEBUG kernel:pnp 00:00: Plug and Play ACPI device, IDs PNP0a03 PNP0a08 (active) -05:50:20,522 DEBUG kernel:pnp 00:01: [io 0x0010-0x001f] -05:50:20,522 DEBUG kernel:pnp 00:01: [io 0x0024-0x0025] -05:50:20,522 DEBUG kernel:pnp 00:01: [io 0x0028-0x0029] -05:50:20,522 DEBUG kernel:pnp 00:01: [io 0x002c-0x002d] -05:50:20,522 DEBUG kernel:pnp 00:01: [io 0x002e-0x002f] -05:50:20,522 DEBUG kernel:pnp 00:01: [io 0x0030-0x0031] -05:50:20,522 DEBUG kernel:pnp 00:01: [io 0x0034-0x0035] -05:50:20,522 DEBUG kernel:pnp 00:01: [io 0x0038-0x0039] -05:50:20,522 DEBUG kernel:pnp 00:01: [io 0x003c-0x003d] -05:50:20,522 DEBUG kernel:pnp 00:01: [io 0x0050-0x0053] -05:50:20,522 DEBUG kernel:pnp 00:01: [io 0x0072-0x0077] -05:50:20,522 DEBUG kernel:pnp 00:01: [io 0x0080] -05:50:20,522 DEBUG kernel:pnp 00:01: [io 0x0090-0x009f] -05:50:20,522 DEBUG kernel:pnp 00:01: [io 0x00a4-0x00a5] -05:50:20,522 DEBUG kernel:pnp 00:01: [io 0x00a8-0x00a9] -05:50:20,522 DEBUG kernel:pnp 00:01: [io 0x00ac-0x00ad] -05:50:20,522 DEBUG kernel:pnp 00:01: [io 0x00b0-0x00b5] -05:50:20,522 DEBUG kernel:pnp 00:01: [io 0x00b8-0x00b9] -05:50:20,522 DEBUG kernel:pnp 00:01: [io 0x00bc-0x00bd] -05:50:20,522 DEBUG kernel:pnp 00:01: [io 0x1000-0x103f] -05:50:20,522 DEBUG kernel:pnp 00:01: [io 0x1040-0x104f] -05:50:20,522 DEBUG kernel:pnp 00:01: [io 0x0cf0-0x0cf1] -05:50:20,522 DEBUG kernel:pnp 00:01: Plug and Play ACPI device, IDs PNP0c02 (active) -05:50:20,522 DEBUG kernel:pnp 00:02: [io 0x0000-0x000f] -05:50:20,522 DEBUG kernel:pnp 00:02: [io 0x0081-0x008f] -05:50:20,522 DEBUG kernel:pnp 00:02: [io 0x00c0-0x00df] -05:50:20,522 DEBUG kernel:pnp 00:02: [dma 4] -05:50:20,522 DEBUG kernel:pnp 00:02: Plug and Play ACPI device, IDs PNP0200 (active) -05:50:20,522 DEBUG kernel:pnp 00:03: [io 0x0020-0x0021] -05:50:20,522 DEBUG kernel:pnp 00:03: [io 0x00a0-0x00a1] -05:50:20,522 DEBUG kernel:pnp 00:03: [io 0x04d0-0x04d1] -05:50:20,522 DEBUG kernel:pnp 00:03: [irq 2 disabled] -05:50:20,522 DEBUG kernel:pnp 00:03: Plug and Play ACPI device, IDs PNP0001 (active) -05:50:20,522 DEBUG kernel:pnp 00:04: [io 0x0070-0x0071] -05:50:20,522 DEBUG kernel:pnp 00:04: [irq 8] -05:50:20,522 DEBUG kernel:pnp 00:04: Plug and Play ACPI device, IDs PNP0b00 (active) -05:50:20,522 DEBUG kernel:pnp 00:05: [io 0x0061] -05:50:20,522 DEBUG kernel:pnp 00:05: Plug and Play ACPI device, IDs PNP0800 (active) -05:50:20,522 DEBUG kernel:pnp 00:06: [io 0x0060] -05:50:20,522 DEBUG kernel:pnp 00:06: [io 0x0064] -05:50:20,522 DEBUG kernel:pnp 00:06: [irq 1] -05:50:20,522 DEBUG kernel:pnp 00:06: Plug and Play ACPI device, IDs PNP0303 (active) -05:50:20,522 DEBUG kernel:pnp 00:07: [irq 12] -05:50:20,522 DEBUG kernel:pnp 00:07: Plug and Play ACPI device, IDs PNP0f13 (active) -05:50:20,522 DEBUG kernel:pnp 00:08: [mem 0xfed00000-0xfed003ff] -05:50:20,522 DEBUG kernel:pnp 00:08: Plug and Play ACPI device, IDs PNP0103 PNP0c01 (active) -05:50:20,522 DEBUG kernel:pnp 00:09: [io 0x0378-0x037f] -05:50:20,522 DEBUG kernel:pnp 00:09: [irq 7] -05:50:20,522 DEBUG kernel:pnp 00:09: Plug and Play ACPI device, IDs PNP0400 (active) -05:50:20,522 DEBUG kernel:pnp 00:0a: [io 0x03f8-0x03ff] -05:50:20,522 DEBUG kernel:pnp 00:0a: [irq 4] -05:50:20,522 DEBUG kernel:pnp 00:0a: Plug and Play ACPI device, IDs PNP0501 (active) -05:50:20,522 DEBUG kernel:pnp 00:0b: [io 0x02f8-0x02ff] -05:50:20,522 DEBUG kernel:pnp 00:0b: [irq 3] -05:50:20,522 DEBUG kernel:pnp 00:0b: Plug and Play ACPI device, IDs PNP0501 (active) -05:50:20,522 DEBUG kernel:pnp 00:0c: [io 0x03f0-0x03f5] -05:50:20,522 DEBUG kernel:pnp 00:0c: [io 0x03f7] -05:50:20,522 DEBUG kernel:pnp 00:0c: [irq 6] -05:50:20,522 DEBUG kernel:pnp 00:0c: [dma 2] -05:50:20,522 DEBUG kernel:pnp 00:0c: Plug and Play ACPI device, IDs PNP0700 (active) -05:50:20,522 DEBUG kernel:pnp 00:0d: [mem 0xe0000000-0xefffffff] -05:50:20,522 DEBUG kernel:pnp 00:0d: [io 0x1060-0x107f] -05:50:20,522 DEBUG kernel:pnp 00:0d: [mem 0xd0200000-0xd03fffff] -05:50:20,522 DEBUG kernel:pnp 00:0d: Plug and Play ACPI device, IDs PNP0c02 (active) -05:50:20,522 INFO kernel:pnp: PnP ACPI: found 14 devices -05:50:20,522 INFO kernel:ACPI: ACPI bus type pnp unregistered -05:50:20,522 INFO kernel:system 00:01: [io 0x1000-0x103f] has been reserved -05:50:20,522 INFO kernel:system 00:01: [io 0x1040-0x104f] has been reserved -05:50:20,522 INFO kernel:system 00:01: [io 0x0cf0-0x0cf1] has been reserved -05:50:20,522 INFO kernel:system 00:08: [mem 0xfed00000-0xfed003ff] has been reserved -05:50:20,522 INFO kernel:system 00:0d: [io 0x1060-0x107f] has been reserved -05:50:20,522 INFO kernel:system 00:0d: [mem 0xe0000000-0xefffffff] has been reserved -05:50:20,522 INFO kernel:system 00:0d: [mem 0xd0200000-0xd03fffff] has been reserved -05:50:20,522 DEBUG kernel:PCI: max bus depth: 1 pci_try_num: 2 -05:50:20,522 INFO kernel:pci 0000:00:0f.0: BAR 6: assigned [mem 0x80000000-0x80007fff pref] -05:50:20,522 INFO kernel:pci 0000:00:10.0: BAR 6: assigned [mem 0x80008000-0x8000bfff pref] -05:50:20,522 INFO kernel:pci 0000:00:18.2: BAR 13: can't assign io (size 0x1000) -05:50:20,522 INFO kernel:pci 0000:00:18.7: BAR 13: can't assign io (size 0x1000) -05:50:20,522 INFO kernel:pci 0000:00:18.6: BAR 13: can't assign io (size 0x1000) -05:50:20,522 INFO kernel:pci 0000:00:18.5: BAR 13: can't assign io (size 0x1000) -05:50:20,522 INFO kernel:pci 0000:00:18.4: BAR 13: can't assign io (size 0x1000) -05:50:20,522 INFO kernel:pci 0000:00:18.3: BAR 13: can't assign io (size 0x1000) -05:50:20,523 INFO kernel:pci 0000:00:17.7: BAR 13: can't assign io (size 0x1000) -05:50:20,523 INFO kernel:pci 0000:00:17.6: BAR 13: can't assign io (size 0x1000) -05:50:20,523 INFO kernel:pci 0000:00:17.5: BAR 13: can't assign io (size 0x1000) -05:50:20,523 INFO kernel:pci 0000:00:17.4: BAR 13: can't assign io (size 0x1000) -05:50:20,523 INFO kernel:pci 0000:00:17.3: BAR 13: can't assign io (size 0x1000) -05:50:20,523 INFO kernel:pci 0000:00:16.7: BAR 13: can't assign io (size 0x1000) -05:50:20,523 INFO kernel:pci 0000:00:16.6: BAR 13: can't assign io (size 0x1000) -05:50:20,523 INFO kernel:pci 0000:00:16.5: BAR 13: can't assign io (size 0x1000) -05:50:20,523 INFO kernel:pci 0000:00:16.4: BAR 13: can't assign io (size 0x1000) -05:50:20,523 INFO kernel:pci 0000:00:16.3: BAR 13: can't assign io (size 0x1000) -05:50:20,523 INFO kernel:pci 0000:00:15.7: BAR 13: can't assign io (size 0x1000) -05:50:20,523 INFO kernel:pci 0000:00:15.6: BAR 13: can't assign io (size 0x1000) -05:50:20,523 INFO kernel:pci 0000:00:15.5: BAR 13: can't assign io (size 0x1000) -05:50:20,523 INFO kernel:pci 0000:00:15.4: BAR 13: can't assign io (size 0x1000) -05:50:20,523 INFO kernel:pci 0000:00:15.3: BAR 13: can't assign io (size 0x1000) -05:50:20,523 INFO kernel:pci 0000:00:01.0: PCI bridge to [bus 01-01] -05:50:20,523 INFO kernel:pci 0000:00:01.0: PCI bridge to [bus 01-01] -05:50:20,523 INFO kernel:pci 0000:00:01.0: bridge window [io disabled] -05:50:20,523 INFO kernel:pci 0000:00:01.0: bridge window [mem disabled] -05:50:20,523 INFO kernel:pci 0000:00:01.0: bridge window [mem pref disabled] -05:50:20,523 INFO kernel:pci 0000:02:00.0: BAR 6: assigned [mem 0xdc400000-0xdc40ffff pref] -05:50:20,523 INFO kernel:pci 0000:02:01.0: BAR 6: assigned [mem 0xdc410000-0xdc41ffff pref] -05:50:20,523 INFO kernel:pci 0000:02:02.0: BAR 6: assigned [mem 0xdc420000-0xdc42ffff pref] -05:50:20,523 INFO kernel:pci 0000:02:03.0: BAR 6: assigned [mem 0xdc430000-0xdc43ffff pref] -05:50:20,523 INFO kernel:pci 0000:00:11.0: PCI bridge to [bus 02-02] -05:50:20,523 INFO kernel:pci 0000:00:11.0: PCI bridge to [bus 02-02] -05:50:20,523 INFO kernel:pci 0000:00:11.0: bridge window [io 0x2000-0x3fff] -05:50:20,523 INFO kernel:pci 0000:00:11.0: bridge window [mem 0xd1000000-0xd23fffff] -05:50:20,523 INFO kernel:pci 0000:00:11.0: bridge window [mem 0xdc400000-0xdc9fffff 64bit pref] -05:50:20,523 INFO kernel:pci 0000:00:15.0: PCI bridge to [bus 03-03] -05:50:20,523 INFO kernel:pci 0000:00:15.0: PCI bridge to [bus 03-03] -05:50:20,523 INFO kernel:pci 0000:00:15.0: bridge window [io 0x4000-0x4fff] -05:50:20,523 INFO kernel:pci 0000:00:15.0: bridge window [mem 0xd2400000-0xd24fffff] -05:50:20,523 INFO kernel:pci 0000:00:15.0: bridge window [mem 0xd4400000-0xd44fffff 64bit pref] -05:50:20,523 INFO kernel:pci 0000:00:15.1: PCI bridge to [bus 04-04] -05:50:20,523 INFO kernel:pci 0000:00:15.1: PCI bridge to [bus 04-04] -05:50:20,523 INFO kernel:pci 0000:00:15.1: bridge window [io 0x8000-0x8fff] -05:50:20,523 INFO kernel:pci 0000:00:15.1: bridge window [mem 0xd2800000-0xd28fffff] -05:50:20,523 INFO kernel:pci 0000:00:15.1: bridge window [mem 0xd4800000-0xd48fffff 64bit pref] -05:50:20,523 INFO kernel:pci 0000:00:15.2: PCI bridge to [bus 05-05] -05:50:20,523 INFO kernel:pci 0000:00:15.2: PCI bridge to [bus 05-05] -05:50:20,523 INFO kernel:pci 0000:00:15.2: bridge window [io 0xc000-0xcfff] -05:50:20,523 INFO kernel:pci 0000:00:15.2: bridge window [mem 0xd2c00000-0xd2cfffff] -05:50:20,523 INFO kernel:pci 0000:00:15.2: bridge window [mem 0xdcb00000-0xdcbfffff 64bit pref] -05:50:20,523 INFO kernel:pci 0000:00:15.3: PCI bridge to [bus 06-06] -05:50:20,523 INFO kernel:pci 0000:00:15.3: PCI bridge to [bus 06-06] -05:50:20,523 INFO kernel:pci 0000:00:15.3: bridge window [io disabled] -05:50:20,523 INFO kernel:pci 0000:00:15.3: bridge window [mem 0xd3000000-0xd30fffff] -05:50:20,523 INFO kernel:pci 0000:00:15.3: bridge window [mem 0xdcd00000-0xdcdfffff 64bit pref] -05:50:20,523 INFO kernel:pci 0000:00:15.4: PCI bridge to [bus 07-07] -05:50:20,523 INFO kernel:pci 0000:00:15.4: PCI bridge to [bus 07-07] -05:50:20,523 INFO kernel:pci 0000:00:15.4: bridge window [io disabled] -05:50:20,523 INFO kernel:pci 0000:00:15.4: bridge window [mem 0xd3400000-0xd34fffff] -05:50:20,523 INFO kernel:pci 0000:00:15.4: bridge window [mem 0xdcf00000-0xdcffffff 64bit pref] -05:50:20,523 INFO kernel:pci 0000:00:15.5: PCI bridge to [bus 08-08] -05:50:20,523 INFO kernel:pci 0000:00:15.5: PCI bridge to [bus 08-08] -05:50:20,523 INFO kernel:pci 0000:00:15.5: bridge window [io disabled] -05:50:20,523 INFO kernel:pci 0000:00:15.5: bridge window [mem 0xd3800000-0xd38fffff] -05:50:20,523 INFO kernel:pci 0000:00:15.5: bridge window [mem 0xdd100000-0xdd1fffff 64bit pref] -05:50:20,523 INFO kernel:pci 0000:00:15.6: PCI bridge to [bus 09-09] -05:50:20,523 INFO kernel:pci 0000:00:15.6: PCI bridge to [bus 09-09] -05:50:20,523 INFO kernel:pci 0000:00:15.6: bridge window [io disabled] -05:50:20,523 INFO kernel:pci 0000:00:15.6: bridge window [mem 0xd3c00000-0xd3cfffff] -05:50:20,523 INFO kernel:pci 0000:00:15.6: bridge window [mem 0xdd300000-0xdd3fffff 64bit pref] -05:50:20,523 INFO kernel:pci 0000:00:15.7: PCI bridge to [bus 0a-0a] -05:50:20,523 INFO kernel:pci 0000:00:15.7: PCI bridge to [bus 0a-0a] -05:50:20,523 INFO kernel:pci 0000:00:15.7: bridge window [io disabled] -05:50:20,523 INFO kernel:pci 0000:00:15.7: bridge window [mem 0xd4000000-0xd40fffff] -05:50:20,523 INFO kernel:pci 0000:00:15.7: bridge window [mem 0xdd500000-0xdd5fffff 64bit pref] -05:50:20,523 INFO kernel:pci 0000:00:16.0: PCI bridge to [bus 0b-0b] -05:50:20,523 INFO kernel:pci 0000:00:16.0: PCI bridge to [bus 0b-0b] -05:50:20,523 INFO kernel:pci 0000:00:16.0: bridge window [io 0x5000-0x5fff] -05:50:20,523 INFO kernel:pci 0000:00:16.0: bridge window [mem 0xd2500000-0xd25fffff] -05:50:20,523 INFO kernel:pci 0000:00:16.0: bridge window [mem 0xd4500000-0xd45fffff 64bit pref] -05:50:20,523 INFO kernel:pci 0000:00:16.1: PCI bridge to [bus 0c-0c] -05:50:20,523 INFO kernel:pci 0000:00:16.1: PCI bridge to [bus 0c-0c] -05:50:20,523 INFO kernel:pci 0000:00:16.1: bridge window [io 0x9000-0x9fff] -05:50:20,523 INFO kernel:pci 0000:00:16.1: bridge window [mem 0xd2900000-0xd29fffff] -05:50:20,523 INFO kernel:pci 0000:00:16.1: bridge window [mem 0xd4900000-0xd49fffff 64bit pref] -05:50:20,523 INFO kernel:pci 0000:00:16.2: PCI bridge to [bus 0d-0d] -05:50:20,523 INFO kernel:pci 0000:00:16.2: PCI bridge to [bus 0d-0d] -05:50:20,523 INFO kernel:pci 0000:00:16.2: bridge window [io 0xd000-0xdfff] -05:50:20,523 INFO kernel:pci 0000:00:16.2: bridge window [mem 0xd2d00000-0xd2dfffff] -05:50:20,523 INFO kernel:pci 0000:00:16.2: bridge window [mem 0xd4b00000-0xd4bfffff 64bit pref] -05:50:20,523 INFO kernel:pci 0000:00:16.3: PCI bridge to [bus 0e-0e] -05:50:20,523 INFO kernel:pci 0000:00:16.3: PCI bridge to [bus 0e-0e] -05:50:20,523 INFO kernel:pci 0000:00:16.3: bridge window [io disabled] -05:50:20,523 INFO kernel:pci 0000:00:16.3: bridge window [mem 0xd3100000-0xd31fffff] -05:50:20,523 INFO kernel:pci 0000:00:16.3: bridge window [mem 0xd4d00000-0xd4dfffff 64bit pref] -05:50:20,523 INFO kernel:pci 0000:00:16.4: PCI bridge to [bus 0f-0f] -05:50:20,523 INFO kernel:pci 0000:00:16.4: PCI bridge to [bus 0f-0f] -05:50:20,523 INFO kernel:pci 0000:00:16.4: bridge window [io disabled] -05:50:20,523 INFO kernel:pci 0000:00:16.4: bridge window [mem 0xd3500000-0xd35fffff] -05:50:20,523 INFO kernel:pci 0000:00:16.4: bridge window [mem 0xd4f00000-0xd4ffffff 64bit pref] -05:50:20,523 INFO kernel:pci 0000:00:16.5: PCI bridge to [bus 10-10] -05:50:20,523 INFO kernel:pci 0000:00:16.5: PCI bridge to [bus 10-10] -05:50:20,523 INFO kernel:pci 0000:00:16.5: bridge window [io disabled] -05:50:20,523 INFO kernel:pci 0000:00:16.5: bridge window [mem 0xd3900000-0xd39fffff] -05:50:20,523 INFO kernel:pci 0000:00:16.5: bridge window [mem 0xd5100000-0xd51fffff 64bit pref] -05:50:20,523 INFO kernel:pci 0000:00:16.6: PCI bridge to [bus 11-11] -05:50:20,523 INFO kernel:pci 0000:00:16.6: PCI bridge to [bus 11-11] -05:50:20,523 INFO kernel:pci 0000:00:16.6: bridge window [io disabled] -05:50:20,523 INFO kernel:pci 0000:00:16.6: bridge window [mem 0xd3d00000-0xd3dfffff] -05:50:20,523 INFO kernel:pci 0000:00:16.6: bridge window [mem 0xd5300000-0xd53fffff 64bit pref] -05:50:20,523 INFO kernel:pci 0000:00:16.7: PCI bridge to [bus 12-12] -05:50:20,523 INFO kernel:pci 0000:00:16.7: PCI bridge to [bus 12-12] -05:50:20,523 INFO kernel:pci 0000:00:16.7: bridge window [io disabled] -05:50:20,523 INFO kernel:pci 0000:00:16.7: bridge window [mem 0xd4100000-0xd41fffff] -05:50:20,523 INFO kernel:pci 0000:00:16.7: bridge window [mem 0xd5500000-0xd55fffff 64bit pref] -05:50:20,523 INFO kernel:pci 0000:00:17.0: PCI bridge to [bus 13-13] -05:50:20,523 INFO kernel:pci 0000:00:17.0: PCI bridge to [bus 13-13] -05:50:20,523 INFO kernel:pci 0000:00:17.0: bridge window [io 0x6000-0x6fff] -05:50:20,523 INFO kernel:pci 0000:00:17.0: bridge window [mem 0xd2600000-0xd26fffff] -05:50:20,523 INFO kernel:pci 0000:00:17.0: bridge window [mem 0xd4600000-0xd46fffff 64bit pref] -05:50:20,523 INFO kernel:pci 0000:00:17.1: PCI bridge to [bus 14-14] -05:50:20,523 INFO kernel:pci 0000:00:17.1: PCI bridge to [bus 14-14] -05:50:20,523 INFO kernel:pci 0000:00:17.1: bridge window [io 0xa000-0xafff] -05:50:20,523 INFO kernel:pci 0000:00:17.1: bridge window [mem 0xd2a00000-0xd2afffff] -05:50:20,523 INFO kernel:pci 0000:00:17.1: bridge window [mem 0xdca00000-0xdcafffff 64bit pref] -05:50:20,523 INFO kernel:pci 0000:00:17.2: PCI bridge to [bus 15-15] -05:50:20,523 INFO kernel:pci 0000:00:17.2: PCI bridge to [bus 15-15] -05:50:20,523 INFO kernel:pci 0000:00:17.2: bridge window [io 0xe000-0xefff] -05:50:20,523 INFO kernel:pci 0000:00:17.2: bridge window [mem 0xd2e00000-0xd2efffff] -05:50:20,523 INFO kernel:pci 0000:00:17.2: bridge window [mem 0xdcc00000-0xdccfffff 64bit pref] -05:50:20,523 INFO kernel:pci 0000:00:17.3: PCI bridge to [bus 16-16] -05:50:20,523 INFO kernel:pci 0000:00:17.3: PCI bridge to [bus 16-16] -05:50:20,523 INFO kernel:pci 0000:00:17.3: bridge window [io disabled] -05:50:20,523 INFO kernel:pci 0000:00:17.3: bridge window [mem 0xd3200000-0xd32fffff] -05:50:20,523 INFO kernel:pci 0000:00:17.3: bridge window [mem 0xdce00000-0xdcefffff 64bit pref] -05:50:20,523 INFO kernel:pci 0000:00:17.4: PCI bridge to [bus 17-17] -05:50:20,523 INFO kernel:pci 0000:00:17.4: PCI bridge to [bus 17-17] -05:50:20,523 INFO kernel:pci 0000:00:17.4: bridge window [io disabled] -05:50:20,523 INFO kernel:pci 0000:00:17.4: bridge window [mem 0xd3600000-0xd36fffff] -05:50:20,523 INFO kernel:pci 0000:00:17.4: bridge window [mem 0xdd000000-0xdd0fffff 64bit pref] -05:50:20,523 INFO kernel:pci 0000:00:17.5: PCI bridge to [bus 18-18] -05:50:20,523 INFO kernel:pci 0000:00:17.5: PCI bridge to [bus 18-18] -05:50:20,523 INFO kernel:pci 0000:00:17.5: bridge window [io disabled] -05:50:20,523 INFO kernel:pci 0000:00:17.5: bridge window [mem 0xd3a00000-0xd3afffff] -05:50:20,523 INFO kernel:pci 0000:00:17.5: bridge window [mem 0xdd200000-0xdd2fffff 64bit pref] -05:50:20,523 INFO kernel:pci 0000:00:17.6: PCI bridge to [bus 19-19] -05:50:20,523 INFO kernel:pci 0000:00:17.6: PCI bridge to [bus 19-19] -05:50:20,523 INFO kernel:pci 0000:00:17.6: bridge window [io disabled] -05:50:20,523 INFO kernel:pci 0000:00:17.6: bridge window [mem 0xd3e00000-0xd3efffff] -05:50:20,523 INFO kernel:pci 0000:00:17.6: bridge window [mem 0xdd400000-0xdd4fffff 64bit pref] -05:50:20,523 INFO kernel:pci 0000:00:17.7: PCI bridge to [bus 1a-1a] -05:50:20,523 INFO kernel:pci 0000:00:17.7: PCI bridge to [bus 1a-1a] -05:50:20,523 INFO kernel:pci 0000:00:17.7: bridge window [io disabled] -05:50:20,523 INFO kernel:pci 0000:00:17.7: bridge window [mem 0xd4200000-0xd42fffff] -05:50:20,523 INFO kernel:pci 0000:00:17.7: bridge window [mem 0xdd600000-0xdd6fffff 64bit pref] -05:50:20,523 INFO kernel:pci 0000:00:18.0: PCI bridge to [bus 1b-1b] -05:50:20,523 INFO kernel:pci 0000:00:18.0: PCI bridge to [bus 1b-1b] -05:50:20,523 INFO kernel:pci 0000:00:18.0: bridge window [io 0x7000-0x7fff] -05:50:20,523 INFO kernel:pci 0000:00:18.0: bridge window [mem 0xd2700000-0xd27fffff] -05:50:20,523 INFO kernel:pci 0000:00:18.0: bridge window [mem 0xd4700000-0xd47fffff 64bit pref] -05:50:20,523 INFO kernel:pci 0000:00:18.1: PCI bridge to [bus 1c-1c] -05:50:20,523 INFO kernel:pci 0000:00:18.1: PCI bridge to [bus 1c-1c] -05:50:20,523 INFO kernel:pci 0000:00:18.1: bridge window [io 0xb000-0xbfff] -05:50:20,523 INFO kernel:pci 0000:00:18.1: bridge window [mem 0xd2b00000-0xd2bfffff] -05:50:20,523 INFO kernel:pci 0000:00:18.1: bridge window [mem 0xd4a00000-0xd4afffff 64bit pref] -05:50:20,523 INFO kernel:pci 0000:00:18.2: PCI bridge to [bus 1d-1d] -05:50:20,523 INFO kernel:pci 0000:00:18.2: PCI bridge to [bus 1d-1d] -05:50:20,523 INFO kernel:pci 0000:00:18.2: bridge window [io disabled] -05:50:20,523 INFO kernel:pci 0000:00:18.2: bridge window [mem 0xd2f00000-0xd2ffffff] -05:50:20,523 INFO kernel:pci 0000:00:18.2: bridge window [mem 0xd4c00000-0xd4cfffff 64bit pref] -05:50:20,523 INFO kernel:pci 0000:00:18.3: PCI bridge to [bus 1e-1e] -05:50:20,523 INFO kernel:pci 0000:00:18.3: PCI bridge to [bus 1e-1e] -05:50:20,523 INFO kernel:pci 0000:00:18.3: bridge window [io disabled] -05:50:20,523 INFO kernel:pci 0000:00:18.3: bridge window [mem 0xd3300000-0xd33fffff] -05:50:20,523 INFO kernel:pci 0000:00:18.3: bridge window [mem 0xd4e00000-0xd4efffff 64bit pref] -05:50:20,523 INFO kernel:pci 0000:00:18.4: PCI bridge to [bus 1f-1f] -05:50:20,523 INFO kernel:pci 0000:00:18.4: PCI bridge to [bus 1f-1f] -05:50:20,523 INFO kernel:pci 0000:00:18.4: bridge window [io disabled] -05:50:20,523 INFO kernel:pci 0000:00:18.4: bridge window [mem 0xd3700000-0xd37fffff] -05:50:20,523 INFO kernel:pci 0000:00:18.4: bridge window [mem 0xd5000000-0xd50fffff 64bit pref] -05:50:20,523 INFO kernel:pci 0000:00:18.5: PCI bridge to [bus 20-20] -05:50:20,523 INFO kernel:pci 0000:00:18.5: PCI bridge to [bus 20-20] -05:50:20,523 INFO kernel:pci 0000:00:18.5: bridge window [io disabled] -05:50:20,523 INFO kernel:pci 0000:00:18.5: bridge window [mem 0xd3b00000-0xd3bfffff] -05:50:20,523 INFO kernel:pci 0000:00:18.5: bridge window [mem 0xd5200000-0xd52fffff 64bit pref] -05:50:20,523 INFO kernel:pci 0000:00:18.6: PCI bridge to [bus 21-21] -05:50:20,523 INFO kernel:pci 0000:00:18.6: PCI bridge to [bus 21-21] -05:50:20,523 INFO kernel:pci 0000:00:18.6: bridge window [io disabled] -05:50:20,523 INFO kernel:pci 0000:00:18.6: bridge window [mem 0xd3f00000-0xd3ffffff] -05:50:20,523 INFO kernel:pci 0000:00:18.6: bridge window [mem 0xd5400000-0xd54fffff 64bit pref] -05:50:20,523 INFO kernel:pci 0000:00:18.7: PCI bridge to [bus 22-22] -05:50:20,523 INFO kernel:pci 0000:00:18.7: PCI bridge to [bus 22-22] -05:50:20,523 INFO kernel:pci 0000:00:18.7: bridge window [io disabled] -05:50:20,523 INFO kernel:pci 0000:00:18.7: bridge window [mem 0xd4300000-0xd43fffff] -05:50:20,523 INFO kernel:pci 0000:00:18.7: bridge window [mem 0xd5600000-0xd56fffff 64bit pref] -05:50:20,523 DEBUG kernel:pci 0000:00:01.0: setting latency timer to 64 -05:50:20,523 DEBUG kernel:pci 0000:00:15.0: setting latency timer to 64 -05:50:20,523 DEBUG kernel:pci 0000:00:15.1: setting latency timer to 64 -05:50:20,523 DEBUG kernel:pci 0000:00:15.2: setting latency timer to 64 -05:50:20,523 DEBUG kernel:pci 0000:00:15.3: setting latency timer to 64 -05:50:20,523 DEBUG kernel:pci 0000:00:15.4: setting latency timer to 64 -05:50:20,523 DEBUG kernel:pci 0000:00:15.5: setting latency timer to 64 -05:50:20,523 DEBUG kernel:pci 0000:00:15.6: setting latency timer to 64 -05:50:20,523 DEBUG kernel:pci 0000:00:15.7: setting latency timer to 64 -05:50:20,523 DEBUG kernel:pci 0000:00:16.0: setting latency timer to 64 -05:50:20,523 DEBUG kernel:pci 0000:00:16.1: setting latency timer to 64 -05:50:20,523 DEBUG kernel:pci 0000:00:16.2: setting latency timer to 64 -05:50:20,523 DEBUG kernel:pci 0000:00:16.3: setting latency timer to 64 -05:50:20,523 DEBUG kernel:pci 0000:00:16.4: setting latency timer to 64 -05:50:20,523 DEBUG kernel:pci 0000:00:16.5: setting latency timer to 64 -05:50:20,523 DEBUG kernel:pci 0000:00:16.6: setting latency timer to 64 -05:50:20,523 DEBUG kernel:pci 0000:00:16.7: setting latency timer to 64 -05:50:20,523 DEBUG kernel:pci 0000:00:17.0: setting latency timer to 64 -05:50:20,523 DEBUG kernel:pci 0000:00:17.1: setting latency timer to 64 -05:50:20,523 DEBUG kernel:pci 0000:00:17.2: setting latency timer to 64 -05:50:20,523 DEBUG kernel:pci 0000:00:17.3: setting latency timer to 64 -05:50:20,523 DEBUG kernel:pci 0000:00:17.4: setting latency timer to 64 -05:50:20,523 DEBUG kernel:pci 0000:00:17.5: setting latency timer to 64 -05:50:20,523 DEBUG kernel:pci 0000:00:17.6: setting latency timer to 64 -05:50:20,523 DEBUG kernel:pci 0000:00:17.7: setting latency timer to 64 -05:50:20,523 DEBUG kernel:pci 0000:00:18.0: setting latency timer to 64 -05:50:20,523 DEBUG kernel:pci 0000:00:18.1: setting latency timer to 64 -05:50:20,523 DEBUG kernel:pci 0000:00:18.2: setting latency timer to 64 -05:50:20,523 DEBUG kernel:pci 0000:00:18.3: setting latency timer to 64 -05:50:20,523 DEBUG kernel:pci 0000:00:18.4: setting latency timer to 64 -05:50:20,523 DEBUG kernel:pci 0000:00:18.5: setting latency timer to 64 -05:50:20,523 DEBUG kernel:pci 0000:00:18.6: setting latency timer to 64 -05:50:20,523 DEBUG kernel:pci 0000:00:18.7: setting latency timer to 64 -05:50:20,523 DEBUG kernel:pci_bus 0000:00: resource 4 [mem 0x000a0000-0x000bffff] -05:50:20,523 DEBUG kernel:pci_bus 0000:00: resource 5 [mem 0x000d0000-0x000d3fff] -05:50:20,523 DEBUG kernel:pci_bus 0000:00: resource 6 [mem 0x000d4000-0x000d7fff] -05:50:20,523 DEBUG kernel:pci_bus 0000:00: resource 7 [mem 0x000d8000-0x000dbfff] -05:50:20,523 DEBUG kernel:pci_bus 0000:00: resource 8 [mem 0x80000000-0xfebfffff] -05:50:20,523 DEBUG kernel:pci_bus 0000:00: resource 9 [io 0x0000-0x0cf7] -05:50:20,523 DEBUG kernel:pci_bus 0000:00: resource 10 [io 0x0d00-0xfeff] -05:50:20,523 DEBUG kernel:pci_bus 0000:02: resource 0 [io 0x2000-0x3fff] -05:50:20,523 DEBUG kernel:pci_bus 0000:02: resource 1 [mem 0xd1000000-0xd23fffff] -05:50:20,523 DEBUG kernel:pci_bus 0000:02: resource 2 [mem 0xdc400000-0xdc9fffff 64bit pref] -05:50:20,523 DEBUG kernel:pci_bus 0000:02: resource 4 [mem 0x000a0000-0x000bffff] -05:50:20,523 DEBUG kernel:pci_bus 0000:02: resource 5 [mem 0x000d0000-0x000d3fff] -05:50:20,523 DEBUG kernel:pci_bus 0000:02: resource 6 [mem 0x000d4000-0x000d7fff] -05:50:20,523 DEBUG kernel:pci_bus 0000:02: resource 7 [mem 0x000d8000-0x000dbfff] -05:50:20,523 DEBUG kernel:pci_bus 0000:02: resource 8 [mem 0x80000000-0xfebfffff] -05:50:20,523 DEBUG kernel:pci_bus 0000:02: resource 9 [io 0x0000-0x0cf7] -05:50:20,523 DEBUG kernel:pci_bus 0000:02: resource 10 [io 0x0d00-0xfeff] -05:50:20,523 DEBUG kernel:pci_bus 0000:03: resource 0 [io 0x4000-0x4fff] -05:50:20,523 DEBUG kernel:pci_bus 0000:03: resource 1 [mem 0xd2400000-0xd24fffff] -05:50:20,523 DEBUG kernel:pci_bus 0000:03: resource 2 [mem 0xd4400000-0xd44fffff 64bit pref] -05:50:20,523 DEBUG kernel:pci_bus 0000:04: resource 0 [io 0x8000-0x8fff] -05:50:20,523 DEBUG kernel:pci_bus 0000:04: resource 1 [mem 0xd2800000-0xd28fffff] -05:50:20,523 DEBUG kernel:pci_bus 0000:04: resource 2 [mem 0xd4800000-0xd48fffff 64bit pref] -05:50:20,523 DEBUG kernel:pci_bus 0000:05: resource 0 [io 0xc000-0xcfff] -05:50:20,523 DEBUG kernel:pci_bus 0000:05: resource 1 [mem 0xd2c00000-0xd2cfffff] -05:50:20,523 DEBUG kernel:pci_bus 0000:05: resource 2 [mem 0xdcb00000-0xdcbfffff 64bit pref] -05:50:20,523 DEBUG kernel:pci_bus 0000:06: resource 1 [mem 0xd3000000-0xd30fffff] -05:50:20,523 DEBUG kernel:pci_bus 0000:06: resource 2 [mem 0xdcd00000-0xdcdfffff 64bit pref] -05:50:20,523 DEBUG kernel:pci_bus 0000:07: resource 1 [mem 0xd3400000-0xd34fffff] -05:50:20,523 DEBUG kernel:pci_bus 0000:07: resource 2 [mem 0xdcf00000-0xdcffffff 64bit pref] -05:50:20,523 DEBUG kernel:pci_bus 0000:08: resource 1 [mem 0xd3800000-0xd38fffff] -05:50:20,523 DEBUG kernel:pci_bus 0000:08: resource 2 [mem 0xdd100000-0xdd1fffff 64bit pref] -05:50:20,523 DEBUG kernel:pci_bus 0000:09: resource 1 [mem 0xd3c00000-0xd3cfffff] -05:50:20,523 DEBUG kernel:pci_bus 0000:09: resource 2 [mem 0xdd300000-0xdd3fffff 64bit pref] -05:50:20,523 DEBUG kernel:pci_bus 0000:0a: resource 1 [mem 0xd4000000-0xd40fffff] -05:50:20,523 DEBUG kernel:pci_bus 0000:0a: resource 2 [mem 0xdd500000-0xdd5fffff 64bit pref] -05:50:20,523 DEBUG kernel:pci_bus 0000:0b: resource 0 [io 0x5000-0x5fff] -05:50:20,523 DEBUG kernel:pci_bus 0000:0b: resource 1 [mem 0xd2500000-0xd25fffff] -05:50:20,523 DEBUG kernel:pci_bus 0000:0b: resource 2 [mem 0xd4500000-0xd45fffff 64bit pref] -05:50:20,523 DEBUG kernel:pci_bus 0000:0c: resource 0 [io 0x9000-0x9fff] -05:50:20,523 DEBUG kernel:pci_bus 0000:0c: resource 1 [mem 0xd2900000-0xd29fffff] -05:50:20,523 DEBUG kernel:pci_bus 0000:0c: resource 2 [mem 0xd4900000-0xd49fffff 64bit pref] -05:50:20,523 DEBUG kernel:pci_bus 0000:0d: resource 0 [io 0xd000-0xdfff] -05:50:20,523 DEBUG kernel:pci_bus 0000:0d: resource 1 [mem 0xd2d00000-0xd2dfffff] -05:50:20,523 DEBUG kernel:pci_bus 0000:0d: resource 2 [mem 0xd4b00000-0xd4bfffff 64bit pref] -05:50:20,523 DEBUG kernel:pci_bus 0000:0e: resource 1 [mem 0xd3100000-0xd31fffff] -05:50:20,523 DEBUG kernel:pci_bus 0000:0e: resource 2 [mem 0xd4d00000-0xd4dfffff 64bit pref] -05:50:20,523 DEBUG kernel:pci_bus 0000:0f: resource 1 [mem 0xd3500000-0xd35fffff] -05:50:20,523 DEBUG kernel:pci_bus 0000:0f: resource 2 [mem 0xd4f00000-0xd4ffffff 64bit pref] -05:50:20,523 DEBUG kernel:pci_bus 0000:10: resource 1 [mem 0xd3900000-0xd39fffff] -05:50:20,523 DEBUG kernel:pci_bus 0000:10: resource 2 [mem 0xd5100000-0xd51fffff 64bit pref] -05:50:20,523 DEBUG kernel:pci_bus 0000:11: resource 1 [mem 0xd3d00000-0xd3dfffff] -05:50:20,523 DEBUG kernel:pci_bus 0000:11: resource 2 [mem 0xd5300000-0xd53fffff 64bit pref] -05:50:20,523 DEBUG kernel:pci_bus 0000:12: resource 1 [mem 0xd4100000-0xd41fffff] -05:50:20,523 DEBUG kernel:pci_bus 0000:12: resource 2 [mem 0xd5500000-0xd55fffff 64bit pref] -05:50:20,523 DEBUG kernel:pci_bus 0000:13: resource 0 [io 0x6000-0x6fff] -05:50:20,523 DEBUG kernel:pci_bus 0000:13: resource 1 [mem 0xd2600000-0xd26fffff] -05:50:20,523 DEBUG kernel:pci_bus 0000:13: resource 2 [mem 0xd4600000-0xd46fffff 64bit pref] -05:50:20,523 DEBUG kernel:pci_bus 0000:14: resource 0 [io 0xa000-0xafff] -05:50:20,523 DEBUG kernel:pci_bus 0000:14: resource 1 [mem 0xd2a00000-0xd2afffff] -05:50:20,523 DEBUG kernel:pci_bus 0000:14: resource 2 [mem 0xdca00000-0xdcafffff 64bit pref] -05:50:20,523 DEBUG kernel:pci_bus 0000:15: resource 0 [io 0xe000-0xefff] -05:50:20,523 DEBUG kernel:pci_bus 0000:15: resource 1 [mem 0xd2e00000-0xd2efffff] -05:50:20,523 DEBUG kernel:pci_bus 0000:15: resource 2 [mem 0xdcc00000-0xdccfffff 64bit pref] -05:50:20,523 DEBUG kernel:pci_bus 0000:16: resource 1 [mem 0xd3200000-0xd32fffff] -05:50:20,523 DEBUG kernel:pci_bus 0000:16: resource 2 [mem 0xdce00000-0xdcefffff 64bit pref] -05:50:20,523 DEBUG kernel:pci_bus 0000:17: resource 1 [mem 0xd3600000-0xd36fffff] -05:50:20,523 DEBUG kernel:pci_bus 0000:17: resource 2 [mem 0xdd000000-0xdd0fffff 64bit pref] -05:50:20,523 DEBUG kernel:pci_bus 0000:18: resource 1 [mem 0xd3a00000-0xd3afffff] -05:50:20,523 DEBUG kernel:pci_bus 0000:18: resource 2 [mem 0xdd200000-0xdd2fffff 64bit pref] -05:50:20,523 DEBUG kernel:pci_bus 0000:19: resource 1 [mem 0xd3e00000-0xd3efffff] -05:50:20,523 DEBUG kernel:pci_bus 0000:19: resource 2 [mem 0xdd400000-0xdd4fffff 64bit pref] -05:50:20,524 DEBUG kernel:pci_bus 0000:1a: resource 1 [mem 0xd4200000-0xd42fffff] -05:50:20,524 DEBUG kernel:pci_bus 0000:1a: resource 2 [mem 0xdd600000-0xdd6fffff 64bit pref] -05:50:20,524 DEBUG kernel:pci_bus 0000:1b: resource 0 [io 0x7000-0x7fff] -05:50:20,524 DEBUG kernel:pci_bus 0000:1b: resource 1 [mem 0xd2700000-0xd27fffff] -05:50:20,524 DEBUG kernel:pci_bus 0000:1b: resource 2 [mem 0xd4700000-0xd47fffff 64bit pref] -05:50:20,524 DEBUG kernel:pci_bus 0000:1c: resource 0 [io 0xb000-0xbfff] -05:50:20,524 DEBUG kernel:pci_bus 0000:1c: resource 1 [mem 0xd2b00000-0xd2bfffff] -05:50:20,524 DEBUG kernel:pci_bus 0000:1c: resource 2 [mem 0xd4a00000-0xd4afffff 64bit pref] -05:50:20,524 DEBUG kernel:pci_bus 0000:1d: resource 1 [mem 0xd2f00000-0xd2ffffff] -05:50:20,524 DEBUG kernel:pci_bus 0000:1d: resource 2 [mem 0xd4c00000-0xd4cfffff 64bit pref] -05:50:20,524 DEBUG kernel:pci_bus 0000:1e: resource 1 [mem 0xd3300000-0xd33fffff] -05:50:20,524 DEBUG kernel:pci_bus 0000:1e: resource 2 [mem 0xd4e00000-0xd4efffff 64bit pref] -05:50:20,524 DEBUG kernel:pci_bus 0000:1f: resource 1 [mem 0xd3700000-0xd37fffff] -05:50:20,524 DEBUG kernel:pci_bus 0000:1f: resource 2 [mem 0xd5000000-0xd50fffff 64bit pref] -05:50:20,524 DEBUG kernel:pci_bus 0000:20: resource 1 [mem 0xd3b00000-0xd3bfffff] -05:50:20,524 DEBUG kernel:pci_bus 0000:20: resource 2 [mem 0xd5200000-0xd52fffff 64bit pref] -05:50:20,524 DEBUG kernel:pci_bus 0000:21: resource 1 [mem 0xd3f00000-0xd3ffffff] -05:50:20,524 DEBUG kernel:pci_bus 0000:21: resource 2 [mem 0xd5400000-0xd54fffff 64bit pref] -05:50:20,524 DEBUG kernel:pci_bus 0000:22: resource 1 [mem 0xd4300000-0xd43fffff] -05:50:20,524 DEBUG kernel:pci_bus 0000:22: resource 2 [mem 0xd5600000-0xd56fffff 64bit pref] -05:50:20,524 INFO kernel:NET: Registered protocol family 2 -05:50:20,524 INFO kernel:IP route cache hash table entries: 65536 (order: 7, 524288 bytes) -05:50:20,524 INFO kernel:TCP established hash table entries: 262144 (order: 10, 4194304 bytes) -05:50:20,524 INFO kernel:TCP bind hash table entries: 65536 (order: 8, 1048576 bytes) -05:50:20,524 INFO kernel:TCP: Hash tables configured (established 262144 bind 65536) -05:50:20,524 INFO kernel:TCP reno registered -05:50:20,524 INFO kernel:NET: Registered protocol family 1 -05:50:20,524 INFO kernel:pci 0000:00:00.0: Limiting direct PCI/PCI transfers -05:50:20,524 DEBUG kernel:pci 0000:00:0f.0: Boot video device -05:50:20,524 INFO kernel:Trying to unpack rootfs image as initramfs... -05:50:20,524 INFO kernel:Freeing initrd memory: 32601k freed -05:50:20,524 INFO kernel:Simple Boot Flag at 0x36 set to 0x80 -05:50:20,524 INFO kernel:audit: initializing netlink socket (disabled) -05:50:20,524 NOTICE kernel:type=2000 audit(1021096218.805:1): initialized -05:50:20,524 INFO kernel:HugeTLB registered 2 MB page size, pre-allocated 0 pages -05:50:20,524 NOTICE kernel:VFS: Disk quotas dquot_6.5.2 -05:50:20,524 WARNING kernel:Dquot-cache hash table entries: 512 (order 0, 4096 bytes) -05:50:20,524 INFO kernel:msgmni has been set to 4005 -05:50:20,526 DEBUG kernel:SELinux: Registering netfilter hooks -05:50:20,526 INFO kernel:alg: No test for stdrng (krng) -05:50:20,526 WARNING kernel:ksign: Installing public key data -05:50:20,526 WARNING kernel:Loading keyring -05:50:20,526 WARNING kernel:- Added public key 8A44323FB303E068 -05:50:20,526 WARNING kernel: - key was been created 363988241 seconds in future -05:50:20,526 WARNING kernel:- User ID: CentOS (Kernel Module GPG key) -05:50:20,526 INFO kernel:Block layer SCSI generic (bsg) driver version 0.4 loaded (major 251) -05:50:20,526 INFO kernel:io scheduler noop registered -05:50:20,526 INFO kernel:io scheduler anticipatory registered -05:50:20,526 INFO kernel:io scheduler deadline registered -05:50:20,526 INFO kernel:io scheduler cfq registered (default) -05:50:20,526 DEBUG kernel:pcieport 0000:00:15.0: setting latency timer to 64 -05:50:20,526 DEBUG kernel: alloc irq_desc for 24 on node -1 -05:50:20,526 DEBUG kernel: alloc kstat_irqs on node -1 -05:50:20,526 DEBUG kernel:pcieport 0000:00:15.0: irq 24 for MSI/MSI-X -05:50:20,526 DEBUG kernel:pcieport 0000:00:15.1: setting latency timer to 64 -05:50:20,526 DEBUG kernel: alloc irq_desc for 25 on node -1 -05:50:20,526 DEBUG kernel: alloc kstat_irqs on node -1 -05:50:20,526 DEBUG kernel:pcieport 0000:00:15.1: irq 25 for MSI/MSI-X -05:50:20,526 DEBUG kernel:pcieport 0000:00:15.2: setting latency timer to 64 -05:50:20,526 DEBUG kernel: alloc irq_desc for 26 on node -1 -05:50:20,526 DEBUG kernel: alloc kstat_irqs on node -1 -05:50:20,526 DEBUG kernel:pcieport 0000:00:15.2: irq 26 for MSI/MSI-X -05:50:20,526 DEBUG kernel:pcieport 0000:00:15.3: setting latency timer to 64 -05:50:20,526 DEBUG kernel: alloc irq_desc for 27 on node -1 -05:50:20,526 DEBUG kernel: alloc kstat_irqs on node -1 -05:50:20,526 DEBUG kernel:pcieport 0000:00:15.3: irq 27 for MSI/MSI-X -05:50:20,526 DEBUG kernel:pcieport 0000:00:15.4: setting latency timer to 64 -05:50:20,526 DEBUG kernel: alloc irq_desc for 28 on node -1 -05:50:20,526 DEBUG kernel: alloc kstat_irqs on node -1 -05:50:20,526 DEBUG kernel:pcieport 0000:00:15.4: irq 28 for MSI/MSI-X -05:50:20,526 DEBUG kernel:pcieport 0000:00:15.5: setting latency timer to 64 -05:50:20,526 DEBUG kernel: alloc irq_desc for 29 on node -1 -05:50:20,526 DEBUG kernel: alloc kstat_irqs on node -1 -05:50:20,526 DEBUG kernel:pcieport 0000:00:15.5: irq 29 for MSI/MSI-X -05:50:20,526 DEBUG kernel:pcieport 0000:00:15.6: setting latency timer to 64 -05:50:20,526 DEBUG kernel: alloc irq_desc for 30 on node -1 -05:50:20,526 DEBUG kernel: alloc kstat_irqs on node -1 -05:50:20,526 DEBUG kernel:pcieport 0000:00:15.6: irq 30 for MSI/MSI-X -05:50:20,526 DEBUG kernel:pcieport 0000:00:15.7: setting latency timer to 64 -05:50:20,526 DEBUG kernel: alloc irq_desc for 31 on node -1 -05:50:20,526 DEBUG kernel: alloc kstat_irqs on node -1 -05:50:20,526 DEBUG kernel:pcieport 0000:00:15.7: irq 31 for MSI/MSI-X -05:50:20,526 DEBUG kernel:pcieport 0000:00:16.0: setting latency timer to 64 -05:50:20,526 DEBUG kernel: alloc irq_desc for 32 on node -1 -05:50:20,526 DEBUG kernel: alloc kstat_irqs on node -1 -05:50:20,526 DEBUG kernel:pcieport 0000:00:16.0: irq 32 for MSI/MSI-X -05:50:20,526 DEBUG kernel:pcieport 0000:00:16.1: setting latency timer to 64 -05:50:20,526 DEBUG kernel: alloc irq_desc for 33 on node -1 -05:50:20,526 DEBUG kernel: alloc kstat_irqs on node -1 -05:50:20,526 DEBUG kernel:pcieport 0000:00:16.1: irq 33 for MSI/MSI-X -05:50:20,526 DEBUG kernel:pcieport 0000:00:16.2: setting latency timer to 64 -05:50:20,526 DEBUG kernel: alloc irq_desc for 34 on node -1 -05:50:20,526 DEBUG kernel: alloc kstat_irqs on node -1 -05:50:20,526 DEBUG kernel:pcieport 0000:00:16.2: irq 34 for MSI/MSI-X -05:50:20,526 DEBUG kernel:pcieport 0000:00:16.3: setting latency timer to 64 -05:50:20,526 DEBUG kernel: alloc irq_desc for 35 on node -1 -05:50:20,526 DEBUG kernel: alloc kstat_irqs on node -1 -05:50:20,526 DEBUG kernel:pcieport 0000:00:16.3: irq 35 for MSI/MSI-X -05:50:20,526 DEBUG kernel:pcieport 0000:00:16.4: setting latency timer to 64 -05:50:20,526 DEBUG kernel: alloc irq_desc for 36 on node -1 -05:50:20,526 DEBUG kernel: alloc kstat_irqs on node -1 -05:50:20,526 DEBUG kernel:pcieport 0000:00:16.4: irq 36 for MSI/MSI-X -05:50:20,526 DEBUG kernel:pcieport 0000:00:16.5: setting latency timer to 64 -05:50:20,526 DEBUG kernel: alloc irq_desc for 37 on node -1 -05:50:20,526 DEBUG kernel: alloc kstat_irqs on node -1 -05:50:20,526 DEBUG kernel:pcieport 0000:00:16.5: irq 37 for MSI/MSI-X -05:50:20,526 DEBUG kernel:pcieport 0000:00:16.6: setting latency timer to 64 -05:50:20,526 DEBUG kernel: alloc irq_desc for 38 on node -1 -05:50:20,526 DEBUG kernel: alloc kstat_irqs on node -1 -05:50:20,526 DEBUG kernel:pcieport 0000:00:16.6: irq 38 for MSI/MSI-X -05:50:20,526 DEBUG kernel:pcieport 0000:00:16.7: setting latency timer to 64 -05:50:20,526 DEBUG kernel: alloc irq_desc for 39 on node -1 -05:50:20,526 DEBUG kernel: alloc kstat_irqs on node -1 -05:50:20,526 DEBUG kernel:pcieport 0000:00:16.7: irq 39 for MSI/MSI-X -05:50:20,526 DEBUG kernel:pcieport 0000:00:17.0: setting latency timer to 64 -05:50:20,526 DEBUG kernel: alloc irq_desc for 40 on node -1 -05:50:20,526 DEBUG kernel: alloc kstat_irqs on node -1 -05:50:20,526 DEBUG kernel:pcieport 0000:00:17.0: irq 40 for MSI/MSI-X -05:50:20,526 DEBUG kernel:pcieport 0000:00:17.1: setting latency timer to 64 -05:50:20,526 DEBUG kernel: alloc irq_desc for 41 on node -1 -05:50:20,526 DEBUG kernel: alloc kstat_irqs on node -1 -05:50:20,526 DEBUG kernel:pcieport 0000:00:17.1: irq 41 for MSI/MSI-X -05:50:20,526 DEBUG kernel:pcieport 0000:00:17.2: setting latency timer to 64 -05:50:20,526 DEBUG kernel: alloc irq_desc for 42 on node -1 -05:50:20,526 DEBUG kernel: alloc kstat_irqs on node -1 -05:50:20,526 DEBUG kernel:pcieport 0000:00:17.2: irq 42 for MSI/MSI-X -05:50:20,526 DEBUG kernel:pcieport 0000:00:17.3: setting latency timer to 64 -05:50:20,526 DEBUG kernel: alloc irq_desc for 43 on node -1 -05:50:20,526 DEBUG kernel: alloc kstat_irqs on node -1 -05:50:20,526 DEBUG kernel:pcieport 0000:00:17.3: irq 43 for MSI/MSI-X -05:50:20,526 DEBUG kernel:pcieport 0000:00:17.4: setting latency timer to 64 -05:50:20,526 DEBUG kernel: alloc irq_desc for 44 on node -1 -05:50:20,526 DEBUG kernel: alloc kstat_irqs on node -1 -05:50:20,526 DEBUG kernel:pcieport 0000:00:17.4: irq 44 for MSI/MSI-X -05:50:20,526 DEBUG kernel:pcieport 0000:00:17.5: setting latency timer to 64 -05:50:20,526 DEBUG kernel: alloc irq_desc for 45 on node -1 -05:50:20,526 DEBUG kernel: alloc kstat_irqs on node -1 -05:50:20,526 DEBUG kernel:pcieport 0000:00:17.5: irq 45 for MSI/MSI-X -05:50:20,526 DEBUG kernel:pcieport 0000:00:17.6: setting latency timer to 64 -05:50:20,526 DEBUG kernel: alloc irq_desc for 46 on node -1 -05:50:20,526 DEBUG kernel: alloc kstat_irqs on node -1 -05:50:20,526 DEBUG kernel:pcieport 0000:00:17.6: irq 46 for MSI/MSI-X -05:50:20,526 DEBUG kernel:pcieport 0000:00:17.7: setting latency timer to 64 -05:50:20,526 DEBUG kernel: alloc irq_desc for 47 on node -1 -05:50:20,526 DEBUG kernel: alloc kstat_irqs on node -1 -05:50:20,526 DEBUG kernel:pcieport 0000:00:17.7: irq 47 for MSI/MSI-X -05:50:20,526 DEBUG kernel:pcieport 0000:00:18.0: setting latency timer to 64 -05:50:20,526 DEBUG kernel: alloc irq_desc for 48 on node -1 -05:50:20,526 DEBUG kernel: alloc kstat_irqs on node -1 -05:50:20,526 DEBUG kernel:pcieport 0000:00:18.0: irq 48 for MSI/MSI-X -05:50:20,526 DEBUG kernel:pcieport 0000:00:18.1: setting latency timer to 64 -05:50:20,526 DEBUG kernel: alloc irq_desc for 49 on node -1 -05:50:20,526 DEBUG kernel: alloc kstat_irqs on node -1 -05:50:20,526 DEBUG kernel:pcieport 0000:00:18.1: irq 49 for MSI/MSI-X -05:50:20,526 DEBUG kernel:pcieport 0000:00:18.2: setting latency timer to 64 -05:50:20,526 DEBUG kernel: alloc irq_desc for 50 on node -1 -05:50:20,526 DEBUG kernel: alloc kstat_irqs on node -1 -05:50:20,526 DEBUG kernel:pcieport 0000:00:18.2: irq 50 for MSI/MSI-X -05:50:20,526 DEBUG kernel:pcieport 0000:00:18.3: setting latency timer to 64 -05:50:20,526 DEBUG kernel: alloc irq_desc for 51 on node -1 -05:50:20,526 DEBUG kernel: alloc kstat_irqs on node -1 -05:50:20,526 DEBUG kernel:pcieport 0000:00:18.3: irq 51 for MSI/MSI-X -05:50:20,526 DEBUG kernel:pcieport 0000:00:18.4: setting latency timer to 64 -05:50:20,526 DEBUG kernel: alloc irq_desc for 52 on node -1 -05:50:20,526 DEBUG kernel: alloc kstat_irqs on node -1 -05:50:20,526 DEBUG kernel:pcieport 0000:00:18.4: irq 52 for MSI/MSI-X -05:50:20,526 DEBUG kernel:pcieport 0000:00:18.5: setting latency timer to 64 -05:50:20,526 DEBUG kernel: alloc irq_desc for 53 on node -1 -05:50:20,526 DEBUG kernel: alloc kstat_irqs on node -1 -05:50:20,526 DEBUG kernel:pcieport 0000:00:18.5: irq 53 for MSI/MSI-X -05:50:20,526 DEBUG kernel:pcieport 0000:00:18.6: setting latency timer to 64 -05:50:20,526 DEBUG kernel: alloc irq_desc for 54 on node -1 -05:50:20,526 DEBUG kernel: alloc kstat_irqs on node -1 -05:50:20,526 DEBUG kernel:pcieport 0000:00:18.6: irq 54 for MSI/MSI-X -05:50:20,526 DEBUG kernel:pcieport 0000:00:18.7: setting latency timer to 64 -05:50:20,526 DEBUG kernel: alloc irq_desc for 55 on node -1 -05:50:20,526 DEBUG kernel: alloc kstat_irqs on node -1 -05:50:20,526 DEBUG kernel:pcieport 0000:00:18.7: irq 55 for MSI/MSI-X -05:50:20,526 INFO kernel:pci_hotplug: PCI Hot Plug PCI Core version: 0.5 -05:50:20,526 INFO kernel:pciehp 0000:00:15.0:pcie04: HPC vendor_id 15ad device_id 7a0 ss_vid 0 ss_did 0 -05:50:20,526 DEBUG kernel:pciehp 0000:00:15.0:pcie04: service driver pciehp loaded -05:50:20,526 INFO kernel:pciehp 0000:00:15.1:pcie04: HPC vendor_id 15ad device_id 7a0 ss_vid 0 ss_did 0 -05:50:20,526 DEBUG kernel:pciehp 0000:00:15.1:pcie04: service driver pciehp loaded -05:50:20,526 INFO kernel:pciehp 0000:00:15.2:pcie04: HPC vendor_id 15ad device_id 7a0 ss_vid 0 ss_did 0 -05:50:20,526 DEBUG kernel:pciehp 0000:00:15.2:pcie04: service driver pciehp loaded -05:50:20,526 INFO kernel:pciehp 0000:00:15.3:pcie04: HPC vendor_id 15ad device_id 7a0 ss_vid 0 ss_did 0 -05:50:20,526 DEBUG kernel:pciehp 0000:00:15.3:pcie04: service driver pciehp loaded -05:50:20,526 INFO kernel:pciehp 0000:00:15.4:pcie04: HPC vendor_id 15ad device_id 7a0 ss_vid 0 ss_did 0 -05:50:20,526 DEBUG kernel:pciehp 0000:00:15.4:pcie04: service driver pciehp loaded -05:50:20,526 INFO kernel:pciehp 0000:00:15.5:pcie04: HPC vendor_id 15ad device_id 7a0 ss_vid 0 ss_did 0 -05:50:20,526 DEBUG kernel:pciehp 0000:00:15.5:pcie04: service driver pciehp loaded -05:50:20,526 INFO kernel:pciehp 0000:00:15.6:pcie04: HPC vendor_id 15ad device_id 7a0 ss_vid 0 ss_did 0 -05:50:20,526 DEBUG kernel:pciehp 0000:00:15.6:pcie04: service driver pciehp loaded -05:50:20,526 INFO kernel:pciehp 0000:00:15.7:pcie04: HPC vendor_id 15ad device_id 7a0 ss_vid 0 ss_did 0 -05:50:20,526 DEBUG kernel:pciehp 0000:00:15.7:pcie04: service driver pciehp loaded -05:50:20,526 INFO kernel:pciehp 0000:00:16.0:pcie04: HPC vendor_id 15ad device_id 7a0 ss_vid 0 ss_did 0 -05:50:20,526 DEBUG kernel:pciehp 0000:00:16.0:pcie04: service driver pciehp loaded -05:50:20,526 INFO kernel:pciehp 0000:00:16.1:pcie04: HPC vendor_id 15ad device_id 7a0 ss_vid 0 ss_did 0 -05:50:20,526 DEBUG kernel:pciehp 0000:00:16.1:pcie04: service driver pciehp loaded -05:50:20,526 INFO kernel:pciehp 0000:00:16.2:pcie04: HPC vendor_id 15ad device_id 7a0 ss_vid 0 ss_did 0 -05:50:20,526 DEBUG kernel:pciehp 0000:00:16.2:pcie04: service driver pciehp loaded -05:50:20,526 INFO kernel:pciehp 0000:00:16.3:pcie04: HPC vendor_id 15ad device_id 7a0 ss_vid 0 ss_did 0 -05:50:20,526 DEBUG kernel:pciehp 0000:00:16.3:pcie04: service driver pciehp loaded -05:50:20,526 INFO kernel:pciehp 0000:00:16.4:pcie04: HPC vendor_id 15ad device_id 7a0 ss_vid 0 ss_did 0 -05:50:20,526 DEBUG kernel:pciehp 0000:00:16.4:pcie04: service driver pciehp loaded -05:50:20,526 INFO kernel:pciehp 0000:00:16.5:pcie04: HPC vendor_id 15ad device_id 7a0 ss_vid 0 ss_did 0 -05:50:20,526 DEBUG kernel:pciehp 0000:00:16.5:pcie04: service driver pciehp loaded -05:50:20,526 INFO kernel:pciehp 0000:00:16.6:pcie04: HPC vendor_id 15ad device_id 7a0 ss_vid 0 ss_did 0 -05:50:20,526 DEBUG kernel:pciehp 0000:00:16.6:pcie04: service driver pciehp loaded -05:50:20,526 INFO kernel:pciehp 0000:00:16.7:pcie04: HPC vendor_id 15ad device_id 7a0 ss_vid 0 ss_did 0 -05:50:20,526 DEBUG kernel:pciehp 0000:00:16.7:pcie04: service driver pciehp loaded -05:50:20,526 INFO kernel:pciehp 0000:00:17.0:pcie04: HPC vendor_id 15ad device_id 7a0 ss_vid 0 ss_did 0 -05:50:20,526 DEBUG kernel:pciehp 0000:00:17.0:pcie04: service driver pciehp loaded -05:50:20,526 INFO kernel:pciehp 0000:00:17.1:pcie04: HPC vendor_id 15ad device_id 7a0 ss_vid 0 ss_did 0 -05:50:20,526 DEBUG kernel:pciehp 0000:00:17.1:pcie04: service driver pciehp loaded -05:50:20,526 INFO kernel:pciehp 0000:00:17.2:pcie04: HPC vendor_id 15ad device_id 7a0 ss_vid 0 ss_did 0 -05:50:20,526 DEBUG kernel:pciehp 0000:00:17.2:pcie04: service driver pciehp loaded -05:50:20,526 INFO kernel:pciehp 0000:00:17.3:pcie04: HPC vendor_id 15ad device_id 7a0 ss_vid 0 ss_did 0 -05:50:20,526 DEBUG kernel:pciehp 0000:00:17.3:pcie04: service driver pciehp loaded -05:50:20,526 INFO kernel:pciehp 0000:00:17.4:pcie04: HPC vendor_id 15ad device_id 7a0 ss_vid 0 ss_did 0 -05:50:20,526 DEBUG kernel:pciehp 0000:00:17.4:pcie04: service driver pciehp loaded -05:50:20,526 INFO kernel:pciehp 0000:00:17.5:pcie04: HPC vendor_id 15ad device_id 7a0 ss_vid 0 ss_did 0 -05:50:20,526 DEBUG kernel:pciehp 0000:00:17.5:pcie04: service driver pciehp loaded -05:50:20,526 INFO kernel:pciehp 0000:00:17.6:pcie04: HPC vendor_id 15ad device_id 7a0 ss_vid 0 ss_did 0 -05:50:20,526 DEBUG kernel:pciehp 0000:00:17.6:pcie04: service driver pciehp loaded -05:50:20,526 INFO kernel:pciehp 0000:00:17.7:pcie04: HPC vendor_id 15ad device_id 7a0 ss_vid 0 ss_did 0 -05:50:20,526 DEBUG kernel:pciehp 0000:00:17.7:pcie04: service driver pciehp loaded -05:50:20,526 INFO kernel:pciehp 0000:00:18.0:pcie04: HPC vendor_id 15ad device_id 7a0 ss_vid 0 ss_did 0 -05:50:20,526 DEBUG kernel:pciehp 0000:00:18.0:pcie04: service driver pciehp loaded -05:50:20,526 INFO kernel:pciehp 0000:00:18.1:pcie04: HPC vendor_id 15ad device_id 7a0 ss_vid 0 ss_did 0 -05:50:20,526 DEBUG kernel:pciehp 0000:00:18.1:pcie04: service driver pciehp loaded -05:50:20,526 INFO kernel:pciehp 0000:00:18.2:pcie04: HPC vendor_id 15ad device_id 7a0 ss_vid 0 ss_did 0 -05:50:20,526 DEBUG kernel:pciehp 0000:00:18.2:pcie04: service driver pciehp loaded -05:50:20,526 INFO kernel:pciehp 0000:00:18.3:pcie04: HPC vendor_id 15ad device_id 7a0 ss_vid 0 ss_did 0 -05:50:20,526 DEBUG kernel:pciehp 0000:00:18.3:pcie04: service driver pciehp loaded -05:50:20,526 INFO kernel:pciehp 0000:00:18.4:pcie04: HPC vendor_id 15ad device_id 7a0 ss_vid 0 ss_did 0 -05:50:20,526 DEBUG kernel:pciehp 0000:00:18.4:pcie04: service driver pciehp loaded -05:50:20,526 INFO kernel:pciehp 0000:00:18.5:pcie04: HPC vendor_id 15ad device_id 7a0 ss_vid 0 ss_did 0 -05:50:20,526 DEBUG kernel:pciehp 0000:00:18.5:pcie04: service driver pciehp loaded -05:50:20,526 INFO kernel:pciehp 0000:00:18.6:pcie04: HPC vendor_id 15ad device_id 7a0 ss_vid 0 ss_did 0 -05:50:20,526 DEBUG kernel:pciehp 0000:00:18.6:pcie04: service driver pciehp loaded -05:50:20,526 INFO kernel:pciehp 0000:00:18.7:pcie04: HPC vendor_id 15ad device_id 7a0 ss_vid 0 ss_did 0 -05:50:20,526 DEBUG kernel:pciehp 0000:00:18.7:pcie04: service driver pciehp loaded -05:50:20,526 INFO kernel:pciehp: PCI Express Hot Plug Controller Driver version: 0.4 -05:50:20,526 INFO kernel:acpiphp: ACPI Hot Plug PCI Controller Driver version: 0.5 -05:50:20,526 INFO kernel:acpiphp: Slot [32] registered -05:50:20,526 INFO kernel:acpiphp: Slot [33] registered -05:50:20,526 INFO kernel:acpiphp: Slot [34] registered -05:50:20,526 INFO kernel:acpiphp: Slot [35] registered -05:50:20,526 INFO kernel:acpiphp: Slot [36] registered -05:50:20,526 INFO kernel:acpiphp: Slot [37] registered -05:50:20,526 INFO kernel:acpiphp: Slot [38] registered -05:50:20,527 INFO kernel:acpiphp: Slot [39] registered -05:50:20,527 INFO kernel:acpiphp: Slot [40] registered -05:50:20,527 INFO kernel:acpiphp: Slot [41] registered -05:50:20,527 INFO kernel:acpiphp: Slot [42] registered -05:50:20,527 INFO kernel:acpiphp: Slot [43] registered -05:50:20,527 INFO kernel:acpiphp: Slot [44] registered -05:50:20,527 INFO kernel:acpiphp: Slot [45] registered -05:50:20,527 INFO kernel:acpiphp: Slot [46] registered -05:50:20,527 INFO kernel:acpiphp: Slot [47] registered -05:50:20,527 INFO kernel:acpiphp: Slot [48] registered -05:50:20,527 INFO kernel:acpiphp: Slot [49] registered -05:50:20,527 INFO kernel:acpiphp: Slot [50] registered -05:50:20,527 INFO kernel:acpiphp: Slot [51] registered -05:50:20,527 INFO kernel:acpiphp: Slot [52] registered -05:50:20,527 INFO kernel:acpiphp: Slot [53] registered -05:50:20,527 INFO kernel:acpiphp: Slot [54] registered -05:50:20,527 INFO kernel:acpiphp: Slot [55] registered -05:50:20,527 INFO kernel:acpiphp: Slot [56] registered -05:50:20,527 INFO kernel:acpiphp: Slot [57] registered -05:50:20,527 INFO kernel:acpiphp: Slot [58] registered -05:50:20,527 INFO kernel:acpiphp: Slot [59] registered -05:50:20,527 INFO kernel:acpiphp: Slot [60] registered -05:50:20,527 INFO kernel:acpiphp: Slot [61] registered -05:50:20,527 INFO kernel:acpiphp: Slot [62] registered -05:50:20,527 INFO kernel:acpiphp: Slot [63] registered -05:50:20,527 WARNING kernel:acpiphp_glue: Slot 160 already registered by another hotplug driver -05:50:20,527 WARNING kernel:acpiphp_glue: Slot 192 already registered by another hotplug driver -05:50:20,527 WARNING kernel:acpiphp_glue: Slot 224 already registered by another hotplug driver -05:50:20,527 WARNING kernel:acpiphp_glue: Slot 256 already registered by another hotplug driver -05:50:20,527 WARNING kernel:acpiphp_glue: Slot 161 already registered by another hotplug driver -05:50:20,527 WARNING kernel:acpiphp_glue: Slot 162 already registered by another hotplug driver -05:50:20,527 WARNING kernel:acpiphp_glue: Slot 163 already registered by another hotplug driver -05:50:20,527 WARNING kernel:acpiphp_glue: Slot 164 already registered by another hotplug driver -05:50:20,527 WARNING kernel:acpiphp_glue: Slot 165 already registered by another hotplug driver -05:50:20,527 WARNING kernel:acpiphp_glue: Slot 166 already registered by another hotplug driver -05:50:20,527 WARNING kernel:acpiphp_glue: Slot 167 already registered by another hotplug driver -05:50:20,527 WARNING kernel:acpiphp_glue: Slot 193 already registered by another hotplug driver -05:50:20,527 WARNING kernel:acpiphp_glue: Slot 194 already registered by another hotplug driver -05:50:20,527 WARNING kernel:acpiphp_glue: Slot 195 already registered by another hotplug driver -05:50:20,527 WARNING kernel:acpiphp_glue: Slot 196 already registered by another hotplug driver -05:50:20,527 WARNING kernel:acpiphp_glue: Slot 197 already registered by another hotplug driver -05:50:20,527 WARNING kernel:acpiphp_glue: Slot 198 already registered by another hotplug driver -05:50:20,527 WARNING kernel:acpiphp_glue: Slot 199 already registered by another hotplug driver -05:50:20,527 WARNING kernel:acpiphp_glue: Slot 225 already registered by another hotplug driver -05:50:20,527 WARNING kernel:acpiphp_glue: Slot 226 already registered by another hotplug driver -05:50:20,527 WARNING kernel:acpiphp_glue: Slot 227 already registered by another hotplug driver -05:50:20,527 WARNING kernel:acpiphp_glue: Slot 228 already registered by another hotplug driver -05:50:20,527 WARNING kernel:acpiphp_glue: Slot 229 already registered by another hotplug driver -05:50:20,527 WARNING kernel:acpiphp_glue: Slot 230 already registered by another hotplug driver -05:50:20,527 WARNING kernel:acpiphp_glue: Slot 231 already registered by another hotplug driver -05:50:20,527 WARNING kernel:acpiphp_glue: Slot 257 already registered by another hotplug driver -05:50:20,527 WARNING kernel:acpiphp_glue: Slot 258 already registered by another hotplug driver -05:50:20,527 WARNING kernel:acpiphp_glue: Slot 259 already registered by another hotplug driver -05:50:20,527 WARNING kernel:acpiphp_glue: Slot 260 already registered by another hotplug driver -05:50:20,527 WARNING kernel:acpiphp_glue: Slot 261 already registered by another hotplug driver -05:50:20,527 WARNING kernel:acpiphp_glue: Slot 262 already registered by another hotplug driver -05:50:20,527 WARNING kernel:acpiphp_glue: Slot 263 already registered by another hotplug driver -05:50:20,527 INFO kernel:ipmi message handler version 39.2 -05:50:20,527 INFO kernel:IPMI System Interface driver. -05:50:20,527 INFO kernel:ipmi_si: Adding default-specified kcs state machine -05:50:20,527 INFO kernel:ipmi_si: Trying default-specified kcs state machine at i/o address 0xca2, slave address 0x0, irq 0 -05:50:20,527 INFO kernel:ipmi_si: Interface detection failed -05:50:20,527 INFO kernel:ipmi_si: Adding default-specified smic state machine -05:50:20,527 INFO kernel:ipmi_si: Trying default-specified smic state machine at i/o address 0xca9, slave address 0x0, irq 0 -05:50:20,527 INFO kernel:ipmi_si: Interface detection failed -05:50:20,527 INFO kernel:ipmi_si: Adding default-specified bt state machine -05:50:20,527 INFO kernel:ipmi_si: Trying default-specified bt state machine at i/o address 0xe4, slave address 0x0, irq 0 -05:50:20,527 INFO kernel:ipmi_si: Interface detection failed -05:50:20,527 WARNING kernel:ipmi_si: Unable to find any System Interface(s) -05:50:20,527 INFO kernel:ACPI: AC Adapter [ACAD] (on-line) -05:50:20,527 INFO kernel:input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input0 -05:50:20,527 INFO kernel:ACPI: Power Button [PWRF] -05:50:20,527 DEBUG kernel:ACPI: acpi_idle registered with cpuidle -05:50:20,527 WARNING kernel:ACPI Exception: AE_NOT_FOUND, No or invalid critical threshold (20090903/thermal-386) -05:50:20,527 INFO kernel:GHES: HEST is not enabled! -05:50:20,527 INFO kernel:Non-volatile memory driver v1.3 -05:50:20,527 INFO kernel:Linux agpgart interface v0.103 -05:50:20,527 INFO kernel:agpgart-intel 0000:00:00.0: Intel 440BX Chipset -05:50:20,527 INFO kernel:agpgart-intel 0000:00:00.0: AGP aperture is 256M @ 0x0 -05:50:20,527 INFO kernel:crash memory driver: version 1.1 -05:50:20,527 INFO kernel:Serial: 8250/16550 driver, 4 ports, IRQ sharing enabled -05:50:20,527 INFO kernel:serial8250: ttyS0 at I/O 0x3f8 (irq = 4) is a 16550A -05:50:20,527 INFO kernel:serial8250: ttyS1 at I/O 0x2f8 (irq = 3) is a 16550A -05:50:20,527 INFO kernel:00:0a: ttyS0 at I/O 0x3f8 (irq = 4) is a 16550A -05:50:20,527 INFO kernel:00:0b: ttyS1 at I/O 0x2f8 (irq = 3) is a 16550A -05:50:20,527 INFO kernel:brd: module loaded -05:50:20,527 INFO kernel:loop: module loaded -05:50:20,527 INFO kernel:input: Macintosh mouse button emulation as /devices/virtual/input/input1 -05:50:20,527 INFO kernel:Fixed MDIO Bus: probed -05:50:20,527 INFO kernel:ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver -05:50:20,527 INFO kernel:ohci_hcd: USB 1.1 'Open' Host Controller (OHCI) Driver -05:50:20,527 INFO kernel:uhci_hcd: USB Universal Host Controller Interface driver -05:50:20,527 INFO kernel:PNP: PS/2 Controller [PNP0303:KBC,PNP0f13:MOUS] at 0x60,0x64 irq 1,12 -05:50:20,527 INFO kernel:Refined TSC clocksource calibration: 2400.081 MHz. -05:50:20,527 INFO kernel:Switching to clocksource tsc -05:50:20,527 INFO kernel:serio: i8042 KBD port at 0x60,0x64 irq 1 -05:50:20,527 INFO kernel:serio: i8042 AUX port at 0x60,0x64 irq 12 -05:50:20,527 INFO kernel:mice: PS/2 mouse device common for all mice -05:50:20,527 INFO kernel:rtc_cmos 00:04: rtc core: registered rtc_cmos as rtc0 -05:50:20,527 INFO kernel:rtc0: alarms up to one month, y3k, 114 bytes nvram, hpet irqs -05:50:20,527 INFO kernel:cpuidle: using governor ladder -05:50:20,527 INFO kernel:cpuidle: using governor menu -05:50:20,527 INFO kernel:EFI Variables Facility v0.08 2004-May-17 -05:50:20,527 INFO kernel:usbcore: registered new interface driver hiddev -05:50:20,527 INFO kernel:usbcore: registered new interface driver usbhid -05:50:20,527 INFO kernel:usbhid: v2.6:USB HID core driver -05:50:20,527 INFO kernel:GRE over IPv4 demultiplexor driver -05:50:20,527 INFO kernel:input: AT Translated Set 2 keyboard as /devices/platform/i8042/serio0/input/input2 -05:50:20,527 INFO kernel:TCP cubic registered -05:50:20,527 INFO kernel:Initializing XFRM netlink socket -05:50:20,527 INFO kernel:NET: Registered protocol family 17 -05:50:20,527 WARNING kernel:registered taskstats version 1 -05:50:20,527 INFO kernel:input: ImPS/2 Generic Wheel Mouse as /devices/platform/i8042/serio1/input/input3 -05:50:20,527 INFO kernel:rtc_cmos 00:04: setting system clock to 2002-05-11 05:50:20 UTC (1021096220) -05:50:20,527 INFO kernel:Initalizing network drop monitor service -05:50:20,527 INFO kernel:Freeing unused kernel memory: 1276k freed -05:50:20,527 INFO kernel:Write protecting the kernel read-only data: 10240k -05:50:20,527 INFO kernel:Freeing unused kernel memory: 800k freed -05:50:20,527 INFO kernel:Freeing unused kernel memory: 1588k freed -05:50:22,553 INFO kernel:squashfs: version 4.0 (2009/01/31) Phillip Lougher -05:50:22,564 INFO kernel:Loading iSCSI transport class v2.0-870. -05:50:22,583 NOTICE kernel:iscsi: registered transport (tcp) -05:50:22,589 INFO kernel:Floppy drive(s): fd0 is 1.44M -05:50:22,600 INFO kernel:FDC 0 is a post-1991 82077 -05:50:22,604 INFO kernel:BIOS EDD facility v0.16 2004-Jun-25, 2 devices found -05:50:22,608 INFO kernel:input: PC Speaker as /devices/platform/pcspkr/input/input4 -05:50:22,615 INFO kernel:No iBFT detected. -05:50:22,648 INFO kernel:NET: Registered protocol family 10 -05:50:22,648 INFO kernel:lo: Disabled Privacy Extensions -05:50:22,720 DEBUG kernel:ata_piix 0000:00:07.1: version 2.13 -05:50:22,720 INFO kernel:scsi0 : ata_piix -05:50:22,721 INFO kernel:scsi1 : ata_piix -05:50:22,721 INFO kernel:ata1: PATA max UDMA/33 cmd 0x1f0 ctl 0x3f6 bmdma 0x10c0 irq 14 -05:50:22,721 INFO kernel:ata2: PATA max UDMA/33 cmd 0x170 ctl 0x376 bmdma 0x10c8 irq 15 -05:50:22,731 ERR udevd-work: device node '/dev/rtc' already exists, link to '/dev/rtc0' will not overwrite it -05:50:22,907 INFO kernel:ata2.00: ATAPI: VMware Virtual IDE CDROM Drive, 00000001, max UDMA/33 -05:50:22,913 INFO kernel:ata2.00: configured for UDMA/33 -05:50:22,913 NOTICE kernel:scsi 1:0:0:0: CD-ROM NECVMWar VMware IDE CDR10 1.00 PQ: 0 ANSI: 5 -05:50:22,936 INFO kernel:Fusion MPT base driver 3.04.20 -05:50:22,936 INFO kernel:Copyright (c) 1999-2008 LSI Corporation -05:50:22,947 INFO kernel:Fusion MPT SPI Host driver 3.04.20 -05:50:22,947 DEBUG kernel: alloc irq_desc for 17 on node -1 -05:50:22,947 DEBUG kernel: alloc kstat_irqs on node -1 -05:50:22,947 INFO kernel:mptspi 0000:00:10.0: PCI INT A -> GSI 17 (level, low) -> IRQ 17 -05:50:22,947 INFO kernel:mptbase: ioc0: Initiating bringup -05:50:22,966 INFO kernel:ioc0: LSI53C1030 B0: Capabilities={Initiator} -05:50:23,007 INFO kernel:scsi2 : ioc0: LSI53C1030 B0, FwRev=01032920h, Ports=1, MaxQ=128, IRQ=17 -05:50:23,035 NOTICE kernel:scsi 2:0:0:0: Direct-Access VMware Virtual disk 1.0 PQ: 0 ANSI: 2 -05:50:23,035 INFO kernel:scsi target2:0:0: Beginning Domain Validation -05:50:23,035 INFO kernel:scsi target2:0:0: Domain Validation skipping write tests -05:50:23,035 INFO kernel:scsi target2:0:0: Ending Domain Validation -05:50:23,035 INFO kernel:scsi target2:0:0: FAST-40 WIDE SCSI 80.0 MB/s ST (25 ns, offset 127) -05:50:23,036 NOTICE kernel:scsi 2:0:1:0: Direct-Access VMware Virtual disk 1.0 PQ: 0 ANSI: 2 -05:50:23,036 INFO kernel:scsi target2:0:1: Beginning Domain Validation -05:50:23,037 INFO kernel:scsi target2:0:1: Domain Validation skipping write tests -05:50:23,037 INFO kernel:scsi target2:0:1: Ending Domain Validation -05:50:23,037 INFO kernel:scsi target2:0:1: FAST-40 WIDE SCSI 80.0 MB/s ST (25 ns, offset 127) -05:50:23,061 WARNING kernel:sr0: scsi3-mmc drive: 1x/1x writer dvd-ram cd/rw xa/form2 cdda tray -05:50:23,061 INFO kernel:Uniform CD-ROM driver Revision: 3.20 -05:50:23,061 DEBUG kernel:sr 1:0:0:0: Attached scsi CD-ROM sr0 -05:50:23,072 INFO kernel:e1000: Intel(R) PRO/1000 Network Driver - version 7.3.21-k8-NAPI -05:50:23,072 INFO kernel:e1000: Copyright (c) 1999-2006 Intel Corporation. -05:50:23,072 DEBUG kernel: alloc irq_desc for 18 on node -1 -05:50:23,072 DEBUG kernel: alloc kstat_irqs on node -1 -05:50:23,072 INFO kernel:e1000 0000:02:00.0: PCI INT A -> GSI 18 (level, low) -> IRQ 18 -05:50:23,072 DEBUG kernel:e1000 0000:02:00.0: setting latency timer to 64 -05:50:23,422 INFO kernel:e1000 0000:02:00.0: eth0: (PCI:66MHz:32-bit) 00:0c:29:5c:6a:b8 -05:50:23,422 INFO kernel:e1000 0000:02:00.0: eth0: Intel(R) PRO/1000 Network Connection -05:50:23,422 DEBUG kernel: alloc irq_desc for 19 on node -1 -05:50:23,422 DEBUG kernel: alloc kstat_irqs on node -1 -05:50:23,422 INFO kernel:e1000 0000:02:01.0: PCI INT A -> GSI 19 (level, low) -> IRQ 19 -05:50:23,422 DEBUG kernel:e1000 0000:02:01.0: setting latency timer to 64 -05:50:23,766 INFO kernel:e1000 0000:02:01.0: eth1: (PCI:66MHz:32-bit) 00:0c:29:5c:6a:c2 -05:50:23,766 INFO kernel:e1000 0000:02:01.0: eth1: Intel(R) PRO/1000 Network Connection -05:50:23,766 DEBUG kernel: alloc irq_desc for 16 on node -1 -05:50:23,766 DEBUG kernel: alloc kstat_irqs on node -1 -05:50:23,766 INFO kernel:e1000 0000:02:02.0: PCI INT A -> GSI 16 (level, low) -> IRQ 16 -05:50:23,766 DEBUG kernel:e1000 0000:02:02.0: setting latency timer to 64 -05:50:24,116 INFO kernel:e1000 0000:02:02.0: eth2: (PCI:66MHz:32-bit) 00:0c:29:5c:6a:cc -05:50:24,116 INFO kernel:e1000 0000:02:02.0: eth2: Intel(R) PRO/1000 Network Connection -05:50:24,116 INFO kernel:e1000 0000:02:03.0: PCI INT A -> GSI 17 (level, low) -> IRQ 17 -05:50:24,116 DEBUG kernel:e1000 0000:02:03.0: setting latency timer to 64 -05:50:24,461 INFO kernel:e1000 0000:02:03.0: eth3: (PCI:66MHz:32-bit) 00:0c:29:5c:6a:d6 -05:50:24,461 INFO kernel:e1000 0000:02:03.0: eth3: Intel(R) PRO/1000 Network Connection -05:50:24,497 NOTICE kernel:sd 2:0:0:0: [sda] 33554432 512-byte logical blocks: (17.1 GB/16.0 GiB) -05:50:24,497 NOTICE kernel:sd 2:0:0:0: [sda] Write Protect is off -05:50:24,497 DEBUG kernel:sd 2:0:0:0: [sda] Mode Sense: 61 00 00 00 -05:50:24,497 NOTICE kernel:sd 2:0:0:0: [sda] Cache data unavailable -05:50:24,497 ERR kernel:sd 2:0:0:0: [sda] Assuming drive cache: write through -05:50:24,497 NOTICE kernel:sd 2:0:0:0: [sda] Cache data unavailable -05:50:24,497 ERR kernel:sd 2:0:0:0: [sda] Assuming drive cache: write through -05:50:24,497 INFO kernel: sda: -05:50:24,497 NOTICE kernel:sd 2:0:1:0: [sdb] 33554432 512-byte logical blocks: (17.1 GB/16.0 GiB) -05:50:24,497 NOTICE kernel:sd 2:0:1:0: [sdb] Write Protect is off -05:50:24,497 DEBUG kernel:sd 2:0:1:0: [sdb] Mode Sense: 61 00 00 00 -05:50:24,497 NOTICE kernel:sd 2:0:1:0: [sdb] Cache data unavailable -05:50:24,497 ERR kernel:sd 2:0:1:0: [sdb] Assuming drive cache: write through -05:50:24,497 NOTICE kernel:sd 2:0:1:0: [sdb] Cache data unavailable -05:50:24,497 ERR kernel:sd 2:0:1:0: [sdb] Assuming drive cache: write through -05:50:24,502 INFO kernel: sdb: -05:50:24,502 NOTICE kernel:sd 2:0:1:0: [sdb] Cache data unavailable -05:50:24,502 ERR kernel:sd 2:0:1:0: [sdb] Assuming drive cache: write through -05:50:24,502 NOTICE kernel:sd 2:0:1:0: [sdb] Attached SCSI disk -05:50:24,505 WARNING kernel: sda1 sda2 -05:50:24,531 NOTICE kernel:sd 2:0:0:0: [sda] Cache data unavailable -05:50:24,531 ERR kernel:sd 2:0:0:0: [sda] Assuming drive cache: write through -05:50:24,531 NOTICE kernel:sd 2:0:0:0: [sda] Attached SCSI disk -05:50:24,537 NOTICE kernel:sr 1:0:0:0: Attached scsi generic sg0 type 5 -05:50:24,538 NOTICE kernel:sd 2:0:0:0: Attached scsi generic sg1 type 0 -05:50:24,538 NOTICE kernel:sd 2:0:1:0: Attached scsi generic sg2 type 0 -05:50:28,728 ERR udevd-work: device node '/dev/rtc' already exists, link to '/dev/rtc0' will not overwrite it -05:50:31,010 INFO NetworkManager: NetworkManager (version 0.8.1-66.el6) is starting... -05:50:31,010 INFO NetworkManager: Read config file /etc/NetworkManager/NetworkManager.conf -05:50:31,012 INFO NetworkManager: trying to start the modem manager... -05:50:31,016 INFO NetworkManager: monitoring kernel firmware directory '/lib/firmware'. -05:50:31,016 INFO NetworkManager: Bonding/Bridging/VLAN support enabled -05:50:31,017 NOTICE NetworkManager: ifcfg-rh: Acquired D-Bus service com.redhat.ifcfgrh1 -05:50:31,018 INFO NetworkManager: Loaded plugin ifcfg-rh: (c) 2007 - 2008 Red Hat, Inc. To report bugs please use the NetworkManager mailing list. -05:50:31,018 INFO NetworkManager: Loaded plugin keyfile: (c) 2007 - 2008 Red Hat, Inc. To report bugs please use the NetworkManager mailing list. -05:50:31,018 NOTICE NetworkManager: ifcfg-rh: parsing /etc/sysconfig/network-scripts/ifcfg-eth3 ... -05:50:31,020 NOTICE NetworkManager: ifcfg-rh: read connection 'System eth3' -05:50:31,020 NOTICE NetworkManager: ifcfg-rh: parsing /etc/sysconfig/network-scripts/ifcfg-eth2 ... -05:50:31,021 NOTICE NetworkManager: ifcfg-rh: read connection 'System eth2' -05:50:31,021 NOTICE NetworkManager: ifcfg-rh: parsing /etc/sysconfig/network-scripts/ifcfg-eth1 ... -05:50:31,022 NOTICE NetworkManager: ifcfg-rh: read connection 'System eth1' -05:50:31,022 NOTICE NetworkManager: ifcfg-rh: parsing /etc/sysconfig/network-scripts/ifcfg-eth0 ... -05:50:31,022 NOTICE NetworkManager: ifcfg-rh: read connection 'System eth0' -05:50:31,023 WARNING NetworkManager: Can not read directory '/etc/NetworkManager/system-connections': Error opening directory '/etc/NetworkManager/system-connections': No such file or directory -05:50:31,025 INFO NetworkManager: WiFi enabled by radio killswitch; enabled by state file -05:50:31,025 INFO NetworkManager: WWAN enabled by radio killswitch; enabled by state file -05:50:31,025 INFO NetworkManager: WiMAX enabled by radio killswitch; enabled by state file -05:50:31,025 INFO NetworkManager: Networking is enabled by state file -05:50:31,044 INFO kernel:802.1Q VLAN Support v1.8 Ben Greear -05:50:31,044 INFO kernel:All bugs added by David S. Miller -05:50:31,045 INFO NetworkManager: (eth0): carrier is OFF -05:50:31,045 INFO NetworkManager: (eth0): new Ethernet device (driver: 'e1000' ifindex: 2) -05:50:31,045 INFO NetworkManager: (eth0): exported as /org/freedesktop/NetworkManager/Devices/0 -05:50:31,045 INFO NetworkManager: (eth0): now managed -05:50:31,045 INFO NetworkManager: (eth0): device state change: 1 -> 2 (reason 2) -05:50:31,045 INFO NetworkManager: (eth0): bringing up device. -05:50:31,051 INFO kernel:e1000: eth0 NIC Link is Up 1000 Mbps Full Duplex, Flow Control: None -05:50:31,055 INFO kernel:8021q: adding VLAN 0 to HW filter on device eth0 -05:50:31,056 INFO NetworkManager: (eth0): carrier now ON (device state 2) -05:50:31,056 INFO NetworkManager: (eth0): preparing device. -05:50:31,056 INFO NetworkManager: (eth0): deactivating device (reason: 2). -05:50:31,057 INFO NetworkManager: (eth1): carrier is OFF -05:50:31,058 INFO NetworkManager: (eth1): new Ethernet device (driver: 'e1000' ifindex: 3) -05:50:31,058 INFO NetworkManager: (eth1): exported as /org/freedesktop/NetworkManager/Devices/1 -05:50:31,058 INFO NetworkManager: (eth1): now managed -05:50:31,058 INFO NetworkManager: (eth1): device state change: 1 -> 2 (reason 2) -05:50:31,058 INFO NetworkManager: (eth1): bringing up device. -05:50:31,063 INFO kernel:e1000: eth1 NIC Link is Up 1000 Mbps Full Duplex, Flow Control: None -05:50:31,068 INFO kernel:8021q: adding VLAN 0 to HW filter on device eth1 -05:50:31,068 INFO NetworkManager: (eth1): carrier now ON (device state 2) -05:50:31,068 INFO NetworkManager: (eth1): preparing device. -05:50:31,068 INFO NetworkManager: (eth1): deactivating device (reason: 2). -05:50:31,069 INFO NetworkManager: (eth2): carrier is OFF -05:50:31,070 INFO NetworkManager: (eth2): new Ethernet device (driver: 'e1000' ifindex: 4) -05:50:31,070 INFO NetworkManager: (eth2): exported as /org/freedesktop/NetworkManager/Devices/2 -05:50:31,070 INFO NetworkManager: (eth2): now managed -05:50:31,070 INFO NetworkManager: (eth2): device state change: 1 -> 2 (reason 2) -05:50:31,070 INFO NetworkManager: (eth2): bringing up device. -05:50:31,076 INFO kernel:e1000: eth2 NIC Link is Up 1000 Mbps Full Duplex, Flow Control: None -05:50:31,080 INFO kernel:8021q: adding VLAN 0 to HW filter on device eth2 -05:50:31,080 INFO NetworkManager: (eth2): carrier now ON (device state 2) -05:50:31,080 INFO NetworkManager: (eth2): preparing device. -05:50:31,080 INFO NetworkManager: (eth2): deactivating device (reason: 2). -05:50:31,081 INFO NetworkManager: (eth3): carrier is OFF -05:50:31,082 INFO NetworkManager: (eth3): new Ethernet device (driver: 'e1000' ifindex: 5) -05:50:31,082 INFO NetworkManager: (eth3): exported as /org/freedesktop/NetworkManager/Devices/3 -05:50:31,082 INFO NetworkManager: (eth3): now managed -05:50:31,082 INFO NetworkManager: (eth3): device state change: 1 -> 2 (reason 2) -05:50:31,082 INFO NetworkManager: (eth3): bringing up device. -05:50:31,086 INFO kernel:e1000: eth3 NIC Link is Up 1000 Mbps Full Duplex, Flow Control: None -05:50:31,091 INFO kernel:8021q: adding VLAN 0 to HW filter on device eth3 -05:50:31,091 INFO NetworkManager: (eth3): carrier now ON (device state 2) -05:50:31,091 INFO NetworkManager: (eth3): preparing device. -05:50:31,091 INFO NetworkManager: (eth3): deactivating device (reason: 2). -05:50:31,093 INFO NetworkManager: (eth0): carrier now OFF (device state 2) -05:50:31,094 INFO NetworkManager: (eth0): carrier now ON (device state 2) -05:50:31,094 WARNING NetworkManager: (nm-device.c:4447):nm_device_queue_state: runtime check failed: (priv->queued_state.id == 0) -05:50:31,094 INFO NetworkManager: (eth1): carrier now OFF (device state 2) -05:50:31,094 INFO NetworkManager: (eth1): carrier now ON (device state 2) -05:50:31,094 WARNING NetworkManager: (nm-device.c:4447):nm_device_queue_state: runtime check failed: (priv->queued_state.id == 0) -05:50:31,094 INFO NetworkManager: (eth2): carrier now OFF (device state 2) -05:50:31,095 INFO NetworkManager: (eth2): carrier now ON (device state 2) -05:50:31,095 WARNING NetworkManager: (nm-device.c:4447):nm_device_queue_state: runtime check failed: (priv->queued_state.id == 0) -05:50:31,095 INFO NetworkManager: (eth3): carrier now OFF (device state 2) -05:50:31,095 INFO NetworkManager: (eth3): carrier now ON (device state 2) -05:50:31,095 WARNING NetworkManager: (nm-device.c:4447):nm_device_queue_state: runtime check failed: (priv->queued_state.id == 0) -05:50:31,096 INFO NetworkManager: Trying to start the supplicant... -05:50:31,097 INFO NetworkManager: (eth0): device state change: 2 -> 3 (reason 40) -05:50:31,097 INFO NetworkManager: (eth1): device state change: 2 -> 3 (reason 40) -05:50:31,097 INFO NetworkManager: (eth2): device state change: 2 -> 3 (reason 40) -05:50:31,098 INFO NetworkManager: (eth3): device state change: 2 -> 3 (reason 40) -05:50:31,104 INFO NetworkManager: wpa_supplicant started -05:50:32,010 WARNING NetworkManager: error requesting auth for org.freedesktop.NetworkManager.enable-disable-network: (26) Remote Exception invoking org.freedesktop.PolicyKit1.Authority.CheckAuthorization() on /org/freedesktop/PolicyKit1/Authority at name org.freedesktop.PolicyKit1: org.freedesktop.DBus.Error.Spawn.ExecFailed: Cannot launch daemon, file not found or permissions invalid -05:50:32,010 WARNING NetworkManager: error requesting auth for org.freedesktop.NetworkManager.sleep-wake: (26) Remote Exception invoking org.freedesktop.PolicyKit1.Authority.CheckAuthorization() on /org/freedesktop/PolicyKit1/Authority at name org.freedesktop.PolicyKit1: org.freedesktop.DBus.Error.Spawn.ExecFailed: Cannot launch daemon, file not found or permissions invalid -05:50:32,010 WARNING NetworkManager: error requesting auth for org.freedesktop.NetworkManager.enable-disable-wifi: (26) Remote Exception invoking org.freedesktop.PolicyKit1.Authority.CheckAuthorization() on /org/freedesktop/PolicyKit1/Authority at name org.freedesktop.PolicyKit1: org.freedesktop.DBus.Error.Spawn.ExecFailed: Cannot launch daemon, file not found or permissions invalid -05:50:32,010 WARNING NetworkManager: error requesting auth for org.freedesktop.NetworkManager.enable-disable-wwan: (26) Remote Exception invoking org.freedesktop.PolicyKit1.Authority.CheckAuthorization() on /org/freedesktop/PolicyKit1/Authority at name org.freedesktop.PolicyKit1: org.freedesktop.DBus.Error.Spawn.ExecFailed: Cannot launch daemon, file not found or permissions invalid -05:50:32,010 WARNING NetworkManager: error requesting auth for org.freedesktop.NetworkManager.use-user-connections: (26) Remote Exception invoking org.freedesktop.PolicyKit1.Authority.CheckAuthorization() on /org/freedesktop/PolicyKit1/Authority at name org.freedesktop.PolicyKit1: org.freedesktop.DBus.Error.Spawn.ExecFailed: Cannot launch daemon, file not found or permissions invalid -05:50:32,010 WARNING NetworkManager: error requesting auth for org.freedesktop.NetworkManager.network-control: (26) Remote Exception invoking org.freedesktop.PolicyKit1.Authority.CheckAuthorization() on /org/freedesktop/PolicyKit1/Authority at name org.freedesktop.PolicyKit1: org.freedesktop.DBus.Error.Spawn.ExecFailed: Cannot launch daemon, file not found or permissions invalid -05:50:32,010 WARNING NetworkManager: error requesting auth for org.freedesktop.network-manager-settings.system.wifi.share.open: (26) Remote Exception invoking org.freedesktop.PolicyKit1.Authority.CheckAuthorization() on /org/freedesktop/PolicyKit1/Authority at name org.freedesktop.PolicyKit1: org.freedesktop.DBus.Error.Spawn.ExecFailed: Cannot launch daemon, file not found or permissions invalid -05:50:32,010 WARNING NetworkManager: error requesting auth for org.freedesktop.network-manager-settings.system.wifi.share.protected: (26) Remote Exception invoking org.freedesktop.PolicyKit1.Authority.CheckAuthorization() on /org/freedesktop/PolicyKit1/Authority at name org.freedesktop.PolicyKit1: org.freedesktop.DBus.Error.Spawn.ExecFailed: Cannot launch daemon, file not found or permissions invalid -05:50:32,019 WARNING NetworkManager: error requesting auth for org.freedesktop.NetworkManager.enable-disable-network: (26) Remote Exception invoking org.freedesktop.PolicyKit1.Authority.CheckAuthorization() on /org/freedesktop/PolicyKit1/Authority at name org.freedesktop.PolicyKit1: org.freedesktop.DBus.Error.Spawn.ExecFailed: Cannot launch daemon, file not found or permissions invalid -05:50:32,019 WARNING NetworkManager: error requesting auth for org.freedesktop.NetworkManager.sleep-wake: (26) Remote Exception invoking org.freedesktop.PolicyKit1.Authority.CheckAuthorization() on /org/freedesktop/PolicyKit1/Authority at name org.freedesktop.PolicyKit1: org.freedesktop.DBus.Error.Spawn.ExecFailed: Cannot launch daemon, file not found or permissions invalid -05:50:32,019 WARNING NetworkManager: error requesting auth for org.freedesktop.NetworkManager.enable-disable-wifi: (26) Remote Exception invoking org.freedesktop.PolicyKit1.Authority.CheckAuthorization() on /org/freedesktop/PolicyKit1/Authority at name org.freedesktop.PolicyKit1: org.freedesktop.DBus.Error.Spawn.ExecFailed: Cannot launch daemon, file not found or permissions invalid -05:50:32,019 WARNING NetworkManager: error requesting auth for org.freedesktop.NetworkManager.enable-disable-wwan: (26) Remote Exception invoking org.freedesktop.PolicyKit1.Authority.CheckAuthorization() on /org/freedesktop/PolicyKit1/Authority at name org.freedesktop.PolicyKit1: org.freedesktop.DBus.Error.Spawn.ExecFailed: Cannot launch daemon, file not found or permissions invalid -05:50:32,019 WARNING NetworkManager: error requesting auth for org.freedesktop.NetworkManager.use-user-connections: (26) Remote Exception invoking org.freedesktop.PolicyKit1.Authority.CheckAuthorization() on /org/freedesktop/PolicyKit1/Authority at name org.freedesktop.PolicyKit1: org.freedesktop.DBus.Error.Spawn.ExecFailed: Cannot launch daemon, file not found or permissions invalid -05:50:32,019 WARNING NetworkManager: error requesting auth for org.freedesktop.NetworkManager.network-control: (26) Remote Exception invoking org.freedesktop.PolicyKit1.Authority.CheckAuthorization() on /org/freedesktop/PolicyKit1/Authority at name org.freedesktop.PolicyKit1: org.freedesktop.DBus.Error.Spawn.ExecFailed: Cannot launch daemon, file not found or permissions invalid -05:50:32,019 WARNING NetworkManager: error requesting auth for org.freedesktop.network-manager-settings.system.wifi.share.open: (26) Remote Exception invoking org.freedesktop.PolicyKit1.Authority.CheckAuthorization() on /org/freedesktop/PolicyKit1/Authority at name org.freedesktop.PolicyKit1: org.freedesktop.DBus.Error.Spawn.ExecFailed: Cannot launch daemon, file not found or permissions invalid -05:50:32,019 WARNING NetworkManager: error requesting auth for org.freedesktop.network-manager-settings.system.wifi.share.protected: (26) Remote Exception invoking org.freedesktop.PolicyKit1.Authority.CheckAuthorization() on /org/freedesktop/PolicyKit1/Authority at name org.freedesktop.PolicyKit1: org.freedesktop.DBus.Error.Spawn.ExecFailed: Cannot launch daemon, file not found or permissions invalid -05:50:32,026 WARNING NetworkManager: error requesting auth for org.freedesktop.NetworkManager.enable-disable-network: (26) Remote Exception invoking org.freedesktop.PolicyKit1.Authority.CheckAuthorization() on /org/freedesktop/PolicyKit1/Authority at name org.freedesktop.PolicyKit1: org.freedesktop.DBus.Error.Spawn.ExecFailed: Cannot launch daemon, file not found or permissions invalid -05:50:32,026 WARNING NetworkManager: error requesting auth for org.freedesktop.NetworkManager.sleep-wake: (26) Remote Exception invoking org.freedesktop.PolicyKit1.Authority.CheckAuthorization() on /org/freedesktop/PolicyKit1/Authority at name org.freedesktop.PolicyKit1: org.freedesktop.DBus.Error.Spawn.ExecFailed: Cannot launch daemon, file not found or permissions invalid -05:50:32,027 WARNING NetworkManager: error requesting auth for org.freedesktop.NetworkManager.enable-disable-wifi: (26) Remote Exception invoking org.freedesktop.PolicyKit1.Authority.CheckAuthorization() on /org/freedesktop/PolicyKit1/Authority at name org.freedesktop.PolicyKit1: org.freedesktop.DBus.Error.Spawn.ExecFailed: Cannot launch daemon, file not found or permissions invalid -05:50:32,027 WARNING NetworkManager: error requesting auth for org.freedesktop.NetworkManager.enable-disable-wwan: (26) Remote Exception invoking org.freedesktop.PolicyKit1.Authority.CheckAuthorization() on /org/freedesktop/PolicyKit1/Authority at name org.freedesktop.PolicyKit1: org.freedesktop.DBus.Error.Spawn.ExecFailed: Cannot launch daemon, file not found or permissions invalid -05:50:32,027 WARNING NetworkManager: error requesting auth for org.freedesktop.NetworkManager.use-user-connections: (26) Remote Exception invoking org.freedesktop.PolicyKit1.Authority.CheckAuthorization() on /org/freedesktop/PolicyKit1/Authority at name org.freedesktop.PolicyKit1: org.freedesktop.DBus.Error.Spawn.ExecFailed: Cannot launch daemon, file not found or permissions invalid -05:50:32,027 WARNING NetworkManager: error requesting auth for org.freedesktop.NetworkManager.network-control: (26) Remote Exception invoking org.freedesktop.PolicyKit1.Authority.CheckAuthorization() on /org/freedesktop/PolicyKit1/Authority at name org.freedesktop.PolicyKit1: org.freedesktop.DBus.Error.Spawn.ExecFailed: Cannot launch daemon, file not found or permissions invalid -05:50:32,027 WARNING NetworkManager: error requesting auth for org.freedesktop.network-manager-settings.system.wifi.share.open: (26) Remote Exception invoking org.freedesktop.PolicyKit1.Authority.CheckAuthorization() on /org/freedesktop/PolicyKit1/Authority at name org.freedesktop.PolicyKit1: org.freedesktop.DBus.Error.Spawn.ExecFailed: Cannot launch daemon, file not found or permissions invalid -05:50:32,027 WARNING NetworkManager: error requesting auth for org.freedesktop.network-manager-settings.system.wifi.share.protected: (26) Remote Exception invoking org.freedesktop.PolicyKit1.Authority.CheckAuthorization() on /org/freedesktop/PolicyKit1/Authority at name org.freedesktop.PolicyKit1: org.freedesktop.DBus.Error.Spawn.ExecFailed: Cannot launch daemon, file not found or permissions invalid -05:50:32,039 WARNING NetworkManager: error requesting auth for org.freedesktop.NetworkManager.enable-disable-network: (26) Remote Exception invoking org.freedesktop.PolicyKit1.Authority.CheckAuthorization() on /org/freedesktop/PolicyKit1/Authority at name org.freedesktop.PolicyKit1: org.freedesktop.DBus.Error.Spawn.ExecFailed: Cannot launch daemon, file not found or permissions invalid -05:50:32,039 WARNING NetworkManager: error requesting auth for org.freedesktop.NetworkManager.sleep-wake: (26) Remote Exception invoking org.freedesktop.PolicyKit1.Authority.CheckAuthorization() on /org/freedesktop/PolicyKit1/Authority at name org.freedesktop.PolicyKit1: org.freedesktop.DBus.Error.Spawn.ExecFailed: Cannot launch daemon, file not found or permissions invalid -05:50:32,039 WARNING NetworkManager: error requesting auth for org.freedesktop.NetworkManager.enable-disable-wifi: (26) Remote Exception invoking org.freedesktop.PolicyKit1.Authority.CheckAuthorization() on /org/freedesktop/PolicyKit1/Authority at name org.freedesktop.PolicyKit1: org.freedesktop.DBus.Error.Spawn.ExecFailed: Cannot launch daemon, file not found or permissions invalid -05:50:32,039 WARNING NetworkManager: error requesting auth for org.freedesktop.NetworkManager.enable-disable-wwan: (26) Remote Exception invoking org.freedesktop.PolicyKit1.Authority.CheckAuthorization() on /org/freedesktop/PolicyKit1/Authority at name org.freedesktop.PolicyKit1: org.freedesktop.DBus.Error.Spawn.ExecFailed: Cannot launch daemon, file not found or permissions invalid -05:50:32,039 WARNING NetworkManager: error requesting auth for org.freedesktop.NetworkManager.use-user-connections: (26) Remote Exception invoking org.freedesktop.PolicyKit1.Authority.CheckAuthorization() on /org/freedesktop/PolicyKit1/Authority at name org.freedesktop.PolicyKit1: org.freedesktop.DBus.Error.Spawn.ExecFailed: Cannot launch daemon, file not found or permissions invalid -05:50:32,039 WARNING NetworkManager: error requesting auth for org.freedesktop.NetworkManager.network-control: (26) Remote Exception invoking org.freedesktop.PolicyKit1.Authority.CheckAuthorization() on /org/freedesktop/PolicyKit1/Authority at name org.freedesktop.PolicyKit1: org.freedesktop.DBus.Error.Spawn.ExecFailed: Cannot launch daemon, file not found or permissions invalid -05:50:32,039 WARNING NetworkManager: error requesting auth for org.freedesktop.network-manager-settings.system.wifi.share.open: (26) Remote Exception invoking org.freedesktop.PolicyKit1.Authority.CheckAuthorization() on /org/freedesktop/PolicyKit1/Authority at name org.freedesktop.PolicyKit1: org.freedesktop.DBus.Error.Spawn.ExecFailed: Cannot launch daemon, file not found or permissions invalid -05:50:32,039 WARNING NetworkManager: error requesting auth for org.freedesktop.network-manager-settings.system.wifi.share.protected: (26) Remote Exception invoking org.freedesktop.PolicyKit1.Authority.CheckAuthorization() on /org/freedesktop/PolicyKit1/Authority at name org.freedesktop.PolicyKit1: org.freedesktop.DBus.Error.Spawn.ExecFailed: Cannot launch daemon, file not found or permissions invalid -05:50:33,054 NOTICE NetworkManager: ifcfg-rh: updating /etc/sysconfig/network-scripts/ifcfg-eth0 -05:50:33,057 INFO NetworkManager: Auto-activating connection 'System eth0'. -05:50:33,057 INFO NetworkManager: Activation (eth0) starting connection 'System eth0' -05:50:33,058 INFO NetworkManager: (eth0): device state change: 3 -> 4 (reason 0) -05:50:33,058 INFO NetworkManager: Activation (eth0) Stage 1 of 5 (Device Prepare) scheduled... -05:50:33,058 INFO NetworkManager: Activation (eth0) Stage 1 of 5 (Device Prepare) started... -05:50:33,059 INFO NetworkManager: Activation (eth0) Stage 2 of 5 (Device Configure) scheduled... -05:50:33,059 INFO NetworkManager: Activation (eth0) Stage 1 of 5 (Device Prepare) complete. -05:50:33,059 INFO NetworkManager: Activation (eth0) Stage 2 of 5 (Device Configure) starting... -05:50:33,059 INFO NetworkManager: (eth0): device state change: 4 -> 5 (reason 0) -05:50:33,059 INFO NetworkManager: Activation (eth0) Stage 2 of 5 (Device Configure) successful. -05:50:33,059 INFO NetworkManager: Activation (eth0) Stage 3 of 5 (IP Configure Start) scheduled. -05:50:33,059 INFO NetworkManager: Activation (eth0) Stage 2 of 5 (Device Configure) complete. -05:50:33,059 INFO NetworkManager: Activation (eth0) Stage 3 of 5 (IP Configure Start) started... -05:50:33,059 INFO NetworkManager: (eth0): device state change: 5 -> 7 (reason 0) -05:50:33,060 INFO NetworkManager: Activation (eth0) Beginning DHCPv4 transaction -05:50:33,062 INFO dhclient: Internet Systems Consortium DHCP Client 4.1.1-P1 -05:50:33,062 INFO NetworkManager: dhclient started with pid 654 -05:50:33,063 INFO NetworkManager: Activation (eth0) DHCPv4 will time out in 45 seconds -05:50:33,063 INFO dhclient: Copyright 2004-2010 Internet Systems Consortium. -05:50:33,063 INFO dhclient: All rights reserved. -05:50:33,063 INFO dhclient: For info, please visit https://www.isc.org/software/dhcp/ -05:50:33,063 INFO dhclient: -05:50:33,063 INFO NetworkManager: Activation (eth0) Stage 3 of 5 (IP Configure Start) complete. -05:50:33,066 INFO NetworkManager: (eth0): DHCPv4 state changed nbi -> preinit -05:50:33,068 INFO dhclient: Listening on LPF/eth0/00:0c:29:5c:6a:b8 -05:50:33,068 INFO dhclient: Sending on LPF/eth0/00:0c:29:5c:6a:b8 -05:50:33,068 INFO dhclient: Sending on Socket/fallback -05:50:37,004 INFO dhclient: DHCPDISCOVER on eth0 to 255.255.255.255 port 67 interval 7 (xid=0x3433ec2c) -05:50:37,048 INFO dhclient: DHCPOFFER from 10.145.88.211 -05:50:37,048 INFO dhclient: DHCPREQUEST on eth0 to 255.255.255.255 port 67 (xid=0x3433ec2c) -05:50:38,084 INFO dhclient: DHCPACK from 10.145.88.211 (xid=0x3433ec2c) -05:50:38,087 INFO dhclient: bound to 10.145.88.104 -- renewal in 10764 seconds. -05:50:38,087 INFO NetworkManager: (eth0): DHCPv4 state changed preinit -> bound -05:50:38,087 INFO NetworkManager: Activation (eth0) Stage 4 of 5 (IP4 Configure Get) scheduled... -05:50:38,087 INFO NetworkManager: Activation (eth0) Stage 4 of 5 (IP4 Configure Get) started... -05:50:38,087 INFO NetworkManager: address 10.145.88.104 -05:50:38,087 INFO NetworkManager: prefix 23 (255.255.254.0) -05:50:38,087 INFO NetworkManager: gateway 10.145.88.1 -05:50:38,087 INFO NetworkManager: hostname 'server2' -05:50:38,087 INFO NetworkManager: nameserver '10.145.88.211' -05:50:38,088 INFO NetworkManager: Activation (eth0) Stage 5 of 5 (IP Configure Commit) scheduled... -05:50:38,088 INFO NetworkManager: Activation (eth0) Stage 4 of 5 (IP4 Configure Get) complete. -05:50:38,088 INFO NetworkManager: Activation (eth0) Stage 5 of 5 (IP Configure Commit) started... -05:50:39,089 INFO NetworkManager: (eth0): device state change: 7 -> 8 (reason 0) -05:50:39,090 INFO NetworkManager: Policy set 'System eth0' (eth0) as default for IPv4 routing and DNS. -05:50:39,090 INFO NetworkManager: Setting system hostname to 'server2' (from DHCPv4) -05:50:39,091 INFO NetworkManager: Activation (eth0) successful, device activated. -05:50:39,092 INFO NetworkManager: Activation (eth0) Stage 5 of 5 (IP Configure Commit) complete. -05:50:55,174 WARNING NetworkManager: error requesting auth for org.freedesktop.NetworkManager.enable-disable-network: (26) Remote Exception invoking org.freedesktop.PolicyKit1.Authority.CheckAuthorization() on /org/freedesktop/PolicyKit1/Authority at name org.freedesktop.PolicyKit1: org.freedesktop.DBus.Error.Spawn.ExecFailed: Cannot launch daemon, file not found or permissions invalid -05:50:55,174 WARNING NetworkManager: error requesting auth for org.freedesktop.NetworkManager.sleep-wake: (26) Remote Exception invoking org.freedesktop.PolicyKit1.Authority.CheckAuthorization() on /org/freedesktop/PolicyKit1/Authority at name org.freedesktop.PolicyKit1: org.freedesktop.DBus.Error.Spawn.ExecFailed: Cannot launch daemon, file not found or permissions invalid -05:50:55,174 WARNING NetworkManager: error requesting auth for org.freedesktop.NetworkManager.enable-disable-wifi: (26) Remote Exception invoking org.freedesktop.PolicyKit1.Authority.CheckAuthorization() on /org/freedesktop/PolicyKit1/Authority at name org.freedesktop.PolicyKit1: org.freedesktop.DBus.Error.Spawn.ExecFailed: Cannot launch daemon, file not found or permissions invalid -05:50:55,174 WARNING NetworkManager: error requesting auth for org.freedesktop.NetworkManager.enable-disable-wwan: (26) Remote Exception invoking org.freedesktop.PolicyKit1.Authority.CheckAuthorization() on /org/freedesktop/PolicyKit1/Authority at name org.freedesktop.PolicyKit1: org.freedesktop.DBus.Error.Spawn.ExecFailed: Cannot launch daemon, file not found or permissions invalid -05:50:55,174 WARNING NetworkManager: error requesting auth for org.freedesktop.NetworkManager.use-user-connections: (26) Remote Exception invoking org.freedesktop.PolicyKit1.Authority.CheckAuthorization() on /org/freedesktop/PolicyKit1/Authority at name org.freedesktop.PolicyKit1: org.freedesktop.DBus.Error.Spawn.ExecFailed: Cannot launch daemon, file not found or permissions invalid -05:50:55,174 WARNING NetworkManager: error requesting auth for org.freedesktop.NetworkManager.network-control: (26) Remote Exception invoking org.freedesktop.PolicyKit1.Authority.CheckAuthorization() on /org/freedesktop/PolicyKit1/Authority at name org.freedesktop.PolicyKit1: org.freedesktop.DBus.Error.Spawn.ExecFailed: Cannot launch daemon, file not found or permissions invalid -05:50:55,174 WARNING NetworkManager: error requesting auth for org.freedesktop.network-manager-settings.system.wifi.share.open: (26) Remote Exception invoking org.freedesktop.PolicyKit1.Authority.CheckAuthorization() on /org/freedesktop/PolicyKit1/Authority at name org.freedesktop.PolicyKit1: org.freedesktop.DBus.Error.Spawn.ExecFailed: Cannot launch daemon, file not found or permissions invalid -05:50:55,174 WARNING NetworkManager: error requesting auth for org.freedesktop.network-manager-settings.system.wifi.share.protected: (26) Remote Exception invoking org.freedesktop.PolicyKit1.Authority.CheckAuthorization() on /org/freedesktop/PolicyKit1/Authority at name org.freedesktop.PolicyKit1: org.freedesktop.DBus.Error.Spawn.ExecFailed: Cannot launch daemon, file not found or permissions invalid -05:51:46,967 NOTICE dbus-daemon: [system] Unable to reload configuration: Error in file /etc/dbus-1/system.d/nm-dhcp-client.conf, line 1, column 0: no element found -05:51:46,969 NOTICE dbus-daemon: [system] Unable to reload configuration: Error in file /etc/dbus-1/system.d/org.freedesktop.PolicyKit1.conf, line 1, column 0: no element found -05:51:46,976 NOTICE dbus-daemon: [system] Reloaded configuration -05:51:47,135 DEBUG kernel:SELinux: 2048 avtab hash slots, 277800 rules. -05:51:47,214 DEBUG kernel:SELinux: 2048 avtab hash slots, 277800 rules. -05:51:47,702 DEBUG kernel:SELinux: 9 users, 12 roles, 3917 types, 217 bools, 1 sens, 1024 cats -05:51:47,702 DEBUG kernel:SELinux: 81 classes, 277800 rules -05:51:47,706 DEBUG kernel:SELinux: Completing initialization. -05:51:47,706 DEBUG kernel:SELinux: Setting up existing superblocks. -05:51:47,706 DEBUG kernel:SELinux: initialized (dev loop0, type squashfs), not configured for labeling -05:51:47,706 DEBUG kernel:SELinux: initialized (dev tmpfs, type tmpfs), uses transition SIDs -05:51:47,706 DEBUG kernel:SELinux: initialized (dev tmpfs, type tmpfs), uses transition SIDs -05:51:47,708 DEBUG kernel:SELinux: initialized (dev selinuxfs, type selinuxfs), uses genfs_contexts -05:51:47,708 DEBUG kernel:SELinux: initialized (dev mqueue, type mqueue), uses transition SIDs -05:51:47,708 DEBUG kernel:SELinux: initialized (dev hugetlbfs, type hugetlbfs), uses transition SIDs -05:51:47,708 DEBUG kernel:SELinux: initialized (dev devpts, type devpts), uses transition SIDs -05:51:47,708 DEBUG kernel:SELinux: initialized (dev inotifyfs, type inotifyfs), uses genfs_contexts -05:51:47,708 DEBUG kernel:SELinux: initialized (dev anon_inodefs, type anon_inodefs), uses genfs_contexts -05:51:47,708 DEBUG kernel:SELinux: initialized (dev pipefs, type pipefs), uses task SIDs -05:51:47,708 DEBUG kernel:SELinux: initialized (dev debugfs, type debugfs), uses genfs_contexts -05:51:47,708 DEBUG kernel:SELinux: initialized (dev sockfs, type sockfs), uses task SIDs -05:51:47,708 DEBUG kernel:SELinux: initialized (dev devtmpfs, type devtmpfs), uses transition SIDs -05:51:47,708 DEBUG kernel:SELinux: initialized (dev tmpfs, type tmpfs), uses transition SIDs -05:51:47,708 DEBUG kernel:SELinux: initialized (dev proc, type proc), uses genfs_contexts -05:51:47,708 DEBUG kernel:SELinux: initialized (dev bdev, type bdev), uses genfs_contexts -05:51:47,708 DEBUG kernel:SELinux: initialized (dev rootfs, type rootfs), uses genfs_contexts -05:51:47,709 DEBUG kernel:SELinux: initialized (dev sysfs, type sysfs), uses genfs_contexts -05:51:47,751 NOTICE kernel:type=1403 audit(1021096307.739:2): policy loaded auid=4294967295 ses=4294967295 -05:51:47,786 INFO kernel:md: raid0 personality registered for level 0 -05:51:47,793 INFO kernel:md: raid1 personality registered for level 1 -05:51:47,797 INFO kernel:async_tx: api initialized (async) -05:51:47,802 INFO kernel:xor: automatically using best checksumming function: generic_sse -05:51:47,810 INFO kernel: generic_sse: 9176.000 MB/sec -05:51:47,810 INFO kernel:xor: using function: generic_sse (9176.000 MB/sec) -05:51:47,834 WARNING kernel:raid6: sse2x1 4742 MB/s -05:51:47,851 WARNING kernel:raid6: sse2x2 7117 MB/s -05:51:47,868 WARNING kernel:raid6: sse2x4 7660 MB/s -05:51:47,868 WARNING kernel:raid6: using algorithm sse2x4 (7660 MB/s) -05:51:47,868 WARNING kernel:raid6: using ssse3x2 recovery algorithm -05:51:47,882 INFO kernel:md: raid6 personality registered for level 6 -05:51:47,882 INFO kernel:md: raid5 personality registered for level 5 -05:51:47,882 INFO kernel:md: raid4 personality registered for level 4 -05:51:47,893 INFO kernel:md: raid10 personality registered for level 10 -05:51:47,896 INFO kernel:md: linear personality registered for level -1 -05:51:47,909 INFO kernel:device-mapper: uevent: version 1.0.3 -05:51:47,909 INFO kernel:device-mapper: ioctl: 4.24.6-ioctl (2013-01-15) initialised: dm-devel@redhat.com -05:51:47,940 INFO kernel:device-mapper: multipath: version 1.5.0 loaded -05:51:47,944 INFO kernel:device-mapper: multipath round-robin: version 1.0.0 loaded -05:52:05,224 NOTICE kernel:sd 2:0:0:0: [sda] Cache data unavailable -05:52:05,224 ERR kernel:sd 2:0:0:0: [sda] Assuming drive cache: write through -05:52:05,225 INFO kernel: sda: sda1 -05:52:06,013 NOTICE kernel:sd 2:0:0:0: [sda] Cache data unavailable -05:52:06,013 ERR kernel:sd 2:0:0:0: [sda] Assuming drive cache: write through -05:52:06,023 INFO kernel: sda: -05:52:06,365 NOTICE kernel:sd 2:0:0:0: [sda] Cache data unavailable -05:52:06,365 ERR kernel:sd 2:0:0:0: [sda] Assuming drive cache: write through -05:52:06,415 INFO kernel: sda: sda1 -05:52:09,171 NOTICE kernel:sd 2:0:0:0: [sda] Cache data unavailable -05:52:09,171 ERR kernel:sd 2:0:0:0: [sda] Assuming drive cache: write through -05:52:09,171 INFO kernel: sda: sda1 sda2 -05:52:11,280 NOTICE kernel:sd 2:0:0:0: [sda] Cache data unavailable -05:52:11,280 ERR kernel:sd 2:0:0:0: [sda] Assuming drive cache: write through -05:52:11,280 INFO kernel: sda: sda1 sda2 sda3 -05:52:44,551 INFO kernel:Adding 3354616k swap on /dev/sda2. Priority:-1 extents:1 across:3354616k -05:52:45,044 INFO kernel:kjournald starting. Commit interval 5 seconds -05:52:45,053 INFO kernel:EXT3-fs (dm-0): using internal journal -05:52:45,053 INFO kernel:EXT3-fs (dm-0): mounted filesystem with ordered data mode -05:52:45,053 DEBUG kernel:SELinux: initialized (dev dm-0, type ext3), uses xattr -05:52:45,103 INFO kernel:kjournald starting. Commit interval 5 seconds -05:52:45,170 INFO kernel:EXT3-fs (sda1): using internal journal -05:52:45,170 INFO kernel:EXT3-fs (sda1): mounted filesystem with ordered data mode -05:52:45,170 DEBUG kernel:SELinux: initialized (dev sda1, type ext3), uses xattr -05:52:45,250 DEBUG kernel:SELinux: initialized (dev tmpfs, type tmpfs), uses transition SIDs -05:52:45,384 INFO kernel:kjournald starting. Commit interval 5 seconds -05:52:45,439 INFO kernel:EXT3-fs (dm-1): using internal journal -05:52:45,439 INFO kernel:EXT3-fs (dm-1): mounted filesystem with ordered data mode -05:52:45,439 DEBUG kernel:SELinux: initialized (dev dm-1, type ext3), uses xattr -05:52:45,604 INFO kernel:kjournald starting. Commit interval 5 seconds -05:52:45,648 INFO kernel:EXT3-fs (dm-2): using internal journal -05:52:45,648 INFO kernel:EXT3-fs (dm-2): mounted filesystem with ordered data mode -05:52:45,648 DEBUG kernel:SELinux: initialized (dev dm-2, type ext3), uses xattr -05:52:45,851 INFO kernel:kjournald starting. Commit interval 5 seconds -05:52:45,875 INFO kernel:EXT3-fs (dm-3): using internal journal -05:52:45,875 INFO kernel:EXT3-fs (dm-3): mounted filesystem with ordered data mode -05:52:45,875 DEBUG kernel:SELinux: initialized (dev dm-3, type ext3), uses xattr -05:52:54,110 DEBUG kernel:SELinux: initialized (dev usbfs, type usbfs), uses genfs_contexts -05:52:54,121 NOTICE NetworkManager: ifcfg-rh: updating /etc/sysconfig/network-scripts/ifcfg-eth3 -05:52:54,121 NOTICE NetworkManager: ifcfg-rh: updating /etc/sysconfig/network-scripts/ifcfg-eth2 -05:52:54,124 NOTICE NetworkManager: ifcfg-rh: updating /etc/sysconfig/network-scripts/ifcfg-eth1 -05:52:55,143 NOTICE NetworkManager: ifcfg-rh: updating /etc/sysconfig/network-scripts/ifcfg-eth3 -05:52:55,145 NOTICE NetworkManager: ifcfg-rh: updating /etc/sysconfig/network-scripts/ifcfg-eth2 -05:52:55,146 NOTICE NetworkManager: ifcfg-rh: updating /etc/sysconfig/network-scripts/ifcfg-eth1 -05:52:55,146 NOTICE NetworkManager: ifcfg-rh: updating /etc/sysconfig/network-scripts/ifcfg-eth0 -06:11:24,179 DEBUG kernel:SELinux: 2048 avtab hash slots, 277800 rules. -06:11:24,305 DEBUG kernel:SELinux: 2048 avtab hash slots, 277800 rules. -06:11:24,821 DEBUG kernel:SELinux: 9 users, 12 roles, 3917 types, 217 bools, 1 sens, 1024 cats -06:11:24,821 DEBUG kernel:SELinux: 81 classes, 277800 rules diff --git a/compass/tests/actions/update_progress/data/test2/anamon/checkpoint_4/server1.1/anaconda.log.template b/compass/tests/actions/update_progress/data/test2/anamon/checkpoint_4/server1.1/anaconda.log.template deleted file mode 100644 index f04da66a..00000000 --- a/compass/tests/actions/update_progress/data/test2/anamon/checkpoint_4/server1.1/anaconda.log.template +++ /dev/null @@ -1,286 +0,0 @@ -05:51:20,534 INFO : kernel command line: initrd=/images/CentOS-6.5-x86_64/initrd.img ksdevice=bootif lang= kssendmac text ks=http://10.145.88.211/cblr/svc/op/ks/system/server1.1 BOOT_IMAGE=/images/CentOS-6.5-x86_64/vmlinuz BOOTIF=01-00-0c-29-21-89-af - -05:51:20,534 INFO : text mode forced from cmdline -05:51:20,534 DEBUG : readNetInfo /tmp/s390net not found, early return -05:51:20,534 INFO : anaconda version 13.21.215 on x86_64 starting -05:51:20,656 DEBUG : Saving module ipv6 -05:51:20,656 DEBUG : Saving module iscsi_ibft -05:51:20,656 DEBUG : Saving module iscsi_boot_sysfs -05:51:20,656 DEBUG : Saving module pcspkr -05:51:20,656 DEBUG : Saving module edd -05:51:20,656 DEBUG : Saving module floppy -05:51:20,656 DEBUG : Saving module iscsi_tcp -05:51:20,656 DEBUG : Saving module libiscsi_tcp -05:51:20,656 DEBUG : Saving module libiscsi -05:51:20,656 DEBUG : Saving module scsi_transport_iscsi -05:51:20,656 DEBUG : Saving module squashfs -05:51:20,656 DEBUG : Saving module cramfs -05:51:20,656 DEBUG : probing buses -05:51:20,693 DEBUG : waiting for hardware to initialize -05:51:27,902 DEBUG : probing buses -05:51:27,925 DEBUG : waiting for hardware to initialize -05:51:47,187 INFO : getting kickstart file -05:51:47,196 INFO : eth0 has link, using it -05:51:47,208 INFO : doing kickstart... setting it up -05:51:47,208 DEBUG : activating device eth0 -05:51:52,221 INFO : wait_for_iface_activation (2502): device eth0 activated -05:51:52,222 INFO : file location: http://10.145.88.211/cblr/svc/op/ks/system/server1.1 -05:51:52,223 INFO : transferring http://10.145.88.211/cblr/svc/op/ks/system/server1.1 -05:51:52,611 INFO : setting up kickstart -05:51:52,611 INFO : kickstart forcing text mode -05:51:52,611 INFO : kickstartFromUrl -05:51:52,612 INFO : results of url ks, url http://10.145.88.211/cblr/links/CentOS-6.5-x86_64 -05:51:52,612 INFO : trying to mount CD device /dev/sr0 on /mnt/stage2 -05:51:52,616 INFO : drive status is CDS_TRAY_OPEN -05:51:52,616 ERROR : Drive tray reports open when it should be closed -05:52:07,635 INFO : no stage2= given, assuming http://10.145.88.211/cblr/links/CentOS-6.5-x86_64/images/install.img -05:52:07,636 DEBUG : going to set language to en_US.UTF-8 -05:52:07,636 INFO : setting language to en_US.UTF-8 -05:52:07,654 INFO : starting STEP_METHOD -05:52:07,654 DEBUG : loaderData->method is set, adding skipMethodDialog -05:52:07,654 DEBUG : skipMethodDialog is set -05:52:07,663 INFO : starting STEP_STAGE2 -05:52:07,663 INFO : URL_STAGE_MAIN: url is http://10.145.88.211/cblr/links/CentOS-6.5-x86_64/images/install.img -05:52:07,663 INFO : transferring http://10.145.88.211/cblr/links/CentOS-6.5-x86_64/images/updates.img -05:52:07,780 ERROR : failed to mount loopback device /dev/loop7 on /tmp/update-disk as /tmp/updates-disk.img: (null) -05:52:07,780 ERROR : Error mounting /dev/loop7 on /tmp/update-disk: No such file or directory -05:52:07,780 INFO : transferring http://10.145.88.211/cblr/links/CentOS-6.5-x86_64/images/product.img -05:52:07,814 ERROR : Error downloading http://10.145.88.211/cblr/links/CentOS-6.5-x86_64/images/product.img: HTTP response code said error -05:52:07,815 INFO : transferring http://10.145.88.211/cblr/links/CentOS-6.5-x86_64/images/install.img -05:52:47,354 INFO : mounted loopback device /mnt/runtime on /dev/loop0 as /tmp/install.img -05:52:47,354 INFO : got stage2 at url http://10.145.88.211/cblr/links/CentOS-6.5-x86_64/images/install.img -05:52:47,403 INFO : Loading SELinux policy -05:52:48,130 INFO : getting ready to spawn shell now -05:52:48,359 INFO : Running anaconda script /usr/bin/anaconda -05:52:54,804 INFO : CentOS Linux is the highest priority installclass, using it -05:52:54,867 WARNING : /usr/lib/python2.6/site-packages/pykickstart/parser.py:713: DeprecationWarning: Script does not end with %end. This syntax has been deprecated. It may be removed from future releases, which will result in a fatal error from kickstart. Please modify your kickstart file to use this updated syntax. - warnings.warn(_("%s does not end with %%end. This syntax has been deprecated. It may be removed from future releases, which will result in a fatal error from kickstart. Please modify your kickstart file to use this updated syntax.") % _("Script"), DeprecationWarning) - -05:52:54,868 INFO : Running kickstart %%pre script(s) -05:52:54,868 WARNING : '/bin/sh' specified as full path -05:52:56,966 INFO : All kickstart %%pre script(s) have been run -05:52:57,017 INFO : ISCSID is /usr/sbin/iscsid -05:52:57,017 INFO : no initiator set -05:52:57,128 WARNING : '/usr/libexec/fcoe/fcoe_edd.sh' specified as full path -05:52:57,137 INFO : No FCoE EDD info found: No FCoE boot disk information is found in EDD! - -05:52:57,138 INFO : no /etc/zfcp.conf; not configuring zfcp -05:53:00,902 INFO : created new libuser.conf at /tmp/libuser.WMDW9M with instPath="/mnt/sysimage" -05:53:00,903 INFO : anaconda called with cmdline = ['/usr/bin/anaconda', '--stage2', 'http://10.145.88.211/cblr/links/CentOS-6.5-x86_64/images/install.img', '--kickstart', '/tmp/ks.cfg', '-T', '--selinux', '--lang', 'en_US', '--keymap', 'us', '--repo', 'http://10.145.88.211/cblr/links/CentOS-6.5-x86_64'] -05:53:00,903 INFO : Display mode = t -05:53:00,903 INFO : Default encoding = utf-8 -05:53:01,064 INFO : Detected 2016M of memory -05:53:01,064 INFO : Swap attempt of 4032M -05:53:01,398 INFO : ISCSID is /usr/sbin/iscsid -05:53:01,399 INFO : no initiator set -05:53:05,059 INFO : setting installation environment hostname to server1 -05:53:05,104 WARNING : Timezone US/Pacific set in kickstart is not valid. -05:53:05,276 INFO : Detected 2016M of memory -05:53:05,277 INFO : Suggested swap size (4032 M) exceeds 10 % of disk space, using 10 % of disk space (3276 M) instead. -05:53:05,277 INFO : Swap attempt of 3276M -05:53:05,453 WARNING : step installtype does not exist -05:53:05,454 WARNING : step confirminstall does not exist -05:53:05,454 WARNING : step complete does not exist -05:53:05,454 WARNING : step complete does not exist -05:53:05,454 WARNING : step complete does not exist -05:53:05,454 WARNING : step complete does not exist -05:53:05,455 WARNING : step complete does not exist -05:53:05,455 WARNING : step complete does not exist -05:53:05,455 WARNING : step complete does not exist -05:53:05,455 WARNING : step complete does not exist -05:53:05,455 WARNING : step complete does not exist -05:53:05,456 WARNING : step complete does not exist -05:53:05,456 WARNING : step complete does not exist -05:53:05,456 WARNING : step complete does not exist -05:53:05,456 WARNING : step complete does not exist -05:53:05,456 WARNING : step complete does not exist -05:53:05,457 WARNING : step complete does not exist -05:53:05,457 INFO : moving (1) to step setuptime -05:53:05,458 DEBUG : setuptime is a direct step -22:53:05,458 WARNING : '/usr/sbin/hwclock' specified as full path -22:53:06,002 INFO : leaving (1) step setuptime -22:53:06,003 INFO : moving (1) to step autopartitionexecute -22:53:06,003 DEBUG : autopartitionexecute is a direct step -22:53:06,138 INFO : leaving (1) step autopartitionexecute -22:53:06,138 INFO : moving (1) to step storagedone -22:53:06,138 DEBUG : storagedone is a direct step -22:53:06,138 INFO : leaving (1) step storagedone -22:53:06,139 INFO : moving (1) to step enablefilesystems -22:53:06,139 DEBUG : enablefilesystems is a direct step -22:53:10,959 DEBUG : notifying kernel of 'change' event on device /sys/class/block/sda3 -22:53:41,215 DEBUG : notifying kernel of 'change' event on device /sys/class/block/sda1 -22:53:57,388 DEBUG : notifying kernel of 'change' event on device /sys/class/block/sda3 -22:54:14,838 DEBUG : notifying kernel of 'change' event on device /sys/class/block/dm-0 -22:54:21,717 DEBUG : notifying kernel of 'change' event on device /sys/class/block/dm-1 -22:54:27,576 DEBUG : notifying kernel of 'change' event on device /sys/class/block/dm-2 -22:54:40,058 DEBUG : notifying kernel of 'change' event on device /sys/class/block/dm-3 -22:54:41,949 INFO : failed to set SELinux context for /mnt/sysimage: [Errno 95] Operation not supported -22:54:41,950 DEBUG : isys.py:mount()- going to mount /dev/mapper/server1-rootvol on /mnt/sysimage as ext3 with options defaults -22:54:42,826 DEBUG : isys.py:mount()- going to mount /dev/sda1 on /mnt/sysimage/boot as ext3 with options defaults -22:54:43,148 DEBUG : isys.py:mount()- going to mount //dev on /mnt/sysimage/dev as bind with options defaults,bind -22:54:43,158 DEBUG : isys.py:mount()- going to mount devpts on /mnt/sysimage/dev/pts as devpts with options gid=5,mode=620 -22:54:43,164 DEBUG : isys.py:mount()- going to mount tmpfs on /mnt/sysimage/dev/shm as tmpfs with options defaults -22:54:43,207 DEBUG : isys.py:mount()- going to mount /dev/mapper/server1-homevol on /mnt/sysimage/home as ext3 with options defaults -22:54:43,434 INFO : failed to get default SELinux context for /proc: [Errno 2] No such file or directory -22:54:43,435 DEBUG : isys.py:mount()- going to mount proc on /mnt/sysimage/proc as proc with options defaults -22:54:43,439 INFO : failed to get default SELinux context for /proc: [Errno 2] No such file or directory -22:54:43,496 DEBUG : isys.py:mount()- going to mount sysfs on /mnt/sysimage/sys as sysfs with options defaults -22:54:43,609 DEBUG : isys.py:mount()- going to mount /dev/mapper/server1-tmpvol on /mnt/sysimage/tmp as ext3 with options defaults -22:54:43,874 DEBUG : isys.py:mount()- going to mount /dev/mapper/server1-varvol on /mnt/sysimage/var as ext3 with options defaults -22:54:44,056 INFO : leaving (1) step enablefilesystems -22:54:44,057 INFO : moving (1) to step bootloadersetup -22:54:44,057 DEBUG : bootloadersetup is a direct step -22:54:44,061 INFO : leaving (1) step bootloadersetup -22:54:44,061 INFO : moving (1) to step reposetup -22:54:44,061 DEBUG : reposetup is a direct step -22:54:56,952 ERROR : Error downloading treeinfo file: [Errno 14] PYCURL ERROR 22 - "The requested URL returned error: 404 Not Found" -22:54:56,953 INFO : added repository ppa_repo with URL http://10.145.88.211:80/cobbler/repo_mirror/ppa_repo/ -22:54:57,133 DEBUG : Grabbing http://10.145.88.211/cblr/links/CentOS-6.5-x86_64/repodata/repomd.xml -22:54:57,454 DEBUG : Grabbing http://10.145.88.211/cblr/links/CentOS-6.5-x86_64/repodata/0e371b19e547b9d7a7e8acc4b8c0c7c074509d33653cfaef9e8f4fd1d62d95de-primary.sqlite.bz2 -22:54:58,637 DEBUG : Grabbing http://10.145.88.211/cblr/links/CentOS-6.5-x86_64/repodata/34bae2d3c9c78e04ed2429923bc095005af1b166d1a354422c4c04274bae0f59-c6-minimal-x86_64.xml -22:54:58,971 INFO : leaving (1) step reposetup -22:54:58,971 INFO : moving (1) to step basepkgsel -22:54:58,972 DEBUG : basepkgsel is a direct step -22:54:58,986 WARNING : not adding Base group -22:54:59,388 INFO : leaving (1) step basepkgsel -22:54:59,388 INFO : moving (1) to step postselection -22:54:59,388 DEBUG : postselection is a direct step -22:54:59,390 INFO : selected kernel package for kernel -22:54:59,848 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/fs/ext3/ext3.ko.gz -22:54:59,848 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/fs/jbd/jbd.ko.gz -22:54:59,848 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/fs/mbcache.ko.gz -22:54:59,848 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/scsi/fcoe/fcoe.ko.gz -22:54:59,848 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/scsi/fcoe/libfcoe.ko.gz -22:54:59,849 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/scsi/libfc/libfc.ko.gz -22:54:59,849 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/scsi/scsi_transport_fc.ko.gz -22:54:59,849 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/scsi/scsi_tgt.ko.gz -22:54:59,849 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/crypto/xts.ko.gz -22:54:59,849 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/crypto/lrw.ko.gz -22:54:59,849 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/crypto/gf128mul.ko.gz -22:54:59,849 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/crypto/sha256_generic.ko.gz -22:54:59,849 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/crypto/cbc.ko.gz -22:54:59,849 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/md/dm-raid.ko.gz -22:54:59,849 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/md/dm-crypt.ko.gz -22:54:59,850 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/md/dm-round-robin.ko.gz -22:54:59,850 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/md/dm-multipath.ko.gz -22:54:59,850 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/md/dm-snapshot.ko.gz -22:54:59,850 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/md/dm-mirror.ko.gz -22:54:59,850 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/md/dm-region-hash.ko.gz -22:54:59,850 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/md/dm-log.ko.gz -22:54:59,850 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/md/dm-zero.ko.gz -22:54:59,850 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/md/dm-mod.ko.gz -22:54:59,850 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/md/linear.ko.gz -22:54:59,850 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/md/raid10.ko.gz -22:54:59,850 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/md/raid456.ko.gz -22:54:59,851 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/crypto/async_tx/async_raid6_recov.ko.gz -22:54:59,851 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/crypto/async_tx/async_pq.ko.gz -22:54:59,851 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/lib/raid6/raid6_pq.ko.gz -22:54:59,851 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/crypto/async_tx/async_xor.ko.gz -22:54:59,851 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/crypto/xor.ko.gz -22:54:59,851 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/crypto/async_tx/async_memcpy.ko.gz -22:54:59,851 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/crypto/async_tx/async_tx.ko.gz -22:54:59,851 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/md/raid1.ko.gz -22:54:59,851 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/md/raid0.ko.gz -22:54:59,852 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/net/8021q/8021q.ko.gz -22:54:59,852 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/net/802/garp.ko.gz -22:54:59,852 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/net/802/stp.ko.gz -22:54:59,852 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/net/llc/llc.ko.gz -22:54:59,852 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/infiniband/hw/mlx4/mlx4_ib.ko.gz -22:54:59,852 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/net/mlx4/mlx4_en.ko.gz -22:54:59,852 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/net/mlx4/mlx4_core.ko.gz -22:54:59,852 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/infiniband/ulp/ipoib/ib_ipoib.ko.gz -22:54:59,852 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/infiniband/core/ib_cm.ko.gz -22:54:59,853 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/infiniband/core/ib_sa.ko.gz -22:54:59,853 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/infiniband/core/ib_mad.ko.gz -22:54:59,853 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/infiniband/core/ib_core.ko.gz -22:54:59,853 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/scsi/sg.ko.gz -22:54:59,853 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/scsi/sd_mod.ko.gz -22:54:59,853 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/lib/crc-t10dif.ko.gz -22:54:59,853 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/net/e1000/e1000.ko.gz -22:54:59,853 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/scsi/sr_mod.ko.gz -22:54:59,853 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/cdrom/cdrom.ko.gz -22:54:59,853 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/misc/vmware_balloon.ko.gz -22:54:59,853 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/message/fusion/mptspi.ko.gz -22:54:59,854 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/message/fusion/mptscsih.ko.gz -22:54:59,854 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/message/fusion/mptbase.ko.gz -22:54:59,854 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/scsi/scsi_transport_spi.ko.gz -22:54:59,854 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/ata/pata_acpi.ko.gz -22:54:59,854 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/ata/ata_generic.ko.gz -22:54:59,854 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/ata/ata_piix.ko.gz -22:54:59,854 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/net/ipv6/ipv6.ko.gz -22:54:59,854 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/firmware/iscsi_ibft.ko.gz -22:54:59,854 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/scsi/iscsi_boot_sysfs.ko.gz -22:54:59,854 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/input/misc/pcspkr.ko.gz -22:54:59,855 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/firmware/edd.ko.gz -22:54:59,855 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/block/floppy.ko.gz -22:54:59,855 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/scsi/iscsi_tcp.ko.gz -22:54:59,855 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/scsi/libiscsi_tcp.ko.gz -22:54:59,855 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/scsi/libiscsi.ko.gz -22:54:59,855 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/scsi/scsi_transport_iscsi.ko.gz -22:54:59,855 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/fs/squashfs/squashfs.ko.gz -22:54:59,855 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/fs/cramfs/cramfs.ko.gz -22:55:07,745 INFO : leaving (1) step postselection -22:55:07,745 INFO : moving (1) to step install -22:55:07,748 INFO : leaving (1) step install -22:55:07,748 INFO : moving (1) to step preinstallconfig -22:55:07,748 DEBUG : preinstallconfig is a direct step -22:55:08,087 DEBUG : isys.py:mount()- going to mount /selinux on /mnt/sysimage/selinux as selinuxfs with options defaults -22:55:08,091 DEBUG : isys.py:mount()- going to mount /proc/bus/usb on /mnt/sysimage/proc/bus/usb as usbfs with options defaults -22:55:08,102 INFO : copy_to_sysimage: source '/etc/multipath/wwids' does not exist. -22:55:08,102 INFO : copy_to_sysimage: source '/etc/multipath/bindings' does not exist. -22:55:08,118 INFO : copy_to_sysimage: source '/etc/multipath/wwids' does not exist. -22:55:08,118 INFO : copy_to_sysimage: source '/etc/multipath/bindings' does not exist. -22:55:08,122 INFO : leaving (1) step preinstallconfig -22:55:08,122 INFO : moving (1) to step installpackages -22:55:08,122 DEBUG : installpackages is a direct step -22:55:08,122 INFO : Preparing to install packages -23:17:06,152 INFO : leaving (1) step installpackages -23:17:06,153 INFO : moving (1) to step postinstallconfig -23:17:06,153 DEBUG : postinstallconfig is a direct step -23:17:06,162 DEBUG : Removing cachedir: /mnt/sysimage/var/cache/yum/anaconda-CentOS-201311291202.x86_64 -23:17:06,181 DEBUG : Removing headers and packages from /mnt/sysimage/var/cache/yum/ppa_repo -23:17:06,183 INFO : leaving (1) step postinstallconfig -23:17:06,184 INFO : moving (1) to step writeconfig -23:17:06,184 DEBUG : writeconfig is a direct step -23:17:06,184 INFO : Writing main configuration -23:17:06,219 WARNING : '/usr/sbin/authconfig' specified as full path -23:17:11,643 WARNING : '/usr/sbin/lokkit' specified as full path -23:17:11,703 WARNING : '/usr/sbin/lokkit' specified as full path -23:17:11,885 INFO : removing libuser.conf at /tmp/libuser.WMDW9M -23:17:11,885 INFO : created new libuser.conf at /tmp/libuser.WMDW9M with instPath="/mnt/sysimage" -23:17:12,722 INFO : leaving (1) step writeconfig -23:17:12,722 INFO : moving (1) to step firstboot -23:17:12,723 DEBUG : firstboot is a direct step -23:17:12,723 INFO : leaving (1) step firstboot -23:17:12,723 INFO : moving (1) to step instbootloader -23:17:12,724 DEBUG : instbootloader is a direct step -23:17:14,664 WARNING : '/sbin/grub-install' specified as full path -23:17:15,006 WARNING : '/sbin/grub' specified as full path -23:17:16,039 INFO : leaving (1) step instbootloader -23:17:16,040 INFO : moving (1) to step reipl -23:17:16,040 DEBUG : reipl is a direct step -23:17:16,040 INFO : leaving (1) step reipl -23:17:16,040 INFO : moving (1) to step writeksconfig -23:17:16,040 DEBUG : writeksconfig is a direct step -23:17:16,041 INFO : Writing autokickstart file -23:17:16,070 INFO : leaving (1) step writeksconfig -23:17:16,071 INFO : moving (1) to step setfilecon -23:17:16,071 DEBUG : setfilecon is a direct step -23:17:16,071 INFO : setting SELinux contexts for anaconda created files -23:17:17,822 INFO : leaving (1) step setfilecon -23:17:17,822 INFO : moving (1) to step copylogs -23:17:17,822 DEBUG : copylogs is a direct step -23:17:17,822 INFO : Copying anaconda logs -23:17:17,825 INFO : leaving (1) step copylogs -23:17:17,825 INFO : moving (1) to step methodcomplete -23:17:17,825 DEBUG : methodcomplete is a direct step -23:17:17,825 INFO : leaving (1) step methodcomplete -23:17:17,826 INFO : moving (1) to step postscripts -23:17:17,826 DEBUG : postscripts is a direct step -23:17:17,826 INFO : Running kickstart %%post script(s) -23:17:17,858 WARNING : '/bin/sh' specified as full path -23:17:21,002 INFO : All kickstart %%post script(s) have been run -23:17:21,002 INFO : leaving (1) step postscripts -23:17:21,002 INFO : moving (1) to step dopostaction -23:17:21,002 DEBUG : dopostaction is a direct step -23:17:21,003 INFO : leaving (1) step dopostaction diff --git a/compass/tests/actions/update_progress/data/test2/anamon/checkpoint_4/server1.1/chef-client.log.template b/compass/tests/actions/update_progress/data/test2/anamon/checkpoint_4/server1.1/chef-client.log.template deleted file mode 100644 index 19a3b844..00000000 --- a/compass/tests/actions/update_progress/data/test2/anamon/checkpoint_4/server1.1/chef-client.log.template +++ /dev/null @@ -1,168 +0,0 @@ -Feb 21 20:39:11 server1.1 [2014-02-21T20:39:11-08:00] INFO: execute[Keystone: sleep] ran successfully -Feb 21 20:39:11 server1.1 [2014-02-21T20:39:11-08:00] INFO: Processing directory[/etc/keystone] action create (openstack-identity::server line 73) -Feb 21 20:39:11 server1.1 [2014-02-21T20:39:11-08:00] INFO: directory[/etc/keystone] owner changed to 163 -Feb 21 20:39:11 server1.1 [2014-02-21T20:39:11-08:00] INFO: directory[/etc/keystone] mode changed to 700 -Feb 21 20:39:11 server1.1 [2014-02-21T20:39:11-08:00] INFO: Processing directory[/etc/keystone/ssl] action create (openstack-identity::server line 79) -Feb 21 20:39:11 server1.1 [2014-02-21T20:39:11-08:00] INFO: Processing file[/var/lib/keystone/keystone.db] action delete (openstack-identity::server line 87) -Feb 21 20:39:11 server1.1 [2014-02-21T20:39:11-08:00] INFO: Processing execute[keystone-manage pki_setup] action run (openstack-identity::server line 91) -Feb 21 20:39:11 server1.1 [2014-02-21T20:39:11-08:00] INFO: Processing template[/etc/keystone/keystone.conf] action create (openstack-identity::server line 140) -Feb 21 20:39:11 server1.1 [2014-02-21T20:39:11-08:00] INFO: template[/etc/keystone/keystone.conf] backed up to /var/chef/backup/etc/keystone/keystone.conf.chef-20140221203911.069202 -Feb 21 20:39:11 server1.1 [2014-02-21T20:39:11-08:00] INFO: template[/etc/keystone/keystone.conf] updated file contents /etc/keystone/keystone.conf -Feb 21 20:39:11 server1.1 [2014-02-21T20:39:11-08:00] INFO: template[/etc/keystone/keystone.conf] owner changed to 163 -Feb 21 20:39:11 server1.1 [2014-02-21T20:39:11-08:00] INFO: template[/etc/keystone/keystone.conf] mode changed to 644 -Feb 21 20:39:11 server1.1 [2014-02-21T20:39:11-08:00] INFO: template[/etc/keystone/keystone.conf] sending restart action to service[keystone] (immediate) -Feb 21 20:39:11 server1.1 [2014-02-21T20:39:11-08:00] INFO: Processing service[keystone] action restart (openstack-identity::server line 64) -Feb 21 20:39:12 server1.1 [2014-02-21T20:39:11-08:00] INFO: service[keystone] restarted -Feb 21 20:39:12 server1.1 [2014-02-21T20:39:11-08:00] INFO: service[keystone] sending run action to execute[Keystone: sleep] (immediate) -Feb 21 20:39:12 server1.1 [2014-02-21T20:39:11-08:00] INFO: Processing execute[Keystone: sleep] action run (openstack-identity::server line 58) -Feb 21 20:39:22 server1.1 [2014-02-21T20:39:21-08:00] INFO: execute[Keystone: sleep] ran successfully -Feb 21 20:39:22 server1.1 [2014-02-21T20:39:21-08:00] INFO: Processing template[/etc/keystone/default_catalog.templates] action create (openstack-identity::server line 158) -Feb 21 20:39:22 server1.1 [2014-02-21T20:39:21-08:00] INFO: Processing execute[keystone-manage db_sync] action run (openstack-identity::server line 172) -Feb 21 20:39:43 server1.1 [2014-02-21T20:39:42-08:00] INFO: execute[keystone-manage db_sync] ran successfully -Feb 21 20:39:43 server1.1 [2014-02-21T20:39:42-08:00] INFO: Processing bash[bootstrap-keystone-admin] action run (openstack-identity::registration line 40) -Feb 21 20:39:45 server1.1 [2014-02-21T20:39:44-08:00] INFO: bash[bootstrap-keystone-admin] ran successfully -Feb 21 20:39:45 server1.1 [2014-02-21T20:39:44-08:00] INFO: Processing openstack-identity_register[Register 'admin' Tenant] action create_tenant (openstack-identity::registration line 80) -Feb 21 20:39:45 server1.1 [2014-02-21T20:39:44-08:00] INFO: Tenant 'admin' already exists.. Not creating. -Feb 21 20:39:45 server1.1 [2014-02-21T20:39:44-08:00] INFO: Tenant UUID: 87cf46951cc14159bd16b68e3eb96321 -Feb 21 20:39:45 server1.1 [2014-02-21T20:39:44-08:00] INFO: Processing openstack-identity_register[Register 'service' Tenant] action create_tenant (openstack-identity::registration line 80) -Feb 21 20:39:46 server1.1 [2014-02-21T20:39:45-08:00] INFO: Created tenant 'service' -Feb 21 20:39:46 server1.1 [2014-02-21T20:39:45-08:00] INFO: Processing openstack-identity_register[Register 'admin' Role] action create_role (openstack-identity::registration line 92) -Feb 21 20:39:46 server1.1 [2014-02-21T20:39:45-08:00] INFO: Role 'admin' already exists.. Not creating. -Feb 21 20:39:46 server1.1 [2014-02-21T20:39:45-08:00] INFO: Role UUID: 8070c199fc2647c9a50176d11256bebc -Feb 21 20:39:46 server1.1 [2014-02-21T20:39:45-08:00] INFO: Processing openstack-identity_register[Register 'Member' Role] action create_role (openstack-identity::registration line 92) -Feb 21 20:39:47 server1.1 [2014-02-21T20:39:46-08:00] INFO: Created Role 'Member' -Feb 21 20:39:47 server1.1 [2014-02-21T20:39:46-08:00] INFO: Processing openstack-identity_register[Register 'compute' User] action create_user (openstack-identity::registration line 109) -Feb 21 20:39:48 server1.1 [2014-02-21T20:39:47-08:00] INFO: Created user 'service' for tenant 'service' -Feb 21 20:39:48 server1.1 [2014-02-21T20:39:47-08:00] INFO: Processing openstack-identity_register[Grant admin Role to service User in service Tenant] action grant_role (openstack-identity::registration line 119) -Feb 21 20:39:49 server1.1 [2014-02-21T20:39:48-08:00] INFO: Granted Role 'admin' to User 'service' in Tenant 'service' -Feb 21 20:39:49 server1.1 [2014-02-21T20:39:48-08:00] INFO: Processing openstack-identity_register[Register compute Service] action create_service (openstack-identity::registration line 131) -Feb 21 20:39:50 server1.1 [2014-02-21T20:39:49-08:00] INFO: Created service 'nova' -Feb 21 20:39:50 server1.1 [2014-02-21T20:39:49-08:00] INFO: Processing openstack-identity_register[Register compute Endpoint] action create_endpoint (openstack-identity::registration line 151) -Feb 21 20:39:50 server1.1 [2014-02-21T20:39:50-08:00] INFO: Created endpoint for service type 'compute' -Feb 21 20:39:50 server1.1 [2014-02-21T20:39:50-08:00] INFO: Processing openstack-identity_register[Register 'network' User] action create_user (openstack-identity::registration line 109) -Feb 21 20:39:51 server1.1 [2014-02-21T20:39:50-08:00] INFO: User 'service' already exists for tenant 'service' -Feb 21 20:39:51 server1.1 [2014-02-21T20:39:50-08:00] INFO: Processing openstack-identity_register[Grant admin Role to service User in service Tenant] action grant_role (openstack-identity::registration line 119) -Feb 21 20:39:52 server1.1 [2014-02-21T20:39:51-08:00] INFO: Role 'admin' already granted to User 'service' in Tenant 'service' -Feb 21 20:39:52 server1.1 [2014-02-21T20:39:51-08:00] INFO: Processing openstack-identity_register[Register network Service] action create_service (openstack-identity::registration line 131) -Feb 21 20:39:53 server1.1 [2014-02-21T20:39:52-08:00] INFO: Created service 'quantum' -Feb 21 20:39:53 server1.1 [2014-02-21T20:39:52-08:00] INFO: Processing openstack-identity_register[Register network Endpoint] action create_endpoint (openstack-identity::registration line 151) -Feb 21 20:39:54 server1.1 [2014-02-21T20:39:53-08:00] INFO: Created endpoint for service type 'network' -Feb 21 20:39:54 server1.1 [2014-02-21T20:39:53-08:00] INFO: Processing openstack-identity_register[Register 'volume' User] action create_user (openstack-identity::registration line 109) -Feb 21 20:39:54 server1.1 [2014-02-21T20:39:53-08:00] INFO: User 'service' already exists for tenant 'service' -Feb 21 20:39:54 server1.1 [2014-02-21T20:39:53-08:00] INFO: Processing openstack-identity_register[Grant admin Role to service User in service Tenant] action grant_role (openstack-identity::registration line 119) -Feb 21 20:39:55 server1.1 [2014-02-21T20:39:54-08:00] INFO: Role 'admin' already granted to User 'service' in Tenant 'service' -Feb 21 20:39:55 server1.1 [2014-02-21T20:39:54-08:00] INFO: Processing openstack-identity_register[Register volume Service] action create_service (openstack-identity::registration line 131) -Feb 21 20:39:56 server1.1 [2014-02-21T20:39:55-08:00] INFO: Created service 'cinder' -Feb 21 20:39:56 server1.1 [2014-02-21T20:39:55-08:00] INFO: Processing openstack-identity_register[Register volume Endpoint] action create_endpoint (openstack-identity::registration line 151) -Feb 21 20:39:57 server1.1 [2014-02-21T20:39:56-08:00] INFO: Created endpoint for service type 'volume' -Feb 21 20:39:57 server1.1 [2014-02-21T20:39:56-08:00] INFO: Processing openstack-identity_register[Register identity Service] action create_service (openstack-identity::registration line 131) -Feb 21 20:39:57 server1.1 [2014-02-21T20:39:56-08:00] INFO: Created service 'keystone' -Feb 21 20:39:57 server1.1 [2014-02-21T20:39:56-08:00] INFO: Processing openstack-identity_register[Register identity Endpoint] action create_endpoint (openstack-identity::registration line 151) -Feb 21 20:39:58 server1.1 [2014-02-21T20:39:57-08:00] INFO: Created endpoint for service type 'identity' -Feb 21 20:39:58 server1.1 [2014-02-21T20:39:57-08:00] INFO: Processing openstack-identity_register[Register 'image' User] action create_user (openstack-identity::registration line 109) -Feb 21 20:39:59 server1.1 [2014-02-21T20:39:58-08:00] INFO: User 'service' already exists for tenant 'service' -Feb 21 20:39:59 server1.1 [2014-02-21T20:39:58-08:00] INFO: Processing openstack-identity_register[Grant admin Role to service User in service Tenant] action grant_role (openstack-identity::registration line 119) -Feb 21 20:40:00 server1.1 [2014-02-21T20:39:59-08:00] INFO: Role 'admin' already granted to User 'service' in Tenant 'service' -Feb 21 20:40:00 server1.1 [2014-02-21T20:39:59-08:00] INFO: Processing openstack-identity_register[Register image Service] action create_service (openstack-identity::registration line 131) -Feb 21 20:40:00 server1.1 [2014-02-21T20:40:00-08:00] INFO: Created service 'glance' -Feb 21 20:40:00 server1.1 [2014-02-21T20:40:00-08:00] INFO: Processing openstack-identity_register[Register image Endpoint] action create_endpoint (openstack-identity::registration line 151) -Feb 21 20:40:01 server1.1 [2014-02-21T20:40:00-08:00] INFO: Created endpoint for service type 'image' -Feb 21 20:40:01 server1.1 [2014-02-21T20:40:00-08:00] INFO: Processing openstack-identity_register[Register 'object-store' User] action create_user (openstack-identity::registration line 109) -Feb 21 20:40:02 server1.1 [2014-02-21T20:40:01-08:00] INFO: User 'service' already exists for tenant 'service' -Feb 21 20:40:02 server1.1 [2014-02-21T20:40:01-08:00] INFO: Processing openstack-identity_register[Grant admin Role to service User in service Tenant] action grant_role (openstack-identity::registration line 119) -Feb 21 20:40:03 server1.1 [2014-02-21T20:40:02-08:00] INFO: Role 'admin' already granted to User 'service' in Tenant 'service' -Feb 21 20:40:03 server1.1 [2014-02-21T20:40:02-08:00] INFO: Processing openstack-identity_register[Register object-store Service] action create_service (openstack-identity::registration line 131) -Feb 21 20:40:04 server1.1 [2014-02-21T20:40:03-08:00] INFO: Created service 'swift' -Feb 21 20:40:04 server1.1 [2014-02-21T20:40:03-08:00] INFO: Processing openstack-identity_register[Create EC2 credentials for 'admin' user] action create_ec2_credentials (openstack-identity::registration line 166) -Feb 21 20:40:05 server1.1 [2014-02-21T20:40:04-08:00] INFO: Created EC2 Credentials for User 'admin' in Tenant 'admin' -Feb 21 20:40:05 server1.1 [2014-02-21T20:40:04-08:00] INFO: Processing openstack-identity_register[Create EC2 credentials for 'monitoring' user] action create_ec2_credentials (openstack-identity::registration line 166) -Feb 21 20:40:07 server1.1 [2014-02-21T20:40:06-08:00] ERROR: Unable to create EC2 Credentials for User 'monitoring' in Tenant 'service' -Feb 21 20:40:07 server1.1 [2014-02-21T20:40:06-08:00] ERROR: Error was: Could not lookup uuid for ec2-credentials:tenant=>service. Error was 'Client' object has no attribute 'auth_user_id' -Feb 21 20:40:07 server1.1 (1) -Feb 21 20:40:07 server1.1 [2014-02-21T20:40:06-08:00] INFO: Processing package[openstack-cinder] action upgrade (openstack-block-storage::cinder-common line 26) -Feb 21 20:40:07 server1.1 [2014-02-21T20:40:06-08:00] INFO: package[openstack-cinder] installing openstack-cinder-2013.1.4-1.el6 from openstack repository -Feb 21 20:41:11 server1.1 [2014-02-21T20:41:10-08:00] INFO: package[openstack-cinder] upgraded from uninstalled to 2013.1.4-1.el6 -Feb 21 20:41:11 server1.1 [2014-02-21T20:41:10-08:00] INFO: Processing directory[/etc/cinder] action create (openstack-block-storage::cinder-common line 44) -Feb 21 20:41:11 server1.1 [2014-02-21T20:41:10-08:00] INFO: directory[/etc/cinder] owner changed to 165 -Feb 21 20:41:11 server1.1 [2014-02-21T20:41:10-08:00] INFO: directory[/etc/cinder] group changed to 165 -Feb 21 20:41:11 server1.1 [2014-02-21T20:41:10-08:00] INFO: directory[/etc/cinder] mode changed to 750 -Feb 21 20:41:11 server1.1 [2014-02-21T20:41:10-08:00] INFO: Processing template[/etc/cinder/cinder.conf] action create (openstack-block-storage::cinder-common line 51) -Feb 21 20:41:11 server1.1 [2014-02-21T20:41:10-08:00] INFO: template[/etc/cinder/cinder.conf] backed up to /var/chef/backup/etc/cinder/cinder.conf.chef-20140221204110.415861 -Feb 21 20:41:11 server1.1 [2014-02-21T20:41:10-08:00] INFO: template[/etc/cinder/cinder.conf] updated file contents /etc/cinder/cinder.conf -Feb 21 20:41:11 server1.1 [2014-02-21T20:41:10-08:00] INFO: template[/etc/cinder/cinder.conf] owner changed to 165 -Feb 21 20:41:11 server1.1 [2014-02-21T20:41:10-08:00] INFO: template[/etc/cinder/cinder.conf] mode changed to 644 -Feb 21 20:41:11 server1.1 [2014-02-21T20:41:10-08:00] INFO: Processing package[python-cinderclient] action upgrade (openstack-block-storage::api line 32) -Feb 21 20:41:11 server1.1 [2014-02-21T20:41:10-08:00] INFO: Processing package[MySQL-python] action upgrade (openstack-block-storage::api line 41) -Feb 21 20:41:11 server1.1 [2014-02-21T20:41:10-08:00] INFO: Processing directory[/var/cache/cinder] action create (openstack-block-storage::api line 46) -Feb 21 20:41:11 server1.1 [2014-02-21T20:41:10-08:00] INFO: directory[/var/cache/cinder] created directory /var/cache/cinder -Feb 21 20:41:11 server1.1 [2014-02-21T20:41:10-08:00] INFO: directory[/var/cache/cinder] owner changed to 165 -Feb 21 20:41:11 server1.1 [2014-02-21T20:41:10-08:00] INFO: directory[/var/cache/cinder] group changed to 165 -Feb 21 20:41:11 server1.1 [2014-02-21T20:41:10-08:00] INFO: directory[/var/cache/cinder] mode changed to 700 -Feb 21 20:41:11 server1.1 [2014-02-21T20:41:10-08:00] INFO: Processing directory[/var/lock/cinder] action create (openstack-block-storage::api line 52) -Feb 21 20:41:11 server1.1 [2014-02-21T20:41:10-08:00] INFO: directory[/var/lock/cinder] created directory /var/lock/cinder -Feb 21 20:41:11 server1.1 [2014-02-21T20:41:10-08:00] INFO: directory[/var/lock/cinder] owner changed to 165 -Feb 21 20:41:11 server1.1 [2014-02-21T20:41:10-08:00] INFO: directory[/var/lock/cinder] group changed to 165 -Feb 21 20:41:11 server1.1 [2014-02-21T20:41:10-08:00] INFO: directory[/var/lock/cinder] mode changed to 700 -Feb 21 20:41:11 server1.1 [2014-02-21T20:41:10-08:00] INFO: Processing service[cinder-api] action enable (openstack-block-storage::api line 58) -Feb 21 20:41:11 server1.1 [2014-02-21T20:41:10-08:00] INFO: service[cinder-api] enabled -Feb 21 20:41:11 server1.1 [2014-02-21T20:41:10-08:00] INFO: Processing execute[cinder-manage db sync] action run (openstack-block-storage::api line 71) -Feb 21 20:41:30 server1.1 [2014-02-21T20:41:30-08:00] INFO: execute[cinder-manage db sync] ran successfully -Feb 21 20:41:30 server1.1 [2014-02-21T20:41:30-08:00] INFO: Processing template[/etc/cinder/api-paste.ini] action create (openstack-block-storage::api line 73) -Feb 21 20:41:30 server1.1 [2014-02-21T20:41:30-08:00] INFO: template[/etc/cinder/api-paste.ini] backed up to /var/chef/backup/etc/cinder/api-paste.ini.chef-20140221204130.194587 -Feb 21 20:41:30 server1.1 [2014-02-21T20:41:30-08:00] INFO: template[/etc/cinder/api-paste.ini] updated file contents /etc/cinder/api-paste.ini -Feb 21 20:41:30 server1.1 [2014-02-21T20:41:30-08:00] INFO: template[/etc/cinder/api-paste.ini] owner changed to 165 -Feb 21 20:41:30 server1.1 [2014-02-21T20:41:30-08:00] INFO: template[/etc/cinder/api-paste.ini] mode changed to 644 -Feb 21 20:41:30 server1.1 [2014-02-21T20:41:30-08:00] INFO: template[/etc/cinder/api-paste.ini] sending restart action to service[cinder-api] (immediate) -Feb 21 20:41:30 server1.1 [2014-02-21T20:41:30-08:00] INFO: Processing service[cinder-api] action restart (openstack-block-storage::api line 58) -Feb 21 20:41:31 server1.1 [2014-02-21T20:41:30-08:00] INFO: service[cinder-api] restarted -Feb 21 20:41:31 server1.1 [2014-02-21T20:41:30-08:00] INFO: Processing template[/etc/cinder/policy.json] action create (openstack-block-storage::api line 88) -Feb 21 20:41:31 server1.1 [2014-02-21T20:41:30-08:00] INFO: template[/etc/cinder/policy.json] backed up to /var/chef/backup/etc/cinder/policy.json.chef-20140221204130.442890 -Feb 21 20:41:31 server1.1 [2014-02-21T20:41:30-08:00] INFO: template[/etc/cinder/policy.json] updated file contents /etc/cinder/policy.json -Feb 21 20:41:31 server1.1 [2014-02-21T20:41:30-08:00] INFO: template[/etc/cinder/policy.json] owner changed to 165 -Feb 21 20:41:31 server1.1 [2014-02-21T20:41:30-08:00] INFO: template[/etc/cinder/policy.json] mode changed to 644 -Feb 21 20:41:31 server1.1 [2014-02-21T20:41:30-08:00] INFO: template[/etc/cinder/policy.json] not queuing delayed action restart on service[cinder-api] (delayed), as it's already been queued -Feb 21 20:41:31 server1.1 [2014-02-21T20:41:30-08:00] INFO: Processing package[MySQL-python] action upgrade (openstack-block-storage::scheduler line 45) -Feb 21 20:41:31 server1.1 [2014-02-21T20:41:30-08:00] INFO: Processing service[cinder-scheduler] action enable (openstack-block-storage::scheduler line 50) -Feb 21 20:41:31 server1.1 [2014-02-21T20:41:30-08:00] INFO: service[cinder-scheduler] enabled -Feb 21 20:41:31 server1.1 [2014-02-21T20:41:30-08:00] INFO: Processing service[cinder-scheduler] action start (openstack-block-storage::scheduler line 50) -Feb 21 20:41:31 server1.1 [2014-02-21T20:41:30-08:00] INFO: service[cinder-scheduler] started -Feb 21 20:41:31 server1.1 [2014-02-21T20:41:30-08:00] INFO: Processing package[openstack-nova-common] action upgrade (openstack-compute::nova-common line 37) -Feb 21 20:41:31 server1.1 [2014-02-21T20:41:30-08:00] INFO: package[openstack-nova-common] installing openstack-nova-common-2013.1.4-7.el6 from openstack repository -Feb 21 20:41:52 server1.1 [2014-02-21T20:41:52-08:00] INFO: package[openstack-nova-common] upgraded from uninstalled to 2013.1.4-7.el6 -Feb 21 20:41:52 server1.1 [2014-02-21T20:41:52-08:00] INFO: Processing package[python-memcached] action install (openstack-compute::nova-common line 46) -Feb 21 20:41:53 server1.1 [2014-02-21T20:41:52-08:00] INFO: Processing directory[/etc/nova] action create (openstack-compute::nova-common line 51) -Feb 21 20:41:53 server1.1 [2014-02-21T20:41:52-08:00] INFO: directory[/etc/nova] owner changed to 162 -Feb 21 20:41:53 server1.1 [2014-02-21T20:41:52-08:00] INFO: directory[/etc/nova] group changed to 162 -Feb 21 20:41:53 server1.1 [2014-02-21T20:41:52-08:00] INFO: directory[/etc/nova] mode changed to 700 -Feb 21 20:41:53 server1.1 [2014-02-21T20:41:52-08:00] INFO: Processing directory[/etc/nova/rootwrap.d] action create (openstack-compute::nova-common line 59) -Feb 21 20:41:53 server1.1 [2014-02-21T20:41:52-08:00] INFO: directory[/etc/nova/rootwrap.d] created directory /etc/nova/rootwrap.d -Feb 21 20:41:53 server1.1 [2014-02-21T20:41:52-08:00] INFO: directory[/etc/nova/rootwrap.d] owner changed to 0 -Feb 21 20:41:53 server1.1 [2014-02-21T20:41:52-08:00] INFO: directory[/etc/nova/rootwrap.d] group changed to 0 -Feb 21 20:41:53 server1.1 [2014-02-21T20:41:52-08:00] INFO: directory[/etc/nova/rootwrap.d] mode changed to 700 -Feb 21 20:41:53 server1.1 [2014-02-21T20:41:52-08:00] INFO: Processing template[/etc/nova/nova.conf] action create (openstack-compute::nova-common line 134) -Feb 21 20:41:53 server1.1 [2014-02-21T20:41:52-08:00] INFO: template[/etc/nova/nova.conf] backed up to /var/chef/backup/etc/nova/nova.conf.chef-20140221204152.340272 -Feb 21 20:41:53 server1.1 [2014-02-21T20:41:52-08:00] INFO: template[/etc/nova/nova.conf] updated file contents /etc/nova/nova.conf -Feb 21 20:41:53 server1.1 [2014-02-21T20:41:52-08:00] INFO: template[/etc/nova/nova.conf] owner changed to 162 -Feb 21 20:41:53 server1.1 [2014-02-21T20:41:52-08:00] INFO: template[/etc/nova/nova.conf] mode changed to 644 -Feb 21 20:41:53 server1.1 [2014-02-21T20:41:52-08:00] INFO: Processing template[/etc/nova/rootwrap.conf] action create (openstack-compute::nova-common line 164) -Feb 21 20:41:53 server1.1 [2014-02-21T20:41:52-08:00] INFO: template[/etc/nova/rootwrap.conf] backed up to /var/chef/backup/etc/nova/rootwrap.conf.chef-20140221204152.347747 -Feb 21 20:41:53 server1.1 [2014-02-21T20:41:52-08:00] INFO: template[/etc/nova/rootwrap.conf] updated file contents /etc/nova/rootwrap.conf -Feb 21 20:41:53 server1.1 [2014-02-21T20:41:52-08:00] INFO: template[/etc/nova/rootwrap.conf] group changed to 0 -Feb 21 20:41:53 server1.1 [2014-02-21T20:41:52-08:00] INFO: template[/etc/nova/rootwrap.conf] mode changed to 644 -Feb 21 20:41:53 server1.1 [2014-02-21T20:41:52-08:00] INFO: Processing template[/etc/nova/rootwrap.d/api-metadata.filters] action create (openstack-compute::nova-common line 172) -Feb 21 20:41:53 server1.1 [2014-02-21T20:41:52-08:00] INFO: template[/etc/nova/rootwrap.d/api-metadata.filters] created file /etc/nova/rootwrap.d/api-metadata.filters -Feb 21 20:41:53 server1.1 [2014-02-21T20:41:52-08:00] INFO: template[/etc/nova/rootwrap.d/api-metadata.filters] updated file contents /etc/nova/rootwrap.d/api-metadata.filters -Feb 21 20:41:53 server1.1 [2014-02-21T20:41:52-08:00] INFO: template[/etc/nova/rootwrap.d/api-metadata.filters] owner changed to 0 -Feb 21 20:41:53 server1.1 [2014-02-21T20:41:52-08:00] INFO: template[/etc/nova/rootwrap.d/api-metadata.filters] group changed to 0 -Feb 21 20:41:53 server1.1 [2014-02-21T20:41:52-08:00] INFO: template[/etc/nova/rootwrap.d/api-metadata.filters] mode changed to 644 -Feb 21 20:41:53 server1.1 [2014-02-21T20:41:52-08:00] INFO: Processing template[/etc/nova/rootwrap.d/compute.filters] action create (openstack-compute::nova-common line 180) -Feb 21 20:41:53 server1.1 [2014-02-21T20:41:52-08:00] INFO: template[/etc/nova/rootwrap.d/compute.filters] created file /etc/nova/rootwrap.d/compute.filters -Feb 21 20:41:53 server1.1 [2014-02-21T20:41:52-08:00] INFO: template[/etc/nova/rootwrap.d/compute.filters] updated file contents /etc/nova/rootwrap.d/compute.filters -Feb 21 20:41:53 server1.1 [2014-02-21T20:41:52-08:00] INFO: template[/etc/nova/rootwrap.d/compute.filters] owner changed to 0 -Feb 21 20:41:53 server1.1 [2014-02-21T20:41:52-08:00] INFO: template[/etc/nova/rootwrap.d/compute.filters] group changed to 0 -Feb 21 20:41:53 server1.1 [2014-02-21T20:41:52-08:00] INFO: template[/etc/nova/rootwrap.d/compute.filters] mode changed to 644 -Feb 21 20:41:53 server1.1 [2014-02-21T20:41:52-08:00] INFO: Processing template[/etc/nova/rootwrap.d/network.filters] action create (openstack-compute::nova-common line 188) -Feb 21 20:41:53 server1.1 [2014-02-21T20:41:52-08:00] INFO: template[/etc/nova/rootwrap.d/network.filters] created file /etc/nova/rootwrap.d/network.filters -Feb 21 20:41:53 server1.1 [2014-02-21T20:41:52-08:00] INFO: template[/etc/nova/rootwrap.d/network.filters] updated file contents /etc/nova/rootwrap.d/network.filters -Feb 21 20:41:53 server1.1 [2014-02-21T20:41:52-08:00] INFO: template[/etc/nova/rootwrap.d/network.filters] owner changed to 0 -Feb 21 20:41:53 server1.1 [2014-02-21T20:41:52-08:00] INFO: template[/etc/nova/rootwrap.d/network.filters] group changed to 0 diff --git a/compass/tests/actions/update_progress/data/test2/anamon/checkpoint_4/server1.1/install.log.template b/compass/tests/actions/update_progress/data/test2/anamon/checkpoint_4/server1.1/install.log.template deleted file mode 100644 index 861b3a53..00000000 --- a/compass/tests/actions/update_progress/data/test2/anamon/checkpoint_4/server1.1/install.log.template +++ /dev/null @@ -1,212 +0,0 @@ -Installing libgcc-4.4.7-4.el6.x86_64 -warning: libgcc-4.4.7-4.el6.x86_64: Header V3 RSA/SHA1 Signature, key ID c105b9de: NOKEY -Installing setup-2.8.14-20.el6_4.1.noarch -Installing filesystem-2.4.30-3.el6.x86_64 -Installing basesystem-10.0-4.el6.noarch -Installing ncurses-base-5.7-3.20090208.el6.x86_64 -Installing kernel-firmware-2.6.32-431.el6.noarch -Installing tzdata-2013g-1.el6.noarch -Installing nss-softokn-freebl-3.14.3-9.el6.x86_64 -Installing glibc-common-2.12-1.132.el6.x86_64 -Installing glibc-2.12-1.132.el6.x86_64 -Installing ncurses-libs-5.7-3.20090208.el6.x86_64 -Installing bash-4.1.2-15.el6_4.x86_64 -Installing libattr-2.4.44-7.el6.x86_64 -Installing libcap-2.16-5.5.el6.x86_64 -Installing zlib-1.2.3-29.el6.x86_64 -Installing info-4.13a-8.el6.x86_64 -Installing popt-1.13-7.el6.x86_64 -Installing chkconfig-1.3.49.3-2.el6_4.1.x86_64 -Installing audit-libs-2.2-2.el6.x86_64 -Installing libcom_err-1.41.12-18.el6.x86_64 -Installing libacl-2.2.49-6.el6.x86_64 -Installing db4-4.7.25-18.el6_4.x86_64 -Installing nspr-4.10.0-1.el6.x86_64 -Installing nss-util-3.15.1-3.el6.x86_64 -Installing readline-6.0-4.el6.x86_64 -Installing libsepol-2.0.41-4.el6.x86_64 -Installing libselinux-2.0.94-5.3.el6_4.1.x86_64 -Installing shadow-utils-4.1.4.2-13.el6.x86_64 -Installing sed-4.2.1-10.el6.x86_64 -Installing bzip2-libs-1.0.5-7.el6_0.x86_64 -Installing libuuid-2.17.2-12.14.el6.x86_64 -Installing libstdc++-4.4.7-4.el6.x86_64 -Installing libblkid-2.17.2-12.14.el6.x86_64 -Installing gawk-3.1.7-10.el6.x86_64 -Installing file-libs-5.04-15.el6.x86_64 -Installing libgpg-error-1.7-4.el6.x86_64 -Installing dbus-libs-1.2.24-7.el6_3.x86_64 -Installing libudev-147-2.51.el6.x86_64 -Installing pcre-7.8-6.el6.x86_64 -Installing grep-2.6.3-4.el6.x86_64 -Installing lua-5.1.4-4.1.el6.x86_64 -Installing sqlite-3.6.20-1.el6.x86_64 -Installing cyrus-sasl-lib-2.1.23-13.el6_3.1.x86_64 -Installing libidn-1.18-2.el6.x86_64 -Installing expat-2.0.1-11.el6_2.x86_64 -Installing xz-libs-4.999.9-0.3.beta.20091007git.el6.x86_64 -Installing elfutils-libelf-0.152-1.el6.x86_64 -Installing libgcrypt-1.4.5-11.el6_4.x86_64 -Installing bzip2-1.0.5-7.el6_0.x86_64 -Installing findutils-4.4.2-6.el6.x86_64 -Installing libselinux-utils-2.0.94-5.3.el6_4.1.x86_64 -Installing checkpolicy-2.0.22-1.el6.x86_64 -Installing cpio-2.10-11.el6_3.x86_64 -Installing which-2.19-6.el6.x86_64 -Installing libxml2-2.7.6-14.el6.x86_64 -Installing libedit-2.11-4.20080712cvs.1.el6.x86_64 -Installing pth-2.0.7-9.3.el6.x86_64 -Installing tcp_wrappers-libs-7.6-57.el6.x86_64 -Installing sysvinit-tools-2.87-5.dsf.el6.x86_64 -Installing libtasn1-2.3-3.el6_2.1.x86_64 -Installing p11-kit-0.18.5-2.el6.x86_64 -Installing p11-kit-trust-0.18.5-2.el6.x86_64 -Installing ca-certificates-2013.1.94-65.0.el6.noarch -Installing device-mapper-persistent-data-0.2.8-2.el6.x86_64 -Installing nss-softokn-3.14.3-9.el6.x86_64 -Installing libnih-1.0.1-7.el6.x86_64 -Installing upstart-0.6.5-12.el6_4.1.x86_64 -Installing file-5.04-15.el6.x86_64 -Installing gmp-4.3.1-7.el6_2.2.x86_64 -Installing libusb-0.1.12-23.el6.x86_64 -Installing MAKEDEV-3.24-6.el6.x86_64 -Installing libutempter-1.1.5-4.1.el6.x86_64 -Installing psmisc-22.6-15.el6_0.1.x86_64 -Installing net-tools-1.60-110.el6_2.x86_64 -Installing vim-minimal-7.2.411-1.8.el6.x86_64 -Installing tar-1.23-11.el6.x86_64 -Installing procps-3.2.8-25.el6.x86_64 -Installing db4-utils-4.7.25-18.el6_4.x86_64 -Installing e2fsprogs-libs-1.41.12-18.el6.x86_64 -Installing libss-1.41.12-18.el6.x86_64 -Installing pinentry-0.7.6-6.el6.x86_64 -Installing binutils-2.20.51.0.2-5.36.el6.x86_64 -Installing m4-1.4.13-5.el6.x86_64 -Installing diffutils-2.8.1-28.el6.x86_64 -Installing make-3.81-20.el6.x86_64 -Installing dash-0.5.5.1-4.el6.x86_64 -Installing ncurses-5.7-3.20090208.el6.x86_64 -Installing groff-1.18.1.4-21.el6.x86_64 -Installing less-436-10.el6.x86_64 -Installing coreutils-libs-8.4-31.el6.x86_64 -Installing gzip-1.3.12-19.el6_4.x86_64 -Installing cracklib-2.8.16-4.el6.x86_64 -Installing cracklib-dicts-2.8.16-4.el6.x86_64 -Installing coreutils-8.4-31.el6.x86_64 -Installing pam-1.1.1-17.el6.x86_64 -Installing module-init-tools-3.9-21.el6_4.x86_64 -Installing hwdata-0.233-9.1.el6.noarch -Installing redhat-logos-60.0.14-12.el6.centos.noarch -Installing plymouth-scripts-0.8.3-27.el6.centos.x86_64 -Installing libpciaccess-0.13.1-2.el6.x86_64 -Installing nss-3.15.1-15.el6.x86_64 -Installing nss-sysinit-3.15.1-15.el6.x86_64 -Installing nss-tools-3.15.1-15.el6.x86_64 -Installing openldap-2.4.23-32.el6_4.1.x86_64 -Installing logrotate-3.7.8-17.el6.x86_64 -Installing gdbm-1.8.0-36.el6.x86_64 -Installing mingetty-1.08-5.el6.x86_64 -Installing keyutils-libs-1.4-4.el6.x86_64 -Installing krb5-libs-1.10.3-10.el6_4.6.x86_64 -Installing openssl-1.0.1e-15.el6.x86_64 -Installing libssh2-1.4.2-1.el6.x86_64 -Installing libcurl-7.19.7-37.el6_4.x86_64 -Installing gnupg2-2.0.14-6.el6_4.x86_64 -Installing gpgme-1.1.8-3.el6.x86_64 -Installing curl-7.19.7-37.el6_4.x86_64 -Installing rpm-libs-4.8.0-37.el6.x86_64 -Installing rpm-4.8.0-37.el6.x86_64 -Installing fipscheck-lib-1.2.0-7.el6.x86_64 -Installing fipscheck-1.2.0-7.el6.x86_64 -Installing mysql-libs-5.1.71-1.el6.x86_64 -Installing ethtool-3.5-1.el6.x86_64 -Installing pciutils-libs-3.1.10-2.el6.x86_64 -Installing plymouth-core-libs-0.8.3-27.el6.centos.x86_64 -Installing libcap-ng-0.6.4-3.el6_0.1.x86_64 -Installing libffi-3.0.5-3.2.el6.x86_64 -Installing python-2.6.6-51.el6.x86_64 -Installing python-libs-2.6.6-51.el6.x86_64 -Installing python-pycurl-7.19.0-8.el6.x86_64 -Installing python-urlgrabber-3.9.1-9.el6.noarch -Installing pygpgme-0.1-18.20090824bzr68.el6.x86_64 -Installing rpm-python-4.8.0-37.el6.x86_64 -Installing python-iniparse-0.3.1-2.1.el6.noarch -Installing slang-2.2.1-1.el6.x86_64 -Installing newt-0.52.11-3.el6.x86_64 -Installing newt-python-0.52.11-3.el6.x86_64 -Installing ustr-1.0.4-9.1.el6.x86_64 -Installing libsemanage-2.0.43-4.2.el6.x86_64 -Installing libaio-0.3.107-10.el6.x86_64 -Installing pkgconfig-0.23-9.1.el6.x86_64 -Installing gamin-0.1.10-9.el6.x86_64 -Installing glib2-2.26.1-3.el6.x86_64 -Installing shared-mime-info-0.70-4.el6.x86_64 -Installing libuser-0.56.13-5.el6.x86_64 -Installing grubby-7.0.15-5.el6.x86_64 -Installing yum-metadata-parser-1.1.2-16.el6.x86_64 -Installing yum-plugin-fastestmirror-1.1.30-14.el6.noarch -Installing yum-3.2.29-40.el6.centos.noarch -Installing dbus-glib-0.86-6.el6.x86_64 -Installing dhcp-common-4.1.1-38.P1.el6.centos.x86_64 -Installing centos-release-6-5.el6.centos.11.1.x86_64 -Installing policycoreutils-2.0.83-19.39.el6.x86_64 -Installing iptables-1.4.7-11.el6.x86_64 -Installing iproute-2.6.32-31.el6.x86_64 -Installing iputils-20071127-17.el6_4.2.x86_64 -Installing util-linux-ng-2.17.2-12.14.el6.x86_64 -Installing initscripts-9.03.40-2.el6.centos.x86_64 -Installing udev-147-2.51.el6.x86_64 -Installing device-mapper-libs-1.02.79-8.el6.x86_64 -Installing device-mapper-1.02.79-8.el6.x86_64 -Installing device-mapper-event-libs-1.02.79-8.el6.x86_64 -Installing openssh-5.3p1-94.el6.x86_64 -Installing device-mapper-event-1.02.79-8.el6.x86_64 -Installing lvm2-libs-2.02.100-8.el6.x86_64 -Installing cryptsetup-luks-libs-1.2.0-7.el6.x86_64 -Installing device-mapper-multipath-libs-0.4.9-72.el6.x86_64 -Installing kpartx-0.4.9-72.el6.x86_64 -Installing libdrm-2.4.45-2.el6.x86_64 -Installing plymouth-0.8.3-27.el6.centos.x86_64 -Installing rsyslog-5.8.10-8.el6.x86_64 -Installing cyrus-sasl-2.1.23-13.el6_3.1.x86_64 -Installing postfix-2.6.6-2.2.el6_1.x86_64 -Installing cronie-anacron-1.4.4-12.el6.x86_64 -Installing cronie-1.4.4-12.el6.x86_64 -Installing crontabs-1.10-33.el6.noarch -Installing ntpdate-4.2.6p5-1.el6.centos.x86_64 -Installing iptables-ipv6-1.4.7-11.el6.x86_64 -Installing selinux-policy-3.7.19-231.el6.noarch -Installing kbd-misc-1.15-11.el6.noarch -Installing kbd-1.15-11.el6.x86_64 -Installing dracut-004-335.el6.noarch -Installing dracut-kernel-004-335.el6.noarch -Installing kernel-2.6.32-431.el6.x86_64 -Installing fuse-2.8.3-4.el6.x86_64 -Installing selinux-policy-targeted-3.7.19-231.el6.noarch -Installing system-config-firewall-base-1.2.27-5.el6.noarch -Installing ntp-4.2.6p5-1.el6.centos.x86_64 -Installing device-mapper-multipath-0.4.9-72.el6.x86_64 -Installing cryptsetup-luks-1.2.0-7.el6.x86_64 -Installing lvm2-2.02.100-8.el6.x86_64 -Installing openssh-clients-5.3p1-94.el6.x86_64 -Installing openssh-server-5.3p1-94.el6.x86_64 -Installing mdadm-3.2.6-7.el6.x86_64 -Installing b43-openfwwf-5.2-4.el6.noarch -Installing dhclient-4.1.1-38.P1.el6.centos.x86_64 -Installing iscsi-initiator-utils-6.2.0.873-10.el6.x86_64 -Installing passwd-0.77-4.el6_2.2.x86_64 -Installing authconfig-6.1.12-13.el6.x86_64 -Installing grub-0.97-83.el6.x86_64 -Installing efibootmgr-0.5.4-11.el6.x86_64 -Installing wget-1.12-1.8.el6.x86_64 -Installing sudo-1.8.6p3-12.el6.x86_64 -Installing audit-2.2-2.el6.x86_64 -Installing e2fsprogs-1.41.12-18.el6.x86_64 -Installing xfsprogs-3.1.1-14.el6.x86_64 -Installing acl-2.2.49-6.el6.x86_64 -Installing attr-2.4.44-7.el6.x86_64 -Installing chef-11.8.0-1.el6.x86_64 -warning: chef-11.8.0-1.el6.x86_64: Header V4 DSA/SHA1 Signature, key ID 83ef826a: NOKEY -Installing bridge-utils-1.2-10.el6.x86_64 -Installing rootfiles-8.1-6.1.el6.noarch -*** FINISHED INSTALLING PACKAGES *** \ No newline at end of file diff --git a/compass/tests/actions/update_progress/data/test2/anamon/checkpoint_4/server1.1/sys.log.template b/compass/tests/actions/update_progress/data/test2/anamon/checkpoint_4/server1.1/sys.log.template deleted file mode 100644 index 7390276a..00000000 --- a/compass/tests/actions/update_progress/data/test2/anamon/checkpoint_4/server1.1/sys.log.template +++ /dev/null @@ -1,1726 +0,0 @@ -05:51:18,517 INFO kernel:imklog 5.8.10, log source = /proc/kmsg started. -05:51:18,517 INFO rsyslogd: [origin software="rsyslogd" swVersion="5.8.10" x-pid="68" x-info="http://www.rsyslog.com"] start -05:51:18,517 INFO kernel:Initializing cgroup subsys cpuset -05:51:18,517 INFO kernel:Initializing cgroup subsys cpu -05:51:18,517 NOTICE kernel:Linux version 2.6.32-431.el6.x86_64 (mockbuild@c6b8.bsys.dev.centos.org) (gcc version 4.4.7 20120313 (Red Hat 4.4.7-4) (GCC) ) #1 SMP Fri Nov 22 03:15:09 UTC 2013 -05:51:18,517 INFO kernel:Command line: initrd=/images/CentOS-6.5-x86_64/initrd.img ksdevice=bootif lang= kssendmac text ks=http://10.145.88.211/cblr/svc/op/ks/system/server1.1 BOOT_IMAGE=/images/CentOS-6.5-x86_64/vmlinuz BOOTIF=01-00-0c-29-21-89-af -05:51:18,517 INFO kernel:KERNEL supported cpus: -05:51:18,517 INFO kernel: Intel GenuineIntel -05:51:18,517 INFO kernel: AMD AuthenticAMD -05:51:18,517 INFO kernel: Centaur CentaurHauls -05:51:18,517 INFO kernel:Disabled fast string operations -05:51:18,517 INFO kernel:BIOS-provided physical RAM map: -05:51:18,517 INFO kernel: BIOS-e820: 0000000000000000 - 000000000009f400 (usable) -05:51:18,517 INFO kernel: BIOS-e820: 000000000009f400 - 00000000000a0000 (reserved) -05:51:18,517 INFO kernel: BIOS-e820: 00000000000ca000 - 00000000000cc000 (reserved) -05:51:18,517 INFO kernel: BIOS-e820: 00000000000dc000 - 0000000000100000 (reserved) -05:51:18,517 INFO kernel: BIOS-e820: 0000000000100000 - 000000007fef0000 (usable) -05:51:18,517 INFO kernel: BIOS-e820: 000000007fef0000 - 000000007feff000 (ACPI data) -05:51:18,517 INFO kernel: BIOS-e820: 000000007feff000 - 000000007ff00000 (ACPI NVS) -05:51:18,517 INFO kernel: BIOS-e820: 000000007ff00000 - 0000000080000000 (usable) -05:51:18,517 INFO kernel: BIOS-e820: 00000000e0000000 - 00000000f0000000 (reserved) -05:51:18,517 INFO kernel: BIOS-e820: 00000000fec00000 - 00000000fec10000 (reserved) -05:51:18,517 INFO kernel: BIOS-e820: 00000000fee00000 - 00000000fee01000 (reserved) -05:51:18,517 INFO kernel: BIOS-e820: 00000000fffe0000 - 0000000100000000 (reserved) -05:51:18,517 INFO kernel:DMI present. -05:51:18,517 WARNING kernel:SMBIOS version 2.4 @ 0xF68F0 -05:51:18,517 DEBUG kernel:DMI: VMware, Inc. VMware Virtual Platform/440BX Desktop Reference Platform, BIOS 6.00 01/07/2011 -05:51:18,517 NOTICE kernel:Phoenix BIOS detected: BIOS may corrupt low RAM, working around it. -05:51:18,517 DEBUG kernel:e820 update range: 0000000000000000 - 0000000000010000 (usable) ==> (reserved) -05:51:18,517 INFO kernel:Hypervisor detected: VMware -05:51:18,517 DEBUG kernel:e820 update range: 0000000000000000 - 0000000000001000 (usable) ==> (reserved) -05:51:18,517 DEBUG kernel:e820 remove range: 00000000000a0000 - 0000000000100000 (usable) -05:51:18,517 INFO kernel:last_pfn = 0x80000 max_arch_pfn = 0x400000000 -05:51:18,517 DEBUG kernel:MTRR default type: uncachable -05:51:18,517 DEBUG kernel:MTRR fixed ranges enabled: -05:51:18,517 DEBUG kernel: 00000-9FFFF write-back -05:51:18,517 DEBUG kernel: A0000-BFFFF uncachable -05:51:18,517 DEBUG kernel: C0000-CFFFF write-protect -05:51:18,517 DEBUG kernel: D0000-EFFFF uncachable -05:51:18,517 DEBUG kernel: F0000-FFFFF write-protect -05:51:18,517 DEBUG kernel:MTRR variable ranges enabled: -05:51:18,517 DEBUG kernel: 0 base 0000000000 mask FF80000000 write-back -05:51:18,517 DEBUG kernel: 1 disabled -05:51:18,517 DEBUG kernel: 2 disabled -05:51:18,517 DEBUG kernel: 3 disabled -05:51:18,517 DEBUG kernel: 4 disabled -05:51:18,517 DEBUG kernel: 5 disabled -05:51:18,517 DEBUG kernel: 6 disabled -05:51:18,517 DEBUG kernel: 7 disabled -05:51:18,517 INFO kernel:x86 PAT enabled: cpu 0, old 0x0, new 0x7010600070106 -05:51:18,517 DEBUG kernel:initial memory mapped : 0 - 20000000 -05:51:18,517 INFO kernel:init_memory_mapping: 0000000000000000-0000000080000000 -05:51:18,517 DEBUG kernel: 0000000000 - 0080000000 page 2M -05:51:18,517 DEBUG kernel:kernel direct mapping tables up to 80000000 @ 10000-13000 -05:51:18,517 INFO kernel:RAMDISK: 7def9000 - 7fecf4ff -05:51:18,517 WARNING kernel:ACPI: RSDP 00000000000f6940 00024 (v02 PTLTD ) -05:51:18,517 WARNING kernel:ACPI: XSDT 000000007fef0333 00054 (v01 INTEL 440BX 06040000 VMW 01324272) -05:51:18,517 WARNING kernel:ACPI: FACP 000000007fefee98 000F4 (v04 INTEL 440BX 06040000 PTL 000F4240) -05:51:18,517 WARNING kernel:ACPI: DSDT 000000007fef055d 0E93B (v01 PTLTD Custom 06040000 MSFT 03000001) -05:51:18,517 WARNING kernel:ACPI: FACS 000000007fefffc0 00040 -05:51:18,517 WARNING kernel:ACPI: BOOT 000000007fef0535 00028 (v01 PTLTD $SBFTBL$ 06040000 LTP 00000001) -05:51:18,517 WARNING kernel:ACPI: APIC 000000007fef04d7 0005E (v01 PTLTD ? APIC 06040000 LTP 00000000) -05:51:18,517 WARNING kernel:ACPI: MCFG 000000007fef049b 0003C (v01 PTLTD $PCITBL$ 06040000 LTP 00000001) -05:51:18,517 WARNING kernel:ACPI: SRAT 000000007fef03fb 000A0 (v02 VMWARE MEMPLUG 06040000 VMW 00000001) -05:51:18,517 WARNING kernel:ACPI: HPET 000000007fef03c3 00038 (v01 VMWARE VMW HPET 06040000 WMV 00000001) -05:51:18,517 DEBUG kernel:ACPI: Local APIC address 0xfee00000 -05:51:18,517 INFO kernel:Setting APIC routing to flat. -05:51:18,517 INFO kernel:SRAT: PXM 0 -> APIC 0 -> Node 0 -05:51:18,517 INFO kernel:SRAT: PXM 0 -> APIC 1 -> Node 0 -05:51:18,517 INFO kernel:SRAT: Node 0 PXM 0 0-a0000 -05:51:18,517 INFO kernel:SRAT: Node 0 PXM 0 100000-80000000 -05:51:18,517 DEBUG kernel:NUMA: Allocated memnodemap from 11000 - 12040 -05:51:18,517 DEBUG kernel:NUMA: Using 20 for the hash shift. -05:51:18,517 INFO kernel:Bootmem setup node 0 0000000000000000-0000000080000000 -05:51:18,517 INFO kernel: NODE_DATA [0000000000012040 - 000000000004603f] -05:51:18,517 INFO kernel: bootmap [0000000000047000 - 0000000000056fff] pages 10 -05:51:18,517 INFO kernel:(8 early reservations) ==> bootmem [0000000000 - 0080000000] -05:51:18,517 INFO kernel: #0 [0000000000 - 0000001000] BIOS data page ==> [0000000000 - 0000001000] -05:51:18,517 INFO kernel: #1 [0000006000 - 0000008000] TRAMPOLINE ==> [0000006000 - 0000008000] -05:51:18,517 INFO kernel: #2 [0001000000 - 000201faa4] TEXT DATA BSS ==> [0001000000 - 000201faa4] -05:51:18,517 INFO kernel: #3 [007def9000 - 007fecf4ff] RAMDISK ==> [007def9000 - 007fecf4ff] -05:51:18,517 INFO kernel: #4 [000009f400 - 0000100000] BIOS reserved ==> [000009f400 - 0000100000] -05:51:18,517 INFO kernel: #5 [0002020000 - 00020201f0] BRK ==> [0002020000 - 00020201f0] -05:51:18,517 INFO kernel: #6 [0000010000 - 0000011000] PGTABLE ==> [0000010000 - 0000011000] -05:51:18,517 INFO kernel: #7 [0000011000 - 0000012040] MEMNODEMAP ==> [0000011000 - 0000012040] -05:51:18,517 INFO kernel:found SMP MP-table at [ffff8800000f69b0] f69b0 -05:51:18,517 DEBUG kernel: [ffffea0000000000-ffffea0001bfffff] PMD -> [ffff880002600000-ffff8800041fffff] on node 0 -05:51:18,517 WARNING kernel:Zone PFN ranges: -05:51:18,517 WARNING kernel: DMA 0x00000010 -> 0x00001000 -05:51:18,517 WARNING kernel: DMA32 0x00001000 -> 0x00100000 -05:51:18,517 WARNING kernel: Normal 0x00100000 -> 0x00100000 -05:51:18,517 WARNING kernel:Movable zone start PFN for each node -05:51:18,517 WARNING kernel:early_node_map[3] active PFN ranges -05:51:18,517 WARNING kernel: 0: 0x00000010 -> 0x0000009f -05:51:18,517 WARNING kernel: 0: 0x00000100 -> 0x0007fef0 -05:51:18,517 WARNING kernel: 0: 0x0007ff00 -> 0x00080000 -05:51:18,517 DEBUG kernel:On node 0 totalpages: 524159 -05:51:18,517 DEBUG kernel: DMA zone: 56 pages used for memmap -05:51:18,517 DEBUG kernel: DMA zone: 101 pages reserved -05:51:18,517 DEBUG kernel: DMA zone: 3826 pages, LIFO batch:0 -05:51:18,517 DEBUG kernel: DMA32 zone: 7112 pages used for memmap -05:51:18,517 DEBUG kernel: DMA32 zone: 513064 pages, LIFO batch:31 -05:51:18,517 INFO kernel:ACPI: PM-Timer IO Port: 0x1008 -05:51:18,517 DEBUG kernel:ACPI: Local APIC address 0xfee00000 -05:51:18,517 INFO kernel:Setting APIC routing to flat. -05:51:18,517 INFO kernel:ACPI: LAPIC (acpi_id[0x00] lapic_id[0x00] enabled) -05:51:18,517 INFO kernel:ACPI: LAPIC (acpi_id[0x01] lapic_id[0x01] enabled) -05:51:18,517 INFO kernel:ACPI: LAPIC_NMI (acpi_id[0x00] high edge lint[0x1]) -05:51:18,517 INFO kernel:ACPI: LAPIC_NMI (acpi_id[0x01] high edge lint[0x1]) -05:51:18,517 INFO kernel:ACPI: IOAPIC (id[0x02] address[0xfec00000] gsi_base[0]) -05:51:18,518 INFO kernel:IOAPIC[0]: apic_id 2, version 17, address 0xfec00000, GSI 0-23 -05:51:18,518 INFO kernel:ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 high edge) -05:51:18,518 DEBUG kernel:ACPI: IRQ0 used by override. -05:51:18,518 DEBUG kernel:ACPI: IRQ2 used by override. -05:51:18,518 DEBUG kernel:ACPI: IRQ9 used by override. -05:51:18,518 INFO kernel:Using ACPI (MADT) for SMP configuration information -05:51:18,518 INFO kernel:ACPI: HPET id: 0x8086af01 base: 0xfed00000 -05:51:18,518 INFO kernel:SMP: Allowing 2 CPUs, 0 hotplug CPUs -05:51:18,518 DEBUG kernel:nr_irqs_gsi: 24 -05:51:18,518 INFO kernel:PM: Registered nosave memory: 000000000009f000 - 00000000000a0000 -05:51:18,518 INFO kernel:PM: Registered nosave memory: 00000000000a0000 - 00000000000ca000 -05:51:18,518 INFO kernel:PM: Registered nosave memory: 00000000000ca000 - 00000000000cc000 -05:51:18,518 INFO kernel:PM: Registered nosave memory: 00000000000cc000 - 00000000000dc000 -05:51:18,518 INFO kernel:PM: Registered nosave memory: 00000000000dc000 - 0000000000100000 -05:51:18,518 INFO kernel:PM: Registered nosave memory: 000000007fef0000 - 000000007feff000 -05:51:18,518 INFO kernel:PM: Registered nosave memory: 000000007feff000 - 000000007ff00000 -05:51:18,518 INFO kernel:Allocating PCI resources starting at 80000000 (gap: 80000000:60000000) -05:51:18,518 INFO kernel:Booting paravirtualized kernel on bare hardware -05:51:18,518 INFO kernel:NR_CPUS:4096 nr_cpumask_bits:2 nr_cpu_ids:2 nr_node_ids:1 -05:51:18,518 INFO kernel:PERCPU: Embedded 31 pages/cpu @ffff880002200000 s94872 r8192 d23912 u1048576 -05:51:18,518 INFO kernel:pcpu-alloc: s94872 r8192 d23912 u1048576 alloc=1*2097152 -05:51:18,518 INFO kernel:pcpu-alloc: [0] 0 1 -05:51:18,518 WARNING kernel:Built 1 zonelists in Node order, mobility grouping on. Total pages: 516890 -05:51:18,520 WARNING kernel:Policy zone: DMA32 -05:51:18,520 NOTICE kernel:Kernel command line: initrd=/images/CentOS-6.5-x86_64/initrd.img ksdevice=bootif lang= kssendmac text ks=http://10.145.88.211/cblr/svc/op/ks/system/server1.1 BOOT_IMAGE=/images/CentOS-6.5-x86_64/vmlinuz BOOTIF=01-00-0c-29-21-89-af -05:51:18,520 INFO kernel:PID hash table entries: 4096 (order: 3, 32768 bytes) -05:51:18,520 INFO kernel:Checking aperture... -05:51:18,520 INFO kernel:No AGP bridge found -05:51:18,520 INFO kernel:Memory: 2018096k/2097152k available (5325k kernel code, 516k absent, 78540k reserved, 7013k data, 1276k init) -05:51:18,520 INFO kernel:Hierarchical RCU implementation. -05:51:18,520 INFO kernel:NR_IRQS:33024 nr_irqs:424 -05:51:18,520 INFO kernel:Extended CMOS year: 2000 -05:51:18,520 WARNING kernel:Console: colour VGA+ 80x25 -05:51:18,520 INFO kernel:console [tty0] enabled -05:51:18,520 INFO kernel:allocated 8388608 bytes of page_cgroup -05:51:18,520 INFO kernel:please try 'cgroup_disable=memory' option if you don't want memory cgroups -05:51:18,520 DEBUG kernel:hpet clockevent registered -05:51:18,520 INFO kernel:TSC freq read from hypervisor : 2400.085 MHz -05:51:18,520 WARNING kernel:Detected 2400.085 MHz processor. -05:51:18,520 INFO kernel:Calibrating delay loop (skipped) preset value.. 4800.17 BogoMIPS (lpj=2400085) -05:51:18,520 INFO kernel:pid_max: default: 32768 minimum: 301 -05:51:18,520 INFO kernel:Security Framework initialized -05:51:18,520 INFO kernel:SELinux: Initializing. -05:51:18,520 DEBUG kernel:SELinux: Starting in permissive mode -05:51:18,520 INFO kernel:Dentry cache hash table entries: 262144 (order: 9, 2097152 bytes) -05:51:18,520 INFO kernel:Inode-cache hash table entries: 131072 (order: 8, 1048576 bytes) -05:51:18,520 WARNING kernel:Mount-cache hash table entries: 256 -05:51:18,520 INFO kernel:Initializing cgroup subsys ns -05:51:18,520 INFO kernel:Initializing cgroup subsys cpuacct -05:51:18,520 INFO kernel:Initializing cgroup subsys memory -05:51:18,520 INFO kernel:Initializing cgroup subsys devices -05:51:18,520 INFO kernel:Initializing cgroup subsys freezer -05:51:18,520 INFO kernel:Initializing cgroup subsys net_cls -05:51:18,520 INFO kernel:Initializing cgroup subsys blkio -05:51:18,520 INFO kernel:Initializing cgroup subsys perf_event -05:51:18,520 INFO kernel:Initializing cgroup subsys net_prio -05:51:18,520 INFO kernel:Disabled fast string operations -05:51:18,520 INFO kernel:CPU: Physical Processor ID: 0 -05:51:18,520 INFO kernel:mce: CPU supports 0 MCE banks -05:51:18,520 INFO kernel:alternatives: switching to unfair spinlock -05:51:18,520 INFO kernel:ACPI: Core revision 20090903 -05:51:18,520 INFO kernel:ftrace: converting mcount calls to 0f 1f 44 00 00 -05:51:18,520 INFO kernel:ftrace: allocating 21769 entries in 86 pages -05:51:18,520 INFO kernel:APIC routing finalized to flat. -05:51:18,520 INFO kernel:..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1 -05:51:18,520 INFO kernel:CPU0: Intel(R) Xeon(R) CPU E5620 @ 2.40GHz stepping 02 -05:51:18,520 INFO kernel:Performance Events: 16-deep LBR, Westmere events, Intel PMU driver. -05:51:18,520 WARNING kernel:CPUID marked event: 'cpu cycles' unavailable -05:51:18,520 WARNING kernel:CPUID marked event: 'instructions' unavailable -05:51:18,520 WARNING kernel:CPUID marked event: 'bus cycles' unavailable -05:51:18,520 WARNING kernel:CPUID marked event: 'cache references' unavailable -05:51:18,520 WARNING kernel:CPUID marked event: 'cache misses' unavailable -05:51:18,520 WARNING kernel:CPUID marked event: 'branch instructions' unavailable -05:51:18,520 WARNING kernel:CPUID marked event: 'branch misses' unavailable -05:51:18,520 INFO kernel:... version: 3 -05:51:18,520 INFO kernel:... bit width: 48 -05:51:18,520 INFO kernel:... generic registers: 4 -05:51:18,520 INFO kernel:... value mask: 0000ffffffffffff -05:51:18,520 INFO kernel:... max period: 000000007fffffff -05:51:18,520 INFO kernel:... fixed-purpose events: 3 -05:51:18,520 INFO kernel:... event mask: 000000070000000f -05:51:18,520 WARNING kernel:NMI watchdog disabled (cpu0): hardware events not enabled -05:51:18,520 INFO kernel:Booting Node 0, Processors #1 Ok. -05:51:18,520 INFO kernel:Disabled fast string operations -05:51:18,520 INFO kernel:mce: CPU supports 0 MCE banks -05:51:18,520 INFO kernel:Skipped synchronization checks as TSC is reliable. -05:51:18,520 INFO kernel:Brought up 2 CPUs -05:51:18,520 INFO kernel:Total of 2 processors activated (9600.34 BogoMIPS). -05:51:18,520 INFO kernel:x86 PAT enabled: cpu 0, old 0x0, new 0x7010600070106 -05:51:18,520 INFO kernel:x86 PAT enabled: cpu 1, old 0x0, new 0x7010600070106 -05:51:18,520 DEBUG kernel:sizeof(vma)=200 bytes -05:51:18,520 DEBUG kernel:sizeof(page)=56 bytes -05:51:18,520 DEBUG kernel:sizeof(inode)=592 bytes -05:51:18,520 DEBUG kernel:sizeof(dentry)=192 bytes -05:51:18,520 DEBUG kernel:sizeof(ext3inode)=800 bytes -05:51:18,520 DEBUG kernel:sizeof(buffer_head)=104 bytes -05:51:18,520 DEBUG kernel:sizeof(skbuff)=232 bytes -05:51:18,520 DEBUG kernel:sizeof(task_struct)=2648 bytes -05:51:18,520 INFO kernel:devtmpfs: initialized -05:51:18,520 INFO kernel:PM: Registering ACPI NVS region at 7feff000 (4096 bytes) -05:51:18,520 INFO kernel:regulator: core version 0.5 -05:51:18,520 INFO kernel:NET: Registered protocol family 16 -05:51:18,520 INFO kernel:ACPI: bus type pci registered -05:51:18,520 NOTICE kernel:PCI: MCFG configuration 0: base e0000000 segment 0 buses 0 - 255 -05:51:18,520 NOTICE kernel:PCI: MCFG area at e0000000 reserved in E820 -05:51:18,520 INFO kernel:PCI: Using MMCONFIG at e0000000 - efffffff -05:51:18,520 INFO kernel:PCI: Using configuration type 1 for base access -05:51:18,520 WARNING kernel:bio: create slab at 0 -05:51:18,520 DEBUG kernel:ACPI: EC: Look up EC in DSDT -05:51:18,520 NOTICE kernel:ACPI: BIOS _OSI(Linux) query ignored -05:51:18,520 INFO kernel:ACPI: Interpreter enabled -05:51:18,520 INFO kernel:ACPI: (supports S0 S1 S4 S5) -05:51:18,520 INFO kernel:ACPI: Using IOAPIC for interrupt routing -05:51:18,520 INFO kernel:ACPI: No dock devices found. -05:51:18,520 INFO kernel:PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug -05:51:18,520 INFO kernel:ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-ff]) -05:51:18,520 INFO kernel:pci_root PNP0A03:00: host bridge window [mem 0x000a0000-0x000bffff] -05:51:18,520 INFO kernel:pci_root PNP0A03:00: host bridge window [mem 0x000d0000-0x000d3fff] -05:51:18,520 INFO kernel:pci_root PNP0A03:00: host bridge window [mem 0x000d4000-0x000d7fff] -05:51:18,520 INFO kernel:pci_root PNP0A03:00: host bridge window [mem 0x000d8000-0x000dbfff] -05:51:18,520 INFO kernel:pci_root PNP0A03:00: host bridge window [mem 0x80000000-0xfebfffff] -05:51:18,520 INFO kernel:pci_root PNP0A03:00: host bridge window [io 0x0000-0x0cf7] -05:51:18,520 INFO kernel:pci_root PNP0A03:00: host bridge window [io 0x0d00-0xfeff] -05:51:18,520 INFO kernel:PCI host bridge to bus 0000:00 -05:51:18,520 INFO kernel:pci_bus 0000:00: root bus resource [mem 0x000a0000-0x000bffff] -05:51:18,520 INFO kernel:pci_bus 0000:00: root bus resource [mem 0x000d0000-0x000d3fff] -05:51:18,520 INFO kernel:pci_bus 0000:00: root bus resource [mem 0x000d4000-0x000d7fff] -05:51:18,520 INFO kernel:pci_bus 0000:00: root bus resource [mem 0x000d8000-0x000dbfff] -05:51:18,520 INFO kernel:pci_bus 0000:00: root bus resource [mem 0x80000000-0xfebfffff] -05:51:18,520 INFO kernel:pci_bus 0000:00: root bus resource [io 0x0000-0x0cf7] -05:51:18,520 INFO kernel:pci_bus 0000:00: root bus resource [io 0x0d00-0xfeff] -05:51:18,520 DEBUG kernel:pci 0000:00:07.1: reg 20: [io 0x10c0-0x10cf] -05:51:18,520 INFO kernel:pci 0000:00:07.3: quirk: [io 0x1000-0x103f] claimed by PIIX4 ACPI -05:51:18,520 INFO kernel:pci 0000:00:07.3: quirk: [io 0x1040-0x104f] claimed by PIIX4 SMB -05:51:18,520 DEBUG kernel:pci 0000:00:07.7: reg 10: [io 0x1080-0x10bf] -05:51:18,520 DEBUG kernel:pci 0000:00:07.7: reg 14: [mem 0xd0000000-0xd0001fff 64bit] -05:51:18,520 DEBUG kernel:pci 0000:00:0f.0: reg 10: [io 0x10d0-0x10df] -05:51:18,520 DEBUG kernel:pci 0000:00:0f.0: reg 14: [mem 0xd8000000-0xdbffffff pref] -05:51:18,520 DEBUG kernel:pci 0000:00:0f.0: reg 18: [mem 0xd0800000-0xd0ffffff] -05:51:18,520 DEBUG kernel:pci 0000:00:0f.0: reg 30: [mem 0x00000000-0x00007fff pref] -05:51:18,520 DEBUG kernel:pci 0000:00:10.0: reg 10: [io 0x1400-0x14ff] -05:51:18,520 DEBUG kernel:pci 0000:00:10.0: reg 14: [mem 0xd0040000-0xd005ffff 64bit] -05:51:18,520 DEBUG kernel:pci 0000:00:10.0: reg 1c: [mem 0xd0020000-0xd003ffff 64bit] -05:51:18,520 DEBUG kernel:pci 0000:00:10.0: reg 30: [mem 0x00000000-0x00003fff pref] -05:51:18,520 INFO kernel:pci 0000:00:15.0: PME# supported from D0 D3hot D3cold -05:51:18,520 INFO kernel:pci 0000:00:15.0: PME# disabled -05:51:18,520 INFO kernel:pci 0000:00:15.1: PME# supported from D0 D3hot D3cold -05:51:18,520 INFO kernel:pci 0000:00:15.1: PME# disabled -05:51:18,520 INFO kernel:pci 0000:00:15.2: PME# supported from D0 D3hot D3cold -05:51:18,520 INFO kernel:pci 0000:00:15.2: PME# disabled -05:51:18,520 INFO kernel:pci 0000:00:15.3: PME# supported from D0 D3hot D3cold -05:51:18,520 INFO kernel:pci 0000:00:15.3: PME# disabled -05:51:18,520 INFO kernel:pci 0000:00:15.4: PME# supported from D0 D3hot D3cold -05:51:18,520 INFO kernel:pci 0000:00:15.4: PME# disabled -05:51:18,520 INFO kernel:pci 0000:00:15.5: PME# supported from D0 D3hot D3cold -05:51:18,520 INFO kernel:pci 0000:00:15.5: PME# disabled -05:51:18,520 INFO kernel:pci 0000:00:15.6: PME# supported from D0 D3hot D3cold -05:51:18,520 INFO kernel:pci 0000:00:15.6: PME# disabled -05:51:18,520 INFO kernel:pci 0000:00:15.7: PME# supported from D0 D3hot D3cold -05:51:18,520 INFO kernel:pci 0000:00:15.7: PME# disabled -05:51:18,520 INFO kernel:pci 0000:00:16.0: PME# supported from D0 D3hot D3cold -05:51:18,520 INFO kernel:pci 0000:00:16.0: PME# disabled -05:51:18,520 INFO kernel:pci 0000:00:16.1: PME# supported from D0 D3hot D3cold -05:51:18,520 INFO kernel:pci 0000:00:16.1: PME# disabled -05:51:18,520 INFO kernel:pci 0000:00:16.2: PME# supported from D0 D3hot D3cold -05:51:18,520 INFO kernel:pci 0000:00:16.2: PME# disabled -05:51:18,520 INFO kernel:pci 0000:00:16.3: PME# supported from D0 D3hot D3cold -05:51:18,520 INFO kernel:pci 0000:00:16.3: PME# disabled -05:51:18,520 INFO kernel:pci 0000:00:16.4: PME# supported from D0 D3hot D3cold -05:51:18,520 INFO kernel:pci 0000:00:16.4: PME# disabled -05:51:18,520 INFO kernel:pci 0000:00:16.5: PME# supported from D0 D3hot D3cold -05:51:18,520 INFO kernel:pci 0000:00:16.5: PME# disabled -05:51:18,520 INFO kernel:pci 0000:00:16.6: PME# supported from D0 D3hot D3cold -05:51:18,520 INFO kernel:pci 0000:00:16.6: PME# disabled -05:51:18,520 INFO kernel:pci 0000:00:16.7: PME# supported from D0 D3hot D3cold -05:51:18,520 INFO kernel:pci 0000:00:16.7: PME# disabled -05:51:18,520 INFO kernel:pci 0000:00:17.0: PME# supported from D0 D3hot D3cold -05:51:18,520 INFO kernel:pci 0000:00:17.0: PME# disabled -05:51:18,520 INFO kernel:pci 0000:00:17.1: PME# supported from D0 D3hot D3cold -05:51:18,520 INFO kernel:pci 0000:00:17.1: PME# disabled -05:51:18,520 INFO kernel:pci 0000:00:17.2: PME# supported from D0 D3hot D3cold -05:51:18,520 INFO kernel:pci 0000:00:17.2: PME# disabled -05:51:18,520 INFO kernel:pci 0000:00:17.3: PME# supported from D0 D3hot D3cold -05:51:18,520 INFO kernel:pci 0000:00:17.3: PME# disabled -05:51:18,520 INFO kernel:pci 0000:00:17.4: PME# supported from D0 D3hot D3cold -05:51:18,520 INFO kernel:pci 0000:00:17.4: PME# disabled -05:51:18,520 INFO kernel:pci 0000:00:17.5: PME# supported from D0 D3hot D3cold -05:51:18,520 INFO kernel:pci 0000:00:17.5: PME# disabled -05:51:18,520 INFO kernel:pci 0000:00:17.6: PME# supported from D0 D3hot D3cold -05:51:18,520 INFO kernel:pci 0000:00:17.6: PME# disabled -05:51:18,520 INFO kernel:pci 0000:00:17.7: PME# supported from D0 D3hot D3cold -05:51:18,520 INFO kernel:pci 0000:00:17.7: PME# disabled -05:51:18,520 INFO kernel:pci 0000:00:18.0: PME# supported from D0 D3hot D3cold -05:51:18,520 INFO kernel:pci 0000:00:18.0: PME# disabled -05:51:18,520 INFO kernel:pci 0000:00:18.1: PME# supported from D0 D3hot D3cold -05:51:18,520 INFO kernel:pci 0000:00:18.1: PME# disabled -05:51:18,520 INFO kernel:pci 0000:00:18.2: PME# supported from D0 D3hot D3cold -05:51:18,520 INFO kernel:pci 0000:00:18.2: PME# disabled -05:51:18,520 INFO kernel:pci 0000:00:18.3: PME# supported from D0 D3hot D3cold -05:51:18,520 INFO kernel:pci 0000:00:18.3: PME# disabled -05:51:18,520 INFO kernel:pci 0000:00:18.4: PME# supported from D0 D3hot D3cold -05:51:18,520 INFO kernel:pci 0000:00:18.4: PME# disabled -05:51:18,520 INFO kernel:pci 0000:00:18.5: PME# supported from D0 D3hot D3cold -05:51:18,520 INFO kernel:pci 0000:00:18.5: PME# disabled -05:51:18,520 INFO kernel:pci 0000:00:18.6: PME# supported from D0 D3hot D3cold -05:51:18,520 INFO kernel:pci 0000:00:18.6: PME# disabled -05:51:18,520 INFO kernel:pci 0000:00:18.7: PME# supported from D0 D3hot D3cold -05:51:18,520 INFO kernel:pci 0000:00:18.7: PME# disabled -05:51:18,520 INFO kernel:pci 0000:00:01.0: PCI bridge to [bus 01-01] -05:51:18,520 DEBUG kernel:pci 0000:00:01.0: bridge window [io 0xf000-0x0000] (disabled) -05:51:18,520 DEBUG kernel:pci 0000:00:01.0: bridge window [mem 0xfff00000-0x000fffff] (disabled) -05:51:18,520 DEBUG kernel:pci 0000:00:01.0: bridge window [mem 0xfff00000-0x000fffff pref] (disabled) -05:51:18,520 DEBUG kernel:pci 0000:02:00.0: reg 10: [mem 0xd1020000-0xd103ffff 64bit] -05:51:18,520 DEBUG kernel:pci 0000:02:00.0: reg 18: [mem 0xd1000000-0xd100ffff 64bit] -05:51:18,520 DEBUG kernel:pci 0000:02:00.0: reg 20: [io 0x2000-0x203f] -05:51:18,520 DEBUG kernel:pci 0000:02:00.0: reg 30: [mem 0x00000000-0x0000ffff pref] -05:51:18,520 INFO kernel:pci 0000:02:00.0: PME# supported from D0 D3hot D3cold -05:51:18,520 INFO kernel:pci 0000:02:00.0: PME# disabled -05:51:18,520 DEBUG kernel:pci 0000:02:01.0: reg 10: [mem 0xd1040000-0xd105ffff 64bit] -05:51:18,520 DEBUG kernel:pci 0000:02:01.0: reg 18: [mem 0xd1010000-0xd101ffff 64bit] -05:51:18,520 DEBUG kernel:pci 0000:02:01.0: reg 20: [io 0x2040-0x207f] -05:51:18,520 DEBUG kernel:pci 0000:02:01.0: reg 30: [mem 0x00000000-0x0000ffff pref] -05:51:18,520 INFO kernel:pci 0000:02:01.0: PME# supported from D0 D3hot D3cold -05:51:18,520 INFO kernel:pci 0000:02:01.0: PME# disabled -05:51:18,520 DEBUG kernel:pci 0000:02:02.0: reg 10: [mem 0xd1080000-0xd109ffff 64bit] -05:51:18,520 DEBUG kernel:pci 0000:02:02.0: reg 18: [mem 0xd1060000-0xd106ffff 64bit] -05:51:18,520 DEBUG kernel:pci 0000:02:02.0: reg 20: [io 0x2080-0x20bf] -05:51:18,520 DEBUG kernel:pci 0000:02:02.0: reg 30: [mem 0x00000000-0x0000ffff pref] -05:51:18,520 INFO kernel:pci 0000:02:02.0: PME# supported from D0 D3hot D3cold -05:51:18,520 INFO kernel:pci 0000:02:02.0: PME# disabled -05:51:18,520 DEBUG kernel:pci 0000:02:03.0: reg 10: [mem 0xd10a0000-0xd10bffff 64bit] -05:51:18,520 DEBUG kernel:pci 0000:02:03.0: reg 18: [mem 0xd1070000-0xd107ffff 64bit] -05:51:18,520 DEBUG kernel:pci 0000:02:03.0: reg 20: [io 0x20c0-0x20ff] -05:51:18,520 DEBUG kernel:pci 0000:02:03.0: reg 30: [mem 0x00000000-0x0000ffff pref] -05:51:18,520 INFO kernel:pci 0000:02:03.0: PME# supported from D0 D3hot D3cold -05:51:18,520 INFO kernel:pci 0000:02:03.0: PME# disabled -05:51:18,520 INFO kernel:pci 0000:00:11.0: PCI bridge to [bus 02-02] (subtractive decode) -05:51:18,520 DEBUG kernel:pci 0000:00:11.0: bridge window [io 0x2000-0x3fff] -05:51:18,520 DEBUG kernel:pci 0000:00:11.0: bridge window [mem 0xd1000000-0xd23fffff] -05:51:18,520 DEBUG kernel:pci 0000:00:11.0: bridge window [mem 0xdc400000-0xdc9fffff 64bit pref] -05:51:18,520 DEBUG kernel:pci 0000:00:11.0: bridge window [mem 0x000a0000-0x000bffff] (subtractive decode) -05:51:18,520 DEBUG kernel:pci 0000:00:11.0: bridge window [mem 0x000d0000-0x000d3fff] (subtractive decode) -05:51:18,520 DEBUG kernel:pci 0000:00:11.0: bridge window [mem 0x000d4000-0x000d7fff] (subtractive decode) -05:51:18,520 DEBUG kernel:pci 0000:00:11.0: bridge window [mem 0x000d8000-0x000dbfff] (subtractive decode) -05:51:18,520 DEBUG kernel:pci 0000:00:11.0: bridge window [mem 0x80000000-0xfebfffff] (subtractive decode) -05:51:18,520 DEBUG kernel:pci 0000:00:11.0: bridge window [io 0x0000-0x0cf7] (subtractive decode) -05:51:18,520 DEBUG kernel:pci 0000:00:11.0: bridge window [io 0x0d00-0xfeff] (subtractive decode) -05:51:18,520 INFO kernel:pci 0000:00:15.0: PCI bridge to [bus 03-03] -05:51:18,520 DEBUG kernel:pci 0000:00:15.0: bridge window [io 0x4000-0x4fff] -05:51:18,520 DEBUG kernel:pci 0000:00:15.0: bridge window [mem 0xd2400000-0xd24fffff] -05:51:18,520 DEBUG kernel:pci 0000:00:15.0: bridge window [mem 0xd4400000-0xd44fffff 64bit pref] -05:51:18,520 INFO kernel:pci 0000:00:15.1: PCI bridge to [bus 04-04] -05:51:18,520 DEBUG kernel:pci 0000:00:15.1: bridge window [io 0x8000-0x8fff] -05:51:18,520 DEBUG kernel:pci 0000:00:15.1: bridge window [mem 0xd2800000-0xd28fffff] -05:51:18,520 DEBUG kernel:pci 0000:00:15.1: bridge window [mem 0xd4800000-0xd48fffff 64bit pref] -05:51:18,520 INFO kernel:pci 0000:00:15.2: PCI bridge to [bus 05-05] -05:51:18,520 DEBUG kernel:pci 0000:00:15.2: bridge window [io 0xc000-0xcfff] -05:51:18,520 DEBUG kernel:pci 0000:00:15.2: bridge window [mem 0xd2c00000-0xd2cfffff] -05:51:18,520 DEBUG kernel:pci 0000:00:15.2: bridge window [mem 0xdcb00000-0xdcbfffff 64bit pref] -05:51:18,520 INFO kernel:pci 0000:00:15.3: PCI bridge to [bus 06-06] -05:51:18,520 DEBUG kernel:pci 0000:00:15.3: bridge window [io 0xf000-0x0000] (disabled) -05:51:18,520 DEBUG kernel:pci 0000:00:15.3: bridge window [mem 0xd3000000-0xd30fffff] -05:51:18,520 DEBUG kernel:pci 0000:00:15.3: bridge window [mem 0xdcd00000-0xdcdfffff 64bit pref] -05:51:18,520 INFO kernel:pci 0000:00:15.4: PCI bridge to [bus 07-07] -05:51:18,520 DEBUG kernel:pci 0000:00:15.4: bridge window [io 0xf000-0x0000] (disabled) -05:51:18,520 DEBUG kernel:pci 0000:00:15.4: bridge window [mem 0xd3400000-0xd34fffff] -05:51:18,520 DEBUG kernel:pci 0000:00:15.4: bridge window [mem 0xdcf00000-0xdcffffff 64bit pref] -05:51:18,520 INFO kernel:pci 0000:00:15.5: PCI bridge to [bus 08-08] -05:51:18,520 DEBUG kernel:pci 0000:00:15.5: bridge window [io 0xf000-0x0000] (disabled) -05:51:18,520 DEBUG kernel:pci 0000:00:15.5: bridge window [mem 0xd3800000-0xd38fffff] -05:51:18,520 DEBUG kernel:pci 0000:00:15.5: bridge window [mem 0xdd100000-0xdd1fffff 64bit pref] -05:51:18,520 INFO kernel:pci 0000:00:15.6: PCI bridge to [bus 09-09] -05:51:18,520 DEBUG kernel:pci 0000:00:15.6: bridge window [io 0xf000-0x0000] (disabled) -05:51:18,520 DEBUG kernel:pci 0000:00:15.6: bridge window [mem 0xd3c00000-0xd3cfffff] -05:51:18,520 DEBUG kernel:pci 0000:00:15.6: bridge window [mem 0xdd300000-0xdd3fffff 64bit pref] -05:51:18,520 INFO kernel:pci 0000:00:15.7: PCI bridge to [bus 0a-0a] -05:51:18,520 DEBUG kernel:pci 0000:00:15.7: bridge window [io 0xf000-0x0000] (disabled) -05:51:18,520 DEBUG kernel:pci 0000:00:15.7: bridge window [mem 0xd4000000-0xd40fffff] -05:51:18,520 DEBUG kernel:pci 0000:00:15.7: bridge window [mem 0xdd500000-0xdd5fffff 64bit pref] -05:51:18,520 INFO kernel:pci 0000:00:16.0: PCI bridge to [bus 0b-0b] -05:51:18,520 DEBUG kernel:pci 0000:00:16.0: bridge window [io 0x5000-0x5fff] -05:51:18,520 DEBUG kernel:pci 0000:00:16.0: bridge window [mem 0xd2500000-0xd25fffff] -05:51:18,520 DEBUG kernel:pci 0000:00:16.0: bridge window [mem 0xd4500000-0xd45fffff 64bit pref] -05:51:18,521 INFO kernel:pci 0000:00:16.1: PCI bridge to [bus 0c-0c] -05:51:18,521 DEBUG kernel:pci 0000:00:16.1: bridge window [io 0x9000-0x9fff] -05:51:18,521 DEBUG kernel:pci 0000:00:16.1: bridge window [mem 0xd2900000-0xd29fffff] -05:51:18,521 DEBUG kernel:pci 0000:00:16.1: bridge window [mem 0xd4900000-0xd49fffff 64bit pref] -05:51:18,521 INFO kernel:pci 0000:00:16.2: PCI bridge to [bus 0d-0d] -05:51:18,521 DEBUG kernel:pci 0000:00:16.2: bridge window [io 0xd000-0xdfff] -05:51:18,521 DEBUG kernel:pci 0000:00:16.2: bridge window [mem 0xd2d00000-0xd2dfffff] -05:51:18,521 DEBUG kernel:pci 0000:00:16.2: bridge window [mem 0xd4b00000-0xd4bfffff 64bit pref] -05:51:18,521 INFO kernel:pci 0000:00:16.3: PCI bridge to [bus 0e-0e] -05:51:18,521 DEBUG kernel:pci 0000:00:16.3: bridge window [io 0xf000-0x0000] (disabled) -05:51:18,521 DEBUG kernel:pci 0000:00:16.3: bridge window [mem 0xd3100000-0xd31fffff] -05:51:18,521 DEBUG kernel:pci 0000:00:16.3: bridge window [mem 0xd4d00000-0xd4dfffff 64bit pref] -05:51:18,521 INFO kernel:pci 0000:00:16.4: PCI bridge to [bus 0f-0f] -05:51:18,521 DEBUG kernel:pci 0000:00:16.4: bridge window [io 0xf000-0x0000] (disabled) -05:51:18,521 DEBUG kernel:pci 0000:00:16.4: bridge window [mem 0xd3500000-0xd35fffff] -05:51:18,521 DEBUG kernel:pci 0000:00:16.4: bridge window [mem 0xd4f00000-0xd4ffffff 64bit pref] -05:51:18,521 INFO kernel:pci 0000:00:16.5: PCI bridge to [bus 10-10] -05:51:18,521 DEBUG kernel:pci 0000:00:16.5: bridge window [io 0xf000-0x0000] (disabled) -05:51:18,521 DEBUG kernel:pci 0000:00:16.5: bridge window [mem 0xd3900000-0xd39fffff] -05:51:18,521 DEBUG kernel:pci 0000:00:16.5: bridge window [mem 0xd5100000-0xd51fffff 64bit pref] -05:51:18,521 INFO kernel:pci 0000:00:16.6: PCI bridge to [bus 11-11] -05:51:18,521 DEBUG kernel:pci 0000:00:16.6: bridge window [io 0xf000-0x0000] (disabled) -05:51:18,521 DEBUG kernel:pci 0000:00:16.6: bridge window [mem 0xd3d00000-0xd3dfffff] -05:51:18,521 DEBUG kernel:pci 0000:00:16.6: bridge window [mem 0xd5300000-0xd53fffff 64bit pref] -05:51:18,521 INFO kernel:pci 0000:00:16.7: PCI bridge to [bus 12-12] -05:51:18,521 DEBUG kernel:pci 0000:00:16.7: bridge window [io 0xf000-0x0000] (disabled) -05:51:18,521 DEBUG kernel:pci 0000:00:16.7: bridge window [mem 0xd4100000-0xd41fffff] -05:51:18,521 DEBUG kernel:pci 0000:00:16.7: bridge window [mem 0xd5500000-0xd55fffff 64bit pref] -05:51:18,521 INFO kernel:pci 0000:00:17.0: PCI bridge to [bus 13-13] -05:51:18,521 DEBUG kernel:pci 0000:00:17.0: bridge window [io 0x6000-0x6fff] -05:51:18,521 DEBUG kernel:pci 0000:00:17.0: bridge window [mem 0xd2600000-0xd26fffff] -05:51:18,521 DEBUG kernel:pci 0000:00:17.0: bridge window [mem 0xd4600000-0xd46fffff 64bit pref] -05:51:18,521 INFO kernel:pci 0000:00:17.1: PCI bridge to [bus 14-14] -05:51:18,521 DEBUG kernel:pci 0000:00:17.1: bridge window [io 0xa000-0xafff] -05:51:18,521 DEBUG kernel:pci 0000:00:17.1: bridge window [mem 0xd2a00000-0xd2afffff] -05:51:18,521 DEBUG kernel:pci 0000:00:17.1: bridge window [mem 0xdca00000-0xdcafffff 64bit pref] -05:51:18,521 INFO kernel:pci 0000:00:17.2: PCI bridge to [bus 15-15] -05:51:18,521 DEBUG kernel:pci 0000:00:17.2: bridge window [io 0xe000-0xefff] -05:51:18,521 DEBUG kernel:pci 0000:00:17.2: bridge window [mem 0xd2e00000-0xd2efffff] -05:51:18,521 DEBUG kernel:pci 0000:00:17.2: bridge window [mem 0xdcc00000-0xdccfffff 64bit pref] -05:51:18,521 INFO kernel:pci 0000:00:17.3: PCI bridge to [bus 16-16] -05:51:18,521 DEBUG kernel:pci 0000:00:17.3: bridge window [io 0xf000-0x0000] (disabled) -05:51:18,521 DEBUG kernel:pci 0000:00:17.3: bridge window [mem 0xd3200000-0xd32fffff] -05:51:18,521 DEBUG kernel:pci 0000:00:17.3: bridge window [mem 0xdce00000-0xdcefffff 64bit pref] -05:51:18,521 INFO kernel:pci 0000:00:17.4: PCI bridge to [bus 17-17] -05:51:18,521 DEBUG kernel:pci 0000:00:17.4: bridge window [io 0xf000-0x0000] (disabled) -05:51:18,521 DEBUG kernel:pci 0000:00:17.4: bridge window [mem 0xd3600000-0xd36fffff] -05:51:18,521 DEBUG kernel:pci 0000:00:17.4: bridge window [mem 0xdd000000-0xdd0fffff 64bit pref] -05:51:18,521 INFO kernel:pci 0000:00:17.5: PCI bridge to [bus 18-18] -05:51:18,521 DEBUG kernel:pci 0000:00:17.5: bridge window [io 0xf000-0x0000] (disabled) -05:51:18,521 DEBUG kernel:pci 0000:00:17.5: bridge window [mem 0xd3a00000-0xd3afffff] -05:51:18,521 DEBUG kernel:pci 0000:00:17.5: bridge window [mem 0xdd200000-0xdd2fffff 64bit pref] -05:51:18,521 INFO kernel:pci 0000:00:17.6: PCI bridge to [bus 19-19] -05:51:18,521 DEBUG kernel:pci 0000:00:17.6: bridge window [io 0xf000-0x0000] (disabled) -05:51:18,521 DEBUG kernel:pci 0000:00:17.6: bridge window [mem 0xd3e00000-0xd3efffff] -05:51:18,521 DEBUG kernel:pci 0000:00:17.6: bridge window [mem 0xdd400000-0xdd4fffff 64bit pref] -05:51:18,521 INFO kernel:pci 0000:00:17.7: PCI bridge to [bus 1a-1a] -05:51:18,521 DEBUG kernel:pci 0000:00:17.7: bridge window [io 0xf000-0x0000] (disabled) -05:51:18,521 DEBUG kernel:pci 0000:00:17.7: bridge window [mem 0xd4200000-0xd42fffff] -05:51:18,521 DEBUG kernel:pci 0000:00:17.7: bridge window [mem 0xdd600000-0xdd6fffff 64bit pref] -05:51:18,521 INFO kernel:pci 0000:00:18.0: PCI bridge to [bus 1b-1b] -05:51:18,521 DEBUG kernel:pci 0000:00:18.0: bridge window [io 0x7000-0x7fff] -05:51:18,521 DEBUG kernel:pci 0000:00:18.0: bridge window [mem 0xd2700000-0xd27fffff] -05:51:18,521 DEBUG kernel:pci 0000:00:18.0: bridge window [mem 0xd4700000-0xd47fffff 64bit pref] -05:51:18,521 INFO kernel:pci 0000:00:18.1: PCI bridge to [bus 1c-1c] -05:51:18,521 DEBUG kernel:pci 0000:00:18.1: bridge window [io 0xb000-0xbfff] -05:51:18,521 DEBUG kernel:pci 0000:00:18.1: bridge window [mem 0xd2b00000-0xd2bfffff] -05:51:18,521 DEBUG kernel:pci 0000:00:18.1: bridge window [mem 0xd4a00000-0xd4afffff 64bit pref] -05:51:18,521 INFO kernel:pci 0000:00:18.2: PCI bridge to [bus 1d-1d] -05:51:18,521 DEBUG kernel:pci 0000:00:18.2: bridge window [io 0xf000-0xffff] -05:51:18,521 DEBUG kernel:pci 0000:00:18.2: bridge window [mem 0xd2f00000-0xd2ffffff] -05:51:18,521 DEBUG kernel:pci 0000:00:18.2: bridge window [mem 0xd4c00000-0xd4cfffff 64bit pref] -05:51:18,521 INFO kernel:pci 0000:00:18.3: PCI bridge to [bus 1e-1e] -05:51:18,521 DEBUG kernel:pci 0000:00:18.3: bridge window [io 0xf000-0x0000] (disabled) -05:51:18,521 DEBUG kernel:pci 0000:00:18.3: bridge window [mem 0xd3300000-0xd33fffff] -05:51:18,521 DEBUG kernel:pci 0000:00:18.3: bridge window [mem 0xd4e00000-0xd4efffff 64bit pref] -05:51:18,521 INFO kernel:pci 0000:00:18.4: PCI bridge to [bus 1f-1f] -05:51:18,521 DEBUG kernel:pci 0000:00:18.4: bridge window [io 0xf000-0x0000] (disabled) -05:51:18,521 DEBUG kernel:pci 0000:00:18.4: bridge window [mem 0xd3700000-0xd37fffff] -05:51:18,521 DEBUG kernel:pci 0000:00:18.4: bridge window [mem 0xd5000000-0xd50fffff 64bit pref] -05:51:18,521 INFO kernel:pci 0000:00:18.5: PCI bridge to [bus 20-20] -05:51:18,521 DEBUG kernel:pci 0000:00:18.5: bridge window [io 0xf000-0x0000] (disabled) -05:51:18,521 DEBUG kernel:pci 0000:00:18.5: bridge window [mem 0xd3b00000-0xd3bfffff] -05:51:18,521 DEBUG kernel:pci 0000:00:18.5: bridge window [mem 0xd5200000-0xd52fffff 64bit pref] -05:51:18,521 INFO kernel:pci 0000:00:18.6: PCI bridge to [bus 21-21] -05:51:18,521 DEBUG kernel:pci 0000:00:18.6: bridge window [io 0xf000-0x0000] (disabled) -05:51:18,521 DEBUG kernel:pci 0000:00:18.6: bridge window [mem 0xd3f00000-0xd3ffffff] -05:51:18,521 DEBUG kernel:pci 0000:00:18.6: bridge window [mem 0xd5400000-0xd54fffff 64bit pref] -05:51:18,521 INFO kernel:pci 0000:00:18.7: PCI bridge to [bus 22-22] -05:51:18,521 DEBUG kernel:pci 0000:00:18.7: bridge window [io 0xf000-0x0000] (disabled) -05:51:18,521 DEBUG kernel:pci 0000:00:18.7: bridge window [mem 0xd4300000-0xd43fffff] -05:51:18,521 DEBUG kernel:pci 0000:00:18.7: bridge window [mem 0xd5600000-0xd56fffff 64bit pref] -05:51:18,521 DEBUG kernel:ACPI: PCI Interrupt Routing Table [\_SB_.PCI0._PRT] -05:51:18,521 INFO kernel: pci0000:00: Requesting ACPI _OSC control (0x1d) -05:51:18,521 INFO kernel: pci0000:00: ACPI _OSC control (0x15) granted -05:51:18,521 INFO kernel:ACPI: PCI Interrupt Link [LNKA] (IRQs 3 4 5 6 7 *9 10 11 14 15) -05:51:18,521 INFO kernel:ACPI: PCI Interrupt Link [LNKB] (IRQs 3 4 5 6 7 9 10 *11 14 15) -05:51:18,521 INFO kernel:ACPI: PCI Interrupt Link [LNKC] (IRQs 3 4 5 6 7 9 *10 11 14 15) -05:51:18,521 INFO kernel:ACPI: PCI Interrupt Link [LNKD] (IRQs 3 4 *5 6 7 9 10 11 14 15) -05:51:18,521 INFO kernel:vgaarb: device added: PCI:0000:00:0f.0,decodes=io+mem,owns=io+mem,locks=none -05:51:18,521 INFO kernel:vgaarb: loaded -05:51:18,521 INFO kernel:vgaarb: bridge control possible 0000:00:0f.0 -05:51:18,521 NOTICE kernel:SCSI subsystem initialized -05:51:18,521 DEBUG kernel:libata version 3.00 loaded. -05:51:18,521 INFO kernel:usbcore: registered new interface driver usbfs -05:51:18,521 INFO kernel:usbcore: registered new interface driver hub -05:51:18,521 INFO kernel:usbcore: registered new device driver usb -05:51:18,521 INFO kernel:PCI: Using ACPI for IRQ routing -05:51:18,521 DEBUG kernel:PCI: old code would have set cacheline size to 32 bytes, but clflush_size = 64 -05:51:18,521 DEBUG kernel:PCI: pci_cache_line_size set to 64 bytes -05:51:18,521 INFO kernel:pci 0000:00:18.2: no compatible bridge window for [io 0xf000-0xffff] -05:51:18,521 INFO kernel:pci 0000:00:18.2: can't reserve window [io 0xf000-0xffff] -05:51:18,521 NOTICE kernel:lo: Dropping TSO features since no CSUM feature. -05:51:18,521 INFO kernel:NetLabel: Initializing -05:51:18,521 INFO kernel:NetLabel: domain hash size = 128 -05:51:18,521 INFO kernel:NetLabel: protocols = UNLABELED CIPSOv4 -05:51:18,521 INFO kernel:NetLabel: unlabeled traffic allowed by default -05:51:18,521 INFO kernel:HPET: 16 timers in total, 0 timers will be used for per-cpu timer -05:51:18,521 INFO kernel:hpet0: at MMIO 0xfed00000, IRQs 2, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 -05:51:18,521 INFO kernel:hpet0: 16 comparators, 64-bit 14.318180 MHz counter -05:51:18,521 INFO kernel:Switching to clocksource hpet -05:51:18,521 INFO kernel:pnp: PnP ACPI init -05:51:18,521 INFO kernel:ACPI: bus type pnp registered -05:51:18,521 DEBUG kernel:pnp 00:00: [io 0x0cf8-0x0cff] -05:51:18,521 DEBUG kernel:pnp 00:00: Plug and Play ACPI device, IDs PNP0a03 PNP0a08 (active) -05:51:18,521 DEBUG kernel:pnp 00:01: [io 0x0010-0x001f] -05:51:18,521 DEBUG kernel:pnp 00:01: [io 0x0024-0x0025] -05:51:18,521 DEBUG kernel:pnp 00:01: [io 0x0028-0x0029] -05:51:18,521 DEBUG kernel:pnp 00:01: [io 0x002c-0x002d] -05:51:18,521 DEBUG kernel:pnp 00:01: [io 0x002e-0x002f] -05:51:18,521 DEBUG kernel:pnp 00:01: [io 0x0030-0x0031] -05:51:18,521 DEBUG kernel:pnp 00:01: [io 0x0034-0x0035] -05:51:18,521 DEBUG kernel:pnp 00:01: [io 0x0038-0x0039] -05:51:18,521 DEBUG kernel:pnp 00:01: [io 0x003c-0x003d] -05:51:18,521 DEBUG kernel:pnp 00:01: [io 0x0050-0x0053] -05:51:18,521 DEBUG kernel:pnp 00:01: [io 0x0072-0x0077] -05:51:18,521 DEBUG kernel:pnp 00:01: [io 0x0080] -05:51:18,521 DEBUG kernel:pnp 00:01: [io 0x0090-0x009f] -05:51:18,521 DEBUG kernel:pnp 00:01: [io 0x00a4-0x00a5] -05:51:18,521 DEBUG kernel:pnp 00:01: [io 0x00a8-0x00a9] -05:51:18,521 DEBUG kernel:pnp 00:01: [io 0x00ac-0x00ad] -05:51:18,521 DEBUG kernel:pnp 00:01: [io 0x00b0-0x00b5] -05:51:18,521 DEBUG kernel:pnp 00:01: [io 0x00b8-0x00b9] -05:51:18,521 DEBUG kernel:pnp 00:01: [io 0x00bc-0x00bd] -05:51:18,521 DEBUG kernel:pnp 00:01: [io 0x1000-0x103f] -05:51:18,521 DEBUG kernel:pnp 00:01: [io 0x1040-0x104f] -05:51:18,521 DEBUG kernel:pnp 00:01: [io 0x0cf0-0x0cf1] -05:51:18,521 DEBUG kernel:pnp 00:01: Plug and Play ACPI device, IDs PNP0c02 (active) -05:51:18,521 DEBUG kernel:pnp 00:02: [io 0x0000-0x000f] -05:51:18,521 DEBUG kernel:pnp 00:02: [io 0x0081-0x008f] -05:51:18,521 DEBUG kernel:pnp 00:02: [io 0x00c0-0x00df] -05:51:18,521 DEBUG kernel:pnp 00:02: [dma 4] -05:51:18,521 DEBUG kernel:pnp 00:02: Plug and Play ACPI device, IDs PNP0200 (active) -05:51:18,521 DEBUG kernel:pnp 00:03: [io 0x0020-0x0021] -05:51:18,521 DEBUG kernel:pnp 00:03: [io 0x00a0-0x00a1] -05:51:18,521 DEBUG kernel:pnp 00:03: [io 0x04d0-0x04d1] -05:51:18,521 DEBUG kernel:pnp 00:03: [irq 2 disabled] -05:51:18,521 DEBUG kernel:pnp 00:03: Plug and Play ACPI device, IDs PNP0001 (active) -05:51:18,521 DEBUG kernel:pnp 00:04: [io 0x0070-0x0071] -05:51:18,521 DEBUG kernel:pnp 00:04: [irq 8] -05:51:18,521 DEBUG kernel:pnp 00:04: Plug and Play ACPI device, IDs PNP0b00 (active) -05:51:18,521 DEBUG kernel:pnp 00:05: [io 0x0061] -05:51:18,521 DEBUG kernel:pnp 00:05: Plug and Play ACPI device, IDs PNP0800 (active) -05:51:18,521 DEBUG kernel:pnp 00:06: [io 0x0060] -05:51:18,521 DEBUG kernel:pnp 00:06: [io 0x0064] -05:51:18,521 DEBUG kernel:pnp 00:06: [irq 1] -05:51:18,521 DEBUG kernel:pnp 00:06: Plug and Play ACPI device, IDs PNP0303 (active) -05:51:18,521 DEBUG kernel:pnp 00:07: [irq 12] -05:51:18,521 DEBUG kernel:pnp 00:07: Plug and Play ACPI device, IDs PNP0f13 (active) -05:51:18,521 DEBUG kernel:pnp 00:08: [mem 0xfed00000-0xfed003ff] -05:51:18,521 DEBUG kernel:pnp 00:08: Plug and Play ACPI device, IDs PNP0103 PNP0c01 (active) -05:51:18,521 DEBUG kernel:pnp 00:09: [io 0x0378-0x037f] -05:51:18,521 DEBUG kernel:pnp 00:09: [irq 7] -05:51:18,521 DEBUG kernel:pnp 00:09: Plug and Play ACPI device, IDs PNP0400 (active) -05:51:18,521 DEBUG kernel:pnp 00:0a: [io 0x03f8-0x03ff] -05:51:18,521 DEBUG kernel:pnp 00:0a: [irq 4] -05:51:18,521 DEBUG kernel:pnp 00:0a: Plug and Play ACPI device, IDs PNP0501 (active) -05:51:18,521 DEBUG kernel:pnp 00:0b: [io 0x02f8-0x02ff] -05:51:18,521 DEBUG kernel:pnp 00:0b: [irq 3] -05:51:18,521 DEBUG kernel:pnp 00:0b: Plug and Play ACPI device, IDs PNP0501 (active) -05:51:18,521 DEBUG kernel:pnp 00:0c: [io 0x03f0-0x03f5] -05:51:18,521 DEBUG kernel:pnp 00:0c: [io 0x03f7] -05:51:18,521 DEBUG kernel:pnp 00:0c: [irq 6] -05:51:18,521 DEBUG kernel:pnp 00:0c: [dma 2] -05:51:18,521 DEBUG kernel:pnp 00:0c: Plug and Play ACPI device, IDs PNP0700 (active) -05:51:18,521 DEBUG kernel:pnp 00:0d: [mem 0xe0000000-0xefffffff] -05:51:18,521 DEBUG kernel:pnp 00:0d: [io 0x1060-0x107f] -05:51:18,521 DEBUG kernel:pnp 00:0d: [mem 0xd0200000-0xd03fffff] -05:51:18,521 DEBUG kernel:pnp 00:0d: Plug and Play ACPI device, IDs PNP0c02 (active) -05:51:18,521 INFO kernel:pnp: PnP ACPI: found 14 devices -05:51:18,521 INFO kernel:ACPI: ACPI bus type pnp unregistered -05:51:18,521 INFO kernel:system 00:01: [io 0x1000-0x103f] has been reserved -05:51:18,521 INFO kernel:system 00:01: [io 0x1040-0x104f] has been reserved -05:51:18,521 INFO kernel:system 00:01: [io 0x0cf0-0x0cf1] has been reserved -05:51:18,521 INFO kernel:system 00:08: [mem 0xfed00000-0xfed003ff] has been reserved -05:51:18,521 INFO kernel:system 00:0d: [io 0x1060-0x107f] has been reserved -05:51:18,521 INFO kernel:system 00:0d: [mem 0xe0000000-0xefffffff] has been reserved -05:51:18,521 INFO kernel:system 00:0d: [mem 0xd0200000-0xd03fffff] has been reserved -05:51:18,521 DEBUG kernel:PCI: max bus depth: 1 pci_try_num: 2 -05:51:18,521 INFO kernel:pci 0000:00:0f.0: BAR 6: assigned [mem 0x80000000-0x80007fff pref] -05:51:18,521 INFO kernel:pci 0000:00:10.0: BAR 6: assigned [mem 0x80008000-0x8000bfff pref] -05:51:18,521 INFO kernel:pci 0000:00:18.2: BAR 13: can't assign io (size 0x1000) -05:51:18,521 INFO kernel:pci 0000:00:18.7: BAR 13: can't assign io (size 0x1000) -05:51:18,521 INFO kernel:pci 0000:00:18.6: BAR 13: can't assign io (size 0x1000) -05:51:18,521 INFO kernel:pci 0000:00:18.5: BAR 13: can't assign io (size 0x1000) -05:51:18,521 INFO kernel:pci 0000:00:18.4: BAR 13: can't assign io (size 0x1000) -05:51:18,521 INFO kernel:pci 0000:00:18.3: BAR 13: can't assign io (size 0x1000) -05:51:18,521 INFO kernel:pci 0000:00:17.7: BAR 13: can't assign io (size 0x1000) -05:51:18,521 INFO kernel:pci 0000:00:17.6: BAR 13: can't assign io (size 0x1000) -05:51:18,521 INFO kernel:pci 0000:00:17.5: BAR 13: can't assign io (size 0x1000) -05:51:18,521 INFO kernel:pci 0000:00:17.4: BAR 13: can't assign io (size 0x1000) -05:51:18,521 INFO kernel:pci 0000:00:17.3: BAR 13: can't assign io (size 0x1000) -05:51:18,521 INFO kernel:pci 0000:00:16.7: BAR 13: can't assign io (size 0x1000) -05:51:18,521 INFO kernel:pci 0000:00:16.6: BAR 13: can't assign io (size 0x1000) -05:51:18,521 INFO kernel:pci 0000:00:16.5: BAR 13: can't assign io (size 0x1000) -05:51:18,521 INFO kernel:pci 0000:00:16.4: BAR 13: can't assign io (size 0x1000) -05:51:18,521 INFO kernel:pci 0000:00:16.3: BAR 13: can't assign io (size 0x1000) -05:51:18,521 INFO kernel:pci 0000:00:15.7: BAR 13: can't assign io (size 0x1000) -05:51:18,521 INFO kernel:pci 0000:00:15.6: BAR 13: can't assign io (size 0x1000) -05:51:18,521 INFO kernel:pci 0000:00:15.5: BAR 13: can't assign io (size 0x1000) -05:51:18,521 INFO kernel:pci 0000:00:15.4: BAR 13: can't assign io (size 0x1000) -05:51:18,521 INFO kernel:pci 0000:00:15.3: BAR 13: can't assign io (size 0x1000) -05:51:18,521 INFO kernel:pci 0000:00:01.0: PCI bridge to [bus 01-01] -05:51:18,521 INFO kernel:pci 0000:00:01.0: PCI bridge to [bus 01-01] -05:51:18,521 INFO kernel:pci 0000:00:01.0: bridge window [io disabled] -05:51:18,521 INFO kernel:pci 0000:00:01.0: bridge window [mem disabled] -05:51:18,521 INFO kernel:pci 0000:00:01.0: bridge window [mem pref disabled] -05:51:18,521 INFO kernel:pci 0000:02:00.0: BAR 6: assigned [mem 0xdc400000-0xdc40ffff pref] -05:51:18,521 INFO kernel:pci 0000:02:01.0: BAR 6: assigned [mem 0xdc410000-0xdc41ffff pref] -05:51:18,521 INFO kernel:pci 0000:02:02.0: BAR 6: assigned [mem 0xdc420000-0xdc42ffff pref] -05:51:18,521 INFO kernel:pci 0000:02:03.0: BAR 6: assigned [mem 0xdc430000-0xdc43ffff pref] -05:51:18,521 INFO kernel:pci 0000:00:11.0: PCI bridge to [bus 02-02] -05:51:18,521 INFO kernel:pci 0000:00:11.0: PCI bridge to [bus 02-02] -05:51:18,521 INFO kernel:pci 0000:00:11.0: bridge window [io 0x2000-0x3fff] -05:51:18,521 INFO kernel:pci 0000:00:11.0: bridge window [mem 0xd1000000-0xd23fffff] -05:51:18,521 INFO kernel:pci 0000:00:11.0: bridge window [mem 0xdc400000-0xdc9fffff 64bit pref] -05:51:18,521 INFO kernel:pci 0000:00:15.0: PCI bridge to [bus 03-03] -05:51:18,521 INFO kernel:pci 0000:00:15.0: PCI bridge to [bus 03-03] -05:51:18,521 INFO kernel:pci 0000:00:15.0: bridge window [io 0x4000-0x4fff] -05:51:18,521 INFO kernel:pci 0000:00:15.0: bridge window [mem 0xd2400000-0xd24fffff] -05:51:18,521 INFO kernel:pci 0000:00:15.0: bridge window [mem 0xd4400000-0xd44fffff 64bit pref] -05:51:18,521 INFO kernel:pci 0000:00:15.1: PCI bridge to [bus 04-04] -05:51:18,521 INFO kernel:pci 0000:00:15.1: PCI bridge to [bus 04-04] -05:51:18,521 INFO kernel:pci 0000:00:15.1: bridge window [io 0x8000-0x8fff] -05:51:18,521 INFO kernel:pci 0000:00:15.1: bridge window [mem 0xd2800000-0xd28fffff] -05:51:18,521 INFO kernel:pci 0000:00:15.1: bridge window [mem 0xd4800000-0xd48fffff 64bit pref] -05:51:18,521 INFO kernel:pci 0000:00:15.2: PCI bridge to [bus 05-05] -05:51:18,521 INFO kernel:pci 0000:00:15.2: PCI bridge to [bus 05-05] -05:51:18,521 INFO kernel:pci 0000:00:15.2: bridge window [io 0xc000-0xcfff] -05:51:18,521 INFO kernel:pci 0000:00:15.2: bridge window [mem 0xd2c00000-0xd2cfffff] -05:51:18,521 INFO kernel:pci 0000:00:15.2: bridge window [mem 0xdcb00000-0xdcbfffff 64bit pref] -05:51:18,521 INFO kernel:pci 0000:00:15.3: PCI bridge to [bus 06-06] -05:51:18,521 INFO kernel:pci 0000:00:15.3: PCI bridge to [bus 06-06] -05:51:18,521 INFO kernel:pci 0000:00:15.3: bridge window [io disabled] -05:51:18,521 INFO kernel:pci 0000:00:15.3: bridge window [mem 0xd3000000-0xd30fffff] -05:51:18,521 INFO kernel:pci 0000:00:15.3: bridge window [mem 0xdcd00000-0xdcdfffff 64bit pref] -05:51:18,521 INFO kernel:pci 0000:00:15.4: PCI bridge to [bus 07-07] -05:51:18,521 INFO kernel:pci 0000:00:15.4: PCI bridge to [bus 07-07] -05:51:18,521 INFO kernel:pci 0000:00:15.4: bridge window [io disabled] -05:51:18,521 INFO kernel:pci 0000:00:15.4: bridge window [mem 0xd3400000-0xd34fffff] -05:51:18,521 INFO kernel:pci 0000:00:15.4: bridge window [mem 0xdcf00000-0xdcffffff 64bit pref] -05:51:18,521 INFO kernel:pci 0000:00:15.5: PCI bridge to [bus 08-08] -05:51:18,521 INFO kernel:pci 0000:00:15.5: PCI bridge to [bus 08-08] -05:51:18,521 INFO kernel:pci 0000:00:15.5: bridge window [io disabled] -05:51:18,521 INFO kernel:pci 0000:00:15.5: bridge window [mem 0xd3800000-0xd38fffff] -05:51:18,521 INFO kernel:pci 0000:00:15.5: bridge window [mem 0xdd100000-0xdd1fffff 64bit pref] -05:51:18,521 INFO kernel:pci 0000:00:15.6: PCI bridge to [bus 09-09] -05:51:18,521 INFO kernel:pci 0000:00:15.6: PCI bridge to [bus 09-09] -05:51:18,521 INFO kernel:pci 0000:00:15.6: bridge window [io disabled] -05:51:18,521 INFO kernel:pci 0000:00:15.6: bridge window [mem 0xd3c00000-0xd3cfffff] -05:51:18,521 INFO kernel:pci 0000:00:15.6: bridge window [mem 0xdd300000-0xdd3fffff 64bit pref] -05:51:18,521 INFO kernel:pci 0000:00:15.7: PCI bridge to [bus 0a-0a] -05:51:18,521 INFO kernel:pci 0000:00:15.7: PCI bridge to [bus 0a-0a] -05:51:18,521 INFO kernel:pci 0000:00:15.7: bridge window [io disabled] -05:51:18,521 INFO kernel:pci 0000:00:15.7: bridge window [mem 0xd4000000-0xd40fffff] -05:51:18,521 INFO kernel:pci 0000:00:15.7: bridge window [mem 0xdd500000-0xdd5fffff 64bit pref] -05:51:18,521 INFO kernel:pci 0000:00:16.0: PCI bridge to [bus 0b-0b] -05:51:18,521 INFO kernel:pci 0000:00:16.0: PCI bridge to [bus 0b-0b] -05:51:18,521 INFO kernel:pci 0000:00:16.0: bridge window [io 0x5000-0x5fff] -05:51:18,521 INFO kernel:pci 0000:00:16.0: bridge window [mem 0xd2500000-0xd25fffff] -05:51:18,521 INFO kernel:pci 0000:00:16.0: bridge window [mem 0xd4500000-0xd45fffff 64bit pref] -05:51:18,521 INFO kernel:pci 0000:00:16.1: PCI bridge to [bus 0c-0c] -05:51:18,521 INFO kernel:pci 0000:00:16.1: PCI bridge to [bus 0c-0c] -05:51:18,521 INFO kernel:pci 0000:00:16.1: bridge window [io 0x9000-0x9fff] -05:51:18,521 INFO kernel:pci 0000:00:16.1: bridge window [mem 0xd2900000-0xd29fffff] -05:51:18,521 INFO kernel:pci 0000:00:16.1: bridge window [mem 0xd4900000-0xd49fffff 64bit pref] -05:51:18,521 INFO kernel:pci 0000:00:16.2: PCI bridge to [bus 0d-0d] -05:51:18,521 INFO kernel:pci 0000:00:16.2: PCI bridge to [bus 0d-0d] -05:51:18,521 INFO kernel:pci 0000:00:16.2: bridge window [io 0xd000-0xdfff] -05:51:18,521 INFO kernel:pci 0000:00:16.2: bridge window [mem 0xd2d00000-0xd2dfffff] -05:51:18,521 INFO kernel:pci 0000:00:16.2: bridge window [mem 0xd4b00000-0xd4bfffff 64bit pref] -05:51:18,521 INFO kernel:pci 0000:00:16.3: PCI bridge to [bus 0e-0e] -05:51:18,521 INFO kernel:pci 0000:00:16.3: PCI bridge to [bus 0e-0e] -05:51:18,521 INFO kernel:pci 0000:00:16.3: bridge window [io disabled] -05:51:18,521 INFO kernel:pci 0000:00:16.3: bridge window [mem 0xd3100000-0xd31fffff] -05:51:18,521 INFO kernel:pci 0000:00:16.3: bridge window [mem 0xd4d00000-0xd4dfffff 64bit pref] -05:51:18,521 INFO kernel:pci 0000:00:16.4: PCI bridge to [bus 0f-0f] -05:51:18,521 INFO kernel:pci 0000:00:16.4: PCI bridge to [bus 0f-0f] -05:51:18,521 INFO kernel:pci 0000:00:16.4: bridge window [io disabled] -05:51:18,521 INFO kernel:pci 0000:00:16.4: bridge window [mem 0xd3500000-0xd35fffff] -05:51:18,521 INFO kernel:pci 0000:00:16.4: bridge window [mem 0xd4f00000-0xd4ffffff 64bit pref] -05:51:18,521 INFO kernel:pci 0000:00:16.5: PCI bridge to [bus 10-10] -05:51:18,521 INFO kernel:pci 0000:00:16.5: PCI bridge to [bus 10-10] -05:51:18,521 INFO kernel:pci 0000:00:16.5: bridge window [io disabled] -05:51:18,521 INFO kernel:pci 0000:00:16.5: bridge window [mem 0xd3900000-0xd39fffff] -05:51:18,521 INFO kernel:pci 0000:00:16.5: bridge window [mem 0xd5100000-0xd51fffff 64bit pref] -05:51:18,521 INFO kernel:pci 0000:00:16.6: PCI bridge to [bus 11-11] -05:51:18,521 INFO kernel:pci 0000:00:16.6: PCI bridge to [bus 11-11] -05:51:18,521 INFO kernel:pci 0000:00:16.6: bridge window [io disabled] -05:51:18,521 INFO kernel:pci 0000:00:16.6: bridge window [mem 0xd3d00000-0xd3dfffff] -05:51:18,521 INFO kernel:pci 0000:00:16.6: bridge window [mem 0xd5300000-0xd53fffff 64bit pref] -05:51:18,521 INFO kernel:pci 0000:00:16.7: PCI bridge to [bus 12-12] -05:51:18,521 INFO kernel:pci 0000:00:16.7: PCI bridge to [bus 12-12] -05:51:18,521 INFO kernel:pci 0000:00:16.7: bridge window [io disabled] -05:51:18,521 INFO kernel:pci 0000:00:16.7: bridge window [mem 0xd4100000-0xd41fffff] -05:51:18,521 INFO kernel:pci 0000:00:16.7: bridge window [mem 0xd5500000-0xd55fffff 64bit pref] -05:51:18,521 INFO kernel:pci 0000:00:17.0: PCI bridge to [bus 13-13] -05:51:18,521 INFO kernel:pci 0000:00:17.0: PCI bridge to [bus 13-13] -05:51:18,521 INFO kernel:pci 0000:00:17.0: bridge window [io 0x6000-0x6fff] -05:51:18,521 INFO kernel:pci 0000:00:17.0: bridge window [mem 0xd2600000-0xd26fffff] -05:51:18,521 INFO kernel:pci 0000:00:17.0: bridge window [mem 0xd4600000-0xd46fffff 64bit pref] -05:51:18,521 INFO kernel:pci 0000:00:17.1: PCI bridge to [bus 14-14] -05:51:18,521 INFO kernel:pci 0000:00:17.1: PCI bridge to [bus 14-14] -05:51:18,521 INFO kernel:pci 0000:00:17.1: bridge window [io 0xa000-0xafff] -05:51:18,521 INFO kernel:pci 0000:00:17.1: bridge window [mem 0xd2a00000-0xd2afffff] -05:51:18,521 INFO kernel:pci 0000:00:17.1: bridge window [mem 0xdca00000-0xdcafffff 64bit pref] -05:51:18,521 INFO kernel:pci 0000:00:17.2: PCI bridge to [bus 15-15] -05:51:18,521 INFO kernel:pci 0000:00:17.2: PCI bridge to [bus 15-15] -05:51:18,521 INFO kernel:pci 0000:00:17.2: bridge window [io 0xe000-0xefff] -05:51:18,521 INFO kernel:pci 0000:00:17.2: bridge window [mem 0xd2e00000-0xd2efffff] -05:51:18,521 INFO kernel:pci 0000:00:17.2: bridge window [mem 0xdcc00000-0xdccfffff 64bit pref] -05:51:18,521 INFO kernel:pci 0000:00:17.3: PCI bridge to [bus 16-16] -05:51:18,521 INFO kernel:pci 0000:00:17.3: PCI bridge to [bus 16-16] -05:51:18,521 INFO kernel:pci 0000:00:17.3: bridge window [io disabled] -05:51:18,521 INFO kernel:pci 0000:00:17.3: bridge window [mem 0xd3200000-0xd32fffff] -05:51:18,521 INFO kernel:pci 0000:00:17.3: bridge window [mem 0xdce00000-0xdcefffff 64bit pref] -05:51:18,521 INFO kernel:pci 0000:00:17.4: PCI bridge to [bus 17-17] -05:51:18,521 INFO kernel:pci 0000:00:17.4: PCI bridge to [bus 17-17] -05:51:18,521 INFO kernel:pci 0000:00:17.4: bridge window [io disabled] -05:51:18,521 INFO kernel:pci 0000:00:17.4: bridge window [mem 0xd3600000-0xd36fffff] -05:51:18,521 INFO kernel:pci 0000:00:17.4: bridge window [mem 0xdd000000-0xdd0fffff 64bit pref] -05:51:18,521 INFO kernel:pci 0000:00:17.5: PCI bridge to [bus 18-18] -05:51:18,521 INFO kernel:pci 0000:00:17.5: PCI bridge to [bus 18-18] -05:51:18,521 INFO kernel:pci 0000:00:17.5: bridge window [io disabled] -05:51:18,521 INFO kernel:pci 0000:00:17.5: bridge window [mem 0xd3a00000-0xd3afffff] -05:51:18,521 INFO kernel:pci 0000:00:17.5: bridge window [mem 0xdd200000-0xdd2fffff 64bit pref] -05:51:18,521 INFO kernel:pci 0000:00:17.6: PCI bridge to [bus 19-19] -05:51:18,521 INFO kernel:pci 0000:00:17.6: PCI bridge to [bus 19-19] -05:51:18,521 INFO kernel:pci 0000:00:17.6: bridge window [io disabled] -05:51:18,521 INFO kernel:pci 0000:00:17.6: bridge window [mem 0xd3e00000-0xd3efffff] -05:51:18,521 INFO kernel:pci 0000:00:17.6: bridge window [mem 0xdd400000-0xdd4fffff 64bit pref] -05:51:18,521 INFO kernel:pci 0000:00:17.7: PCI bridge to [bus 1a-1a] -05:51:18,521 INFO kernel:pci 0000:00:17.7: PCI bridge to [bus 1a-1a] -05:51:18,521 INFO kernel:pci 0000:00:17.7: bridge window [io disabled] -05:51:18,521 INFO kernel:pci 0000:00:17.7: bridge window [mem 0xd4200000-0xd42fffff] -05:51:18,521 INFO kernel:pci 0000:00:17.7: bridge window [mem 0xdd600000-0xdd6fffff 64bit pref] -05:51:18,521 INFO kernel:pci 0000:00:18.0: PCI bridge to [bus 1b-1b] -05:51:18,521 INFO kernel:pci 0000:00:18.0: PCI bridge to [bus 1b-1b] -05:51:18,521 INFO kernel:pci 0000:00:18.0: bridge window [io 0x7000-0x7fff] -05:51:18,521 INFO kernel:pci 0000:00:18.0: bridge window [mem 0xd2700000-0xd27fffff] -05:51:18,521 INFO kernel:pci 0000:00:18.0: bridge window [mem 0xd4700000-0xd47fffff 64bit pref] -05:51:18,521 INFO kernel:pci 0000:00:18.1: PCI bridge to [bus 1c-1c] -05:51:18,521 INFO kernel:pci 0000:00:18.1: PCI bridge to [bus 1c-1c] -05:51:18,521 INFO kernel:pci 0000:00:18.1: bridge window [io 0xb000-0xbfff] -05:51:18,521 INFO kernel:pci 0000:00:18.1: bridge window [mem 0xd2b00000-0xd2bfffff] -05:51:18,521 INFO kernel:pci 0000:00:18.1: bridge window [mem 0xd4a00000-0xd4afffff 64bit pref] -05:51:18,521 INFO kernel:pci 0000:00:18.2: PCI bridge to [bus 1d-1d] -05:51:18,521 INFO kernel:pci 0000:00:18.2: PCI bridge to [bus 1d-1d] -05:51:18,521 INFO kernel:pci 0000:00:18.2: bridge window [io disabled] -05:51:18,521 INFO kernel:pci 0000:00:18.2: bridge window [mem 0xd2f00000-0xd2ffffff] -05:51:18,521 INFO kernel:pci 0000:00:18.2: bridge window [mem 0xd4c00000-0xd4cfffff 64bit pref] -05:51:18,521 INFO kernel:pci 0000:00:18.3: PCI bridge to [bus 1e-1e] -05:51:18,521 INFO kernel:pci 0000:00:18.3: PCI bridge to [bus 1e-1e] -05:51:18,521 INFO kernel:pci 0000:00:18.3: bridge window [io disabled] -05:51:18,521 INFO kernel:pci 0000:00:18.3: bridge window [mem 0xd3300000-0xd33fffff] -05:51:18,521 INFO kernel:pci 0000:00:18.3: bridge window [mem 0xd4e00000-0xd4efffff 64bit pref] -05:51:18,521 INFO kernel:pci 0000:00:18.4: PCI bridge to [bus 1f-1f] -05:51:18,521 INFO kernel:pci 0000:00:18.4: PCI bridge to [bus 1f-1f] -05:51:18,521 INFO kernel:pci 0000:00:18.4: bridge window [io disabled] -05:51:18,521 INFO kernel:pci 0000:00:18.4: bridge window [mem 0xd3700000-0xd37fffff] -05:51:18,521 INFO kernel:pci 0000:00:18.4: bridge window [mem 0xd5000000-0xd50fffff 64bit pref] -05:51:18,521 INFO kernel:pci 0000:00:18.5: PCI bridge to [bus 20-20] -05:51:18,521 INFO kernel:pci 0000:00:18.5: PCI bridge to [bus 20-20] -05:51:18,521 INFO kernel:pci 0000:00:18.5: bridge window [io disabled] -05:51:18,521 INFO kernel:pci 0000:00:18.5: bridge window [mem 0xd3b00000-0xd3bfffff] -05:51:18,521 INFO kernel:pci 0000:00:18.5: bridge window [mem 0xd5200000-0xd52fffff 64bit pref] -05:51:18,521 INFO kernel:pci 0000:00:18.6: PCI bridge to [bus 21-21] -05:51:18,521 INFO kernel:pci 0000:00:18.6: PCI bridge to [bus 21-21] -05:51:18,521 INFO kernel:pci 0000:00:18.6: bridge window [io disabled] -05:51:18,521 INFO kernel:pci 0000:00:18.6: bridge window [mem 0xd3f00000-0xd3ffffff] -05:51:18,521 INFO kernel:pci 0000:00:18.6: bridge window [mem 0xd5400000-0xd54fffff 64bit pref] -05:51:18,521 INFO kernel:pci 0000:00:18.7: PCI bridge to [bus 22-22] -05:51:18,521 INFO kernel:pci 0000:00:18.7: PCI bridge to [bus 22-22] -05:51:18,521 INFO kernel:pci 0000:00:18.7: bridge window [io disabled] -05:51:18,521 INFO kernel:pci 0000:00:18.7: bridge window [mem 0xd4300000-0xd43fffff] -05:51:18,521 INFO kernel:pci 0000:00:18.7: bridge window [mem 0xd5600000-0xd56fffff 64bit pref] -05:51:18,521 DEBUG kernel:pci 0000:00:01.0: setting latency timer to 64 -05:51:18,521 DEBUG kernel:pci 0000:00:15.0: setting latency timer to 64 -05:51:18,521 DEBUG kernel:pci 0000:00:15.1: setting latency timer to 64 -05:51:18,521 DEBUG kernel:pci 0000:00:15.2: setting latency timer to 64 -05:51:18,521 DEBUG kernel:pci 0000:00:15.3: setting latency timer to 64 -05:51:18,521 DEBUG kernel:pci 0000:00:15.4: setting latency timer to 64 -05:51:18,521 DEBUG kernel:pci 0000:00:15.5: setting latency timer to 64 -05:51:18,521 DEBUG kernel:pci 0000:00:15.6: setting latency timer to 64 -05:51:18,521 DEBUG kernel:pci 0000:00:15.7: setting latency timer to 64 -05:51:18,521 DEBUG kernel:pci 0000:00:16.0: setting latency timer to 64 -05:51:18,521 DEBUG kernel:pci 0000:00:16.1: setting latency timer to 64 -05:51:18,521 DEBUG kernel:pci 0000:00:16.2: setting latency timer to 64 -05:51:18,521 DEBUG kernel:pci 0000:00:16.3: setting latency timer to 64 -05:51:18,521 DEBUG kernel:pci 0000:00:16.4: setting latency timer to 64 -05:51:18,521 DEBUG kernel:pci 0000:00:16.5: setting latency timer to 64 -05:51:18,521 DEBUG kernel:pci 0000:00:16.6: setting latency timer to 64 -05:51:18,521 DEBUG kernel:pci 0000:00:16.7: setting latency timer to 64 -05:51:18,521 DEBUG kernel:pci 0000:00:17.0: setting latency timer to 64 -05:51:18,521 DEBUG kernel:pci 0000:00:17.1: setting latency timer to 64 -05:51:18,522 DEBUG kernel:pci 0000:00:17.2: setting latency timer to 64 -05:51:18,522 DEBUG kernel:pci 0000:00:17.3: setting latency timer to 64 -05:51:18,522 DEBUG kernel:pci 0000:00:17.4: setting latency timer to 64 -05:51:18,522 DEBUG kernel:pci 0000:00:17.5: setting latency timer to 64 -05:51:18,522 DEBUG kernel:pci 0000:00:17.6: setting latency timer to 64 -05:51:18,522 DEBUG kernel:pci 0000:00:17.7: setting latency timer to 64 -05:51:18,522 DEBUG kernel:pci 0000:00:18.0: setting latency timer to 64 -05:51:18,522 DEBUG kernel:pci 0000:00:18.1: setting latency timer to 64 -05:51:18,522 DEBUG kernel:pci 0000:00:18.2: setting latency timer to 64 -05:51:18,522 DEBUG kernel:pci 0000:00:18.3: setting latency timer to 64 -05:51:18,522 DEBUG kernel:pci 0000:00:18.4: setting latency timer to 64 -05:51:18,522 DEBUG kernel:pci 0000:00:18.5: setting latency timer to 64 -05:51:18,522 DEBUG kernel:pci 0000:00:18.6: setting latency timer to 64 -05:51:18,522 DEBUG kernel:pci 0000:00:18.7: setting latency timer to 64 -05:51:18,522 DEBUG kernel:pci_bus 0000:00: resource 4 [mem 0x000a0000-0x000bffff] -05:51:18,522 DEBUG kernel:pci_bus 0000:00: resource 5 [mem 0x000d0000-0x000d3fff] -05:51:18,522 DEBUG kernel:pci_bus 0000:00: resource 6 [mem 0x000d4000-0x000d7fff] -05:51:18,522 DEBUG kernel:pci_bus 0000:00: resource 7 [mem 0x000d8000-0x000dbfff] -05:51:18,522 DEBUG kernel:pci_bus 0000:00: resource 8 [mem 0x80000000-0xfebfffff] -05:51:18,522 DEBUG kernel:pci_bus 0000:00: resource 9 [io 0x0000-0x0cf7] -05:51:18,522 DEBUG kernel:pci_bus 0000:00: resource 10 [io 0x0d00-0xfeff] -05:51:18,522 DEBUG kernel:pci_bus 0000:02: resource 0 [io 0x2000-0x3fff] -05:51:18,522 DEBUG kernel:pci_bus 0000:02: resource 1 [mem 0xd1000000-0xd23fffff] -05:51:18,522 DEBUG kernel:pci_bus 0000:02: resource 2 [mem 0xdc400000-0xdc9fffff 64bit pref] -05:51:18,522 DEBUG kernel:pci_bus 0000:02: resource 4 [mem 0x000a0000-0x000bffff] -05:51:18,522 DEBUG kernel:pci_bus 0000:02: resource 5 [mem 0x000d0000-0x000d3fff] -05:51:18,522 DEBUG kernel:pci_bus 0000:02: resource 6 [mem 0x000d4000-0x000d7fff] -05:51:18,522 DEBUG kernel:pci_bus 0000:02: resource 7 [mem 0x000d8000-0x000dbfff] -05:51:18,522 DEBUG kernel:pci_bus 0000:02: resource 8 [mem 0x80000000-0xfebfffff] -05:51:18,522 DEBUG kernel:pci_bus 0000:02: resource 9 [io 0x0000-0x0cf7] -05:51:18,522 DEBUG kernel:pci_bus 0000:02: resource 10 [io 0x0d00-0xfeff] -05:51:18,522 DEBUG kernel:pci_bus 0000:03: resource 0 [io 0x4000-0x4fff] -05:51:18,522 DEBUG kernel:pci_bus 0000:03: resource 1 [mem 0xd2400000-0xd24fffff] -05:51:18,522 DEBUG kernel:pci_bus 0000:03: resource 2 [mem 0xd4400000-0xd44fffff 64bit pref] -05:51:18,522 DEBUG kernel:pci_bus 0000:04: resource 0 [io 0x8000-0x8fff] -05:51:18,522 DEBUG kernel:pci_bus 0000:04: resource 1 [mem 0xd2800000-0xd28fffff] -05:51:18,522 DEBUG kernel:pci_bus 0000:04: resource 2 [mem 0xd4800000-0xd48fffff 64bit pref] -05:51:18,522 DEBUG kernel:pci_bus 0000:05: resource 0 [io 0xc000-0xcfff] -05:51:18,522 DEBUG kernel:pci_bus 0000:05: resource 1 [mem 0xd2c00000-0xd2cfffff] -05:51:18,522 DEBUG kernel:pci_bus 0000:05: resource 2 [mem 0xdcb00000-0xdcbfffff 64bit pref] -05:51:18,522 DEBUG kernel:pci_bus 0000:06: resource 1 [mem 0xd3000000-0xd30fffff] -05:51:18,522 DEBUG kernel:pci_bus 0000:06: resource 2 [mem 0xdcd00000-0xdcdfffff 64bit pref] -05:51:18,522 DEBUG kernel:pci_bus 0000:07: resource 1 [mem 0xd3400000-0xd34fffff] -05:51:18,522 DEBUG kernel:pci_bus 0000:07: resource 2 [mem 0xdcf00000-0xdcffffff 64bit pref] -05:51:18,522 DEBUG kernel:pci_bus 0000:08: resource 1 [mem 0xd3800000-0xd38fffff] -05:51:18,522 DEBUG kernel:pci_bus 0000:08: resource 2 [mem 0xdd100000-0xdd1fffff 64bit pref] -05:51:18,522 DEBUG kernel:pci_bus 0000:09: resource 1 [mem 0xd3c00000-0xd3cfffff] -05:51:18,522 DEBUG kernel:pci_bus 0000:09: resource 2 [mem 0xdd300000-0xdd3fffff 64bit pref] -05:51:18,522 DEBUG kernel:pci_bus 0000:0a: resource 1 [mem 0xd4000000-0xd40fffff] -05:51:18,522 DEBUG kernel:pci_bus 0000:0a: resource 2 [mem 0xdd500000-0xdd5fffff 64bit pref] -05:51:18,522 DEBUG kernel:pci_bus 0000:0b: resource 0 [io 0x5000-0x5fff] -05:51:18,522 DEBUG kernel:pci_bus 0000:0b: resource 1 [mem 0xd2500000-0xd25fffff] -05:51:18,522 DEBUG kernel:pci_bus 0000:0b: resource 2 [mem 0xd4500000-0xd45fffff 64bit pref] -05:51:18,522 DEBUG kernel:pci_bus 0000:0c: resource 0 [io 0x9000-0x9fff] -05:51:18,522 DEBUG kernel:pci_bus 0000:0c: resource 1 [mem 0xd2900000-0xd29fffff] -05:51:18,522 DEBUG kernel:pci_bus 0000:0c: resource 2 [mem 0xd4900000-0xd49fffff 64bit pref] -05:51:18,522 DEBUG kernel:pci_bus 0000:0d: resource 0 [io 0xd000-0xdfff] -05:51:18,522 DEBUG kernel:pci_bus 0000:0d: resource 1 [mem 0xd2d00000-0xd2dfffff] -05:51:18,522 DEBUG kernel:pci_bus 0000:0d: resource 2 [mem 0xd4b00000-0xd4bfffff 64bit pref] -05:51:18,522 DEBUG kernel:pci_bus 0000:0e: resource 1 [mem 0xd3100000-0xd31fffff] -05:51:18,522 DEBUG kernel:pci_bus 0000:0e: resource 2 [mem 0xd4d00000-0xd4dfffff 64bit pref] -05:51:18,522 DEBUG kernel:pci_bus 0000:0f: resource 1 [mem 0xd3500000-0xd35fffff] -05:51:18,522 DEBUG kernel:pci_bus 0000:0f: resource 2 [mem 0xd4f00000-0xd4ffffff 64bit pref] -05:51:18,522 DEBUG kernel:pci_bus 0000:10: resource 1 [mem 0xd3900000-0xd39fffff] -05:51:18,522 DEBUG kernel:pci_bus 0000:10: resource 2 [mem 0xd5100000-0xd51fffff 64bit pref] -05:51:18,522 DEBUG kernel:pci_bus 0000:11: resource 1 [mem 0xd3d00000-0xd3dfffff] -05:51:18,522 DEBUG kernel:pci_bus 0000:11: resource 2 [mem 0xd5300000-0xd53fffff 64bit pref] -05:51:18,522 DEBUG kernel:pci_bus 0000:12: resource 1 [mem 0xd4100000-0xd41fffff] -05:51:18,522 DEBUG kernel:pci_bus 0000:12: resource 2 [mem 0xd5500000-0xd55fffff 64bit pref] -05:51:18,522 DEBUG kernel:pci_bus 0000:13: resource 0 [io 0x6000-0x6fff] -05:51:18,522 DEBUG kernel:pci_bus 0000:13: resource 1 [mem 0xd2600000-0xd26fffff] -05:51:18,522 DEBUG kernel:pci_bus 0000:13: resource 2 [mem 0xd4600000-0xd46fffff 64bit pref] -05:51:18,522 DEBUG kernel:pci_bus 0000:14: resource 0 [io 0xa000-0xafff] -05:51:18,522 DEBUG kernel:pci_bus 0000:14: resource 1 [mem 0xd2a00000-0xd2afffff] -05:51:18,522 DEBUG kernel:pci_bus 0000:14: resource 2 [mem 0xdca00000-0xdcafffff 64bit pref] -05:51:18,522 DEBUG kernel:pci_bus 0000:15: resource 0 [io 0xe000-0xefff] -05:51:18,522 DEBUG kernel:pci_bus 0000:15: resource 1 [mem 0xd2e00000-0xd2efffff] -05:51:18,522 DEBUG kernel:pci_bus 0000:15: resource 2 [mem 0xdcc00000-0xdccfffff 64bit pref] -05:51:18,522 DEBUG kernel:pci_bus 0000:16: resource 1 [mem 0xd3200000-0xd32fffff] -05:51:18,522 DEBUG kernel:pci_bus 0000:16: resource 2 [mem 0xdce00000-0xdcefffff 64bit pref] -05:51:18,522 DEBUG kernel:pci_bus 0000:17: resource 1 [mem 0xd3600000-0xd36fffff] -05:51:18,522 DEBUG kernel:pci_bus 0000:17: resource 2 [mem 0xdd000000-0xdd0fffff 64bit pref] -05:51:18,522 DEBUG kernel:pci_bus 0000:18: resource 1 [mem 0xd3a00000-0xd3afffff] -05:51:18,522 DEBUG kernel:pci_bus 0000:18: resource 2 [mem 0xdd200000-0xdd2fffff 64bit pref] -05:51:18,522 DEBUG kernel:pci_bus 0000:19: resource 1 [mem 0xd3e00000-0xd3efffff] -05:51:18,522 DEBUG kernel:pci_bus 0000:19: resource 2 [mem 0xdd400000-0xdd4fffff 64bit pref] -05:51:18,522 DEBUG kernel:pci_bus 0000:1a: resource 1 [mem 0xd4200000-0xd42fffff] -05:51:18,522 DEBUG kernel:pci_bus 0000:1a: resource 2 [mem 0xdd600000-0xdd6fffff 64bit pref] -05:51:18,522 DEBUG kernel:pci_bus 0000:1b: resource 0 [io 0x7000-0x7fff] -05:51:18,522 DEBUG kernel:pci_bus 0000:1b: resource 1 [mem 0xd2700000-0xd27fffff] -05:51:18,522 DEBUG kernel:pci_bus 0000:1b: resource 2 [mem 0xd4700000-0xd47fffff 64bit pref] -05:51:18,522 DEBUG kernel:pci_bus 0000:1c: resource 0 [io 0xb000-0xbfff] -05:51:18,522 DEBUG kernel:pci_bus 0000:1c: resource 1 [mem 0xd2b00000-0xd2bfffff] -05:51:18,522 DEBUG kernel:pci_bus 0000:1c: resource 2 [mem 0xd4a00000-0xd4afffff 64bit pref] -05:51:18,522 DEBUG kernel:pci_bus 0000:1d: resource 1 [mem 0xd2f00000-0xd2ffffff] -05:51:18,522 DEBUG kernel:pci_bus 0000:1d: resource 2 [mem 0xd4c00000-0xd4cfffff 64bit pref] -05:51:18,522 DEBUG kernel:pci_bus 0000:1e: resource 1 [mem 0xd3300000-0xd33fffff] -05:51:18,522 DEBUG kernel:pci_bus 0000:1e: resource 2 [mem 0xd4e00000-0xd4efffff 64bit pref] -05:51:18,522 DEBUG kernel:pci_bus 0000:1f: resource 1 [mem 0xd3700000-0xd37fffff] -05:51:18,522 DEBUG kernel:pci_bus 0000:1f: resource 2 [mem 0xd5000000-0xd50fffff 64bit pref] -05:51:18,522 DEBUG kernel:pci_bus 0000:20: resource 1 [mem 0xd3b00000-0xd3bfffff] -05:51:18,522 DEBUG kernel:pci_bus 0000:20: resource 2 [mem 0xd5200000-0xd52fffff 64bit pref] -05:51:18,522 DEBUG kernel:pci_bus 0000:21: resource 1 [mem 0xd3f00000-0xd3ffffff] -05:51:18,522 DEBUG kernel:pci_bus 0000:21: resource 2 [mem 0xd5400000-0xd54fffff 64bit pref] -05:51:18,522 DEBUG kernel:pci_bus 0000:22: resource 1 [mem 0xd4300000-0xd43fffff] -05:51:18,522 DEBUG kernel:pci_bus 0000:22: resource 2 [mem 0xd5600000-0xd56fffff 64bit pref] -05:51:18,522 INFO kernel:NET: Registered protocol family 2 -05:51:18,522 INFO kernel:IP route cache hash table entries: 65536 (order: 7, 524288 bytes) -05:51:18,522 INFO kernel:TCP established hash table entries: 262144 (order: 10, 4194304 bytes) -05:51:18,527 INFO kernel:TCP bind hash table entries: 65536 (order: 8, 1048576 bytes) -05:51:18,527 INFO kernel:TCP: Hash tables configured (established 262144 bind 65536) -05:51:18,527 INFO kernel:TCP reno registered -05:51:18,527 INFO kernel:NET: Registered protocol family 1 -05:51:18,527 INFO kernel:pci 0000:00:00.0: Limiting direct PCI/PCI transfers -05:51:18,527 DEBUG kernel:pci 0000:00:0f.0: Boot video device -05:51:18,527 INFO kernel:Trying to unpack rootfs image as initramfs... -05:51:18,527 INFO kernel:Freeing initrd memory: 32601k freed -05:51:18,527 INFO kernel:Simple Boot Flag at 0x36 set to 0x80 -05:51:18,527 INFO kernel:audit: initializing netlink socket (disabled) -05:51:18,527 NOTICE kernel:type=2000 audit(1021096275.782:1): initialized -05:51:18,527 INFO kernel:HugeTLB registered 2 MB page size, pre-allocated 0 pages -05:51:18,527 NOTICE kernel:VFS: Disk quotas dquot_6.5.2 -05:51:18,527 WARNING kernel:Dquot-cache hash table entries: 512 (order 0, 4096 bytes) -05:51:18,527 INFO kernel:msgmni has been set to 4005 -05:51:18,527 DEBUG kernel:SELinux: Registering netfilter hooks -05:51:18,527 INFO kernel:alg: No test for stdrng (krng) -05:51:18,527 WARNING kernel:ksign: Installing public key data -05:51:18,527 WARNING kernel:Loading keyring -05:51:18,527 WARNING kernel:- Added public key 8A44323FB303E068 -05:51:18,527 WARNING kernel: - key was been created 363988184 seconds in future -05:51:18,527 WARNING kernel:- User ID: CentOS (Kernel Module GPG key) -05:51:18,527 INFO kernel:Block layer SCSI generic (bsg) driver version 0.4 loaded (major 251) -05:51:18,527 INFO kernel:io scheduler noop registered -05:51:18,527 INFO kernel:io scheduler anticipatory registered -05:51:18,527 INFO kernel:io scheduler deadline registered -05:51:18,527 INFO kernel:io scheduler cfq registered (default) -05:51:18,527 DEBUG kernel:pcieport 0000:00:15.0: setting latency timer to 64 -05:51:18,527 DEBUG kernel: alloc irq_desc for 24 on node -1 -05:51:18,527 DEBUG kernel: alloc kstat_irqs on node -1 -05:51:18,527 DEBUG kernel:pcieport 0000:00:15.0: irq 24 for MSI/MSI-X -05:51:18,527 DEBUG kernel:pcieport 0000:00:15.1: setting latency timer to 64 -05:51:18,527 DEBUG kernel: alloc irq_desc for 25 on node -1 -05:51:18,527 DEBUG kernel: alloc kstat_irqs on node -1 -05:51:18,527 DEBUG kernel:pcieport 0000:00:15.1: irq 25 for MSI/MSI-X -05:51:18,527 DEBUG kernel:pcieport 0000:00:15.2: setting latency timer to 64 -05:51:18,527 DEBUG kernel: alloc irq_desc for 26 on node -1 -05:51:18,527 DEBUG kernel: alloc kstat_irqs on node -1 -05:51:18,527 DEBUG kernel:pcieport 0000:00:15.2: irq 26 for MSI/MSI-X -05:51:18,527 DEBUG kernel:pcieport 0000:00:15.3: setting latency timer to 64 -05:51:18,527 DEBUG kernel: alloc irq_desc for 27 on node -1 -05:51:18,527 DEBUG kernel: alloc kstat_irqs on node -1 -05:51:18,527 DEBUG kernel:pcieport 0000:00:15.3: irq 27 for MSI/MSI-X -05:51:18,527 DEBUG kernel:pcieport 0000:00:15.4: setting latency timer to 64 -05:51:18,527 DEBUG kernel: alloc irq_desc for 28 on node -1 -05:51:18,527 DEBUG kernel: alloc kstat_irqs on node -1 -05:51:18,527 DEBUG kernel:pcieport 0000:00:15.4: irq 28 for MSI/MSI-X -05:51:18,527 DEBUG kernel:pcieport 0000:00:15.5: setting latency timer to 64 -05:51:18,527 DEBUG kernel: alloc irq_desc for 29 on node -1 -05:51:18,527 DEBUG kernel: alloc kstat_irqs on node -1 -05:51:18,527 DEBUG kernel:pcieport 0000:00:15.5: irq 29 for MSI/MSI-X -05:51:18,527 DEBUG kernel:pcieport 0000:00:15.6: setting latency timer to 64 -05:51:18,527 DEBUG kernel: alloc irq_desc for 30 on node -1 -05:51:18,527 DEBUG kernel: alloc kstat_irqs on node -1 -05:51:18,527 DEBUG kernel:pcieport 0000:00:15.6: irq 30 for MSI/MSI-X -05:51:18,527 DEBUG kernel:pcieport 0000:00:15.7: setting latency timer to 64 -05:51:18,527 DEBUG kernel: alloc irq_desc for 31 on node -1 -05:51:18,527 DEBUG kernel: alloc kstat_irqs on node -1 -05:51:18,527 DEBUG kernel:pcieport 0000:00:15.7: irq 31 for MSI/MSI-X -05:51:18,527 DEBUG kernel:pcieport 0000:00:16.0: setting latency timer to 64 -05:51:18,527 DEBUG kernel: alloc irq_desc for 32 on node -1 -05:51:18,527 DEBUG kernel: alloc kstat_irqs on node -1 -05:51:18,527 DEBUG kernel:pcieport 0000:00:16.0: irq 32 for MSI/MSI-X -05:51:18,527 DEBUG kernel:pcieport 0000:00:16.1: setting latency timer to 64 -05:51:18,527 DEBUG kernel: alloc irq_desc for 33 on node -1 -05:51:18,527 DEBUG kernel: alloc kstat_irqs on node -1 -05:51:18,527 DEBUG kernel:pcieport 0000:00:16.1: irq 33 for MSI/MSI-X -05:51:18,527 DEBUG kernel:pcieport 0000:00:16.2: setting latency timer to 64 -05:51:18,527 DEBUG kernel: alloc irq_desc for 34 on node -1 -05:51:18,527 DEBUG kernel: alloc kstat_irqs on node -1 -05:51:18,527 DEBUG kernel:pcieport 0000:00:16.2: irq 34 for MSI/MSI-X -05:51:18,527 DEBUG kernel:pcieport 0000:00:16.3: setting latency timer to 64 -05:51:18,527 DEBUG kernel: alloc irq_desc for 35 on node -1 -05:51:18,527 DEBUG kernel: alloc kstat_irqs on node -1 -05:51:18,527 DEBUG kernel:pcieport 0000:00:16.3: irq 35 for MSI/MSI-X -05:51:18,527 DEBUG kernel:pcieport 0000:00:16.4: setting latency timer to 64 -05:51:18,527 DEBUG kernel: alloc irq_desc for 36 on node -1 -05:51:18,527 DEBUG kernel: alloc kstat_irqs on node -1 -05:51:18,527 DEBUG kernel:pcieport 0000:00:16.4: irq 36 for MSI/MSI-X -05:51:18,527 DEBUG kernel:pcieport 0000:00:16.5: setting latency timer to 64 -05:51:18,527 DEBUG kernel: alloc irq_desc for 37 on node -1 -05:51:18,527 DEBUG kernel: alloc kstat_irqs on node -1 -05:51:18,527 DEBUG kernel:pcieport 0000:00:16.5: irq 37 for MSI/MSI-X -05:51:18,527 DEBUG kernel:pcieport 0000:00:16.6: setting latency timer to 64 -05:51:18,527 DEBUG kernel: alloc irq_desc for 38 on node -1 -05:51:18,527 DEBUG kernel: alloc kstat_irqs on node -1 -05:51:18,527 DEBUG kernel:pcieport 0000:00:16.6: irq 38 for MSI/MSI-X -05:51:18,527 DEBUG kernel:pcieport 0000:00:16.7: setting latency timer to 64 -05:51:18,527 DEBUG kernel: alloc irq_desc for 39 on node -1 -05:51:18,527 DEBUG kernel: alloc kstat_irqs on node -1 -05:51:18,527 DEBUG kernel:pcieport 0000:00:16.7: irq 39 for MSI/MSI-X -05:51:18,527 DEBUG kernel:pcieport 0000:00:17.0: setting latency timer to 64 -05:51:18,527 DEBUG kernel: alloc irq_desc for 40 on node -1 -05:51:18,527 DEBUG kernel: alloc kstat_irqs on node -1 -05:51:18,527 DEBUG kernel:pcieport 0000:00:17.0: irq 40 for MSI/MSI-X -05:51:18,527 DEBUG kernel:pcieport 0000:00:17.1: setting latency timer to 64 -05:51:18,527 DEBUG kernel: alloc irq_desc for 41 on node -1 -05:51:18,527 DEBUG kernel: alloc kstat_irqs on node -1 -05:51:18,527 DEBUG kernel:pcieport 0000:00:17.1: irq 41 for MSI/MSI-X -05:51:18,527 DEBUG kernel:pcieport 0000:00:17.2: setting latency timer to 64 -05:51:18,527 DEBUG kernel: alloc irq_desc for 42 on node -1 -05:51:18,527 DEBUG kernel: alloc kstat_irqs on node -1 -05:51:18,527 DEBUG kernel:pcieport 0000:00:17.2: irq 42 for MSI/MSI-X -05:51:18,527 DEBUG kernel:pcieport 0000:00:17.3: setting latency timer to 64 -05:51:18,527 DEBUG kernel: alloc irq_desc for 43 on node -1 -05:51:18,527 DEBUG kernel: alloc kstat_irqs on node -1 -05:51:18,527 DEBUG kernel:pcieport 0000:00:17.3: irq 43 for MSI/MSI-X -05:51:18,527 DEBUG kernel:pcieport 0000:00:17.4: setting latency timer to 64 -05:51:18,527 DEBUG kernel: alloc irq_desc for 44 on node -1 -05:51:18,527 DEBUG kernel: alloc kstat_irqs on node -1 -05:51:18,527 DEBUG kernel:pcieport 0000:00:17.4: irq 44 for MSI/MSI-X -05:51:18,527 DEBUG kernel:pcieport 0000:00:17.5: setting latency timer to 64 -05:51:18,527 DEBUG kernel: alloc irq_desc for 45 on node -1 -05:51:18,527 DEBUG kernel: alloc kstat_irqs on node -1 -05:51:18,527 DEBUG kernel:pcieport 0000:00:17.5: irq 45 for MSI/MSI-X -05:51:18,527 DEBUG kernel:pcieport 0000:00:17.6: setting latency timer to 64 -05:51:18,527 DEBUG kernel: alloc irq_desc for 46 on node -1 -05:51:18,527 DEBUG kernel: alloc kstat_irqs on node -1 -05:51:18,527 DEBUG kernel:pcieport 0000:00:17.6: irq 46 for MSI/MSI-X -05:51:18,527 DEBUG kernel:pcieport 0000:00:17.7: setting latency timer to 64 -05:51:18,527 DEBUG kernel: alloc irq_desc for 47 on node -1 -05:51:18,527 DEBUG kernel: alloc kstat_irqs on node -1 -05:51:18,527 DEBUG kernel:pcieport 0000:00:17.7: irq 47 for MSI/MSI-X -05:51:18,527 DEBUG kernel:pcieport 0000:00:18.0: setting latency timer to 64 -05:51:18,527 DEBUG kernel: alloc irq_desc for 48 on node -1 -05:51:18,527 DEBUG kernel: alloc kstat_irqs on node -1 -05:51:18,527 DEBUG kernel:pcieport 0000:00:18.0: irq 48 for MSI/MSI-X -05:51:18,527 DEBUG kernel:pcieport 0000:00:18.1: setting latency timer to 64 -05:51:18,527 DEBUG kernel: alloc irq_desc for 49 on node -1 -05:51:18,527 DEBUG kernel: alloc kstat_irqs on node -1 -05:51:18,527 DEBUG kernel:pcieport 0000:00:18.1: irq 49 for MSI/MSI-X -05:51:18,527 DEBUG kernel:pcieport 0000:00:18.2: setting latency timer to 64 -05:51:18,527 DEBUG kernel: alloc irq_desc for 50 on node -1 -05:51:18,527 DEBUG kernel: alloc kstat_irqs on node -1 -05:51:18,527 DEBUG kernel:pcieport 0000:00:18.2: irq 50 for MSI/MSI-X -05:51:18,527 DEBUG kernel:pcieport 0000:00:18.3: setting latency timer to 64 -05:51:18,527 DEBUG kernel: alloc irq_desc for 51 on node -1 -05:51:18,527 DEBUG kernel: alloc kstat_irqs on node -1 -05:51:18,527 DEBUG kernel:pcieport 0000:00:18.3: irq 51 for MSI/MSI-X -05:51:18,527 DEBUG kernel:pcieport 0000:00:18.4: setting latency timer to 64 -05:51:18,527 DEBUG kernel: alloc irq_desc for 52 on node -1 -05:51:18,527 DEBUG kernel: alloc kstat_irqs on node -1 -05:51:18,527 DEBUG kernel:pcieport 0000:00:18.4: irq 52 for MSI/MSI-X -05:51:18,527 DEBUG kernel:pcieport 0000:00:18.5: setting latency timer to 64 -05:51:18,527 DEBUG kernel: alloc irq_desc for 53 on node -1 -05:51:18,527 DEBUG kernel: alloc kstat_irqs on node -1 -05:51:18,527 DEBUG kernel:pcieport 0000:00:18.5: irq 53 for MSI/MSI-X -05:51:18,527 DEBUG kernel:pcieport 0000:00:18.6: setting latency timer to 64 -05:51:18,527 DEBUG kernel: alloc irq_desc for 54 on node -1 -05:51:18,527 DEBUG kernel: alloc kstat_irqs on node -1 -05:51:18,527 DEBUG kernel:pcieport 0000:00:18.6: irq 54 for MSI/MSI-X -05:51:18,527 DEBUG kernel:pcieport 0000:00:18.7: setting latency timer to 64 -05:51:18,527 DEBUG kernel: alloc irq_desc for 55 on node -1 -05:51:18,527 DEBUG kernel: alloc kstat_irqs on node -1 -05:51:18,527 DEBUG kernel:pcieport 0000:00:18.7: irq 55 for MSI/MSI-X -05:51:18,527 INFO kernel:pci_hotplug: PCI Hot Plug PCI Core version: 0.5 -05:51:18,527 INFO kernel:pciehp 0000:00:15.0:pcie04: HPC vendor_id 15ad device_id 7a0 ss_vid 0 ss_did 0 -05:51:18,527 DEBUG kernel:pciehp 0000:00:15.0:pcie04: service driver pciehp loaded -05:51:18,527 INFO kernel:pciehp 0000:00:15.1:pcie04: HPC vendor_id 15ad device_id 7a0 ss_vid 0 ss_did 0 -05:51:18,527 DEBUG kernel:pciehp 0000:00:15.1:pcie04: service driver pciehp loaded -05:51:18,527 INFO kernel:pciehp 0000:00:15.2:pcie04: HPC vendor_id 15ad device_id 7a0 ss_vid 0 ss_did 0 -05:51:18,527 DEBUG kernel:pciehp 0000:00:15.2:pcie04: service driver pciehp loaded -05:51:18,527 INFO kernel:pciehp 0000:00:15.3:pcie04: HPC vendor_id 15ad device_id 7a0 ss_vid 0 ss_did 0 -05:51:18,527 DEBUG kernel:pciehp 0000:00:15.3:pcie04: service driver pciehp loaded -05:51:18,527 INFO kernel:pciehp 0000:00:15.4:pcie04: HPC vendor_id 15ad device_id 7a0 ss_vid 0 ss_did 0 -05:51:18,527 DEBUG kernel:pciehp 0000:00:15.4:pcie04: service driver pciehp loaded -05:51:18,527 INFO kernel:pciehp 0000:00:15.5:pcie04: HPC vendor_id 15ad device_id 7a0 ss_vid 0 ss_did 0 -05:51:18,527 DEBUG kernel:pciehp 0000:00:15.5:pcie04: service driver pciehp loaded -05:51:18,527 INFO kernel:pciehp 0000:00:15.6:pcie04: HPC vendor_id 15ad device_id 7a0 ss_vid 0 ss_did 0 -05:51:18,527 DEBUG kernel:pciehp 0000:00:15.6:pcie04: service driver pciehp loaded -05:51:18,527 INFO kernel:pciehp 0000:00:15.7:pcie04: HPC vendor_id 15ad device_id 7a0 ss_vid 0 ss_did 0 -05:51:18,527 DEBUG kernel:pciehp 0000:00:15.7:pcie04: service driver pciehp loaded -05:51:18,527 INFO kernel:pciehp 0000:00:16.0:pcie04: HPC vendor_id 15ad device_id 7a0 ss_vid 0 ss_did 0 -05:51:18,527 DEBUG kernel:pciehp 0000:00:16.0:pcie04: service driver pciehp loaded -05:51:18,527 INFO kernel:pciehp 0000:00:16.1:pcie04: HPC vendor_id 15ad device_id 7a0 ss_vid 0 ss_did 0 -05:51:18,527 DEBUG kernel:pciehp 0000:00:16.1:pcie04: service driver pciehp loaded -05:51:18,527 INFO kernel:pciehp 0000:00:16.2:pcie04: HPC vendor_id 15ad device_id 7a0 ss_vid 0 ss_did 0 -05:51:18,527 DEBUG kernel:pciehp 0000:00:16.2:pcie04: service driver pciehp loaded -05:51:18,527 INFO kernel:pciehp 0000:00:16.3:pcie04: HPC vendor_id 15ad device_id 7a0 ss_vid 0 ss_did 0 -05:51:18,527 DEBUG kernel:pciehp 0000:00:16.3:pcie04: service driver pciehp loaded -05:51:18,527 INFO kernel:pciehp 0000:00:16.4:pcie04: HPC vendor_id 15ad device_id 7a0 ss_vid 0 ss_did 0 -05:51:18,527 DEBUG kernel:pciehp 0000:00:16.4:pcie04: service driver pciehp loaded -05:51:18,527 INFO kernel:pciehp 0000:00:16.5:pcie04: HPC vendor_id 15ad device_id 7a0 ss_vid 0 ss_did 0 -05:51:18,527 DEBUG kernel:pciehp 0000:00:16.5:pcie04: service driver pciehp loaded -05:51:18,527 INFO kernel:pciehp 0000:00:16.6:pcie04: HPC vendor_id 15ad device_id 7a0 ss_vid 0 ss_did 0 -05:51:18,527 DEBUG kernel:pciehp 0000:00:16.6:pcie04: service driver pciehp loaded -05:51:18,527 INFO kernel:pciehp 0000:00:16.7:pcie04: HPC vendor_id 15ad device_id 7a0 ss_vid 0 ss_did 0 -05:51:18,527 DEBUG kernel:pciehp 0000:00:16.7:pcie04: service driver pciehp loaded -05:51:18,527 INFO kernel:pciehp 0000:00:17.0:pcie04: HPC vendor_id 15ad device_id 7a0 ss_vid 0 ss_did 0 -05:51:18,527 DEBUG kernel:pciehp 0000:00:17.0:pcie04: service driver pciehp loaded -05:51:18,527 INFO kernel:pciehp 0000:00:17.1:pcie04: HPC vendor_id 15ad device_id 7a0 ss_vid 0 ss_did 0 -05:51:18,527 DEBUG kernel:pciehp 0000:00:17.1:pcie04: service driver pciehp loaded -05:51:18,527 INFO kernel:pciehp 0000:00:17.2:pcie04: HPC vendor_id 15ad device_id 7a0 ss_vid 0 ss_did 0 -05:51:18,527 DEBUG kernel:pciehp 0000:00:17.2:pcie04: service driver pciehp loaded -05:51:18,527 INFO kernel:pciehp 0000:00:17.3:pcie04: HPC vendor_id 15ad device_id 7a0 ss_vid 0 ss_did 0 -05:51:18,527 DEBUG kernel:pciehp 0000:00:17.3:pcie04: service driver pciehp loaded -05:51:18,527 INFO kernel:pciehp 0000:00:17.4:pcie04: HPC vendor_id 15ad device_id 7a0 ss_vid 0 ss_did 0 -05:51:18,527 DEBUG kernel:pciehp 0000:00:17.4:pcie04: service driver pciehp loaded -05:51:18,527 INFO kernel:pciehp 0000:00:17.5:pcie04: HPC vendor_id 15ad device_id 7a0 ss_vid 0 ss_did 0 -05:51:18,527 DEBUG kernel:pciehp 0000:00:17.5:pcie04: service driver pciehp loaded -05:51:18,527 INFO kernel:pciehp 0000:00:17.6:pcie04: HPC vendor_id 15ad device_id 7a0 ss_vid 0 ss_did 0 -05:51:18,527 DEBUG kernel:pciehp 0000:00:17.6:pcie04: service driver pciehp loaded -05:51:18,527 INFO kernel:pciehp 0000:00:17.7:pcie04: HPC vendor_id 15ad device_id 7a0 ss_vid 0 ss_did 0 -05:51:18,527 DEBUG kernel:pciehp 0000:00:17.7:pcie04: service driver pciehp loaded -05:51:18,527 INFO kernel:pciehp 0000:00:18.0:pcie04: HPC vendor_id 15ad device_id 7a0 ss_vid 0 ss_did 0 -05:51:18,527 DEBUG kernel:pciehp 0000:00:18.0:pcie04: service driver pciehp loaded -05:51:18,527 INFO kernel:pciehp 0000:00:18.1:pcie04: HPC vendor_id 15ad device_id 7a0 ss_vid 0 ss_did 0 -05:51:18,527 DEBUG kernel:pciehp 0000:00:18.1:pcie04: service driver pciehp loaded -05:51:18,527 INFO kernel:pciehp 0000:00:18.2:pcie04: HPC vendor_id 15ad device_id 7a0 ss_vid 0 ss_did 0 -05:51:18,527 DEBUG kernel:pciehp 0000:00:18.2:pcie04: service driver pciehp loaded -05:51:18,527 INFO kernel:pciehp 0000:00:18.3:pcie04: HPC vendor_id 15ad device_id 7a0 ss_vid 0 ss_did 0 -05:51:18,527 DEBUG kernel:pciehp 0000:00:18.3:pcie04: service driver pciehp loaded -05:51:18,527 INFO kernel:pciehp 0000:00:18.4:pcie04: HPC vendor_id 15ad device_id 7a0 ss_vid 0 ss_did 0 -05:51:18,527 DEBUG kernel:pciehp 0000:00:18.4:pcie04: service driver pciehp loaded -05:51:18,527 INFO kernel:pciehp 0000:00:18.5:pcie04: HPC vendor_id 15ad device_id 7a0 ss_vid 0 ss_did 0 -05:51:18,527 DEBUG kernel:pciehp 0000:00:18.5:pcie04: service driver pciehp loaded -05:51:18,527 INFO kernel:pciehp 0000:00:18.6:pcie04: HPC vendor_id 15ad device_id 7a0 ss_vid 0 ss_did 0 -05:51:18,527 DEBUG kernel:pciehp 0000:00:18.6:pcie04: service driver pciehp loaded -05:51:18,527 INFO kernel:pciehp 0000:00:18.7:pcie04: HPC vendor_id 15ad device_id 7a0 ss_vid 0 ss_did 0 -05:51:18,527 DEBUG kernel:pciehp 0000:00:18.7:pcie04: service driver pciehp loaded -05:51:18,527 INFO kernel:pciehp: PCI Express Hot Plug Controller Driver version: 0.4 -05:51:18,527 INFO kernel:acpiphp: ACPI Hot Plug PCI Controller Driver version: 0.5 -05:51:18,527 INFO kernel:acpiphp: Slot [32] registered -05:51:18,527 INFO kernel:acpiphp: Slot [33] registered -05:51:18,527 INFO kernel:acpiphp: Slot [34] registered -05:51:18,527 INFO kernel:acpiphp: Slot [35] registered -05:51:18,527 INFO kernel:acpiphp: Slot [36] registered -05:51:18,527 INFO kernel:acpiphp: Slot [37] registered -05:51:18,527 INFO kernel:acpiphp: Slot [38] registered -05:51:18,527 INFO kernel:acpiphp: Slot [39] registered -05:51:18,527 INFO kernel:acpiphp: Slot [40] registered -05:51:18,527 INFO kernel:acpiphp: Slot [41] registered -05:51:18,527 INFO kernel:acpiphp: Slot [42] registered -05:51:18,527 INFO kernel:acpiphp: Slot [43] registered -05:51:18,527 INFO kernel:acpiphp: Slot [44] registered -05:51:18,527 INFO kernel:acpiphp: Slot [45] registered -05:51:18,527 INFO kernel:acpiphp: Slot [46] registered -05:51:18,527 INFO kernel:acpiphp: Slot [47] registered -05:51:18,527 INFO kernel:acpiphp: Slot [48] registered -05:51:18,527 INFO kernel:acpiphp: Slot [49] registered -05:51:18,527 INFO kernel:acpiphp: Slot [50] registered -05:51:18,527 INFO kernel:acpiphp: Slot [51] registered -05:51:18,527 INFO kernel:acpiphp: Slot [52] registered -05:51:18,527 INFO kernel:acpiphp: Slot [53] registered -05:51:18,527 INFO kernel:acpiphp: Slot [54] registered -05:51:18,527 INFO kernel:acpiphp: Slot [55] registered -05:51:18,527 INFO kernel:acpiphp: Slot [56] registered -05:51:18,527 INFO kernel:acpiphp: Slot [57] registered -05:51:18,527 INFO kernel:acpiphp: Slot [58] registered -05:51:18,527 INFO kernel:acpiphp: Slot [59] registered -05:51:18,527 INFO kernel:acpiphp: Slot [60] registered -05:51:18,527 INFO kernel:acpiphp: Slot [61] registered -05:51:18,527 INFO kernel:acpiphp: Slot [62] registered -05:51:18,527 INFO kernel:acpiphp: Slot [63] registered -05:51:18,527 WARNING kernel:acpiphp_glue: Slot 160 already registered by another hotplug driver -05:51:18,527 WARNING kernel:acpiphp_glue: Slot 192 already registered by another hotplug driver -05:51:18,527 WARNING kernel:acpiphp_glue: Slot 224 already registered by another hotplug driver -05:51:18,527 WARNING kernel:acpiphp_glue: Slot 256 already registered by another hotplug driver -05:51:18,527 WARNING kernel:acpiphp_glue: Slot 161 already registered by another hotplug driver -05:51:18,527 WARNING kernel:acpiphp_glue: Slot 162 already registered by another hotplug driver -05:51:18,527 WARNING kernel:acpiphp_glue: Slot 163 already registered by another hotplug driver -05:51:18,527 WARNING kernel:acpiphp_glue: Slot 164 already registered by another hotplug driver -05:51:18,527 WARNING kernel:acpiphp_glue: Slot 165 already registered by another hotplug driver -05:51:18,527 WARNING kernel:acpiphp_glue: Slot 166 already registered by another hotplug driver -05:51:18,527 WARNING kernel:acpiphp_glue: Slot 167 already registered by another hotplug driver -05:51:18,527 WARNING kernel:acpiphp_glue: Slot 193 already registered by another hotplug driver -05:51:18,527 WARNING kernel:acpiphp_glue: Slot 194 already registered by another hotplug driver -05:51:18,527 WARNING kernel:acpiphp_glue: Slot 195 already registered by another hotplug driver -05:51:18,527 WARNING kernel:acpiphp_glue: Slot 196 already registered by another hotplug driver -05:51:18,527 WARNING kernel:acpiphp_glue: Slot 197 already registered by another hotplug driver -05:51:18,527 WARNING kernel:acpiphp_glue: Slot 198 already registered by another hotplug driver -05:51:18,527 WARNING kernel:acpiphp_glue: Slot 199 already registered by another hotplug driver -05:51:18,527 WARNING kernel:acpiphp_glue: Slot 225 already registered by another hotplug driver -05:51:18,527 WARNING kernel:acpiphp_glue: Slot 226 already registered by another hotplug driver -05:51:18,527 WARNING kernel:acpiphp_glue: Slot 227 already registered by another hotplug driver -05:51:18,527 WARNING kernel:acpiphp_glue: Slot 228 already registered by another hotplug driver -05:51:18,527 WARNING kernel:acpiphp_glue: Slot 229 already registered by another hotplug driver -05:51:18,527 WARNING kernel:acpiphp_glue: Slot 230 already registered by another hotplug driver -05:51:18,527 WARNING kernel:acpiphp_glue: Slot 231 already registered by another hotplug driver -05:51:18,527 WARNING kernel:acpiphp_glue: Slot 257 already registered by another hotplug driver -05:51:18,527 WARNING kernel:acpiphp_glue: Slot 258 already registered by another hotplug driver -05:51:18,527 WARNING kernel:acpiphp_glue: Slot 259 already registered by another hotplug driver -05:51:18,527 WARNING kernel:acpiphp_glue: Slot 260 already registered by another hotplug driver -05:51:18,527 WARNING kernel:acpiphp_glue: Slot 261 already registered by another hotplug driver -05:51:18,527 WARNING kernel:acpiphp_glue: Slot 262 already registered by another hotplug driver -05:51:18,527 WARNING kernel:acpiphp_glue: Slot 263 already registered by another hotplug driver -05:51:18,527 INFO kernel:ipmi message handler version 39.2 -05:51:18,527 INFO kernel:IPMI System Interface driver. -05:51:18,527 INFO kernel:ipmi_si: Adding default-specified kcs state machine -05:51:18,527 INFO kernel:ipmi_si: Trying default-specified kcs state machine at i/o address 0xca2, slave address 0x0, irq 0 -05:51:18,527 INFO kernel:ipmi_si: Interface detection failed -05:51:18,527 INFO kernel:ipmi_si: Adding default-specified smic state machine -05:51:18,527 INFO kernel:ipmi_si: Trying default-specified smic state machine at i/o address 0xca9, slave address 0x0, irq 0 -05:51:18,527 INFO kernel:ipmi_si: Interface detection failed -05:51:18,527 INFO kernel:ipmi_si: Adding default-specified bt state machine -05:51:18,527 INFO kernel:ipmi_si: Trying default-specified bt state machine at i/o address 0xe4, slave address 0x0, irq 0 -05:51:18,527 INFO kernel:ipmi_si: Interface detection failed -05:51:18,527 WARNING kernel:ipmi_si: Unable to find any System Interface(s) -05:51:18,527 INFO kernel:ACPI: AC Adapter [ACAD] (on-line) -05:51:18,527 INFO kernel:input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input0 -05:51:18,527 INFO kernel:ACPI: Power Button [PWRF] -05:51:18,527 DEBUG kernel:ACPI: acpi_idle registered with cpuidle -05:51:18,527 WARNING kernel:ACPI Exception: AE_NOT_FOUND, No or invalid critical threshold (20090903/thermal-386) -05:51:18,527 INFO kernel:GHES: HEST is not enabled! -05:51:18,527 INFO kernel:Non-volatile memory driver v1.3 -05:51:18,527 INFO kernel:Linux agpgart interface v0.103 -05:51:18,527 INFO kernel:agpgart-intel 0000:00:00.0: Intel 440BX Chipset -05:51:18,527 INFO kernel:agpgart-intel 0000:00:00.0: AGP aperture is 256M @ 0x0 -05:51:18,527 INFO kernel:crash memory driver: version 1.1 -05:51:18,527 INFO kernel:Serial: 8250/16550 driver, 4 ports, IRQ sharing enabled -05:51:18,527 INFO kernel:serial8250: ttyS0 at I/O 0x3f8 (irq = 4) is a 16550A -05:51:18,527 INFO kernel:serial8250: ttyS1 at I/O 0x2f8 (irq = 3) is a 16550A -05:51:18,527 INFO kernel:00:0a: ttyS0 at I/O 0x3f8 (irq = 4) is a 16550A -05:51:18,527 INFO kernel:00:0b: ttyS1 at I/O 0x2f8 (irq = 3) is a 16550A -05:51:18,527 INFO kernel:brd: module loaded -05:51:18,527 INFO kernel:loop: module loaded -05:51:18,527 INFO kernel:input: Macintosh mouse button emulation as /devices/virtual/input/input1 -05:51:18,527 INFO kernel:Fixed MDIO Bus: probed -05:51:18,527 INFO kernel:ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver -05:51:18,527 INFO kernel:ohci_hcd: USB 1.1 'Open' Host Controller (OHCI) Driver -05:51:18,527 INFO kernel:uhci_hcd: USB Universal Host Controller Interface driver -05:51:18,527 INFO kernel:PNP: PS/2 Controller [PNP0303:KBC,PNP0f13:MOUS] at 0x60,0x64 irq 1,12 -05:51:18,527 INFO kernel:Refined TSC clocksource calibration: 2400.080 MHz. -05:51:18,527 INFO kernel:Switching to clocksource tsc -05:51:18,527 INFO kernel:serio: i8042 KBD port at 0x60,0x64 irq 1 -05:51:18,527 INFO kernel:serio: i8042 AUX port at 0x60,0x64 irq 12 -05:51:18,527 INFO kernel:mice: PS/2 mouse device common for all mice -05:51:18,527 INFO kernel:rtc_cmos 00:04: rtc core: registered rtc_cmos as rtc0 -05:51:18,527 INFO kernel:rtc0: alarms up to one month, y3k, 114 bytes nvram, hpet irqs -05:51:18,527 INFO kernel:cpuidle: using governor ladder -05:51:18,527 INFO kernel:cpuidle: using governor menu -05:51:18,527 INFO kernel:EFI Variables Facility v0.08 2004-May-17 -05:51:18,527 INFO kernel:usbcore: registered new interface driver hiddev -05:51:18,527 INFO kernel:usbcore: registered new interface driver usbhid -05:51:18,527 INFO kernel:usbhid: v2.6:USB HID core driver -05:51:18,527 INFO kernel:GRE over IPv4 demultiplexor driver -05:51:18,527 INFO kernel:TCP cubic registered -05:51:18,527 INFO kernel:input: AT Translated Set 2 keyboard as /devices/platform/i8042/serio0/input/input2 -05:51:18,527 INFO kernel:Initializing XFRM netlink socket -05:51:18,527 INFO kernel:NET: Registered protocol family 17 -05:51:18,527 WARNING kernel:registered taskstats version 1 -05:51:18,527 INFO kernel:input: ImPS/2 Generic Wheel Mouse as /devices/platform/i8042/serio1/input/input3 -05:51:18,527 INFO kernel:rtc_cmos 00:04: setting system clock to 2002-05-11 05:51:18 UTC (1021096278) -05:51:18,527 INFO kernel:Initalizing network drop monitor service -05:51:18,527 INFO kernel:Freeing unused kernel memory: 1276k freed -05:51:18,527 INFO kernel:Write protecting the kernel read-only data: 10240k -05:51:18,527 INFO kernel:Freeing unused kernel memory: 800k freed -05:51:18,527 INFO kernel:Freeing unused kernel memory: 1588k freed -05:51:20,557 INFO kernel:squashfs: version 4.0 (2009/01/31) Phillip Lougher -05:51:20,568 INFO kernel:Loading iSCSI transport class v2.0-870. -05:51:20,587 NOTICE kernel:iscsi: registered transport (tcp) -05:51:20,594 INFO kernel:Floppy drive(s): fd0 is 1.44M -05:51:20,605 INFO kernel:FDC 0 is a post-1991 82077 -05:51:20,610 INFO kernel:BIOS EDD facility v0.16 2004-Jun-25, 2 devices found -05:51:20,614 INFO kernel:input: PC Speaker as /devices/platform/pcspkr/input/input4 -05:51:20,620 INFO kernel:No iBFT detected. -05:51:20,655 INFO kernel:NET: Registered protocol family 10 -05:51:20,657 INFO kernel:lo: Disabled Privacy Extensions -05:51:20,739 DEBUG kernel:ata_piix 0000:00:07.1: version 2.13 -05:51:20,740 INFO kernel:scsi0 : ata_piix -05:51:20,740 INFO kernel:scsi1 : ata_piix -05:51:20,740 INFO kernel:ata1: PATA max UDMA/33 cmd 0x1f0 ctl 0x3f6 bmdma 0x10c0 irq 14 -05:51:20,740 INFO kernel:ata2: PATA max UDMA/33 cmd 0x170 ctl 0x376 bmdma 0x10c8 irq 15 -05:51:20,750 ERR udevd-work: device node '/dev/rtc' already exists, link to '/dev/rtc0' will not overwrite it -05:51:20,926 INFO kernel:ata2.00: ATAPI: VMware Virtual IDE CDROM Drive, 00000001, max UDMA/33 -05:51:20,934 INFO kernel:ata2.00: configured for UDMA/33 -05:51:20,934 NOTICE kernel:scsi 1:0:0:0: CD-ROM NECVMWar VMware IDE CDR10 1.00 PQ: 0 ANSI: 5 -05:51:20,959 INFO kernel:Fusion MPT base driver 3.04.20 -05:51:20,959 INFO kernel:Copyright (c) 1999-2008 LSI Corporation -05:51:20,971 INFO kernel:Fusion MPT SPI Host driver 3.04.20 -05:51:20,971 DEBUG kernel: alloc irq_desc for 17 on node -1 -05:51:20,971 DEBUG kernel: alloc kstat_irqs on node -1 -05:51:20,971 INFO kernel:mptspi 0000:00:10.0: PCI INT A -> GSI 17 (level, low) -> IRQ 17 -05:51:20,972 INFO kernel:mptbase: ioc0: Initiating bringup -05:51:20,990 INFO kernel:ioc0: LSI53C1030 B0: Capabilities={Initiator} -05:51:21,031 INFO kernel:scsi2 : ioc0: LSI53C1030 B0, FwRev=01032920h, Ports=1, MaxQ=128, IRQ=17 -05:51:21,061 NOTICE kernel:scsi 2:0:0:0: Direct-Access VMware Virtual disk 1.0 PQ: 0 ANSI: 2 -05:51:21,061 INFO kernel:scsi target2:0:0: Beginning Domain Validation -05:51:21,061 INFO kernel:scsi target2:0:0: Domain Validation skipping write tests -05:51:21,061 INFO kernel:scsi target2:0:0: Ending Domain Validation -05:51:21,061 INFO kernel:scsi target2:0:0: FAST-40 WIDE SCSI 80.0 MB/s ST (25 ns, offset 127) -05:51:21,061 NOTICE kernel:scsi 2:0:1:0: Direct-Access VMware Virtual disk 1.0 PQ: 0 ANSI: 2 -05:51:21,061 INFO kernel:scsi target2:0:1: Beginning Domain Validation -05:51:21,061 INFO kernel:scsi target2:0:1: Domain Validation skipping write tests -05:51:21,061 INFO kernel:scsi target2:0:1: Ending Domain Validation -05:51:21,061 INFO kernel:scsi target2:0:1: FAST-40 WIDE SCSI 80.0 MB/s ST (25 ns, offset 127) -05:51:21,088 WARNING kernel:sr0: scsi3-mmc drive: 1x/1x writer dvd-ram cd/rw xa/form2 cdda tray -05:51:21,088 INFO kernel:Uniform CD-ROM driver Revision: 3.20 -05:51:21,088 DEBUG kernel:sr 1:0:0:0: Attached scsi CD-ROM sr0 -05:51:21,098 INFO kernel:e1000: Intel(R) PRO/1000 Network Driver - version 7.3.21-k8-NAPI -05:51:21,098 INFO kernel:e1000: Copyright (c) 1999-2006 Intel Corporation. -05:51:21,098 DEBUG kernel: alloc irq_desc for 18 on node -1 -05:51:21,098 DEBUG kernel: alloc kstat_irqs on node -1 -05:51:21,098 INFO kernel:e1000 0000:02:00.0: PCI INT A -> GSI 18 (level, low) -> IRQ 18 -05:51:21,098 DEBUG kernel:e1000 0000:02:00.0: setting latency timer to 64 -05:51:21,447 INFO kernel:e1000 0000:02:00.0: eth0: (PCI:66MHz:32-bit) 00:0c:29:21:89:af -05:51:21,447 INFO kernel:e1000 0000:02:00.0: eth0: Intel(R) PRO/1000 Network Connection -05:51:21,447 DEBUG kernel: alloc irq_desc for 19 on node -1 -05:51:21,447 DEBUG kernel: alloc kstat_irqs on node -1 -05:51:21,447 INFO kernel:e1000 0000:02:01.0: PCI INT A -> GSI 19 (level, low) -> IRQ 19 -05:51:21,447 DEBUG kernel:e1000 0000:02:01.0: setting latency timer to 64 -05:51:21,793 INFO kernel:e1000 0000:02:01.0: eth1: (PCI:66MHz:32-bit) 00:0c:29:21:89:b9 -05:51:21,793 INFO kernel:e1000 0000:02:01.0: eth1: Intel(R) PRO/1000 Network Connection -05:51:21,793 DEBUG kernel: alloc irq_desc for 16 on node -1 -05:51:21,793 DEBUG kernel: alloc kstat_irqs on node -1 -05:51:21,793 INFO kernel:e1000 0000:02:02.0: PCI INT A -> GSI 16 (level, low) -> IRQ 16 -05:51:21,793 DEBUG kernel:e1000 0000:02:02.0: setting latency timer to 64 -05:51:22,142 INFO kernel:e1000 0000:02:02.0: eth2: (PCI:66MHz:32-bit) 00:0c:29:21:89:c3 -05:51:22,142 INFO kernel:e1000 0000:02:02.0: eth2: Intel(R) PRO/1000 Network Connection -05:51:22,142 INFO kernel:e1000 0000:02:03.0: PCI INT A -> GSI 17 (level, low) -> IRQ 17 -05:51:22,142 DEBUG kernel:e1000 0000:02:03.0: setting latency timer to 64 -05:51:22,485 INFO kernel:e1000 0000:02:03.0: eth3: (PCI:66MHz:32-bit) 00:0c:29:21:89:cd -05:51:22,485 INFO kernel:e1000 0000:02:03.0: eth3: Intel(R) PRO/1000 Network Connection -05:51:22,515 NOTICE kernel:sd 2:0:0:0: [sda] 33554432 512-byte logical blocks: (17.1 GB/16.0 GiB) -05:51:22,515 NOTICE kernel:sd 2:0:0:0: [sda] Write Protect is off -05:51:22,515 DEBUG kernel:sd 2:0:0:0: [sda] Mode Sense: 61 00 00 00 -05:51:22,515 NOTICE kernel:sd 2:0:0:0: [sda] Cache data unavailable -05:51:22,515 ERR kernel:sd 2:0:0:0: [sda] Assuming drive cache: write through -05:51:22,515 NOTICE kernel:sd 2:0:0:0: [sda] Cache data unavailable -05:51:22,515 ERR kernel:sd 2:0:0:0: [sda] Assuming drive cache: write through -05:51:22,516 INFO kernel: sda: -05:51:22,516 NOTICE kernel:sd 2:0:1:0: [sdb] 33554432 512-byte logical blocks: (17.1 GB/16.0 GiB) -05:51:22,516 NOTICE kernel:sd 2:0:1:0: [sdb] Write Protect is off -05:51:22,516 DEBUG kernel:sd 2:0:1:0: [sdb] Mode Sense: 61 00 00 00 -05:51:22,516 NOTICE kernel:sd 2:0:1:0: [sdb] Cache data unavailable -05:51:22,516 ERR kernel:sd 2:0:1:0: [sdb] Assuming drive cache: write through -05:51:22,516 NOTICE kernel:sd 2:0:1:0: [sdb] Cache data unavailable -05:51:22,516 ERR kernel:sd 2:0:1:0: [sdb] Assuming drive cache: write through -05:51:22,522 INFO kernel: sdb: -05:51:22,522 NOTICE kernel:sd 2:0:1:0: [sdb] Cache data unavailable -05:51:22,522 ERR kernel:sd 2:0:1:0: [sdb] Assuming drive cache: write through -05:51:22,522 NOTICE kernel:sd 2:0:1:0: [sdb] Attached SCSI disk -05:51:22,577 WARNING kernel: sda1 sda2 sda3 -05:51:22,598 NOTICE kernel:sd 2:0:0:0: [sda] Cache data unavailable -05:51:22,598 ERR kernel:sd 2:0:0:0: [sda] Assuming drive cache: write through -05:51:22,598 NOTICE kernel:sd 2:0:0:0: [sda] Attached SCSI disk -05:51:22,606 NOTICE kernel:sr 1:0:0:0: Attached scsi generic sg0 type 5 -05:51:22,606 NOTICE kernel:sd 2:0:0:0: Attached scsi generic sg1 type 0 -05:51:22,606 NOTICE kernel:sd 2:0:1:0: Attached scsi generic sg2 type 0 -05:51:28,012 ERR udevd-work: device node '/dev/rtc' already exists, link to '/dev/rtc0' will not overwrite it -05:51:46,181 INFO NetworkManager: NetworkManager (version 0.8.1-66.el6) is starting... -05:51:46,181 INFO NetworkManager: Read config file /etc/NetworkManager/NetworkManager.conf -05:51:46,183 INFO NetworkManager: trying to start the modem manager... -05:51:46,186 INFO NetworkManager: monitoring kernel firmware directory '/lib/firmware'. -05:51:46,186 INFO NetworkManager: Bonding/Bridging/VLAN support enabled -05:51:46,188 NOTICE NetworkManager: ifcfg-rh: Acquired D-Bus service com.redhat.ifcfgrh1 -05:51:46,188 INFO NetworkManager: Loaded plugin ifcfg-rh: (c) 2007 - 2008 Red Hat, Inc. To report bugs please use the NetworkManager mailing list. -05:51:46,188 INFO NetworkManager: Loaded plugin keyfile: (c) 2007 - 2008 Red Hat, Inc. To report bugs please use the NetworkManager mailing list. -05:51:46,188 NOTICE NetworkManager: ifcfg-rh: parsing /etc/sysconfig/network-scripts/ifcfg-eth3 ... -05:51:46,190 NOTICE NetworkManager: ifcfg-rh: read connection 'System eth3' -05:51:46,190 NOTICE NetworkManager: ifcfg-rh: parsing /etc/sysconfig/network-scripts/ifcfg-eth2 ... -05:51:46,190 NOTICE NetworkManager: ifcfg-rh: read connection 'System eth2' -05:51:46,190 NOTICE NetworkManager: ifcfg-rh: parsing /etc/sysconfig/network-scripts/ifcfg-eth1 ... -05:51:46,191 NOTICE NetworkManager: ifcfg-rh: read connection 'System eth1' -05:51:46,191 NOTICE NetworkManager: ifcfg-rh: parsing /etc/sysconfig/network-scripts/ifcfg-eth0 ... -05:51:46,192 NOTICE NetworkManager: ifcfg-rh: read connection 'System eth0' -05:51:46,192 WARNING NetworkManager: Can not read directory '/etc/NetworkManager/system-connections': Error opening directory '/etc/NetworkManager/system-connections': No such file or directory -05:51:46,194 INFO NetworkManager: WiFi enabled by radio killswitch; enabled by state file -05:51:46,194 INFO NetworkManager: WWAN enabled by radio killswitch; enabled by state file -05:51:46,194 INFO NetworkManager: WiMAX enabled by radio killswitch; enabled by state file -05:51:46,194 INFO NetworkManager: Networking is enabled by state file -05:51:46,212 INFO kernel:802.1Q VLAN Support v1.8 Ben Greear -05:51:46,212 INFO kernel:All bugs added by David S. Miller -05:51:46,217 INFO kernel:e1000: eth0 NIC Link is Up 1000 Mbps Full Duplex, Flow Control: None -05:51:46,218 INFO NetworkManager: (eth0): carrier is OFF -05:51:46,218 INFO NetworkManager: (eth0): new Ethernet device (driver: 'e1000' ifindex: 2) -05:51:46,218 INFO NetworkManager: (eth0): exported as /org/freedesktop/NetworkManager/Devices/0 -05:51:46,218 INFO NetworkManager: (eth0): now managed -05:51:46,218 INFO NetworkManager: (eth0): device state change: 1 -> 2 (reason 2) -05:51:46,218 INFO NetworkManager: (eth0): bringing up device. -05:51:46,221 INFO kernel:8021q: adding VLAN 0 to HW filter on device eth0 -05:51:46,222 INFO NetworkManager: (eth0): carrier now ON (device state 2) -05:51:46,222 INFO NetworkManager: (eth0): preparing device. -05:51:46,222 INFO NetworkManager: (eth0): deactivating device (reason: 2). -05:51:46,223 INFO NetworkManager: (eth1): carrier is OFF -05:51:46,224 INFO NetworkManager: (eth1): new Ethernet device (driver: 'e1000' ifindex: 3) -05:51:46,224 INFO NetworkManager: (eth1): exported as /org/freedesktop/NetworkManager/Devices/1 -05:51:46,224 INFO NetworkManager: (eth1): now managed -05:51:46,224 INFO NetworkManager: (eth1): device state change: 1 -> 2 (reason 2) -05:51:46,224 INFO NetworkManager: (eth1): bringing up device. -05:51:46,229 INFO kernel:e1000: eth1 NIC Link is Up 1000 Mbps Full Duplex, Flow Control: None -05:51:46,233 INFO kernel:8021q: adding VLAN 0 to HW filter on device eth1 -05:51:46,233 INFO NetworkManager: (eth1): carrier now ON (device state 2) -05:51:46,234 INFO NetworkManager: (eth1): preparing device. -05:51:46,234 INFO NetworkManager: (eth1): deactivating device (reason: 2). -05:51:46,235 INFO NetworkManager: (eth2): carrier is OFF -05:51:46,235 INFO NetworkManager: (eth2): new Ethernet device (driver: 'e1000' ifindex: 4) -05:51:46,235 INFO NetworkManager: (eth2): exported as /org/freedesktop/NetworkManager/Devices/2 -05:51:46,235 INFO NetworkManager: (eth2): now managed -05:51:46,235 INFO NetworkManager: (eth2): device state change: 1 -> 2 (reason 2) -05:51:46,235 INFO NetworkManager: (eth2): bringing up device. -05:51:46,240 INFO kernel:e1000: eth2 NIC Link is Up 1000 Mbps Full Duplex, Flow Control: None -05:51:46,244 INFO kernel:8021q: adding VLAN 0 to HW filter on device eth2 -05:51:46,245 INFO NetworkManager: (eth2): carrier now ON (device state 2) -05:51:46,245 INFO NetworkManager: (eth2): preparing device. -05:51:46,245 INFO NetworkManager: (eth2): deactivating device (reason: 2). -05:51:46,246 INFO NetworkManager: (eth3): carrier is OFF -05:51:46,247 INFO NetworkManager: (eth3): new Ethernet device (driver: 'e1000' ifindex: 5) -05:51:46,247 INFO NetworkManager: (eth3): exported as /org/freedesktop/NetworkManager/Devices/3 -05:51:46,247 INFO NetworkManager: (eth3): now managed -05:51:46,247 INFO NetworkManager: (eth3): device state change: 1 -> 2 (reason 2) -05:51:46,247 INFO NetworkManager: (eth3): bringing up device. -05:51:46,251 INFO kernel:e1000: eth3 NIC Link is Up 1000 Mbps Full Duplex, Flow Control: None -05:51:46,255 INFO kernel:8021q: adding VLAN 0 to HW filter on device eth3 -05:51:46,256 INFO NetworkManager: (eth3): carrier now ON (device state 2) -05:51:46,256 INFO NetworkManager: (eth3): preparing device. -05:51:46,256 INFO NetworkManager: (eth3): deactivating device (reason: 2). -05:51:46,258 INFO NetworkManager: (eth0): carrier now OFF (device state 2) -05:51:46,258 INFO NetworkManager: (eth0): carrier now ON (device state 2) -05:51:46,258 WARNING NetworkManager: (nm-device.c:4447):nm_device_queue_state: runtime check failed: (priv->queued_state.id == 0) -05:51:46,258 INFO NetworkManager: (eth1): carrier now OFF (device state 2) -05:51:46,259 INFO NetworkManager: (eth1): carrier now ON (device state 2) -05:51:46,259 WARNING NetworkManager: (nm-device.c:4447):nm_device_queue_state: runtime check failed: (priv->queued_state.id == 0) -05:51:46,259 INFO NetworkManager: (eth2): carrier now OFF (device state 2) -05:51:46,259 INFO NetworkManager: (eth2): carrier now ON (device state 2) -05:51:46,259 WARNING NetworkManager: (nm-device.c:4447):nm_device_queue_state: runtime check failed: (priv->queued_state.id == 0) -05:51:46,259 INFO NetworkManager: (eth3): carrier now OFF (device state 2) -05:51:46,259 INFO NetworkManager: (eth3): carrier now ON (device state 2) -05:51:46,259 WARNING NetworkManager: (nm-device.c:4447):nm_device_queue_state: runtime check failed: (priv->queued_state.id == 0) -05:51:46,260 INFO NetworkManager: Trying to start the supplicant... -05:51:46,261 INFO NetworkManager: (eth0): device state change: 2 -> 3 (reason 40) -05:51:46,261 INFO NetworkManager: (eth1): device state change: 2 -> 3 (reason 40) -05:51:46,261 INFO NetworkManager: (eth2): device state change: 2 -> 3 (reason 40) -05:51:46,262 INFO NetworkManager: (eth3): device state change: 2 -> 3 (reason 40) -05:51:46,268 INFO NetworkManager: wpa_supplicant started -05:51:47,181 WARNING NetworkManager: error requesting auth for org.freedesktop.NetworkManager.enable-disable-network: (26) Remote Exception invoking org.freedesktop.PolicyKit1.Authority.CheckAuthorization() on /org/freedesktop/PolicyKit1/Authority at name org.freedesktop.PolicyKit1: org.freedesktop.DBus.Error.Spawn.ExecFailed: Cannot launch daemon, file not found or permissions invalid -05:51:47,182 WARNING NetworkManager: error requesting auth for org.freedesktop.NetworkManager.sleep-wake: (26) Remote Exception invoking org.freedesktop.PolicyKit1.Authority.CheckAuthorization() on /org/freedesktop/PolicyKit1/Authority at name org.freedesktop.PolicyKit1: org.freedesktop.DBus.Error.Spawn.ExecFailed: Cannot launch daemon, file not found or permissions invalid -05:51:47,182 WARNING NetworkManager: error requesting auth for org.freedesktop.NetworkManager.enable-disable-wifi: (26) Remote Exception invoking org.freedesktop.PolicyKit1.Authority.CheckAuthorization() on /org/freedesktop/PolicyKit1/Authority at name org.freedesktop.PolicyKit1: org.freedesktop.DBus.Error.Spawn.ExecFailed: Cannot launch daemon, file not found or permissions invalid -05:51:47,182 WARNING NetworkManager: error requesting auth for org.freedesktop.NetworkManager.enable-disable-wwan: (26) Remote Exception invoking org.freedesktop.PolicyKit1.Authority.CheckAuthorization() on /org/freedesktop/PolicyKit1/Authority at name org.freedesktop.PolicyKit1: org.freedesktop.DBus.Error.Spawn.ExecFailed: Cannot launch daemon, file not found or permissions invalid -05:51:47,182 WARNING NetworkManager: error requesting auth for org.freedesktop.NetworkManager.use-user-connections: (26) Remote Exception invoking org.freedesktop.PolicyKit1.Authority.CheckAuthorization() on /org/freedesktop/PolicyKit1/Authority at name org.freedesktop.PolicyKit1: org.freedesktop.DBus.Error.Spawn.ExecFailed: Cannot launch daemon, file not found or permissions invalid -05:51:47,182 WARNING NetworkManager: error requesting auth for org.freedesktop.NetworkManager.network-control: (26) Remote Exception invoking org.freedesktop.PolicyKit1.Authority.CheckAuthorization() on /org/freedesktop/PolicyKit1/Authority at name org.freedesktop.PolicyKit1: org.freedesktop.DBus.Error.Spawn.ExecFailed: Cannot launch daemon, file not found or permissions invalid -05:51:47,182 WARNING NetworkManager: error requesting auth for org.freedesktop.network-manager-settings.system.wifi.share.open: (26) Remote Exception invoking org.freedesktop.PolicyKit1.Authority.CheckAuthorization() on /org/freedesktop/PolicyKit1/Authority at name org.freedesktop.PolicyKit1: org.freedesktop.DBus.Error.Spawn.ExecFailed: Cannot launch daemon, file not found or permissions invalid -05:51:47,183 WARNING NetworkManager: error requesting auth for org.freedesktop.network-manager-settings.system.wifi.share.protected: (26) Remote Exception invoking org.freedesktop.PolicyKit1.Authority.CheckAuthorization() on /org/freedesktop/PolicyKit1/Authority at name org.freedesktop.PolicyKit1: org.freedesktop.DBus.Error.Spawn.ExecFailed: Cannot launch daemon, file not found or permissions invalid -05:51:47,191 WARNING NetworkManager: error requesting auth for org.freedesktop.NetworkManager.enable-disable-network: (26) Remote Exception invoking org.freedesktop.PolicyKit1.Authority.CheckAuthorization() on /org/freedesktop/PolicyKit1/Authority at name org.freedesktop.PolicyKit1: org.freedesktop.DBus.Error.Spawn.ExecFailed: Cannot launch daemon, file not found or permissions invalid -05:51:47,191 WARNING NetworkManager: error requesting auth for org.freedesktop.NetworkManager.sleep-wake: (26) Remote Exception invoking org.freedesktop.PolicyKit1.Authority.CheckAuthorization() on /org/freedesktop/PolicyKit1/Authority at name org.freedesktop.PolicyKit1: org.freedesktop.DBus.Error.Spawn.ExecFailed: Cannot launch daemon, file not found or permissions invalid -05:51:47,191 WARNING NetworkManager: error requesting auth for org.freedesktop.NetworkManager.enable-disable-wifi: (26) Remote Exception invoking org.freedesktop.PolicyKit1.Authority.CheckAuthorization() on /org/freedesktop/PolicyKit1/Authority at name org.freedesktop.PolicyKit1: org.freedesktop.DBus.Error.Spawn.ExecFailed: Cannot launch daemon, file not found or permissions invalid -05:51:47,191 WARNING NetworkManager: error requesting auth for org.freedesktop.NetworkManager.enable-disable-wwan: (26) Remote Exception invoking org.freedesktop.PolicyKit1.Authority.CheckAuthorization() on /org/freedesktop/PolicyKit1/Authority at name org.freedesktop.PolicyKit1: org.freedesktop.DBus.Error.Spawn.ExecFailed: Cannot launch daemon, file not found or permissions invalid -05:51:47,191 WARNING NetworkManager: error requesting auth for org.freedesktop.NetworkManager.use-user-connections: (26) Remote Exception invoking org.freedesktop.PolicyKit1.Authority.CheckAuthorization() on /org/freedesktop/PolicyKit1/Authority at name org.freedesktop.PolicyKit1: org.freedesktop.DBus.Error.Spawn.ExecFailed: Cannot launch daemon, file not found or permissions invalid -05:51:47,191 WARNING NetworkManager: error requesting auth for org.freedesktop.NetworkManager.network-control: (26) Remote Exception invoking org.freedesktop.PolicyKit1.Authority.CheckAuthorization() on /org/freedesktop/PolicyKit1/Authority at name org.freedesktop.PolicyKit1: org.freedesktop.DBus.Error.Spawn.ExecFailed: Cannot launch daemon, file not found or permissions invalid -05:51:47,192 WARNING NetworkManager: error requesting auth for org.freedesktop.network-manager-settings.system.wifi.share.open: (26) Remote Exception invoking org.freedesktop.PolicyKit1.Authority.CheckAuthorization() on /org/freedesktop/PolicyKit1/Authority at name org.freedesktop.PolicyKit1: org.freedesktop.DBus.Error.Spawn.ExecFailed: Cannot launch daemon, file not found or permissions invalid -05:51:47,192 WARNING NetworkManager: error requesting auth for org.freedesktop.network-manager-settings.system.wifi.share.protected: (26) Remote Exception invoking org.freedesktop.PolicyKit1.Authority.CheckAuthorization() on /org/freedesktop/PolicyKit1/Authority at name org.freedesktop.PolicyKit1: org.freedesktop.DBus.Error.Spawn.ExecFailed: Cannot launch daemon, file not found or permissions invalid -05:51:47,200 WARNING NetworkManager: error requesting auth for org.freedesktop.NetworkManager.enable-disable-network: (26) Remote Exception invoking org.freedesktop.PolicyKit1.Authority.CheckAuthorization() on /org/freedesktop/PolicyKit1/Authority at name org.freedesktop.PolicyKit1: org.freedesktop.DBus.Error.Spawn.ExecFailed: Cannot launch daemon, file not found or permissions invalid -05:51:47,200 WARNING NetworkManager: error requesting auth for org.freedesktop.NetworkManager.sleep-wake: (26) Remote Exception invoking org.freedesktop.PolicyKit1.Authority.CheckAuthorization() on /org/freedesktop/PolicyKit1/Authority at name org.freedesktop.PolicyKit1: org.freedesktop.DBus.Error.Spawn.ExecFailed: Cannot launch daemon, file not found or permissions invalid -05:51:47,200 WARNING NetworkManager: error requesting auth for org.freedesktop.NetworkManager.enable-disable-wifi: (26) Remote Exception invoking org.freedesktop.PolicyKit1.Authority.CheckAuthorization() on /org/freedesktop/PolicyKit1/Authority at name org.freedesktop.PolicyKit1: org.freedesktop.DBus.Error.Spawn.ExecFailed: Cannot launch daemon, file not found or permissions invalid -05:51:47,200 WARNING NetworkManager: error requesting auth for org.freedesktop.NetworkManager.enable-disable-wwan: (26) Remote Exception invoking org.freedesktop.PolicyKit1.Authority.CheckAuthorization() on /org/freedesktop/PolicyKit1/Authority at name org.freedesktop.PolicyKit1: org.freedesktop.DBus.Error.Spawn.ExecFailed: Cannot launch daemon, file not found or permissions invalid -05:51:47,200 WARNING NetworkManager: error requesting auth for org.freedesktop.NetworkManager.use-user-connections: (26) Remote Exception invoking org.freedesktop.PolicyKit1.Authority.CheckAuthorization() on /org/freedesktop/PolicyKit1/Authority at name org.freedesktop.PolicyKit1: org.freedesktop.DBus.Error.Spawn.ExecFailed: Cannot launch daemon, file not found or permissions invalid -05:51:47,201 WARNING NetworkManager: error requesting auth for org.freedesktop.NetworkManager.network-control: (26) Remote Exception invoking org.freedesktop.PolicyKit1.Authority.CheckAuthorization() on /org/freedesktop/PolicyKit1/Authority at name org.freedesktop.PolicyKit1: org.freedesktop.DBus.Error.Spawn.ExecFailed: Cannot launch daemon, file not found or permissions invalid -05:51:47,201 WARNING NetworkManager: error requesting auth for org.freedesktop.network-manager-settings.system.wifi.share.open: (26) Remote Exception invoking org.freedesktop.PolicyKit1.Authority.CheckAuthorization() on /org/freedesktop/PolicyKit1/Authority at name org.freedesktop.PolicyKit1: org.freedesktop.DBus.Error.Spawn.ExecFailed: Cannot launch daemon, file not found or permissions invalid -05:51:47,201 WARNING NetworkManager: error requesting auth for org.freedesktop.network-manager-settings.system.wifi.share.protected: (26) Remote Exception invoking org.freedesktop.PolicyKit1.Authority.CheckAuthorization() on /org/freedesktop/PolicyKit1/Authority at name org.freedesktop.PolicyKit1: org.freedesktop.DBus.Error.Spawn.ExecFailed: Cannot launch daemon, file not found or permissions invalid -05:51:47,212 WARNING NetworkManager: error requesting auth for org.freedesktop.NetworkManager.enable-disable-network: (26) Remote Exception invoking org.freedesktop.PolicyKit1.Authority.CheckAuthorization() on /org/freedesktop/PolicyKit1/Authority at name org.freedesktop.PolicyKit1: org.freedesktop.DBus.Error.Spawn.ExecFailed: Cannot launch daemon, file not found or permissions invalid -05:51:47,212 WARNING NetworkManager: error requesting auth for org.freedesktop.NetworkManager.sleep-wake: (26) Remote Exception invoking org.freedesktop.PolicyKit1.Authority.CheckAuthorization() on /org/freedesktop/PolicyKit1/Authority at name org.freedesktop.PolicyKit1: org.freedesktop.DBus.Error.Spawn.ExecFailed: Cannot launch daemon, file not found or permissions invalid -05:51:47,212 WARNING NetworkManager: error requesting auth for org.freedesktop.NetworkManager.enable-disable-wifi: (26) Remote Exception invoking org.freedesktop.PolicyKit1.Authority.CheckAuthorization() on /org/freedesktop/PolicyKit1/Authority at name org.freedesktop.PolicyKit1: org.freedesktop.DBus.Error.Spawn.ExecFailed: Cannot launch daemon, file not found or permissions invalid -05:51:47,212 WARNING NetworkManager: error requesting auth for org.freedesktop.NetworkManager.enable-disable-wwan: (26) Remote Exception invoking org.freedesktop.PolicyKit1.Authority.CheckAuthorization() on /org/freedesktop/PolicyKit1/Authority at name org.freedesktop.PolicyKit1: org.freedesktop.DBus.Error.Spawn.ExecFailed: Cannot launch daemon, file not found or permissions invalid -05:51:47,212 WARNING NetworkManager: error requesting auth for org.freedesktop.NetworkManager.use-user-connections: (26) Remote Exception invoking org.freedesktop.PolicyKit1.Authority.CheckAuthorization() on /org/freedesktop/PolicyKit1/Authority at name org.freedesktop.PolicyKit1: org.freedesktop.DBus.Error.Spawn.ExecFailed: Cannot launch daemon, file not found or permissions invalid -05:51:47,212 WARNING NetworkManager: error requesting auth for org.freedesktop.NetworkManager.network-control: (26) Remote Exception invoking org.freedesktop.PolicyKit1.Authority.CheckAuthorization() on /org/freedesktop/PolicyKit1/Authority at name org.freedesktop.PolicyKit1: org.freedesktop.DBus.Error.Spawn.ExecFailed: Cannot launch daemon, file not found or permissions invalid -05:51:47,213 WARNING NetworkManager: error requesting auth for org.freedesktop.network-manager-settings.system.wifi.share.open: (26) Remote Exception invoking org.freedesktop.PolicyKit1.Authority.CheckAuthorization() on /org/freedesktop/PolicyKit1/Authority at name org.freedesktop.PolicyKit1: org.freedesktop.DBus.Error.Spawn.ExecFailed: Cannot launch daemon, file not found or permissions invalid -05:51:47,213 WARNING NetworkManager: error requesting auth for org.freedesktop.network-manager-settings.system.wifi.share.protected: (26) Remote Exception invoking org.freedesktop.PolicyKit1.Authority.CheckAuthorization() on /org/freedesktop/PolicyKit1/Authority at name org.freedesktop.PolicyKit1: org.freedesktop.DBus.Error.Spawn.ExecFailed: Cannot launch daemon, file not found or permissions invalid -05:51:48,220 NOTICE NetworkManager: ifcfg-rh: updating /etc/sysconfig/network-scripts/ifcfg-eth0 -05:51:48,223 INFO NetworkManager: Auto-activating connection 'System eth0'. -05:51:48,224 INFO NetworkManager: Activation (eth0) starting connection 'System eth0' -05:51:48,224 INFO NetworkManager: (eth0): device state change: 3 -> 4 (reason 0) -05:51:48,224 INFO NetworkManager: Activation (eth0) Stage 1 of 5 (Device Prepare) scheduled... -05:51:48,224 INFO NetworkManager: Activation (eth0) Stage 1 of 5 (Device Prepare) started... -05:51:48,224 INFO NetworkManager: Activation (eth0) Stage 2 of 5 (Device Configure) scheduled... -05:51:48,225 INFO NetworkManager: Activation (eth0) Stage 1 of 5 (Device Prepare) complete. -05:51:48,225 INFO NetworkManager: Activation (eth0) Stage 2 of 5 (Device Configure) starting... -05:51:48,225 INFO NetworkManager: (eth0): device state change: 4 -> 5 (reason 0) -05:51:48,225 INFO NetworkManager: Activation (eth0) Stage 2 of 5 (Device Configure) successful. -05:51:48,225 INFO NetworkManager: Activation (eth0) Stage 3 of 5 (IP Configure Start) scheduled. -05:51:48,225 INFO NetworkManager: Activation (eth0) Stage 2 of 5 (Device Configure) complete. -05:51:48,225 INFO NetworkManager: Activation (eth0) Stage 3 of 5 (IP Configure Start) started... -05:51:48,225 INFO NetworkManager: (eth0): device state change: 5 -> 7 (reason 0) -05:51:48,225 INFO NetworkManager: Activation (eth0) Beginning DHCPv4 transaction -05:51:48,228 INFO dhclient: Internet Systems Consortium DHCP Client 4.1.1-P1 -05:51:48,228 INFO NetworkManager: dhclient started with pid 670 -05:51:48,228 INFO NetworkManager: Activation (eth0) DHCPv4 will time out in 45 seconds -05:51:48,228 INFO NetworkManager: Activation (eth0) Stage 3 of 5 (IP Configure Start) complete. -05:51:48,228 INFO dhclient: Copyright 2004-2010 Internet Systems Consortium. -05:51:48,228 INFO dhclient: All rights reserved. -05:51:48,228 INFO dhclient: For info, please visit https://www.isc.org/software/dhcp/ -05:51:48,229 INFO dhclient: -05:51:48,232 INFO NetworkManager: (eth0): DHCPv4 state changed nbi -> preinit -05:51:48,238 INFO dhclient: Listening on LPF/eth0/00:0c:29:21:89:af -05:51:48,238 INFO dhclient: Sending on LPF/eth0/00:0c:29:21:89:af -05:51:48,238 INFO dhclient: Sending on Socket/fallback -05:51:48,238 INFO dhclient: DHCPDISCOVER on eth0 to 255.255.255.255 port 67 interval 7 (xid=0x4cbfa09c) -05:51:48,266 INFO dhclient: DHCPOFFER from 10.145.88.211 -05:51:48,267 INFO dhclient: DHCPREQUEST on eth0 to 255.255.255.255 port 67 (xid=0x4cbfa09c) -05:51:50,624 INFO dhclient: DHCPACK from 10.145.88.211 (xid=0x4cbfa09c) -05:51:50,627 INFO NetworkManager: (eth0): DHCPv4 state changed preinit -> bound -05:51:50,627 INFO NetworkManager: Activation (eth0) Stage 4 of 5 (IP4 Configure Get) scheduled... -05:51:50,627 INFO NetworkManager: Activation (eth0) Stage 4 of 5 (IP4 Configure Get) started... -05:51:50,627 INFO NetworkManager: address 10.145.88.106 -05:51:50,627 INFO NetworkManager: prefix 23 (255.255.254.0) -05:51:50,627 INFO NetworkManager: gateway 10.145.88.1 -05:51:50,627 INFO NetworkManager: hostname 'server1' -05:51:50,627 INFO NetworkManager: nameserver '10.145.88.211' -05:51:50,628 INFO NetworkManager: Activation (eth0) Stage 5 of 5 (IP Configure Commit) scheduled... -05:51:50,628 INFO NetworkManager: Activation (eth0) Stage 4 of 5 (IP4 Configure Get) complete. -05:51:50,628 INFO NetworkManager: Activation (eth0) Stage 5 of 5 (IP Configure Commit) started... -05:51:50,628 INFO dhclient: bound to 10.145.88.106 -- renewal in 10408 seconds. -05:51:51,629 INFO NetworkManager: (eth0): device state change: 7 -> 8 (reason 0) -05:51:51,629 INFO NetworkManager: Policy set 'System eth0' (eth0) as default for IPv4 routing and DNS. -05:51:51,630 INFO NetworkManager: Setting system hostname to 'server1' (from DHCPv4) -05:51:51,630 INFO NetworkManager: Activation (eth0) successful, device activated. -05:51:51,631 INFO NetworkManager: Activation (eth0) Stage 5 of 5 (IP Configure Commit) complete. -05:52:07,660 WARNING NetworkManager: error requesting auth for org.freedesktop.NetworkManager.enable-disable-network: (26) Remote Exception invoking org.freedesktop.PolicyKit1.Authority.CheckAuthorization() on /org/freedesktop/PolicyKit1/Authority at name org.freedesktop.PolicyKit1: org.freedesktop.DBus.Error.Spawn.ExecFailed: Cannot launch daemon, file not found or permissions invalid -05:52:07,660 WARNING NetworkManager: error requesting auth for org.freedesktop.NetworkManager.sleep-wake: (26) Remote Exception invoking org.freedesktop.PolicyKit1.Authority.CheckAuthorization() on /org/freedesktop/PolicyKit1/Authority at name org.freedesktop.PolicyKit1: org.freedesktop.DBus.Error.Spawn.ExecFailed: Cannot launch daemon, file not found or permissions invalid -05:52:07,660 WARNING NetworkManager: error requesting auth for org.freedesktop.NetworkManager.enable-disable-wifi: (26) Remote Exception invoking org.freedesktop.PolicyKit1.Authority.CheckAuthorization() on /org/freedesktop/PolicyKit1/Authority at name org.freedesktop.PolicyKit1: org.freedesktop.DBus.Error.Spawn.ExecFailed: Cannot launch daemon, file not found or permissions invalid -05:52:07,660 WARNING NetworkManager: error requesting auth for org.freedesktop.NetworkManager.enable-disable-wwan: (26) Remote Exception invoking org.freedesktop.PolicyKit1.Authority.CheckAuthorization() on /org/freedesktop/PolicyKit1/Authority at name org.freedesktop.PolicyKit1: org.freedesktop.DBus.Error.Spawn.ExecFailed: Cannot launch daemon, file not found or permissions invalid -05:52:07,660 WARNING NetworkManager: error requesting auth for org.freedesktop.NetworkManager.use-user-connections: (26) Remote Exception invoking org.freedesktop.PolicyKit1.Authority.CheckAuthorization() on /org/freedesktop/PolicyKit1/Authority at name org.freedesktop.PolicyKit1: org.freedesktop.DBus.Error.Spawn.ExecFailed: Cannot launch daemon, file not found or permissions invalid -05:52:07,660 WARNING NetworkManager: error requesting auth for org.freedesktop.NetworkManager.network-control: (26) Remote Exception invoking org.freedesktop.PolicyKit1.Authority.CheckAuthorization() on /org/freedesktop/PolicyKit1/Authority at name org.freedesktop.PolicyKit1: org.freedesktop.DBus.Error.Spawn.ExecFailed: Cannot launch daemon, file not found or permissions invalid -05:52:07,660 WARNING NetworkManager: error requesting auth for org.freedesktop.network-manager-settings.system.wifi.share.open: (26) Remote Exception invoking org.freedesktop.PolicyKit1.Authority.CheckAuthorization() on /org/freedesktop/PolicyKit1/Authority at name org.freedesktop.PolicyKit1: org.freedesktop.DBus.Error.Spawn.ExecFailed: Cannot launch daemon, file not found or permissions invalid -05:52:07,660 WARNING NetworkManager: error requesting auth for org.freedesktop.network-manager-settings.system.wifi.share.protected: (26) Remote Exception invoking org.freedesktop.PolicyKit1.Authority.CheckAuthorization() on /org/freedesktop/PolicyKit1/Authority at name org.freedesktop.PolicyKit1: org.freedesktop.DBus.Error.Spawn.ExecFailed: Cannot launch daemon, file not found or permissions invalid -05:52:47,362 NOTICE dbus-daemon: [system] Reloaded configuration -05:52:47,364 NOTICE dbus-daemon: [system] Reloaded configuration -05:52:47,512 DEBUG kernel:SELinux: 2048 avtab hash slots, 277800 rules. -05:52:47,588 DEBUG kernel:SELinux: 2048 avtab hash slots, 277800 rules. -05:52:48,083 DEBUG kernel:SELinux: 9 users, 12 roles, 3917 types, 217 bools, 1 sens, 1024 cats -05:52:48,083 DEBUG kernel:SELinux: 81 classes, 277800 rules -05:52:48,088 DEBUG kernel:SELinux: Completing initialization. -05:52:48,088 DEBUG kernel:SELinux: Setting up existing superblocks. -05:52:48,088 DEBUG kernel:SELinux: initialized (dev loop0, type squashfs), not configured for labeling -05:52:48,088 DEBUG kernel:SELinux: initialized (dev tmpfs, type tmpfs), uses transition SIDs -05:52:48,088 DEBUG kernel:SELinux: initialized (dev tmpfs, type tmpfs), uses transition SIDs -05:52:48,089 DEBUG kernel:SELinux: initialized (dev selinuxfs, type selinuxfs), uses genfs_contexts -05:52:48,089 DEBUG kernel:SELinux: initialized (dev mqueue, type mqueue), uses transition SIDs -05:52:48,089 DEBUG kernel:SELinux: initialized (dev hugetlbfs, type hugetlbfs), uses transition SIDs -05:52:48,089 DEBUG kernel:SELinux: initialized (dev devpts, type devpts), uses transition SIDs -05:52:48,089 DEBUG kernel:SELinux: initialized (dev inotifyfs, type inotifyfs), uses genfs_contexts -05:52:48,089 DEBUG kernel:SELinux: initialized (dev anon_inodefs, type anon_inodefs), uses genfs_contexts -05:52:48,089 DEBUG kernel:SELinux: initialized (dev pipefs, type pipefs), uses task SIDs -05:52:48,089 DEBUG kernel:SELinux: initialized (dev debugfs, type debugfs), uses genfs_contexts -05:52:48,090 DEBUG kernel:SELinux: initialized (dev sockfs, type sockfs), uses task SIDs -05:52:48,090 DEBUG kernel:SELinux: initialized (dev devtmpfs, type devtmpfs), uses transition SIDs -05:52:48,090 DEBUG kernel:SELinux: initialized (dev tmpfs, type tmpfs), uses transition SIDs -05:52:48,090 DEBUG kernel:SELinux: initialized (dev proc, type proc), uses genfs_contexts -05:52:48,090 DEBUG kernel:SELinux: initialized (dev bdev, type bdev), uses genfs_contexts -05:52:48,090 DEBUG kernel:SELinux: initialized (dev rootfs, type rootfs), uses genfs_contexts -05:52:48,090 DEBUG kernel:SELinux: initialized (dev sysfs, type sysfs), uses genfs_contexts -05:52:48,116 NOTICE kernel:type=1403 audit(1021096368.114:2): policy loaded auid=4294967295 ses=4294967295 -05:52:48,165 INFO kernel:md: raid0 personality registered for level 0 -05:52:48,172 INFO kernel:md: raid1 personality registered for level 1 -05:52:48,176 INFO kernel:async_tx: api initialized (async) -05:52:48,188 INFO kernel:xor: automatically using best checksumming function: generic_sse -05:52:48,191 INFO kernel: generic_sse: 9112.000 MB/sec -05:52:48,191 INFO kernel:xor: using function: generic_sse (9112.000 MB/sec) -05:52:48,212 WARNING kernel:raid6: sse2x1 5777 MB/s -05:52:48,229 WARNING kernel:raid6: sse2x2 7031 MB/s -05:52:48,247 WARNING kernel:raid6: sse2x4 7550 MB/s -05:52:48,247 WARNING kernel:raid6: using algorithm sse2x4 (7550 MB/s) -05:52:48,247 WARNING kernel:raid6: using ssse3x2 recovery algorithm -05:52:48,261 INFO kernel:md: raid6 personality registered for level 6 -05:52:48,261 INFO kernel:md: raid5 personality registered for level 5 -05:52:48,261 INFO kernel:md: raid4 personality registered for level 4 -05:52:48,273 INFO kernel:md: raid10 personality registered for level 10 -05:52:48,277 INFO kernel:md: linear personality registered for level -1 -05:52:48,290 INFO kernel:device-mapper: uevent: version 1.0.3 -05:52:48,291 INFO kernel:device-mapper: ioctl: 4.24.6-ioctl (2013-01-15) initialised: dm-devel@redhat.com -05:52:48,324 INFO kernel:device-mapper: multipath: version 1.5.0 loaded -05:52:48,328 INFO kernel:device-mapper: multipath round-robin: version 1.0.0 loaded -05:53:05,608 WARNING kernel:hpet1: lost 5 rtc interrupts -05:53:05,608 WARNING kernel:hpet1: lost 1 rtc interrupts -05:53:21,197 NOTICE kernel:sd 2:0:0:0: [sda] Cache data unavailable -05:53:21,197 ERR kernel:sd 2:0:0:0: [sda] Assuming drive cache: write through -05:53:21,238 INFO kernel: sda: sda1 sda2 -05:53:25,106 NOTICE kernel:sd 2:0:0:0: [sda] Cache data unavailable -05:53:25,106 ERR kernel:sd 2:0:0:0: [sda] Assuming drive cache: write through -05:53:25,117 INFO kernel: sda: sda1 -05:53:31,920 NOTICE kernel:sd 2:0:0:0: [sda] Cache data unavailable -05:53:31,920 ERR kernel:sd 2:0:0:0: [sda] Assuming drive cache: write through -05:53:31,962 INFO kernel: sda: -05:53:33,120 NOTICE kernel:sd 2:0:0:0: [sda] Cache data unavailable -05:53:33,120 ERR kernel:sd 2:0:0:0: [sda] Assuming drive cache: write through -05:53:33,120 INFO kernel: sda: sda1 -05:53:50,037 NOTICE kernel:sd 2:0:0:0: [sda] Cache data unavailable -05:53:50,037 ERR kernel:sd 2:0:0:0: [sda] Assuming drive cache: write through -05:53:50,037 INFO kernel: sda: sda1 sda2 -05:53:55,178 NOTICE kernel:sd 2:0:0:0: [sda] Cache data unavailable -05:53:55,178 ERR kernel:sd 2:0:0:0: [sda] Assuming drive cache: write through -05:53:55,211 INFO kernel: sda: sda1 sda2 sda3 -05:54:41,918 INFO kernel:Adding 3354616k swap on /dev/sda2. Priority:-1 extents:1 across:3354616k -05:54:42,441 INFO kernel:kjournald starting. Commit interval 5 seconds -05:54:42,489 INFO kernel:EXT3-fs (dm-0): using internal journal -05:54:42,489 INFO kernel:EXT3-fs (dm-0): mounted filesystem with ordered data mode -05:54:42,489 DEBUG kernel:SELinux: initialized (dev dm-0, type ext3), uses xattr -05:54:42,913 INFO kernel:kjournald starting. Commit interval 5 seconds -05:54:42,977 INFO kernel:EXT3-fs (sda1): using internal journal -05:54:42,977 INFO kernel:EXT3-fs (sda1): mounted filesystem with ordered data mode -05:54:42,977 DEBUG kernel:SELinux: initialized (dev sda1, type ext3), uses xattr -05:54:43,167 DEBUG kernel:SELinux: initialized (dev tmpfs, type tmpfs), uses transition SIDs -05:54:43,255 INFO kernel:kjournald starting. Commit interval 5 seconds -05:54:43,268 INFO kernel:EXT3-fs (dm-1): using internal journal -05:54:43,268 INFO kernel:EXT3-fs (dm-1): mounted filesystem with ordered data mode -05:54:43,268 DEBUG kernel:SELinux: initialized (dev dm-1, type ext3), uses xattr -05:54:43,657 INFO kernel:kjournald starting. Commit interval 5 seconds -05:54:43,719 INFO kernel:EXT3-fs (dm-2): using internal journal -05:54:43,719 INFO kernel:EXT3-fs (dm-2): mounted filesystem with ordered data mode -05:54:43,719 DEBUG kernel:SELinux: initialized (dev dm-2, type ext3), uses xattr -05:54:43,913 INFO kernel:kjournald starting. Commit interval 5 seconds -05:54:43,949 INFO kernel:EXT3-fs (dm-3): using internal journal -05:54:43,949 INFO kernel:EXT3-fs (dm-3): mounted filesystem with ordered data mode -05:54:43,949 DEBUG kernel:SELinux: initialized (dev dm-3, type ext3), uses xattr -05:55:08,095 DEBUG kernel:SELinux: initialized (dev usbfs, type usbfs), uses genfs_contexts -05:55:08,106 NOTICE NetworkManager: ifcfg-rh: updating /etc/sysconfig/network-scripts/ifcfg-eth3 -05:55:08,107 NOTICE NetworkManager: ifcfg-rh: updating /etc/sysconfig/network-scripts/ifcfg-eth2 -05:55:08,109 NOTICE NetworkManager: ifcfg-rh: updating /etc/sysconfig/network-scripts/ifcfg-eth1 -05:55:09,125 NOTICE NetworkManager: ifcfg-rh: updating /etc/sysconfig/network-scripts/ifcfg-eth3 -05:55:09,126 NOTICE NetworkManager: ifcfg-rh: updating /etc/sysconfig/network-scripts/ifcfg-eth2 -05:55:09,127 NOTICE NetworkManager: ifcfg-rh: updating /etc/sysconfig/network-scripts/ifcfg-eth1 -05:55:09,128 NOTICE NetworkManager: ifcfg-rh: updating /etc/sysconfig/network-scripts/ifcfg-eth0 -05:59:16,883 ERR kernel:INFO: task flush-253:0:1525 blocked for more than 120 seconds. -05:59:16,883 ERR kernel: Not tainted 2.6.32-431.el6.x86_64 #1 -05:59:16,883 ERR kernel:"echo 0 > /proc/sys/kernel/hung_task_timeout_secs" disables this message. -05:59:16,883 INFO kernel:flush-253:0 D 0000000000000000 0 1525 2 0x00000080 -05:59:16,883 WARNING kernel: ffff8800592df6e0 0000000000000046 0000000000000000 ffff880079226080 -05:59:16,883 WARNING kernel: 0000000000000001 ffff880064ed8e40 ffff880079226080 ffff880079269dd0 -05:59:16,883 WARNING kernel: ffff880079226638 ffff8800592dffd8 000000000000fbc8 ffff880079226638 -05:59:16,883 WARNING kernel:Call Trace: -05:59:16,883 WARNING kernel: [] io_schedule+0x73/0xc0 -05:59:16,883 WARNING kernel: [] get_request_wait+0x108/0x1d0 -05:59:16,883 WARNING kernel: [] ? autoremove_wake_function+0x0/0x40 -05:59:16,883 WARNING kernel: [] ? elv_merge+0x17e/0x1c0 -05:59:16,883 WARNING kernel: [] blk_queue_bio+0x99/0x620 -05:59:16,883 WARNING kernel: [] generic_make_request+0x240/0x5a0 -05:59:16,883 WARNING kernel: [] ? mempool_alloc_slab+0x15/0x20 -05:59:16,883 WARNING kernel: [] submit_bio+0x70/0x120 -05:59:16,883 WARNING kernel: [] submit_bh+0x11d/0x1f0 -05:59:16,883 WARNING kernel: [] __block_write_full_page+0x1c8/0x330 -05:59:16,883 WARNING kernel: [] ? end_buffer_async_write+0x0/0x190 -05:59:16,883 WARNING kernel: [] ? blkdev_get_block+0x0/0x20 -05:59:16,883 WARNING kernel: [] ? blkdev_get_block+0x0/0x20 -05:59:16,883 WARNING kernel: [] block_write_full_page_endio+0xe0/0x120 -05:59:16,883 WARNING kernel: [] ? find_get_pages_tag+0x40/0x130 -05:59:16,883 WARNING kernel: [] block_write_full_page+0x15/0x20 -05:59:16,883 WARNING kernel: [] blkdev_writepage+0x18/0x20 -05:59:16,883 WARNING kernel: [] __writepage+0x17/0x40 -05:59:16,883 WARNING kernel: [] write_cache_pages+0x1fd/0x4c0 -05:59:16,883 WARNING kernel: [] ? __writepage+0x0/0x40 -05:59:16,883 WARNING kernel: [] generic_writepages+0x24/0x30 -05:59:16,883 WARNING kernel: [] do_writepages+0x21/0x40 -05:59:16,883 WARNING kernel: [] writeback_single_inode+0xdd/0x290 -05:59:16,883 WARNING kernel: [] writeback_sb_inodes+0xbd/0x170 -05:59:16,883 WARNING kernel: [] writeback_inodes_wb+0xab/0x1b0 -05:59:16,883 WARNING kernel: [] wb_writeback+0x2f3/0x410 -05:59:16,883 WARNING kernel: [] ? thread_return+0x4e/0x76e -05:59:16,883 WARNING kernel: [] ? del_timer_sync+0x22/0x30 -05:59:16,883 WARNING kernel: [] wb_do_writeback+0x1a5/0x240 -05:59:16,883 WARNING kernel: [] bdi_writeback_task+0x63/0x1b0 -05:59:16,883 WARNING kernel: [] ? bit_waitqueue+0x17/0xd0 -05:59:16,883 WARNING kernel: [] ? bdi_start_fn+0x0/0x100 -05:59:16,883 WARNING kernel: [] bdi_start_fn+0x86/0x100 -05:59:16,883 WARNING kernel: [] ? bdi_start_fn+0x0/0x100 -05:59:16,883 WARNING kernel: [] kthread+0x96/0xa0 -05:59:16,883 WARNING kernel: [] child_rip+0xa/0x20 -05:59:16,883 WARNING kernel: [] ? kthread+0x0/0xa0 -05:59:16,883 WARNING kernel: [] ? child_rip+0x0/0x20 -05:59:16,883 ERR kernel:INFO: task flush-253:3:1622 blocked for more than 120 seconds. -05:59:16,883 ERR kernel: Not tainted 2.6.32-431.el6.x86_64 #1 -05:59:16,883 ERR kernel:"echo 0 > /proc/sys/kernel/hung_task_timeout_secs" disables this message. -05:59:16,883 INFO kernel:flush-253:3 D 0000000000000001 0 1622 2 0x00000080 -05:59:16,883 WARNING kernel: ffff88005a5636e0 0000000000000046 0000000000000000 ffff8800790e6ae0 -05:59:16,883 WARNING kernel: 0000000000000001 ffff8800615bc080 ffff8800790e6ae0 ffff880079269dd0 -05:59:16,883 WARNING kernel: ffff8800790e7098 ffff88005a563fd8 000000000000fbc8 ffff8800790e7098 -05:59:16,883 WARNING kernel:Call Trace: -05:59:16,883 WARNING kernel: [] io_schedule+0x73/0xc0 -05:59:16,883 WARNING kernel: [] get_request_wait+0x108/0x1d0 -05:59:16,883 WARNING kernel: [] ? autoremove_wake_function+0x0/0x40 -05:59:16,883 WARNING kernel: [] ? elv_merge+0x17e/0x1c0 -05:59:16,883 WARNING kernel: [] blk_queue_bio+0x99/0x620 -05:59:16,883 WARNING kernel: [] ? read_tsc+0x9/0x20 -05:59:16,883 WARNING kernel: [] generic_make_request+0x240/0x5a0 -05:59:16,883 WARNING kernel: [] ? mempool_alloc_slab+0x15/0x20 -05:59:16,883 WARNING kernel: [] ? __dec_zone_page_state+0x2e/0x30 -05:59:16,883 WARNING kernel: [] submit_bio+0x70/0x120 -05:59:16,883 WARNING kernel: [] submit_bh+0x11d/0x1f0 -05:59:16,883 WARNING kernel: [] __block_write_full_page+0x1c8/0x330 -05:59:16,883 WARNING kernel: [] ? end_buffer_async_write+0x0/0x190 -05:59:16,883 WARNING kernel: [] ? blkdev_get_block+0x0/0x20 -05:59:16,883 WARNING kernel: [] ? blkdev_get_block+0x0/0x20 -05:59:16,883 WARNING kernel: [] block_write_full_page_endio+0xe0/0x120 -05:59:16,883 WARNING kernel: [] ? find_get_pages_tag+0x40/0x130 -05:59:16,883 WARNING kernel: [] block_write_full_page+0x15/0x20 -05:59:16,883 WARNING kernel: [] blkdev_writepage+0x18/0x20 -05:59:16,883 WARNING kernel: [] __writepage+0x17/0x40 -05:59:16,883 WARNING kernel: [] write_cache_pages+0x1fd/0x4c0 -05:59:16,883 WARNING kernel: [] ? __writepage+0x0/0x40 -05:59:16,883 WARNING kernel: [] generic_writepages+0x24/0x30 -05:59:16,883 WARNING kernel: [] do_writepages+0x21/0x40 -05:59:16,883 WARNING kernel: [] writeback_single_inode+0xdd/0x290 -05:59:16,883 WARNING kernel: [] writeback_sb_inodes+0xbd/0x170 -05:59:16,883 WARNING kernel: [] writeback_inodes_wb+0xab/0x1b0 -05:59:16,883 WARNING kernel: [] wb_writeback+0x2f3/0x410 -05:59:16,883 WARNING kernel: [] ? thread_return+0x4e/0x76e -05:59:16,883 WARNING kernel: [] ? del_timer_sync+0x22/0x30 -05:59:16,883 WARNING kernel: [] wb_do_writeback+0x1a5/0x240 -05:59:16,883 WARNING kernel: [] bdi_writeback_task+0x63/0x1b0 -05:59:16,883 WARNING kernel: [] ? bit_waitqueue+0x17/0xd0 -05:59:16,883 WARNING kernel: [] ? bdi_start_fn+0x0/0x100 -05:59:16,883 WARNING kernel: [] bdi_start_fn+0x86/0x100 -05:59:16,883 WARNING kernel: [] ? bdi_start_fn+0x0/0x100 -05:59:16,883 WARNING kernel: [] kthread+0x96/0xa0 -05:59:16,883 WARNING kernel: [] child_rip+0xa/0x20 -05:59:16,883 WARNING kernel: [] ? kthread+0x0/0xa0 -05:59:16,883 WARNING kernel: [] ? child_rip+0x0/0x20 -06:11:26,657 DEBUG kernel:SELinux: 2048 avtab hash slots, 277800 rules. -06:11:26,705 DEBUG kernel:SELinux: 2048 avtab hash slots, 277800 rules. -06:11:27,220 DEBUG kernel:SELinux: 9 users, 12 roles, 3917 types, 217 bools, 1 sens, 1024 cats -06:11:27,220 DEBUG kernel:SELinux: 81 classes, 277800 rules diff --git a/compass/tests/actions/update_progress/data/test2/anamon/checkpoint_4/server2.1/anaconda.log.template b/compass/tests/actions/update_progress/data/test2/anamon/checkpoint_4/server2.1/anaconda.log.template deleted file mode 100644 index 0e91936e..00000000 --- a/compass/tests/actions/update_progress/data/test2/anamon/checkpoint_4/server2.1/anaconda.log.template +++ /dev/null @@ -1,280 +0,0 @@ -05:50:22,531 INFO : kernel command line: initrd=/images/CentOS-6.5-x86_64/initrd.img ksdevice=bootif lang= kssendmac text ks=http://10.145.88.211/cblr/svc/op/ks/system/server2.1 BOOT_IMAGE=/images/CentOS-6.5-x86_64/vmlinuz BOOTIF=01-00-0c-29-5c-6a-b8 - -05:50:22,531 INFO : text mode forced from cmdline -05:50:22,531 DEBUG : readNetInfo /tmp/s390net not found, early return -05:50:22,531 INFO : anaconda version 13.21.215 on x86_64 starting -05:50:22,649 DEBUG : Saving module ipv6 -05:50:22,649 DEBUG : Saving module iscsi_ibft -05:50:22,649 DEBUG : Saving module iscsi_boot_sysfs -05:50:22,649 DEBUG : Saving module pcspkr -05:50:22,649 DEBUG : Saving module edd -05:50:22,649 DEBUG : Saving module floppy -05:50:22,649 DEBUG : Saving module iscsi_tcp -05:50:22,649 DEBUG : Saving module libiscsi_tcp -05:50:22,649 DEBUG : Saving module libiscsi -05:50:22,649 DEBUG : Saving module scsi_transport_iscsi -05:50:22,649 DEBUG : Saving module squashfs -05:50:22,649 DEBUG : Saving module cramfs -05:50:22,649 DEBUG : probing buses -05:50:22,673 DEBUG : waiting for hardware to initialize -05:50:28,619 DEBUG : probing buses -05:50:28,644 DEBUG : waiting for hardware to initialize -05:50:32,015 INFO : getting kickstart file -05:50:32,022 INFO : eth0 has link, using it -05:50:32,033 INFO : doing kickstart... setting it up -05:50:32,034 DEBUG : activating device eth0 -05:50:40,048 INFO : wait_for_iface_activation (2502): device eth0 activated -05:50:40,048 INFO : file location: http://10.145.88.211/cblr/svc/op/ks/system/server2.1 -05:50:40,049 INFO : transferring http://10.145.88.211/cblr/svc/op/ks/system/server2.1 -05:50:40,134 INFO : setting up kickstart -05:50:40,134 INFO : kickstart forcing text mode -05:50:40,134 INFO : kickstartFromUrl -05:50:40,134 INFO : results of url ks, url http://10.145.88.211/cblr/links/CentOS-6.5-x86_64 -05:50:40,135 INFO : trying to mount CD device /dev/sr0 on /mnt/stage2 -05:50:40,137 INFO : drive status is CDS_TRAY_OPEN -05:50:40,137 ERROR : Drive tray reports open when it should be closed -05:50:55,155 INFO : no stage2= given, assuming http://10.145.88.211/cblr/links/CentOS-6.5-x86_64/images/install.img -05:50:55,156 DEBUG : going to set language to en_US.UTF-8 -05:50:55,156 INFO : setting language to en_US.UTF-8 -05:50:55,169 INFO : starting STEP_METHOD -05:50:55,169 DEBUG : loaderData->method is set, adding skipMethodDialog -05:50:55,169 DEBUG : skipMethodDialog is set -05:50:55,176 INFO : starting STEP_STAGE2 -05:50:55,176 INFO : URL_STAGE_MAIN: url is http://10.145.88.211/cblr/links/CentOS-6.5-x86_64/images/install.img -05:50:55,176 INFO : transferring http://10.145.88.211/cblr/links/CentOS-6.5-x86_64/images/updates.img -05:50:56,174 ERROR : failed to mount loopback device /dev/loop7 on /tmp/update-disk as /tmp/updates-disk.img: (null) -05:50:56,175 ERROR : Error mounting /dev/loop7 on /tmp/update-disk: No such file or directory -05:50:56,175 INFO : transferring http://10.145.88.211/cblr/links/CentOS-6.5-x86_64/images/product.img -05:50:57,459 ERROR : Error downloading http://10.145.88.211/cblr/links/CentOS-6.5-x86_64/images/product.img: HTTP response code said error -05:50:57,459 INFO : transferring http://10.145.88.211/cblr/links/CentOS-6.5-x86_64/images/install.img -05:51:46,964 INFO : mounted loopback device /mnt/runtime on /dev/loop0 as /tmp/install.img -05:51:46,964 INFO : got stage2 at url http://10.145.88.211/cblr/links/CentOS-6.5-x86_64/images/install.img -05:51:47,009 INFO : Loading SELinux policy -05:51:47,753 INFO : getting ready to spawn shell now -05:51:47,973 INFO : Running anaconda script /usr/bin/anaconda -05:51:52,842 INFO : CentOS Linux is the highest priority installclass, using it -05:51:52,887 WARNING : /usr/lib/python2.6/site-packages/pykickstart/parser.py:713: DeprecationWarning: Script does not end with %end. This syntax has been deprecated. It may be removed from future releases, which will result in a fatal error from kickstart. Please modify your kickstart file to use this updated syntax. - warnings.warn(_("%s does not end with %%end. This syntax has been deprecated. It may be removed from future releases, which will result in a fatal error from kickstart. Please modify your kickstart file to use this updated syntax.") % _("Script"), DeprecationWarning) - -05:51:52,888 INFO : Running kickstart %%pre script(s) -05:51:52,888 WARNING : '/bin/sh' specified as full path -05:51:54,265 INFO : All kickstart %%pre script(s) have been run -05:51:54,314 INFO : ISCSID is /usr/sbin/iscsid -05:51:54,314 INFO : no initiator set -05:51:54,416 WARNING : '/usr/libexec/fcoe/fcoe_edd.sh' specified as full path -05:51:54,425 INFO : No FCoE EDD info found: No FCoE boot disk information is found in EDD! - -05:51:54,425 INFO : no /etc/zfcp.conf; not configuring zfcp -05:51:59,033 INFO : created new libuser.conf at /tmp/libuser.KyLOeb with instPath="/mnt/sysimage" -05:51:59,033 INFO : anaconda called with cmdline = ['/usr/bin/anaconda', '--stage2', 'http://10.145.88.211/cblr/links/CentOS-6.5-x86_64/images/install.img', '--kickstart', '/tmp/ks.cfg', '-T', '--selinux', '--lang', 'en_US', '--keymap', 'us', '--repo', 'http://10.145.88.211/cblr/links/CentOS-6.5-x86_64'] -05:51:59,033 INFO : Display mode = t -05:51:59,034 INFO : Default encoding = utf-8 -05:51:59,193 INFO : Detected 2016M of memory -05:51:59,193 INFO : Swap attempt of 4032M -05:51:59,528 INFO : ISCSID is /usr/sbin/iscsid -05:51:59,528 INFO : no initiator set -05:52:00,372 INFO : setting installation environment hostname to server2 -05:52:00,415 WARNING : Timezone US/Pacific set in kickstart is not valid. -05:52:00,541 INFO : Detected 2016M of memory -05:52:00,541 INFO : Suggested swap size (4032 M) exceeds 10 % of disk space, using 10 % of disk space (3276 M) instead. -05:52:00,541 INFO : Swap attempt of 3276M -05:52:00,698 WARNING : step installtype does not exist -05:52:00,699 WARNING : step confirminstall does not exist -05:52:00,699 WARNING : step complete does not exist -05:52:00,699 WARNING : step complete does not exist -05:52:00,699 WARNING : step complete does not exist -05:52:00,699 WARNING : step complete does not exist -05:52:00,700 WARNING : step complete does not exist -05:52:00,700 WARNING : step complete does not exist -05:52:00,700 WARNING : step complete does not exist -05:52:00,700 WARNING : step complete does not exist -05:52:00,700 WARNING : step complete does not exist -05:52:00,700 WARNING : step complete does not exist -05:52:00,701 WARNING : step complete does not exist -05:52:00,701 WARNING : step complete does not exist -05:52:00,701 WARNING : step complete does not exist -05:52:00,701 WARNING : step complete does not exist -05:52:00,701 WARNING : step complete does not exist -05:52:00,702 INFO : moving (1) to step setuptime -05:52:00,702 DEBUG : setuptime is a direct step -22:52:00,703 WARNING : '/usr/sbin/hwclock' specified as full path -22:52:02,003 INFO : leaving (1) step setuptime -22:52:02,003 INFO : moving (1) to step autopartitionexecute -22:52:02,003 DEBUG : autopartitionexecute is a direct step -22:52:02,141 INFO : leaving (1) step autopartitionexecute -22:52:02,141 INFO : moving (1) to step storagedone -22:52:02,141 DEBUG : storagedone is a direct step -22:52:02,142 INFO : leaving (1) step storagedone -22:52:02,142 INFO : moving (1) to step enablefilesystems -22:52:02,142 DEBUG : enablefilesystems is a direct step -22:52:08,928 DEBUG : notifying kernel of 'change' event on device /sys/class/block/sda1 -22:52:12,407 DEBUG : notifying kernel of 'change' event on device /sys/class/block/sda3 -22:52:25,536 DEBUG : notifying kernel of 'change' event on device /sys/class/block/dm-0 -22:52:30,102 DEBUG : notifying kernel of 'change' event on device /sys/class/block/dm-1 -22:52:35,181 DEBUG : notifying kernel of 'change' event on device /sys/class/block/dm-2 -22:52:40,809 DEBUG : notifying kernel of 'change' event on device /sys/class/block/dm-3 -22:52:44,576 INFO : failed to set SELinux context for /mnt/sysimage: [Errno 95] Operation not supported -22:52:44,576 DEBUG : isys.py:mount()- going to mount /dev/mapper/server2-rootvol on /mnt/sysimage as ext3 with options defaults -22:52:45,082 DEBUG : isys.py:mount()- going to mount /dev/sda1 on /mnt/sysimage/boot as ext3 with options defaults -22:52:45,230 DEBUG : isys.py:mount()- going to mount //dev on /mnt/sysimage/dev as bind with options defaults,bind -22:52:45,240 DEBUG : isys.py:mount()- going to mount devpts on /mnt/sysimage/dev/pts as devpts with options gid=5,mode=620 -22:52:45,247 DEBUG : isys.py:mount()- going to mount tmpfs on /mnt/sysimage/dev/shm as tmpfs with options defaults -22:52:45,333 DEBUG : isys.py:mount()- going to mount /dev/mapper/server2-homevol on /mnt/sysimage/home as ext3 with options defaults -22:52:45,482 INFO : failed to get default SELinux context for /proc: [Errno 2] No such file or directory -22:52:45,483 DEBUG : isys.py:mount()- going to mount proc on /mnt/sysimage/proc as proc with options defaults -22:52:45,487 INFO : failed to get default SELinux context for /proc: [Errno 2] No such file or directory -22:52:45,534 DEBUG : isys.py:mount()- going to mount sysfs on /mnt/sysimage/sys as sysfs with options defaults -22:52:45,571 DEBUG : isys.py:mount()- going to mount /dev/mapper/server2-tmpvol on /mnt/sysimage/tmp as ext3 with options defaults -22:52:45,795 DEBUG : isys.py:mount()- going to mount /dev/mapper/server2-varvol on /mnt/sysimage/var as ext3 with options defaults -22:52:45,955 INFO : leaving (1) step enablefilesystems -22:52:45,955 INFO : moving (1) to step bootloadersetup -22:52:45,956 DEBUG : bootloadersetup is a direct step -22:52:45,960 INFO : leaving (1) step bootloadersetup -22:52:45,960 INFO : moving (1) to step reposetup -22:52:45,960 DEBUG : reposetup is a direct step -22:52:47,076 ERROR : Error downloading treeinfo file: [Errno 14] PYCURL ERROR 22 - "The requested URL returned error: 404 Not Found" -22:52:47,077 INFO : added repository ppa_repo with URL http://10.145.88.211:80/cobbler/repo_mirror/ppa_repo/ -22:52:47,296 DEBUG : Grabbing http://10.145.88.211/cblr/links/CentOS-6.5-x86_64/repodata/repomd.xml -22:52:47,358 DEBUG : Grabbing http://10.145.88.211/cblr/links/CentOS-6.5-x86_64/repodata/0e371b19e547b9d7a7e8acc4b8c0c7c074509d33653cfaef9e8f4fd1d62d95de-primary.sqlite.bz2 -22:52:47,499 DEBUG : Grabbing http://10.145.88.211/cblr/links/CentOS-6.5-x86_64/repodata/34bae2d3c9c78e04ed2429923bc095005af1b166d1a354422c4c04274bae0f59-c6-minimal-x86_64.xml -22:52:47,629 INFO : leaving (1) step reposetup -22:52:47,629 INFO : moving (1) to step basepkgsel -22:52:47,629 DEBUG : basepkgsel is a direct step -22:52:47,645 WARNING : not adding Base group -22:52:48,052 INFO : leaving (1) step basepkgsel -22:52:48,053 INFO : moving (1) to step postselection -22:52:48,053 DEBUG : postselection is a direct step -22:52:48,056 INFO : selected kernel package for kernel -22:52:48,521 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/fs/ext3/ext3.ko.gz -22:52:48,521 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/fs/jbd/jbd.ko.gz -22:52:48,521 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/fs/mbcache.ko.gz -22:52:48,521 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/scsi/fcoe/fcoe.ko.gz -22:52:48,521 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/scsi/fcoe/libfcoe.ko.gz -22:52:48,521 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/scsi/libfc/libfc.ko.gz -22:52:48,521 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/scsi/scsi_transport_fc.ko.gz -22:52:48,521 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/scsi/scsi_tgt.ko.gz -22:52:48,521 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/crypto/xts.ko.gz -22:52:48,521 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/crypto/lrw.ko.gz -22:52:48,522 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/crypto/gf128mul.ko.gz -22:52:48,522 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/crypto/sha256_generic.ko.gz -22:52:48,522 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/crypto/cbc.ko.gz -22:52:48,522 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/md/dm-raid.ko.gz -22:52:48,522 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/md/dm-crypt.ko.gz -22:52:48,522 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/md/dm-round-robin.ko.gz -22:52:48,522 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/md/dm-multipath.ko.gz -22:52:48,522 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/md/dm-snapshot.ko.gz -22:52:48,522 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/md/dm-mirror.ko.gz -22:52:48,522 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/md/dm-region-hash.ko.gz -22:52:48,523 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/md/dm-log.ko.gz -22:52:48,523 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/md/dm-zero.ko.gz -22:52:48,523 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/md/dm-mod.ko.gz -22:52:48,523 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/md/linear.ko.gz -22:52:48,523 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/md/raid10.ko.gz -22:52:48,523 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/md/raid456.ko.gz -22:52:48,523 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/crypto/async_tx/async_raid6_recov.ko.gz -22:52:48,523 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/crypto/async_tx/async_pq.ko.gz -22:52:48,523 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/lib/raid6/raid6_pq.ko.gz -22:52:48,523 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/crypto/async_tx/async_xor.ko.gz -22:52:48,523 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/crypto/xor.ko.gz -22:52:48,524 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/crypto/async_tx/async_memcpy.ko.gz -22:52:48,524 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/crypto/async_tx/async_tx.ko.gz -22:52:48,524 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/md/raid1.ko.gz -22:52:48,524 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/md/raid0.ko.gz -22:52:48,524 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/net/8021q/8021q.ko.gz -22:52:48,524 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/net/802/garp.ko.gz -22:52:48,524 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/net/802/stp.ko.gz -22:52:48,524 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/net/llc/llc.ko.gz -22:52:48,524 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/infiniband/hw/mlx4/mlx4_ib.ko.gz -22:52:48,524 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/net/mlx4/mlx4_en.ko.gz -22:52:48,524 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/net/mlx4/mlx4_core.ko.gz -22:52:48,525 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/infiniband/ulp/ipoib/ib_ipoib.ko.gz -22:52:48,525 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/infiniband/core/ib_cm.ko.gz -22:52:48,525 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/infiniband/core/ib_sa.ko.gz -22:52:48,525 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/infiniband/core/ib_mad.ko.gz -22:52:48,525 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/infiniband/core/ib_core.ko.gz -22:52:48,525 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/scsi/sg.ko.gz -22:52:48,525 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/scsi/sd_mod.ko.gz -22:52:48,525 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/lib/crc-t10dif.ko.gz -22:52:48,525 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/net/e1000/e1000.ko.gz -22:52:48,525 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/scsi/sr_mod.ko.gz -22:52:48,526 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/cdrom/cdrom.ko.gz -22:52:48,526 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/misc/vmware_balloon.ko.gz -22:52:48,526 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/message/fusion/mptspi.ko.gz -22:52:48,526 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/message/fusion/mptscsih.ko.gz -22:52:48,526 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/message/fusion/mptbase.ko.gz -22:52:48,526 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/scsi/scsi_transport_spi.ko.gz -22:52:48,526 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/ata/pata_acpi.ko.gz -22:52:48,526 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/ata/ata_generic.ko.gz -22:52:48,526 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/ata/ata_piix.ko.gz -22:52:48,526 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/net/ipv6/ipv6.ko.gz -22:52:48,526 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/firmware/iscsi_ibft.ko.gz -22:52:48,527 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/scsi/iscsi_boot_sysfs.ko.gz -22:52:48,527 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/input/misc/pcspkr.ko.gz -22:52:48,527 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/firmware/edd.ko.gz -22:52:48,527 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/block/floppy.ko.gz -22:52:48,527 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/scsi/iscsi_tcp.ko.gz -22:52:48,527 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/scsi/libiscsi_tcp.ko.gz -22:52:48,527 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/scsi/libiscsi.ko.gz -22:52:48,527 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/scsi/scsi_transport_iscsi.ko.gz -22:52:48,527 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/fs/squashfs/squashfs.ko.gz -22:52:48,527 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/fs/cramfs/cramfs.ko.gz -22:52:53,656 INFO : leaving (1) step postselection -22:52:53,657 INFO : moving (1) to step install -22:52:53,660 INFO : leaving (1) step install -22:52:53,660 INFO : moving (1) to step preinstallconfig -22:52:53,660 DEBUG : preinstallconfig is a direct step -22:52:54,102 DEBUG : isys.py:mount()- going to mount /selinux on /mnt/sysimage/selinux as selinuxfs with options defaults -22:52:54,107 DEBUG : isys.py:mount()- going to mount /proc/bus/usb on /mnt/sysimage/proc/bus/usb as usbfs with options defaults -22:52:54,117 INFO : copy_to_sysimage: source '/etc/multipath/wwids' does not exist. -22:52:54,117 INFO : copy_to_sysimage: source '/etc/multipath/bindings' does not exist. -22:52:54,130 INFO : copy_to_sysimage: source '/etc/multipath/wwids' does not exist. -22:52:54,130 INFO : copy_to_sysimage: source '/etc/multipath/bindings' does not exist. -22:52:54,134 INFO : leaving (1) step preinstallconfig -22:52:54,134 INFO : moving (1) to step installpackages -22:52:54,134 DEBUG : installpackages is a direct step -22:52:54,134 INFO : Preparing to install packages -23:16:26,925 INFO : leaving (1) step installpackages -23:16:26,926 INFO : moving (1) to step postinstallconfig -23:16:26,926 DEBUG : postinstallconfig is a direct step -23:16:26,934 DEBUG : Removing cachedir: /mnt/sysimage/var/cache/yum/anaconda-CentOS-201311291202.x86_64 -23:16:26,949 DEBUG : Removing headers and packages from /mnt/sysimage/var/cache/yum/ppa_repo -23:16:26,953 INFO : leaving (1) step postinstallconfig -23:16:26,953 INFO : moving (1) to step writeconfig -23:16:26,953 DEBUG : writeconfig is a direct step -23:16:26,953 INFO : Writing main configuration -23:16:26,958 WARNING : '/usr/sbin/authconfig' specified as full path -23:16:30,473 WARNING : '/usr/sbin/lokkit' specified as full path -23:16:30,530 WARNING : '/usr/sbin/lokkit' specified as full path -23:16:30,632 INFO : removing libuser.conf at /tmp/libuser.KyLOeb -23:16:30,633 INFO : created new libuser.conf at /tmp/libuser.KyLOeb with instPath="/mnt/sysimage" -23:16:31,956 INFO : leaving (1) step writeconfig -23:16:31,956 INFO : moving (1) to step firstboot -23:16:31,957 DEBUG : firstboot is a direct step -23:16:31,957 INFO : leaving (1) step firstboot -23:16:31,957 INFO : moving (1) to step instbootloader -23:16:31,957 DEBUG : instbootloader is a direct step -23:16:33,920 WARNING : '/sbin/grub-install' specified as full path -23:16:34,226 WARNING : '/sbin/grub' specified as full path -23:16:35,092 INFO : leaving (1) step instbootloader -23:16:35,092 INFO : moving (1) to step reipl -23:16:35,092 DEBUG : reipl is a direct step -23:16:35,093 INFO : leaving (1) step reipl -23:16:35,093 INFO : moving (1) to step writeksconfig -23:16:35,093 DEBUG : writeksconfig is a direct step -23:16:35,093 INFO : Writing autokickstart file -23:16:35,124 INFO : leaving (1) step writeksconfig -23:16:35,124 INFO : moving (1) to step setfilecon -23:16:35,125 DEBUG : setfilecon is a direct step -23:16:35,125 INFO : setting SELinux contexts for anaconda created files -23:16:36,828 INFO : leaving (1) step setfilecon -23:16:36,829 INFO : moving (1) to step copylogs -23:16:36,829 DEBUG : copylogs is a direct step -23:16:36,829 INFO : Copying anaconda logs -23:16:36,831 INFO : leaving (1) step copylogs -23:16:36,831 INFO : moving (1) to step methodcomplete -23:16:36,832 DEBUG : methodcomplete is a direct step -23:16:36,832 INFO : leaving (1) step methodcomplete -23:16:36,832 INFO : moving (1) to step postscripts -23:16:36,832 DEBUG : postscripts is a direct step -23:16:36,832 INFO : Running kickstart %%post script(s) -23:16:36,872 WARNING : '/bin/sh' specified as full path diff --git a/compass/tests/actions/update_progress/data/test2/anamon/checkpoint_4/server2.1/chef-client.log.template b/compass/tests/actions/update_progress/data/test2/anamon/checkpoint_4/server2.1/chef-client.log.template deleted file mode 100644 index b13b6791..00000000 --- a/compass/tests/actions/update_progress/data/test2/anamon/checkpoint_4/server2.1/chef-client.log.template +++ /dev/null @@ -1,342 +0,0 @@ -Feb 21 20:21:42 server2.1 [2014-02-21T20:21:42-08:00] INFO: Forking chef instance to converge... -Feb 21 20:21:51 server2.1 [2014-02-21T20:21:50-08:00] INFO: *** Chef 11.8.0 *** -Feb 21 20:21:51 server2.1 [2014-02-21T20:21:50-08:00] INFO: Chef-client pid: 1350 -Feb 21 20:22:14 server2.1 [2014-02-21T20:22:14-08:00] INFO: Client key /etc/chef/client.pem is not present - registering -Feb 21 20:22:18 server2.1 [2014-02-21T20:22:18-08:00] INFO: HTTP Request Returned 404 Object Not Found: error -Feb 21 20:22:19 server2.1 [2014-02-21T20:22:18-08:00] INFO: Setting the run_list to ["role[os-ops-database]"] from JSON -Feb 21 20:22:19 server2.1 [2014-02-21T20:22:19-08:00] INFO: Run List is [role[os-ops-database]] -Feb 21 20:22:19 server2.1 [2014-02-21T20:22:19-08:00] INFO: Run List expands to [openstack-common, openstack-common::logging, openstack-ops-database::server, openstack-ops-database::openstack-db] -Feb 21 20:22:19 server2.1 [2014-02-21T20:22:19-08:00] INFO: Starting Chef Run for server2_openstack_1 -Feb 21 20:22:19 server2.1 [2014-02-21T20:22:19-08:00] INFO: Running start handlers -Feb 21 20:22:19 server2.1 [2014-02-21T20:22:19-08:00] INFO: Start handlers complete. -Feb 21 20:22:19 server2.1 [2014-02-21T20:22:19-08:00] INFO: HTTP Request Returned 404 Object Not Found: -Feb 21 20:22:20 server2.1 [2014-02-21T20:22:20-08:00] INFO: Loading cookbooks [apt, aws, build-essential, database, mysql, openssl, openstack-common, openstack-ops-database, postgresql, xfs, yum] -Feb 21 20:22:20 server2.1 [2014-02-21T20:22:20-08:00] INFO: Storing updated cookbooks/mysql/recipes/percona_repo.rb in the cache. -Feb 21 20:22:21 server2.1 [2014-02-21T20:22:20-08:00] INFO: Storing updated cookbooks/mysql/recipes/server.rb in the cache. -Feb 21 20:22:21 server2.1 [2014-02-21T20:22:21-08:00] INFO: Storing updated cookbooks/mysql/recipes/default.rb in the cache. -Feb 21 20:22:21 server2.1 [2014-02-21T20:22:21-08:00] INFO: Storing updated cookbooks/mysql/recipes/ruby.rb in the cache. -Feb 21 20:22:21 server2.1 [2014-02-21T20:22:21-08:00] INFO: Storing updated cookbooks/mysql/recipes/server_ec2.rb in the cache. -Feb 21 20:22:21 server2.1 [2014-02-21T20:22:21-08:00] INFO: Storing updated cookbooks/mysql/recipes/client.rb in the cache. -Feb 21 20:22:22 server2.1 [2014-02-21T20:22:22-08:00] INFO: Storing updated cookbooks/mysql/libraries/helpers.rb in the cache. -Feb 21 20:22:22 server2.1 [2014-02-21T20:22:22-08:00] INFO: Storing updated cookbooks/mysql/attributes/percona_repo.rb in the cache. -Feb 21 20:22:22 server2.1 [2014-02-21T20:22:22-08:00] INFO: Storing updated cookbooks/mysql/attributes/server.rb in the cache. -Feb 21 20:22:22 server2.1 [2014-02-21T20:22:22-08:00] INFO: Storing updated cookbooks/mysql/attributes/client.rb in the cache. -Feb 21 20:22:22 server2.1 [2014-02-21T20:22:22-08:00] INFO: Storing updated cookbooks/mysql/templates/default/my.cnf.erb in the cache. -Feb 21 20:22:23 server2.1 [2014-02-21T20:22:22-08:00] INFO: Storing updated cookbooks/mysql/templates/default/mysql-server.seed.erb in the cache. -Feb 21 20:22:23 server2.1 [2014-02-21T20:22:23-08:00] INFO: Storing updated cookbooks/mysql/templates/default/port_mysql.erb in the cache. -Feb 21 20:22:24 server2.1 [2014-02-21T20:22:24-08:00] INFO: Storing updated cookbooks/mysql/templates/default/debian.cnf.erb in the cache. -Feb 21 20:22:24 server2.1 [2014-02-21T20:22:24-08:00] INFO: Storing updated cookbooks/mysql/templates/default/grants.sql.erb in the cache. -Feb 21 20:22:25 server2.1 [2014-02-21T20:22:24-08:00] INFO: Storing updated cookbooks/mysql/templates/windows/my.cnf.erb in the cache. -Feb 21 20:22:25 server2.1 [2014-02-21T20:22:25-08:00] INFO: Storing updated cookbooks/mysql/LICENSE in the cache. -Feb 21 20:22:26 server2.1 [2014-02-21T20:22:26-08:00] INFO: Storing updated cookbooks/mysql/CHANGELOG.md in the cache. -Feb 21 20:22:26 server2.1 [2014-02-21T20:22:26-08:00] INFO: Storing updated cookbooks/mysql/metadata.rb in the cache. -Feb 21 20:22:26 server2.1 [2014-02-21T20:22:26-08:00] INFO: Storing updated cookbooks/mysql/TESTING.md in the cache. -Feb 21 20:22:26 server2.1 [2014-02-21T20:22:26-08:00] INFO: Storing updated cookbooks/mysql/Berksfile in the cache. -Feb 21 20:22:26 server2.1 [2014-02-21T20:22:26-08:00] INFO: Storing updated cookbooks/mysql/README.md in the cache. -Feb 21 20:22:27 server2.1 [2014-02-21T20:22:26-08:00] INFO: Storing updated cookbooks/mysql/CONTRIBUTING in the cache. -Feb 21 20:22:27 server2.1 [2014-02-21T20:22:27-08:00] INFO: Storing updated cookbooks/mysql/.kitchen.yml in the cache. -Feb 21 20:22:27 server2.1 [2014-02-21T20:22:27-08:00] INFO: Storing updated cookbooks/database/recipes/mysql.rb in the cache. -Feb 21 20:22:27 server2.1 [2014-02-21T20:22:27-08:00] INFO: Storing updated cookbooks/database/recipes/ebs_backup.rb in the cache. -Feb 21 20:22:27 server2.1 [2014-02-21T20:22:27-08:00] INFO: Storing updated cookbooks/database/recipes/default.rb in the cache. -Feb 21 20:22:27 server2.1 [2014-02-21T20:22:27-08:00] INFO: Storing updated cookbooks/database/recipes/ebs_volume.rb in the cache. -Feb 21 20:22:27 server2.1 [2014-02-21T20:22:27-08:00] INFO: Storing updated cookbooks/database/recipes/postgresql.rb in the cache. -Feb 21 20:22:28 server2.1 [2014-02-21T20:22:27-08:00] INFO: Storing updated cookbooks/database/recipes/master.rb in the cache. -Feb 21 20:22:28 server2.1 [2014-02-21T20:22:27-08:00] INFO: Storing updated cookbooks/database/recipes/snapshot.rb in the cache. -Feb 21 20:22:28 server2.1 [2014-02-21T20:22:28-08:00] INFO: Storing updated cookbooks/database/libraries/provider_database_mysql_user.rb in the cache. -Feb 21 20:22:28 server2.1 [2014-02-21T20:22:28-08:00] INFO: Storing updated cookbooks/database/libraries/provider_database_postgresql.rb in the cache. -Feb 21 20:22:28 server2.1 [2014-02-21T20:22:28-08:00] INFO: Storing updated cookbooks/database/libraries/resource_database_user.rb in the cache. -Feb 21 20:22:28 server2.1 [2014-02-21T20:22:28-08:00] INFO: Storing updated cookbooks/database/libraries/provider_database_postgresql_user.rb in the cache. -Feb 21 20:22:28 server2.1 [2014-02-21T20:22:28-08:00] INFO: Storing updated cookbooks/database/libraries/resource_mysql_database_user.rb in the cache. -Feb 21 20:22:28 server2.1 [2014-02-21T20:22:28-08:00] INFO: Storing updated cookbooks/database/libraries/resource_sql_server_database_user.rb in the cache. -Feb 21 20:22:29 server2.1 [2014-02-21T20:22:29-08:00] INFO: Storing updated cookbooks/database/libraries/provider_database_mysql.rb in the cache. -Feb 21 20:22:29 server2.1 [2014-02-21T20:22:29-08:00] INFO: Storing updated cookbooks/database/libraries/resource_mysql_database.rb in the cache. -Feb 21 20:22:30 server2.1 [2014-02-21T20:22:29-08:00] INFO: Storing updated cookbooks/database/libraries/provider_database_sql_server.rb in the cache. -Feb 21 20:22:30 server2.1 [2014-02-21T20:22:29-08:00] INFO: Storing updated cookbooks/database/libraries/resource_database.rb in the cache. -Feb 21 20:22:30 server2.1 [2014-02-21T20:22:29-08:00] INFO: Storing updated cookbooks/database/libraries/resource_postgresql_database_user.rb in the cache. -Feb 21 20:22:30 server2.1 [2014-02-21T20:22:30-08:00] INFO: Storing updated cookbooks/database/libraries/provider_database_sql_server_user.rb in the cache. -Feb 21 20:22:30 server2.1 [2014-02-21T20:22:30-08:00] INFO: Storing updated cookbooks/database/libraries/resource_sql_server_database.rb in the cache. -Feb 21 20:22:30 server2.1 [2014-02-21T20:22:30-08:00] INFO: Storing updated cookbooks/database/libraries/resource_postgresql_database.rb in the cache. -Feb 21 20:22:30 server2.1 [2014-02-21T20:22:30-08:00] INFO: Storing updated cookbooks/database/templates/default/ebs-db-restore.sh.erb in the cache. -Feb 21 20:22:30 server2.1 [2014-02-21T20:22:30-08:00] INFO: Storing updated cookbooks/database/templates/default/aws_config.erb in the cache. -Feb 21 20:22:30 server2.1 [2014-02-21T20:22:30-08:00] INFO: Storing updated cookbooks/database/templates/default/chef-solo-database-snapshot.rb.erb in the cache. -Feb 21 20:22:30 server2.1 [2014-02-21T20:22:30-08:00] INFO: Storing updated cookbooks/database/templates/default/ebs-backup-cron.erb in the cache. -Feb 21 20:22:30 server2.1 [2014-02-21T20:22:30-08:00] INFO: Storing updated cookbooks/database/templates/default/app_grants.sql.erb in the cache. -Feb 21 20:22:31 server2.1 [2014-02-21T20:22:30-08:00] INFO: Storing updated cookbooks/database/templates/default/s3cfg.erb in the cache. -Feb 21 20:22:31 server2.1 [2014-02-21T20:22:30-08:00] INFO: Storing updated cookbooks/database/templates/default/chef-solo-database-snapshot.cron.erb in the cache. -Feb 21 20:22:31 server2.1 [2014-02-21T20:22:30-08:00] INFO: Storing updated cookbooks/database/templates/default/chef-solo-database-snapshot.json.erb in the cache. -Feb 21 20:22:31 server2.1 [2014-02-21T20:22:31-08:00] INFO: Storing updated cookbooks/database/templates/default/ebs-db-backup.sh.erb in the cache. -Feb 21 20:22:31 server2.1 [2014-02-21T20:22:31-08:00] INFO: Storing updated cookbooks/database/LICENSE in the cache. -Feb 21 20:22:31 server2.1 [2014-02-21T20:22:31-08:00] INFO: Storing updated cookbooks/database/CHANGELOG.md in the cache. -Feb 21 20:22:32 server2.1 [2014-02-21T20:22:31-08:00] INFO: Storing updated cookbooks/database/metadata.rb in the cache. -Feb 21 20:22:32 server2.1 [2014-02-21T20:22:32-08:00] INFO: Storing updated cookbooks/database/README.md in the cache. -Feb 21 20:22:32 server2.1 [2014-02-21T20:22:32-08:00] INFO: Storing updated cookbooks/database/CONTRIBUTING in the cache. -Feb 21 20:22:32 server2.1 [2014-02-21T20:22:32-08:00] INFO: Storing updated cookbooks/openstack-ops-database/recipes/mysql-server.rb in the cache. -Feb 21 20:22:33 server2.1 [2014-02-21T20:22:32-08:00] INFO: Storing updated cookbooks/openstack-ops-database/recipes/server.rb in the cache. -Feb 21 20:22:33 server2.1 [2014-02-21T20:22:32-08:00] INFO: Storing updated cookbooks/openstack-ops-database/recipes/openstack-db.rb in the cache. -Feb 21 20:22:33 server2.1 [2014-02-21T20:22:32-08:00] INFO: Storing updated cookbooks/openstack-ops-database/recipes/postgresql-server.rb in the cache. -Feb 21 20:22:33 server2.1 [2014-02-21T20:22:33-08:00] INFO: Storing updated cookbooks/openstack-ops-database/recipes/postgresql-client.rb in the cache. -Feb 21 20:22:33 server2.1 [2014-02-21T20:22:33-08:00] INFO: Storing updated cookbooks/openstack-ops-database/recipes/mysql-client.rb in the cache. -Feb 21 20:22:33 server2.1 [2014-02-21T20:22:33-08:00] INFO: Storing updated cookbooks/openstack-ops-database/recipes/client.rb in the cache. -Feb 21 20:22:34 server2.1 [2014-02-21T20:22:33-08:00] INFO: Storing updated cookbooks/openstack-ops-database/attributes/default.rb in the cache. -Feb 21 20:22:34 server2.1 [2014-02-21T20:22:34-08:00] INFO: Storing updated cookbooks/openstack-ops-database/LICENSE in the cache. -Feb 21 20:22:34 server2.1 [2014-02-21T20:22:34-08:00] INFO: Storing updated cookbooks/openstack-ops-database/CHANGELOG.md in the cache. -Feb 21 20:22:34 server2.1 [2014-02-21T20:22:34-08:00] INFO: Storing updated cookbooks/openstack-ops-database/metadata.rb in the cache. -Feb 21 20:22:34 server2.1 [2014-02-21T20:22:34-08:00] INFO: Storing updated cookbooks/openstack-ops-database/README.md in the cache. -Feb 21 20:22:34 server2.1 [2014-02-21T20:22:34-08:00] INFO: Storing updated cookbooks/xfs/recipes/default.rb in the cache. -Feb 21 20:22:35 server2.1 [2014-02-21T20:22:34-08:00] INFO: Storing updated cookbooks/xfs/LICENSE in the cache. -Feb 21 20:22:35 server2.1 [2014-02-21T20:22:35-08:00] INFO: Storing updated cookbooks/xfs/CHANGELOG.md in the cache. -Feb 21 20:22:35 server2.1 [2014-02-21T20:22:35-08:00] INFO: Storing updated cookbooks/xfs/metadata.rb in the cache. -Feb 21 20:22:35 server2.1 [2014-02-21T20:22:35-08:00] INFO: Storing updated cookbooks/xfs/TESTING.md in the cache. -Feb 21 20:22:35 server2.1 [2014-02-21T20:22:35-08:00] INFO: Storing updated cookbooks/xfs/Berksfile in the cache. -Feb 21 20:22:35 server2.1 [2014-02-21T20:22:35-08:00] INFO: Storing updated cookbooks/xfs/README.md in the cache. -Feb 21 20:22:36 server2.1 [2014-02-21T20:22:35-08:00] INFO: Storing updated cookbooks/xfs/CONTRIBUTING in the cache. -Feb 21 20:22:36 server2.1 [2014-02-21T20:22:35-08:00] INFO: Storing updated cookbooks/xfs/.kitchen.yml in the cache. -Feb 21 20:22:36 server2.1 [2014-02-21T20:22:35-08:00] INFO: Storing updated cookbooks/aws/resources/s3_file.rb in the cache. -Feb 21 20:22:36 server2.1 [2014-02-21T20:22:35-08:00] INFO: Storing updated cookbooks/aws/resources/elastic_lb.rb in the cache. -Feb 21 20:22:36 server2.1 [2014-02-21T20:22:36-08:00] INFO: Storing updated cookbooks/aws/resources/resource_tag.rb in the cache. -Feb 21 20:22:36 server2.1 [2014-02-21T20:22:36-08:00] INFO: Storing updated cookbooks/aws/resources/ebs_volume.rb in the cache. -Feb 21 20:22:36 server2.1 [2014-02-21T20:22:36-08:00] INFO: Storing updated cookbooks/aws/resources/ebs_raid.rb in the cache. -Feb 21 20:22:36 server2.1 [2014-02-21T20:22:36-08:00] INFO: Storing updated cookbooks/aws/resources/elastic_ip.rb in the cache. -Feb 21 20:22:36 server2.1 [2014-02-21T20:22:36-08:00] INFO: Storing updated cookbooks/aws/providers/s3_file.rb in the cache. -Feb 21 20:22:36 server2.1 [2014-02-21T20:22:36-08:00] INFO: Storing updated cookbooks/aws/providers/elastic_lb.rb in the cache. -Feb 21 20:22:36 server2.1 [2014-02-21T20:22:36-08:00] INFO: Storing updated cookbooks/aws/providers/resource_tag.rb in the cache. -Feb 21 20:22:37 server2.1 [2014-02-21T20:22:36-08:00] INFO: Storing updated cookbooks/aws/providers/ebs_volume.rb in the cache. -Feb 21 20:22:37 server2.1 [2014-02-21T20:22:36-08:00] INFO: Storing updated cookbooks/aws/providers/ebs_raid.rb in the cache. -Feb 21 20:22:37 server2.1 [2014-02-21T20:22:36-08:00] INFO: Storing updated cookbooks/aws/providers/elastic_ip.rb in the cache. -Feb 21 20:22:37 server2.1 [2014-02-21T20:22:37-08:00] INFO: Storing updated cookbooks/aws/recipes/default.rb in the cache. -Feb 21 20:22:37 server2.1 [2014-02-21T20:22:37-08:00] INFO: Storing updated cookbooks/aws/libraries/ec2.rb in the cache. -Feb 21 20:22:37 server2.1 [2014-02-21T20:22:37-08:00] INFO: Storing updated cookbooks/aws/attributes/default.rb in the cache. -Feb 21 20:22:37 server2.1 [2014-02-21T20:22:37-08:00] INFO: Storing updated cookbooks/aws/LICENSE in the cache. -Feb 21 20:22:37 server2.1 [2014-02-21T20:22:37-08:00] INFO: Storing updated cookbooks/aws/CHANGELOG.md in the cache. -Feb 21 20:22:37 server2.1 [2014-02-21T20:22:37-08:00] INFO: Storing updated cookbooks/aws/metadata.rb in the cache. -Feb 21 20:22:37 server2.1 [2014-02-21T20:22:37-08:00] INFO: Storing updated cookbooks/aws/README.md in the cache. -Feb 21 20:22:38 server2.1 [2014-02-21T20:22:38-08:00] INFO: Storing updated cookbooks/aws/CONTRIBUTING in the cache. -Feb 21 20:22:38 server2.1 [2014-02-21T20:22:38-08:00] INFO: Storing updated cookbooks/openssl/recipes/default.rb in the cache. -Feb 21 20:22:39 server2.1 [2014-02-21T20:22:39-08:00] INFO: Storing updated cookbooks/openssl/libraries/secure_password.rb in the cache. -Feb 21 20:22:39 server2.1 [2014-02-21T20:22:39-08:00] INFO: Storing updated cookbooks/openssl/LICENSE in the cache. -Feb 21 20:22:39 server2.1 [2014-02-21T20:22:39-08:00] INFO: Storing updated cookbooks/openssl/CHANGELOG.md in the cache. -Feb 21 20:22:40 server2.1 [2014-02-21T20:22:39-08:00] INFO: Storing updated cookbooks/openssl/metadata.rb in the cache. -Feb 21 20:22:40 server2.1 [2014-02-21T20:22:39-08:00] INFO: Storing updated cookbooks/openssl/README.md in the cache. -Feb 21 20:22:40 server2.1 [2014-02-21T20:22:39-08:00] INFO: Storing updated cookbooks/openssl/CONTRIBUTING in the cache. -Feb 21 20:22:40 server2.1 [2014-02-21T20:22:39-08:00] INFO: Storing updated cookbooks/build-essential/recipes/smartos.rb in the cache. -Feb 21 20:22:40 server2.1 [2014-02-21T20:22:40-08:00] INFO: Storing updated cookbooks/build-essential/recipes/fedora.rb in the cache. -Feb 21 20:22:40 server2.1 [2014-02-21T20:22:40-08:00] INFO: Storing updated cookbooks/build-essential/recipes/debian.rb in the cache. -Feb 21 20:22:40 server2.1 [2014-02-21T20:22:40-08:00] INFO: Storing updated cookbooks/build-essential/recipes/rhel.rb in the cache. -Feb 21 20:22:40 server2.1 [2014-02-21T20:22:40-08:00] INFO: Storing updated cookbooks/build-essential/recipes/default.rb in the cache. -Feb 21 20:22:40 server2.1 [2014-02-21T20:22:40-08:00] INFO: Storing updated cookbooks/build-essential/recipes/omnios.rb in the cache. -Feb 21 20:22:40 server2.1 [2014-02-21T20:22:40-08:00] INFO: Storing updated cookbooks/build-essential/recipes/mac_os_x.rb in the cache. -Feb 21 20:22:40 server2.1 [2014-02-21T20:22:40-08:00] INFO: Storing updated cookbooks/build-essential/recipes/suse.rb in the cache. -Feb 21 20:22:40 server2.1 [2014-02-21T20:22:40-08:00] INFO: Storing updated cookbooks/build-essential/recipes/solaris2.rb in the cache. -Feb 21 20:22:40 server2.1 [2014-02-21T20:22:40-08:00] INFO: Storing updated cookbooks/build-essential/attributes/default.rb in the cache. -Feb 21 20:22:40 server2.1 [2014-02-21T20:22:40-08:00] INFO: Storing updated cookbooks/build-essential/LICENSE in the cache. -Feb 21 20:22:41 server2.1 [2014-02-21T20:22:41-08:00] INFO: Storing updated cookbooks/build-essential/CHANGELOG.md in the cache. -Feb 21 20:22:41 server2.1 [2014-02-21T20:22:41-08:00] INFO: Storing updated cookbooks/build-essential/metadata.rb in the cache. -Feb 21 20:22:41 server2.1 [2014-02-21T20:22:41-08:00] INFO: Storing updated cookbooks/build-essential/TESTING.md in the cache. -Feb 21 20:22:41 server2.1 [2014-02-21T20:22:41-08:00] INFO: Storing updated cookbooks/build-essential/Berksfile in the cache. -Feb 21 20:22:41 server2.1 [2014-02-21T20:22:41-08:00] INFO: Storing updated cookbooks/build-essential/README.md in the cache. -Feb 21 20:22:41 server2.1 [2014-02-21T20:22:41-08:00] INFO: Storing updated cookbooks/build-essential/CONTRIBUTING in the cache. -Feb 21 20:22:42 server2.1 [2014-02-21T20:22:41-08:00] INFO: Storing updated cookbooks/build-essential/.kitchen.yml in the cache. -Feb 21 20:22:42 server2.1 [2014-02-21T20:22:42-08:00] INFO: Storing updated cookbooks/apt/resources/repository.rb in the cache. -Feb 21 20:22:42 server2.1 [2014-02-21T20:22:42-08:00] INFO: Storing updated cookbooks/apt/resources/preference.rb in the cache. -Feb 21 20:22:42 server2.1 [2014-02-21T20:22:42-08:00] INFO: Storing updated cookbooks/apt/providers/repository.rb in the cache. -Feb 21 20:22:42 server2.1 [2014-02-21T20:22:42-08:00] INFO: Storing updated cookbooks/apt/providers/preference.rb in the cache. -Feb 21 20:22:42 server2.1 [2014-02-21T20:22:42-08:00] INFO: Storing updated cookbooks/apt/recipes/default.rb in the cache. -Feb 21 20:22:42 server2.1 [2014-02-21T20:22:42-08:00] INFO: Storing updated cookbooks/apt/recipes/cacher-ng.rb in the cache. -Feb 21 20:22:42 server2.1 [2014-02-21T20:22:42-08:00] INFO: Storing updated cookbooks/apt/recipes/cacher-client.rb in the cache. -Feb 21 20:22:43 server2.1 [2014-02-21T20:22:42-08:00] INFO: Storing updated cookbooks/apt/attributes/default.rb in the cache. -Feb 21 20:22:43 server2.1 [2014-02-21T20:22:43-08:00] INFO: Storing updated cookbooks/apt/files/default/apt-proxy-v2.conf in the cache. -Feb 21 20:22:43 server2.1 [2014-02-21T20:22:43-08:00] INFO: Storing updated cookbooks/apt/templates/debian-6.0/acng.conf.erb in the cache. -Feb 21 20:22:43 server2.1 [2014-02-21T20:22:43-08:00] INFO: Storing updated cookbooks/apt/templates/ubuntu-10.04/acng.conf.erb in the cache. -Feb 21 20:22:44 server2.1 [2014-02-21T20:22:43-08:00] INFO: Storing updated cookbooks/apt/templates/default/acng.conf.erb in the cache. -Feb 21 20:22:44 server2.1 [2014-02-21T20:22:43-08:00] INFO: Storing updated cookbooks/apt/templates/default/01proxy.erb in the cache. -Feb 21 20:22:44 server2.1 [2014-02-21T20:22:43-08:00] INFO: Storing updated cookbooks/apt/LICENSE in the cache. -Feb 21 20:22:44 server2.1 [2014-02-21T20:22:44-08:00] INFO: Storing updated cookbooks/apt/CHANGELOG.md in the cache. -Feb 21 20:22:44 server2.1 [2014-02-21T20:22:44-08:00] INFO: Storing updated cookbooks/apt/metadata.rb in the cache. -Feb 21 20:22:44 server2.1 [2014-02-21T20:22:44-08:00] INFO: Storing updated cookbooks/apt/TESTING.md in the cache. -Feb 21 20:22:44 server2.1 [2014-02-21T20:22:44-08:00] INFO: Storing updated cookbooks/apt/Berksfile in the cache. -Feb 21 20:22:44 server2.1 [2014-02-21T20:22:44-08:00] INFO: Storing updated cookbooks/apt/README.md in the cache. -Feb 21 20:22:44 server2.1 [2014-02-21T20:22:44-08:00] INFO: Storing updated cookbooks/apt/CONTRIBUTING in the cache. -Feb 21 20:22:45 server2.1 [2014-02-21T20:22:44-08:00] INFO: Storing updated cookbooks/apt/.kitchen.yml in the cache. -Feb 21 20:22:45 server2.1 [2014-02-21T20:22:45-08:00] INFO: Storing updated cookbooks/postgresql/recipes/yum_pgdg_postgresql.rb in the cache. -Feb 21 20:22:45 server2.1 [2014-02-21T20:22:45-08:00] INFO: Storing updated cookbooks/postgresql/recipes/server.rb in the cache. -Feb 21 20:22:45 server2.1 [2014-02-21T20:22:45-08:00] INFO: Storing updated cookbooks/postgresql/recipes/server_redhat.rb in the cache. -Feb 21 20:22:45 server2.1 [2014-02-21T20:22:45-08:00] INFO: Storing updated cookbooks/postgresql/recipes/config_pgtune.rb in the cache. -Feb 21 20:22:45 server2.1 [2014-02-21T20:22:45-08:00] INFO: Storing updated cookbooks/postgresql/recipes/server_debian.rb in the cache. -Feb 21 20:22:46 server2.1 [2014-02-21T20:22:45-08:00] INFO: Storing updated cookbooks/postgresql/recipes/contrib.rb in the cache. -Feb 21 20:22:46 server2.1 [2014-02-21T20:22:45-08:00] INFO: Storing updated cookbooks/postgresql/recipes/default.rb in the cache. -Feb 21 20:22:46 server2.1 [2014-02-21T20:22:45-08:00] INFO: Storing updated cookbooks/postgresql/recipes/apt_pgdg_postgresql.rb in the cache. -Feb 21 20:22:46 server2.1 [2014-02-21T20:22:46-08:00] INFO: Storing updated cookbooks/postgresql/recipes/config_initdb.rb in the cache. -Feb 21 20:22:46 server2.1 [2014-02-21T20:22:46-08:00] INFO: Storing updated cookbooks/postgresql/recipes/ruby.rb in the cache. -Feb 21 20:22:46 server2.1 [2014-02-21T20:22:46-08:00] INFO: Storing updated cookbooks/postgresql/recipes/client.rb in the cache. -Feb 21 20:22:46 server2.1 [2014-02-21T20:22:46-08:00] INFO: Storing updated cookbooks/postgresql/libraries/default.rb in the cache. -Feb 21 20:22:46 server2.1 [2014-02-21T20:22:46-08:00] INFO: Storing updated cookbooks/postgresql/attributes/default.rb in the cache. -Feb 21 20:22:46 server2.1 [2014-02-21T20:22:46-08:00] INFO: Storing updated cookbooks/postgresql/files/default/tests/minitest/server_test.rb in the cache. -Feb 21 20:22:46 server2.1 [2014-02-21T20:22:46-08:00] INFO: Storing updated cookbooks/postgresql/files/default/tests/minitest/apt_pgdg_postgresql_test.rb in the cache. -Feb 21 20:22:46 server2.1 [2014-02-21T20:22:46-08:00] INFO: Storing updated cookbooks/postgresql/files/default/tests/minitest/default_test.rb in the cache. -Feb 21 20:22:46 server2.1 [2014-02-21T20:22:46-08:00] INFO: Storing updated cookbooks/postgresql/files/default/tests/minitest/ruby_test.rb in the cache. -Feb 21 20:22:46 server2.1 [2014-02-21T20:22:46-08:00] INFO: Storing updated cookbooks/postgresql/files/default/tests/minitest/support/helpers.rb in the cache. -Feb 21 20:22:47 server2.1 [2014-02-21T20:22:46-08:00] INFO: Storing updated cookbooks/postgresql/templates/default/postgresql.conf.erb in the cache. -Feb 21 20:22:47 server2.1 [2014-02-21T20:22:46-08:00] INFO: Storing updated cookbooks/postgresql/templates/default/pgsql.sysconfig.erb in the cache. -Feb 21 20:22:47 server2.1 [2014-02-21T20:22:46-08:00] INFO: Storing updated cookbooks/postgresql/templates/default/pg_hba.conf.erb in the cache. -Feb 21 20:22:47 server2.1 [2014-02-21T20:22:46-08:00] INFO: Storing updated cookbooks/postgresql/LICENSE in the cache. -Feb 21 20:22:47 server2.1 [2014-02-21T20:22:46-08:00] INFO: Storing updated cookbooks/postgresql/CHANGELOG.md in the cache. -Feb 21 20:22:47 server2.1 [2014-02-21T20:22:47-08:00] INFO: Storing updated cookbooks/postgresql/metadata.rb in the cache. -Feb 21 20:22:47 server2.1 [2014-02-21T20:22:47-08:00] INFO: Storing updated cookbooks/postgresql/TESTING.md in the cache. -Feb 21 20:22:47 server2.1 [2014-02-21T20:22:47-08:00] INFO: Storing updated cookbooks/postgresql/CONTRIBUTING.md in the cache. -Feb 21 20:22:47 server2.1 [2014-02-21T20:22:47-08:00] INFO: Storing updated cookbooks/postgresql/Berksfile in the cache. -Feb 21 20:22:47 server2.1 [2014-02-21T20:22:47-08:00] INFO: Storing updated cookbooks/postgresql/README.md in the cache. -Feb 21 20:22:47 server2.1 [2014-02-21T20:22:47-08:00] INFO: Storing updated cookbooks/postgresql/.kitchen.yml in the cache. -Feb 21 20:22:47 server2.1 [2014-02-21T20:22:47-08:00] INFO: Storing updated cookbooks/yum/resources/key.rb in the cache. -Feb 21 20:22:47 server2.1 [2014-02-21T20:22:47-08:00] INFO: Storing updated cookbooks/yum/resources/repository.rb in the cache. -Feb 21 20:22:47 server2.1 [2014-02-21T20:22:47-08:00] INFO: Storing updated cookbooks/yum/providers/key.rb in the cache. -Feb 21 20:22:47 server2.1 [2014-02-21T20:22:47-08:00] INFO: Storing updated cookbooks/yum/providers/repository.rb in the cache. -Feb 21 20:22:47 server2.1 [2014-02-21T20:22:47-08:00] INFO: Storing updated cookbooks/yum/recipes/test.rb in the cache. -Feb 21 20:22:48 server2.1 [2014-02-21T20:22:47-08:00] INFO: Storing updated cookbooks/yum/recipes/epel.rb in the cache. -Feb 21 20:22:48 server2.1 [2014-02-21T20:22:48-08:00] INFO: Storing updated cookbooks/yum/recipes/yum.rb in the cache. -Feb 21 20:22:48 server2.1 [2014-02-21T20:22:48-08:00] INFO: Storing updated cookbooks/yum/recipes/default.rb in the cache. -Feb 21 20:22:48 server2.1 [2014-02-21T20:22:48-08:00] INFO: Storing updated cookbooks/yum/recipes/ius.rb in the cache. -Feb 21 20:22:48 server2.1 [2014-02-21T20:22:48-08:00] INFO: Storing updated cookbooks/yum/recipes/repoforge.rb in the cache. -Feb 21 20:22:48 server2.1 [2014-02-21T20:22:48-08:00] INFO: Storing updated cookbooks/yum/recipes/elrepo.rb in the cache. -Feb 21 20:22:48 server2.1 [2014-02-21T20:22:48-08:00] INFO: Storing updated cookbooks/yum/recipes/remi.rb in the cache. -Feb 21 20:22:48 server2.1 [2014-02-21T20:22:48-08:00] INFO: Storing updated cookbooks/yum/attributes/epel.rb in the cache. -Feb 21 20:22:48 server2.1 [2014-02-21T20:22:48-08:00] INFO: Storing updated cookbooks/yum/attributes/default.rb in the cache. -Feb 21 20:22:48 server2.1 [2014-02-21T20:22:48-08:00] INFO: Storing updated cookbooks/yum/attributes/elrepo.rb in the cache. -Feb 21 20:22:49 server2.1 [2014-02-21T20:22:48-08:00] INFO: Storing updated cookbooks/yum/attributes/remi.rb in the cache. -Feb 21 20:22:49 server2.1 [2014-02-21T20:22:49-08:00] INFO: Storing updated cookbooks/yum/files/default/tests/minitest/test_test.rb in the cache. -Feb 21 20:22:49 server2.1 [2014-02-21T20:22:49-08:00] INFO: Storing updated cookbooks/yum/files/default/tests/minitest/default_test.rb in the cache. -Feb 21 20:22:49 server2.1 [2014-02-21T20:22:49-08:00] INFO: Storing updated cookbooks/yum/files/default/tests/minitest/support/helpers.rb in the cache. -Feb 21 20:22:49 server2.1 [2014-02-21T20:22:49-08:00] INFO: Storing updated cookbooks/yum/files/default/RPM-GPG-KEY-EPEL-6 in the cache. -Feb 21 20:22:49 server2.1 [2014-02-21T20:22:49-08:00] INFO: Storing updated cookbooks/yum/templates/default/repo.erb in the cache. -Feb 21 20:22:49 server2.1 [2014-02-21T20:22:49-08:00] INFO: Storing updated cookbooks/yum/templates/default/yum-rhel6.conf.erb in the cache. -Feb 21 20:22:49 server2.1 [2014-02-21T20:22:49-08:00] INFO: Storing updated cookbooks/yum/templates/default/yum-rhel5.conf.erb in the cache. -Feb 21 20:22:49 server2.1 [2014-02-21T20:22:49-08:00] INFO: Storing updated cookbooks/yum/LICENSE in the cache. -Feb 21 20:22:49 server2.1 [2014-02-21T20:22:49-08:00] INFO: Storing updated cookbooks/yum/CHANGELOG.md in the cache. -Feb 21 20:22:51 server2.1 [2014-02-21T20:22:49-08:00] INFO: Storing updated cookbooks/yum/metadata.rb in the cache. -Feb 21 20:22:51 server2.1 [2014-02-21T20:22:51-08:00] INFO: Storing updated cookbooks/yum/CONTRIBUTING.md in the cache. -Feb 21 20:22:51 server2.1 [2014-02-21T20:22:51-08:00] INFO: Storing updated cookbooks/yum/Berksfile in the cache. -Feb 21 20:22:51 server2.1 [2014-02-21T20:22:51-08:00] INFO: Storing updated cookbooks/yum/README.md in the cache. -Feb 21 20:22:51 server2.1 [2014-02-21T20:22:51-08:00] INFO: Storing updated cookbooks/yum/.kitchen.yml in the cache. -Feb 21 20:22:51 server2.1 [2014-02-21T20:22:51-08:00] INFO: Storing updated cookbooks/openstack-common/recipes/default.rb in the cache. -Feb 21 20:22:51 server2.1 [2014-02-21T20:22:51-08:00] INFO: Storing updated cookbooks/openstack-common/recipes/logging.rb in the cache. -Feb 21 20:22:52 server2.1 [2014-02-21T20:22:52-08:00] INFO: Storing updated cookbooks/openstack-common/recipes/databag.rb in the cache. -Feb 21 20:22:52 server2.1 [2014-02-21T20:22:52-08:00] INFO: Storing updated cookbooks/openstack-common/libraries/parse.rb in the cache. -Feb 21 20:22:52 server2.1 [2014-02-21T20:22:52-08:00] INFO: Storing updated cookbooks/openstack-common/libraries/endpoints.rb in the cache. -Feb 21 20:22:52 server2.1 [2014-02-21T20:22:52-08:00] INFO: Storing updated cookbooks/openstack-common/libraries/search.rb in the cache. -Feb 21 20:22:52 server2.1 [2014-02-21T20:22:52-08:00] INFO: Storing updated cookbooks/openstack-common/libraries/database.rb in the cache. -Feb 21 20:22:52 server2.1 [2014-02-21T20:22:52-08:00] INFO: Storing updated cookbooks/openstack-common/libraries/network.rb in the cache. -Feb 21 20:22:52 server2.1 [2014-02-21T20:22:52-08:00] INFO: Storing updated cookbooks/openstack-common/libraries/passwords.rb in the cache. -Feb 21 20:22:52 server2.1 [2014-02-21T20:22:52-08:00] INFO: Storing updated cookbooks/openstack-common/libraries/uri.rb in the cache. -Feb 21 20:22:52 server2.1 [2014-02-21T20:22:52-08:00] INFO: Storing updated cookbooks/openstack-common/attributes/default.rb in the cache. -Feb 21 20:22:52 server2.1 [2014-02-21T20:22:52-08:00] INFO: Storing updated cookbooks/openstack-common/templates/default/logging.conf.erb in the cache. -Feb 21 20:22:52 server2.1 [2014-02-21T20:22:52-08:00] INFO: Storing updated cookbooks/openstack-common/LICENSE in the cache. -Feb 21 20:22:52 server2.1 [2014-02-21T20:22:52-08:00] INFO: Storing updated cookbooks/openstack-common/Strainerfile in the cache. -Feb 21 20:22:52 server2.1 [2014-02-21T20:22:52-08:00] INFO: Storing updated cookbooks/openstack-common/.tailor in the cache. -Feb 21 20:22:52 server2.1 [2014-02-21T20:22:52-08:00] INFO: Storing updated cookbooks/openstack-common/CHANGELOG.md in the cache. -Feb 21 20:22:53 server2.1 [2014-02-21T20:22:52-08:00] INFO: Storing updated cookbooks/openstack-common/metadata.rb in the cache. -Feb 21 20:22:53 server2.1 [2014-02-21T20:22:52-08:00] INFO: Storing updated cookbooks/openstack-common/Berksfile in the cache. -Feb 21 20:22:53 server2.1 [2014-02-21T20:22:52-08:00] INFO: Storing updated cookbooks/openstack-common/README.md in the cache. -Feb 21 20:22:53 server2.1 [2014-02-21T20:22:52-08:00] INFO: Storing updated cookbooks/openstack-common/Gemfile.lock in the cache. -Feb 21 20:22:53 server2.1 [2014-02-21T20:22:52-08:00] INFO: Storing updated cookbooks/openstack-common/Gemfile in the cache. -Feb 21 20:23:05 server2.1 [2014-02-21T20:23:04-08:00] INFO: Processing package[autoconf] action install (build-essential::rhel line 38) -Feb 21 20:23:47 server2.1 [2014-02-21T20:23:46-08:00] INFO: package[autoconf] installing autoconf-2.63-5.1.el6 from base repository -Feb 21 20:25:48 server2.1 [2014-02-21T20:25:48-08:00] INFO: Processing package[bison] action install (build-essential::rhel line 38) -Feb 21 20:25:49 server2.1 [2014-02-21T20:25:49-08:00] INFO: package[bison] installing bison-2.4.1-5.el6 from base repository -Feb 21 20:26:04 server2.1 [2014-02-21T20:26:03-08:00] INFO: Processing package[flex] action install (build-essential::rhel line 38) -Feb 21 20:26:04 server2.1 [2014-02-21T20:26:03-08:00] INFO: package[flex] installing flex-2.5.35-8.el6 from base repository -Feb 21 20:26:11 server2.1 [2014-02-21T20:26:10-08:00] INFO: Processing package[gcc] action install (build-essential::rhel line 38) -Feb 21 20:26:14 server2.1 [2014-02-21T20:26:13-08:00] INFO: package[gcc] installing gcc-4.4.7-4.el6 from base repository -Feb 21 20:28:09 server2.1 [2014-02-21T20:28:09-08:00] INFO: Processing package[gcc-c++] action install (build-essential::rhel line 38) -Feb 21 20:28:11 server2.1 [2014-02-21T20:28:11-08:00] INFO: package[gcc-c++] installing gcc-c++-4.4.7-4.el6 from base repository -Feb 21 20:28:35 server2.1 [2014-02-21T20:28:35-08:00] INFO: Processing package[kernel-devel] action install (build-essential::rhel line 38) -Feb 21 20:28:38 server2.1 [2014-02-21T20:28:38-08:00] INFO: package[kernel-devel] installing kernel-devel-2.6.32-431.5.1.el6 from updates repository -Feb 21 20:29:49 server2.1 [2014-02-21T20:29:49-08:00] INFO: Processing package[make] action install (build-essential::rhel line 38) -Feb 21 20:29:49 server2.1 [2014-02-21T20:29:49-08:00] INFO: Processing package[m4] action install (build-essential::rhel line 38) -Feb 21 20:29:49 server2.1 [2014-02-21T20:29:49-08:00] INFO: Processing package[mysql] action install (mysql::client line 46) -Feb 21 20:29:49 server2.1 [2014-02-21T20:29:49-08:00] INFO: package[mysql] installing mysql-5.1.73-3.el6_5 from updates repository -Feb 21 20:30:18 server2.1 [2014-02-21T20:30:18-08:00] INFO: Processing package[mysql-devel] action install (mysql::client line 46) -Feb 21 20:30:19 server2.1 [2014-02-21T20:30:19-08:00] INFO: package[mysql-devel] installing mysql-devel-5.1.73-3.el6_5 from updates repository -Feb 21 20:31:06 server2.1 [2014-02-21T20:31:05-08:00] INFO: Processing chef_gem[mysql] action install (mysql::ruby line 31) -Feb 21 20:31:26 server2.1 [2014-02-21T20:31:25-08:00] WARN: Cloning resource attributes for directory[/var/lib/mysql] from prior resource (CHEF-3694) -Feb 21 20:31:26 server2.1 [2014-02-21T20:31:25-08:00] WARN: Previous directory[/var/lib/mysql]: /var/chef/cache/cookbooks/mysql/recipes/server.rb:115:in `block in from_file' -Feb 21 20:31:26 server2.1 [2014-02-21T20:31:25-08:00] WARN: Current directory[/var/lib/mysql]: /var/chef/cache/cookbooks/mysql/recipes/server.rb:115:in `block in from_file' -Feb 21 20:31:26 server2.1 [2014-02-21T20:31:25-08:00] INFO: Could not find previously defined grants.sql resource -Feb 21 20:31:26 server2.1 [2014-02-21T20:31:25-08:00] WARN: Cloning resource attributes for service[mysql] from prior resource (CHEF-3694) -Feb 21 20:31:26 server2.1 [2014-02-21T20:31:25-08:00] WARN: Previous service[mysql]: /var/chef/cache/cookbooks/mysql/recipes/server.rb:161:in `from_file' -Feb 21 20:31:26 server2.1 [2014-02-21T20:31:25-08:00] WARN: Current service[mysql]: /var/chef/cache/cookbooks/mysql/recipes/server.rb:225:in `from_file' -Feb 21 20:31:26 server2.1 [2014-02-21T20:31:25-08:00] WARN: Cloning resource attributes for database_user[service] from prior resource (CHEF-3694) -Feb 21 20:31:26 server2.1 [2014-02-21T20:31:25-08:00] WARN: Previous database_user[service]: /var/chef/cache/cookbooks/openstack-common/libraries/database.rb:82:in `db_create_with_user' -Feb 21 20:31:26 server2.1 [2014-02-21T20:31:25-08:00] WARN: Current database_user[service]: /var/chef/cache/cookbooks/openstack-common/libraries/database.rb:90:in `db_create_with_user' -Feb 21 20:31:26 server2.1 [2014-02-21T20:31:25-08:00] WARN: Cloning resource attributes for database_user[horizon] from prior resource (CHEF-3694) -Feb 21 20:31:26 server2.1 [2014-02-21T20:31:25-08:00] WARN: Previous database_user[horizon]: /var/chef/cache/cookbooks/openstack-common/libraries/database.rb:82:in `db_create_with_user' -Feb 21 20:31:26 server2.1 [2014-02-21T20:31:25-08:00] WARN: Current database_user[horizon]: /var/chef/cache/cookbooks/openstack-common/libraries/database.rb:90:in `db_create_with_user' -Feb 21 20:31:26 server2.1 [2014-02-21T20:31:25-08:00] WARN: Cloning resource attributes for database_user[service] from prior resource (CHEF-3694) -Feb 21 20:31:26 server2.1 [2014-02-21T20:31:25-08:00] WARN: Previous database_user[service]: /var/chef/cache/cookbooks/openstack-common/libraries/database.rb:90:in `db_create_with_user' -Feb 21 20:31:26 server2.1 [2014-02-21T20:31:25-08:00] WARN: Current database_user[service]: /var/chef/cache/cookbooks/openstack-common/libraries/database.rb:82:in `db_create_with_user' -Feb 21 20:31:26 server2.1 [2014-02-21T20:31:25-08:00] WARN: Cloning resource attributes for database_user[service] from prior resource (CHEF-3694) -Feb 21 20:31:26 server2.1 [2014-02-21T20:31:25-08:00] WARN: Previous database_user[service]: /var/chef/cache/cookbooks/openstack-common/libraries/database.rb:82:in `db_create_with_user' -Feb 21 20:31:26 server2.1 [2014-02-21T20:31:25-08:00] WARN: Current database_user[service]: /var/chef/cache/cookbooks/openstack-common/libraries/database.rb:90:in `db_create_with_user' -Feb 21 20:31:26 server2.1 [2014-02-21T20:31:25-08:00] WARN: Cloning resource attributes for database_user[service] from prior resource (CHEF-3694) -Feb 21 20:31:26 server2.1 [2014-02-21T20:31:25-08:00] WARN: Previous database_user[service]: /var/chef/cache/cookbooks/openstack-common/libraries/database.rb:90:in `db_create_with_user' -Feb 21 20:31:26 server2.1 [2014-02-21T20:31:25-08:00] WARN: Current database_user[service]: /var/chef/cache/cookbooks/openstack-common/libraries/database.rb:82:in `db_create_with_user' -Feb 21 20:31:26 server2.1 [2014-02-21T20:31:25-08:00] WARN: Cloning resource attributes for database_user[service] from prior resource (CHEF-3694) -Feb 21 20:31:26 server2.1 [2014-02-21T20:31:25-08:00] WARN: Previous database_user[service]: /var/chef/cache/cookbooks/openstack-common/libraries/database.rb:82:in `db_create_with_user' -Feb 21 20:31:26 server2.1 [2014-02-21T20:31:25-08:00] WARN: Current database_user[service]: /var/chef/cache/cookbooks/openstack-common/libraries/database.rb:90:in `db_create_with_user' -Feb 21 20:31:26 server2.1 [2014-02-21T20:31:25-08:00] WARN: Cloning resource attributes for database_user[ceilometer] from prior resource (CHEF-3694) -Feb 21 20:31:26 server2.1 [2014-02-21T20:31:25-08:00] WARN: Previous database_user[ceilometer]: /var/chef/cache/cookbooks/openstack-common/libraries/database.rb:82:in `db_create_with_user' -Feb 21 20:31:26 server2.1 [2014-02-21T20:31:25-08:00] WARN: Current database_user[ceilometer]: /var/chef/cache/cookbooks/openstack-common/libraries/database.rb:90:in `db_create_with_user' -Feb 21 20:31:26 server2.1 [2014-02-21T20:31:25-08:00] WARN: Cloning resource attributes for database_user[service] from prior resource (CHEF-3694) -Feb 21 20:31:26 server2.1 [2014-02-21T20:31:25-08:00] WARN: Previous database_user[service]: /var/chef/cache/cookbooks/openstack-common/libraries/database.rb:90:in `db_create_with_user' -Feb 21 20:31:26 server2.1 [2014-02-21T20:31:25-08:00] WARN: Current database_user[service]: /var/chef/cache/cookbooks/openstack-common/libraries/database.rb:82:in `db_create_with_user' -Feb 21 20:31:26 server2.1 [2014-02-21T20:31:25-08:00] WARN: Cloning resource attributes for database_user[service] from prior resource (CHEF-3694) -Feb 21 20:31:26 server2.1 [2014-02-21T20:31:25-08:00] WARN: Previous database_user[service]: /var/chef/cache/cookbooks/openstack-common/libraries/database.rb:82:in `db_create_with_user' -Feb 21 20:31:26 server2.1 [2014-02-21T20:31:25-08:00] WARN: Current database_user[service]: /var/chef/cache/cookbooks/openstack-common/libraries/database.rb:90:in `db_create_with_user' -Feb 21 20:31:26 server2.1 [2014-02-21T20:31:25-08:00] WARN: Cloning resource attributes for database_user[service] from prior resource (CHEF-3694) -Feb 21 20:31:26 server2.1 [2014-02-21T20:31:25-08:00] WARN: Previous database_user[service]: /var/chef/cache/cookbooks/openstack-common/libraries/database.rb:90:in `db_create_with_user' -Feb 21 20:31:26 server2.1 [2014-02-21T20:31:25-08:00] WARN: Current database_user[service]: /var/chef/cache/cookbooks/openstack-common/libraries/database.rb:82:in `db_create_with_user' -Feb 21 20:31:26 server2.1 [2014-02-21T20:31:25-08:00] WARN: Cloning resource attributes for database_user[service] from prior resource (CHEF-3694) -Feb 21 20:31:26 server2.1 [2014-02-21T20:31:25-08:00] WARN: Previous database_user[service]: /var/chef/cache/cookbooks/openstack-common/libraries/database.rb:82:in `db_create_with_user' -Feb 21 20:31:26 server2.1 [2014-02-21T20:31:25-08:00] WARN: Current database_user[service]: /var/chef/cache/cookbooks/openstack-common/libraries/database.rb:90:in `db_create_with_user' -Feb 21 20:31:26 server2.1 [2014-02-21T20:31:25-08:00] INFO: Processing yum_key[RPM-GPG-KEY-EPEL-6] action add (yum::epel line 22) -Feb 21 20:31:26 server2.1 [2014-02-21T20:31:25-08:00] INFO: Adding RPM-GPG-KEY-EPEL-6 GPG key to /etc/pki/rpm-gpg/ -Feb 21 20:31:26 server2.1 [2014-02-21T20:31:25-08:00] INFO: Processing package[gnupg2] action install (/var/chef/cache/cookbooks/yum/providers/key.rb line 32) -Feb 21 20:31:26 server2.1 [2014-02-21T20:31:26-08:00] INFO: Processing execute[import-rpm-gpg-key-RPM-GPG-KEY-EPEL-6] action nothing (/var/chef/cache/cookbooks/yum/providers/key.rb line 35) -Feb 21 20:31:26 server2.1 [2014-02-21T20:31:26-08:00] INFO: Processing cookbook_file[/etc/pki/rpm-gpg/RPM-GPG-KEY-EPEL-6] action create (/var/chef/cache/cookbooks/yum/providers/key.rb line 66) -Feb 21 20:31:26 server2.1 [2014-02-21T20:31:26-08:00] INFO: cookbook_file[/etc/pki/rpm-gpg/RPM-GPG-KEY-EPEL-6] created file /etc/pki/rpm-gpg/RPM-GPG-KEY-EPEL-6 -Feb 21 20:31:26 server2.1 [2014-02-21T20:31:26-08:00] INFO: cookbook_file[/etc/pki/rpm-gpg/RPM-GPG-KEY-EPEL-6] updated file contents /etc/pki/rpm-gpg/RPM-GPG-KEY-EPEL-6 -Feb 21 20:31:26 server2.1 [2014-02-21T20:31:26-08:00] INFO: cookbook_file[/etc/pki/rpm-gpg/RPM-GPG-KEY-EPEL-6] mode changed to 644 -Feb 21 20:31:27 server2.1 [2014-02-21T20:31:26-08:00] INFO: Processing yum_repository[epel] action add (yum::epel line 27) -Feb 21 20:31:27 server2.1 [2014-02-21T20:31:26-08:00] INFO: Adding epel repository to /etc/yum.repos.d/epel.repo -Feb 21 20:31:27 server2.1 [2014-02-21T20:31:26-08:00] WARN: Cloning resource attributes for yum_key[RPM-GPG-KEY-EPEL-6] from prior resource (CHEF-3694) -Feb 21 20:31:27 server2.1 [2014-02-21T20:31:26-08:00] WARN: Previous yum_key[RPM-GPG-KEY-EPEL-6]: /var/chef/cache/cookbooks/yum/recipes/epel.rb:22:in `from_file' -Feb 21 20:31:27 server2.1 [2014-02-21T20:31:26-08:00] WARN: Current yum_key[RPM-GPG-KEY-EPEL-6]: /var/chef/cache/cookbooks/yum/providers/repository.rb:85:in `repo_config' -Feb 21 20:31:27 server2.1 [2014-02-21T20:31:26-08:00] INFO: Processing yum_key[RPM-GPG-KEY-EPEL-6] action add (/var/chef/cache/cookbooks/yum/providers/repository.rb line 85) -Feb 21 20:31:27 server2.1 [2014-02-21T20:31:26-08:00] INFO: Processing execute[yum-makecache] action nothing (/var/chef/cache/cookbooks/yum/providers/repository.rb line 88) -Feb 21 20:31:27 server2.1 [2014-02-21T20:31:26-08:00] INFO: Processing ruby_block[reload-internal-yum-cache] action nothing (/var/chef/cache/cookbooks/yum/providers/repository.rb line 93) -Feb 21 20:31:27 server2.1 [2014-02-21T20:31:26-08:00] INFO: Processing template[/etc/yum.repos.d/epel.repo] action create (/var/chef/cache/cookbooks/yum/providers/repository.rb line 100) -Feb 21 20:31:27 server2.1 [2014-02-21T20:31:26-08:00] INFO: template[/etc/yum.repos.d/epel.repo] created file /etc/yum.repos.d/epel.repo -Feb 21 20:31:27 server2.1 [2014-02-21T20:31:26-08:00] INFO: template[/etc/yum.repos.d/epel.repo] updated file contents /etc/yum.repos.d/epel.repo -Feb 21 20:31:27 server2.1 [2014-02-21T20:31:26-08:00] INFO: template[/etc/yum.repos.d/epel.repo] mode changed to 644 -Feb 21 20:31:27 server2.1 [2014-02-21T20:31:26-08:00] INFO: template[/etc/yum.repos.d/epel.repo] sending run action to execute[yum-makecache] (immediate) -Feb 21 20:31:27 server2.1 [2014-02-21T20:31:26-08:00] INFO: Processing execute[yum-makecache] action run (/var/chef/cache/cookbooks/yum/providers/repository.rb line 88) -Feb 21 20:32:35 server2.1 [2014-02-21T20:32:35-08:00] INFO: execute[yum-makecache] ran successfully -Feb 21 20:32:35 server2.1 [2014-02-21T20:32:35-08:00] INFO: template[/etc/yum.repos.d/epel.repo] sending create action to ruby_block[reload-internal-yum-cache] (immediate) -Feb 21 20:32:35 server2.1 [2014-02-21T20:32:35-08:00] INFO: Processing ruby_block[reload-internal-yum-cache] action create (/var/chef/cache/cookbooks/yum/providers/repository.rb line 93) -Feb 21 20:32:35 server2.1 [2014-02-21T20:32:35-08:00] INFO: ruby_block[reload-internal-yum-cache] called -Feb 21 20:32:35 server2.1 [2014-02-21T20:32:35-08:00] INFO: Processing yum_repository[openstack] action create (openstack-common::default line 103) -Feb 21 20:32:35 server2.1 [2014-02-21T20:32:35-08:00] INFO: Adding and updating openstack repository in /etc/yum.repos.d/openstack.repo -Feb 21 20:32:35 server2.1 [2014-02-21T20:32:35-08:00] WARN: Cloning resource attributes for execute[yum-makecache] from prior resource (CHEF-3694) -Feb 21 20:32:35 server2.1 [2014-02-21T20:32:35-08:00] WARN: Previous execute[yum-makecache]: /var/chef/cache/cookbooks/yum/providers/repository.rb:88:in `repo_config' -Feb 21 20:32:35 server2.1 [2014-02-21T20:32:35-08:00] WARN: Current execute[yum-makecache]: /var/chef/cache/cookbooks/yum/providers/repository.rb:88:in `repo_config' -Feb 21 20:32:35 server2.1 [2014-02-21T20:32:35-08:00] WARN: Cloning resource attributes for ruby_block[reload-internal-yum-cache] from prior resource (CHEF-3694) -Feb 21 20:32:35 server2.1 [2014-02-21T20:32:35-08:00] WARN: Previous ruby_block[reload-internal-yum-cache]: /var/chef/cache/cookbooks/yum/providers/repository.rb:93:in `repo_config' -Feb 21 20:32:35 server2.1 [2014-02-21T20:32:35-08:00] WARN: Current ruby_block[reload-internal-yum-cache]: /var/chef/cache/cookbooks/yum/providers/repository.rb:93:in `repo_config' -Feb 21 20:32:35 server2.1 [2014-02-21T20:32:35-08:00] INFO: Processing execute[yum-makecache] action nothing (/var/chef/cache/cookbooks/yum/providers/repository.rb line 88) -Feb 21 20:32:35 server2.1 [2014-02-21T20:32:35-08:00] INFO: Processing ruby_block[reload-internal-yum-cache] action nothing (/var/chef/cache/cookbooks/yum/providers/repository.rb line 93) -Feb 21 20:32:35 server2.1 [2014-02-21T20:32:35-08:00] INFO: Processing template[/etc/yum.repos.d/openstack.repo] action create (/var/chef/cache/cookbooks/yum/providers/repository.rb line 100) -Feb 21 20:32:35 server2.1 [2014-02-21T20:32:35-08:00] INFO: template[/etc/yum.repos.d/openstack.repo] created file /etc/yum.repos.d/openstack.repo -Feb 21 20:32:35 server2.1 [2014-02-21T20:32:35-08:00] INFO: template[/etc/yum.repos.d/openstack.repo] updated file contents /etc/yum.repos.d/openstack.repo -Feb 21 20:32:35 server2.1 [2014-02-21T20:32:35-08:00] INFO: template[/etc/yum.repos.d/openstack.repo] mode changed to 644 -Feb 21 20:32:35 server2.1 [2014-02-21T20:32:35-08:00] INFO: template[/etc/yum.repos.d/openstack.repo] sending run action to execute[yum-makecache] (immediate) -Feb 21 20:32:35 server2.1 [2014-02-21T20:32:35-08:00] INFO: Processing execute[yum-makecache] action run (/var/chef/cache/cookbooks/yum/providers/repository.rb line 88) -Feb 21 20:32:51 server2.1 [2014-02-21T20:32:51-08:00] INFO: execute[yum-makecache] ran successfully -Feb 21 20:32:51 server2.1 [2014-02-21T20:32:51-08:00] INFO: template[/etc/yum.repos.d/openstack.repo] sending create action to ruby_block[reload-internal-yum-cache] (immediate) diff --git a/compass/tests/actions/update_progress/data/test2/anamon/checkpoint_4/server2.1/install.log.template b/compass/tests/actions/update_progress/data/test2/anamon/checkpoint_4/server2.1/install.log.template deleted file mode 100644 index 861b3a53..00000000 --- a/compass/tests/actions/update_progress/data/test2/anamon/checkpoint_4/server2.1/install.log.template +++ /dev/null @@ -1,212 +0,0 @@ -Installing libgcc-4.4.7-4.el6.x86_64 -warning: libgcc-4.4.7-4.el6.x86_64: Header V3 RSA/SHA1 Signature, key ID c105b9de: NOKEY -Installing setup-2.8.14-20.el6_4.1.noarch -Installing filesystem-2.4.30-3.el6.x86_64 -Installing basesystem-10.0-4.el6.noarch -Installing ncurses-base-5.7-3.20090208.el6.x86_64 -Installing kernel-firmware-2.6.32-431.el6.noarch -Installing tzdata-2013g-1.el6.noarch -Installing nss-softokn-freebl-3.14.3-9.el6.x86_64 -Installing glibc-common-2.12-1.132.el6.x86_64 -Installing glibc-2.12-1.132.el6.x86_64 -Installing ncurses-libs-5.7-3.20090208.el6.x86_64 -Installing bash-4.1.2-15.el6_4.x86_64 -Installing libattr-2.4.44-7.el6.x86_64 -Installing libcap-2.16-5.5.el6.x86_64 -Installing zlib-1.2.3-29.el6.x86_64 -Installing info-4.13a-8.el6.x86_64 -Installing popt-1.13-7.el6.x86_64 -Installing chkconfig-1.3.49.3-2.el6_4.1.x86_64 -Installing audit-libs-2.2-2.el6.x86_64 -Installing libcom_err-1.41.12-18.el6.x86_64 -Installing libacl-2.2.49-6.el6.x86_64 -Installing db4-4.7.25-18.el6_4.x86_64 -Installing nspr-4.10.0-1.el6.x86_64 -Installing nss-util-3.15.1-3.el6.x86_64 -Installing readline-6.0-4.el6.x86_64 -Installing libsepol-2.0.41-4.el6.x86_64 -Installing libselinux-2.0.94-5.3.el6_4.1.x86_64 -Installing shadow-utils-4.1.4.2-13.el6.x86_64 -Installing sed-4.2.1-10.el6.x86_64 -Installing bzip2-libs-1.0.5-7.el6_0.x86_64 -Installing libuuid-2.17.2-12.14.el6.x86_64 -Installing libstdc++-4.4.7-4.el6.x86_64 -Installing libblkid-2.17.2-12.14.el6.x86_64 -Installing gawk-3.1.7-10.el6.x86_64 -Installing file-libs-5.04-15.el6.x86_64 -Installing libgpg-error-1.7-4.el6.x86_64 -Installing dbus-libs-1.2.24-7.el6_3.x86_64 -Installing libudev-147-2.51.el6.x86_64 -Installing pcre-7.8-6.el6.x86_64 -Installing grep-2.6.3-4.el6.x86_64 -Installing lua-5.1.4-4.1.el6.x86_64 -Installing sqlite-3.6.20-1.el6.x86_64 -Installing cyrus-sasl-lib-2.1.23-13.el6_3.1.x86_64 -Installing libidn-1.18-2.el6.x86_64 -Installing expat-2.0.1-11.el6_2.x86_64 -Installing xz-libs-4.999.9-0.3.beta.20091007git.el6.x86_64 -Installing elfutils-libelf-0.152-1.el6.x86_64 -Installing libgcrypt-1.4.5-11.el6_4.x86_64 -Installing bzip2-1.0.5-7.el6_0.x86_64 -Installing findutils-4.4.2-6.el6.x86_64 -Installing libselinux-utils-2.0.94-5.3.el6_4.1.x86_64 -Installing checkpolicy-2.0.22-1.el6.x86_64 -Installing cpio-2.10-11.el6_3.x86_64 -Installing which-2.19-6.el6.x86_64 -Installing libxml2-2.7.6-14.el6.x86_64 -Installing libedit-2.11-4.20080712cvs.1.el6.x86_64 -Installing pth-2.0.7-9.3.el6.x86_64 -Installing tcp_wrappers-libs-7.6-57.el6.x86_64 -Installing sysvinit-tools-2.87-5.dsf.el6.x86_64 -Installing libtasn1-2.3-3.el6_2.1.x86_64 -Installing p11-kit-0.18.5-2.el6.x86_64 -Installing p11-kit-trust-0.18.5-2.el6.x86_64 -Installing ca-certificates-2013.1.94-65.0.el6.noarch -Installing device-mapper-persistent-data-0.2.8-2.el6.x86_64 -Installing nss-softokn-3.14.3-9.el6.x86_64 -Installing libnih-1.0.1-7.el6.x86_64 -Installing upstart-0.6.5-12.el6_4.1.x86_64 -Installing file-5.04-15.el6.x86_64 -Installing gmp-4.3.1-7.el6_2.2.x86_64 -Installing libusb-0.1.12-23.el6.x86_64 -Installing MAKEDEV-3.24-6.el6.x86_64 -Installing libutempter-1.1.5-4.1.el6.x86_64 -Installing psmisc-22.6-15.el6_0.1.x86_64 -Installing net-tools-1.60-110.el6_2.x86_64 -Installing vim-minimal-7.2.411-1.8.el6.x86_64 -Installing tar-1.23-11.el6.x86_64 -Installing procps-3.2.8-25.el6.x86_64 -Installing db4-utils-4.7.25-18.el6_4.x86_64 -Installing e2fsprogs-libs-1.41.12-18.el6.x86_64 -Installing libss-1.41.12-18.el6.x86_64 -Installing pinentry-0.7.6-6.el6.x86_64 -Installing binutils-2.20.51.0.2-5.36.el6.x86_64 -Installing m4-1.4.13-5.el6.x86_64 -Installing diffutils-2.8.1-28.el6.x86_64 -Installing make-3.81-20.el6.x86_64 -Installing dash-0.5.5.1-4.el6.x86_64 -Installing ncurses-5.7-3.20090208.el6.x86_64 -Installing groff-1.18.1.4-21.el6.x86_64 -Installing less-436-10.el6.x86_64 -Installing coreutils-libs-8.4-31.el6.x86_64 -Installing gzip-1.3.12-19.el6_4.x86_64 -Installing cracklib-2.8.16-4.el6.x86_64 -Installing cracklib-dicts-2.8.16-4.el6.x86_64 -Installing coreutils-8.4-31.el6.x86_64 -Installing pam-1.1.1-17.el6.x86_64 -Installing module-init-tools-3.9-21.el6_4.x86_64 -Installing hwdata-0.233-9.1.el6.noarch -Installing redhat-logos-60.0.14-12.el6.centos.noarch -Installing plymouth-scripts-0.8.3-27.el6.centos.x86_64 -Installing libpciaccess-0.13.1-2.el6.x86_64 -Installing nss-3.15.1-15.el6.x86_64 -Installing nss-sysinit-3.15.1-15.el6.x86_64 -Installing nss-tools-3.15.1-15.el6.x86_64 -Installing openldap-2.4.23-32.el6_4.1.x86_64 -Installing logrotate-3.7.8-17.el6.x86_64 -Installing gdbm-1.8.0-36.el6.x86_64 -Installing mingetty-1.08-5.el6.x86_64 -Installing keyutils-libs-1.4-4.el6.x86_64 -Installing krb5-libs-1.10.3-10.el6_4.6.x86_64 -Installing openssl-1.0.1e-15.el6.x86_64 -Installing libssh2-1.4.2-1.el6.x86_64 -Installing libcurl-7.19.7-37.el6_4.x86_64 -Installing gnupg2-2.0.14-6.el6_4.x86_64 -Installing gpgme-1.1.8-3.el6.x86_64 -Installing curl-7.19.7-37.el6_4.x86_64 -Installing rpm-libs-4.8.0-37.el6.x86_64 -Installing rpm-4.8.0-37.el6.x86_64 -Installing fipscheck-lib-1.2.0-7.el6.x86_64 -Installing fipscheck-1.2.0-7.el6.x86_64 -Installing mysql-libs-5.1.71-1.el6.x86_64 -Installing ethtool-3.5-1.el6.x86_64 -Installing pciutils-libs-3.1.10-2.el6.x86_64 -Installing plymouth-core-libs-0.8.3-27.el6.centos.x86_64 -Installing libcap-ng-0.6.4-3.el6_0.1.x86_64 -Installing libffi-3.0.5-3.2.el6.x86_64 -Installing python-2.6.6-51.el6.x86_64 -Installing python-libs-2.6.6-51.el6.x86_64 -Installing python-pycurl-7.19.0-8.el6.x86_64 -Installing python-urlgrabber-3.9.1-9.el6.noarch -Installing pygpgme-0.1-18.20090824bzr68.el6.x86_64 -Installing rpm-python-4.8.0-37.el6.x86_64 -Installing python-iniparse-0.3.1-2.1.el6.noarch -Installing slang-2.2.1-1.el6.x86_64 -Installing newt-0.52.11-3.el6.x86_64 -Installing newt-python-0.52.11-3.el6.x86_64 -Installing ustr-1.0.4-9.1.el6.x86_64 -Installing libsemanage-2.0.43-4.2.el6.x86_64 -Installing libaio-0.3.107-10.el6.x86_64 -Installing pkgconfig-0.23-9.1.el6.x86_64 -Installing gamin-0.1.10-9.el6.x86_64 -Installing glib2-2.26.1-3.el6.x86_64 -Installing shared-mime-info-0.70-4.el6.x86_64 -Installing libuser-0.56.13-5.el6.x86_64 -Installing grubby-7.0.15-5.el6.x86_64 -Installing yum-metadata-parser-1.1.2-16.el6.x86_64 -Installing yum-plugin-fastestmirror-1.1.30-14.el6.noarch -Installing yum-3.2.29-40.el6.centos.noarch -Installing dbus-glib-0.86-6.el6.x86_64 -Installing dhcp-common-4.1.1-38.P1.el6.centos.x86_64 -Installing centos-release-6-5.el6.centos.11.1.x86_64 -Installing policycoreutils-2.0.83-19.39.el6.x86_64 -Installing iptables-1.4.7-11.el6.x86_64 -Installing iproute-2.6.32-31.el6.x86_64 -Installing iputils-20071127-17.el6_4.2.x86_64 -Installing util-linux-ng-2.17.2-12.14.el6.x86_64 -Installing initscripts-9.03.40-2.el6.centos.x86_64 -Installing udev-147-2.51.el6.x86_64 -Installing device-mapper-libs-1.02.79-8.el6.x86_64 -Installing device-mapper-1.02.79-8.el6.x86_64 -Installing device-mapper-event-libs-1.02.79-8.el6.x86_64 -Installing openssh-5.3p1-94.el6.x86_64 -Installing device-mapper-event-1.02.79-8.el6.x86_64 -Installing lvm2-libs-2.02.100-8.el6.x86_64 -Installing cryptsetup-luks-libs-1.2.0-7.el6.x86_64 -Installing device-mapper-multipath-libs-0.4.9-72.el6.x86_64 -Installing kpartx-0.4.9-72.el6.x86_64 -Installing libdrm-2.4.45-2.el6.x86_64 -Installing plymouth-0.8.3-27.el6.centos.x86_64 -Installing rsyslog-5.8.10-8.el6.x86_64 -Installing cyrus-sasl-2.1.23-13.el6_3.1.x86_64 -Installing postfix-2.6.6-2.2.el6_1.x86_64 -Installing cronie-anacron-1.4.4-12.el6.x86_64 -Installing cronie-1.4.4-12.el6.x86_64 -Installing crontabs-1.10-33.el6.noarch -Installing ntpdate-4.2.6p5-1.el6.centos.x86_64 -Installing iptables-ipv6-1.4.7-11.el6.x86_64 -Installing selinux-policy-3.7.19-231.el6.noarch -Installing kbd-misc-1.15-11.el6.noarch -Installing kbd-1.15-11.el6.x86_64 -Installing dracut-004-335.el6.noarch -Installing dracut-kernel-004-335.el6.noarch -Installing kernel-2.6.32-431.el6.x86_64 -Installing fuse-2.8.3-4.el6.x86_64 -Installing selinux-policy-targeted-3.7.19-231.el6.noarch -Installing system-config-firewall-base-1.2.27-5.el6.noarch -Installing ntp-4.2.6p5-1.el6.centos.x86_64 -Installing device-mapper-multipath-0.4.9-72.el6.x86_64 -Installing cryptsetup-luks-1.2.0-7.el6.x86_64 -Installing lvm2-2.02.100-8.el6.x86_64 -Installing openssh-clients-5.3p1-94.el6.x86_64 -Installing openssh-server-5.3p1-94.el6.x86_64 -Installing mdadm-3.2.6-7.el6.x86_64 -Installing b43-openfwwf-5.2-4.el6.noarch -Installing dhclient-4.1.1-38.P1.el6.centos.x86_64 -Installing iscsi-initiator-utils-6.2.0.873-10.el6.x86_64 -Installing passwd-0.77-4.el6_2.2.x86_64 -Installing authconfig-6.1.12-13.el6.x86_64 -Installing grub-0.97-83.el6.x86_64 -Installing efibootmgr-0.5.4-11.el6.x86_64 -Installing wget-1.12-1.8.el6.x86_64 -Installing sudo-1.8.6p3-12.el6.x86_64 -Installing audit-2.2-2.el6.x86_64 -Installing e2fsprogs-1.41.12-18.el6.x86_64 -Installing xfsprogs-3.1.1-14.el6.x86_64 -Installing acl-2.2.49-6.el6.x86_64 -Installing attr-2.4.44-7.el6.x86_64 -Installing chef-11.8.0-1.el6.x86_64 -warning: chef-11.8.0-1.el6.x86_64: Header V4 DSA/SHA1 Signature, key ID 83ef826a: NOKEY -Installing bridge-utils-1.2-10.el6.x86_64 -Installing rootfiles-8.1-6.1.el6.noarch -*** FINISHED INSTALLING PACKAGES *** \ No newline at end of file diff --git a/compass/tests/actions/update_progress/data/test2/anamon/checkpoint_4/server2.1/sys.log.template b/compass/tests/actions/update_progress/data/test2/anamon/checkpoint_4/server2.1/sys.log.template deleted file mode 100644 index 1fbb5602..00000000 --- a/compass/tests/actions/update_progress/data/test2/anamon/checkpoint_4/server2.1/sys.log.template +++ /dev/null @@ -1,1628 +0,0 @@ -05:50:20,517 INFO kernel:imklog 5.8.10, log source = /proc/kmsg started. -05:50:20,517 INFO rsyslogd: [origin software="rsyslogd" swVersion="5.8.10" x-pid="68" x-info="http://www.rsyslog.com"] start -05:50:20,517 INFO kernel:Initializing cgroup subsys cpuset -05:50:20,517 INFO kernel:Initializing cgroup subsys cpu -05:50:20,517 NOTICE kernel:Linux version 2.6.32-431.el6.x86_64 (mockbuild@c6b8.bsys.dev.centos.org) (gcc version 4.4.7 20120313 (Red Hat 4.4.7-4) (GCC) ) #1 SMP Fri Nov 22 03:15:09 UTC 2013 -05:50:20,517 INFO kernel:Command line: initrd=/images/CentOS-6.5-x86_64/initrd.img ksdevice=bootif lang= kssendmac text ks=http://10.145.88.211/cblr/svc/op/ks/system/server2.1 BOOT_IMAGE=/images/CentOS-6.5-x86_64/vmlinuz BOOTIF=01-00-0c-29-5c-6a-b8 -05:50:20,517 INFO kernel:KERNEL supported cpus: -05:50:20,517 INFO kernel: Intel GenuineIntel -05:50:20,517 INFO kernel: AMD AuthenticAMD -05:50:20,517 INFO kernel: Centaur CentaurHauls -05:50:20,517 INFO kernel:Disabled fast string operations -05:50:20,517 INFO kernel:BIOS-provided physical RAM map: -05:50:20,517 INFO kernel: BIOS-e820: 0000000000000000 - 000000000009f400 (usable) -05:50:20,517 INFO kernel: BIOS-e820: 000000000009f400 - 00000000000a0000 (reserved) -05:50:20,517 INFO kernel: BIOS-e820: 00000000000ca000 - 00000000000cc000 (reserved) -05:50:20,517 INFO kernel: BIOS-e820: 00000000000dc000 - 0000000000100000 (reserved) -05:50:20,517 INFO kernel: BIOS-e820: 0000000000100000 - 000000007fef0000 (usable) -05:50:20,517 INFO kernel: BIOS-e820: 000000007fef0000 - 000000007feff000 (ACPI data) -05:50:20,517 INFO kernel: BIOS-e820: 000000007feff000 - 000000007ff00000 (ACPI NVS) -05:50:20,517 INFO kernel: BIOS-e820: 000000007ff00000 - 0000000080000000 (usable) -05:50:20,517 INFO kernel: BIOS-e820: 00000000e0000000 - 00000000f0000000 (reserved) -05:50:20,517 INFO kernel: BIOS-e820: 00000000fec00000 - 00000000fec10000 (reserved) -05:50:20,517 INFO kernel: BIOS-e820: 00000000fee00000 - 00000000fee01000 (reserved) -05:50:20,517 INFO kernel: BIOS-e820: 00000000fffe0000 - 0000000100000000 (reserved) -05:50:20,517 INFO kernel:DMI present. -05:50:20,517 WARNING kernel:SMBIOS version 2.4 @ 0xF68F0 -05:50:20,517 DEBUG kernel:DMI: VMware, Inc. VMware Virtual Platform/440BX Desktop Reference Platform, BIOS 6.00 01/07/2011 -05:50:20,517 NOTICE kernel:Phoenix BIOS detected: BIOS may corrupt low RAM, working around it. -05:50:20,517 DEBUG kernel:e820 update range: 0000000000000000 - 0000000000010000 (usable) ==> (reserved) -05:50:20,517 INFO kernel:Hypervisor detected: VMware -05:50:20,517 DEBUG kernel:e820 update range: 0000000000000000 - 0000000000001000 (usable) ==> (reserved) -05:50:20,517 DEBUG kernel:e820 remove range: 00000000000a0000 - 0000000000100000 (usable) -05:50:20,517 INFO kernel:last_pfn = 0x80000 max_arch_pfn = 0x400000000 -05:50:20,517 DEBUG kernel:MTRR default type: uncachable -05:50:20,517 DEBUG kernel:MTRR fixed ranges enabled: -05:50:20,517 DEBUG kernel: 00000-9FFFF write-back -05:50:20,517 DEBUG kernel: A0000-BFFFF uncachable -05:50:20,517 DEBUG kernel: C0000-CFFFF write-protect -05:50:20,517 DEBUG kernel: D0000-EFFFF uncachable -05:50:20,517 DEBUG kernel: F0000-FFFFF write-protect -05:50:20,517 DEBUG kernel:MTRR variable ranges enabled: -05:50:20,517 DEBUG kernel: 0 base 0000000000 mask FF80000000 write-back -05:50:20,517 DEBUG kernel: 1 disabled -05:50:20,517 DEBUG kernel: 2 disabled -05:50:20,517 DEBUG kernel: 3 disabled -05:50:20,517 DEBUG kernel: 4 disabled -05:50:20,517 DEBUG kernel: 5 disabled -05:50:20,517 DEBUG kernel: 6 disabled -05:50:20,517 DEBUG kernel: 7 disabled -05:50:20,517 INFO kernel:x86 PAT enabled: cpu 0, old 0x0, new 0x7010600070106 -05:50:20,517 DEBUG kernel:initial memory mapped : 0 - 20000000 -05:50:20,517 INFO kernel:init_memory_mapping: 0000000000000000-0000000080000000 -05:50:20,517 DEBUG kernel: 0000000000 - 0080000000 page 2M -05:50:20,517 DEBUG kernel:kernel direct mapping tables up to 80000000 @ 10000-13000 -05:50:20,517 INFO kernel:RAMDISK: 7def9000 - 7fecf4ff -05:50:20,517 WARNING kernel:ACPI: RSDP 00000000000f6940 00024 (v02 PTLTD ) -05:50:20,517 WARNING kernel:ACPI: XSDT 000000007fef0333 00054 (v01 INTEL 440BX 06040000 VMW 01324272) -05:50:20,517 WARNING kernel:ACPI: FACP 000000007fefee98 000F4 (v04 INTEL 440BX 06040000 PTL 000F4240) -05:50:20,517 WARNING kernel:ACPI: DSDT 000000007fef055d 0E93B (v01 PTLTD Custom 06040000 MSFT 03000001) -05:50:20,517 WARNING kernel:ACPI: FACS 000000007fefffc0 00040 -05:50:20,517 WARNING kernel:ACPI: BOOT 000000007fef0535 00028 (v01 PTLTD $SBFTBL$ 06040000 LTP 00000001) -05:50:20,517 WARNING kernel:ACPI: APIC 000000007fef04d7 0005E (v01 PTLTD ? APIC 06040000 LTP 00000000) -05:50:20,517 WARNING kernel:ACPI: MCFG 000000007fef049b 0003C (v01 PTLTD $PCITBL$ 06040000 LTP 00000001) -05:50:20,517 WARNING kernel:ACPI: SRAT 000000007fef03fb 000A0 (v02 VMWARE MEMPLUG 06040000 VMW 00000001) -05:50:20,517 WARNING kernel:ACPI: HPET 000000007fef03c3 00038 (v01 VMWARE VMW HPET 06040000 WMV 00000001) -05:50:20,517 DEBUG kernel:ACPI: Local APIC address 0xfee00000 -05:50:20,517 INFO kernel:Setting APIC routing to flat. -05:50:20,517 INFO kernel:SRAT: PXM 0 -> APIC 0 -> Node 0 -05:50:20,517 INFO kernel:SRAT: PXM 0 -> APIC 1 -> Node 0 -05:50:20,517 INFO kernel:SRAT: Node 0 PXM 0 0-a0000 -05:50:20,517 INFO kernel:SRAT: Node 0 PXM 0 100000-80000000 -05:50:20,517 DEBUG kernel:NUMA: Allocated memnodemap from 11000 - 12040 -05:50:20,517 DEBUG kernel:NUMA: Using 20 for the hash shift. -05:50:20,517 INFO kernel:Bootmem setup node 0 0000000000000000-0000000080000000 -05:50:20,517 INFO kernel: NODE_DATA [0000000000012040 - 000000000004603f] -05:50:20,517 INFO kernel: bootmap [0000000000047000 - 0000000000056fff] pages 10 -05:50:20,517 INFO kernel:(8 early reservations) ==> bootmem [0000000000 - 0080000000] -05:50:20,517 INFO kernel: #0 [0000000000 - 0000001000] BIOS data page ==> [0000000000 - 0000001000] -05:50:20,517 INFO kernel: #1 [0000006000 - 0000008000] TRAMPOLINE ==> [0000006000 - 0000008000] -05:50:20,517 INFO kernel: #2 [0001000000 - 000201faa4] TEXT DATA BSS ==> [0001000000 - 000201faa4] -05:50:20,517 INFO kernel: #3 [007def9000 - 007fecf4ff] RAMDISK ==> [007def9000 - 007fecf4ff] -05:50:20,517 INFO kernel: #4 [000009f400 - 0000100000] BIOS reserved ==> [000009f400 - 0000100000] -05:50:20,517 INFO kernel: #5 [0002020000 - 00020201f0] BRK ==> [0002020000 - 00020201f0] -05:50:20,517 INFO kernel: #6 [0000010000 - 0000011000] PGTABLE ==> [0000010000 - 0000011000] -05:50:20,517 INFO kernel: #7 [0000011000 - 0000012040] MEMNODEMAP ==> [0000011000 - 0000012040] -05:50:20,517 INFO kernel:found SMP MP-table at [ffff8800000f69b0] f69b0 -05:50:20,517 DEBUG kernel: [ffffea0000000000-ffffea0001bfffff] PMD -> [ffff880002600000-ffff8800041fffff] on node 0 -05:50:20,517 WARNING kernel:Zone PFN ranges: -05:50:20,517 WARNING kernel: DMA 0x00000010 -> 0x00001000 -05:50:20,517 WARNING kernel: DMA32 0x00001000 -> 0x00100000 -05:50:20,517 WARNING kernel: Normal 0x00100000 -> 0x00100000 -05:50:20,517 WARNING kernel:Movable zone start PFN for each node -05:50:20,517 WARNING kernel:early_node_map[3] active PFN ranges -05:50:20,517 WARNING kernel: 0: 0x00000010 -> 0x0000009f -05:50:20,517 WARNING kernel: 0: 0x00000100 -> 0x0007fef0 -05:50:20,520 WARNING kernel: 0: 0x0007ff00 -> 0x00080000 -05:50:20,520 DEBUG kernel:On node 0 totalpages: 524159 -05:50:20,520 DEBUG kernel: DMA zone: 56 pages used for memmap -05:50:20,520 DEBUG kernel: DMA zone: 101 pages reserved -05:50:20,520 DEBUG kernel: DMA zone: 3826 pages, LIFO batch:0 -05:50:20,520 DEBUG kernel: DMA32 zone: 7112 pages used for memmap -05:50:20,520 DEBUG kernel: DMA32 zone: 513064 pages, LIFO batch:31 -05:50:20,520 INFO kernel:ACPI: PM-Timer IO Port: 0x1008 -05:50:20,520 DEBUG kernel:ACPI: Local APIC address 0xfee00000 -05:50:20,520 INFO kernel:Setting APIC routing to flat. -05:50:20,520 INFO kernel:ACPI: LAPIC (acpi_id[0x00] lapic_id[0x00] enabled) -05:50:20,520 INFO kernel:ACPI: LAPIC (acpi_id[0x01] lapic_id[0x01] enabled) -05:50:20,520 INFO kernel:ACPI: LAPIC_NMI (acpi_id[0x00] high edge lint[0x1]) -05:50:20,520 INFO kernel:ACPI: LAPIC_NMI (acpi_id[0x01] high edge lint[0x1]) -05:50:20,520 INFO kernel:ACPI: IOAPIC (id[0x02] address[0xfec00000] gsi_base[0]) -05:50:20,521 INFO kernel:IOAPIC[0]: apic_id 2, version 17, address 0xfec00000, GSI 0-23 -05:50:20,521 INFO kernel:ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 high edge) -05:50:20,521 DEBUG kernel:ACPI: IRQ0 used by override. -05:50:20,521 DEBUG kernel:ACPI: IRQ2 used by override. -05:50:20,521 DEBUG kernel:ACPI: IRQ9 used by override. -05:50:20,521 INFO kernel:Using ACPI (MADT) for SMP configuration information -05:50:20,521 INFO kernel:ACPI: HPET id: 0x8086af01 base: 0xfed00000 -05:50:20,521 INFO kernel:SMP: Allowing 2 CPUs, 0 hotplug CPUs -05:50:20,521 DEBUG kernel:nr_irqs_gsi: 24 -05:50:20,521 INFO kernel:PM: Registered nosave memory: 000000000009f000 - 00000000000a0000 -05:50:20,521 INFO kernel:PM: Registered nosave memory: 00000000000a0000 - 00000000000ca000 -05:50:20,521 INFO kernel:PM: Registered nosave memory: 00000000000ca000 - 00000000000cc000 -05:50:20,521 INFO kernel:PM: Registered nosave memory: 00000000000cc000 - 00000000000dc000 -05:50:20,521 INFO kernel:PM: Registered nosave memory: 00000000000dc000 - 0000000000100000 -05:50:20,521 INFO kernel:PM: Registered nosave memory: 000000007fef0000 - 000000007feff000 -05:50:20,521 INFO kernel:PM: Registered nosave memory: 000000007feff000 - 000000007ff00000 -05:50:20,521 INFO kernel:Allocating PCI resources starting at 80000000 (gap: 80000000:60000000) -05:50:20,521 INFO kernel:Booting paravirtualized kernel on bare hardware -05:50:20,521 INFO kernel:NR_CPUS:4096 nr_cpumask_bits:2 nr_cpu_ids:2 nr_node_ids:1 -05:50:20,521 INFO kernel:PERCPU: Embedded 31 pages/cpu @ffff880002200000 s94872 r8192 d23912 u1048576 -05:50:20,521 INFO kernel:pcpu-alloc: s94872 r8192 d23912 u1048576 alloc=1*2097152 -05:50:20,521 INFO kernel:pcpu-alloc: [0] 0 1 -05:50:20,521 WARNING kernel:Built 1 zonelists in Node order, mobility grouping on. Total pages: 516890 -05:50:20,521 WARNING kernel:Policy zone: DMA32 -05:50:20,521 NOTICE kernel:Kernel command line: initrd=/images/CentOS-6.5-x86_64/initrd.img ksdevice=bootif lang= kssendmac text ks=http://10.145.88.211/cblr/svc/op/ks/system/server2.1 BOOT_IMAGE=/images/CentOS-6.5-x86_64/vmlinuz BOOTIF=01-00-0c-29-5c-6a-b8 -05:50:20,521 INFO kernel:PID hash table entries: 4096 (order: 3, 32768 bytes) -05:50:20,521 INFO kernel:Checking aperture... -05:50:20,521 INFO kernel:No AGP bridge found -05:50:20,521 INFO kernel:Memory: 2018096k/2097152k available (5325k kernel code, 516k absent, 78540k reserved, 7013k data, 1276k init) -05:50:20,521 INFO kernel:Hierarchical RCU implementation. -05:50:20,521 INFO kernel:NR_IRQS:33024 nr_irqs:424 -05:50:20,521 INFO kernel:Extended CMOS year: 2000 -05:50:20,521 WARNING kernel:Console: colour VGA+ 80x25 -05:50:20,521 INFO kernel:console [tty0] enabled -05:50:20,521 INFO kernel:allocated 8388608 bytes of page_cgroup -05:50:20,521 INFO kernel:please try 'cgroup_disable=memory' option if you don't want memory cgroups -05:50:20,521 DEBUG kernel:hpet clockevent registered -05:50:20,521 INFO kernel:TSC freq read from hypervisor : 2400.085 MHz -05:50:20,521 WARNING kernel:Detected 2400.085 MHz processor. -05:50:20,521 INFO kernel:Calibrating delay loop (skipped) preset value.. 4800.17 BogoMIPS (lpj=2400085) -05:50:20,521 INFO kernel:pid_max: default: 32768 minimum: 301 -05:50:20,521 INFO kernel:Security Framework initialized -05:50:20,521 INFO kernel:SELinux: Initializing. -05:50:20,521 DEBUG kernel:SELinux: Starting in permissive mode -05:50:20,521 INFO kernel:Dentry cache hash table entries: 262144 (order: 9, 2097152 bytes) -05:50:20,521 INFO kernel:Inode-cache hash table entries: 131072 (order: 8, 1048576 bytes) -05:50:20,521 WARNING kernel:Mount-cache hash table entries: 256 -05:50:20,521 INFO kernel:Initializing cgroup subsys ns -05:50:20,521 INFO kernel:Initializing cgroup subsys cpuacct -05:50:20,521 INFO kernel:Initializing cgroup subsys memory -05:50:20,521 INFO kernel:Initializing cgroup subsys devices -05:50:20,521 INFO kernel:Initializing cgroup subsys freezer -05:50:20,521 INFO kernel:Initializing cgroup subsys net_cls -05:50:20,521 INFO kernel:Initializing cgroup subsys blkio -05:50:20,521 INFO kernel:Initializing cgroup subsys perf_event -05:50:20,521 INFO kernel:Initializing cgroup subsys net_prio -05:50:20,521 INFO kernel:Disabled fast string operations -05:50:20,521 INFO kernel:CPU: Physical Processor ID: 0 -05:50:20,521 INFO kernel:mce: CPU supports 0 MCE banks -05:50:20,521 INFO kernel:alternatives: switching to unfair spinlock -05:50:20,521 INFO kernel:ACPI: Core revision 20090903 -05:50:20,521 INFO kernel:ftrace: converting mcount calls to 0f 1f 44 00 00 -05:50:20,521 INFO kernel:ftrace: allocating 21769 entries in 86 pages -05:50:20,521 INFO kernel:APIC routing finalized to flat. -05:50:20,521 INFO kernel:..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1 -05:50:20,521 INFO kernel:CPU0: Intel(R) Xeon(R) CPU E5620 @ 2.40GHz stepping 02 -05:50:20,521 INFO kernel:Performance Events: 16-deep LBR, Westmere events, Intel PMU driver. -05:50:20,521 WARNING kernel:CPUID marked event: 'cpu cycles' unavailable -05:50:20,521 WARNING kernel:CPUID marked event: 'instructions' unavailable -05:50:20,521 WARNING kernel:CPUID marked event: 'bus cycles' unavailable -05:50:20,521 WARNING kernel:CPUID marked event: 'cache references' unavailable -05:50:20,521 WARNING kernel:CPUID marked event: 'cache misses' unavailable -05:50:20,521 WARNING kernel:CPUID marked event: 'branch instructions' unavailable -05:50:20,521 WARNING kernel:CPUID marked event: 'branch misses' unavailable -05:50:20,521 INFO kernel:... version: 3 -05:50:20,521 INFO kernel:... bit width: 48 -05:50:20,521 INFO kernel:... generic registers: 4 -05:50:20,521 INFO kernel:... value mask: 0000ffffffffffff -05:50:20,521 INFO kernel:... max period: 000000007fffffff -05:50:20,521 INFO kernel:... fixed-purpose events: 3 -05:50:20,521 INFO kernel:... event mask: 000000070000000f -05:50:20,521 WARNING kernel:NMI watchdog disabled (cpu0): hardware events not enabled -05:50:20,521 INFO kernel:Booting Node 0, Processors #1 Ok. -05:50:20,521 INFO kernel:Disabled fast string operations -05:50:20,521 INFO kernel:mce: CPU supports 0 MCE banks -05:50:20,521 INFO kernel:Skipped synchronization checks as TSC is reliable. -05:50:20,521 INFO kernel:Brought up 2 CPUs -05:50:20,521 INFO kernel:Total of 2 processors activated (9600.34 BogoMIPS). -05:50:20,521 INFO kernel:x86 PAT enabled: cpu 0, old 0x0, new 0x7010600070106 -05:50:20,521 INFO kernel:x86 PAT enabled: cpu 1, old 0x0, new 0x7010600070106 -05:50:20,521 DEBUG kernel:sizeof(vma)=200 bytes -05:50:20,521 DEBUG kernel:sizeof(page)=56 bytes -05:50:20,521 DEBUG kernel:sizeof(inode)=592 bytes -05:50:20,521 DEBUG kernel:sizeof(dentry)=192 bytes -05:50:20,521 DEBUG kernel:sizeof(ext3inode)=800 bytes -05:50:20,521 DEBUG kernel:sizeof(buffer_head)=104 bytes -05:50:20,521 DEBUG kernel:sizeof(skbuff)=232 bytes -05:50:20,521 DEBUG kernel:sizeof(task_struct)=2648 bytes -05:50:20,521 INFO kernel:devtmpfs: initialized -05:50:20,521 INFO kernel:PM: Registering ACPI NVS region at 7feff000 (4096 bytes) -05:50:20,521 INFO kernel:regulator: core version 0.5 -05:50:20,521 INFO kernel:NET: Registered protocol family 16 -05:50:20,521 INFO kernel:ACPI: bus type pci registered -05:50:20,521 NOTICE kernel:PCI: MCFG configuration 0: base e0000000 segment 0 buses 0 - 255 -05:50:20,521 NOTICE kernel:PCI: MCFG area at e0000000 reserved in E820 -05:50:20,521 INFO kernel:PCI: Using MMCONFIG at e0000000 - efffffff -05:50:20,521 INFO kernel:PCI: Using configuration type 1 for base access -05:50:20,521 WARNING kernel:bio: create slab at 0 -05:50:20,521 DEBUG kernel:ACPI: EC: Look up EC in DSDT -05:50:20,521 NOTICE kernel:ACPI: BIOS _OSI(Linux) query ignored -05:50:20,521 INFO kernel:ACPI: Interpreter enabled -05:50:20,521 INFO kernel:ACPI: (supports S0 S1 S4 S5) -05:50:20,521 INFO kernel:ACPI: Using IOAPIC for interrupt routing -05:50:20,521 INFO kernel:ACPI: No dock devices found. -05:50:20,521 INFO kernel:PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug -05:50:20,521 INFO kernel:ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-ff]) -05:50:20,521 INFO kernel:pci_root PNP0A03:00: host bridge window [mem 0x000a0000-0x000bffff] -05:50:20,521 INFO kernel:pci_root PNP0A03:00: host bridge window [mem 0x000d0000-0x000d3fff] -05:50:20,521 INFO kernel:pci_root PNP0A03:00: host bridge window [mem 0x000d4000-0x000d7fff] -05:50:20,521 INFO kernel:pci_root PNP0A03:00: host bridge window [mem 0x000d8000-0x000dbfff] -05:50:20,521 INFO kernel:pci_root PNP0A03:00: host bridge window [mem 0x80000000-0xfebfffff] -05:50:20,521 INFO kernel:pci_root PNP0A03:00: host bridge window [io 0x0000-0x0cf7] -05:50:20,521 INFO kernel:pci_root PNP0A03:00: host bridge window [io 0x0d00-0xfeff] -05:50:20,521 INFO kernel:PCI host bridge to bus 0000:00 -05:50:20,521 INFO kernel:pci_bus 0000:00: root bus resource [mem 0x000a0000-0x000bffff] -05:50:20,521 INFO kernel:pci_bus 0000:00: root bus resource [mem 0x000d0000-0x000d3fff] -05:50:20,521 INFO kernel:pci_bus 0000:00: root bus resource [mem 0x000d4000-0x000d7fff] -05:50:20,521 INFO kernel:pci_bus 0000:00: root bus resource [mem 0x000d8000-0x000dbfff] -05:50:20,521 INFO kernel:pci_bus 0000:00: root bus resource [mem 0x80000000-0xfebfffff] -05:50:20,521 INFO kernel:pci_bus 0000:00: root bus resource [io 0x0000-0x0cf7] -05:50:20,521 INFO kernel:pci_bus 0000:00: root bus resource [io 0x0d00-0xfeff] -05:50:20,521 DEBUG kernel:pci 0000:00:07.1: reg 20: [io 0x10c0-0x10cf] -05:50:20,521 INFO kernel:pci 0000:00:07.3: quirk: [io 0x1000-0x103f] claimed by PIIX4 ACPI -05:50:20,521 INFO kernel:pci 0000:00:07.3: quirk: [io 0x1040-0x104f] claimed by PIIX4 SMB -05:50:20,521 DEBUG kernel:pci 0000:00:07.7: reg 10: [io 0x1080-0x10bf] -05:50:20,521 DEBUG kernel:pci 0000:00:07.7: reg 14: [mem 0xd0000000-0xd0001fff 64bit] -05:50:20,521 DEBUG kernel:pci 0000:00:0f.0: reg 10: [io 0x10d0-0x10df] -05:50:20,521 DEBUG kernel:pci 0000:00:0f.0: reg 14: [mem 0xd8000000-0xdbffffff pref] -05:50:20,521 DEBUG kernel:pci 0000:00:0f.0: reg 18: [mem 0xd0800000-0xd0ffffff] -05:50:20,521 DEBUG kernel:pci 0000:00:0f.0: reg 30: [mem 0x00000000-0x00007fff pref] -05:50:20,521 DEBUG kernel:pci 0000:00:10.0: reg 10: [io 0x1400-0x14ff] -05:50:20,521 DEBUG kernel:pci 0000:00:10.0: reg 14: [mem 0xd0040000-0xd005ffff 64bit] -05:50:20,521 DEBUG kernel:pci 0000:00:10.0: reg 1c: [mem 0xd0020000-0xd003ffff 64bit] -05:50:20,521 DEBUG kernel:pci 0000:00:10.0: reg 30: [mem 0x00000000-0x00003fff pref] -05:50:20,521 INFO kernel:pci 0000:00:15.0: PME# supported from D0 D3hot D3cold -05:50:20,521 INFO kernel:pci 0000:00:15.0: PME# disabled -05:50:20,521 INFO kernel:pci 0000:00:15.1: PME# supported from D0 D3hot D3cold -05:50:20,521 INFO kernel:pci 0000:00:15.1: PME# disabled -05:50:20,521 INFO kernel:pci 0000:00:15.2: PME# supported from D0 D3hot D3cold -05:50:20,521 INFO kernel:pci 0000:00:15.2: PME# disabled -05:50:20,521 INFO kernel:pci 0000:00:15.3: PME# supported from D0 D3hot D3cold -05:50:20,521 INFO kernel:pci 0000:00:15.3: PME# disabled -05:50:20,521 INFO kernel:pci 0000:00:15.4: PME# supported from D0 D3hot D3cold -05:50:20,521 INFO kernel:pci 0000:00:15.4: PME# disabled -05:50:20,521 INFO kernel:pci 0000:00:15.5: PME# supported from D0 D3hot D3cold -05:50:20,521 INFO kernel:pci 0000:00:15.5: PME# disabled -05:50:20,521 INFO kernel:pci 0000:00:15.6: PME# supported from D0 D3hot D3cold -05:50:20,521 INFO kernel:pci 0000:00:15.6: PME# disabled -05:50:20,521 INFO kernel:pci 0000:00:15.7: PME# supported from D0 D3hot D3cold -05:50:20,521 INFO kernel:pci 0000:00:15.7: PME# disabled -05:50:20,521 INFO kernel:pci 0000:00:16.0: PME# supported from D0 D3hot D3cold -05:50:20,521 INFO kernel:pci 0000:00:16.0: PME# disabled -05:50:20,521 INFO kernel:pci 0000:00:16.1: PME# supported from D0 D3hot D3cold -05:50:20,521 INFO kernel:pci 0000:00:16.1: PME# disabled -05:50:20,521 INFO kernel:pci 0000:00:16.2: PME# supported from D0 D3hot D3cold -05:50:20,521 INFO kernel:pci 0000:00:16.2: PME# disabled -05:50:20,521 INFO kernel:pci 0000:00:16.3: PME# supported from D0 D3hot D3cold -05:50:20,521 INFO kernel:pci 0000:00:16.3: PME# disabled -05:50:20,521 INFO kernel:pci 0000:00:16.4: PME# supported from D0 D3hot D3cold -05:50:20,521 INFO kernel:pci 0000:00:16.4: PME# disabled -05:50:20,521 INFO kernel:pci 0000:00:16.5: PME# supported from D0 D3hot D3cold -05:50:20,521 INFO kernel:pci 0000:00:16.5: PME# disabled -05:50:20,521 INFO kernel:pci 0000:00:16.6: PME# supported from D0 D3hot D3cold -05:50:20,521 INFO kernel:pci 0000:00:16.6: PME# disabled -05:50:20,521 INFO kernel:pci 0000:00:16.7: PME# supported from D0 D3hot D3cold -05:50:20,521 INFO kernel:pci 0000:00:16.7: PME# disabled -05:50:20,521 INFO kernel:pci 0000:00:17.0: PME# supported from D0 D3hot D3cold -05:50:20,521 INFO kernel:pci 0000:00:17.0: PME# disabled -05:50:20,521 INFO kernel:pci 0000:00:17.1: PME# supported from D0 D3hot D3cold -05:50:20,521 INFO kernel:pci 0000:00:17.1: PME# disabled -05:50:20,521 INFO kernel:pci 0000:00:17.2: PME# supported from D0 D3hot D3cold -05:50:20,521 INFO kernel:pci 0000:00:17.2: PME# disabled -05:50:20,521 INFO kernel:pci 0000:00:17.3: PME# supported from D0 D3hot D3cold -05:50:20,521 INFO kernel:pci 0000:00:17.3: PME# disabled -05:50:20,521 INFO kernel:pci 0000:00:17.4: PME# supported from D0 D3hot D3cold -05:50:20,521 INFO kernel:pci 0000:00:17.4: PME# disabled -05:50:20,521 INFO kernel:pci 0000:00:17.5: PME# supported from D0 D3hot D3cold -05:50:20,521 INFO kernel:pci 0000:00:17.5: PME# disabled -05:50:20,521 INFO kernel:pci 0000:00:17.6: PME# supported from D0 D3hot D3cold -05:50:20,521 INFO kernel:pci 0000:00:17.6: PME# disabled -05:50:20,521 INFO kernel:pci 0000:00:17.7: PME# supported from D0 D3hot D3cold -05:50:20,521 INFO kernel:pci 0000:00:17.7: PME# disabled -05:50:20,521 INFO kernel:pci 0000:00:18.0: PME# supported from D0 D3hot D3cold -05:50:20,521 INFO kernel:pci 0000:00:18.0: PME# disabled -05:50:20,521 INFO kernel:pci 0000:00:18.1: PME# supported from D0 D3hot D3cold -05:50:20,521 INFO kernel:pci 0000:00:18.1: PME# disabled -05:50:20,521 INFO kernel:pci 0000:00:18.2: PME# supported from D0 D3hot D3cold -05:50:20,521 INFO kernel:pci 0000:00:18.2: PME# disabled -05:50:20,521 INFO kernel:pci 0000:00:18.3: PME# supported from D0 D3hot D3cold -05:50:20,521 INFO kernel:pci 0000:00:18.3: PME# disabled -05:50:20,521 INFO kernel:pci 0000:00:18.4: PME# supported from D0 D3hot D3cold -05:50:20,521 INFO kernel:pci 0000:00:18.4: PME# disabled -05:50:20,521 INFO kernel:pci 0000:00:18.5: PME# supported from D0 D3hot D3cold -05:50:20,521 INFO kernel:pci 0000:00:18.5: PME# disabled -05:50:20,521 INFO kernel:pci 0000:00:18.6: PME# supported from D0 D3hot D3cold -05:50:20,521 INFO kernel:pci 0000:00:18.6: PME# disabled -05:50:20,521 INFO kernel:pci 0000:00:18.7: PME# supported from D0 D3hot D3cold -05:50:20,521 INFO kernel:pci 0000:00:18.7: PME# disabled -05:50:20,521 INFO kernel:pci 0000:00:01.0: PCI bridge to [bus 01-01] -05:50:20,521 DEBUG kernel:pci 0000:00:01.0: bridge window [io 0xf000-0x0000] (disabled) -05:50:20,521 DEBUG kernel:pci 0000:00:01.0: bridge window [mem 0xfff00000-0x000fffff] (disabled) -05:50:20,521 DEBUG kernel:pci 0000:00:01.0: bridge window [mem 0xfff00000-0x000fffff pref] (disabled) -05:50:20,521 DEBUG kernel:pci 0000:02:00.0: reg 10: [mem 0xd1020000-0xd103ffff 64bit] -05:50:20,521 DEBUG kernel:pci 0000:02:00.0: reg 18: [mem 0xd1000000-0xd100ffff 64bit] -05:50:20,521 DEBUG kernel:pci 0000:02:00.0: reg 20: [io 0x2000-0x203f] -05:50:20,521 DEBUG kernel:pci 0000:02:00.0: reg 30: [mem 0x00000000-0x0000ffff pref] -05:50:20,521 INFO kernel:pci 0000:02:00.0: PME# supported from D0 D3hot D3cold -05:50:20,521 INFO kernel:pci 0000:02:00.0: PME# disabled -05:50:20,521 DEBUG kernel:pci 0000:02:01.0: reg 10: [mem 0xd1040000-0xd105ffff 64bit] -05:50:20,521 DEBUG kernel:pci 0000:02:01.0: reg 18: [mem 0xd1010000-0xd101ffff 64bit] -05:50:20,521 DEBUG kernel:pci 0000:02:01.0: reg 20: [io 0x2040-0x207f] -05:50:20,521 DEBUG kernel:pci 0000:02:01.0: reg 30: [mem 0x00000000-0x0000ffff pref] -05:50:20,521 INFO kernel:pci 0000:02:01.0: PME# supported from D0 D3hot D3cold -05:50:20,521 INFO kernel:pci 0000:02:01.0: PME# disabled -05:50:20,521 DEBUG kernel:pci 0000:02:02.0: reg 10: [mem 0xd1080000-0xd109ffff 64bit] -05:50:20,521 DEBUG kernel:pci 0000:02:02.0: reg 18: [mem 0xd1060000-0xd106ffff 64bit] -05:50:20,521 DEBUG kernel:pci 0000:02:02.0: reg 20: [io 0x2080-0x20bf] -05:50:20,521 DEBUG kernel:pci 0000:02:02.0: reg 30: [mem 0x00000000-0x0000ffff pref] -05:50:20,521 INFO kernel:pci 0000:02:02.0: PME# supported from D0 D3hot D3cold -05:50:20,521 INFO kernel:pci 0000:02:02.0: PME# disabled -05:50:20,521 DEBUG kernel:pci 0000:02:03.0: reg 10: [mem 0xd10a0000-0xd10bffff 64bit] -05:50:20,521 DEBUG kernel:pci 0000:02:03.0: reg 18: [mem 0xd1070000-0xd107ffff 64bit] -05:50:20,521 DEBUG kernel:pci 0000:02:03.0: reg 20: [io 0x20c0-0x20ff] -05:50:20,521 DEBUG kernel:pci 0000:02:03.0: reg 30: [mem 0x00000000-0x0000ffff pref] -05:50:20,521 INFO kernel:pci 0000:02:03.0: PME# supported from D0 D3hot D3cold -05:50:20,521 INFO kernel:pci 0000:02:03.0: PME# disabled -05:50:20,521 INFO kernel:pci 0000:00:11.0: PCI bridge to [bus 02-02] (subtractive decode) -05:50:20,521 DEBUG kernel:pci 0000:00:11.0: bridge window [io 0x2000-0x3fff] -05:50:20,521 DEBUG kernel:pci 0000:00:11.0: bridge window [mem 0xd1000000-0xd23fffff] -05:50:20,521 DEBUG kernel:pci 0000:00:11.0: bridge window [mem 0xdc400000-0xdc9fffff 64bit pref] -05:50:20,521 DEBUG kernel:pci 0000:00:11.0: bridge window [mem 0x000a0000-0x000bffff] (subtractive decode) -05:50:20,521 DEBUG kernel:pci 0000:00:11.0: bridge window [mem 0x000d0000-0x000d3fff] (subtractive decode) -05:50:20,521 DEBUG kernel:pci 0000:00:11.0: bridge window [mem 0x000d4000-0x000d7fff] (subtractive decode) -05:50:20,521 DEBUG kernel:pci 0000:00:11.0: bridge window [mem 0x000d8000-0x000dbfff] (subtractive decode) -05:50:20,521 DEBUG kernel:pci 0000:00:11.0: bridge window [mem 0x80000000-0xfebfffff] (subtractive decode) -05:50:20,521 DEBUG kernel:pci 0000:00:11.0: bridge window [io 0x0000-0x0cf7] (subtractive decode) -05:50:20,521 DEBUG kernel:pci 0000:00:11.0: bridge window [io 0x0d00-0xfeff] (subtractive decode) -05:50:20,521 INFO kernel:pci 0000:00:15.0: PCI bridge to [bus 03-03] -05:50:20,521 DEBUG kernel:pci 0000:00:15.0: bridge window [io 0x4000-0x4fff] -05:50:20,521 DEBUG kernel:pci 0000:00:15.0: bridge window [mem 0xd2400000-0xd24fffff] -05:50:20,521 DEBUG kernel:pci 0000:00:15.0: bridge window [mem 0xd4400000-0xd44fffff 64bit pref] -05:50:20,521 INFO kernel:pci 0000:00:15.1: PCI bridge to [bus 04-04] -05:50:20,521 DEBUG kernel:pci 0000:00:15.1: bridge window [io 0x8000-0x8fff] -05:50:20,521 DEBUG kernel:pci 0000:00:15.1: bridge window [mem 0xd2800000-0xd28fffff] -05:50:20,521 DEBUG kernel:pci 0000:00:15.1: bridge window [mem 0xd4800000-0xd48fffff 64bit pref] -05:50:20,521 INFO kernel:pci 0000:00:15.2: PCI bridge to [bus 05-05] -05:50:20,521 DEBUG kernel:pci 0000:00:15.2: bridge window [io 0xc000-0xcfff] -05:50:20,521 DEBUG kernel:pci 0000:00:15.2: bridge window [mem 0xd2c00000-0xd2cfffff] -05:50:20,521 DEBUG kernel:pci 0000:00:15.2: bridge window [mem 0xdcb00000-0xdcbfffff 64bit pref] -05:50:20,521 INFO kernel:pci 0000:00:15.3: PCI bridge to [bus 06-06] -05:50:20,521 DEBUG kernel:pci 0000:00:15.3: bridge window [io 0xf000-0x0000] (disabled) -05:50:20,521 DEBUG kernel:pci 0000:00:15.3: bridge window [mem 0xd3000000-0xd30fffff] -05:50:20,521 DEBUG kernel:pci 0000:00:15.3: bridge window [mem 0xdcd00000-0xdcdfffff 64bit pref] -05:50:20,521 INFO kernel:pci 0000:00:15.4: PCI bridge to [bus 07-07] -05:50:20,521 DEBUG kernel:pci 0000:00:15.4: bridge window [io 0xf000-0x0000] (disabled) -05:50:20,521 DEBUG kernel:pci 0000:00:15.4: bridge window [mem 0xd3400000-0xd34fffff] -05:50:20,521 DEBUG kernel:pci 0000:00:15.4: bridge window [mem 0xdcf00000-0xdcffffff 64bit pref] -05:50:20,521 INFO kernel:pci 0000:00:15.5: PCI bridge to [bus 08-08] -05:50:20,521 DEBUG kernel:pci 0000:00:15.5: bridge window [io 0xf000-0x0000] (disabled) -05:50:20,521 DEBUG kernel:pci 0000:00:15.5: bridge window [mem 0xd3800000-0xd38fffff] -05:50:20,521 DEBUG kernel:pci 0000:00:15.5: bridge window [mem 0xdd100000-0xdd1fffff 64bit pref] -05:50:20,521 INFO kernel:pci 0000:00:15.6: PCI bridge to [bus 09-09] -05:50:20,521 DEBUG kernel:pci 0000:00:15.6: bridge window [io 0xf000-0x0000] (disabled) -05:50:20,521 DEBUG kernel:pci 0000:00:15.6: bridge window [mem 0xd3c00000-0xd3cfffff] -05:50:20,521 DEBUG kernel:pci 0000:00:15.6: bridge window [mem 0xdd300000-0xdd3fffff 64bit pref] -05:50:20,521 INFO kernel:pci 0000:00:15.7: PCI bridge to [bus 0a-0a] -05:50:20,521 DEBUG kernel:pci 0000:00:15.7: bridge window [io 0xf000-0x0000] (disabled) -05:50:20,521 DEBUG kernel:pci 0000:00:15.7: bridge window [mem 0xd4000000-0xd40fffff] -05:50:20,521 DEBUG kernel:pci 0000:00:15.7: bridge window [mem 0xdd500000-0xdd5fffff 64bit pref] -05:50:20,521 INFO kernel:pci 0000:00:16.0: PCI bridge to [bus 0b-0b] -05:50:20,521 DEBUG kernel:pci 0000:00:16.0: bridge window [io 0x5000-0x5fff] -05:50:20,521 DEBUG kernel:pci 0000:00:16.0: bridge window [mem 0xd2500000-0xd25fffff] -05:50:20,521 DEBUG kernel:pci 0000:00:16.0: bridge window [mem 0xd4500000-0xd45fffff 64bit pref] -05:50:20,522 INFO kernel:pci 0000:00:16.1: PCI bridge to [bus 0c-0c] -05:50:20,522 DEBUG kernel:pci 0000:00:16.1: bridge window [io 0x9000-0x9fff] -05:50:20,522 DEBUG kernel:pci 0000:00:16.1: bridge window [mem 0xd2900000-0xd29fffff] -05:50:20,522 DEBUG kernel:pci 0000:00:16.1: bridge window [mem 0xd4900000-0xd49fffff 64bit pref] -05:50:20,522 INFO kernel:pci 0000:00:16.2: PCI bridge to [bus 0d-0d] -05:50:20,522 DEBUG kernel:pci 0000:00:16.2: bridge window [io 0xd000-0xdfff] -05:50:20,522 DEBUG kernel:pci 0000:00:16.2: bridge window [mem 0xd2d00000-0xd2dfffff] -05:50:20,522 DEBUG kernel:pci 0000:00:16.2: bridge window [mem 0xd4b00000-0xd4bfffff 64bit pref] -05:50:20,522 INFO kernel:pci 0000:00:16.3: PCI bridge to [bus 0e-0e] -05:50:20,522 DEBUG kernel:pci 0000:00:16.3: bridge window [io 0xf000-0x0000] (disabled) -05:50:20,522 DEBUG kernel:pci 0000:00:16.3: bridge window [mem 0xd3100000-0xd31fffff] -05:50:20,522 DEBUG kernel:pci 0000:00:16.3: bridge window [mem 0xd4d00000-0xd4dfffff 64bit pref] -05:50:20,522 INFO kernel:pci 0000:00:16.4: PCI bridge to [bus 0f-0f] -05:50:20,522 DEBUG kernel:pci 0000:00:16.4: bridge window [io 0xf000-0x0000] (disabled) -05:50:20,522 DEBUG kernel:pci 0000:00:16.4: bridge window [mem 0xd3500000-0xd35fffff] -05:50:20,522 DEBUG kernel:pci 0000:00:16.4: bridge window [mem 0xd4f00000-0xd4ffffff 64bit pref] -05:50:20,522 INFO kernel:pci 0000:00:16.5: PCI bridge to [bus 10-10] -05:50:20,522 DEBUG kernel:pci 0000:00:16.5: bridge window [io 0xf000-0x0000] (disabled) -05:50:20,522 DEBUG kernel:pci 0000:00:16.5: bridge window [mem 0xd3900000-0xd39fffff] -05:50:20,522 DEBUG kernel:pci 0000:00:16.5: bridge window [mem 0xd5100000-0xd51fffff 64bit pref] -05:50:20,522 INFO kernel:pci 0000:00:16.6: PCI bridge to [bus 11-11] -05:50:20,522 DEBUG kernel:pci 0000:00:16.6: bridge window [io 0xf000-0x0000] (disabled) -05:50:20,522 DEBUG kernel:pci 0000:00:16.6: bridge window [mem 0xd3d00000-0xd3dfffff] -05:50:20,522 DEBUG kernel:pci 0000:00:16.6: bridge window [mem 0xd5300000-0xd53fffff 64bit pref] -05:50:20,522 INFO kernel:pci 0000:00:16.7: PCI bridge to [bus 12-12] -05:50:20,522 DEBUG kernel:pci 0000:00:16.7: bridge window [io 0xf000-0x0000] (disabled) -05:50:20,522 DEBUG kernel:pci 0000:00:16.7: bridge window [mem 0xd4100000-0xd41fffff] -05:50:20,522 DEBUG kernel:pci 0000:00:16.7: bridge window [mem 0xd5500000-0xd55fffff 64bit pref] -05:50:20,522 INFO kernel:pci 0000:00:17.0: PCI bridge to [bus 13-13] -05:50:20,522 DEBUG kernel:pci 0000:00:17.0: bridge window [io 0x6000-0x6fff] -05:50:20,522 DEBUG kernel:pci 0000:00:17.0: bridge window [mem 0xd2600000-0xd26fffff] -05:50:20,522 DEBUG kernel:pci 0000:00:17.0: bridge window [mem 0xd4600000-0xd46fffff 64bit pref] -05:50:20,522 INFO kernel:pci 0000:00:17.1: PCI bridge to [bus 14-14] -05:50:20,522 DEBUG kernel:pci 0000:00:17.1: bridge window [io 0xa000-0xafff] -05:50:20,522 DEBUG kernel:pci 0000:00:17.1: bridge window [mem 0xd2a00000-0xd2afffff] -05:50:20,522 DEBUG kernel:pci 0000:00:17.1: bridge window [mem 0xdca00000-0xdcafffff 64bit pref] -05:50:20,522 INFO kernel:pci 0000:00:17.2: PCI bridge to [bus 15-15] -05:50:20,522 DEBUG kernel:pci 0000:00:17.2: bridge window [io 0xe000-0xefff] -05:50:20,522 DEBUG kernel:pci 0000:00:17.2: bridge window [mem 0xd2e00000-0xd2efffff] -05:50:20,522 DEBUG kernel:pci 0000:00:17.2: bridge window [mem 0xdcc00000-0xdccfffff 64bit pref] -05:50:20,522 INFO kernel:pci 0000:00:17.3: PCI bridge to [bus 16-16] -05:50:20,522 DEBUG kernel:pci 0000:00:17.3: bridge window [io 0xf000-0x0000] (disabled) -05:50:20,522 DEBUG kernel:pci 0000:00:17.3: bridge window [mem 0xd3200000-0xd32fffff] -05:50:20,522 DEBUG kernel:pci 0000:00:17.3: bridge window [mem 0xdce00000-0xdcefffff 64bit pref] -05:50:20,522 INFO kernel:pci 0000:00:17.4: PCI bridge to [bus 17-17] -05:50:20,522 DEBUG kernel:pci 0000:00:17.4: bridge window [io 0xf000-0x0000] (disabled) -05:50:20,522 DEBUG kernel:pci 0000:00:17.4: bridge window [mem 0xd3600000-0xd36fffff] -05:50:20,522 DEBUG kernel:pci 0000:00:17.4: bridge window [mem 0xdd000000-0xdd0fffff 64bit pref] -05:50:20,522 INFO kernel:pci 0000:00:17.5: PCI bridge to [bus 18-18] -05:50:20,522 DEBUG kernel:pci 0000:00:17.5: bridge window [io 0xf000-0x0000] (disabled) -05:50:20,522 DEBUG kernel:pci 0000:00:17.5: bridge window [mem 0xd3a00000-0xd3afffff] -05:50:20,522 DEBUG kernel:pci 0000:00:17.5: bridge window [mem 0xdd200000-0xdd2fffff 64bit pref] -05:50:20,522 INFO kernel:pci 0000:00:17.6: PCI bridge to [bus 19-19] -05:50:20,522 DEBUG kernel:pci 0000:00:17.6: bridge window [io 0xf000-0x0000] (disabled) -05:50:20,522 DEBUG kernel:pci 0000:00:17.6: bridge window [mem 0xd3e00000-0xd3efffff] -05:50:20,522 DEBUG kernel:pci 0000:00:17.6: bridge window [mem 0xdd400000-0xdd4fffff 64bit pref] -05:50:20,522 INFO kernel:pci 0000:00:17.7: PCI bridge to [bus 1a-1a] -05:50:20,522 DEBUG kernel:pci 0000:00:17.7: bridge window [io 0xf000-0x0000] (disabled) -05:50:20,522 DEBUG kernel:pci 0000:00:17.7: bridge window [mem 0xd4200000-0xd42fffff] -05:50:20,522 DEBUG kernel:pci 0000:00:17.7: bridge window [mem 0xdd600000-0xdd6fffff 64bit pref] -05:50:20,522 INFO kernel:pci 0000:00:18.0: PCI bridge to [bus 1b-1b] -05:50:20,522 DEBUG kernel:pci 0000:00:18.0: bridge window [io 0x7000-0x7fff] -05:50:20,522 DEBUG kernel:pci 0000:00:18.0: bridge window [mem 0xd2700000-0xd27fffff] -05:50:20,522 DEBUG kernel:pci 0000:00:18.0: bridge window [mem 0xd4700000-0xd47fffff 64bit pref] -05:50:20,522 INFO kernel:pci 0000:00:18.1: PCI bridge to [bus 1c-1c] -05:50:20,522 DEBUG kernel:pci 0000:00:18.1: bridge window [io 0xb000-0xbfff] -05:50:20,522 DEBUG kernel:pci 0000:00:18.1: bridge window [mem 0xd2b00000-0xd2bfffff] -05:50:20,522 DEBUG kernel:pci 0000:00:18.1: bridge window [mem 0xd4a00000-0xd4afffff 64bit pref] -05:50:20,522 INFO kernel:pci 0000:00:18.2: PCI bridge to [bus 1d-1d] -05:50:20,522 DEBUG kernel:pci 0000:00:18.2: bridge window [io 0xf000-0xffff] -05:50:20,522 DEBUG kernel:pci 0000:00:18.2: bridge window [mem 0xd2f00000-0xd2ffffff] -05:50:20,522 DEBUG kernel:pci 0000:00:18.2: bridge window [mem 0xd4c00000-0xd4cfffff 64bit pref] -05:50:20,522 INFO kernel:pci 0000:00:18.3: PCI bridge to [bus 1e-1e] -05:50:20,522 DEBUG kernel:pci 0000:00:18.3: bridge window [io 0xf000-0x0000] (disabled) -05:50:20,522 DEBUG kernel:pci 0000:00:18.3: bridge window [mem 0xd3300000-0xd33fffff] -05:50:20,522 DEBUG kernel:pci 0000:00:18.3: bridge window [mem 0xd4e00000-0xd4efffff 64bit pref] -05:50:20,522 INFO kernel:pci 0000:00:18.4: PCI bridge to [bus 1f-1f] -05:50:20,522 DEBUG kernel:pci 0000:00:18.4: bridge window [io 0xf000-0x0000] (disabled) -05:50:20,522 DEBUG kernel:pci 0000:00:18.4: bridge window [mem 0xd3700000-0xd37fffff] -05:50:20,522 DEBUG kernel:pci 0000:00:18.4: bridge window [mem 0xd5000000-0xd50fffff 64bit pref] -05:50:20,522 INFO kernel:pci 0000:00:18.5: PCI bridge to [bus 20-20] -05:50:20,522 DEBUG kernel:pci 0000:00:18.5: bridge window [io 0xf000-0x0000] (disabled) -05:50:20,522 DEBUG kernel:pci 0000:00:18.5: bridge window [mem 0xd3b00000-0xd3bfffff] -05:50:20,522 DEBUG kernel:pci 0000:00:18.5: bridge window [mem 0xd5200000-0xd52fffff 64bit pref] -05:50:20,522 INFO kernel:pci 0000:00:18.6: PCI bridge to [bus 21-21] -05:50:20,522 DEBUG kernel:pci 0000:00:18.6: bridge window [io 0xf000-0x0000] (disabled) -05:50:20,522 DEBUG kernel:pci 0000:00:18.6: bridge window [mem 0xd3f00000-0xd3ffffff] -05:50:20,522 DEBUG kernel:pci 0000:00:18.6: bridge window [mem 0xd5400000-0xd54fffff 64bit pref] -05:50:20,522 INFO kernel:pci 0000:00:18.7: PCI bridge to [bus 22-22] -05:50:20,522 DEBUG kernel:pci 0000:00:18.7: bridge window [io 0xf000-0x0000] (disabled) -05:50:20,522 DEBUG kernel:pci 0000:00:18.7: bridge window [mem 0xd4300000-0xd43fffff] -05:50:20,522 DEBUG kernel:pci 0000:00:18.7: bridge window [mem 0xd5600000-0xd56fffff 64bit pref] -05:50:20,522 DEBUG kernel:ACPI: PCI Interrupt Routing Table [\_SB_.PCI0._PRT] -05:50:20,522 INFO kernel: pci0000:00: Requesting ACPI _OSC control (0x1d) -05:50:20,522 INFO kernel: pci0000:00: ACPI _OSC control (0x15) granted -05:50:20,522 INFO kernel:ACPI: PCI Interrupt Link [LNKA] (IRQs 3 4 5 6 7 *9 10 11 14 15) -05:50:20,522 INFO kernel:ACPI: PCI Interrupt Link [LNKB] (IRQs 3 4 5 6 7 9 10 *11 14 15) -05:50:20,522 INFO kernel:ACPI: PCI Interrupt Link [LNKC] (IRQs 3 4 5 6 7 9 *10 11 14 15) -05:50:20,522 INFO kernel:ACPI: PCI Interrupt Link [LNKD] (IRQs 3 4 *5 6 7 9 10 11 14 15) -05:50:20,522 INFO kernel:vgaarb: device added: PCI:0000:00:0f.0,decodes=io+mem,owns=io+mem,locks=none -05:50:20,522 INFO kernel:vgaarb: loaded -05:50:20,522 INFO kernel:vgaarb: bridge control possible 0000:00:0f.0 -05:50:20,522 NOTICE kernel:SCSI subsystem initialized -05:50:20,522 DEBUG kernel:libata version 3.00 loaded. -05:50:20,522 INFO kernel:usbcore: registered new interface driver usbfs -05:50:20,522 INFO kernel:usbcore: registered new interface driver hub -05:50:20,522 INFO kernel:usbcore: registered new device driver usb -05:50:20,522 INFO kernel:PCI: Using ACPI for IRQ routing -05:50:20,522 DEBUG kernel:PCI: old code would have set cacheline size to 32 bytes, but clflush_size = 64 -05:50:20,522 DEBUG kernel:PCI: pci_cache_line_size set to 64 bytes -05:50:20,522 INFO kernel:pci 0000:00:18.2: no compatible bridge window for [io 0xf000-0xffff] -05:50:20,522 INFO kernel:pci 0000:00:18.2: can't reserve window [io 0xf000-0xffff] -05:50:20,522 NOTICE kernel:lo: Dropping TSO features since no CSUM feature. -05:50:20,522 INFO kernel:NetLabel: Initializing -05:50:20,522 INFO kernel:NetLabel: domain hash size = 128 -05:50:20,522 INFO kernel:NetLabel: protocols = UNLABELED CIPSOv4 -05:50:20,522 INFO kernel:NetLabel: unlabeled traffic allowed by default -05:50:20,522 INFO kernel:HPET: 16 timers in total, 0 timers will be used for per-cpu timer -05:50:20,522 INFO kernel:hpet0: at MMIO 0xfed00000, IRQs 2, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 -05:50:20,522 INFO kernel:hpet0: 16 comparators, 64-bit 14.318180 MHz counter -05:50:20,522 INFO kernel:Switching to clocksource hpet -05:50:20,522 INFO kernel:pnp: PnP ACPI init -05:50:20,522 INFO kernel:ACPI: bus type pnp registered -05:50:20,522 DEBUG kernel:pnp 00:00: [io 0x0cf8-0x0cff] -05:50:20,522 DEBUG kernel:pnp 00:00: Plug and Play ACPI device, IDs PNP0a03 PNP0a08 (active) -05:50:20,522 DEBUG kernel:pnp 00:01: [io 0x0010-0x001f] -05:50:20,522 DEBUG kernel:pnp 00:01: [io 0x0024-0x0025] -05:50:20,522 DEBUG kernel:pnp 00:01: [io 0x0028-0x0029] -05:50:20,522 DEBUG kernel:pnp 00:01: [io 0x002c-0x002d] -05:50:20,522 DEBUG kernel:pnp 00:01: [io 0x002e-0x002f] -05:50:20,522 DEBUG kernel:pnp 00:01: [io 0x0030-0x0031] -05:50:20,522 DEBUG kernel:pnp 00:01: [io 0x0034-0x0035] -05:50:20,522 DEBUG kernel:pnp 00:01: [io 0x0038-0x0039] -05:50:20,522 DEBUG kernel:pnp 00:01: [io 0x003c-0x003d] -05:50:20,522 DEBUG kernel:pnp 00:01: [io 0x0050-0x0053] -05:50:20,522 DEBUG kernel:pnp 00:01: [io 0x0072-0x0077] -05:50:20,522 DEBUG kernel:pnp 00:01: [io 0x0080] -05:50:20,522 DEBUG kernel:pnp 00:01: [io 0x0090-0x009f] -05:50:20,522 DEBUG kernel:pnp 00:01: [io 0x00a4-0x00a5] -05:50:20,522 DEBUG kernel:pnp 00:01: [io 0x00a8-0x00a9] -05:50:20,522 DEBUG kernel:pnp 00:01: [io 0x00ac-0x00ad] -05:50:20,522 DEBUG kernel:pnp 00:01: [io 0x00b0-0x00b5] -05:50:20,522 DEBUG kernel:pnp 00:01: [io 0x00b8-0x00b9] -05:50:20,522 DEBUG kernel:pnp 00:01: [io 0x00bc-0x00bd] -05:50:20,522 DEBUG kernel:pnp 00:01: [io 0x1000-0x103f] -05:50:20,522 DEBUG kernel:pnp 00:01: [io 0x1040-0x104f] -05:50:20,522 DEBUG kernel:pnp 00:01: [io 0x0cf0-0x0cf1] -05:50:20,522 DEBUG kernel:pnp 00:01: Plug and Play ACPI device, IDs PNP0c02 (active) -05:50:20,522 DEBUG kernel:pnp 00:02: [io 0x0000-0x000f] -05:50:20,522 DEBUG kernel:pnp 00:02: [io 0x0081-0x008f] -05:50:20,522 DEBUG kernel:pnp 00:02: [io 0x00c0-0x00df] -05:50:20,522 DEBUG kernel:pnp 00:02: [dma 4] -05:50:20,522 DEBUG kernel:pnp 00:02: Plug and Play ACPI device, IDs PNP0200 (active) -05:50:20,522 DEBUG kernel:pnp 00:03: [io 0x0020-0x0021] -05:50:20,522 DEBUG kernel:pnp 00:03: [io 0x00a0-0x00a1] -05:50:20,522 DEBUG kernel:pnp 00:03: [io 0x04d0-0x04d1] -05:50:20,522 DEBUG kernel:pnp 00:03: [irq 2 disabled] -05:50:20,522 DEBUG kernel:pnp 00:03: Plug and Play ACPI device, IDs PNP0001 (active) -05:50:20,522 DEBUG kernel:pnp 00:04: [io 0x0070-0x0071] -05:50:20,522 DEBUG kernel:pnp 00:04: [irq 8] -05:50:20,522 DEBUG kernel:pnp 00:04: Plug and Play ACPI device, IDs PNP0b00 (active) -05:50:20,522 DEBUG kernel:pnp 00:05: [io 0x0061] -05:50:20,522 DEBUG kernel:pnp 00:05: Plug and Play ACPI device, IDs PNP0800 (active) -05:50:20,522 DEBUG kernel:pnp 00:06: [io 0x0060] -05:50:20,522 DEBUG kernel:pnp 00:06: [io 0x0064] -05:50:20,522 DEBUG kernel:pnp 00:06: [irq 1] -05:50:20,522 DEBUG kernel:pnp 00:06: Plug and Play ACPI device, IDs PNP0303 (active) -05:50:20,522 DEBUG kernel:pnp 00:07: [irq 12] -05:50:20,522 DEBUG kernel:pnp 00:07: Plug and Play ACPI device, IDs PNP0f13 (active) -05:50:20,522 DEBUG kernel:pnp 00:08: [mem 0xfed00000-0xfed003ff] -05:50:20,522 DEBUG kernel:pnp 00:08: Plug and Play ACPI device, IDs PNP0103 PNP0c01 (active) -05:50:20,522 DEBUG kernel:pnp 00:09: [io 0x0378-0x037f] -05:50:20,522 DEBUG kernel:pnp 00:09: [irq 7] -05:50:20,522 DEBUG kernel:pnp 00:09: Plug and Play ACPI device, IDs PNP0400 (active) -05:50:20,522 DEBUG kernel:pnp 00:0a: [io 0x03f8-0x03ff] -05:50:20,522 DEBUG kernel:pnp 00:0a: [irq 4] -05:50:20,522 DEBUG kernel:pnp 00:0a: Plug and Play ACPI device, IDs PNP0501 (active) -05:50:20,522 DEBUG kernel:pnp 00:0b: [io 0x02f8-0x02ff] -05:50:20,522 DEBUG kernel:pnp 00:0b: [irq 3] -05:50:20,522 DEBUG kernel:pnp 00:0b: Plug and Play ACPI device, IDs PNP0501 (active) -05:50:20,522 DEBUG kernel:pnp 00:0c: [io 0x03f0-0x03f5] -05:50:20,522 DEBUG kernel:pnp 00:0c: [io 0x03f7] -05:50:20,522 DEBUG kernel:pnp 00:0c: [irq 6] -05:50:20,522 DEBUG kernel:pnp 00:0c: [dma 2] -05:50:20,522 DEBUG kernel:pnp 00:0c: Plug and Play ACPI device, IDs PNP0700 (active) -05:50:20,522 DEBUG kernel:pnp 00:0d: [mem 0xe0000000-0xefffffff] -05:50:20,522 DEBUG kernel:pnp 00:0d: [io 0x1060-0x107f] -05:50:20,522 DEBUG kernel:pnp 00:0d: [mem 0xd0200000-0xd03fffff] -05:50:20,522 DEBUG kernel:pnp 00:0d: Plug and Play ACPI device, IDs PNP0c02 (active) -05:50:20,522 INFO kernel:pnp: PnP ACPI: found 14 devices -05:50:20,522 INFO kernel:ACPI: ACPI bus type pnp unregistered -05:50:20,522 INFO kernel:system 00:01: [io 0x1000-0x103f] has been reserved -05:50:20,522 INFO kernel:system 00:01: [io 0x1040-0x104f] has been reserved -05:50:20,522 INFO kernel:system 00:01: [io 0x0cf0-0x0cf1] has been reserved -05:50:20,522 INFO kernel:system 00:08: [mem 0xfed00000-0xfed003ff] has been reserved -05:50:20,522 INFO kernel:system 00:0d: [io 0x1060-0x107f] has been reserved -05:50:20,522 INFO kernel:system 00:0d: [mem 0xe0000000-0xefffffff] has been reserved -05:50:20,522 INFO kernel:system 00:0d: [mem 0xd0200000-0xd03fffff] has been reserved -05:50:20,522 DEBUG kernel:PCI: max bus depth: 1 pci_try_num: 2 -05:50:20,522 INFO kernel:pci 0000:00:0f.0: BAR 6: assigned [mem 0x80000000-0x80007fff pref] -05:50:20,522 INFO kernel:pci 0000:00:10.0: BAR 6: assigned [mem 0x80008000-0x8000bfff pref] -05:50:20,522 INFO kernel:pci 0000:00:18.2: BAR 13: can't assign io (size 0x1000) -05:50:20,522 INFO kernel:pci 0000:00:18.7: BAR 13: can't assign io (size 0x1000) -05:50:20,522 INFO kernel:pci 0000:00:18.6: BAR 13: can't assign io (size 0x1000) -05:50:20,522 INFO kernel:pci 0000:00:18.5: BAR 13: can't assign io (size 0x1000) -05:50:20,522 INFO kernel:pci 0000:00:18.4: BAR 13: can't assign io (size 0x1000) -05:50:20,522 INFO kernel:pci 0000:00:18.3: BAR 13: can't assign io (size 0x1000) -05:50:20,523 INFO kernel:pci 0000:00:17.7: BAR 13: can't assign io (size 0x1000) -05:50:20,523 INFO kernel:pci 0000:00:17.6: BAR 13: can't assign io (size 0x1000) -05:50:20,523 INFO kernel:pci 0000:00:17.5: BAR 13: can't assign io (size 0x1000) -05:50:20,523 INFO kernel:pci 0000:00:17.4: BAR 13: can't assign io (size 0x1000) -05:50:20,523 INFO kernel:pci 0000:00:17.3: BAR 13: can't assign io (size 0x1000) -05:50:20,523 INFO kernel:pci 0000:00:16.7: BAR 13: can't assign io (size 0x1000) -05:50:20,523 INFO kernel:pci 0000:00:16.6: BAR 13: can't assign io (size 0x1000) -05:50:20,523 INFO kernel:pci 0000:00:16.5: BAR 13: can't assign io (size 0x1000) -05:50:20,523 INFO kernel:pci 0000:00:16.4: BAR 13: can't assign io (size 0x1000) -05:50:20,523 INFO kernel:pci 0000:00:16.3: BAR 13: can't assign io (size 0x1000) -05:50:20,523 INFO kernel:pci 0000:00:15.7: BAR 13: can't assign io (size 0x1000) -05:50:20,523 INFO kernel:pci 0000:00:15.6: BAR 13: can't assign io (size 0x1000) -05:50:20,523 INFO kernel:pci 0000:00:15.5: BAR 13: can't assign io (size 0x1000) -05:50:20,523 INFO kernel:pci 0000:00:15.4: BAR 13: can't assign io (size 0x1000) -05:50:20,523 INFO kernel:pci 0000:00:15.3: BAR 13: can't assign io (size 0x1000) -05:50:20,523 INFO kernel:pci 0000:00:01.0: PCI bridge to [bus 01-01] -05:50:20,523 INFO kernel:pci 0000:00:01.0: PCI bridge to [bus 01-01] -05:50:20,523 INFO kernel:pci 0000:00:01.0: bridge window [io disabled] -05:50:20,523 INFO kernel:pci 0000:00:01.0: bridge window [mem disabled] -05:50:20,523 INFO kernel:pci 0000:00:01.0: bridge window [mem pref disabled] -05:50:20,523 INFO kernel:pci 0000:02:00.0: BAR 6: assigned [mem 0xdc400000-0xdc40ffff pref] -05:50:20,523 INFO kernel:pci 0000:02:01.0: BAR 6: assigned [mem 0xdc410000-0xdc41ffff pref] -05:50:20,523 INFO kernel:pci 0000:02:02.0: BAR 6: assigned [mem 0xdc420000-0xdc42ffff pref] -05:50:20,523 INFO kernel:pci 0000:02:03.0: BAR 6: assigned [mem 0xdc430000-0xdc43ffff pref] -05:50:20,523 INFO kernel:pci 0000:00:11.0: PCI bridge to [bus 02-02] -05:50:20,523 INFO kernel:pci 0000:00:11.0: PCI bridge to [bus 02-02] -05:50:20,523 INFO kernel:pci 0000:00:11.0: bridge window [io 0x2000-0x3fff] -05:50:20,523 INFO kernel:pci 0000:00:11.0: bridge window [mem 0xd1000000-0xd23fffff] -05:50:20,523 INFO kernel:pci 0000:00:11.0: bridge window [mem 0xdc400000-0xdc9fffff 64bit pref] -05:50:20,523 INFO kernel:pci 0000:00:15.0: PCI bridge to [bus 03-03] -05:50:20,523 INFO kernel:pci 0000:00:15.0: PCI bridge to [bus 03-03] -05:50:20,523 INFO kernel:pci 0000:00:15.0: bridge window [io 0x4000-0x4fff] -05:50:20,523 INFO kernel:pci 0000:00:15.0: bridge window [mem 0xd2400000-0xd24fffff] -05:50:20,523 INFO kernel:pci 0000:00:15.0: bridge window [mem 0xd4400000-0xd44fffff 64bit pref] -05:50:20,523 INFO kernel:pci 0000:00:15.1: PCI bridge to [bus 04-04] -05:50:20,523 INFO kernel:pci 0000:00:15.1: PCI bridge to [bus 04-04] -05:50:20,523 INFO kernel:pci 0000:00:15.1: bridge window [io 0x8000-0x8fff] -05:50:20,523 INFO kernel:pci 0000:00:15.1: bridge window [mem 0xd2800000-0xd28fffff] -05:50:20,523 INFO kernel:pci 0000:00:15.1: bridge window [mem 0xd4800000-0xd48fffff 64bit pref] -05:50:20,523 INFO kernel:pci 0000:00:15.2: PCI bridge to [bus 05-05] -05:50:20,523 INFO kernel:pci 0000:00:15.2: PCI bridge to [bus 05-05] -05:50:20,523 INFO kernel:pci 0000:00:15.2: bridge window [io 0xc000-0xcfff] -05:50:20,523 INFO kernel:pci 0000:00:15.2: bridge window [mem 0xd2c00000-0xd2cfffff] -05:50:20,523 INFO kernel:pci 0000:00:15.2: bridge window [mem 0xdcb00000-0xdcbfffff 64bit pref] -05:50:20,523 INFO kernel:pci 0000:00:15.3: PCI bridge to [bus 06-06] -05:50:20,523 INFO kernel:pci 0000:00:15.3: PCI bridge to [bus 06-06] -05:50:20,523 INFO kernel:pci 0000:00:15.3: bridge window [io disabled] -05:50:20,523 INFO kernel:pci 0000:00:15.3: bridge window [mem 0xd3000000-0xd30fffff] -05:50:20,523 INFO kernel:pci 0000:00:15.3: bridge window [mem 0xdcd00000-0xdcdfffff 64bit pref] -05:50:20,523 INFO kernel:pci 0000:00:15.4: PCI bridge to [bus 07-07] -05:50:20,523 INFO kernel:pci 0000:00:15.4: PCI bridge to [bus 07-07] -05:50:20,523 INFO kernel:pci 0000:00:15.4: bridge window [io disabled] -05:50:20,523 INFO kernel:pci 0000:00:15.4: bridge window [mem 0xd3400000-0xd34fffff] -05:50:20,523 INFO kernel:pci 0000:00:15.4: bridge window [mem 0xdcf00000-0xdcffffff 64bit pref] -05:50:20,523 INFO kernel:pci 0000:00:15.5: PCI bridge to [bus 08-08] -05:50:20,523 INFO kernel:pci 0000:00:15.5: PCI bridge to [bus 08-08] -05:50:20,523 INFO kernel:pci 0000:00:15.5: bridge window [io disabled] -05:50:20,523 INFO kernel:pci 0000:00:15.5: bridge window [mem 0xd3800000-0xd38fffff] -05:50:20,523 INFO kernel:pci 0000:00:15.5: bridge window [mem 0xdd100000-0xdd1fffff 64bit pref] -05:50:20,523 INFO kernel:pci 0000:00:15.6: PCI bridge to [bus 09-09] -05:50:20,523 INFO kernel:pci 0000:00:15.6: PCI bridge to [bus 09-09] -05:50:20,523 INFO kernel:pci 0000:00:15.6: bridge window [io disabled] -05:50:20,523 INFO kernel:pci 0000:00:15.6: bridge window [mem 0xd3c00000-0xd3cfffff] -05:50:20,523 INFO kernel:pci 0000:00:15.6: bridge window [mem 0xdd300000-0xdd3fffff 64bit pref] -05:50:20,523 INFO kernel:pci 0000:00:15.7: PCI bridge to [bus 0a-0a] -05:50:20,523 INFO kernel:pci 0000:00:15.7: PCI bridge to [bus 0a-0a] -05:50:20,523 INFO kernel:pci 0000:00:15.7: bridge window [io disabled] -05:50:20,523 INFO kernel:pci 0000:00:15.7: bridge window [mem 0xd4000000-0xd40fffff] -05:50:20,523 INFO kernel:pci 0000:00:15.7: bridge window [mem 0xdd500000-0xdd5fffff 64bit pref] -05:50:20,523 INFO kernel:pci 0000:00:16.0: PCI bridge to [bus 0b-0b] -05:50:20,523 INFO kernel:pci 0000:00:16.0: PCI bridge to [bus 0b-0b] -05:50:20,523 INFO kernel:pci 0000:00:16.0: bridge window [io 0x5000-0x5fff] -05:50:20,523 INFO kernel:pci 0000:00:16.0: bridge window [mem 0xd2500000-0xd25fffff] -05:50:20,523 INFO kernel:pci 0000:00:16.0: bridge window [mem 0xd4500000-0xd45fffff 64bit pref] -05:50:20,523 INFO kernel:pci 0000:00:16.1: PCI bridge to [bus 0c-0c] -05:50:20,523 INFO kernel:pci 0000:00:16.1: PCI bridge to [bus 0c-0c] -05:50:20,523 INFO kernel:pci 0000:00:16.1: bridge window [io 0x9000-0x9fff] -05:50:20,523 INFO kernel:pci 0000:00:16.1: bridge window [mem 0xd2900000-0xd29fffff] -05:50:20,523 INFO kernel:pci 0000:00:16.1: bridge window [mem 0xd4900000-0xd49fffff 64bit pref] -05:50:20,523 INFO kernel:pci 0000:00:16.2: PCI bridge to [bus 0d-0d] -05:50:20,523 INFO kernel:pci 0000:00:16.2: PCI bridge to [bus 0d-0d] -05:50:20,523 INFO kernel:pci 0000:00:16.2: bridge window [io 0xd000-0xdfff] -05:50:20,523 INFO kernel:pci 0000:00:16.2: bridge window [mem 0xd2d00000-0xd2dfffff] -05:50:20,523 INFO kernel:pci 0000:00:16.2: bridge window [mem 0xd4b00000-0xd4bfffff 64bit pref] -05:50:20,523 INFO kernel:pci 0000:00:16.3: PCI bridge to [bus 0e-0e] -05:50:20,523 INFO kernel:pci 0000:00:16.3: PCI bridge to [bus 0e-0e] -05:50:20,523 INFO kernel:pci 0000:00:16.3: bridge window [io disabled] -05:50:20,523 INFO kernel:pci 0000:00:16.3: bridge window [mem 0xd3100000-0xd31fffff] -05:50:20,523 INFO kernel:pci 0000:00:16.3: bridge window [mem 0xd4d00000-0xd4dfffff 64bit pref] -05:50:20,523 INFO kernel:pci 0000:00:16.4: PCI bridge to [bus 0f-0f] -05:50:20,523 INFO kernel:pci 0000:00:16.4: PCI bridge to [bus 0f-0f] -05:50:20,523 INFO kernel:pci 0000:00:16.4: bridge window [io disabled] -05:50:20,523 INFO kernel:pci 0000:00:16.4: bridge window [mem 0xd3500000-0xd35fffff] -05:50:20,523 INFO kernel:pci 0000:00:16.4: bridge window [mem 0xd4f00000-0xd4ffffff 64bit pref] -05:50:20,523 INFO kernel:pci 0000:00:16.5: PCI bridge to [bus 10-10] -05:50:20,523 INFO kernel:pci 0000:00:16.5: PCI bridge to [bus 10-10] -05:50:20,523 INFO kernel:pci 0000:00:16.5: bridge window [io disabled] -05:50:20,523 INFO kernel:pci 0000:00:16.5: bridge window [mem 0xd3900000-0xd39fffff] -05:50:20,523 INFO kernel:pci 0000:00:16.5: bridge window [mem 0xd5100000-0xd51fffff 64bit pref] -05:50:20,523 INFO kernel:pci 0000:00:16.6: PCI bridge to [bus 11-11] -05:50:20,523 INFO kernel:pci 0000:00:16.6: PCI bridge to [bus 11-11] -05:50:20,523 INFO kernel:pci 0000:00:16.6: bridge window [io disabled] -05:50:20,523 INFO kernel:pci 0000:00:16.6: bridge window [mem 0xd3d00000-0xd3dfffff] -05:50:20,523 INFO kernel:pci 0000:00:16.6: bridge window [mem 0xd5300000-0xd53fffff 64bit pref] -05:50:20,523 INFO kernel:pci 0000:00:16.7: PCI bridge to [bus 12-12] -05:50:20,523 INFO kernel:pci 0000:00:16.7: PCI bridge to [bus 12-12] -05:50:20,523 INFO kernel:pci 0000:00:16.7: bridge window [io disabled] -05:50:20,523 INFO kernel:pci 0000:00:16.7: bridge window [mem 0xd4100000-0xd41fffff] -05:50:20,523 INFO kernel:pci 0000:00:16.7: bridge window [mem 0xd5500000-0xd55fffff 64bit pref] -05:50:20,523 INFO kernel:pci 0000:00:17.0: PCI bridge to [bus 13-13] -05:50:20,523 INFO kernel:pci 0000:00:17.0: PCI bridge to [bus 13-13] -05:50:20,523 INFO kernel:pci 0000:00:17.0: bridge window [io 0x6000-0x6fff] -05:50:20,523 INFO kernel:pci 0000:00:17.0: bridge window [mem 0xd2600000-0xd26fffff] -05:50:20,523 INFO kernel:pci 0000:00:17.0: bridge window [mem 0xd4600000-0xd46fffff 64bit pref] -05:50:20,523 INFO kernel:pci 0000:00:17.1: PCI bridge to [bus 14-14] -05:50:20,523 INFO kernel:pci 0000:00:17.1: PCI bridge to [bus 14-14] -05:50:20,523 INFO kernel:pci 0000:00:17.1: bridge window [io 0xa000-0xafff] -05:50:20,523 INFO kernel:pci 0000:00:17.1: bridge window [mem 0xd2a00000-0xd2afffff] -05:50:20,523 INFO kernel:pci 0000:00:17.1: bridge window [mem 0xdca00000-0xdcafffff 64bit pref] -05:50:20,523 INFO kernel:pci 0000:00:17.2: PCI bridge to [bus 15-15] -05:50:20,523 INFO kernel:pci 0000:00:17.2: PCI bridge to [bus 15-15] -05:50:20,523 INFO kernel:pci 0000:00:17.2: bridge window [io 0xe000-0xefff] -05:50:20,523 INFO kernel:pci 0000:00:17.2: bridge window [mem 0xd2e00000-0xd2efffff] -05:50:20,523 INFO kernel:pci 0000:00:17.2: bridge window [mem 0xdcc00000-0xdccfffff 64bit pref] -05:50:20,523 INFO kernel:pci 0000:00:17.3: PCI bridge to [bus 16-16] -05:50:20,523 INFO kernel:pci 0000:00:17.3: PCI bridge to [bus 16-16] -05:50:20,523 INFO kernel:pci 0000:00:17.3: bridge window [io disabled] -05:50:20,523 INFO kernel:pci 0000:00:17.3: bridge window [mem 0xd3200000-0xd32fffff] -05:50:20,523 INFO kernel:pci 0000:00:17.3: bridge window [mem 0xdce00000-0xdcefffff 64bit pref] -05:50:20,523 INFO kernel:pci 0000:00:17.4: PCI bridge to [bus 17-17] -05:50:20,523 INFO kernel:pci 0000:00:17.4: PCI bridge to [bus 17-17] -05:50:20,523 INFO kernel:pci 0000:00:17.4: bridge window [io disabled] -05:50:20,523 INFO kernel:pci 0000:00:17.4: bridge window [mem 0xd3600000-0xd36fffff] -05:50:20,523 INFO kernel:pci 0000:00:17.4: bridge window [mem 0xdd000000-0xdd0fffff 64bit pref] -05:50:20,523 INFO kernel:pci 0000:00:17.5: PCI bridge to [bus 18-18] -05:50:20,523 INFO kernel:pci 0000:00:17.5: PCI bridge to [bus 18-18] -05:50:20,523 INFO kernel:pci 0000:00:17.5: bridge window [io disabled] -05:50:20,523 INFO kernel:pci 0000:00:17.5: bridge window [mem 0xd3a00000-0xd3afffff] -05:50:20,523 INFO kernel:pci 0000:00:17.5: bridge window [mem 0xdd200000-0xdd2fffff 64bit pref] -05:50:20,523 INFO kernel:pci 0000:00:17.6: PCI bridge to [bus 19-19] -05:50:20,523 INFO kernel:pci 0000:00:17.6: PCI bridge to [bus 19-19] -05:50:20,523 INFO kernel:pci 0000:00:17.6: bridge window [io disabled] -05:50:20,523 INFO kernel:pci 0000:00:17.6: bridge window [mem 0xd3e00000-0xd3efffff] -05:50:20,523 INFO kernel:pci 0000:00:17.6: bridge window [mem 0xdd400000-0xdd4fffff 64bit pref] -05:50:20,523 INFO kernel:pci 0000:00:17.7: PCI bridge to [bus 1a-1a] -05:50:20,523 INFO kernel:pci 0000:00:17.7: PCI bridge to [bus 1a-1a] -05:50:20,523 INFO kernel:pci 0000:00:17.7: bridge window [io disabled] -05:50:20,523 INFO kernel:pci 0000:00:17.7: bridge window [mem 0xd4200000-0xd42fffff] -05:50:20,523 INFO kernel:pci 0000:00:17.7: bridge window [mem 0xdd600000-0xdd6fffff 64bit pref] -05:50:20,523 INFO kernel:pci 0000:00:18.0: PCI bridge to [bus 1b-1b] -05:50:20,523 INFO kernel:pci 0000:00:18.0: PCI bridge to [bus 1b-1b] -05:50:20,523 INFO kernel:pci 0000:00:18.0: bridge window [io 0x7000-0x7fff] -05:50:20,523 INFO kernel:pci 0000:00:18.0: bridge window [mem 0xd2700000-0xd27fffff] -05:50:20,523 INFO kernel:pci 0000:00:18.0: bridge window [mem 0xd4700000-0xd47fffff 64bit pref] -05:50:20,523 INFO kernel:pci 0000:00:18.1: PCI bridge to [bus 1c-1c] -05:50:20,523 INFO kernel:pci 0000:00:18.1: PCI bridge to [bus 1c-1c] -05:50:20,523 INFO kernel:pci 0000:00:18.1: bridge window [io 0xb000-0xbfff] -05:50:20,523 INFO kernel:pci 0000:00:18.1: bridge window [mem 0xd2b00000-0xd2bfffff] -05:50:20,523 INFO kernel:pci 0000:00:18.1: bridge window [mem 0xd4a00000-0xd4afffff 64bit pref] -05:50:20,523 INFO kernel:pci 0000:00:18.2: PCI bridge to [bus 1d-1d] -05:50:20,523 INFO kernel:pci 0000:00:18.2: PCI bridge to [bus 1d-1d] -05:50:20,523 INFO kernel:pci 0000:00:18.2: bridge window [io disabled] -05:50:20,523 INFO kernel:pci 0000:00:18.2: bridge window [mem 0xd2f00000-0xd2ffffff] -05:50:20,523 INFO kernel:pci 0000:00:18.2: bridge window [mem 0xd4c00000-0xd4cfffff 64bit pref] -05:50:20,523 INFO kernel:pci 0000:00:18.3: PCI bridge to [bus 1e-1e] -05:50:20,523 INFO kernel:pci 0000:00:18.3: PCI bridge to [bus 1e-1e] -05:50:20,523 INFO kernel:pci 0000:00:18.3: bridge window [io disabled] -05:50:20,523 INFO kernel:pci 0000:00:18.3: bridge window [mem 0xd3300000-0xd33fffff] -05:50:20,523 INFO kernel:pci 0000:00:18.3: bridge window [mem 0xd4e00000-0xd4efffff 64bit pref] -05:50:20,523 INFO kernel:pci 0000:00:18.4: PCI bridge to [bus 1f-1f] -05:50:20,523 INFO kernel:pci 0000:00:18.4: PCI bridge to [bus 1f-1f] -05:50:20,523 INFO kernel:pci 0000:00:18.4: bridge window [io disabled] -05:50:20,523 INFO kernel:pci 0000:00:18.4: bridge window [mem 0xd3700000-0xd37fffff] -05:50:20,523 INFO kernel:pci 0000:00:18.4: bridge window [mem 0xd5000000-0xd50fffff 64bit pref] -05:50:20,523 INFO kernel:pci 0000:00:18.5: PCI bridge to [bus 20-20] -05:50:20,523 INFO kernel:pci 0000:00:18.5: PCI bridge to [bus 20-20] -05:50:20,523 INFO kernel:pci 0000:00:18.5: bridge window [io disabled] -05:50:20,523 INFO kernel:pci 0000:00:18.5: bridge window [mem 0xd3b00000-0xd3bfffff] -05:50:20,523 INFO kernel:pci 0000:00:18.5: bridge window [mem 0xd5200000-0xd52fffff 64bit pref] -05:50:20,523 INFO kernel:pci 0000:00:18.6: PCI bridge to [bus 21-21] -05:50:20,523 INFO kernel:pci 0000:00:18.6: PCI bridge to [bus 21-21] -05:50:20,523 INFO kernel:pci 0000:00:18.6: bridge window [io disabled] -05:50:20,523 INFO kernel:pci 0000:00:18.6: bridge window [mem 0xd3f00000-0xd3ffffff] -05:50:20,523 INFO kernel:pci 0000:00:18.6: bridge window [mem 0xd5400000-0xd54fffff 64bit pref] -05:50:20,523 INFO kernel:pci 0000:00:18.7: PCI bridge to [bus 22-22] -05:50:20,523 INFO kernel:pci 0000:00:18.7: PCI bridge to [bus 22-22] -05:50:20,523 INFO kernel:pci 0000:00:18.7: bridge window [io disabled] -05:50:20,523 INFO kernel:pci 0000:00:18.7: bridge window [mem 0xd4300000-0xd43fffff] -05:50:20,523 INFO kernel:pci 0000:00:18.7: bridge window [mem 0xd5600000-0xd56fffff 64bit pref] -05:50:20,523 DEBUG kernel:pci 0000:00:01.0: setting latency timer to 64 -05:50:20,523 DEBUG kernel:pci 0000:00:15.0: setting latency timer to 64 -05:50:20,523 DEBUG kernel:pci 0000:00:15.1: setting latency timer to 64 -05:50:20,523 DEBUG kernel:pci 0000:00:15.2: setting latency timer to 64 -05:50:20,523 DEBUG kernel:pci 0000:00:15.3: setting latency timer to 64 -05:50:20,523 DEBUG kernel:pci 0000:00:15.4: setting latency timer to 64 -05:50:20,523 DEBUG kernel:pci 0000:00:15.5: setting latency timer to 64 -05:50:20,523 DEBUG kernel:pci 0000:00:15.6: setting latency timer to 64 -05:50:20,523 DEBUG kernel:pci 0000:00:15.7: setting latency timer to 64 -05:50:20,523 DEBUG kernel:pci 0000:00:16.0: setting latency timer to 64 -05:50:20,523 DEBUG kernel:pci 0000:00:16.1: setting latency timer to 64 -05:50:20,523 DEBUG kernel:pci 0000:00:16.2: setting latency timer to 64 -05:50:20,523 DEBUG kernel:pci 0000:00:16.3: setting latency timer to 64 -05:50:20,523 DEBUG kernel:pci 0000:00:16.4: setting latency timer to 64 -05:50:20,523 DEBUG kernel:pci 0000:00:16.5: setting latency timer to 64 -05:50:20,523 DEBUG kernel:pci 0000:00:16.6: setting latency timer to 64 -05:50:20,523 DEBUG kernel:pci 0000:00:16.7: setting latency timer to 64 -05:50:20,523 DEBUG kernel:pci 0000:00:17.0: setting latency timer to 64 -05:50:20,523 DEBUG kernel:pci 0000:00:17.1: setting latency timer to 64 -05:50:20,523 DEBUG kernel:pci 0000:00:17.2: setting latency timer to 64 -05:50:20,523 DEBUG kernel:pci 0000:00:17.3: setting latency timer to 64 -05:50:20,523 DEBUG kernel:pci 0000:00:17.4: setting latency timer to 64 -05:50:20,523 DEBUG kernel:pci 0000:00:17.5: setting latency timer to 64 -05:50:20,523 DEBUG kernel:pci 0000:00:17.6: setting latency timer to 64 -05:50:20,523 DEBUG kernel:pci 0000:00:17.7: setting latency timer to 64 -05:50:20,523 DEBUG kernel:pci 0000:00:18.0: setting latency timer to 64 -05:50:20,523 DEBUG kernel:pci 0000:00:18.1: setting latency timer to 64 -05:50:20,523 DEBUG kernel:pci 0000:00:18.2: setting latency timer to 64 -05:50:20,523 DEBUG kernel:pci 0000:00:18.3: setting latency timer to 64 -05:50:20,523 DEBUG kernel:pci 0000:00:18.4: setting latency timer to 64 -05:50:20,523 DEBUG kernel:pci 0000:00:18.5: setting latency timer to 64 -05:50:20,523 DEBUG kernel:pci 0000:00:18.6: setting latency timer to 64 -05:50:20,523 DEBUG kernel:pci 0000:00:18.7: setting latency timer to 64 -05:50:20,523 DEBUG kernel:pci_bus 0000:00: resource 4 [mem 0x000a0000-0x000bffff] -05:50:20,523 DEBUG kernel:pci_bus 0000:00: resource 5 [mem 0x000d0000-0x000d3fff] -05:50:20,523 DEBUG kernel:pci_bus 0000:00: resource 6 [mem 0x000d4000-0x000d7fff] -05:50:20,523 DEBUG kernel:pci_bus 0000:00: resource 7 [mem 0x000d8000-0x000dbfff] -05:50:20,523 DEBUG kernel:pci_bus 0000:00: resource 8 [mem 0x80000000-0xfebfffff] -05:50:20,523 DEBUG kernel:pci_bus 0000:00: resource 9 [io 0x0000-0x0cf7] -05:50:20,523 DEBUG kernel:pci_bus 0000:00: resource 10 [io 0x0d00-0xfeff] -05:50:20,523 DEBUG kernel:pci_bus 0000:02: resource 0 [io 0x2000-0x3fff] -05:50:20,523 DEBUG kernel:pci_bus 0000:02: resource 1 [mem 0xd1000000-0xd23fffff] -05:50:20,523 DEBUG kernel:pci_bus 0000:02: resource 2 [mem 0xdc400000-0xdc9fffff 64bit pref] -05:50:20,523 DEBUG kernel:pci_bus 0000:02: resource 4 [mem 0x000a0000-0x000bffff] -05:50:20,523 DEBUG kernel:pci_bus 0000:02: resource 5 [mem 0x000d0000-0x000d3fff] -05:50:20,523 DEBUG kernel:pci_bus 0000:02: resource 6 [mem 0x000d4000-0x000d7fff] -05:50:20,523 DEBUG kernel:pci_bus 0000:02: resource 7 [mem 0x000d8000-0x000dbfff] -05:50:20,523 DEBUG kernel:pci_bus 0000:02: resource 8 [mem 0x80000000-0xfebfffff] -05:50:20,523 DEBUG kernel:pci_bus 0000:02: resource 9 [io 0x0000-0x0cf7] -05:50:20,523 DEBUG kernel:pci_bus 0000:02: resource 10 [io 0x0d00-0xfeff] -05:50:20,523 DEBUG kernel:pci_bus 0000:03: resource 0 [io 0x4000-0x4fff] -05:50:20,523 DEBUG kernel:pci_bus 0000:03: resource 1 [mem 0xd2400000-0xd24fffff] -05:50:20,523 DEBUG kernel:pci_bus 0000:03: resource 2 [mem 0xd4400000-0xd44fffff 64bit pref] -05:50:20,523 DEBUG kernel:pci_bus 0000:04: resource 0 [io 0x8000-0x8fff] -05:50:20,523 DEBUG kernel:pci_bus 0000:04: resource 1 [mem 0xd2800000-0xd28fffff] -05:50:20,523 DEBUG kernel:pci_bus 0000:04: resource 2 [mem 0xd4800000-0xd48fffff 64bit pref] -05:50:20,523 DEBUG kernel:pci_bus 0000:05: resource 0 [io 0xc000-0xcfff] -05:50:20,523 DEBUG kernel:pci_bus 0000:05: resource 1 [mem 0xd2c00000-0xd2cfffff] -05:50:20,523 DEBUG kernel:pci_bus 0000:05: resource 2 [mem 0xdcb00000-0xdcbfffff 64bit pref] -05:50:20,523 DEBUG kernel:pci_bus 0000:06: resource 1 [mem 0xd3000000-0xd30fffff] -05:50:20,523 DEBUG kernel:pci_bus 0000:06: resource 2 [mem 0xdcd00000-0xdcdfffff 64bit pref] -05:50:20,523 DEBUG kernel:pci_bus 0000:07: resource 1 [mem 0xd3400000-0xd34fffff] -05:50:20,523 DEBUG kernel:pci_bus 0000:07: resource 2 [mem 0xdcf00000-0xdcffffff 64bit pref] -05:50:20,523 DEBUG kernel:pci_bus 0000:08: resource 1 [mem 0xd3800000-0xd38fffff] -05:50:20,523 DEBUG kernel:pci_bus 0000:08: resource 2 [mem 0xdd100000-0xdd1fffff 64bit pref] -05:50:20,523 DEBUG kernel:pci_bus 0000:09: resource 1 [mem 0xd3c00000-0xd3cfffff] -05:50:20,523 DEBUG kernel:pci_bus 0000:09: resource 2 [mem 0xdd300000-0xdd3fffff 64bit pref] -05:50:20,523 DEBUG kernel:pci_bus 0000:0a: resource 1 [mem 0xd4000000-0xd40fffff] -05:50:20,523 DEBUG kernel:pci_bus 0000:0a: resource 2 [mem 0xdd500000-0xdd5fffff 64bit pref] -05:50:20,523 DEBUG kernel:pci_bus 0000:0b: resource 0 [io 0x5000-0x5fff] -05:50:20,523 DEBUG kernel:pci_bus 0000:0b: resource 1 [mem 0xd2500000-0xd25fffff] -05:50:20,523 DEBUG kernel:pci_bus 0000:0b: resource 2 [mem 0xd4500000-0xd45fffff 64bit pref] -05:50:20,523 DEBUG kernel:pci_bus 0000:0c: resource 0 [io 0x9000-0x9fff] -05:50:20,523 DEBUG kernel:pci_bus 0000:0c: resource 1 [mem 0xd2900000-0xd29fffff] -05:50:20,523 DEBUG kernel:pci_bus 0000:0c: resource 2 [mem 0xd4900000-0xd49fffff 64bit pref] -05:50:20,523 DEBUG kernel:pci_bus 0000:0d: resource 0 [io 0xd000-0xdfff] -05:50:20,523 DEBUG kernel:pci_bus 0000:0d: resource 1 [mem 0xd2d00000-0xd2dfffff] -05:50:20,523 DEBUG kernel:pci_bus 0000:0d: resource 2 [mem 0xd4b00000-0xd4bfffff 64bit pref] -05:50:20,523 DEBUG kernel:pci_bus 0000:0e: resource 1 [mem 0xd3100000-0xd31fffff] -05:50:20,523 DEBUG kernel:pci_bus 0000:0e: resource 2 [mem 0xd4d00000-0xd4dfffff 64bit pref] -05:50:20,523 DEBUG kernel:pci_bus 0000:0f: resource 1 [mem 0xd3500000-0xd35fffff] -05:50:20,523 DEBUG kernel:pci_bus 0000:0f: resource 2 [mem 0xd4f00000-0xd4ffffff 64bit pref] -05:50:20,523 DEBUG kernel:pci_bus 0000:10: resource 1 [mem 0xd3900000-0xd39fffff] -05:50:20,523 DEBUG kernel:pci_bus 0000:10: resource 2 [mem 0xd5100000-0xd51fffff 64bit pref] -05:50:20,523 DEBUG kernel:pci_bus 0000:11: resource 1 [mem 0xd3d00000-0xd3dfffff] -05:50:20,523 DEBUG kernel:pci_bus 0000:11: resource 2 [mem 0xd5300000-0xd53fffff 64bit pref] -05:50:20,523 DEBUG kernel:pci_bus 0000:12: resource 1 [mem 0xd4100000-0xd41fffff] -05:50:20,523 DEBUG kernel:pci_bus 0000:12: resource 2 [mem 0xd5500000-0xd55fffff 64bit pref] -05:50:20,523 DEBUG kernel:pci_bus 0000:13: resource 0 [io 0x6000-0x6fff] -05:50:20,523 DEBUG kernel:pci_bus 0000:13: resource 1 [mem 0xd2600000-0xd26fffff] -05:50:20,523 DEBUG kernel:pci_bus 0000:13: resource 2 [mem 0xd4600000-0xd46fffff 64bit pref] -05:50:20,523 DEBUG kernel:pci_bus 0000:14: resource 0 [io 0xa000-0xafff] -05:50:20,523 DEBUG kernel:pci_bus 0000:14: resource 1 [mem 0xd2a00000-0xd2afffff] -05:50:20,523 DEBUG kernel:pci_bus 0000:14: resource 2 [mem 0xdca00000-0xdcafffff 64bit pref] -05:50:20,523 DEBUG kernel:pci_bus 0000:15: resource 0 [io 0xe000-0xefff] -05:50:20,523 DEBUG kernel:pci_bus 0000:15: resource 1 [mem 0xd2e00000-0xd2efffff] -05:50:20,523 DEBUG kernel:pci_bus 0000:15: resource 2 [mem 0xdcc00000-0xdccfffff 64bit pref] -05:50:20,523 DEBUG kernel:pci_bus 0000:16: resource 1 [mem 0xd3200000-0xd32fffff] -05:50:20,523 DEBUG kernel:pci_bus 0000:16: resource 2 [mem 0xdce00000-0xdcefffff 64bit pref] -05:50:20,523 DEBUG kernel:pci_bus 0000:17: resource 1 [mem 0xd3600000-0xd36fffff] -05:50:20,523 DEBUG kernel:pci_bus 0000:17: resource 2 [mem 0xdd000000-0xdd0fffff 64bit pref] -05:50:20,523 DEBUG kernel:pci_bus 0000:18: resource 1 [mem 0xd3a00000-0xd3afffff] -05:50:20,523 DEBUG kernel:pci_bus 0000:18: resource 2 [mem 0xdd200000-0xdd2fffff 64bit pref] -05:50:20,523 DEBUG kernel:pci_bus 0000:19: resource 1 [mem 0xd3e00000-0xd3efffff] -05:50:20,523 DEBUG kernel:pci_bus 0000:19: resource 2 [mem 0xdd400000-0xdd4fffff 64bit pref] -05:50:20,524 DEBUG kernel:pci_bus 0000:1a: resource 1 [mem 0xd4200000-0xd42fffff] -05:50:20,524 DEBUG kernel:pci_bus 0000:1a: resource 2 [mem 0xdd600000-0xdd6fffff 64bit pref] -05:50:20,524 DEBUG kernel:pci_bus 0000:1b: resource 0 [io 0x7000-0x7fff] -05:50:20,524 DEBUG kernel:pci_bus 0000:1b: resource 1 [mem 0xd2700000-0xd27fffff] -05:50:20,524 DEBUG kernel:pci_bus 0000:1b: resource 2 [mem 0xd4700000-0xd47fffff 64bit pref] -05:50:20,524 DEBUG kernel:pci_bus 0000:1c: resource 0 [io 0xb000-0xbfff] -05:50:20,524 DEBUG kernel:pci_bus 0000:1c: resource 1 [mem 0xd2b00000-0xd2bfffff] -05:50:20,524 DEBUG kernel:pci_bus 0000:1c: resource 2 [mem 0xd4a00000-0xd4afffff 64bit pref] -05:50:20,524 DEBUG kernel:pci_bus 0000:1d: resource 1 [mem 0xd2f00000-0xd2ffffff] -05:50:20,524 DEBUG kernel:pci_bus 0000:1d: resource 2 [mem 0xd4c00000-0xd4cfffff 64bit pref] -05:50:20,524 DEBUG kernel:pci_bus 0000:1e: resource 1 [mem 0xd3300000-0xd33fffff] -05:50:20,524 DEBUG kernel:pci_bus 0000:1e: resource 2 [mem 0xd4e00000-0xd4efffff 64bit pref] -05:50:20,524 DEBUG kernel:pci_bus 0000:1f: resource 1 [mem 0xd3700000-0xd37fffff] -05:50:20,524 DEBUG kernel:pci_bus 0000:1f: resource 2 [mem 0xd5000000-0xd50fffff 64bit pref] -05:50:20,524 DEBUG kernel:pci_bus 0000:20: resource 1 [mem 0xd3b00000-0xd3bfffff] -05:50:20,524 DEBUG kernel:pci_bus 0000:20: resource 2 [mem 0xd5200000-0xd52fffff 64bit pref] -05:50:20,524 DEBUG kernel:pci_bus 0000:21: resource 1 [mem 0xd3f00000-0xd3ffffff] -05:50:20,524 DEBUG kernel:pci_bus 0000:21: resource 2 [mem 0xd5400000-0xd54fffff 64bit pref] -05:50:20,524 DEBUG kernel:pci_bus 0000:22: resource 1 [mem 0xd4300000-0xd43fffff] -05:50:20,524 DEBUG kernel:pci_bus 0000:22: resource 2 [mem 0xd5600000-0xd56fffff 64bit pref] -05:50:20,524 INFO kernel:NET: Registered protocol family 2 -05:50:20,524 INFO kernel:IP route cache hash table entries: 65536 (order: 7, 524288 bytes) -05:50:20,524 INFO kernel:TCP established hash table entries: 262144 (order: 10, 4194304 bytes) -05:50:20,524 INFO kernel:TCP bind hash table entries: 65536 (order: 8, 1048576 bytes) -05:50:20,524 INFO kernel:TCP: Hash tables configured (established 262144 bind 65536) -05:50:20,524 INFO kernel:TCP reno registered -05:50:20,524 INFO kernel:NET: Registered protocol family 1 -05:50:20,524 INFO kernel:pci 0000:00:00.0: Limiting direct PCI/PCI transfers -05:50:20,524 DEBUG kernel:pci 0000:00:0f.0: Boot video device -05:50:20,524 INFO kernel:Trying to unpack rootfs image as initramfs... -05:50:20,524 INFO kernel:Freeing initrd memory: 32601k freed -05:50:20,524 INFO kernel:Simple Boot Flag at 0x36 set to 0x80 -05:50:20,524 INFO kernel:audit: initializing netlink socket (disabled) -05:50:20,524 NOTICE kernel:type=2000 audit(1021096218.805:1): initialized -05:50:20,524 INFO kernel:HugeTLB registered 2 MB page size, pre-allocated 0 pages -05:50:20,524 NOTICE kernel:VFS: Disk quotas dquot_6.5.2 -05:50:20,524 WARNING kernel:Dquot-cache hash table entries: 512 (order 0, 4096 bytes) -05:50:20,524 INFO kernel:msgmni has been set to 4005 -05:50:20,526 DEBUG kernel:SELinux: Registering netfilter hooks -05:50:20,526 INFO kernel:alg: No test for stdrng (krng) -05:50:20,526 WARNING kernel:ksign: Installing public key data -05:50:20,526 WARNING kernel:Loading keyring -05:50:20,526 WARNING kernel:- Added public key 8A44323FB303E068 -05:50:20,526 WARNING kernel: - key was been created 363988241 seconds in future -05:50:20,526 WARNING kernel:- User ID: CentOS (Kernel Module GPG key) -05:50:20,526 INFO kernel:Block layer SCSI generic (bsg) driver version 0.4 loaded (major 251) -05:50:20,526 INFO kernel:io scheduler noop registered -05:50:20,526 INFO kernel:io scheduler anticipatory registered -05:50:20,526 INFO kernel:io scheduler deadline registered -05:50:20,526 INFO kernel:io scheduler cfq registered (default) -05:50:20,526 DEBUG kernel:pcieport 0000:00:15.0: setting latency timer to 64 -05:50:20,526 DEBUG kernel: alloc irq_desc for 24 on node -1 -05:50:20,526 DEBUG kernel: alloc kstat_irqs on node -1 -05:50:20,526 DEBUG kernel:pcieport 0000:00:15.0: irq 24 for MSI/MSI-X -05:50:20,526 DEBUG kernel:pcieport 0000:00:15.1: setting latency timer to 64 -05:50:20,526 DEBUG kernel: alloc irq_desc for 25 on node -1 -05:50:20,526 DEBUG kernel: alloc kstat_irqs on node -1 -05:50:20,526 DEBUG kernel:pcieport 0000:00:15.1: irq 25 for MSI/MSI-X -05:50:20,526 DEBUG kernel:pcieport 0000:00:15.2: setting latency timer to 64 -05:50:20,526 DEBUG kernel: alloc irq_desc for 26 on node -1 -05:50:20,526 DEBUG kernel: alloc kstat_irqs on node -1 -05:50:20,526 DEBUG kernel:pcieport 0000:00:15.2: irq 26 for MSI/MSI-X -05:50:20,526 DEBUG kernel:pcieport 0000:00:15.3: setting latency timer to 64 -05:50:20,526 DEBUG kernel: alloc irq_desc for 27 on node -1 -05:50:20,526 DEBUG kernel: alloc kstat_irqs on node -1 -05:50:20,526 DEBUG kernel:pcieport 0000:00:15.3: irq 27 for MSI/MSI-X -05:50:20,526 DEBUG kernel:pcieport 0000:00:15.4: setting latency timer to 64 -05:50:20,526 DEBUG kernel: alloc irq_desc for 28 on node -1 -05:50:20,526 DEBUG kernel: alloc kstat_irqs on node -1 -05:50:20,526 DEBUG kernel:pcieport 0000:00:15.4: irq 28 for MSI/MSI-X -05:50:20,526 DEBUG kernel:pcieport 0000:00:15.5: setting latency timer to 64 -05:50:20,526 DEBUG kernel: alloc irq_desc for 29 on node -1 -05:50:20,526 DEBUG kernel: alloc kstat_irqs on node -1 -05:50:20,526 DEBUG kernel:pcieport 0000:00:15.5: irq 29 for MSI/MSI-X -05:50:20,526 DEBUG kernel:pcieport 0000:00:15.6: setting latency timer to 64 -05:50:20,526 DEBUG kernel: alloc irq_desc for 30 on node -1 -05:50:20,526 DEBUG kernel: alloc kstat_irqs on node -1 -05:50:20,526 DEBUG kernel:pcieport 0000:00:15.6: irq 30 for MSI/MSI-X -05:50:20,526 DEBUG kernel:pcieport 0000:00:15.7: setting latency timer to 64 -05:50:20,526 DEBUG kernel: alloc irq_desc for 31 on node -1 -05:50:20,526 DEBUG kernel: alloc kstat_irqs on node -1 -05:50:20,526 DEBUG kernel:pcieport 0000:00:15.7: irq 31 for MSI/MSI-X -05:50:20,526 DEBUG kernel:pcieport 0000:00:16.0: setting latency timer to 64 -05:50:20,526 DEBUG kernel: alloc irq_desc for 32 on node -1 -05:50:20,526 DEBUG kernel: alloc kstat_irqs on node -1 -05:50:20,526 DEBUG kernel:pcieport 0000:00:16.0: irq 32 for MSI/MSI-X -05:50:20,526 DEBUG kernel:pcieport 0000:00:16.1: setting latency timer to 64 -05:50:20,526 DEBUG kernel: alloc irq_desc for 33 on node -1 -05:50:20,526 DEBUG kernel: alloc kstat_irqs on node -1 -05:50:20,526 DEBUG kernel:pcieport 0000:00:16.1: irq 33 for MSI/MSI-X -05:50:20,526 DEBUG kernel:pcieport 0000:00:16.2: setting latency timer to 64 -05:50:20,526 DEBUG kernel: alloc irq_desc for 34 on node -1 -05:50:20,526 DEBUG kernel: alloc kstat_irqs on node -1 -05:50:20,526 DEBUG kernel:pcieport 0000:00:16.2: irq 34 for MSI/MSI-X -05:50:20,526 DEBUG kernel:pcieport 0000:00:16.3: setting latency timer to 64 -05:50:20,526 DEBUG kernel: alloc irq_desc for 35 on node -1 -05:50:20,526 DEBUG kernel: alloc kstat_irqs on node -1 -05:50:20,526 DEBUG kernel:pcieport 0000:00:16.3: irq 35 for MSI/MSI-X -05:50:20,526 DEBUG kernel:pcieport 0000:00:16.4: setting latency timer to 64 -05:50:20,526 DEBUG kernel: alloc irq_desc for 36 on node -1 -05:50:20,526 DEBUG kernel: alloc kstat_irqs on node -1 -05:50:20,526 DEBUG kernel:pcieport 0000:00:16.4: irq 36 for MSI/MSI-X -05:50:20,526 DEBUG kernel:pcieport 0000:00:16.5: setting latency timer to 64 -05:50:20,526 DEBUG kernel: alloc irq_desc for 37 on node -1 -05:50:20,526 DEBUG kernel: alloc kstat_irqs on node -1 -05:50:20,526 DEBUG kernel:pcieport 0000:00:16.5: irq 37 for MSI/MSI-X -05:50:20,526 DEBUG kernel:pcieport 0000:00:16.6: setting latency timer to 64 -05:50:20,526 DEBUG kernel: alloc irq_desc for 38 on node -1 -05:50:20,526 DEBUG kernel: alloc kstat_irqs on node -1 -05:50:20,526 DEBUG kernel:pcieport 0000:00:16.6: irq 38 for MSI/MSI-X -05:50:20,526 DEBUG kernel:pcieport 0000:00:16.7: setting latency timer to 64 -05:50:20,526 DEBUG kernel: alloc irq_desc for 39 on node -1 -05:50:20,526 DEBUG kernel: alloc kstat_irqs on node -1 -05:50:20,526 DEBUG kernel:pcieport 0000:00:16.7: irq 39 for MSI/MSI-X -05:50:20,526 DEBUG kernel:pcieport 0000:00:17.0: setting latency timer to 64 -05:50:20,526 DEBUG kernel: alloc irq_desc for 40 on node -1 -05:50:20,526 DEBUG kernel: alloc kstat_irqs on node -1 -05:50:20,526 DEBUG kernel:pcieport 0000:00:17.0: irq 40 for MSI/MSI-X -05:50:20,526 DEBUG kernel:pcieport 0000:00:17.1: setting latency timer to 64 -05:50:20,526 DEBUG kernel: alloc irq_desc for 41 on node -1 -05:50:20,526 DEBUG kernel: alloc kstat_irqs on node -1 -05:50:20,526 DEBUG kernel:pcieport 0000:00:17.1: irq 41 for MSI/MSI-X -05:50:20,526 DEBUG kernel:pcieport 0000:00:17.2: setting latency timer to 64 -05:50:20,526 DEBUG kernel: alloc irq_desc for 42 on node -1 -05:50:20,526 DEBUG kernel: alloc kstat_irqs on node -1 -05:50:20,526 DEBUG kernel:pcieport 0000:00:17.2: irq 42 for MSI/MSI-X -05:50:20,526 DEBUG kernel:pcieport 0000:00:17.3: setting latency timer to 64 -05:50:20,526 DEBUG kernel: alloc irq_desc for 43 on node -1 -05:50:20,526 DEBUG kernel: alloc kstat_irqs on node -1 -05:50:20,526 DEBUG kernel:pcieport 0000:00:17.3: irq 43 for MSI/MSI-X -05:50:20,526 DEBUG kernel:pcieport 0000:00:17.4: setting latency timer to 64 -05:50:20,526 DEBUG kernel: alloc irq_desc for 44 on node -1 -05:50:20,526 DEBUG kernel: alloc kstat_irqs on node -1 -05:50:20,526 DEBUG kernel:pcieport 0000:00:17.4: irq 44 for MSI/MSI-X -05:50:20,526 DEBUG kernel:pcieport 0000:00:17.5: setting latency timer to 64 -05:50:20,526 DEBUG kernel: alloc irq_desc for 45 on node -1 -05:50:20,526 DEBUG kernel: alloc kstat_irqs on node -1 -05:50:20,526 DEBUG kernel:pcieport 0000:00:17.5: irq 45 for MSI/MSI-X -05:50:20,526 DEBUG kernel:pcieport 0000:00:17.6: setting latency timer to 64 -05:50:20,526 DEBUG kernel: alloc irq_desc for 46 on node -1 -05:50:20,526 DEBUG kernel: alloc kstat_irqs on node -1 -05:50:20,526 DEBUG kernel:pcieport 0000:00:17.6: irq 46 for MSI/MSI-X -05:50:20,526 DEBUG kernel:pcieport 0000:00:17.7: setting latency timer to 64 -05:50:20,526 DEBUG kernel: alloc irq_desc for 47 on node -1 -05:50:20,526 DEBUG kernel: alloc kstat_irqs on node -1 -05:50:20,526 DEBUG kernel:pcieport 0000:00:17.7: irq 47 for MSI/MSI-X -05:50:20,526 DEBUG kernel:pcieport 0000:00:18.0: setting latency timer to 64 -05:50:20,526 DEBUG kernel: alloc irq_desc for 48 on node -1 -05:50:20,526 DEBUG kernel: alloc kstat_irqs on node -1 -05:50:20,526 DEBUG kernel:pcieport 0000:00:18.0: irq 48 for MSI/MSI-X -05:50:20,526 DEBUG kernel:pcieport 0000:00:18.1: setting latency timer to 64 -05:50:20,526 DEBUG kernel: alloc irq_desc for 49 on node -1 -05:50:20,526 DEBUG kernel: alloc kstat_irqs on node -1 -05:50:20,526 DEBUG kernel:pcieport 0000:00:18.1: irq 49 for MSI/MSI-X -05:50:20,526 DEBUG kernel:pcieport 0000:00:18.2: setting latency timer to 64 -05:50:20,526 DEBUG kernel: alloc irq_desc for 50 on node -1 -05:50:20,526 DEBUG kernel: alloc kstat_irqs on node -1 -05:50:20,526 DEBUG kernel:pcieport 0000:00:18.2: irq 50 for MSI/MSI-X -05:50:20,526 DEBUG kernel:pcieport 0000:00:18.3: setting latency timer to 64 -05:50:20,526 DEBUG kernel: alloc irq_desc for 51 on node -1 -05:50:20,526 DEBUG kernel: alloc kstat_irqs on node -1 -05:50:20,526 DEBUG kernel:pcieport 0000:00:18.3: irq 51 for MSI/MSI-X -05:50:20,526 DEBUG kernel:pcieport 0000:00:18.4: setting latency timer to 64 -05:50:20,526 DEBUG kernel: alloc irq_desc for 52 on node -1 -05:50:20,526 DEBUG kernel: alloc kstat_irqs on node -1 -05:50:20,526 DEBUG kernel:pcieport 0000:00:18.4: irq 52 for MSI/MSI-X -05:50:20,526 DEBUG kernel:pcieport 0000:00:18.5: setting latency timer to 64 -05:50:20,526 DEBUG kernel: alloc irq_desc for 53 on node -1 -05:50:20,526 DEBUG kernel: alloc kstat_irqs on node -1 -05:50:20,526 DEBUG kernel:pcieport 0000:00:18.5: irq 53 for MSI/MSI-X -05:50:20,526 DEBUG kernel:pcieport 0000:00:18.6: setting latency timer to 64 -05:50:20,526 DEBUG kernel: alloc irq_desc for 54 on node -1 -05:50:20,526 DEBUG kernel: alloc kstat_irqs on node -1 -05:50:20,526 DEBUG kernel:pcieport 0000:00:18.6: irq 54 for MSI/MSI-X -05:50:20,526 DEBUG kernel:pcieport 0000:00:18.7: setting latency timer to 64 -05:50:20,526 DEBUG kernel: alloc irq_desc for 55 on node -1 -05:50:20,526 DEBUG kernel: alloc kstat_irqs on node -1 -05:50:20,526 DEBUG kernel:pcieport 0000:00:18.7: irq 55 for MSI/MSI-X -05:50:20,526 INFO kernel:pci_hotplug: PCI Hot Plug PCI Core version: 0.5 -05:50:20,526 INFO kernel:pciehp 0000:00:15.0:pcie04: HPC vendor_id 15ad device_id 7a0 ss_vid 0 ss_did 0 -05:50:20,526 DEBUG kernel:pciehp 0000:00:15.0:pcie04: service driver pciehp loaded -05:50:20,526 INFO kernel:pciehp 0000:00:15.1:pcie04: HPC vendor_id 15ad device_id 7a0 ss_vid 0 ss_did 0 -05:50:20,526 DEBUG kernel:pciehp 0000:00:15.1:pcie04: service driver pciehp loaded -05:50:20,526 INFO kernel:pciehp 0000:00:15.2:pcie04: HPC vendor_id 15ad device_id 7a0 ss_vid 0 ss_did 0 -05:50:20,526 DEBUG kernel:pciehp 0000:00:15.2:pcie04: service driver pciehp loaded -05:50:20,526 INFO kernel:pciehp 0000:00:15.3:pcie04: HPC vendor_id 15ad device_id 7a0 ss_vid 0 ss_did 0 -05:50:20,526 DEBUG kernel:pciehp 0000:00:15.3:pcie04: service driver pciehp loaded -05:50:20,526 INFO kernel:pciehp 0000:00:15.4:pcie04: HPC vendor_id 15ad device_id 7a0 ss_vid 0 ss_did 0 -05:50:20,526 DEBUG kernel:pciehp 0000:00:15.4:pcie04: service driver pciehp loaded -05:50:20,526 INFO kernel:pciehp 0000:00:15.5:pcie04: HPC vendor_id 15ad device_id 7a0 ss_vid 0 ss_did 0 -05:50:20,526 DEBUG kernel:pciehp 0000:00:15.5:pcie04: service driver pciehp loaded -05:50:20,526 INFO kernel:pciehp 0000:00:15.6:pcie04: HPC vendor_id 15ad device_id 7a0 ss_vid 0 ss_did 0 -05:50:20,526 DEBUG kernel:pciehp 0000:00:15.6:pcie04: service driver pciehp loaded -05:50:20,526 INFO kernel:pciehp 0000:00:15.7:pcie04: HPC vendor_id 15ad device_id 7a0 ss_vid 0 ss_did 0 -05:50:20,526 DEBUG kernel:pciehp 0000:00:15.7:pcie04: service driver pciehp loaded -05:50:20,526 INFO kernel:pciehp 0000:00:16.0:pcie04: HPC vendor_id 15ad device_id 7a0 ss_vid 0 ss_did 0 -05:50:20,526 DEBUG kernel:pciehp 0000:00:16.0:pcie04: service driver pciehp loaded -05:50:20,526 INFO kernel:pciehp 0000:00:16.1:pcie04: HPC vendor_id 15ad device_id 7a0 ss_vid 0 ss_did 0 -05:50:20,526 DEBUG kernel:pciehp 0000:00:16.1:pcie04: service driver pciehp loaded -05:50:20,526 INFO kernel:pciehp 0000:00:16.2:pcie04: HPC vendor_id 15ad device_id 7a0 ss_vid 0 ss_did 0 -05:50:20,526 DEBUG kernel:pciehp 0000:00:16.2:pcie04: service driver pciehp loaded -05:50:20,526 INFO kernel:pciehp 0000:00:16.3:pcie04: HPC vendor_id 15ad device_id 7a0 ss_vid 0 ss_did 0 -05:50:20,526 DEBUG kernel:pciehp 0000:00:16.3:pcie04: service driver pciehp loaded -05:50:20,526 INFO kernel:pciehp 0000:00:16.4:pcie04: HPC vendor_id 15ad device_id 7a0 ss_vid 0 ss_did 0 -05:50:20,526 DEBUG kernel:pciehp 0000:00:16.4:pcie04: service driver pciehp loaded -05:50:20,526 INFO kernel:pciehp 0000:00:16.5:pcie04: HPC vendor_id 15ad device_id 7a0 ss_vid 0 ss_did 0 -05:50:20,526 DEBUG kernel:pciehp 0000:00:16.5:pcie04: service driver pciehp loaded -05:50:20,526 INFO kernel:pciehp 0000:00:16.6:pcie04: HPC vendor_id 15ad device_id 7a0 ss_vid 0 ss_did 0 -05:50:20,526 DEBUG kernel:pciehp 0000:00:16.6:pcie04: service driver pciehp loaded -05:50:20,526 INFO kernel:pciehp 0000:00:16.7:pcie04: HPC vendor_id 15ad device_id 7a0 ss_vid 0 ss_did 0 -05:50:20,526 DEBUG kernel:pciehp 0000:00:16.7:pcie04: service driver pciehp loaded -05:50:20,526 INFO kernel:pciehp 0000:00:17.0:pcie04: HPC vendor_id 15ad device_id 7a0 ss_vid 0 ss_did 0 -05:50:20,526 DEBUG kernel:pciehp 0000:00:17.0:pcie04: service driver pciehp loaded -05:50:20,526 INFO kernel:pciehp 0000:00:17.1:pcie04: HPC vendor_id 15ad device_id 7a0 ss_vid 0 ss_did 0 -05:50:20,526 DEBUG kernel:pciehp 0000:00:17.1:pcie04: service driver pciehp loaded -05:50:20,526 INFO kernel:pciehp 0000:00:17.2:pcie04: HPC vendor_id 15ad device_id 7a0 ss_vid 0 ss_did 0 -05:50:20,526 DEBUG kernel:pciehp 0000:00:17.2:pcie04: service driver pciehp loaded -05:50:20,526 INFO kernel:pciehp 0000:00:17.3:pcie04: HPC vendor_id 15ad device_id 7a0 ss_vid 0 ss_did 0 -05:50:20,526 DEBUG kernel:pciehp 0000:00:17.3:pcie04: service driver pciehp loaded -05:50:20,526 INFO kernel:pciehp 0000:00:17.4:pcie04: HPC vendor_id 15ad device_id 7a0 ss_vid 0 ss_did 0 -05:50:20,526 DEBUG kernel:pciehp 0000:00:17.4:pcie04: service driver pciehp loaded -05:50:20,526 INFO kernel:pciehp 0000:00:17.5:pcie04: HPC vendor_id 15ad device_id 7a0 ss_vid 0 ss_did 0 -05:50:20,526 DEBUG kernel:pciehp 0000:00:17.5:pcie04: service driver pciehp loaded -05:50:20,526 INFO kernel:pciehp 0000:00:17.6:pcie04: HPC vendor_id 15ad device_id 7a0 ss_vid 0 ss_did 0 -05:50:20,526 DEBUG kernel:pciehp 0000:00:17.6:pcie04: service driver pciehp loaded -05:50:20,526 INFO kernel:pciehp 0000:00:17.7:pcie04: HPC vendor_id 15ad device_id 7a0 ss_vid 0 ss_did 0 -05:50:20,526 DEBUG kernel:pciehp 0000:00:17.7:pcie04: service driver pciehp loaded -05:50:20,526 INFO kernel:pciehp 0000:00:18.0:pcie04: HPC vendor_id 15ad device_id 7a0 ss_vid 0 ss_did 0 -05:50:20,526 DEBUG kernel:pciehp 0000:00:18.0:pcie04: service driver pciehp loaded -05:50:20,526 INFO kernel:pciehp 0000:00:18.1:pcie04: HPC vendor_id 15ad device_id 7a0 ss_vid 0 ss_did 0 -05:50:20,526 DEBUG kernel:pciehp 0000:00:18.1:pcie04: service driver pciehp loaded -05:50:20,526 INFO kernel:pciehp 0000:00:18.2:pcie04: HPC vendor_id 15ad device_id 7a0 ss_vid 0 ss_did 0 -05:50:20,526 DEBUG kernel:pciehp 0000:00:18.2:pcie04: service driver pciehp loaded -05:50:20,526 INFO kernel:pciehp 0000:00:18.3:pcie04: HPC vendor_id 15ad device_id 7a0 ss_vid 0 ss_did 0 -05:50:20,526 DEBUG kernel:pciehp 0000:00:18.3:pcie04: service driver pciehp loaded -05:50:20,526 INFO kernel:pciehp 0000:00:18.4:pcie04: HPC vendor_id 15ad device_id 7a0 ss_vid 0 ss_did 0 -05:50:20,526 DEBUG kernel:pciehp 0000:00:18.4:pcie04: service driver pciehp loaded -05:50:20,526 INFO kernel:pciehp 0000:00:18.5:pcie04: HPC vendor_id 15ad device_id 7a0 ss_vid 0 ss_did 0 -05:50:20,526 DEBUG kernel:pciehp 0000:00:18.5:pcie04: service driver pciehp loaded -05:50:20,526 INFO kernel:pciehp 0000:00:18.6:pcie04: HPC vendor_id 15ad device_id 7a0 ss_vid 0 ss_did 0 -05:50:20,526 DEBUG kernel:pciehp 0000:00:18.6:pcie04: service driver pciehp loaded -05:50:20,526 INFO kernel:pciehp 0000:00:18.7:pcie04: HPC vendor_id 15ad device_id 7a0 ss_vid 0 ss_did 0 -05:50:20,526 DEBUG kernel:pciehp 0000:00:18.7:pcie04: service driver pciehp loaded -05:50:20,526 INFO kernel:pciehp: PCI Express Hot Plug Controller Driver version: 0.4 -05:50:20,526 INFO kernel:acpiphp: ACPI Hot Plug PCI Controller Driver version: 0.5 -05:50:20,526 INFO kernel:acpiphp: Slot [32] registered -05:50:20,526 INFO kernel:acpiphp: Slot [33] registered -05:50:20,526 INFO kernel:acpiphp: Slot [34] registered -05:50:20,526 INFO kernel:acpiphp: Slot [35] registered -05:50:20,526 INFO kernel:acpiphp: Slot [36] registered -05:50:20,526 INFO kernel:acpiphp: Slot [37] registered -05:50:20,526 INFO kernel:acpiphp: Slot [38] registered -05:50:20,527 INFO kernel:acpiphp: Slot [39] registered -05:50:20,527 INFO kernel:acpiphp: Slot [40] registered -05:50:20,527 INFO kernel:acpiphp: Slot [41] registered -05:50:20,527 INFO kernel:acpiphp: Slot [42] registered -05:50:20,527 INFO kernel:acpiphp: Slot [43] registered -05:50:20,527 INFO kernel:acpiphp: Slot [44] registered -05:50:20,527 INFO kernel:acpiphp: Slot [45] registered -05:50:20,527 INFO kernel:acpiphp: Slot [46] registered -05:50:20,527 INFO kernel:acpiphp: Slot [47] registered -05:50:20,527 INFO kernel:acpiphp: Slot [48] registered -05:50:20,527 INFO kernel:acpiphp: Slot [49] registered -05:50:20,527 INFO kernel:acpiphp: Slot [50] registered -05:50:20,527 INFO kernel:acpiphp: Slot [51] registered -05:50:20,527 INFO kernel:acpiphp: Slot [52] registered -05:50:20,527 INFO kernel:acpiphp: Slot [53] registered -05:50:20,527 INFO kernel:acpiphp: Slot [54] registered -05:50:20,527 INFO kernel:acpiphp: Slot [55] registered -05:50:20,527 INFO kernel:acpiphp: Slot [56] registered -05:50:20,527 INFO kernel:acpiphp: Slot [57] registered -05:50:20,527 INFO kernel:acpiphp: Slot [58] registered -05:50:20,527 INFO kernel:acpiphp: Slot [59] registered -05:50:20,527 INFO kernel:acpiphp: Slot [60] registered -05:50:20,527 INFO kernel:acpiphp: Slot [61] registered -05:50:20,527 INFO kernel:acpiphp: Slot [62] registered -05:50:20,527 INFO kernel:acpiphp: Slot [63] registered -05:50:20,527 WARNING kernel:acpiphp_glue: Slot 160 already registered by another hotplug driver -05:50:20,527 WARNING kernel:acpiphp_glue: Slot 192 already registered by another hotplug driver -05:50:20,527 WARNING kernel:acpiphp_glue: Slot 224 already registered by another hotplug driver -05:50:20,527 WARNING kernel:acpiphp_glue: Slot 256 already registered by another hotplug driver -05:50:20,527 WARNING kernel:acpiphp_glue: Slot 161 already registered by another hotplug driver -05:50:20,527 WARNING kernel:acpiphp_glue: Slot 162 already registered by another hotplug driver -05:50:20,527 WARNING kernel:acpiphp_glue: Slot 163 already registered by another hotplug driver -05:50:20,527 WARNING kernel:acpiphp_glue: Slot 164 already registered by another hotplug driver -05:50:20,527 WARNING kernel:acpiphp_glue: Slot 165 already registered by another hotplug driver -05:50:20,527 WARNING kernel:acpiphp_glue: Slot 166 already registered by another hotplug driver -05:50:20,527 WARNING kernel:acpiphp_glue: Slot 167 already registered by another hotplug driver -05:50:20,527 WARNING kernel:acpiphp_glue: Slot 193 already registered by another hotplug driver -05:50:20,527 WARNING kernel:acpiphp_glue: Slot 194 already registered by another hotplug driver -05:50:20,527 WARNING kernel:acpiphp_glue: Slot 195 already registered by another hotplug driver -05:50:20,527 WARNING kernel:acpiphp_glue: Slot 196 already registered by another hotplug driver -05:50:20,527 WARNING kernel:acpiphp_glue: Slot 197 already registered by another hotplug driver -05:50:20,527 WARNING kernel:acpiphp_glue: Slot 198 already registered by another hotplug driver -05:50:20,527 WARNING kernel:acpiphp_glue: Slot 199 already registered by another hotplug driver -05:50:20,527 WARNING kernel:acpiphp_glue: Slot 225 already registered by another hotplug driver -05:50:20,527 WARNING kernel:acpiphp_glue: Slot 226 already registered by another hotplug driver -05:50:20,527 WARNING kernel:acpiphp_glue: Slot 227 already registered by another hotplug driver -05:50:20,527 WARNING kernel:acpiphp_glue: Slot 228 already registered by another hotplug driver -05:50:20,527 WARNING kernel:acpiphp_glue: Slot 229 already registered by another hotplug driver -05:50:20,527 WARNING kernel:acpiphp_glue: Slot 230 already registered by another hotplug driver -05:50:20,527 WARNING kernel:acpiphp_glue: Slot 231 already registered by another hotplug driver -05:50:20,527 WARNING kernel:acpiphp_glue: Slot 257 already registered by another hotplug driver -05:50:20,527 WARNING kernel:acpiphp_glue: Slot 258 already registered by another hotplug driver -05:50:20,527 WARNING kernel:acpiphp_glue: Slot 259 already registered by another hotplug driver -05:50:20,527 WARNING kernel:acpiphp_glue: Slot 260 already registered by another hotplug driver -05:50:20,527 WARNING kernel:acpiphp_glue: Slot 261 already registered by another hotplug driver -05:50:20,527 WARNING kernel:acpiphp_glue: Slot 262 already registered by another hotplug driver -05:50:20,527 WARNING kernel:acpiphp_glue: Slot 263 already registered by another hotplug driver -05:50:20,527 INFO kernel:ipmi message handler version 39.2 -05:50:20,527 INFO kernel:IPMI System Interface driver. -05:50:20,527 INFO kernel:ipmi_si: Adding default-specified kcs state machine -05:50:20,527 INFO kernel:ipmi_si: Trying default-specified kcs state machine at i/o address 0xca2, slave address 0x0, irq 0 -05:50:20,527 INFO kernel:ipmi_si: Interface detection failed -05:50:20,527 INFO kernel:ipmi_si: Adding default-specified smic state machine -05:50:20,527 INFO kernel:ipmi_si: Trying default-specified smic state machine at i/o address 0xca9, slave address 0x0, irq 0 -05:50:20,527 INFO kernel:ipmi_si: Interface detection failed -05:50:20,527 INFO kernel:ipmi_si: Adding default-specified bt state machine -05:50:20,527 INFO kernel:ipmi_si: Trying default-specified bt state machine at i/o address 0xe4, slave address 0x0, irq 0 -05:50:20,527 INFO kernel:ipmi_si: Interface detection failed -05:50:20,527 WARNING kernel:ipmi_si: Unable to find any System Interface(s) -05:50:20,527 INFO kernel:ACPI: AC Adapter [ACAD] (on-line) -05:50:20,527 INFO kernel:input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input0 -05:50:20,527 INFO kernel:ACPI: Power Button [PWRF] -05:50:20,527 DEBUG kernel:ACPI: acpi_idle registered with cpuidle -05:50:20,527 WARNING kernel:ACPI Exception: AE_NOT_FOUND, No or invalid critical threshold (20090903/thermal-386) -05:50:20,527 INFO kernel:GHES: HEST is not enabled! -05:50:20,527 INFO kernel:Non-volatile memory driver v1.3 -05:50:20,527 INFO kernel:Linux agpgart interface v0.103 -05:50:20,527 INFO kernel:agpgart-intel 0000:00:00.0: Intel 440BX Chipset -05:50:20,527 INFO kernel:agpgart-intel 0000:00:00.0: AGP aperture is 256M @ 0x0 -05:50:20,527 INFO kernel:crash memory driver: version 1.1 -05:50:20,527 INFO kernel:Serial: 8250/16550 driver, 4 ports, IRQ sharing enabled -05:50:20,527 INFO kernel:serial8250: ttyS0 at I/O 0x3f8 (irq = 4) is a 16550A -05:50:20,527 INFO kernel:serial8250: ttyS1 at I/O 0x2f8 (irq = 3) is a 16550A -05:50:20,527 INFO kernel:00:0a: ttyS0 at I/O 0x3f8 (irq = 4) is a 16550A -05:50:20,527 INFO kernel:00:0b: ttyS1 at I/O 0x2f8 (irq = 3) is a 16550A -05:50:20,527 INFO kernel:brd: module loaded -05:50:20,527 INFO kernel:loop: module loaded -05:50:20,527 INFO kernel:input: Macintosh mouse button emulation as /devices/virtual/input/input1 -05:50:20,527 INFO kernel:Fixed MDIO Bus: probed -05:50:20,527 INFO kernel:ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver -05:50:20,527 INFO kernel:ohci_hcd: USB 1.1 'Open' Host Controller (OHCI) Driver -05:50:20,527 INFO kernel:uhci_hcd: USB Universal Host Controller Interface driver -05:50:20,527 INFO kernel:PNP: PS/2 Controller [PNP0303:KBC,PNP0f13:MOUS] at 0x60,0x64 irq 1,12 -05:50:20,527 INFO kernel:Refined TSC clocksource calibration: 2400.081 MHz. -05:50:20,527 INFO kernel:Switching to clocksource tsc -05:50:20,527 INFO kernel:serio: i8042 KBD port at 0x60,0x64 irq 1 -05:50:20,527 INFO kernel:serio: i8042 AUX port at 0x60,0x64 irq 12 -05:50:20,527 INFO kernel:mice: PS/2 mouse device common for all mice -05:50:20,527 INFO kernel:rtc_cmos 00:04: rtc core: registered rtc_cmos as rtc0 -05:50:20,527 INFO kernel:rtc0: alarms up to one month, y3k, 114 bytes nvram, hpet irqs -05:50:20,527 INFO kernel:cpuidle: using governor ladder -05:50:20,527 INFO kernel:cpuidle: using governor menu -05:50:20,527 INFO kernel:EFI Variables Facility v0.08 2004-May-17 -05:50:20,527 INFO kernel:usbcore: registered new interface driver hiddev -05:50:20,527 INFO kernel:usbcore: registered new interface driver usbhid -05:50:20,527 INFO kernel:usbhid: v2.6:USB HID core driver -05:50:20,527 INFO kernel:GRE over IPv4 demultiplexor driver -05:50:20,527 INFO kernel:input: AT Translated Set 2 keyboard as /devices/platform/i8042/serio0/input/input2 -05:50:20,527 INFO kernel:TCP cubic registered -05:50:20,527 INFO kernel:Initializing XFRM netlink socket -05:50:20,527 INFO kernel:NET: Registered protocol family 17 -05:50:20,527 WARNING kernel:registered taskstats version 1 -05:50:20,527 INFO kernel:input: ImPS/2 Generic Wheel Mouse as /devices/platform/i8042/serio1/input/input3 -05:50:20,527 INFO kernel:rtc_cmos 00:04: setting system clock to 2002-05-11 05:50:20 UTC (1021096220) -05:50:20,527 INFO kernel:Initalizing network drop monitor service -05:50:20,527 INFO kernel:Freeing unused kernel memory: 1276k freed -05:50:20,527 INFO kernel:Write protecting the kernel read-only data: 10240k -05:50:20,527 INFO kernel:Freeing unused kernel memory: 800k freed -05:50:20,527 INFO kernel:Freeing unused kernel memory: 1588k freed -05:50:22,553 INFO kernel:squashfs: version 4.0 (2009/01/31) Phillip Lougher -05:50:22,564 INFO kernel:Loading iSCSI transport class v2.0-870. -05:50:22,583 NOTICE kernel:iscsi: registered transport (tcp) -05:50:22,589 INFO kernel:Floppy drive(s): fd0 is 1.44M -05:50:22,600 INFO kernel:FDC 0 is a post-1991 82077 -05:50:22,604 INFO kernel:BIOS EDD facility v0.16 2004-Jun-25, 2 devices found -05:50:22,608 INFO kernel:input: PC Speaker as /devices/platform/pcspkr/input/input4 -05:50:22,615 INFO kernel:No iBFT detected. -05:50:22,648 INFO kernel:NET: Registered protocol family 10 -05:50:22,648 INFO kernel:lo: Disabled Privacy Extensions -05:50:22,720 DEBUG kernel:ata_piix 0000:00:07.1: version 2.13 -05:50:22,720 INFO kernel:scsi0 : ata_piix -05:50:22,721 INFO kernel:scsi1 : ata_piix -05:50:22,721 INFO kernel:ata1: PATA max UDMA/33 cmd 0x1f0 ctl 0x3f6 bmdma 0x10c0 irq 14 -05:50:22,721 INFO kernel:ata2: PATA max UDMA/33 cmd 0x170 ctl 0x376 bmdma 0x10c8 irq 15 -05:50:22,731 ERR udevd-work: device node '/dev/rtc' already exists, link to '/dev/rtc0' will not overwrite it -05:50:22,907 INFO kernel:ata2.00: ATAPI: VMware Virtual IDE CDROM Drive, 00000001, max UDMA/33 -05:50:22,913 INFO kernel:ata2.00: configured for UDMA/33 -05:50:22,913 NOTICE kernel:scsi 1:0:0:0: CD-ROM NECVMWar VMware IDE CDR10 1.00 PQ: 0 ANSI: 5 -05:50:22,936 INFO kernel:Fusion MPT base driver 3.04.20 -05:50:22,936 INFO kernel:Copyright (c) 1999-2008 LSI Corporation -05:50:22,947 INFO kernel:Fusion MPT SPI Host driver 3.04.20 -05:50:22,947 DEBUG kernel: alloc irq_desc for 17 on node -1 -05:50:22,947 DEBUG kernel: alloc kstat_irqs on node -1 -05:50:22,947 INFO kernel:mptspi 0000:00:10.0: PCI INT A -> GSI 17 (level, low) -> IRQ 17 -05:50:22,947 INFO kernel:mptbase: ioc0: Initiating bringup -05:50:22,966 INFO kernel:ioc0: LSI53C1030 B0: Capabilities={Initiator} -05:50:23,007 INFO kernel:scsi2 : ioc0: LSI53C1030 B0, FwRev=01032920h, Ports=1, MaxQ=128, IRQ=17 -05:50:23,035 NOTICE kernel:scsi 2:0:0:0: Direct-Access VMware Virtual disk 1.0 PQ: 0 ANSI: 2 -05:50:23,035 INFO kernel:scsi target2:0:0: Beginning Domain Validation -05:50:23,035 INFO kernel:scsi target2:0:0: Domain Validation skipping write tests -05:50:23,035 INFO kernel:scsi target2:0:0: Ending Domain Validation -05:50:23,035 INFO kernel:scsi target2:0:0: FAST-40 WIDE SCSI 80.0 MB/s ST (25 ns, offset 127) -05:50:23,036 NOTICE kernel:scsi 2:0:1:0: Direct-Access VMware Virtual disk 1.0 PQ: 0 ANSI: 2 -05:50:23,036 INFO kernel:scsi target2:0:1: Beginning Domain Validation -05:50:23,037 INFO kernel:scsi target2:0:1: Domain Validation skipping write tests -05:50:23,037 INFO kernel:scsi target2:0:1: Ending Domain Validation -05:50:23,037 INFO kernel:scsi target2:0:1: FAST-40 WIDE SCSI 80.0 MB/s ST (25 ns, offset 127) -05:50:23,061 WARNING kernel:sr0: scsi3-mmc drive: 1x/1x writer dvd-ram cd/rw xa/form2 cdda tray -05:50:23,061 INFO kernel:Uniform CD-ROM driver Revision: 3.20 -05:50:23,061 DEBUG kernel:sr 1:0:0:0: Attached scsi CD-ROM sr0 -05:50:23,072 INFO kernel:e1000: Intel(R) PRO/1000 Network Driver - version 7.3.21-k8-NAPI -05:50:23,072 INFO kernel:e1000: Copyright (c) 1999-2006 Intel Corporation. -05:50:23,072 DEBUG kernel: alloc irq_desc for 18 on node -1 -05:50:23,072 DEBUG kernel: alloc kstat_irqs on node -1 -05:50:23,072 INFO kernel:e1000 0000:02:00.0: PCI INT A -> GSI 18 (level, low) -> IRQ 18 -05:50:23,072 DEBUG kernel:e1000 0000:02:00.0: setting latency timer to 64 -05:50:23,422 INFO kernel:e1000 0000:02:00.0: eth0: (PCI:66MHz:32-bit) 00:0c:29:5c:6a:b8 -05:50:23,422 INFO kernel:e1000 0000:02:00.0: eth0: Intel(R) PRO/1000 Network Connection -05:50:23,422 DEBUG kernel: alloc irq_desc for 19 on node -1 -05:50:23,422 DEBUG kernel: alloc kstat_irqs on node -1 -05:50:23,422 INFO kernel:e1000 0000:02:01.0: PCI INT A -> GSI 19 (level, low) -> IRQ 19 -05:50:23,422 DEBUG kernel:e1000 0000:02:01.0: setting latency timer to 64 -05:50:23,766 INFO kernel:e1000 0000:02:01.0: eth1: (PCI:66MHz:32-bit) 00:0c:29:5c:6a:c2 -05:50:23,766 INFO kernel:e1000 0000:02:01.0: eth1: Intel(R) PRO/1000 Network Connection -05:50:23,766 DEBUG kernel: alloc irq_desc for 16 on node -1 -05:50:23,766 DEBUG kernel: alloc kstat_irqs on node -1 -05:50:23,766 INFO kernel:e1000 0000:02:02.0: PCI INT A -> GSI 16 (level, low) -> IRQ 16 -05:50:23,766 DEBUG kernel:e1000 0000:02:02.0: setting latency timer to 64 -05:50:24,116 INFO kernel:e1000 0000:02:02.0: eth2: (PCI:66MHz:32-bit) 00:0c:29:5c:6a:cc -05:50:24,116 INFO kernel:e1000 0000:02:02.0: eth2: Intel(R) PRO/1000 Network Connection -05:50:24,116 INFO kernel:e1000 0000:02:03.0: PCI INT A -> GSI 17 (level, low) -> IRQ 17 -05:50:24,116 DEBUG kernel:e1000 0000:02:03.0: setting latency timer to 64 -05:50:24,461 INFO kernel:e1000 0000:02:03.0: eth3: (PCI:66MHz:32-bit) 00:0c:29:5c:6a:d6 -05:50:24,461 INFO kernel:e1000 0000:02:03.0: eth3: Intel(R) PRO/1000 Network Connection -05:50:24,497 NOTICE kernel:sd 2:0:0:0: [sda] 33554432 512-byte logical blocks: (17.1 GB/16.0 GiB) -05:50:24,497 NOTICE kernel:sd 2:0:0:0: [sda] Write Protect is off -05:50:24,497 DEBUG kernel:sd 2:0:0:0: [sda] Mode Sense: 61 00 00 00 -05:50:24,497 NOTICE kernel:sd 2:0:0:0: [sda] Cache data unavailable -05:50:24,497 ERR kernel:sd 2:0:0:0: [sda] Assuming drive cache: write through -05:50:24,497 NOTICE kernel:sd 2:0:0:0: [sda] Cache data unavailable -05:50:24,497 ERR kernel:sd 2:0:0:0: [sda] Assuming drive cache: write through -05:50:24,497 INFO kernel: sda: -05:50:24,497 NOTICE kernel:sd 2:0:1:0: [sdb] 33554432 512-byte logical blocks: (17.1 GB/16.0 GiB) -05:50:24,497 NOTICE kernel:sd 2:0:1:0: [sdb] Write Protect is off -05:50:24,497 DEBUG kernel:sd 2:0:1:0: [sdb] Mode Sense: 61 00 00 00 -05:50:24,497 NOTICE kernel:sd 2:0:1:0: [sdb] Cache data unavailable -05:50:24,497 ERR kernel:sd 2:0:1:0: [sdb] Assuming drive cache: write through -05:50:24,497 NOTICE kernel:sd 2:0:1:0: [sdb] Cache data unavailable -05:50:24,497 ERR kernel:sd 2:0:1:0: [sdb] Assuming drive cache: write through -05:50:24,502 INFO kernel: sdb: -05:50:24,502 NOTICE kernel:sd 2:0:1:0: [sdb] Cache data unavailable -05:50:24,502 ERR kernel:sd 2:0:1:0: [sdb] Assuming drive cache: write through -05:50:24,502 NOTICE kernel:sd 2:0:1:0: [sdb] Attached SCSI disk -05:50:24,505 WARNING kernel: sda1 sda2 -05:50:24,531 NOTICE kernel:sd 2:0:0:0: [sda] Cache data unavailable -05:50:24,531 ERR kernel:sd 2:0:0:0: [sda] Assuming drive cache: write through -05:50:24,531 NOTICE kernel:sd 2:0:0:0: [sda] Attached SCSI disk -05:50:24,537 NOTICE kernel:sr 1:0:0:0: Attached scsi generic sg0 type 5 -05:50:24,538 NOTICE kernel:sd 2:0:0:0: Attached scsi generic sg1 type 0 -05:50:24,538 NOTICE kernel:sd 2:0:1:0: Attached scsi generic sg2 type 0 -05:50:28,728 ERR udevd-work: device node '/dev/rtc' already exists, link to '/dev/rtc0' will not overwrite it -05:50:31,010 INFO NetworkManager: NetworkManager (version 0.8.1-66.el6) is starting... -05:50:31,010 INFO NetworkManager: Read config file /etc/NetworkManager/NetworkManager.conf -05:50:31,012 INFO NetworkManager: trying to start the modem manager... -05:50:31,016 INFO NetworkManager: monitoring kernel firmware directory '/lib/firmware'. -05:50:31,016 INFO NetworkManager: Bonding/Bridging/VLAN support enabled -05:50:31,017 NOTICE NetworkManager: ifcfg-rh: Acquired D-Bus service com.redhat.ifcfgrh1 -05:50:31,018 INFO NetworkManager: Loaded plugin ifcfg-rh: (c) 2007 - 2008 Red Hat, Inc. To report bugs please use the NetworkManager mailing list. -05:50:31,018 INFO NetworkManager: Loaded plugin keyfile: (c) 2007 - 2008 Red Hat, Inc. To report bugs please use the NetworkManager mailing list. -05:50:31,018 NOTICE NetworkManager: ifcfg-rh: parsing /etc/sysconfig/network-scripts/ifcfg-eth3 ... -05:50:31,020 NOTICE NetworkManager: ifcfg-rh: read connection 'System eth3' -05:50:31,020 NOTICE NetworkManager: ifcfg-rh: parsing /etc/sysconfig/network-scripts/ifcfg-eth2 ... -05:50:31,021 NOTICE NetworkManager: ifcfg-rh: read connection 'System eth2' -05:50:31,021 NOTICE NetworkManager: ifcfg-rh: parsing /etc/sysconfig/network-scripts/ifcfg-eth1 ... -05:50:31,022 NOTICE NetworkManager: ifcfg-rh: read connection 'System eth1' -05:50:31,022 NOTICE NetworkManager: ifcfg-rh: parsing /etc/sysconfig/network-scripts/ifcfg-eth0 ... -05:50:31,022 NOTICE NetworkManager: ifcfg-rh: read connection 'System eth0' -05:50:31,023 WARNING NetworkManager: Can not read directory '/etc/NetworkManager/system-connections': Error opening directory '/etc/NetworkManager/system-connections': No such file or directory -05:50:31,025 INFO NetworkManager: WiFi enabled by radio killswitch; enabled by state file -05:50:31,025 INFO NetworkManager: WWAN enabled by radio killswitch; enabled by state file -05:50:31,025 INFO NetworkManager: WiMAX enabled by radio killswitch; enabled by state file -05:50:31,025 INFO NetworkManager: Networking is enabled by state file -05:50:31,044 INFO kernel:802.1Q VLAN Support v1.8 Ben Greear -05:50:31,044 INFO kernel:All bugs added by David S. Miller -05:50:31,045 INFO NetworkManager: (eth0): carrier is OFF -05:50:31,045 INFO NetworkManager: (eth0): new Ethernet device (driver: 'e1000' ifindex: 2) -05:50:31,045 INFO NetworkManager: (eth0): exported as /org/freedesktop/NetworkManager/Devices/0 -05:50:31,045 INFO NetworkManager: (eth0): now managed -05:50:31,045 INFO NetworkManager: (eth0): device state change: 1 -> 2 (reason 2) -05:50:31,045 INFO NetworkManager: (eth0): bringing up device. -05:50:31,051 INFO kernel:e1000: eth0 NIC Link is Up 1000 Mbps Full Duplex, Flow Control: None -05:50:31,055 INFO kernel:8021q: adding VLAN 0 to HW filter on device eth0 -05:50:31,056 INFO NetworkManager: (eth0): carrier now ON (device state 2) -05:50:31,056 INFO NetworkManager: (eth0): preparing device. -05:50:31,056 INFO NetworkManager: (eth0): deactivating device (reason: 2). -05:50:31,057 INFO NetworkManager: (eth1): carrier is OFF -05:50:31,058 INFO NetworkManager: (eth1): new Ethernet device (driver: 'e1000' ifindex: 3) -05:50:31,058 INFO NetworkManager: (eth1): exported as /org/freedesktop/NetworkManager/Devices/1 -05:50:31,058 INFO NetworkManager: (eth1): now managed -05:50:31,058 INFO NetworkManager: (eth1): device state change: 1 -> 2 (reason 2) -05:50:31,058 INFO NetworkManager: (eth1): bringing up device. -05:50:31,063 INFO kernel:e1000: eth1 NIC Link is Up 1000 Mbps Full Duplex, Flow Control: None -05:50:31,068 INFO kernel:8021q: adding VLAN 0 to HW filter on device eth1 -05:50:31,068 INFO NetworkManager: (eth1): carrier now ON (device state 2) -05:50:31,068 INFO NetworkManager: (eth1): preparing device. -05:50:31,068 INFO NetworkManager: (eth1): deactivating device (reason: 2). -05:50:31,069 INFO NetworkManager: (eth2): carrier is OFF -05:50:31,070 INFO NetworkManager: (eth2): new Ethernet device (driver: 'e1000' ifindex: 4) -05:50:31,070 INFO NetworkManager: (eth2): exported as /org/freedesktop/NetworkManager/Devices/2 -05:50:31,070 INFO NetworkManager: (eth2): now managed -05:50:31,070 INFO NetworkManager: (eth2): device state change: 1 -> 2 (reason 2) -05:50:31,070 INFO NetworkManager: (eth2): bringing up device. -05:50:31,076 INFO kernel:e1000: eth2 NIC Link is Up 1000 Mbps Full Duplex, Flow Control: None -05:50:31,080 INFO kernel:8021q: adding VLAN 0 to HW filter on device eth2 -05:50:31,080 INFO NetworkManager: (eth2): carrier now ON (device state 2) -05:50:31,080 INFO NetworkManager: (eth2): preparing device. -05:50:31,080 INFO NetworkManager: (eth2): deactivating device (reason: 2). -05:50:31,081 INFO NetworkManager: (eth3): carrier is OFF -05:50:31,082 INFO NetworkManager: (eth3): new Ethernet device (driver: 'e1000' ifindex: 5) -05:50:31,082 INFO NetworkManager: (eth3): exported as /org/freedesktop/NetworkManager/Devices/3 -05:50:31,082 INFO NetworkManager: (eth3): now managed -05:50:31,082 INFO NetworkManager: (eth3): device state change: 1 -> 2 (reason 2) -05:50:31,082 INFO NetworkManager: (eth3): bringing up device. -05:50:31,086 INFO kernel:e1000: eth3 NIC Link is Up 1000 Mbps Full Duplex, Flow Control: None -05:50:31,091 INFO kernel:8021q: adding VLAN 0 to HW filter on device eth3 -05:50:31,091 INFO NetworkManager: (eth3): carrier now ON (device state 2) -05:50:31,091 INFO NetworkManager: (eth3): preparing device. -05:50:31,091 INFO NetworkManager: (eth3): deactivating device (reason: 2). -05:50:31,093 INFO NetworkManager: (eth0): carrier now OFF (device state 2) -05:50:31,094 INFO NetworkManager: (eth0): carrier now ON (device state 2) -05:50:31,094 WARNING NetworkManager: (nm-device.c:4447):nm_device_queue_state: runtime check failed: (priv->queued_state.id == 0) -05:50:31,094 INFO NetworkManager: (eth1): carrier now OFF (device state 2) -05:50:31,094 INFO NetworkManager: (eth1): carrier now ON (device state 2) -05:50:31,094 WARNING NetworkManager: (nm-device.c:4447):nm_device_queue_state: runtime check failed: (priv->queued_state.id == 0) -05:50:31,094 INFO NetworkManager: (eth2): carrier now OFF (device state 2) -05:50:31,095 INFO NetworkManager: (eth2): carrier now ON (device state 2) -05:50:31,095 WARNING NetworkManager: (nm-device.c:4447):nm_device_queue_state: runtime check failed: (priv->queued_state.id == 0) -05:50:31,095 INFO NetworkManager: (eth3): carrier now OFF (device state 2) -05:50:31,095 INFO NetworkManager: (eth3): carrier now ON (device state 2) -05:50:31,095 WARNING NetworkManager: (nm-device.c:4447):nm_device_queue_state: runtime check failed: (priv->queued_state.id == 0) -05:50:31,096 INFO NetworkManager: Trying to start the supplicant... -05:50:31,097 INFO NetworkManager: (eth0): device state change: 2 -> 3 (reason 40) -05:50:31,097 INFO NetworkManager: (eth1): device state change: 2 -> 3 (reason 40) -05:50:31,097 INFO NetworkManager: (eth2): device state change: 2 -> 3 (reason 40) -05:50:31,098 INFO NetworkManager: (eth3): device state change: 2 -> 3 (reason 40) -05:50:31,104 INFO NetworkManager: wpa_supplicant started -05:50:32,010 WARNING NetworkManager: error requesting auth for org.freedesktop.NetworkManager.enable-disable-network: (26) Remote Exception invoking org.freedesktop.PolicyKit1.Authority.CheckAuthorization() on /org/freedesktop/PolicyKit1/Authority at name org.freedesktop.PolicyKit1: org.freedesktop.DBus.Error.Spawn.ExecFailed: Cannot launch daemon, file not found or permissions invalid -05:50:32,010 WARNING NetworkManager: error requesting auth for org.freedesktop.NetworkManager.sleep-wake: (26) Remote Exception invoking org.freedesktop.PolicyKit1.Authority.CheckAuthorization() on /org/freedesktop/PolicyKit1/Authority at name org.freedesktop.PolicyKit1: org.freedesktop.DBus.Error.Spawn.ExecFailed: Cannot launch daemon, file not found or permissions invalid -05:50:32,010 WARNING NetworkManager: error requesting auth for org.freedesktop.NetworkManager.enable-disable-wifi: (26) Remote Exception invoking org.freedesktop.PolicyKit1.Authority.CheckAuthorization() on /org/freedesktop/PolicyKit1/Authority at name org.freedesktop.PolicyKit1: org.freedesktop.DBus.Error.Spawn.ExecFailed: Cannot launch daemon, file not found or permissions invalid -05:50:32,010 WARNING NetworkManager: error requesting auth for org.freedesktop.NetworkManager.enable-disable-wwan: (26) Remote Exception invoking org.freedesktop.PolicyKit1.Authority.CheckAuthorization() on /org/freedesktop/PolicyKit1/Authority at name org.freedesktop.PolicyKit1: org.freedesktop.DBus.Error.Spawn.ExecFailed: Cannot launch daemon, file not found or permissions invalid -05:50:32,010 WARNING NetworkManager: error requesting auth for org.freedesktop.NetworkManager.use-user-connections: (26) Remote Exception invoking org.freedesktop.PolicyKit1.Authority.CheckAuthorization() on /org/freedesktop/PolicyKit1/Authority at name org.freedesktop.PolicyKit1: org.freedesktop.DBus.Error.Spawn.ExecFailed: Cannot launch daemon, file not found or permissions invalid -05:50:32,010 WARNING NetworkManager: error requesting auth for org.freedesktop.NetworkManager.network-control: (26) Remote Exception invoking org.freedesktop.PolicyKit1.Authority.CheckAuthorization() on /org/freedesktop/PolicyKit1/Authority at name org.freedesktop.PolicyKit1: org.freedesktop.DBus.Error.Spawn.ExecFailed: Cannot launch daemon, file not found or permissions invalid -05:50:32,010 WARNING NetworkManager: error requesting auth for org.freedesktop.network-manager-settings.system.wifi.share.open: (26) Remote Exception invoking org.freedesktop.PolicyKit1.Authority.CheckAuthorization() on /org/freedesktop/PolicyKit1/Authority at name org.freedesktop.PolicyKit1: org.freedesktop.DBus.Error.Spawn.ExecFailed: Cannot launch daemon, file not found or permissions invalid -05:50:32,010 WARNING NetworkManager: error requesting auth for org.freedesktop.network-manager-settings.system.wifi.share.protected: (26) Remote Exception invoking org.freedesktop.PolicyKit1.Authority.CheckAuthorization() on /org/freedesktop/PolicyKit1/Authority at name org.freedesktop.PolicyKit1: org.freedesktop.DBus.Error.Spawn.ExecFailed: Cannot launch daemon, file not found or permissions invalid -05:50:32,019 WARNING NetworkManager: error requesting auth for org.freedesktop.NetworkManager.enable-disable-network: (26) Remote Exception invoking org.freedesktop.PolicyKit1.Authority.CheckAuthorization() on /org/freedesktop/PolicyKit1/Authority at name org.freedesktop.PolicyKit1: org.freedesktop.DBus.Error.Spawn.ExecFailed: Cannot launch daemon, file not found or permissions invalid -05:50:32,019 WARNING NetworkManager: error requesting auth for org.freedesktop.NetworkManager.sleep-wake: (26) Remote Exception invoking org.freedesktop.PolicyKit1.Authority.CheckAuthorization() on /org/freedesktop/PolicyKit1/Authority at name org.freedesktop.PolicyKit1: org.freedesktop.DBus.Error.Spawn.ExecFailed: Cannot launch daemon, file not found or permissions invalid -05:50:32,019 WARNING NetworkManager: error requesting auth for org.freedesktop.NetworkManager.enable-disable-wifi: (26) Remote Exception invoking org.freedesktop.PolicyKit1.Authority.CheckAuthorization() on /org/freedesktop/PolicyKit1/Authority at name org.freedesktop.PolicyKit1: org.freedesktop.DBus.Error.Spawn.ExecFailed: Cannot launch daemon, file not found or permissions invalid -05:50:32,019 WARNING NetworkManager: error requesting auth for org.freedesktop.NetworkManager.enable-disable-wwan: (26) Remote Exception invoking org.freedesktop.PolicyKit1.Authority.CheckAuthorization() on /org/freedesktop/PolicyKit1/Authority at name org.freedesktop.PolicyKit1: org.freedesktop.DBus.Error.Spawn.ExecFailed: Cannot launch daemon, file not found or permissions invalid -05:50:32,019 WARNING NetworkManager: error requesting auth for org.freedesktop.NetworkManager.use-user-connections: (26) Remote Exception invoking org.freedesktop.PolicyKit1.Authority.CheckAuthorization() on /org/freedesktop/PolicyKit1/Authority at name org.freedesktop.PolicyKit1: org.freedesktop.DBus.Error.Spawn.ExecFailed: Cannot launch daemon, file not found or permissions invalid -05:50:32,019 WARNING NetworkManager: error requesting auth for org.freedesktop.NetworkManager.network-control: (26) Remote Exception invoking org.freedesktop.PolicyKit1.Authority.CheckAuthorization() on /org/freedesktop/PolicyKit1/Authority at name org.freedesktop.PolicyKit1: org.freedesktop.DBus.Error.Spawn.ExecFailed: Cannot launch daemon, file not found or permissions invalid -05:50:32,019 WARNING NetworkManager: error requesting auth for org.freedesktop.network-manager-settings.system.wifi.share.open: (26) Remote Exception invoking org.freedesktop.PolicyKit1.Authority.CheckAuthorization() on /org/freedesktop/PolicyKit1/Authority at name org.freedesktop.PolicyKit1: org.freedesktop.DBus.Error.Spawn.ExecFailed: Cannot launch daemon, file not found or permissions invalid -05:50:32,019 WARNING NetworkManager: error requesting auth for org.freedesktop.network-manager-settings.system.wifi.share.protected: (26) Remote Exception invoking org.freedesktop.PolicyKit1.Authority.CheckAuthorization() on /org/freedesktop/PolicyKit1/Authority at name org.freedesktop.PolicyKit1: org.freedesktop.DBus.Error.Spawn.ExecFailed: Cannot launch daemon, file not found or permissions invalid -05:50:32,026 WARNING NetworkManager: error requesting auth for org.freedesktop.NetworkManager.enable-disable-network: (26) Remote Exception invoking org.freedesktop.PolicyKit1.Authority.CheckAuthorization() on /org/freedesktop/PolicyKit1/Authority at name org.freedesktop.PolicyKit1: org.freedesktop.DBus.Error.Spawn.ExecFailed: Cannot launch daemon, file not found or permissions invalid -05:50:32,026 WARNING NetworkManager: error requesting auth for org.freedesktop.NetworkManager.sleep-wake: (26) Remote Exception invoking org.freedesktop.PolicyKit1.Authority.CheckAuthorization() on /org/freedesktop/PolicyKit1/Authority at name org.freedesktop.PolicyKit1: org.freedesktop.DBus.Error.Spawn.ExecFailed: Cannot launch daemon, file not found or permissions invalid -05:50:32,027 WARNING NetworkManager: error requesting auth for org.freedesktop.NetworkManager.enable-disable-wifi: (26) Remote Exception invoking org.freedesktop.PolicyKit1.Authority.CheckAuthorization() on /org/freedesktop/PolicyKit1/Authority at name org.freedesktop.PolicyKit1: org.freedesktop.DBus.Error.Spawn.ExecFailed: Cannot launch daemon, file not found or permissions invalid -05:50:32,027 WARNING NetworkManager: error requesting auth for org.freedesktop.NetworkManager.enable-disable-wwan: (26) Remote Exception invoking org.freedesktop.PolicyKit1.Authority.CheckAuthorization() on /org/freedesktop/PolicyKit1/Authority at name org.freedesktop.PolicyKit1: org.freedesktop.DBus.Error.Spawn.ExecFailed: Cannot launch daemon, file not found or permissions invalid -05:50:32,027 WARNING NetworkManager: error requesting auth for org.freedesktop.NetworkManager.use-user-connections: (26) Remote Exception invoking org.freedesktop.PolicyKit1.Authority.CheckAuthorization() on /org/freedesktop/PolicyKit1/Authority at name org.freedesktop.PolicyKit1: org.freedesktop.DBus.Error.Spawn.ExecFailed: Cannot launch daemon, file not found or permissions invalid -05:50:32,027 WARNING NetworkManager: error requesting auth for org.freedesktop.NetworkManager.network-control: (26) Remote Exception invoking org.freedesktop.PolicyKit1.Authority.CheckAuthorization() on /org/freedesktop/PolicyKit1/Authority at name org.freedesktop.PolicyKit1: org.freedesktop.DBus.Error.Spawn.ExecFailed: Cannot launch daemon, file not found or permissions invalid -05:50:32,027 WARNING NetworkManager: error requesting auth for org.freedesktop.network-manager-settings.system.wifi.share.open: (26) Remote Exception invoking org.freedesktop.PolicyKit1.Authority.CheckAuthorization() on /org/freedesktop/PolicyKit1/Authority at name org.freedesktop.PolicyKit1: org.freedesktop.DBus.Error.Spawn.ExecFailed: Cannot launch daemon, file not found or permissions invalid -05:50:32,027 WARNING NetworkManager: error requesting auth for org.freedesktop.network-manager-settings.system.wifi.share.protected: (26) Remote Exception invoking org.freedesktop.PolicyKit1.Authority.CheckAuthorization() on /org/freedesktop/PolicyKit1/Authority at name org.freedesktop.PolicyKit1: org.freedesktop.DBus.Error.Spawn.ExecFailed: Cannot launch daemon, file not found or permissions invalid -05:50:32,039 WARNING NetworkManager: error requesting auth for org.freedesktop.NetworkManager.enable-disable-network: (26) Remote Exception invoking org.freedesktop.PolicyKit1.Authority.CheckAuthorization() on /org/freedesktop/PolicyKit1/Authority at name org.freedesktop.PolicyKit1: org.freedesktop.DBus.Error.Spawn.ExecFailed: Cannot launch daemon, file not found or permissions invalid -05:50:32,039 WARNING NetworkManager: error requesting auth for org.freedesktop.NetworkManager.sleep-wake: (26) Remote Exception invoking org.freedesktop.PolicyKit1.Authority.CheckAuthorization() on /org/freedesktop/PolicyKit1/Authority at name org.freedesktop.PolicyKit1: org.freedesktop.DBus.Error.Spawn.ExecFailed: Cannot launch daemon, file not found or permissions invalid -05:50:32,039 WARNING NetworkManager: error requesting auth for org.freedesktop.NetworkManager.enable-disable-wifi: (26) Remote Exception invoking org.freedesktop.PolicyKit1.Authority.CheckAuthorization() on /org/freedesktop/PolicyKit1/Authority at name org.freedesktop.PolicyKit1: org.freedesktop.DBus.Error.Spawn.ExecFailed: Cannot launch daemon, file not found or permissions invalid -05:50:32,039 WARNING NetworkManager: error requesting auth for org.freedesktop.NetworkManager.enable-disable-wwan: (26) Remote Exception invoking org.freedesktop.PolicyKit1.Authority.CheckAuthorization() on /org/freedesktop/PolicyKit1/Authority at name org.freedesktop.PolicyKit1: org.freedesktop.DBus.Error.Spawn.ExecFailed: Cannot launch daemon, file not found or permissions invalid -05:50:32,039 WARNING NetworkManager: error requesting auth for org.freedesktop.NetworkManager.use-user-connections: (26) Remote Exception invoking org.freedesktop.PolicyKit1.Authority.CheckAuthorization() on /org/freedesktop/PolicyKit1/Authority at name org.freedesktop.PolicyKit1: org.freedesktop.DBus.Error.Spawn.ExecFailed: Cannot launch daemon, file not found or permissions invalid -05:50:32,039 WARNING NetworkManager: error requesting auth for org.freedesktop.NetworkManager.network-control: (26) Remote Exception invoking org.freedesktop.PolicyKit1.Authority.CheckAuthorization() on /org/freedesktop/PolicyKit1/Authority at name org.freedesktop.PolicyKit1: org.freedesktop.DBus.Error.Spawn.ExecFailed: Cannot launch daemon, file not found or permissions invalid -05:50:32,039 WARNING NetworkManager: error requesting auth for org.freedesktop.network-manager-settings.system.wifi.share.open: (26) Remote Exception invoking org.freedesktop.PolicyKit1.Authority.CheckAuthorization() on /org/freedesktop/PolicyKit1/Authority at name org.freedesktop.PolicyKit1: org.freedesktop.DBus.Error.Spawn.ExecFailed: Cannot launch daemon, file not found or permissions invalid -05:50:32,039 WARNING NetworkManager: error requesting auth for org.freedesktop.network-manager-settings.system.wifi.share.protected: (26) Remote Exception invoking org.freedesktop.PolicyKit1.Authority.CheckAuthorization() on /org/freedesktop/PolicyKit1/Authority at name org.freedesktop.PolicyKit1: org.freedesktop.DBus.Error.Spawn.ExecFailed: Cannot launch daemon, file not found or permissions invalid -05:50:33,054 NOTICE NetworkManager: ifcfg-rh: updating /etc/sysconfig/network-scripts/ifcfg-eth0 -05:50:33,057 INFO NetworkManager: Auto-activating connection 'System eth0'. -05:50:33,057 INFO NetworkManager: Activation (eth0) starting connection 'System eth0' -05:50:33,058 INFO NetworkManager: (eth0): device state change: 3 -> 4 (reason 0) -05:50:33,058 INFO NetworkManager: Activation (eth0) Stage 1 of 5 (Device Prepare) scheduled... -05:50:33,058 INFO NetworkManager: Activation (eth0) Stage 1 of 5 (Device Prepare) started... -05:50:33,059 INFO NetworkManager: Activation (eth0) Stage 2 of 5 (Device Configure) scheduled... -05:50:33,059 INFO NetworkManager: Activation (eth0) Stage 1 of 5 (Device Prepare) complete. -05:50:33,059 INFO NetworkManager: Activation (eth0) Stage 2 of 5 (Device Configure) starting... -05:50:33,059 INFO NetworkManager: (eth0): device state change: 4 -> 5 (reason 0) -05:50:33,059 INFO NetworkManager: Activation (eth0) Stage 2 of 5 (Device Configure) successful. -05:50:33,059 INFO NetworkManager: Activation (eth0) Stage 3 of 5 (IP Configure Start) scheduled. -05:50:33,059 INFO NetworkManager: Activation (eth0) Stage 2 of 5 (Device Configure) complete. -05:50:33,059 INFO NetworkManager: Activation (eth0) Stage 3 of 5 (IP Configure Start) started... -05:50:33,059 INFO NetworkManager: (eth0): device state change: 5 -> 7 (reason 0) -05:50:33,060 INFO NetworkManager: Activation (eth0) Beginning DHCPv4 transaction -05:50:33,062 INFO dhclient: Internet Systems Consortium DHCP Client 4.1.1-P1 -05:50:33,062 INFO NetworkManager: dhclient started with pid 654 -05:50:33,063 INFO NetworkManager: Activation (eth0) DHCPv4 will time out in 45 seconds -05:50:33,063 INFO dhclient: Copyright 2004-2010 Internet Systems Consortium. -05:50:33,063 INFO dhclient: All rights reserved. -05:50:33,063 INFO dhclient: For info, please visit https://www.isc.org/software/dhcp/ -05:50:33,063 INFO dhclient: -05:50:33,063 INFO NetworkManager: Activation (eth0) Stage 3 of 5 (IP Configure Start) complete. -05:50:33,066 INFO NetworkManager: (eth0): DHCPv4 state changed nbi -> preinit -05:50:33,068 INFO dhclient: Listening on LPF/eth0/00:0c:29:5c:6a:b8 -05:50:33,068 INFO dhclient: Sending on LPF/eth0/00:0c:29:5c:6a:b8 -05:50:33,068 INFO dhclient: Sending on Socket/fallback -05:50:37,004 INFO dhclient: DHCPDISCOVER on eth0 to 255.255.255.255 port 67 interval 7 (xid=0x3433ec2c) -05:50:37,048 INFO dhclient: DHCPOFFER from 10.145.88.211 -05:50:37,048 INFO dhclient: DHCPREQUEST on eth0 to 255.255.255.255 port 67 (xid=0x3433ec2c) -05:50:38,084 INFO dhclient: DHCPACK from 10.145.88.211 (xid=0x3433ec2c) -05:50:38,087 INFO dhclient: bound to 10.145.88.104 -- renewal in 10764 seconds. -05:50:38,087 INFO NetworkManager: (eth0): DHCPv4 state changed preinit -> bound -05:50:38,087 INFO NetworkManager: Activation (eth0) Stage 4 of 5 (IP4 Configure Get) scheduled... -05:50:38,087 INFO NetworkManager: Activation (eth0) Stage 4 of 5 (IP4 Configure Get) started... -05:50:38,087 INFO NetworkManager: address 10.145.88.104 -05:50:38,087 INFO NetworkManager: prefix 23 (255.255.254.0) -05:50:38,087 INFO NetworkManager: gateway 10.145.88.1 -05:50:38,087 INFO NetworkManager: hostname 'server2' -05:50:38,087 INFO NetworkManager: nameserver '10.145.88.211' -05:50:38,088 INFO NetworkManager: Activation (eth0) Stage 5 of 5 (IP Configure Commit) scheduled... -05:50:38,088 INFO NetworkManager: Activation (eth0) Stage 4 of 5 (IP4 Configure Get) complete. -05:50:38,088 INFO NetworkManager: Activation (eth0) Stage 5 of 5 (IP Configure Commit) started... -05:50:39,089 INFO NetworkManager: (eth0): device state change: 7 -> 8 (reason 0) -05:50:39,090 INFO NetworkManager: Policy set 'System eth0' (eth0) as default for IPv4 routing and DNS. -05:50:39,090 INFO NetworkManager: Setting system hostname to 'server2' (from DHCPv4) -05:50:39,091 INFO NetworkManager: Activation (eth0) successful, device activated. -05:50:39,092 INFO NetworkManager: Activation (eth0) Stage 5 of 5 (IP Configure Commit) complete. -05:50:55,174 WARNING NetworkManager: error requesting auth for org.freedesktop.NetworkManager.enable-disable-network: (26) Remote Exception invoking org.freedesktop.PolicyKit1.Authority.CheckAuthorization() on /org/freedesktop/PolicyKit1/Authority at name org.freedesktop.PolicyKit1: org.freedesktop.DBus.Error.Spawn.ExecFailed: Cannot launch daemon, file not found or permissions invalid -05:50:55,174 WARNING NetworkManager: error requesting auth for org.freedesktop.NetworkManager.sleep-wake: (26) Remote Exception invoking org.freedesktop.PolicyKit1.Authority.CheckAuthorization() on /org/freedesktop/PolicyKit1/Authority at name org.freedesktop.PolicyKit1: org.freedesktop.DBus.Error.Spawn.ExecFailed: Cannot launch daemon, file not found or permissions invalid -05:50:55,174 WARNING NetworkManager: error requesting auth for org.freedesktop.NetworkManager.enable-disable-wifi: (26) Remote Exception invoking org.freedesktop.PolicyKit1.Authority.CheckAuthorization() on /org/freedesktop/PolicyKit1/Authority at name org.freedesktop.PolicyKit1: org.freedesktop.DBus.Error.Spawn.ExecFailed: Cannot launch daemon, file not found or permissions invalid -05:50:55,174 WARNING NetworkManager: error requesting auth for org.freedesktop.NetworkManager.enable-disable-wwan: (26) Remote Exception invoking org.freedesktop.PolicyKit1.Authority.CheckAuthorization() on /org/freedesktop/PolicyKit1/Authority at name org.freedesktop.PolicyKit1: org.freedesktop.DBus.Error.Spawn.ExecFailed: Cannot launch daemon, file not found or permissions invalid -05:50:55,174 WARNING NetworkManager: error requesting auth for org.freedesktop.NetworkManager.use-user-connections: (26) Remote Exception invoking org.freedesktop.PolicyKit1.Authority.CheckAuthorization() on /org/freedesktop/PolicyKit1/Authority at name org.freedesktop.PolicyKit1: org.freedesktop.DBus.Error.Spawn.ExecFailed: Cannot launch daemon, file not found or permissions invalid -05:50:55,174 WARNING NetworkManager: error requesting auth for org.freedesktop.NetworkManager.network-control: (26) Remote Exception invoking org.freedesktop.PolicyKit1.Authority.CheckAuthorization() on /org/freedesktop/PolicyKit1/Authority at name org.freedesktop.PolicyKit1: org.freedesktop.DBus.Error.Spawn.ExecFailed: Cannot launch daemon, file not found or permissions invalid -05:50:55,174 WARNING NetworkManager: error requesting auth for org.freedesktop.network-manager-settings.system.wifi.share.open: (26) Remote Exception invoking org.freedesktop.PolicyKit1.Authority.CheckAuthorization() on /org/freedesktop/PolicyKit1/Authority at name org.freedesktop.PolicyKit1: org.freedesktop.DBus.Error.Spawn.ExecFailed: Cannot launch daemon, file not found or permissions invalid -05:50:55,174 WARNING NetworkManager: error requesting auth for org.freedesktop.network-manager-settings.system.wifi.share.protected: (26) Remote Exception invoking org.freedesktop.PolicyKit1.Authority.CheckAuthorization() on /org/freedesktop/PolicyKit1/Authority at name org.freedesktop.PolicyKit1: org.freedesktop.DBus.Error.Spawn.ExecFailed: Cannot launch daemon, file not found or permissions invalid -05:51:46,967 NOTICE dbus-daemon: [system] Unable to reload configuration: Error in file /etc/dbus-1/system.d/nm-dhcp-client.conf, line 1, column 0: no element found -05:51:46,969 NOTICE dbus-daemon: [system] Unable to reload configuration: Error in file /etc/dbus-1/system.d/org.freedesktop.PolicyKit1.conf, line 1, column 0: no element found -05:51:46,976 NOTICE dbus-daemon: [system] Reloaded configuration -05:51:47,135 DEBUG kernel:SELinux: 2048 avtab hash slots, 277800 rules. -05:51:47,214 DEBUG kernel:SELinux: 2048 avtab hash slots, 277800 rules. -05:51:47,702 DEBUG kernel:SELinux: 9 users, 12 roles, 3917 types, 217 bools, 1 sens, 1024 cats -05:51:47,702 DEBUG kernel:SELinux: 81 classes, 277800 rules -05:51:47,706 DEBUG kernel:SELinux: Completing initialization. -05:51:47,706 DEBUG kernel:SELinux: Setting up existing superblocks. -05:51:47,706 DEBUG kernel:SELinux: initialized (dev loop0, type squashfs), not configured for labeling -05:51:47,706 DEBUG kernel:SELinux: initialized (dev tmpfs, type tmpfs), uses transition SIDs -05:51:47,706 DEBUG kernel:SELinux: initialized (dev tmpfs, type tmpfs), uses transition SIDs -05:51:47,708 DEBUG kernel:SELinux: initialized (dev selinuxfs, type selinuxfs), uses genfs_contexts -05:51:47,708 DEBUG kernel:SELinux: initialized (dev mqueue, type mqueue), uses transition SIDs -05:51:47,708 DEBUG kernel:SELinux: initialized (dev hugetlbfs, type hugetlbfs), uses transition SIDs -05:51:47,708 DEBUG kernel:SELinux: initialized (dev devpts, type devpts), uses transition SIDs -05:51:47,708 DEBUG kernel:SELinux: initialized (dev inotifyfs, type inotifyfs), uses genfs_contexts -05:51:47,708 DEBUG kernel:SELinux: initialized (dev anon_inodefs, type anon_inodefs), uses genfs_contexts -05:51:47,708 DEBUG kernel:SELinux: initialized (dev pipefs, type pipefs), uses task SIDs -05:51:47,708 DEBUG kernel:SELinux: initialized (dev debugfs, type debugfs), uses genfs_contexts -05:51:47,708 DEBUG kernel:SELinux: initialized (dev sockfs, type sockfs), uses task SIDs -05:51:47,708 DEBUG kernel:SELinux: initialized (dev devtmpfs, type devtmpfs), uses transition SIDs -05:51:47,708 DEBUG kernel:SELinux: initialized (dev tmpfs, type tmpfs), uses transition SIDs -05:51:47,708 DEBUG kernel:SELinux: initialized (dev proc, type proc), uses genfs_contexts -05:51:47,708 DEBUG kernel:SELinux: initialized (dev bdev, type bdev), uses genfs_contexts -05:51:47,708 DEBUG kernel:SELinux: initialized (dev rootfs, type rootfs), uses genfs_contexts -05:51:47,709 DEBUG kernel:SELinux: initialized (dev sysfs, type sysfs), uses genfs_contexts -05:51:47,751 NOTICE kernel:type=1403 audit(1021096307.739:2): policy loaded auid=4294967295 ses=4294967295 -05:51:47,786 INFO kernel:md: raid0 personality registered for level 0 -05:51:47,793 INFO kernel:md: raid1 personality registered for level 1 -05:51:47,797 INFO kernel:async_tx: api initialized (async) -05:51:47,802 INFO kernel:xor: automatically using best checksumming function: generic_sse -05:51:47,810 INFO kernel: generic_sse: 9176.000 MB/sec -05:51:47,810 INFO kernel:xor: using function: generic_sse (9176.000 MB/sec) -05:51:47,834 WARNING kernel:raid6: sse2x1 4742 MB/s -05:51:47,851 WARNING kernel:raid6: sse2x2 7117 MB/s -05:51:47,868 WARNING kernel:raid6: sse2x4 7660 MB/s -05:51:47,868 WARNING kernel:raid6: using algorithm sse2x4 (7660 MB/s) -05:51:47,868 WARNING kernel:raid6: using ssse3x2 recovery algorithm -05:51:47,882 INFO kernel:md: raid6 personality registered for level 6 -05:51:47,882 INFO kernel:md: raid5 personality registered for level 5 -05:51:47,882 INFO kernel:md: raid4 personality registered for level 4 -05:51:47,893 INFO kernel:md: raid10 personality registered for level 10 -05:51:47,896 INFO kernel:md: linear personality registered for level -1 -05:51:47,909 INFO kernel:device-mapper: uevent: version 1.0.3 -05:51:47,909 INFO kernel:device-mapper: ioctl: 4.24.6-ioctl (2013-01-15) initialised: dm-devel@redhat.com -05:51:47,940 INFO kernel:device-mapper: multipath: version 1.5.0 loaded -05:51:47,944 INFO kernel:device-mapper: multipath round-robin: version 1.0.0 loaded -05:52:05,224 NOTICE kernel:sd 2:0:0:0: [sda] Cache data unavailable -05:52:05,224 ERR kernel:sd 2:0:0:0: [sda] Assuming drive cache: write through -05:52:05,225 INFO kernel: sda: sda1 -05:52:06,013 NOTICE kernel:sd 2:0:0:0: [sda] Cache data unavailable -05:52:06,013 ERR kernel:sd 2:0:0:0: [sda] Assuming drive cache: write through -05:52:06,023 INFO kernel: sda: -05:52:06,365 NOTICE kernel:sd 2:0:0:0: [sda] Cache data unavailable -05:52:06,365 ERR kernel:sd 2:0:0:0: [sda] Assuming drive cache: write through -05:52:06,415 INFO kernel: sda: sda1 -05:52:09,171 NOTICE kernel:sd 2:0:0:0: [sda] Cache data unavailable -05:52:09,171 ERR kernel:sd 2:0:0:0: [sda] Assuming drive cache: write through -05:52:09,171 INFO kernel: sda: sda1 sda2 -05:52:11,280 NOTICE kernel:sd 2:0:0:0: [sda] Cache data unavailable -05:52:11,280 ERR kernel:sd 2:0:0:0: [sda] Assuming drive cache: write through -05:52:11,280 INFO kernel: sda: sda1 sda2 sda3 -05:52:44,551 INFO kernel:Adding 3354616k swap on /dev/sda2. Priority:-1 extents:1 across:3354616k -05:52:45,044 INFO kernel:kjournald starting. Commit interval 5 seconds -05:52:45,053 INFO kernel:EXT3-fs (dm-0): using internal journal -05:52:45,053 INFO kernel:EXT3-fs (dm-0): mounted filesystem with ordered data mode -05:52:45,053 DEBUG kernel:SELinux: initialized (dev dm-0, type ext3), uses xattr -05:52:45,103 INFO kernel:kjournald starting. Commit interval 5 seconds -05:52:45,170 INFO kernel:EXT3-fs (sda1): using internal journal -05:52:45,170 INFO kernel:EXT3-fs (sda1): mounted filesystem with ordered data mode -05:52:45,170 DEBUG kernel:SELinux: initialized (dev sda1, type ext3), uses xattr -05:52:45,250 DEBUG kernel:SELinux: initialized (dev tmpfs, type tmpfs), uses transition SIDs -05:52:45,384 INFO kernel:kjournald starting. Commit interval 5 seconds -05:52:45,439 INFO kernel:EXT3-fs (dm-1): using internal journal -05:52:45,439 INFO kernel:EXT3-fs (dm-1): mounted filesystem with ordered data mode -05:52:45,439 DEBUG kernel:SELinux: initialized (dev dm-1, type ext3), uses xattr -05:52:45,604 INFO kernel:kjournald starting. Commit interval 5 seconds -05:52:45,648 INFO kernel:EXT3-fs (dm-2): using internal journal -05:52:45,648 INFO kernel:EXT3-fs (dm-2): mounted filesystem with ordered data mode -05:52:45,648 DEBUG kernel:SELinux: initialized (dev dm-2, type ext3), uses xattr -05:52:45,851 INFO kernel:kjournald starting. Commit interval 5 seconds -05:52:45,875 INFO kernel:EXT3-fs (dm-3): using internal journal -05:52:45,875 INFO kernel:EXT3-fs (dm-3): mounted filesystem with ordered data mode -05:52:45,875 DEBUG kernel:SELinux: initialized (dev dm-3, type ext3), uses xattr -05:52:54,110 DEBUG kernel:SELinux: initialized (dev usbfs, type usbfs), uses genfs_contexts -05:52:54,121 NOTICE NetworkManager: ifcfg-rh: updating /etc/sysconfig/network-scripts/ifcfg-eth3 -05:52:54,121 NOTICE NetworkManager: ifcfg-rh: updating /etc/sysconfig/network-scripts/ifcfg-eth2 -05:52:54,124 NOTICE NetworkManager: ifcfg-rh: updating /etc/sysconfig/network-scripts/ifcfg-eth1 -05:52:55,143 NOTICE NetworkManager: ifcfg-rh: updating /etc/sysconfig/network-scripts/ifcfg-eth3 -05:52:55,145 NOTICE NetworkManager: ifcfg-rh: updating /etc/sysconfig/network-scripts/ifcfg-eth2 -05:52:55,146 NOTICE NetworkManager: ifcfg-rh: updating /etc/sysconfig/network-scripts/ifcfg-eth1 -05:52:55,146 NOTICE NetworkManager: ifcfg-rh: updating /etc/sysconfig/network-scripts/ifcfg-eth0 -06:11:24,179 DEBUG kernel:SELinux: 2048 avtab hash slots, 277800 rules. -06:11:24,305 DEBUG kernel:SELinux: 2048 avtab hash slots, 277800 rules. -06:11:24,821 DEBUG kernel:SELinux: 9 users, 12 roles, 3917 types, 217 bools, 1 sens, 1024 cats -06:11:24,821 DEBUG kernel:SELinux: 81 classes, 277800 rules diff --git a/compass/tests/actions/update_progress/data/test2/anamon/checkpoint_5/server1.1/anaconda.log.template b/compass/tests/actions/update_progress/data/test2/anamon/checkpoint_5/server1.1/anaconda.log.template deleted file mode 100644 index f04da66a..00000000 --- a/compass/tests/actions/update_progress/data/test2/anamon/checkpoint_5/server1.1/anaconda.log.template +++ /dev/null @@ -1,286 +0,0 @@ -05:51:20,534 INFO : kernel command line: initrd=/images/CentOS-6.5-x86_64/initrd.img ksdevice=bootif lang= kssendmac text ks=http://10.145.88.211/cblr/svc/op/ks/system/server1.1 BOOT_IMAGE=/images/CentOS-6.5-x86_64/vmlinuz BOOTIF=01-00-0c-29-21-89-af - -05:51:20,534 INFO : text mode forced from cmdline -05:51:20,534 DEBUG : readNetInfo /tmp/s390net not found, early return -05:51:20,534 INFO : anaconda version 13.21.215 on x86_64 starting -05:51:20,656 DEBUG : Saving module ipv6 -05:51:20,656 DEBUG : Saving module iscsi_ibft -05:51:20,656 DEBUG : Saving module iscsi_boot_sysfs -05:51:20,656 DEBUG : Saving module pcspkr -05:51:20,656 DEBUG : Saving module edd -05:51:20,656 DEBUG : Saving module floppy -05:51:20,656 DEBUG : Saving module iscsi_tcp -05:51:20,656 DEBUG : Saving module libiscsi_tcp -05:51:20,656 DEBUG : Saving module libiscsi -05:51:20,656 DEBUG : Saving module scsi_transport_iscsi -05:51:20,656 DEBUG : Saving module squashfs -05:51:20,656 DEBUG : Saving module cramfs -05:51:20,656 DEBUG : probing buses -05:51:20,693 DEBUG : waiting for hardware to initialize -05:51:27,902 DEBUG : probing buses -05:51:27,925 DEBUG : waiting for hardware to initialize -05:51:47,187 INFO : getting kickstart file -05:51:47,196 INFO : eth0 has link, using it -05:51:47,208 INFO : doing kickstart... setting it up -05:51:47,208 DEBUG : activating device eth0 -05:51:52,221 INFO : wait_for_iface_activation (2502): device eth0 activated -05:51:52,222 INFO : file location: http://10.145.88.211/cblr/svc/op/ks/system/server1.1 -05:51:52,223 INFO : transferring http://10.145.88.211/cblr/svc/op/ks/system/server1.1 -05:51:52,611 INFO : setting up kickstart -05:51:52,611 INFO : kickstart forcing text mode -05:51:52,611 INFO : kickstartFromUrl -05:51:52,612 INFO : results of url ks, url http://10.145.88.211/cblr/links/CentOS-6.5-x86_64 -05:51:52,612 INFO : trying to mount CD device /dev/sr0 on /mnt/stage2 -05:51:52,616 INFO : drive status is CDS_TRAY_OPEN -05:51:52,616 ERROR : Drive tray reports open when it should be closed -05:52:07,635 INFO : no stage2= given, assuming http://10.145.88.211/cblr/links/CentOS-6.5-x86_64/images/install.img -05:52:07,636 DEBUG : going to set language to en_US.UTF-8 -05:52:07,636 INFO : setting language to en_US.UTF-8 -05:52:07,654 INFO : starting STEP_METHOD -05:52:07,654 DEBUG : loaderData->method is set, adding skipMethodDialog -05:52:07,654 DEBUG : skipMethodDialog is set -05:52:07,663 INFO : starting STEP_STAGE2 -05:52:07,663 INFO : URL_STAGE_MAIN: url is http://10.145.88.211/cblr/links/CentOS-6.5-x86_64/images/install.img -05:52:07,663 INFO : transferring http://10.145.88.211/cblr/links/CentOS-6.5-x86_64/images/updates.img -05:52:07,780 ERROR : failed to mount loopback device /dev/loop7 on /tmp/update-disk as /tmp/updates-disk.img: (null) -05:52:07,780 ERROR : Error mounting /dev/loop7 on /tmp/update-disk: No such file or directory -05:52:07,780 INFO : transferring http://10.145.88.211/cblr/links/CentOS-6.5-x86_64/images/product.img -05:52:07,814 ERROR : Error downloading http://10.145.88.211/cblr/links/CentOS-6.5-x86_64/images/product.img: HTTP response code said error -05:52:07,815 INFO : transferring http://10.145.88.211/cblr/links/CentOS-6.5-x86_64/images/install.img -05:52:47,354 INFO : mounted loopback device /mnt/runtime on /dev/loop0 as /tmp/install.img -05:52:47,354 INFO : got stage2 at url http://10.145.88.211/cblr/links/CentOS-6.5-x86_64/images/install.img -05:52:47,403 INFO : Loading SELinux policy -05:52:48,130 INFO : getting ready to spawn shell now -05:52:48,359 INFO : Running anaconda script /usr/bin/anaconda -05:52:54,804 INFO : CentOS Linux is the highest priority installclass, using it -05:52:54,867 WARNING : /usr/lib/python2.6/site-packages/pykickstart/parser.py:713: DeprecationWarning: Script does not end with %end. This syntax has been deprecated. It may be removed from future releases, which will result in a fatal error from kickstart. Please modify your kickstart file to use this updated syntax. - warnings.warn(_("%s does not end with %%end. This syntax has been deprecated. It may be removed from future releases, which will result in a fatal error from kickstart. Please modify your kickstart file to use this updated syntax.") % _("Script"), DeprecationWarning) - -05:52:54,868 INFO : Running kickstart %%pre script(s) -05:52:54,868 WARNING : '/bin/sh' specified as full path -05:52:56,966 INFO : All kickstart %%pre script(s) have been run -05:52:57,017 INFO : ISCSID is /usr/sbin/iscsid -05:52:57,017 INFO : no initiator set -05:52:57,128 WARNING : '/usr/libexec/fcoe/fcoe_edd.sh' specified as full path -05:52:57,137 INFO : No FCoE EDD info found: No FCoE boot disk information is found in EDD! - -05:52:57,138 INFO : no /etc/zfcp.conf; not configuring zfcp -05:53:00,902 INFO : created new libuser.conf at /tmp/libuser.WMDW9M with instPath="/mnt/sysimage" -05:53:00,903 INFO : anaconda called with cmdline = ['/usr/bin/anaconda', '--stage2', 'http://10.145.88.211/cblr/links/CentOS-6.5-x86_64/images/install.img', '--kickstart', '/tmp/ks.cfg', '-T', '--selinux', '--lang', 'en_US', '--keymap', 'us', '--repo', 'http://10.145.88.211/cblr/links/CentOS-6.5-x86_64'] -05:53:00,903 INFO : Display mode = t -05:53:00,903 INFO : Default encoding = utf-8 -05:53:01,064 INFO : Detected 2016M of memory -05:53:01,064 INFO : Swap attempt of 4032M -05:53:01,398 INFO : ISCSID is /usr/sbin/iscsid -05:53:01,399 INFO : no initiator set -05:53:05,059 INFO : setting installation environment hostname to server1 -05:53:05,104 WARNING : Timezone US/Pacific set in kickstart is not valid. -05:53:05,276 INFO : Detected 2016M of memory -05:53:05,277 INFO : Suggested swap size (4032 M) exceeds 10 % of disk space, using 10 % of disk space (3276 M) instead. -05:53:05,277 INFO : Swap attempt of 3276M -05:53:05,453 WARNING : step installtype does not exist -05:53:05,454 WARNING : step confirminstall does not exist -05:53:05,454 WARNING : step complete does not exist -05:53:05,454 WARNING : step complete does not exist -05:53:05,454 WARNING : step complete does not exist -05:53:05,454 WARNING : step complete does not exist -05:53:05,455 WARNING : step complete does not exist -05:53:05,455 WARNING : step complete does not exist -05:53:05,455 WARNING : step complete does not exist -05:53:05,455 WARNING : step complete does not exist -05:53:05,455 WARNING : step complete does not exist -05:53:05,456 WARNING : step complete does not exist -05:53:05,456 WARNING : step complete does not exist -05:53:05,456 WARNING : step complete does not exist -05:53:05,456 WARNING : step complete does not exist -05:53:05,456 WARNING : step complete does not exist -05:53:05,457 WARNING : step complete does not exist -05:53:05,457 INFO : moving (1) to step setuptime -05:53:05,458 DEBUG : setuptime is a direct step -22:53:05,458 WARNING : '/usr/sbin/hwclock' specified as full path -22:53:06,002 INFO : leaving (1) step setuptime -22:53:06,003 INFO : moving (1) to step autopartitionexecute -22:53:06,003 DEBUG : autopartitionexecute is a direct step -22:53:06,138 INFO : leaving (1) step autopartitionexecute -22:53:06,138 INFO : moving (1) to step storagedone -22:53:06,138 DEBUG : storagedone is a direct step -22:53:06,138 INFO : leaving (1) step storagedone -22:53:06,139 INFO : moving (1) to step enablefilesystems -22:53:06,139 DEBUG : enablefilesystems is a direct step -22:53:10,959 DEBUG : notifying kernel of 'change' event on device /sys/class/block/sda3 -22:53:41,215 DEBUG : notifying kernel of 'change' event on device /sys/class/block/sda1 -22:53:57,388 DEBUG : notifying kernel of 'change' event on device /sys/class/block/sda3 -22:54:14,838 DEBUG : notifying kernel of 'change' event on device /sys/class/block/dm-0 -22:54:21,717 DEBUG : notifying kernel of 'change' event on device /sys/class/block/dm-1 -22:54:27,576 DEBUG : notifying kernel of 'change' event on device /sys/class/block/dm-2 -22:54:40,058 DEBUG : notifying kernel of 'change' event on device /sys/class/block/dm-3 -22:54:41,949 INFO : failed to set SELinux context for /mnt/sysimage: [Errno 95] Operation not supported -22:54:41,950 DEBUG : isys.py:mount()- going to mount /dev/mapper/server1-rootvol on /mnt/sysimage as ext3 with options defaults -22:54:42,826 DEBUG : isys.py:mount()- going to mount /dev/sda1 on /mnt/sysimage/boot as ext3 with options defaults -22:54:43,148 DEBUG : isys.py:mount()- going to mount //dev on /mnt/sysimage/dev as bind with options defaults,bind -22:54:43,158 DEBUG : isys.py:mount()- going to mount devpts on /mnt/sysimage/dev/pts as devpts with options gid=5,mode=620 -22:54:43,164 DEBUG : isys.py:mount()- going to mount tmpfs on /mnt/sysimage/dev/shm as tmpfs with options defaults -22:54:43,207 DEBUG : isys.py:mount()- going to mount /dev/mapper/server1-homevol on /mnt/sysimage/home as ext3 with options defaults -22:54:43,434 INFO : failed to get default SELinux context for /proc: [Errno 2] No such file or directory -22:54:43,435 DEBUG : isys.py:mount()- going to mount proc on /mnt/sysimage/proc as proc with options defaults -22:54:43,439 INFO : failed to get default SELinux context for /proc: [Errno 2] No such file or directory -22:54:43,496 DEBUG : isys.py:mount()- going to mount sysfs on /mnt/sysimage/sys as sysfs with options defaults -22:54:43,609 DEBUG : isys.py:mount()- going to mount /dev/mapper/server1-tmpvol on /mnt/sysimage/tmp as ext3 with options defaults -22:54:43,874 DEBUG : isys.py:mount()- going to mount /dev/mapper/server1-varvol on /mnt/sysimage/var as ext3 with options defaults -22:54:44,056 INFO : leaving (1) step enablefilesystems -22:54:44,057 INFO : moving (1) to step bootloadersetup -22:54:44,057 DEBUG : bootloadersetup is a direct step -22:54:44,061 INFO : leaving (1) step bootloadersetup -22:54:44,061 INFO : moving (1) to step reposetup -22:54:44,061 DEBUG : reposetup is a direct step -22:54:56,952 ERROR : Error downloading treeinfo file: [Errno 14] PYCURL ERROR 22 - "The requested URL returned error: 404 Not Found" -22:54:56,953 INFO : added repository ppa_repo with URL http://10.145.88.211:80/cobbler/repo_mirror/ppa_repo/ -22:54:57,133 DEBUG : Grabbing http://10.145.88.211/cblr/links/CentOS-6.5-x86_64/repodata/repomd.xml -22:54:57,454 DEBUG : Grabbing http://10.145.88.211/cblr/links/CentOS-6.5-x86_64/repodata/0e371b19e547b9d7a7e8acc4b8c0c7c074509d33653cfaef9e8f4fd1d62d95de-primary.sqlite.bz2 -22:54:58,637 DEBUG : Grabbing http://10.145.88.211/cblr/links/CentOS-6.5-x86_64/repodata/34bae2d3c9c78e04ed2429923bc095005af1b166d1a354422c4c04274bae0f59-c6-minimal-x86_64.xml -22:54:58,971 INFO : leaving (1) step reposetup -22:54:58,971 INFO : moving (1) to step basepkgsel -22:54:58,972 DEBUG : basepkgsel is a direct step -22:54:58,986 WARNING : not adding Base group -22:54:59,388 INFO : leaving (1) step basepkgsel -22:54:59,388 INFO : moving (1) to step postselection -22:54:59,388 DEBUG : postselection is a direct step -22:54:59,390 INFO : selected kernel package for kernel -22:54:59,848 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/fs/ext3/ext3.ko.gz -22:54:59,848 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/fs/jbd/jbd.ko.gz -22:54:59,848 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/fs/mbcache.ko.gz -22:54:59,848 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/scsi/fcoe/fcoe.ko.gz -22:54:59,848 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/scsi/fcoe/libfcoe.ko.gz -22:54:59,849 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/scsi/libfc/libfc.ko.gz -22:54:59,849 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/scsi/scsi_transport_fc.ko.gz -22:54:59,849 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/scsi/scsi_tgt.ko.gz -22:54:59,849 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/crypto/xts.ko.gz -22:54:59,849 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/crypto/lrw.ko.gz -22:54:59,849 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/crypto/gf128mul.ko.gz -22:54:59,849 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/crypto/sha256_generic.ko.gz -22:54:59,849 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/crypto/cbc.ko.gz -22:54:59,849 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/md/dm-raid.ko.gz -22:54:59,849 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/md/dm-crypt.ko.gz -22:54:59,850 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/md/dm-round-robin.ko.gz -22:54:59,850 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/md/dm-multipath.ko.gz -22:54:59,850 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/md/dm-snapshot.ko.gz -22:54:59,850 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/md/dm-mirror.ko.gz -22:54:59,850 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/md/dm-region-hash.ko.gz -22:54:59,850 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/md/dm-log.ko.gz -22:54:59,850 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/md/dm-zero.ko.gz -22:54:59,850 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/md/dm-mod.ko.gz -22:54:59,850 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/md/linear.ko.gz -22:54:59,850 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/md/raid10.ko.gz -22:54:59,850 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/md/raid456.ko.gz -22:54:59,851 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/crypto/async_tx/async_raid6_recov.ko.gz -22:54:59,851 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/crypto/async_tx/async_pq.ko.gz -22:54:59,851 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/lib/raid6/raid6_pq.ko.gz -22:54:59,851 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/crypto/async_tx/async_xor.ko.gz -22:54:59,851 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/crypto/xor.ko.gz -22:54:59,851 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/crypto/async_tx/async_memcpy.ko.gz -22:54:59,851 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/crypto/async_tx/async_tx.ko.gz -22:54:59,851 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/md/raid1.ko.gz -22:54:59,851 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/md/raid0.ko.gz -22:54:59,852 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/net/8021q/8021q.ko.gz -22:54:59,852 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/net/802/garp.ko.gz -22:54:59,852 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/net/802/stp.ko.gz -22:54:59,852 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/net/llc/llc.ko.gz -22:54:59,852 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/infiniband/hw/mlx4/mlx4_ib.ko.gz -22:54:59,852 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/net/mlx4/mlx4_en.ko.gz -22:54:59,852 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/net/mlx4/mlx4_core.ko.gz -22:54:59,852 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/infiniband/ulp/ipoib/ib_ipoib.ko.gz -22:54:59,852 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/infiniband/core/ib_cm.ko.gz -22:54:59,853 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/infiniband/core/ib_sa.ko.gz -22:54:59,853 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/infiniband/core/ib_mad.ko.gz -22:54:59,853 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/infiniband/core/ib_core.ko.gz -22:54:59,853 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/scsi/sg.ko.gz -22:54:59,853 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/scsi/sd_mod.ko.gz -22:54:59,853 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/lib/crc-t10dif.ko.gz -22:54:59,853 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/net/e1000/e1000.ko.gz -22:54:59,853 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/scsi/sr_mod.ko.gz -22:54:59,853 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/cdrom/cdrom.ko.gz -22:54:59,853 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/misc/vmware_balloon.ko.gz -22:54:59,853 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/message/fusion/mptspi.ko.gz -22:54:59,854 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/message/fusion/mptscsih.ko.gz -22:54:59,854 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/message/fusion/mptbase.ko.gz -22:54:59,854 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/scsi/scsi_transport_spi.ko.gz -22:54:59,854 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/ata/pata_acpi.ko.gz -22:54:59,854 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/ata/ata_generic.ko.gz -22:54:59,854 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/ata/ata_piix.ko.gz -22:54:59,854 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/net/ipv6/ipv6.ko.gz -22:54:59,854 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/firmware/iscsi_ibft.ko.gz -22:54:59,854 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/scsi/iscsi_boot_sysfs.ko.gz -22:54:59,854 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/input/misc/pcspkr.ko.gz -22:54:59,855 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/firmware/edd.ko.gz -22:54:59,855 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/block/floppy.ko.gz -22:54:59,855 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/scsi/iscsi_tcp.ko.gz -22:54:59,855 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/scsi/libiscsi_tcp.ko.gz -22:54:59,855 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/scsi/libiscsi.ko.gz -22:54:59,855 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/scsi/scsi_transport_iscsi.ko.gz -22:54:59,855 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/fs/squashfs/squashfs.ko.gz -22:54:59,855 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/fs/cramfs/cramfs.ko.gz -22:55:07,745 INFO : leaving (1) step postselection -22:55:07,745 INFO : moving (1) to step install -22:55:07,748 INFO : leaving (1) step install -22:55:07,748 INFO : moving (1) to step preinstallconfig -22:55:07,748 DEBUG : preinstallconfig is a direct step -22:55:08,087 DEBUG : isys.py:mount()- going to mount /selinux on /mnt/sysimage/selinux as selinuxfs with options defaults -22:55:08,091 DEBUG : isys.py:mount()- going to mount /proc/bus/usb on /mnt/sysimage/proc/bus/usb as usbfs with options defaults -22:55:08,102 INFO : copy_to_sysimage: source '/etc/multipath/wwids' does not exist. -22:55:08,102 INFO : copy_to_sysimage: source '/etc/multipath/bindings' does not exist. -22:55:08,118 INFO : copy_to_sysimage: source '/etc/multipath/wwids' does not exist. -22:55:08,118 INFO : copy_to_sysimage: source '/etc/multipath/bindings' does not exist. -22:55:08,122 INFO : leaving (1) step preinstallconfig -22:55:08,122 INFO : moving (1) to step installpackages -22:55:08,122 DEBUG : installpackages is a direct step -22:55:08,122 INFO : Preparing to install packages -23:17:06,152 INFO : leaving (1) step installpackages -23:17:06,153 INFO : moving (1) to step postinstallconfig -23:17:06,153 DEBUG : postinstallconfig is a direct step -23:17:06,162 DEBUG : Removing cachedir: /mnt/sysimage/var/cache/yum/anaconda-CentOS-201311291202.x86_64 -23:17:06,181 DEBUG : Removing headers and packages from /mnt/sysimage/var/cache/yum/ppa_repo -23:17:06,183 INFO : leaving (1) step postinstallconfig -23:17:06,184 INFO : moving (1) to step writeconfig -23:17:06,184 DEBUG : writeconfig is a direct step -23:17:06,184 INFO : Writing main configuration -23:17:06,219 WARNING : '/usr/sbin/authconfig' specified as full path -23:17:11,643 WARNING : '/usr/sbin/lokkit' specified as full path -23:17:11,703 WARNING : '/usr/sbin/lokkit' specified as full path -23:17:11,885 INFO : removing libuser.conf at /tmp/libuser.WMDW9M -23:17:11,885 INFO : created new libuser.conf at /tmp/libuser.WMDW9M with instPath="/mnt/sysimage" -23:17:12,722 INFO : leaving (1) step writeconfig -23:17:12,722 INFO : moving (1) to step firstboot -23:17:12,723 DEBUG : firstboot is a direct step -23:17:12,723 INFO : leaving (1) step firstboot -23:17:12,723 INFO : moving (1) to step instbootloader -23:17:12,724 DEBUG : instbootloader is a direct step -23:17:14,664 WARNING : '/sbin/grub-install' specified as full path -23:17:15,006 WARNING : '/sbin/grub' specified as full path -23:17:16,039 INFO : leaving (1) step instbootloader -23:17:16,040 INFO : moving (1) to step reipl -23:17:16,040 DEBUG : reipl is a direct step -23:17:16,040 INFO : leaving (1) step reipl -23:17:16,040 INFO : moving (1) to step writeksconfig -23:17:16,040 DEBUG : writeksconfig is a direct step -23:17:16,041 INFO : Writing autokickstart file -23:17:16,070 INFO : leaving (1) step writeksconfig -23:17:16,071 INFO : moving (1) to step setfilecon -23:17:16,071 DEBUG : setfilecon is a direct step -23:17:16,071 INFO : setting SELinux contexts for anaconda created files -23:17:17,822 INFO : leaving (1) step setfilecon -23:17:17,822 INFO : moving (1) to step copylogs -23:17:17,822 DEBUG : copylogs is a direct step -23:17:17,822 INFO : Copying anaconda logs -23:17:17,825 INFO : leaving (1) step copylogs -23:17:17,825 INFO : moving (1) to step methodcomplete -23:17:17,825 DEBUG : methodcomplete is a direct step -23:17:17,825 INFO : leaving (1) step methodcomplete -23:17:17,826 INFO : moving (1) to step postscripts -23:17:17,826 DEBUG : postscripts is a direct step -23:17:17,826 INFO : Running kickstart %%post script(s) -23:17:17,858 WARNING : '/bin/sh' specified as full path -23:17:21,002 INFO : All kickstart %%post script(s) have been run -23:17:21,002 INFO : leaving (1) step postscripts -23:17:21,002 INFO : moving (1) to step dopostaction -23:17:21,002 DEBUG : dopostaction is a direct step -23:17:21,003 INFO : leaving (1) step dopostaction diff --git a/compass/tests/actions/update_progress/data/test2/anamon/checkpoint_5/server1.1/chef-client.log.template b/compass/tests/actions/update_progress/data/test2/anamon/checkpoint_5/server1.1/chef-client.log.template deleted file mode 100644 index 58640d9d..00000000 --- a/compass/tests/actions/update_progress/data/test2/anamon/checkpoint_5/server1.1/chef-client.log.template +++ /dev/null @@ -1,422 +0,0 @@ -Feb 21 20:39:11 server1.1 [2014-02-21T20:39:11-08:00] INFO: execute[Keystone: sleep] ran successfully -Feb 21 20:39:11 server1.1 [2014-02-21T20:39:11-08:00] INFO: Processing directory[/etc/keystone] action create (openstack-identity::server line 73) -Feb 21 20:39:11 server1.1 [2014-02-21T20:39:11-08:00] INFO: directory[/etc/keystone] owner changed to 163 -Feb 21 20:39:11 server1.1 [2014-02-21T20:39:11-08:00] INFO: directory[/etc/keystone] mode changed to 700 -Feb 21 20:39:11 server1.1 [2014-02-21T20:39:11-08:00] INFO: Processing directory[/etc/keystone/ssl] action create (openstack-identity::server line 79) -Feb 21 20:39:11 server1.1 [2014-02-21T20:39:11-08:00] INFO: Processing file[/var/lib/keystone/keystone.db] action delete (openstack-identity::server line 87) -Feb 21 20:39:11 server1.1 [2014-02-21T20:39:11-08:00] INFO: Processing execute[keystone-manage pki_setup] action run (openstack-identity::server line 91) -Feb 21 20:39:11 server1.1 [2014-02-21T20:39:11-08:00] INFO: Processing template[/etc/keystone/keystone.conf] action create (openstack-identity::server line 140) -Feb 21 20:39:11 server1.1 [2014-02-21T20:39:11-08:00] INFO: template[/etc/keystone/keystone.conf] backed up to /var/chef/backup/etc/keystone/keystone.conf.chef-20140221203911.069202 -Feb 21 20:39:11 server1.1 [2014-02-21T20:39:11-08:00] INFO: template[/etc/keystone/keystone.conf] updated file contents /etc/keystone/keystone.conf -Feb 21 20:39:11 server1.1 [2014-02-21T20:39:11-08:00] INFO: template[/etc/keystone/keystone.conf] owner changed to 163 -Feb 21 20:39:11 server1.1 [2014-02-21T20:39:11-08:00] INFO: template[/etc/keystone/keystone.conf] mode changed to 644 -Feb 21 20:39:11 server1.1 [2014-02-21T20:39:11-08:00] INFO: template[/etc/keystone/keystone.conf] sending restart action to service[keystone] (immediate) -Feb 21 20:39:11 server1.1 [2014-02-21T20:39:11-08:00] INFO: Processing service[keystone] action restart (openstack-identity::server line 64) -Feb 21 20:39:12 server1.1 [2014-02-21T20:39:11-08:00] INFO: service[keystone] restarted -Feb 21 20:39:12 server1.1 [2014-02-21T20:39:11-08:00] INFO: service[keystone] sending run action to execute[Keystone: sleep] (immediate) -Feb 21 20:39:12 server1.1 [2014-02-21T20:39:11-08:00] INFO: Processing execute[Keystone: sleep] action run (openstack-identity::server line 58) -Feb 21 20:39:22 server1.1 [2014-02-21T20:39:21-08:00] INFO: execute[Keystone: sleep] ran successfully -Feb 21 20:39:22 server1.1 [2014-02-21T20:39:21-08:00] INFO: Processing template[/etc/keystone/default_catalog.templates] action create (openstack-identity::server line 158) -Feb 21 20:39:22 server1.1 [2014-02-21T20:39:21-08:00] INFO: Processing execute[keystone-manage db_sync] action run (openstack-identity::server line 172) -Feb 21 20:39:43 server1.1 [2014-02-21T20:39:42-08:00] INFO: execute[keystone-manage db_sync] ran successfully -Feb 21 20:39:43 server1.1 [2014-02-21T20:39:42-08:00] INFO: Processing bash[bootstrap-keystone-admin] action run (openstack-identity::registration line 40) -Feb 21 20:39:45 server1.1 [2014-02-21T20:39:44-08:00] INFO: bash[bootstrap-keystone-admin] ran successfully -Feb 21 20:39:45 server1.1 [2014-02-21T20:39:44-08:00] INFO: Processing openstack-identity_register[Register 'admin' Tenant] action create_tenant (openstack-identity::registration line 80) -Feb 21 20:39:45 server1.1 [2014-02-21T20:39:44-08:00] INFO: Tenant 'admin' already exists.. Not creating. -Feb 21 20:39:45 server1.1 [2014-02-21T20:39:44-08:00] INFO: Tenant UUID: 87cf46951cc14159bd16b68e3eb96321 -Feb 21 20:39:45 server1.1 [2014-02-21T20:39:44-08:00] INFO: Processing openstack-identity_register[Register 'service' Tenant] action create_tenant (openstack-identity::registration line 80) -Feb 21 20:39:46 server1.1 [2014-02-21T20:39:45-08:00] INFO: Created tenant 'service' -Feb 21 20:39:46 server1.1 [2014-02-21T20:39:45-08:00] INFO: Processing openstack-identity_register[Register 'admin' Role] action create_role (openstack-identity::registration line 92) -Feb 21 20:39:46 server1.1 [2014-02-21T20:39:45-08:00] INFO: Role 'admin' already exists.. Not creating. -Feb 21 20:39:46 server1.1 [2014-02-21T20:39:45-08:00] INFO: Role UUID: 8070c199fc2647c9a50176d11256bebc -Feb 21 20:39:46 server1.1 [2014-02-21T20:39:45-08:00] INFO: Processing openstack-identity_register[Register 'Member' Role] action create_role (openstack-identity::registration line 92) -Feb 21 20:39:47 server1.1 [2014-02-21T20:39:46-08:00] INFO: Created Role 'Member' -Feb 21 20:39:47 server1.1 [2014-02-21T20:39:46-08:00] INFO: Processing openstack-identity_register[Register 'compute' User] action create_user (openstack-identity::registration line 109) -Feb 21 20:39:48 server1.1 [2014-02-21T20:39:47-08:00] INFO: Created user 'service' for tenant 'service' -Feb 21 20:39:48 server1.1 [2014-02-21T20:39:47-08:00] INFO: Processing openstack-identity_register[Grant admin Role to service User in service Tenant] action grant_role (openstack-identity::registration line 119) -Feb 21 20:39:49 server1.1 [2014-02-21T20:39:48-08:00] INFO: Granted Role 'admin' to User 'service' in Tenant 'service' -Feb 21 20:39:49 server1.1 [2014-02-21T20:39:48-08:00] INFO: Processing openstack-identity_register[Register compute Service] action create_service (openstack-identity::registration line 131) -Feb 21 20:39:50 server1.1 [2014-02-21T20:39:49-08:00] INFO: Created service 'nova' -Feb 21 20:39:50 server1.1 [2014-02-21T20:39:49-08:00] INFO: Processing openstack-identity_register[Register compute Endpoint] action create_endpoint (openstack-identity::registration line 151) -Feb 21 20:39:50 server1.1 [2014-02-21T20:39:50-08:00] INFO: Created endpoint for service type 'compute' -Feb 21 20:39:50 server1.1 [2014-02-21T20:39:50-08:00] INFO: Processing openstack-identity_register[Register 'network' User] action create_user (openstack-identity::registration line 109) -Feb 21 20:39:51 server1.1 [2014-02-21T20:39:50-08:00] INFO: User 'service' already exists for tenant 'service' -Feb 21 20:39:51 server1.1 [2014-02-21T20:39:50-08:00] INFO: Processing openstack-identity_register[Grant admin Role to service User in service Tenant] action grant_role (openstack-identity::registration line 119) -Feb 21 20:39:52 server1.1 [2014-02-21T20:39:51-08:00] INFO: Role 'admin' already granted to User 'service' in Tenant 'service' -Feb 21 20:39:52 server1.1 [2014-02-21T20:39:51-08:00] INFO: Processing openstack-identity_register[Register network Service] action create_service (openstack-identity::registration line 131) -Feb 21 20:39:53 server1.1 [2014-02-21T20:39:52-08:00] INFO: Created service 'quantum' -Feb 21 20:39:53 server1.1 [2014-02-21T20:39:52-08:00] INFO: Processing openstack-identity_register[Register network Endpoint] action create_endpoint (openstack-identity::registration line 151) -Feb 21 20:39:54 server1.1 [2014-02-21T20:39:53-08:00] INFO: Created endpoint for service type 'network' -Feb 21 20:39:54 server1.1 [2014-02-21T20:39:53-08:00] INFO: Processing openstack-identity_register[Register 'volume' User] action create_user (openstack-identity::registration line 109) -Feb 21 20:39:54 server1.1 [2014-02-21T20:39:53-08:00] INFO: User 'service' already exists for tenant 'service' -Feb 21 20:39:54 server1.1 [2014-02-21T20:39:53-08:00] INFO: Processing openstack-identity_register[Grant admin Role to service User in service Tenant] action grant_role (openstack-identity::registration line 119) -Feb 21 20:39:55 server1.1 [2014-02-21T20:39:54-08:00] INFO: Role 'admin' already granted to User 'service' in Tenant 'service' -Feb 21 20:39:55 server1.1 [2014-02-21T20:39:54-08:00] INFO: Processing openstack-identity_register[Register volume Service] action create_service (openstack-identity::registration line 131) -Feb 21 20:39:56 server1.1 [2014-02-21T20:39:55-08:00] INFO: Created service 'cinder' -Feb 21 20:39:56 server1.1 [2014-02-21T20:39:55-08:00] INFO: Processing openstack-identity_register[Register volume Endpoint] action create_endpoint (openstack-identity::registration line 151) -Feb 21 20:39:57 server1.1 [2014-02-21T20:39:56-08:00] INFO: Created endpoint for service type 'volume' -Feb 21 20:39:57 server1.1 [2014-02-21T20:39:56-08:00] INFO: Processing openstack-identity_register[Register identity Service] action create_service (openstack-identity::registration line 131) -Feb 21 20:39:57 server1.1 [2014-02-21T20:39:56-08:00] INFO: Created service 'keystone' -Feb 21 20:39:57 server1.1 [2014-02-21T20:39:56-08:00] INFO: Processing openstack-identity_register[Register identity Endpoint] action create_endpoint (openstack-identity::registration line 151) -Feb 21 20:39:58 server1.1 [2014-02-21T20:39:57-08:00] INFO: Created endpoint for service type 'identity' -Feb 21 20:39:58 server1.1 [2014-02-21T20:39:57-08:00] INFO: Processing openstack-identity_register[Register 'image' User] action create_user (openstack-identity::registration line 109) -Feb 21 20:39:59 server1.1 [2014-02-21T20:39:58-08:00] INFO: User 'service' already exists for tenant 'service' -Feb 21 20:39:59 server1.1 [2014-02-21T20:39:58-08:00] INFO: Processing openstack-identity_register[Grant admin Role to service User in service Tenant] action grant_role (openstack-identity::registration line 119) -Feb 21 20:40:00 server1.1 [2014-02-21T20:39:59-08:00] INFO: Role 'admin' already granted to User 'service' in Tenant 'service' -Feb 21 20:40:00 server1.1 [2014-02-21T20:39:59-08:00] INFO: Processing openstack-identity_register[Register image Service] action create_service (openstack-identity::registration line 131) -Feb 21 20:40:00 server1.1 [2014-02-21T20:40:00-08:00] INFO: Created service 'glance' -Feb 21 20:40:00 server1.1 [2014-02-21T20:40:00-08:00] INFO: Processing openstack-identity_register[Register image Endpoint] action create_endpoint (openstack-identity::registration line 151) -Feb 21 20:40:01 server1.1 [2014-02-21T20:40:00-08:00] INFO: Created endpoint for service type 'image' -Feb 21 20:40:01 server1.1 [2014-02-21T20:40:00-08:00] INFO: Processing openstack-identity_register[Register 'object-store' User] action create_user (openstack-identity::registration line 109) -Feb 21 20:40:02 server1.1 [2014-02-21T20:40:01-08:00] INFO: User 'service' already exists for tenant 'service' -Feb 21 20:40:02 server1.1 [2014-02-21T20:40:01-08:00] INFO: Processing openstack-identity_register[Grant admin Role to service User in service Tenant] action grant_role (openstack-identity::registration line 119) -Feb 21 20:40:03 server1.1 [2014-02-21T20:40:02-08:00] INFO: Role 'admin' already granted to User 'service' in Tenant 'service' -Feb 21 20:40:03 server1.1 [2014-02-21T20:40:02-08:00] INFO: Processing openstack-identity_register[Register object-store Service] action create_service (openstack-identity::registration line 131) -Feb 21 20:40:04 server1.1 [2014-02-21T20:40:03-08:00] INFO: Created service 'swift' -Feb 21 20:40:04 server1.1 [2014-02-21T20:40:03-08:00] INFO: Processing openstack-identity_register[Create EC2 credentials for 'admin' user] action create_ec2_credentials (openstack-identity::registration line 166) -Feb 21 20:40:05 server1.1 [2014-02-21T20:40:04-08:00] INFO: Created EC2 Credentials for User 'admin' in Tenant 'admin' -Feb 21 20:40:05 server1.1 [2014-02-21T20:40:04-08:00] INFO: Processing openstack-identity_register[Create EC2 credentials for 'monitoring' user] action create_ec2_credentials (openstack-identity::registration line 166) -Feb 21 20:40:07 server1.1 [2014-02-21T20:40:06-08:00] ERROR: Unable to create EC2 Credentials for User 'monitoring' in Tenant 'service' -Feb 21 20:40:07 server1.1 [2014-02-21T20:40:06-08:00] ERROR: Error was: Could not lookup uuid for ec2-credentials:tenant=>service. Error was 'Client' object has no attribute 'auth_user_id' -Feb 21 20:40:07 server1.1 (1) -Feb 21 20:40:07 server1.1 [2014-02-21T20:40:06-08:00] INFO: Processing package[openstack-cinder] action upgrade (openstack-block-storage::cinder-common line 26) -Feb 21 20:40:07 server1.1 [2014-02-21T20:40:06-08:00] INFO: package[openstack-cinder] installing openstack-cinder-2013.1.4-1.el6 from openstack repository -Feb 21 20:41:11 server1.1 [2014-02-21T20:41:10-08:00] INFO: package[openstack-cinder] upgraded from uninstalled to 2013.1.4-1.el6 -Feb 21 20:41:11 server1.1 [2014-02-21T20:41:10-08:00] INFO: Processing directory[/etc/cinder] action create (openstack-block-storage::cinder-common line 44) -Feb 21 20:41:11 server1.1 [2014-02-21T20:41:10-08:00] INFO: directory[/etc/cinder] owner changed to 165 -Feb 21 20:41:11 server1.1 [2014-02-21T20:41:10-08:00] INFO: directory[/etc/cinder] group changed to 165 -Feb 21 20:41:11 server1.1 [2014-02-21T20:41:10-08:00] INFO: directory[/etc/cinder] mode changed to 750 -Feb 21 20:41:11 server1.1 [2014-02-21T20:41:10-08:00] INFO: Processing template[/etc/cinder/cinder.conf] action create (openstack-block-storage::cinder-common line 51) -Feb 21 20:41:11 server1.1 [2014-02-21T20:41:10-08:00] INFO: template[/etc/cinder/cinder.conf] backed up to /var/chef/backup/etc/cinder/cinder.conf.chef-20140221204110.415861 -Feb 21 20:41:11 server1.1 [2014-02-21T20:41:10-08:00] INFO: template[/etc/cinder/cinder.conf] updated file contents /etc/cinder/cinder.conf -Feb 21 20:41:11 server1.1 [2014-02-21T20:41:10-08:00] INFO: template[/etc/cinder/cinder.conf] owner changed to 165 -Feb 21 20:41:11 server1.1 [2014-02-21T20:41:10-08:00] INFO: template[/etc/cinder/cinder.conf] mode changed to 644 -Feb 21 20:41:11 server1.1 [2014-02-21T20:41:10-08:00] INFO: Processing package[python-cinderclient] action upgrade (openstack-block-storage::api line 32) -Feb 21 20:41:11 server1.1 [2014-02-21T20:41:10-08:00] INFO: Processing package[MySQL-python] action upgrade (openstack-block-storage::api line 41) -Feb 21 20:41:11 server1.1 [2014-02-21T20:41:10-08:00] INFO: Processing directory[/var/cache/cinder] action create (openstack-block-storage::api line 46) -Feb 21 20:41:11 server1.1 [2014-02-21T20:41:10-08:00] INFO: directory[/var/cache/cinder] created directory /var/cache/cinder -Feb 21 20:41:11 server1.1 [2014-02-21T20:41:10-08:00] INFO: directory[/var/cache/cinder] owner changed to 165 -Feb 21 20:41:11 server1.1 [2014-02-21T20:41:10-08:00] INFO: directory[/var/cache/cinder] group changed to 165 -Feb 21 20:41:11 server1.1 [2014-02-21T20:41:10-08:00] INFO: directory[/var/cache/cinder] mode changed to 700 -Feb 21 20:41:11 server1.1 [2014-02-21T20:41:10-08:00] INFO: Processing directory[/var/lock/cinder] action create (openstack-block-storage::api line 52) -Feb 21 20:41:11 server1.1 [2014-02-21T20:41:10-08:00] INFO: directory[/var/lock/cinder] created directory /var/lock/cinder -Feb 21 20:41:11 server1.1 [2014-02-21T20:41:10-08:00] INFO: directory[/var/lock/cinder] owner changed to 165 -Feb 21 20:41:11 server1.1 [2014-02-21T20:41:10-08:00] INFO: directory[/var/lock/cinder] group changed to 165 -Feb 21 20:41:11 server1.1 [2014-02-21T20:41:10-08:00] INFO: directory[/var/lock/cinder] mode changed to 700 -Feb 21 20:41:11 server1.1 [2014-02-21T20:41:10-08:00] INFO: Processing service[cinder-api] action enable (openstack-block-storage::api line 58) -Feb 21 20:41:11 server1.1 [2014-02-21T20:41:10-08:00] INFO: service[cinder-api] enabled -Feb 21 20:41:11 server1.1 [2014-02-21T20:41:10-08:00] INFO: Processing execute[cinder-manage db sync] action run (openstack-block-storage::api line 71) -Feb 21 20:41:30 server1.1 [2014-02-21T20:41:30-08:00] INFO: execute[cinder-manage db sync] ran successfully -Feb 21 20:41:30 server1.1 [2014-02-21T20:41:30-08:00] INFO: Processing template[/etc/cinder/api-paste.ini] action create (openstack-block-storage::api line 73) -Feb 21 20:41:30 server1.1 [2014-02-21T20:41:30-08:00] INFO: template[/etc/cinder/api-paste.ini] backed up to /var/chef/backup/etc/cinder/api-paste.ini.chef-20140221204130.194587 -Feb 21 20:41:30 server1.1 [2014-02-21T20:41:30-08:00] INFO: template[/etc/cinder/api-paste.ini] updated file contents /etc/cinder/api-paste.ini -Feb 21 20:41:30 server1.1 [2014-02-21T20:41:30-08:00] INFO: template[/etc/cinder/api-paste.ini] owner changed to 165 -Feb 21 20:41:30 server1.1 [2014-02-21T20:41:30-08:00] INFO: template[/etc/cinder/api-paste.ini] mode changed to 644 -Feb 21 20:41:30 server1.1 [2014-02-21T20:41:30-08:00] INFO: template[/etc/cinder/api-paste.ini] sending restart action to service[cinder-api] (immediate) -Feb 21 20:41:30 server1.1 [2014-02-21T20:41:30-08:00] INFO: Processing service[cinder-api] action restart (openstack-block-storage::api line 58) -Feb 21 20:41:31 server1.1 [2014-02-21T20:41:30-08:00] INFO: service[cinder-api] restarted -Feb 21 20:41:31 server1.1 [2014-02-21T20:41:30-08:00] INFO: Processing template[/etc/cinder/policy.json] action create (openstack-block-storage::api line 88) -Feb 21 20:41:31 server1.1 [2014-02-21T20:41:30-08:00] INFO: template[/etc/cinder/policy.json] backed up to /var/chef/backup/etc/cinder/policy.json.chef-20140221204130.442890 -Feb 21 20:41:31 server1.1 [2014-02-21T20:41:30-08:00] INFO: template[/etc/cinder/policy.json] updated file contents /etc/cinder/policy.json -Feb 21 20:41:31 server1.1 [2014-02-21T20:41:30-08:00] INFO: template[/etc/cinder/policy.json] owner changed to 165 -Feb 21 20:41:31 server1.1 [2014-02-21T20:41:30-08:00] INFO: template[/etc/cinder/policy.json] mode changed to 644 -Feb 21 20:41:31 server1.1 [2014-02-21T20:41:30-08:00] INFO: template[/etc/cinder/policy.json] not queuing delayed action restart on service[cinder-api] (delayed), as it's already been queued -Feb 21 20:41:31 server1.1 [2014-02-21T20:41:30-08:00] INFO: Processing package[MySQL-python] action upgrade (openstack-block-storage::scheduler line 45) -Feb 21 20:41:31 server1.1 [2014-02-21T20:41:30-08:00] INFO: Processing service[cinder-scheduler] action enable (openstack-block-storage::scheduler line 50) -Feb 21 20:41:31 server1.1 [2014-02-21T20:41:30-08:00] INFO: service[cinder-scheduler] enabled -Feb 21 20:41:31 server1.1 [2014-02-21T20:41:30-08:00] INFO: Processing service[cinder-scheduler] action start (openstack-block-storage::scheduler line 50) -Feb 21 20:41:31 server1.1 [2014-02-21T20:41:30-08:00] INFO: service[cinder-scheduler] started -Feb 21 20:41:31 server1.1 [2014-02-21T20:41:30-08:00] INFO: Processing package[openstack-nova-common] action upgrade (openstack-compute::nova-common line 37) -Feb 21 20:41:31 server1.1 [2014-02-21T20:41:30-08:00] INFO: package[openstack-nova-common] installing openstack-nova-common-2013.1.4-7.el6 from openstack repository -Feb 21 20:41:52 server1.1 [2014-02-21T20:41:52-08:00] INFO: package[openstack-nova-common] upgraded from uninstalled to 2013.1.4-7.el6 -Feb 21 20:41:52 server1.1 [2014-02-21T20:41:52-08:00] INFO: Processing package[python-memcached] action install (openstack-compute::nova-common line 46) -Feb 21 20:41:53 server1.1 [2014-02-21T20:41:52-08:00] INFO: Processing directory[/etc/nova] action create (openstack-compute::nova-common line 51) -Feb 21 20:41:53 server1.1 [2014-02-21T20:41:52-08:00] INFO: directory[/etc/nova] owner changed to 162 -Feb 21 20:41:53 server1.1 [2014-02-21T20:41:52-08:00] INFO: directory[/etc/nova] group changed to 162 -Feb 21 20:41:53 server1.1 [2014-02-21T20:41:52-08:00] INFO: directory[/etc/nova] mode changed to 700 -Feb 21 20:41:53 server1.1 [2014-02-21T20:41:52-08:00] INFO: Processing directory[/etc/nova/rootwrap.d] action create (openstack-compute::nova-common line 59) -Feb 21 20:41:53 server1.1 [2014-02-21T20:41:52-08:00] INFO: directory[/etc/nova/rootwrap.d] created directory /etc/nova/rootwrap.d -Feb 21 20:41:53 server1.1 [2014-02-21T20:41:52-08:00] INFO: directory[/etc/nova/rootwrap.d] owner changed to 0 -Feb 21 20:41:53 server1.1 [2014-02-21T20:41:52-08:00] INFO: directory[/etc/nova/rootwrap.d] group changed to 0 -Feb 21 20:41:53 server1.1 [2014-02-21T20:41:52-08:00] INFO: directory[/etc/nova/rootwrap.d] mode changed to 700 -Feb 21 20:41:53 server1.1 [2014-02-21T20:41:52-08:00] INFO: Processing template[/etc/nova/nova.conf] action create (openstack-compute::nova-common line 134) -Feb 21 20:41:53 server1.1 [2014-02-21T20:41:52-08:00] INFO: template[/etc/nova/nova.conf] backed up to /var/chef/backup/etc/nova/nova.conf.chef-20140221204152.340272 -Feb 21 20:41:53 server1.1 [2014-02-21T20:41:52-08:00] INFO: template[/etc/nova/nova.conf] updated file contents /etc/nova/nova.conf -Feb 21 20:41:53 server1.1 [2014-02-21T20:41:52-08:00] INFO: template[/etc/nova/nova.conf] owner changed to 162 -Feb 21 20:41:53 server1.1 [2014-02-21T20:41:52-08:00] INFO: template[/etc/nova/nova.conf] mode changed to 644 -Feb 21 20:41:53 server1.1 [2014-02-21T20:41:52-08:00] INFO: Processing template[/etc/nova/rootwrap.conf] action create (openstack-compute::nova-common line 164) -Feb 21 20:41:53 server1.1 [2014-02-21T20:41:52-08:00] INFO: template[/etc/nova/rootwrap.conf] backed up to /var/chef/backup/etc/nova/rootwrap.conf.chef-20140221204152.347747 -Feb 21 20:41:53 server1.1 [2014-02-21T20:41:52-08:00] INFO: template[/etc/nova/rootwrap.conf] updated file contents /etc/nova/rootwrap.conf -Feb 21 20:41:53 server1.1 [2014-02-21T20:41:52-08:00] INFO: template[/etc/nova/rootwrap.conf] group changed to 0 -Feb 21 20:41:53 server1.1 [2014-02-21T20:41:52-08:00] INFO: template[/etc/nova/rootwrap.conf] mode changed to 644 -Feb 21 20:41:53 server1.1 [2014-02-21T20:41:52-08:00] INFO: Processing template[/etc/nova/rootwrap.d/api-metadata.filters] action create (openstack-compute::nova-common line 172) -Feb 21 20:41:53 server1.1 [2014-02-21T20:41:52-08:00] INFO: template[/etc/nova/rootwrap.d/api-metadata.filters] created file /etc/nova/rootwrap.d/api-metadata.filters -Feb 21 20:41:53 server1.1 [2014-02-21T20:41:52-08:00] INFO: template[/etc/nova/rootwrap.d/api-metadata.filters] updated file contents /etc/nova/rootwrap.d/api-metadata.filters -Feb 21 20:41:53 server1.1 [2014-02-21T20:41:52-08:00] INFO: template[/etc/nova/rootwrap.d/api-metadata.filters] owner changed to 0 -Feb 21 20:41:53 server1.1 [2014-02-21T20:41:52-08:00] INFO: template[/etc/nova/rootwrap.d/api-metadata.filters] group changed to 0 -Feb 21 20:41:53 server1.1 [2014-02-21T20:41:52-08:00] INFO: template[/etc/nova/rootwrap.d/api-metadata.filters] mode changed to 644 -Feb 21 20:41:53 server1.1 [2014-02-21T20:41:52-08:00] INFO: Processing template[/etc/nova/rootwrap.d/compute.filters] action create (openstack-compute::nova-common line 180) -Feb 21 20:41:53 server1.1 [2014-02-21T20:41:52-08:00] INFO: template[/etc/nova/rootwrap.d/compute.filters] created file /etc/nova/rootwrap.d/compute.filters -Feb 21 20:41:53 server1.1 [2014-02-21T20:41:52-08:00] INFO: template[/etc/nova/rootwrap.d/compute.filters] updated file contents /etc/nova/rootwrap.d/compute.filters -Feb 21 20:41:53 server1.1 [2014-02-21T20:41:52-08:00] INFO: template[/etc/nova/rootwrap.d/compute.filters] owner changed to 0 -Feb 21 20:41:53 server1.1 [2014-02-21T20:41:52-08:00] INFO: template[/etc/nova/rootwrap.d/compute.filters] group changed to 0 -Feb 21 20:41:53 server1.1 [2014-02-21T20:41:52-08:00] INFO: template[/etc/nova/rootwrap.d/compute.filters] mode changed to 644 -Feb 21 20:41:53 server1.1 [2014-02-21T20:41:52-08:00] INFO: Processing template[/etc/nova/rootwrap.d/network.filters] action create (openstack-compute::nova-common line 188) -Feb 21 20:41:53 server1.1 [2014-02-21T20:41:52-08:00] INFO: template[/etc/nova/rootwrap.d/network.filters] created file /etc/nova/rootwrap.d/network.filters -Feb 21 20:41:53 server1.1 [2014-02-21T20:41:52-08:00] INFO: template[/etc/nova/rootwrap.d/network.filters] updated file contents /etc/nova/rootwrap.d/network.filters -Feb 21 20:41:53 server1.1 [2014-02-21T20:41:52-08:00] INFO: template[/etc/nova/rootwrap.d/network.filters] owner changed to 0 -Feb 21 20:41:53 server1.1 [2014-02-21T20:41:52-08:00] INFO: template[/etc/nova/rootwrap.d/network.filters] group changed to 0 -Feb 21 20:41:53 server1.1 [2014-02-21T20:41:52-08:00] INFO: template[/etc/nova/rootwrap.d/network.filters] mode changed to 644 -Feb 21 20:41:53 server1.1 [2014-02-21T20:41:52-08:00] INFO: Processing template[/root/openrc] action create (openstack-compute::nova-common line 199) -Feb 21 20:41:53 server1.1 [2014-02-21T20:41:52-08:00] INFO: template[/root/openrc] created file /root/openrc -Feb 21 20:41:53 server1.1 [2014-02-21T20:41:52-08:00] INFO: template[/root/openrc] updated file contents /root/openrc -Feb 21 20:41:53 server1.1 [2014-02-21T20:41:52-08:00] INFO: template[/root/openrc] owner changed to 0 -Feb 21 20:41:53 server1.1 [2014-02-21T20:41:52-08:00] INFO: template[/root/openrc] group changed to 0 -Feb 21 20:41:53 server1.1 [2014-02-21T20:41:52-08:00] INFO: template[/root/openrc] mode changed to 600 -Feb 21 20:41:53 server1.1 [2014-02-21T20:41:52-08:00] INFO: Processing execute[enable nova login] action run (openstack-compute::nova-common line 215) -Feb 21 20:41:53 server1.1 [2014-02-21T20:41:52-08:00] INFO: execute[enable nova login] ran successfully -Feb 21 20:41:53 server1.1 [2014-02-21T20:41:52-08:00] INFO: Processing directory[/var/lock/nova] action create (openstack-compute::api-ec2 line 28) -Feb 21 20:41:53 server1.1 [2014-02-21T20:41:52-08:00] INFO: directory[/var/lock/nova] created directory /var/lock/nova -Feb 21 20:41:53 server1.1 [2014-02-21T20:41:52-08:00] INFO: directory[/var/lock/nova] owner changed to 162 -Feb 21 20:41:53 server1.1 [2014-02-21T20:41:52-08:00] INFO: directory[/var/lock/nova] group changed to 162 -Feb 21 20:41:53 server1.1 [2014-02-21T20:41:52-08:00] INFO: directory[/var/lock/nova] mode changed to 700 -Feb 21 20:41:53 server1.1 [2014-02-21T20:41:52-08:00] INFO: Processing package[python-keystone] action upgrade (openstack-compute::api-ec2 line 36) -Feb 21 20:41:53 server1.1 [2014-02-21T20:41:52-08:00] INFO: Processing package[openstack-nova-api] action upgrade (openstack-compute::api-ec2 line 41) -Feb 21 20:41:53 server1.1 [2014-02-21T20:41:52-08:00] INFO: package[openstack-nova-api] installing openstack-nova-api-2013.1.4-7.el6 from openstack repository -Feb 21 20:41:57 server1.1 [2014-02-21T20:41:56-08:00] INFO: package[openstack-nova-api] upgraded from uninstalled to 2013.1.4-7.el6 -Feb 21 20:41:57 server1.1 [2014-02-21T20:41:56-08:00] INFO: Processing service[nova-api-ec2] action enable (openstack-compute::api-ec2 line 48) -Feb 21 20:41:57 server1.1 [2014-02-21T20:41:56-08:00] INFO: service[nova-api-ec2] enabled -Feb 21 20:41:57 server1.1 [2014-02-21T20:41:56-08:00] INFO: Processing template[/etc/nova/api-paste.ini] action create (openstack-compute::api-ec2 line 74) -Feb 21 20:41:57 server1.1 [2014-02-21T20:41:56-08:00] INFO: template[/etc/nova/api-paste.ini] backed up to /var/chef/backup/etc/nova/api-paste.ini.chef-20140221204156.594842 -Feb 21 20:41:57 server1.1 [2014-02-21T20:41:56-08:00] INFO: template[/etc/nova/api-paste.ini] updated file contents /etc/nova/api-paste.ini -Feb 21 20:41:57 server1.1 [2014-02-21T20:41:56-08:00] INFO: template[/etc/nova/api-paste.ini] owner changed to 162 -Feb 21 20:41:57 server1.1 [2014-02-21T20:41:56-08:00] INFO: template[/etc/nova/api-paste.ini] mode changed to 644 -Feb 21 20:41:57 server1.1 [2014-02-21T20:41:56-08:00] INFO: template[/etc/nova/api-paste.ini] not queuing delayed action restart on service[nova-api-ec2] (delayed), as it's already been queued -Feb 21 20:41:57 server1.1 [2014-02-21T20:41:56-08:00] INFO: template[/etc/nova/api-paste.ini] not queuing delayed action restart on service[nova-api-os-compute] (delayed), as it's already been queued -Feb 21 20:41:57 server1.1 [2014-02-21T20:41:56-08:00] INFO: Processing directory[/var/lock/nova] action create (openstack-compute::api-os-compute line 28) -Feb 21 20:41:57 server1.1 [2014-02-21T20:41:56-08:00] INFO: Processing directory[/var/cache/nova] action create (openstack-compute::api-os-compute line 34) -Feb 21 20:41:57 server1.1 [2014-02-21T20:41:56-08:00] INFO: directory[/var/cache/nova] created directory /var/cache/nova -Feb 21 20:41:57 server1.1 [2014-02-21T20:41:56-08:00] INFO: directory[/var/cache/nova] owner changed to 162 -Feb 21 20:41:57 server1.1 [2014-02-21T20:41:56-08:00] INFO: directory[/var/cache/nova] group changed to 162 -Feb 21 20:41:57 server1.1 [2014-02-21T20:41:56-08:00] INFO: directory[/var/cache/nova] mode changed to 700 -Feb 21 20:41:57 server1.1 [2014-02-21T20:41:56-08:00] INFO: Processing package[python-keystone] action upgrade (openstack-compute::api-os-compute line 40) -Feb 21 20:41:57 server1.1 [2014-02-21T20:41:56-08:00] INFO: Processing package[openstack-nova-api] action upgrade (openstack-compute::api-os-compute line 45) -Feb 21 20:41:57 server1.1 [2014-02-21T20:41:56-08:00] INFO: Processing service[nova-api-os-compute] action enable (openstack-compute::api-os-compute line 52) -Feb 21 20:41:57 server1.1 [2014-02-21T20:41:56-08:00] INFO: Processing service[nova-api-os-compute] action start (openstack-compute::api-os-compute line 52) -Feb 21 20:41:57 server1.1 [2014-02-21T20:41:57-08:00] INFO: service[nova-api-os-compute] started -Feb 21 20:41:57 server1.1 [2014-02-21T20:41:57-08:00] INFO: Processing template[/etc/nova/api-paste.ini] action create (openstack-compute::api-os-compute line 78) -Feb 21 20:41:57 server1.1 [2014-02-21T20:41:57-08:00] INFO: Processing package[openstack-nova-cert] action upgrade (openstack-compute::nova-cert line 25) -Feb 21 20:41:57 server1.1 [2014-02-21T20:41:57-08:00] INFO: package[openstack-nova-cert] installing openstack-nova-cert-2013.1.4-7.el6 from openstack repository -Feb 21 20:42:05 server1.1 [2014-02-21T20:42:04-08:00] INFO: package[openstack-nova-cert] upgraded from uninstalled to 2013.1.4-7.el6 -Feb 21 20:42:05 server1.1 [2014-02-21T20:42:04-08:00] INFO: Processing service[nova-cert] action enable (openstack-compute::nova-cert line 32) -Feb 21 20:42:05 server1.1 [2014-02-21T20:42:04-08:00] INFO: service[nova-cert] enabled -Feb 21 20:42:05 server1.1 [2014-02-21T20:42:04-08:00] INFO: Processing service[nova-cert] action restart (openstack-compute::nova-cert line 32) -Feb 21 20:42:05 server1.1 [2014-02-21T20:42:04-08:00] INFO: service[nova-cert] restarted -Feb 21 20:42:05 server1.1 [2014-02-21T20:42:04-08:00] INFO: Processing directory[/var/lock/nova] action create (openstack-compute::scheduler line 25) -Feb 21 20:42:05 server1.1 [2014-02-21T20:42:04-08:00] INFO: Processing package[openstack-nova-scheduler] action upgrade (openstack-compute::scheduler line 34) -Feb 21 20:42:05 server1.1 [2014-02-21T20:42:04-08:00] INFO: package[openstack-nova-scheduler] installing openstack-nova-scheduler-2013.1.4-7.el6 from openstack repository -Feb 21 20:42:11 server1.1 [2014-02-21T20:42:11-08:00] INFO: package[openstack-nova-scheduler] upgraded from uninstalled to 2013.1.4-7.el6 -Feb 21 20:42:11 server1.1 [2014-02-21T20:42:11-08:00] INFO: Processing service[nova-scheduler] action enable (openstack-compute::scheduler line 41) -Feb 21 20:42:12 server1.1 [2014-02-21T20:42:11-08:00] INFO: service[nova-scheduler] enabled -Feb 21 20:42:12 server1.1 [2014-02-21T20:42:11-08:00] INFO: Processing service[nova-scheduler] action restart (openstack-compute::scheduler line 41) -Feb 21 20:42:12 server1.1 [2014-02-21T20:42:11-08:00] INFO: service[nova-scheduler] restarted -Feb 21 20:42:12 server1.1 [2014-02-21T20:42:11-08:00] INFO: Processing package[openstack-nova-novncproxy] action upgrade (openstack-compute::vncproxy line 26) -Feb 21 20:42:12 server1.1 [2014-02-21T20:42:11-08:00] INFO: package[openstack-nova-novncproxy] installing openstack-nova-novncproxy-2013.1.4-7.el6 from openstack repository -Feb 21 20:42:21 server1.1 [2014-02-21T20:42:20-08:00] INFO: package[openstack-nova-novncproxy] upgraded from uninstalled to 2013.1.4-7.el6 -Feb 21 20:42:21 server1.1 [2014-02-21T20:42:20-08:00] INFO: Processing package[openstack-nova-console] action upgrade (openstack-compute::vncproxy line 35) -Feb 21 20:42:21 server1.1 [2014-02-21T20:42:21-08:00] INFO: package[openstack-nova-console] installing openstack-nova-console-2013.1.4-7.el6 from openstack repository -Feb 21 20:42:25 server1.1 [2014-02-21T20:42:24-08:00] INFO: package[openstack-nova-console] upgraded from uninstalled to 2013.1.4-7.el6 -Feb 21 20:42:25 server1.1 [2014-02-21T20:42:24-08:00] INFO: Processing package[openstack-nova-console] action upgrade (openstack-compute::vncproxy line 42) -Feb 21 20:42:25 server1.1 [2014-02-21T20:42:25-08:00] INFO: Processing service[openstack-nova-novncproxy] action enable (openstack-compute::vncproxy line 49) -Feb 21 20:42:25 server1.1 [2014-02-21T20:42:25-08:00] INFO: service[openstack-nova-novncproxy] enabled -Feb 21 20:42:25 server1.1 [2014-02-21T20:42:25-08:00] INFO: Processing service[openstack-nova-novncproxy] action start (openstack-compute::vncproxy line 49) -Feb 21 20:42:26 server1.1 [2014-02-21T20:42:25-08:00] INFO: service[openstack-nova-novncproxy] started -Feb 21 20:42:26 server1.1 [2014-02-21T20:42:25-08:00] INFO: Processing service[nova-console] action enable (openstack-compute::vncproxy line 57) -Feb 21 20:42:26 server1.1 [2014-02-21T20:42:25-08:00] INFO: service[nova-console] enabled -Feb 21 20:42:26 server1.1 [2014-02-21T20:42:25-08:00] INFO: Processing service[nova-console] action start (openstack-compute::vncproxy line 57) -Feb 21 20:42:26 server1.1 [2014-02-21T20:42:25-08:00] INFO: service[nova-console] started -Feb 21 20:42:26 server1.1 [2014-02-21T20:42:25-08:00] INFO: Processing service[nova-consoleauth] action enable (openstack-compute::vncproxy line 64) -Feb 21 20:42:26 server1.1 [2014-02-21T20:42:25-08:00] INFO: service[nova-consoleauth] enabled -Feb 21 20:42:26 server1.1 [2014-02-21T20:42:25-08:00] INFO: Processing service[nova-consoleauth] action start (openstack-compute::vncproxy line 64) -Feb 21 20:42:26 server1.1 [2014-02-21T20:42:26-08:00] INFO: service[nova-consoleauth] started -Feb 21 20:42:26 server1.1 [2014-02-21T20:42:26-08:00] INFO: Processing package[openstack-nova-conductor] action upgrade (openstack-compute::conductor line 26) -Feb 21 20:42:26 server1.1 [2014-02-21T20:42:26-08:00] INFO: package[openstack-nova-conductor] installing openstack-nova-conductor-2013.1.4-7.el6 from openstack repository -Feb 21 20:42:33 server1.1 [2014-02-21T20:42:32-08:00] INFO: package[openstack-nova-conductor] upgraded from uninstalled to 2013.1.4-7.el6 -Feb 21 20:42:33 server1.1 [2014-02-21T20:42:32-08:00] INFO: Processing service[nova-conductor] action enable (openstack-compute::conductor line 32) -Feb 21 20:42:33 server1.1 [2014-02-21T20:42:32-08:00] INFO: service[nova-conductor] enabled -Feb 21 20:42:33 server1.1 [2014-02-21T20:42:32-08:00] INFO: Processing service[nova-conductor] action restart (openstack-compute::conductor line 32) -Feb 21 20:42:33 server1.1 [2014-02-21T20:42:32-08:00] INFO: service[nova-conductor] restarted -Feb 21 20:42:33 server1.1 [2014-02-21T20:42:32-08:00] INFO: Processing execute[nova-manage db sync] action run (openstack-compute::nova-setup line 26) -Feb 21 20:46:00 server1.1 [2014-02-21T20:45:59-08:00] INFO: execute[nova-manage db sync] ran successfully -Feb 21 20:46:00 server1.1 [2014-02-21T20:45:59-08:00] INFO: Processing package[python-quantumclient] action upgrade (openstack-compute::nova-setup line 109) -Feb 21 20:46:00 server1.1 [2014-02-21T20:45:59-08:00] INFO: Processing package[pyparsing] action upgrade (openstack-compute::nova-setup line 109) -Feb 21 20:46:00 server1.1 [2014-02-21T20:45:59-08:00] INFO: Processing cookbook_file[/usr/local/bin/add_floaters.py] action create (openstack-compute::nova-setup line 115) -Feb 21 20:46:00 server1.1 [2014-02-21T20:45:59-08:00] INFO: cookbook_file[/usr/local/bin/add_floaters.py] created file /usr/local/bin/add_floaters.py -Feb 21 20:46:00 server1.1 [2014-02-21T20:46:00-08:00] INFO: cookbook_file[/usr/local/bin/add_floaters.py] updated file contents /usr/local/bin/add_floaters.py -Feb 21 20:46:00 server1.1 [2014-02-21T20:46:00-08:00] INFO: cookbook_file[/usr/local/bin/add_floaters.py] mode changed to 755 -Feb 21 20:46:00 server1.1 [2014-02-21T20:46:00-08:00] INFO: Processing package[openstack-nova-network] action purge (openstack-network::common line 38) -Feb 21 20:46:00 server1.1 [2014-02-21T20:46:00-08:00] INFO: Processing package[openstack-quantum] action install (openstack-network::common line 44) -Feb 21 20:46:00 server1.1 [2014-02-21T20:46:00-08:00] INFO: package[openstack-quantum] installing openstack-quantum-2013.1.4-4.el6 from openstack repository -Feb 21 20:46:15 server1.1 [2014-02-21T20:46:14-08:00] INFO: Processing directory[/etc/quantum/plugins] action create (openstack-network::common line 49) -Feb 21 20:46:15 server1.1 [2014-02-21T20:46:14-08:00] INFO: directory[/etc/quantum/plugins] owner changed to 164 -Feb 21 20:46:15 server1.1 [2014-02-21T20:46:14-08:00] INFO: directory[/etc/quantum/plugins] group changed to 164 -Feb 21 20:46:15 server1.1 [2014-02-21T20:46:14-08:00] INFO: directory[/etc/quantum/plugins] mode changed to 700 -Feb 21 20:46:15 server1.1 [2014-02-21T20:46:14-08:00] INFO: Processing directory[/var/cache/quantum] action create (openstack-network::common line 57) -Feb 21 20:46:15 server1.1 [2014-02-21T20:46:14-08:00] INFO: directory[/var/cache/quantum] created directory /var/cache/quantum -Feb 21 20:46:15 server1.1 [2014-02-21T20:46:14-08:00] INFO: directory[/var/cache/quantum] owner changed to 164 -Feb 21 20:46:15 server1.1 [2014-02-21T20:46:14-08:00] INFO: directory[/var/cache/quantum] group changed to 164 -Feb 21 20:46:15 server1.1 [2014-02-21T20:46:14-08:00] INFO: directory[/var/cache/quantum] mode changed to 700 -Feb 21 20:46:15 server1.1 [2014-02-21T20:46:14-08:00] INFO: Processing directory[/var/cache/quantum] action create (openstack-network::common line 64) -Feb 21 20:46:15 server1.1 [2014-02-21T20:46:14-08:00] INFO: Processing remote_directory[/etc/quantum/rootwrap.d] action create (openstack-network::common line 74) -Feb 21 20:46:15 server1.1 [2014-02-21T20:46:14-08:00] INFO: remote_directory[/etc/quantum/rootwrap.d] created directory /etc/quantum/rootwrap.d -Feb 21 20:46:15 server1.1 [2014-02-21T20:46:14-08:00] INFO: Processing cookbook_file[/etc/quantum/rootwrap.d/ryu-plugin.filters] action create (dynamically defined) -Feb 21 20:46:15 server1.1 [2014-02-21T20:46:14-08:00] INFO: cookbook_file[/etc/quantum/rootwrap.d/ryu-plugin.filters] created file /etc/quantum/rootwrap.d/ryu-plugin.filters -Feb 21 20:46:15 server1.1 [2014-02-21T20:46:14-08:00] INFO: cookbook_file[/etc/quantum/rootwrap.d/ryu-plugin.filters] updated file contents /etc/quantum/rootwrap.d/ryu-plugin.filters -Feb 21 20:46:15 server1.1 [2014-02-21T20:46:14-08:00] INFO: cookbook_file[/etc/quantum/rootwrap.d/ryu-plugin.filters] owner changed to 164 -Feb 21 20:46:15 server1.1 [2014-02-21T20:46:14-08:00] INFO: cookbook_file[/etc/quantum/rootwrap.d/ryu-plugin.filters] group changed to 164 -Feb 21 20:46:15 server1.1 [2014-02-21T20:46:14-08:00] INFO: cookbook_file[/etc/quantum/rootwrap.d/ryu-plugin.filters] mode changed to 700 -Feb 21 20:46:15 server1.1 [2014-02-21T20:46:14-08:00] INFO: Processing cookbook_file[/etc/quantum/rootwrap.d/openvswitch-plugin.filters] action create (dynamically defined) -Feb 21 20:46:15 server1.1 [2014-02-21T20:46:14-08:00] INFO: cookbook_file[/etc/quantum/rootwrap.d/openvswitch-plugin.filters] created file /etc/quantum/rootwrap.d/openvswitch-plugin.filters -Feb 21 20:46:15 server1.1 [2014-02-21T20:46:14-08:00] INFO: cookbook_file[/etc/quantum/rootwrap.d/openvswitch-plugin.filters] updated file contents /etc/quantum/rootwrap.d/openvswitch-plugin.filters -Feb 21 20:46:15 server1.1 [2014-02-21T20:46:14-08:00] INFO: cookbook_file[/etc/quantum/rootwrap.d/openvswitch-plugin.filters] owner changed to 164 -Feb 21 20:46:15 server1.1 [2014-02-21T20:46:14-08:00] INFO: cookbook_file[/etc/quantum/rootwrap.d/openvswitch-plugin.filters] group changed to 164 -Feb 21 20:46:15 server1.1 [2014-02-21T20:46:14-08:00] INFO: cookbook_file[/etc/quantum/rootwrap.d/openvswitch-plugin.filters] mode changed to 700 -Feb 21 20:46:15 server1.1 [2014-02-21T20:46:14-08:00] INFO: Processing cookbook_file[/etc/quantum/rootwrap.d/nec-plugin.filters] action create (dynamically defined) -Feb 21 20:46:15 server1.1 [2014-02-21T20:46:14-08:00] INFO: cookbook_file[/etc/quantum/rootwrap.d/nec-plugin.filters] created file /etc/quantum/rootwrap.d/nec-plugin.filters -Feb 21 20:46:15 server1.1 [2014-02-21T20:46:14-08:00] INFO: cookbook_file[/etc/quantum/rootwrap.d/nec-plugin.filters] updated file contents /etc/quantum/rootwrap.d/nec-plugin.filters -Feb 21 20:46:15 server1.1 [2014-02-21T20:46:14-08:00] INFO: cookbook_file[/etc/quantum/rootwrap.d/nec-plugin.filters] owner changed to 164 -Feb 21 20:46:15 server1.1 [2014-02-21T20:46:14-08:00] INFO: cookbook_file[/etc/quantum/rootwrap.d/nec-plugin.filters] group changed to 164 -Feb 21 20:46:15 server1.1 [2014-02-21T20:46:14-08:00] INFO: cookbook_file[/etc/quantum/rootwrap.d/nec-plugin.filters] mode changed to 700 -Feb 21 20:46:15 server1.1 [2014-02-21T20:46:14-08:00] INFO: Processing cookbook_file[/etc/quantum/rootwrap.d/linuxbridge-plugin.filters] action create (dynamically defined) -Feb 21 20:46:15 server1.1 [2014-02-21T20:46:14-08:00] INFO: cookbook_file[/etc/quantum/rootwrap.d/linuxbridge-plugin.filters] created file /etc/quantum/rootwrap.d/linuxbridge-plugin.filters -Feb 21 20:46:15 server1.1 [2014-02-21T20:46:14-08:00] INFO: cookbook_file[/etc/quantum/rootwrap.d/linuxbridge-plugin.filters] updated file contents /etc/quantum/rootwrap.d/linuxbridge-plugin.filters -Feb 21 20:46:15 server1.1 [2014-02-21T20:46:14-08:00] INFO: cookbook_file[/etc/quantum/rootwrap.d/linuxbridge-plugin.filters] owner changed to 164 -Feb 21 20:46:15 server1.1 [2014-02-21T20:46:14-08:00] INFO: cookbook_file[/etc/quantum/rootwrap.d/linuxbridge-plugin.filters] group changed to 164 -Feb 21 20:46:15 server1.1 [2014-02-21T20:46:14-08:00] INFO: cookbook_file[/etc/quantum/rootwrap.d/linuxbridge-plugin.filters] mode changed to 700 -Feb 21 20:46:15 server1.1 [2014-02-21T20:46:14-08:00] INFO: Processing cookbook_file[/etc/quantum/rootwrap.d/lbaas-haproxy.filters] action create (dynamically defined) -Feb 21 20:46:15 server1.1 [2014-02-21T20:46:14-08:00] INFO: cookbook_file[/etc/quantum/rootwrap.d/lbaas-haproxy.filters] created file /etc/quantum/rootwrap.d/lbaas-haproxy.filters -Feb 21 20:46:15 server1.1 [2014-02-21T20:46:14-08:00] INFO: cookbook_file[/etc/quantum/rootwrap.d/lbaas-haproxy.filters] updated file contents /etc/quantum/rootwrap.d/lbaas-haproxy.filters -Feb 21 20:46:15 server1.1 [2014-02-21T20:46:14-08:00] INFO: cookbook_file[/etc/quantum/rootwrap.d/lbaas-haproxy.filters] owner changed to 164 -Feb 21 20:46:15 server1.1 [2014-02-21T20:46:14-08:00] INFO: cookbook_file[/etc/quantum/rootwrap.d/lbaas-haproxy.filters] group changed to 164 -Feb 21 20:46:15 server1.1 [2014-02-21T20:46:14-08:00] INFO: cookbook_file[/etc/quantum/rootwrap.d/lbaas-haproxy.filters] mode changed to 700 -Feb 21 20:46:15 server1.1 [2014-02-21T20:46:14-08:00] INFO: Processing cookbook_file[/etc/quantum/rootwrap.d/l3.filters] action create (dynamically defined) -Feb 21 20:46:15 server1.1 [2014-02-21T20:46:14-08:00] INFO: cookbook_file[/etc/quantum/rootwrap.d/l3.filters] created file /etc/quantum/rootwrap.d/l3.filters -Feb 21 20:46:15 server1.1 [2014-02-21T20:46:14-08:00] INFO: cookbook_file[/etc/quantum/rootwrap.d/l3.filters] updated file contents /etc/quantum/rootwrap.d/l3.filters -Feb 21 20:46:15 server1.1 [2014-02-21T20:46:14-08:00] INFO: cookbook_file[/etc/quantum/rootwrap.d/l3.filters] owner changed to 164 -Feb 21 20:46:15 server1.1 [2014-02-21T20:46:14-08:00] INFO: cookbook_file[/etc/quantum/rootwrap.d/l3.filters] group changed to 164 -Feb 21 20:46:15 server1.1 [2014-02-21T20:46:14-08:00] INFO: cookbook_file[/etc/quantum/rootwrap.d/l3.filters] mode changed to 700 -Feb 21 20:46:15 server1.1 [2014-02-21T20:46:14-08:00] INFO: Processing cookbook_file[/etc/quantum/rootwrap.d/iptables-firewall.filters] action create (dynamically defined) -Feb 21 20:46:15 server1.1 [2014-02-21T20:46:14-08:00] INFO: cookbook_file[/etc/quantum/rootwrap.d/iptables-firewall.filters] created file /etc/quantum/rootwrap.d/iptables-firewall.filters -Feb 21 20:46:15 server1.1 [2014-02-21T20:46:14-08:00] INFO: cookbook_file[/etc/quantum/rootwrap.d/iptables-firewall.filters] updated file contents /etc/quantum/rootwrap.d/iptables-firewall.filters -Feb 21 20:46:15 server1.1 [2014-02-21T20:46:14-08:00] INFO: cookbook_file[/etc/quantum/rootwrap.d/iptables-firewall.filters] owner changed to 164 -Feb 21 20:46:15 server1.1 [2014-02-21T20:46:14-08:00] INFO: cookbook_file[/etc/quantum/rootwrap.d/iptables-firewall.filters] group changed to 164 -Feb 21 20:46:15 server1.1 [2014-02-21T20:46:14-08:00] INFO: cookbook_file[/etc/quantum/rootwrap.d/iptables-firewall.filters] mode changed to 700 -Feb 21 20:46:15 server1.1 [2014-02-21T20:46:14-08:00] INFO: Processing cookbook_file[/etc/quantum/rootwrap.d/dhcp.filters] action create (dynamically defined) -Feb 21 20:46:15 server1.1 [2014-02-21T20:46:14-08:00] INFO: cookbook_file[/etc/quantum/rootwrap.d/dhcp.filters] created file /etc/quantum/rootwrap.d/dhcp.filters -Feb 21 20:46:15 server1.1 [2014-02-21T20:46:14-08:00] INFO: cookbook_file[/etc/quantum/rootwrap.d/dhcp.filters] updated file contents /etc/quantum/rootwrap.d/dhcp.filters -Feb 21 20:46:15 server1.1 [2014-02-21T20:46:14-08:00] INFO: cookbook_file[/etc/quantum/rootwrap.d/dhcp.filters] owner changed to 164 -Feb 21 20:46:15 server1.1 [2014-02-21T20:46:14-08:00] INFO: cookbook_file[/etc/quantum/rootwrap.d/dhcp.filters] group changed to 164 -Feb 21 20:46:15 server1.1 [2014-02-21T20:46:14-08:00] INFO: cookbook_file[/etc/quantum/rootwrap.d/dhcp.filters] mode changed to 700 -Feb 21 20:46:15 server1.1 [2014-02-21T20:46:14-08:00] INFO: Processing cookbook_file[/etc/quantum/rootwrap.d/debug.filters] action create (dynamically defined) -Feb 21 20:46:15 server1.1 [2014-02-21T20:46:14-08:00] INFO: cookbook_file[/etc/quantum/rootwrap.d/debug.filters] created file /etc/quantum/rootwrap.d/debug.filters -Feb 21 20:46:15 server1.1 [2014-02-21T20:46:14-08:00] INFO: cookbook_file[/etc/quantum/rootwrap.d/debug.filters] updated file contents /etc/quantum/rootwrap.d/debug.filters -Feb 21 20:46:15 server1.1 [2014-02-21T20:46:14-08:00] INFO: cookbook_file[/etc/quantum/rootwrap.d/debug.filters] owner changed to 164 -Feb 21 20:46:15 server1.1 [2014-02-21T20:46:14-08:00] INFO: cookbook_file[/etc/quantum/rootwrap.d/debug.filters] group changed to 164 -Feb 21 20:46:15 server1.1 [2014-02-21T20:46:14-08:00] INFO: cookbook_file[/etc/quantum/rootwrap.d/debug.filters] mode changed to 700 -Feb 21 20:46:15 server1.1 [2014-02-21T20:46:14-08:00] INFO: Processing template[/etc/quantum/rootwrap.conf] action create (openstack-network::common line 81) -Feb 21 20:46:15 server1.1 [2014-02-21T20:46:14-08:00] INFO: template[/etc/quantum/rootwrap.conf] backed up to /var/chef/backup/etc/quantum/rootwrap.conf.chef-20140221204614.967634 -Feb 21 20:46:15 server1.1 [2014-02-21T20:46:14-08:00] INFO: template[/etc/quantum/rootwrap.conf] updated file contents /etc/quantum/rootwrap.conf -Feb 21 20:46:15 server1.1 [2014-02-21T20:46:14-08:00] INFO: template[/etc/quantum/rootwrap.conf] owner changed to 164 -Feb 21 20:46:15 server1.1 [2014-02-21T20:46:14-08:00] INFO: template[/etc/quantum/rootwrap.conf] group changed to 164 -Feb 21 20:46:15 server1.1 [2014-02-21T20:46:14-08:00] INFO: Processing template[/etc/quantum/policy.json] action create (openstack-network::common line 88) -Feb 21 20:46:15 server1.1 [2014-02-21T20:46:14-08:00] INFO: template[/etc/quantum/policy.json] backed up to /var/chef/backup/etc/quantum/policy.json.chef-20140221204614.975067 -Feb 21 20:46:15 server1.1 [2014-02-21T20:46:14-08:00] INFO: template[/etc/quantum/policy.json] updated file contents /etc/quantum/policy.json -Feb 21 20:46:15 server1.1 [2014-02-21T20:46:14-08:00] INFO: template[/etc/quantum/policy.json] owner changed to 164 -Feb 21 20:46:15 server1.1 [2014-02-21T20:46:14-08:00] INFO: template[/etc/quantum/policy.json] mode changed to 644 -Feb 21 20:46:15 server1.1 [2014-02-21T20:46:14-08:00] INFO: Processing execute[delete_auto_qpid] action nothing (openstack-network::common line 103) -Feb 21 20:46:15 server1.1 [2014-02-21T20:46:14-08:00] INFO: Processing service[quantum-server] action nothing (openstack-network::common line 157) -Feb 21 20:46:15 server1.1 [2014-02-21T20:46:14-08:00] INFO: Processing template[/etc/quantum/quantum.conf] action create (openstack-network::common line 165) -Feb 21 20:46:15 server1.1 [2014-02-21T20:46:14-08:00] INFO: template[/etc/quantum/quantum.conf] backed up to /var/chef/backup/etc/quantum/quantum.conf.chef-20140221204614.991537 -Feb 21 20:46:15 server1.1 [2014-02-21T20:46:14-08:00] INFO: template[/etc/quantum/quantum.conf] updated file contents /etc/quantum/quantum.conf -Feb 21 20:46:15 server1.1 [2014-02-21T20:46:14-08:00] INFO: template[/etc/quantum/quantum.conf] owner changed to 164 -Feb 21 20:46:15 server1.1 [2014-02-21T20:46:14-08:00] INFO: template[/etc/quantum/quantum.conf] mode changed to 644 -Feb 21 20:46:15 server1.1 [2014-02-21T20:46:14-08:00] INFO: template[/etc/quantum/quantum.conf] not queuing delayed action restart on service[quantum-server] (delayed), as it's already been queued -Feb 21 20:46:15 server1.1 [2014-02-21T20:46:14-08:00] INFO: Processing template[/etc/quantum/api-paste.ini] action create (openstack-network::common line 186) -Feb 21 20:46:15 server1.1 [2014-02-21T20:46:14-08:00] INFO: template[/etc/quantum/api-paste.ini] backed up to /var/chef/backup/etc/quantum/api-paste.ini.chef-20140221204614.998443 -Feb 21 20:46:15 server1.1 [2014-02-21T20:46:14-08:00] INFO: template[/etc/quantum/api-paste.ini] updated file contents /etc/quantum/api-paste.ini -Feb 21 20:46:15 server1.1 [2014-02-21T20:46:15-08:00] INFO: template[/etc/quantum/api-paste.ini] owner changed to 164 -Feb 21 20:46:15 server1.1 [2014-02-21T20:46:15-08:00] INFO: template[/etc/quantum/api-paste.ini] mode changed to 644 -Feb 21 20:46:15 server1.1 [2014-02-21T20:46:15-08:00] INFO: template[/etc/quantum/api-paste.ini] not queuing delayed action restart on service[quantum-server] (delayed), as it's already been queued -Feb 21 20:46:15 server1.1 [2014-02-21T20:46:15-08:00] INFO: Processing directory[/etc/quantum/plugins/openvswitch] action create (openstack-network::common line 201) -Feb 21 20:46:15 server1.1 [2014-02-21T20:46:15-08:00] INFO: directory[/etc/quantum/plugins/openvswitch] created directory /etc/quantum/plugins/openvswitch -Feb 21 20:46:15 server1.1 [2014-02-21T20:46:15-08:00] INFO: directory[/etc/quantum/plugins/openvswitch] owner changed to 164 -Feb 21 20:46:15 server1.1 [2014-02-21T20:46:15-08:00] INFO: directory[/etc/quantum/plugins/openvswitch] group changed to 164 -Feb 21 20:46:15 server1.1 [2014-02-21T20:46:15-08:00] INFO: directory[/etc/quantum/plugins/openvswitch] mode changed to 700 -Feb 21 20:46:15 server1.1 [2014-02-21T20:46:15-08:00] INFO: Processing service[quantum-plugin-openvswitch-agent] action nothing (openstack-network::common line 341) -Feb 21 20:46:15 server1.1 [2014-02-21T20:46:15-08:00] INFO: Processing template[/etc/quantum/plugins/openvswitch/ovs_quantum_plugin.ini] action create (openstack-network::common line 346) -Feb 21 20:46:15 server1.1 [2014-02-21T20:46:15-08:00] INFO: template[/etc/quantum/plugins/openvswitch/ovs_quantum_plugin.ini] created file /etc/quantum/plugins/openvswitch/ovs_quantum_plugin.ini -Feb 21 20:46:15 server1.1 [2014-02-21T20:46:15-08:00] INFO: template[/etc/quantum/plugins/openvswitch/ovs_quantum_plugin.ini] updated file contents /etc/quantum/plugins/openvswitch/ovs_quantum_plugin.ini -Feb 21 20:46:15 server1.1 [2014-02-21T20:46:15-08:00] INFO: template[/etc/quantum/plugins/openvswitch/ovs_quantum_plugin.ini] owner changed to 164 -Feb 21 20:46:15 server1.1 [2014-02-21T20:46:15-08:00] INFO: template[/etc/quantum/plugins/openvswitch/ovs_quantum_plugin.ini] group changed to 164 -Feb 21 20:46:15 server1.1 [2014-02-21T20:46:15-08:00] INFO: template[/etc/quantum/plugins/openvswitch/ovs_quantum_plugin.ini] mode changed to 644 -Feb 21 20:46:15 server1.1 [2014-02-21T20:46:15-08:00] INFO: template[/etc/quantum/plugins/openvswitch/ovs_quantum_plugin.ini] not queuing delayed action restart on service[quantum-server] (delayed), as it's already been queued -Feb 21 20:46:15 server1.1 [2014-02-21T20:46:15-08:00] INFO: Processing template[/etc/default/quantum-server] action create (openstack-network::common line 395) -Feb 21 20:46:15 server1.1 [2014-02-21T20:46:15-08:00] INFO: Processing package[openstack-quantum-openvswitch] action install (openstack-network::server line 42) -Feb 21 20:46:16 server1.1 [2014-02-21T20:46:15-08:00] INFO: package[openstack-quantum-openvswitch] installing openstack-quantum-openvswitch-2013.1.4-4.el6 from openstack repository -Feb 21 20:46:21 server1.1 [2014-02-21T20:46:21-08:00] INFO: Processing directory[/var/cache/quantum/api] action create (openstack-network::server line 49) -Feb 21 20:46:21 server1.1 [2014-02-21T20:46:21-08:00] INFO: directory[/var/cache/quantum/api] created directory /var/cache/quantum/api -Feb 21 20:46:21 server1.1 [2014-02-21T20:46:21-08:00] INFO: directory[/var/cache/quantum/api] owner changed to 164 -Feb 21 20:46:21 server1.1 [2014-02-21T20:46:21-08:00] INFO: directory[/var/cache/quantum/api] group changed to 164 -Feb 21 20:46:21 server1.1 [2014-02-21T20:46:21-08:00] INFO: Processing template[/etc/init.d/quantum-server] action create (openstack-network::server line 55) -Feb 21 20:46:21 server1.1 [2014-02-21T20:46:21-08:00] INFO: template[/etc/init.d/quantum-server] backed up to /var/chef/backup/etc/init.d/quantum-server.chef-20140221204621.125222 -Feb 21 20:46:21 server1.1 [2014-02-21T20:46:21-08:00] INFO: template[/etc/init.d/quantum-server] updated file contents /etc/init.d/quantum-server -Feb 21 20:46:21 server1.1 [2014-02-21T20:46:21-08:00] INFO: Processing service[quantum-server] action enable (openstack-network::server line 63) -Feb 21 20:46:21 server1.1 [2014-02-21T20:46:21-08:00] INFO: service[quantum-server] enabled -Feb 21 20:46:21 server1.1 [2014-02-21T20:46:21-08:00] INFO: Processing service[quantum-server] action restart (openstack-network::server line 63) -Feb 21 20:46:21 server1.1 [2014-02-21T20:46:21-08:00] INFO: service[quantum-server] restarted -Feb 21 20:46:21 server1.1 [2014-02-21T20:46:21-08:00] INFO: Processing cookbook_file[quantum-ha-tool] action create (openstack-network::server line 69) -Feb 21 20:46:21 server1.1 [2014-02-21T20:46:21-08:00] INFO: cookbook_file[quantum-ha-tool] created file /usr/local/bin/quantum-ha-tool.py -Feb 21 20:46:21 server1.1 [2014-02-21T20:46:21-08:00] INFO: cookbook_file[quantum-ha-tool] updated file contents /usr/local/bin/quantum-ha-tool.py -Feb 21 20:46:21 server1.1 [2014-02-21T20:46:21-08:00] INFO: cookbook_file[quantum-ha-tool] owner changed to 0 -Feb 21 20:46:21 server1.1 [2014-02-21T20:46:21-08:00] INFO: cookbook_file[quantum-ha-tool] group changed to 0 -Feb 21 20:46:21 server1.1 [2014-02-21T20:46:21-08:00] INFO: cookbook_file[quantum-ha-tool] mode changed to 755 -Feb 21 20:46:21 server1.1 [2014-02-21T20:46:21-08:00] INFO: Processing template[/etc/sysconfig/quantum] action create (openstack-network::server line 98) -Feb 21 20:46:21 server1.1 [2014-02-21T20:46:21-08:00] INFO: template[/etc/httpd/mods-available/deflate.conf] sending restart action to service[apache2] (delayed) -Feb 21 20:46:21 server1.1 [2014-02-21T20:46:21-08:00] INFO: Processing service[apache2] action restart (apache2::default line 221) -Feb 21 20:46:23 server1.1 [2014-02-21T20:46:22-08:00] INFO: service[apache2] restarted -Feb 21 20:46:23 server1.1 [2014-02-21T20:46:22-08:00] INFO: [template[/etc/cinder/cinder.conf]] sending restart action to service[cinder-api] (delayed) -Feb 21 20:46:23 server1.1 [2014-02-21T20:46:22-08:00] INFO: Processing service[cinder-api] action restart (openstack-block-storage::api line 58) -Feb 21 20:46:24 server1.1 [2014-02-21T20:46:24-08:00] INFO: service[cinder-api] restarted -Feb 21 20:46:24 server1.1 [2014-02-21T20:46:24-08:00] INFO: [template[/etc/cinder/cinder.conf]] sending restart action to service[cinder-scheduler] (delayed) -Feb 21 20:46:24 server1.1 [2014-02-21T20:46:24-08:00] INFO: Processing service[cinder-scheduler] action restart (openstack-block-storage::scheduler line 50) -Feb 21 20:46:24 server1.1 [2014-02-21T20:46:24-08:00] INFO: service[cinder-scheduler] restarted -Feb 21 20:46:24 server1.1 [2014-02-21T20:46:24-08:00] INFO: template[/etc/nova/nova.conf] sending restart action to service[nova-api-ec2] (delayed) -Feb 21 20:46:24 server1.1 [2014-02-21T20:46:24-08:00] INFO: Processing service[nova-api-ec2] action restart (openstack-compute::api-ec2 line 48) -Feb 21 20:46:26 server1.1 [2014-02-21T20:46:25-08:00] INFO: service[nova-api-ec2] restarted -Feb 21 20:46:26 server1.1 [2014-02-21T20:46:25-08:00] INFO: template[/etc/nova/nova.conf] sending restart action to service[nova-api-os-compute] (delayed) -Feb 21 20:46:26 server1.1 [2014-02-21T20:46:25-08:00] INFO: Processing service[nova-api-os-compute] action restart (openstack-compute::api-os-compute line 52) -Feb 21 20:46:26 server1.1 [2014-02-21T20:46:25-08:00] INFO: service[nova-api-os-compute] restarted -Feb 21 20:46:26 server1.1 [2014-02-21T20:46:25-08:00] INFO: template[/etc/nova/nova.conf] sending restart action to service[nova-cert] (delayed) -Feb 21 20:46:26 server1.1 [2014-02-21T20:46:25-08:00] INFO: Processing service[nova-cert] action restart (openstack-compute::nova-cert line 32) -Feb 21 20:46:26 server1.1 [2014-02-21T20:46:26-08:00] INFO: service[nova-cert] restarted -Feb 21 20:46:26 server1.1 [2014-02-21T20:46:26-08:00] INFO: template[/etc/nova/nova.conf] sending restart action to service[nova-scheduler] (delayed) -Feb 21 20:46:26 server1.1 [2014-02-21T20:46:26-08:00] INFO: Processing service[nova-scheduler] action restart (openstack-compute::scheduler line 41) -Feb 21 20:46:26 server1.1 [2014-02-21T20:46:26-08:00] INFO: service[nova-scheduler] restarted -Feb 21 20:46:26 server1.1 [2014-02-21T20:46:26-08:00] INFO: template[/etc/nova/nova.conf] sending restart action to service[openstack-nova-novncproxy] (delayed) -Feb 21 20:46:26 server1.1 [2014-02-21T20:46:26-08:00] INFO: Processing service[openstack-nova-novncproxy] action restart (openstack-compute::vncproxy line 49) -Feb 21 20:46:27 server1.1 [2014-02-21T20:46:26-08:00] INFO: service[openstack-nova-novncproxy] restarted -Feb 21 20:46:27 server1.1 [2014-02-21T20:46:26-08:00] INFO: template[/etc/nova/nova.conf] sending restart action to service[nova-console] (delayed) -Feb 21 20:46:27 server1.1 [2014-02-21T20:46:26-08:00] INFO: Processing service[nova-console] action restart (openstack-compute::vncproxy line 57) -Feb 21 20:46:27 server1.1 [2014-02-21T20:46:27-08:00] INFO: service[nova-console] restarted -Feb 21 20:46:27 server1.1 [2014-02-21T20:46:27-08:00] INFO: template[/etc/nova/nova.conf] sending restart action to service[nova-consoleauth] (delayed) -Feb 21 20:46:27 server1.1 [2014-02-21T20:46:27-08:00] INFO: Processing service[nova-consoleauth] action restart (openstack-compute::vncproxy line 64) -Feb 21 20:46:28 server1.1 [2014-02-21T20:46:27-08:00] INFO: service[nova-consoleauth] restarted -Feb 21 20:46:28 server1.1 [2014-02-21T20:46:27-08:00] INFO: template[/etc/nova/nova.conf] sending restart action to service[nova-conductor] (delayed) -Feb 21 20:46:28 server1.1 [2014-02-21T20:46:27-08:00] INFO: Processing service[nova-conductor] action restart (openstack-compute::conductor line 32) -Feb 21 20:46:28 server1.1 [2014-02-21T20:46:28-08:00] INFO: service[nova-conductor] restarted -Feb 21 20:46:28 server1.1 [2014-02-21T20:46:28-08:00] INFO: template[/etc/quantum/policy.json] sending restart action to service[quantum-server] (delayed) -Feb 21 20:46:28 server1.1 [2014-02-21T20:46:28-08:00] INFO: Processing service[quantum-server] action restart (openstack-network::server line 63) -Feb 21 20:46:29 server1.1 [2014-02-21T20:46:29-08:00] INFO: service[quantum-server] restarted -Feb 21 20:46:29 server1.1 [2014-02-21T20:46:29-08:00] INFO: Chef Run complete in 1449.433415826 seconds -Feb 21 20:46:30 server1.1 [2014-02-21T20:46:30-08:00] INFO: Running report handlers -Feb 21 20:46:30 server1.1 [2014-02-21T20:46:30-08:00] INFO: Report handlers complete diff --git a/compass/tests/actions/update_progress/data/test2/anamon/checkpoint_5/server1.1/install.log.template b/compass/tests/actions/update_progress/data/test2/anamon/checkpoint_5/server1.1/install.log.template deleted file mode 100644 index 861b3a53..00000000 --- a/compass/tests/actions/update_progress/data/test2/anamon/checkpoint_5/server1.1/install.log.template +++ /dev/null @@ -1,212 +0,0 @@ -Installing libgcc-4.4.7-4.el6.x86_64 -warning: libgcc-4.4.7-4.el6.x86_64: Header V3 RSA/SHA1 Signature, key ID c105b9de: NOKEY -Installing setup-2.8.14-20.el6_4.1.noarch -Installing filesystem-2.4.30-3.el6.x86_64 -Installing basesystem-10.0-4.el6.noarch -Installing ncurses-base-5.7-3.20090208.el6.x86_64 -Installing kernel-firmware-2.6.32-431.el6.noarch -Installing tzdata-2013g-1.el6.noarch -Installing nss-softokn-freebl-3.14.3-9.el6.x86_64 -Installing glibc-common-2.12-1.132.el6.x86_64 -Installing glibc-2.12-1.132.el6.x86_64 -Installing ncurses-libs-5.7-3.20090208.el6.x86_64 -Installing bash-4.1.2-15.el6_4.x86_64 -Installing libattr-2.4.44-7.el6.x86_64 -Installing libcap-2.16-5.5.el6.x86_64 -Installing zlib-1.2.3-29.el6.x86_64 -Installing info-4.13a-8.el6.x86_64 -Installing popt-1.13-7.el6.x86_64 -Installing chkconfig-1.3.49.3-2.el6_4.1.x86_64 -Installing audit-libs-2.2-2.el6.x86_64 -Installing libcom_err-1.41.12-18.el6.x86_64 -Installing libacl-2.2.49-6.el6.x86_64 -Installing db4-4.7.25-18.el6_4.x86_64 -Installing nspr-4.10.0-1.el6.x86_64 -Installing nss-util-3.15.1-3.el6.x86_64 -Installing readline-6.0-4.el6.x86_64 -Installing libsepol-2.0.41-4.el6.x86_64 -Installing libselinux-2.0.94-5.3.el6_4.1.x86_64 -Installing shadow-utils-4.1.4.2-13.el6.x86_64 -Installing sed-4.2.1-10.el6.x86_64 -Installing bzip2-libs-1.0.5-7.el6_0.x86_64 -Installing libuuid-2.17.2-12.14.el6.x86_64 -Installing libstdc++-4.4.7-4.el6.x86_64 -Installing libblkid-2.17.2-12.14.el6.x86_64 -Installing gawk-3.1.7-10.el6.x86_64 -Installing file-libs-5.04-15.el6.x86_64 -Installing libgpg-error-1.7-4.el6.x86_64 -Installing dbus-libs-1.2.24-7.el6_3.x86_64 -Installing libudev-147-2.51.el6.x86_64 -Installing pcre-7.8-6.el6.x86_64 -Installing grep-2.6.3-4.el6.x86_64 -Installing lua-5.1.4-4.1.el6.x86_64 -Installing sqlite-3.6.20-1.el6.x86_64 -Installing cyrus-sasl-lib-2.1.23-13.el6_3.1.x86_64 -Installing libidn-1.18-2.el6.x86_64 -Installing expat-2.0.1-11.el6_2.x86_64 -Installing xz-libs-4.999.9-0.3.beta.20091007git.el6.x86_64 -Installing elfutils-libelf-0.152-1.el6.x86_64 -Installing libgcrypt-1.4.5-11.el6_4.x86_64 -Installing bzip2-1.0.5-7.el6_0.x86_64 -Installing findutils-4.4.2-6.el6.x86_64 -Installing libselinux-utils-2.0.94-5.3.el6_4.1.x86_64 -Installing checkpolicy-2.0.22-1.el6.x86_64 -Installing cpio-2.10-11.el6_3.x86_64 -Installing which-2.19-6.el6.x86_64 -Installing libxml2-2.7.6-14.el6.x86_64 -Installing libedit-2.11-4.20080712cvs.1.el6.x86_64 -Installing pth-2.0.7-9.3.el6.x86_64 -Installing tcp_wrappers-libs-7.6-57.el6.x86_64 -Installing sysvinit-tools-2.87-5.dsf.el6.x86_64 -Installing libtasn1-2.3-3.el6_2.1.x86_64 -Installing p11-kit-0.18.5-2.el6.x86_64 -Installing p11-kit-trust-0.18.5-2.el6.x86_64 -Installing ca-certificates-2013.1.94-65.0.el6.noarch -Installing device-mapper-persistent-data-0.2.8-2.el6.x86_64 -Installing nss-softokn-3.14.3-9.el6.x86_64 -Installing libnih-1.0.1-7.el6.x86_64 -Installing upstart-0.6.5-12.el6_4.1.x86_64 -Installing file-5.04-15.el6.x86_64 -Installing gmp-4.3.1-7.el6_2.2.x86_64 -Installing libusb-0.1.12-23.el6.x86_64 -Installing MAKEDEV-3.24-6.el6.x86_64 -Installing libutempter-1.1.5-4.1.el6.x86_64 -Installing psmisc-22.6-15.el6_0.1.x86_64 -Installing net-tools-1.60-110.el6_2.x86_64 -Installing vim-minimal-7.2.411-1.8.el6.x86_64 -Installing tar-1.23-11.el6.x86_64 -Installing procps-3.2.8-25.el6.x86_64 -Installing db4-utils-4.7.25-18.el6_4.x86_64 -Installing e2fsprogs-libs-1.41.12-18.el6.x86_64 -Installing libss-1.41.12-18.el6.x86_64 -Installing pinentry-0.7.6-6.el6.x86_64 -Installing binutils-2.20.51.0.2-5.36.el6.x86_64 -Installing m4-1.4.13-5.el6.x86_64 -Installing diffutils-2.8.1-28.el6.x86_64 -Installing make-3.81-20.el6.x86_64 -Installing dash-0.5.5.1-4.el6.x86_64 -Installing ncurses-5.7-3.20090208.el6.x86_64 -Installing groff-1.18.1.4-21.el6.x86_64 -Installing less-436-10.el6.x86_64 -Installing coreutils-libs-8.4-31.el6.x86_64 -Installing gzip-1.3.12-19.el6_4.x86_64 -Installing cracklib-2.8.16-4.el6.x86_64 -Installing cracklib-dicts-2.8.16-4.el6.x86_64 -Installing coreutils-8.4-31.el6.x86_64 -Installing pam-1.1.1-17.el6.x86_64 -Installing module-init-tools-3.9-21.el6_4.x86_64 -Installing hwdata-0.233-9.1.el6.noarch -Installing redhat-logos-60.0.14-12.el6.centos.noarch -Installing plymouth-scripts-0.8.3-27.el6.centos.x86_64 -Installing libpciaccess-0.13.1-2.el6.x86_64 -Installing nss-3.15.1-15.el6.x86_64 -Installing nss-sysinit-3.15.1-15.el6.x86_64 -Installing nss-tools-3.15.1-15.el6.x86_64 -Installing openldap-2.4.23-32.el6_4.1.x86_64 -Installing logrotate-3.7.8-17.el6.x86_64 -Installing gdbm-1.8.0-36.el6.x86_64 -Installing mingetty-1.08-5.el6.x86_64 -Installing keyutils-libs-1.4-4.el6.x86_64 -Installing krb5-libs-1.10.3-10.el6_4.6.x86_64 -Installing openssl-1.0.1e-15.el6.x86_64 -Installing libssh2-1.4.2-1.el6.x86_64 -Installing libcurl-7.19.7-37.el6_4.x86_64 -Installing gnupg2-2.0.14-6.el6_4.x86_64 -Installing gpgme-1.1.8-3.el6.x86_64 -Installing curl-7.19.7-37.el6_4.x86_64 -Installing rpm-libs-4.8.0-37.el6.x86_64 -Installing rpm-4.8.0-37.el6.x86_64 -Installing fipscheck-lib-1.2.0-7.el6.x86_64 -Installing fipscheck-1.2.0-7.el6.x86_64 -Installing mysql-libs-5.1.71-1.el6.x86_64 -Installing ethtool-3.5-1.el6.x86_64 -Installing pciutils-libs-3.1.10-2.el6.x86_64 -Installing plymouth-core-libs-0.8.3-27.el6.centos.x86_64 -Installing libcap-ng-0.6.4-3.el6_0.1.x86_64 -Installing libffi-3.0.5-3.2.el6.x86_64 -Installing python-2.6.6-51.el6.x86_64 -Installing python-libs-2.6.6-51.el6.x86_64 -Installing python-pycurl-7.19.0-8.el6.x86_64 -Installing python-urlgrabber-3.9.1-9.el6.noarch -Installing pygpgme-0.1-18.20090824bzr68.el6.x86_64 -Installing rpm-python-4.8.0-37.el6.x86_64 -Installing python-iniparse-0.3.1-2.1.el6.noarch -Installing slang-2.2.1-1.el6.x86_64 -Installing newt-0.52.11-3.el6.x86_64 -Installing newt-python-0.52.11-3.el6.x86_64 -Installing ustr-1.0.4-9.1.el6.x86_64 -Installing libsemanage-2.0.43-4.2.el6.x86_64 -Installing libaio-0.3.107-10.el6.x86_64 -Installing pkgconfig-0.23-9.1.el6.x86_64 -Installing gamin-0.1.10-9.el6.x86_64 -Installing glib2-2.26.1-3.el6.x86_64 -Installing shared-mime-info-0.70-4.el6.x86_64 -Installing libuser-0.56.13-5.el6.x86_64 -Installing grubby-7.0.15-5.el6.x86_64 -Installing yum-metadata-parser-1.1.2-16.el6.x86_64 -Installing yum-plugin-fastestmirror-1.1.30-14.el6.noarch -Installing yum-3.2.29-40.el6.centos.noarch -Installing dbus-glib-0.86-6.el6.x86_64 -Installing dhcp-common-4.1.1-38.P1.el6.centos.x86_64 -Installing centos-release-6-5.el6.centos.11.1.x86_64 -Installing policycoreutils-2.0.83-19.39.el6.x86_64 -Installing iptables-1.4.7-11.el6.x86_64 -Installing iproute-2.6.32-31.el6.x86_64 -Installing iputils-20071127-17.el6_4.2.x86_64 -Installing util-linux-ng-2.17.2-12.14.el6.x86_64 -Installing initscripts-9.03.40-2.el6.centos.x86_64 -Installing udev-147-2.51.el6.x86_64 -Installing device-mapper-libs-1.02.79-8.el6.x86_64 -Installing device-mapper-1.02.79-8.el6.x86_64 -Installing device-mapper-event-libs-1.02.79-8.el6.x86_64 -Installing openssh-5.3p1-94.el6.x86_64 -Installing device-mapper-event-1.02.79-8.el6.x86_64 -Installing lvm2-libs-2.02.100-8.el6.x86_64 -Installing cryptsetup-luks-libs-1.2.0-7.el6.x86_64 -Installing device-mapper-multipath-libs-0.4.9-72.el6.x86_64 -Installing kpartx-0.4.9-72.el6.x86_64 -Installing libdrm-2.4.45-2.el6.x86_64 -Installing plymouth-0.8.3-27.el6.centos.x86_64 -Installing rsyslog-5.8.10-8.el6.x86_64 -Installing cyrus-sasl-2.1.23-13.el6_3.1.x86_64 -Installing postfix-2.6.6-2.2.el6_1.x86_64 -Installing cronie-anacron-1.4.4-12.el6.x86_64 -Installing cronie-1.4.4-12.el6.x86_64 -Installing crontabs-1.10-33.el6.noarch -Installing ntpdate-4.2.6p5-1.el6.centos.x86_64 -Installing iptables-ipv6-1.4.7-11.el6.x86_64 -Installing selinux-policy-3.7.19-231.el6.noarch -Installing kbd-misc-1.15-11.el6.noarch -Installing kbd-1.15-11.el6.x86_64 -Installing dracut-004-335.el6.noarch -Installing dracut-kernel-004-335.el6.noarch -Installing kernel-2.6.32-431.el6.x86_64 -Installing fuse-2.8.3-4.el6.x86_64 -Installing selinux-policy-targeted-3.7.19-231.el6.noarch -Installing system-config-firewall-base-1.2.27-5.el6.noarch -Installing ntp-4.2.6p5-1.el6.centos.x86_64 -Installing device-mapper-multipath-0.4.9-72.el6.x86_64 -Installing cryptsetup-luks-1.2.0-7.el6.x86_64 -Installing lvm2-2.02.100-8.el6.x86_64 -Installing openssh-clients-5.3p1-94.el6.x86_64 -Installing openssh-server-5.3p1-94.el6.x86_64 -Installing mdadm-3.2.6-7.el6.x86_64 -Installing b43-openfwwf-5.2-4.el6.noarch -Installing dhclient-4.1.1-38.P1.el6.centos.x86_64 -Installing iscsi-initiator-utils-6.2.0.873-10.el6.x86_64 -Installing passwd-0.77-4.el6_2.2.x86_64 -Installing authconfig-6.1.12-13.el6.x86_64 -Installing grub-0.97-83.el6.x86_64 -Installing efibootmgr-0.5.4-11.el6.x86_64 -Installing wget-1.12-1.8.el6.x86_64 -Installing sudo-1.8.6p3-12.el6.x86_64 -Installing audit-2.2-2.el6.x86_64 -Installing e2fsprogs-1.41.12-18.el6.x86_64 -Installing xfsprogs-3.1.1-14.el6.x86_64 -Installing acl-2.2.49-6.el6.x86_64 -Installing attr-2.4.44-7.el6.x86_64 -Installing chef-11.8.0-1.el6.x86_64 -warning: chef-11.8.0-1.el6.x86_64: Header V4 DSA/SHA1 Signature, key ID 83ef826a: NOKEY -Installing bridge-utils-1.2-10.el6.x86_64 -Installing rootfiles-8.1-6.1.el6.noarch -*** FINISHED INSTALLING PACKAGES *** \ No newline at end of file diff --git a/compass/tests/actions/update_progress/data/test2/anamon/checkpoint_5/server1.1/sys.log.template b/compass/tests/actions/update_progress/data/test2/anamon/checkpoint_5/server1.1/sys.log.template deleted file mode 100644 index 7390276a..00000000 --- a/compass/tests/actions/update_progress/data/test2/anamon/checkpoint_5/server1.1/sys.log.template +++ /dev/null @@ -1,1726 +0,0 @@ -05:51:18,517 INFO kernel:imklog 5.8.10, log source = /proc/kmsg started. -05:51:18,517 INFO rsyslogd: [origin software="rsyslogd" swVersion="5.8.10" x-pid="68" x-info="http://www.rsyslog.com"] start -05:51:18,517 INFO kernel:Initializing cgroup subsys cpuset -05:51:18,517 INFO kernel:Initializing cgroup subsys cpu -05:51:18,517 NOTICE kernel:Linux version 2.6.32-431.el6.x86_64 (mockbuild@c6b8.bsys.dev.centos.org) (gcc version 4.4.7 20120313 (Red Hat 4.4.7-4) (GCC) ) #1 SMP Fri Nov 22 03:15:09 UTC 2013 -05:51:18,517 INFO kernel:Command line: initrd=/images/CentOS-6.5-x86_64/initrd.img ksdevice=bootif lang= kssendmac text ks=http://10.145.88.211/cblr/svc/op/ks/system/server1.1 BOOT_IMAGE=/images/CentOS-6.5-x86_64/vmlinuz BOOTIF=01-00-0c-29-21-89-af -05:51:18,517 INFO kernel:KERNEL supported cpus: -05:51:18,517 INFO kernel: Intel GenuineIntel -05:51:18,517 INFO kernel: AMD AuthenticAMD -05:51:18,517 INFO kernel: Centaur CentaurHauls -05:51:18,517 INFO kernel:Disabled fast string operations -05:51:18,517 INFO kernel:BIOS-provided physical RAM map: -05:51:18,517 INFO kernel: BIOS-e820: 0000000000000000 - 000000000009f400 (usable) -05:51:18,517 INFO kernel: BIOS-e820: 000000000009f400 - 00000000000a0000 (reserved) -05:51:18,517 INFO kernel: BIOS-e820: 00000000000ca000 - 00000000000cc000 (reserved) -05:51:18,517 INFO kernel: BIOS-e820: 00000000000dc000 - 0000000000100000 (reserved) -05:51:18,517 INFO kernel: BIOS-e820: 0000000000100000 - 000000007fef0000 (usable) -05:51:18,517 INFO kernel: BIOS-e820: 000000007fef0000 - 000000007feff000 (ACPI data) -05:51:18,517 INFO kernel: BIOS-e820: 000000007feff000 - 000000007ff00000 (ACPI NVS) -05:51:18,517 INFO kernel: BIOS-e820: 000000007ff00000 - 0000000080000000 (usable) -05:51:18,517 INFO kernel: BIOS-e820: 00000000e0000000 - 00000000f0000000 (reserved) -05:51:18,517 INFO kernel: BIOS-e820: 00000000fec00000 - 00000000fec10000 (reserved) -05:51:18,517 INFO kernel: BIOS-e820: 00000000fee00000 - 00000000fee01000 (reserved) -05:51:18,517 INFO kernel: BIOS-e820: 00000000fffe0000 - 0000000100000000 (reserved) -05:51:18,517 INFO kernel:DMI present. -05:51:18,517 WARNING kernel:SMBIOS version 2.4 @ 0xF68F0 -05:51:18,517 DEBUG kernel:DMI: VMware, Inc. VMware Virtual Platform/440BX Desktop Reference Platform, BIOS 6.00 01/07/2011 -05:51:18,517 NOTICE kernel:Phoenix BIOS detected: BIOS may corrupt low RAM, working around it. -05:51:18,517 DEBUG kernel:e820 update range: 0000000000000000 - 0000000000010000 (usable) ==> (reserved) -05:51:18,517 INFO kernel:Hypervisor detected: VMware -05:51:18,517 DEBUG kernel:e820 update range: 0000000000000000 - 0000000000001000 (usable) ==> (reserved) -05:51:18,517 DEBUG kernel:e820 remove range: 00000000000a0000 - 0000000000100000 (usable) -05:51:18,517 INFO kernel:last_pfn = 0x80000 max_arch_pfn = 0x400000000 -05:51:18,517 DEBUG kernel:MTRR default type: uncachable -05:51:18,517 DEBUG kernel:MTRR fixed ranges enabled: -05:51:18,517 DEBUG kernel: 00000-9FFFF write-back -05:51:18,517 DEBUG kernel: A0000-BFFFF uncachable -05:51:18,517 DEBUG kernel: C0000-CFFFF write-protect -05:51:18,517 DEBUG kernel: D0000-EFFFF uncachable -05:51:18,517 DEBUG kernel: F0000-FFFFF write-protect -05:51:18,517 DEBUG kernel:MTRR variable ranges enabled: -05:51:18,517 DEBUG kernel: 0 base 0000000000 mask FF80000000 write-back -05:51:18,517 DEBUG kernel: 1 disabled -05:51:18,517 DEBUG kernel: 2 disabled -05:51:18,517 DEBUG kernel: 3 disabled -05:51:18,517 DEBUG kernel: 4 disabled -05:51:18,517 DEBUG kernel: 5 disabled -05:51:18,517 DEBUG kernel: 6 disabled -05:51:18,517 DEBUG kernel: 7 disabled -05:51:18,517 INFO kernel:x86 PAT enabled: cpu 0, old 0x0, new 0x7010600070106 -05:51:18,517 DEBUG kernel:initial memory mapped : 0 - 20000000 -05:51:18,517 INFO kernel:init_memory_mapping: 0000000000000000-0000000080000000 -05:51:18,517 DEBUG kernel: 0000000000 - 0080000000 page 2M -05:51:18,517 DEBUG kernel:kernel direct mapping tables up to 80000000 @ 10000-13000 -05:51:18,517 INFO kernel:RAMDISK: 7def9000 - 7fecf4ff -05:51:18,517 WARNING kernel:ACPI: RSDP 00000000000f6940 00024 (v02 PTLTD ) -05:51:18,517 WARNING kernel:ACPI: XSDT 000000007fef0333 00054 (v01 INTEL 440BX 06040000 VMW 01324272) -05:51:18,517 WARNING kernel:ACPI: FACP 000000007fefee98 000F4 (v04 INTEL 440BX 06040000 PTL 000F4240) -05:51:18,517 WARNING kernel:ACPI: DSDT 000000007fef055d 0E93B (v01 PTLTD Custom 06040000 MSFT 03000001) -05:51:18,517 WARNING kernel:ACPI: FACS 000000007fefffc0 00040 -05:51:18,517 WARNING kernel:ACPI: BOOT 000000007fef0535 00028 (v01 PTLTD $SBFTBL$ 06040000 LTP 00000001) -05:51:18,517 WARNING kernel:ACPI: APIC 000000007fef04d7 0005E (v01 PTLTD ? APIC 06040000 LTP 00000000) -05:51:18,517 WARNING kernel:ACPI: MCFG 000000007fef049b 0003C (v01 PTLTD $PCITBL$ 06040000 LTP 00000001) -05:51:18,517 WARNING kernel:ACPI: SRAT 000000007fef03fb 000A0 (v02 VMWARE MEMPLUG 06040000 VMW 00000001) -05:51:18,517 WARNING kernel:ACPI: HPET 000000007fef03c3 00038 (v01 VMWARE VMW HPET 06040000 WMV 00000001) -05:51:18,517 DEBUG kernel:ACPI: Local APIC address 0xfee00000 -05:51:18,517 INFO kernel:Setting APIC routing to flat. -05:51:18,517 INFO kernel:SRAT: PXM 0 -> APIC 0 -> Node 0 -05:51:18,517 INFO kernel:SRAT: PXM 0 -> APIC 1 -> Node 0 -05:51:18,517 INFO kernel:SRAT: Node 0 PXM 0 0-a0000 -05:51:18,517 INFO kernel:SRAT: Node 0 PXM 0 100000-80000000 -05:51:18,517 DEBUG kernel:NUMA: Allocated memnodemap from 11000 - 12040 -05:51:18,517 DEBUG kernel:NUMA: Using 20 for the hash shift. -05:51:18,517 INFO kernel:Bootmem setup node 0 0000000000000000-0000000080000000 -05:51:18,517 INFO kernel: NODE_DATA [0000000000012040 - 000000000004603f] -05:51:18,517 INFO kernel: bootmap [0000000000047000 - 0000000000056fff] pages 10 -05:51:18,517 INFO kernel:(8 early reservations) ==> bootmem [0000000000 - 0080000000] -05:51:18,517 INFO kernel: #0 [0000000000 - 0000001000] BIOS data page ==> [0000000000 - 0000001000] -05:51:18,517 INFO kernel: #1 [0000006000 - 0000008000] TRAMPOLINE ==> [0000006000 - 0000008000] -05:51:18,517 INFO kernel: #2 [0001000000 - 000201faa4] TEXT DATA BSS ==> [0001000000 - 000201faa4] -05:51:18,517 INFO kernel: #3 [007def9000 - 007fecf4ff] RAMDISK ==> [007def9000 - 007fecf4ff] -05:51:18,517 INFO kernel: #4 [000009f400 - 0000100000] BIOS reserved ==> [000009f400 - 0000100000] -05:51:18,517 INFO kernel: #5 [0002020000 - 00020201f0] BRK ==> [0002020000 - 00020201f0] -05:51:18,517 INFO kernel: #6 [0000010000 - 0000011000] PGTABLE ==> [0000010000 - 0000011000] -05:51:18,517 INFO kernel: #7 [0000011000 - 0000012040] MEMNODEMAP ==> [0000011000 - 0000012040] -05:51:18,517 INFO kernel:found SMP MP-table at [ffff8800000f69b0] f69b0 -05:51:18,517 DEBUG kernel: [ffffea0000000000-ffffea0001bfffff] PMD -> [ffff880002600000-ffff8800041fffff] on node 0 -05:51:18,517 WARNING kernel:Zone PFN ranges: -05:51:18,517 WARNING kernel: DMA 0x00000010 -> 0x00001000 -05:51:18,517 WARNING kernel: DMA32 0x00001000 -> 0x00100000 -05:51:18,517 WARNING kernel: Normal 0x00100000 -> 0x00100000 -05:51:18,517 WARNING kernel:Movable zone start PFN for each node -05:51:18,517 WARNING kernel:early_node_map[3] active PFN ranges -05:51:18,517 WARNING kernel: 0: 0x00000010 -> 0x0000009f -05:51:18,517 WARNING kernel: 0: 0x00000100 -> 0x0007fef0 -05:51:18,517 WARNING kernel: 0: 0x0007ff00 -> 0x00080000 -05:51:18,517 DEBUG kernel:On node 0 totalpages: 524159 -05:51:18,517 DEBUG kernel: DMA zone: 56 pages used for memmap -05:51:18,517 DEBUG kernel: DMA zone: 101 pages reserved -05:51:18,517 DEBUG kernel: DMA zone: 3826 pages, LIFO batch:0 -05:51:18,517 DEBUG kernel: DMA32 zone: 7112 pages used for memmap -05:51:18,517 DEBUG kernel: DMA32 zone: 513064 pages, LIFO batch:31 -05:51:18,517 INFO kernel:ACPI: PM-Timer IO Port: 0x1008 -05:51:18,517 DEBUG kernel:ACPI: Local APIC address 0xfee00000 -05:51:18,517 INFO kernel:Setting APIC routing to flat. -05:51:18,517 INFO kernel:ACPI: LAPIC (acpi_id[0x00] lapic_id[0x00] enabled) -05:51:18,517 INFO kernel:ACPI: LAPIC (acpi_id[0x01] lapic_id[0x01] enabled) -05:51:18,517 INFO kernel:ACPI: LAPIC_NMI (acpi_id[0x00] high edge lint[0x1]) -05:51:18,517 INFO kernel:ACPI: LAPIC_NMI (acpi_id[0x01] high edge lint[0x1]) -05:51:18,517 INFO kernel:ACPI: IOAPIC (id[0x02] address[0xfec00000] gsi_base[0]) -05:51:18,518 INFO kernel:IOAPIC[0]: apic_id 2, version 17, address 0xfec00000, GSI 0-23 -05:51:18,518 INFO kernel:ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 high edge) -05:51:18,518 DEBUG kernel:ACPI: IRQ0 used by override. -05:51:18,518 DEBUG kernel:ACPI: IRQ2 used by override. -05:51:18,518 DEBUG kernel:ACPI: IRQ9 used by override. -05:51:18,518 INFO kernel:Using ACPI (MADT) for SMP configuration information -05:51:18,518 INFO kernel:ACPI: HPET id: 0x8086af01 base: 0xfed00000 -05:51:18,518 INFO kernel:SMP: Allowing 2 CPUs, 0 hotplug CPUs -05:51:18,518 DEBUG kernel:nr_irqs_gsi: 24 -05:51:18,518 INFO kernel:PM: Registered nosave memory: 000000000009f000 - 00000000000a0000 -05:51:18,518 INFO kernel:PM: Registered nosave memory: 00000000000a0000 - 00000000000ca000 -05:51:18,518 INFO kernel:PM: Registered nosave memory: 00000000000ca000 - 00000000000cc000 -05:51:18,518 INFO kernel:PM: Registered nosave memory: 00000000000cc000 - 00000000000dc000 -05:51:18,518 INFO kernel:PM: Registered nosave memory: 00000000000dc000 - 0000000000100000 -05:51:18,518 INFO kernel:PM: Registered nosave memory: 000000007fef0000 - 000000007feff000 -05:51:18,518 INFO kernel:PM: Registered nosave memory: 000000007feff000 - 000000007ff00000 -05:51:18,518 INFO kernel:Allocating PCI resources starting at 80000000 (gap: 80000000:60000000) -05:51:18,518 INFO kernel:Booting paravirtualized kernel on bare hardware -05:51:18,518 INFO kernel:NR_CPUS:4096 nr_cpumask_bits:2 nr_cpu_ids:2 nr_node_ids:1 -05:51:18,518 INFO kernel:PERCPU: Embedded 31 pages/cpu @ffff880002200000 s94872 r8192 d23912 u1048576 -05:51:18,518 INFO kernel:pcpu-alloc: s94872 r8192 d23912 u1048576 alloc=1*2097152 -05:51:18,518 INFO kernel:pcpu-alloc: [0] 0 1 -05:51:18,518 WARNING kernel:Built 1 zonelists in Node order, mobility grouping on. Total pages: 516890 -05:51:18,520 WARNING kernel:Policy zone: DMA32 -05:51:18,520 NOTICE kernel:Kernel command line: initrd=/images/CentOS-6.5-x86_64/initrd.img ksdevice=bootif lang= kssendmac text ks=http://10.145.88.211/cblr/svc/op/ks/system/server1.1 BOOT_IMAGE=/images/CentOS-6.5-x86_64/vmlinuz BOOTIF=01-00-0c-29-21-89-af -05:51:18,520 INFO kernel:PID hash table entries: 4096 (order: 3, 32768 bytes) -05:51:18,520 INFO kernel:Checking aperture... -05:51:18,520 INFO kernel:No AGP bridge found -05:51:18,520 INFO kernel:Memory: 2018096k/2097152k available (5325k kernel code, 516k absent, 78540k reserved, 7013k data, 1276k init) -05:51:18,520 INFO kernel:Hierarchical RCU implementation. -05:51:18,520 INFO kernel:NR_IRQS:33024 nr_irqs:424 -05:51:18,520 INFO kernel:Extended CMOS year: 2000 -05:51:18,520 WARNING kernel:Console: colour VGA+ 80x25 -05:51:18,520 INFO kernel:console [tty0] enabled -05:51:18,520 INFO kernel:allocated 8388608 bytes of page_cgroup -05:51:18,520 INFO kernel:please try 'cgroup_disable=memory' option if you don't want memory cgroups -05:51:18,520 DEBUG kernel:hpet clockevent registered -05:51:18,520 INFO kernel:TSC freq read from hypervisor : 2400.085 MHz -05:51:18,520 WARNING kernel:Detected 2400.085 MHz processor. -05:51:18,520 INFO kernel:Calibrating delay loop (skipped) preset value.. 4800.17 BogoMIPS (lpj=2400085) -05:51:18,520 INFO kernel:pid_max: default: 32768 minimum: 301 -05:51:18,520 INFO kernel:Security Framework initialized -05:51:18,520 INFO kernel:SELinux: Initializing. -05:51:18,520 DEBUG kernel:SELinux: Starting in permissive mode -05:51:18,520 INFO kernel:Dentry cache hash table entries: 262144 (order: 9, 2097152 bytes) -05:51:18,520 INFO kernel:Inode-cache hash table entries: 131072 (order: 8, 1048576 bytes) -05:51:18,520 WARNING kernel:Mount-cache hash table entries: 256 -05:51:18,520 INFO kernel:Initializing cgroup subsys ns -05:51:18,520 INFO kernel:Initializing cgroup subsys cpuacct -05:51:18,520 INFO kernel:Initializing cgroup subsys memory -05:51:18,520 INFO kernel:Initializing cgroup subsys devices -05:51:18,520 INFO kernel:Initializing cgroup subsys freezer -05:51:18,520 INFO kernel:Initializing cgroup subsys net_cls -05:51:18,520 INFO kernel:Initializing cgroup subsys blkio -05:51:18,520 INFO kernel:Initializing cgroup subsys perf_event -05:51:18,520 INFO kernel:Initializing cgroup subsys net_prio -05:51:18,520 INFO kernel:Disabled fast string operations -05:51:18,520 INFO kernel:CPU: Physical Processor ID: 0 -05:51:18,520 INFO kernel:mce: CPU supports 0 MCE banks -05:51:18,520 INFO kernel:alternatives: switching to unfair spinlock -05:51:18,520 INFO kernel:ACPI: Core revision 20090903 -05:51:18,520 INFO kernel:ftrace: converting mcount calls to 0f 1f 44 00 00 -05:51:18,520 INFO kernel:ftrace: allocating 21769 entries in 86 pages -05:51:18,520 INFO kernel:APIC routing finalized to flat. -05:51:18,520 INFO kernel:..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1 -05:51:18,520 INFO kernel:CPU0: Intel(R) Xeon(R) CPU E5620 @ 2.40GHz stepping 02 -05:51:18,520 INFO kernel:Performance Events: 16-deep LBR, Westmere events, Intel PMU driver. -05:51:18,520 WARNING kernel:CPUID marked event: 'cpu cycles' unavailable -05:51:18,520 WARNING kernel:CPUID marked event: 'instructions' unavailable -05:51:18,520 WARNING kernel:CPUID marked event: 'bus cycles' unavailable -05:51:18,520 WARNING kernel:CPUID marked event: 'cache references' unavailable -05:51:18,520 WARNING kernel:CPUID marked event: 'cache misses' unavailable -05:51:18,520 WARNING kernel:CPUID marked event: 'branch instructions' unavailable -05:51:18,520 WARNING kernel:CPUID marked event: 'branch misses' unavailable -05:51:18,520 INFO kernel:... version: 3 -05:51:18,520 INFO kernel:... bit width: 48 -05:51:18,520 INFO kernel:... generic registers: 4 -05:51:18,520 INFO kernel:... value mask: 0000ffffffffffff -05:51:18,520 INFO kernel:... max period: 000000007fffffff -05:51:18,520 INFO kernel:... fixed-purpose events: 3 -05:51:18,520 INFO kernel:... event mask: 000000070000000f -05:51:18,520 WARNING kernel:NMI watchdog disabled (cpu0): hardware events not enabled -05:51:18,520 INFO kernel:Booting Node 0, Processors #1 Ok. -05:51:18,520 INFO kernel:Disabled fast string operations -05:51:18,520 INFO kernel:mce: CPU supports 0 MCE banks -05:51:18,520 INFO kernel:Skipped synchronization checks as TSC is reliable. -05:51:18,520 INFO kernel:Brought up 2 CPUs -05:51:18,520 INFO kernel:Total of 2 processors activated (9600.34 BogoMIPS). -05:51:18,520 INFO kernel:x86 PAT enabled: cpu 0, old 0x0, new 0x7010600070106 -05:51:18,520 INFO kernel:x86 PAT enabled: cpu 1, old 0x0, new 0x7010600070106 -05:51:18,520 DEBUG kernel:sizeof(vma)=200 bytes -05:51:18,520 DEBUG kernel:sizeof(page)=56 bytes -05:51:18,520 DEBUG kernel:sizeof(inode)=592 bytes -05:51:18,520 DEBUG kernel:sizeof(dentry)=192 bytes -05:51:18,520 DEBUG kernel:sizeof(ext3inode)=800 bytes -05:51:18,520 DEBUG kernel:sizeof(buffer_head)=104 bytes -05:51:18,520 DEBUG kernel:sizeof(skbuff)=232 bytes -05:51:18,520 DEBUG kernel:sizeof(task_struct)=2648 bytes -05:51:18,520 INFO kernel:devtmpfs: initialized -05:51:18,520 INFO kernel:PM: Registering ACPI NVS region at 7feff000 (4096 bytes) -05:51:18,520 INFO kernel:regulator: core version 0.5 -05:51:18,520 INFO kernel:NET: Registered protocol family 16 -05:51:18,520 INFO kernel:ACPI: bus type pci registered -05:51:18,520 NOTICE kernel:PCI: MCFG configuration 0: base e0000000 segment 0 buses 0 - 255 -05:51:18,520 NOTICE kernel:PCI: MCFG area at e0000000 reserved in E820 -05:51:18,520 INFO kernel:PCI: Using MMCONFIG at e0000000 - efffffff -05:51:18,520 INFO kernel:PCI: Using configuration type 1 for base access -05:51:18,520 WARNING kernel:bio: create slab at 0 -05:51:18,520 DEBUG kernel:ACPI: EC: Look up EC in DSDT -05:51:18,520 NOTICE kernel:ACPI: BIOS _OSI(Linux) query ignored -05:51:18,520 INFO kernel:ACPI: Interpreter enabled -05:51:18,520 INFO kernel:ACPI: (supports S0 S1 S4 S5) -05:51:18,520 INFO kernel:ACPI: Using IOAPIC for interrupt routing -05:51:18,520 INFO kernel:ACPI: No dock devices found. -05:51:18,520 INFO kernel:PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug -05:51:18,520 INFO kernel:ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-ff]) -05:51:18,520 INFO kernel:pci_root PNP0A03:00: host bridge window [mem 0x000a0000-0x000bffff] -05:51:18,520 INFO kernel:pci_root PNP0A03:00: host bridge window [mem 0x000d0000-0x000d3fff] -05:51:18,520 INFO kernel:pci_root PNP0A03:00: host bridge window [mem 0x000d4000-0x000d7fff] -05:51:18,520 INFO kernel:pci_root PNP0A03:00: host bridge window [mem 0x000d8000-0x000dbfff] -05:51:18,520 INFO kernel:pci_root PNP0A03:00: host bridge window [mem 0x80000000-0xfebfffff] -05:51:18,520 INFO kernel:pci_root PNP0A03:00: host bridge window [io 0x0000-0x0cf7] -05:51:18,520 INFO kernel:pci_root PNP0A03:00: host bridge window [io 0x0d00-0xfeff] -05:51:18,520 INFO kernel:PCI host bridge to bus 0000:00 -05:51:18,520 INFO kernel:pci_bus 0000:00: root bus resource [mem 0x000a0000-0x000bffff] -05:51:18,520 INFO kernel:pci_bus 0000:00: root bus resource [mem 0x000d0000-0x000d3fff] -05:51:18,520 INFO kernel:pci_bus 0000:00: root bus resource [mem 0x000d4000-0x000d7fff] -05:51:18,520 INFO kernel:pci_bus 0000:00: root bus resource [mem 0x000d8000-0x000dbfff] -05:51:18,520 INFO kernel:pci_bus 0000:00: root bus resource [mem 0x80000000-0xfebfffff] -05:51:18,520 INFO kernel:pci_bus 0000:00: root bus resource [io 0x0000-0x0cf7] -05:51:18,520 INFO kernel:pci_bus 0000:00: root bus resource [io 0x0d00-0xfeff] -05:51:18,520 DEBUG kernel:pci 0000:00:07.1: reg 20: [io 0x10c0-0x10cf] -05:51:18,520 INFO kernel:pci 0000:00:07.3: quirk: [io 0x1000-0x103f] claimed by PIIX4 ACPI -05:51:18,520 INFO kernel:pci 0000:00:07.3: quirk: [io 0x1040-0x104f] claimed by PIIX4 SMB -05:51:18,520 DEBUG kernel:pci 0000:00:07.7: reg 10: [io 0x1080-0x10bf] -05:51:18,520 DEBUG kernel:pci 0000:00:07.7: reg 14: [mem 0xd0000000-0xd0001fff 64bit] -05:51:18,520 DEBUG kernel:pci 0000:00:0f.0: reg 10: [io 0x10d0-0x10df] -05:51:18,520 DEBUG kernel:pci 0000:00:0f.0: reg 14: [mem 0xd8000000-0xdbffffff pref] -05:51:18,520 DEBUG kernel:pci 0000:00:0f.0: reg 18: [mem 0xd0800000-0xd0ffffff] -05:51:18,520 DEBUG kernel:pci 0000:00:0f.0: reg 30: [mem 0x00000000-0x00007fff pref] -05:51:18,520 DEBUG kernel:pci 0000:00:10.0: reg 10: [io 0x1400-0x14ff] -05:51:18,520 DEBUG kernel:pci 0000:00:10.0: reg 14: [mem 0xd0040000-0xd005ffff 64bit] -05:51:18,520 DEBUG kernel:pci 0000:00:10.0: reg 1c: [mem 0xd0020000-0xd003ffff 64bit] -05:51:18,520 DEBUG kernel:pci 0000:00:10.0: reg 30: [mem 0x00000000-0x00003fff pref] -05:51:18,520 INFO kernel:pci 0000:00:15.0: PME# supported from D0 D3hot D3cold -05:51:18,520 INFO kernel:pci 0000:00:15.0: PME# disabled -05:51:18,520 INFO kernel:pci 0000:00:15.1: PME# supported from D0 D3hot D3cold -05:51:18,520 INFO kernel:pci 0000:00:15.1: PME# disabled -05:51:18,520 INFO kernel:pci 0000:00:15.2: PME# supported from D0 D3hot D3cold -05:51:18,520 INFO kernel:pci 0000:00:15.2: PME# disabled -05:51:18,520 INFO kernel:pci 0000:00:15.3: PME# supported from D0 D3hot D3cold -05:51:18,520 INFO kernel:pci 0000:00:15.3: PME# disabled -05:51:18,520 INFO kernel:pci 0000:00:15.4: PME# supported from D0 D3hot D3cold -05:51:18,520 INFO kernel:pci 0000:00:15.4: PME# disabled -05:51:18,520 INFO kernel:pci 0000:00:15.5: PME# supported from D0 D3hot D3cold -05:51:18,520 INFO kernel:pci 0000:00:15.5: PME# disabled -05:51:18,520 INFO kernel:pci 0000:00:15.6: PME# supported from D0 D3hot D3cold -05:51:18,520 INFO kernel:pci 0000:00:15.6: PME# disabled -05:51:18,520 INFO kernel:pci 0000:00:15.7: PME# supported from D0 D3hot D3cold -05:51:18,520 INFO kernel:pci 0000:00:15.7: PME# disabled -05:51:18,520 INFO kernel:pci 0000:00:16.0: PME# supported from D0 D3hot D3cold -05:51:18,520 INFO kernel:pci 0000:00:16.0: PME# disabled -05:51:18,520 INFO kernel:pci 0000:00:16.1: PME# supported from D0 D3hot D3cold -05:51:18,520 INFO kernel:pci 0000:00:16.1: PME# disabled -05:51:18,520 INFO kernel:pci 0000:00:16.2: PME# supported from D0 D3hot D3cold -05:51:18,520 INFO kernel:pci 0000:00:16.2: PME# disabled -05:51:18,520 INFO kernel:pci 0000:00:16.3: PME# supported from D0 D3hot D3cold -05:51:18,520 INFO kernel:pci 0000:00:16.3: PME# disabled -05:51:18,520 INFO kernel:pci 0000:00:16.4: PME# supported from D0 D3hot D3cold -05:51:18,520 INFO kernel:pci 0000:00:16.4: PME# disabled -05:51:18,520 INFO kernel:pci 0000:00:16.5: PME# supported from D0 D3hot D3cold -05:51:18,520 INFO kernel:pci 0000:00:16.5: PME# disabled -05:51:18,520 INFO kernel:pci 0000:00:16.6: PME# supported from D0 D3hot D3cold -05:51:18,520 INFO kernel:pci 0000:00:16.6: PME# disabled -05:51:18,520 INFO kernel:pci 0000:00:16.7: PME# supported from D0 D3hot D3cold -05:51:18,520 INFO kernel:pci 0000:00:16.7: PME# disabled -05:51:18,520 INFO kernel:pci 0000:00:17.0: PME# supported from D0 D3hot D3cold -05:51:18,520 INFO kernel:pci 0000:00:17.0: PME# disabled -05:51:18,520 INFO kernel:pci 0000:00:17.1: PME# supported from D0 D3hot D3cold -05:51:18,520 INFO kernel:pci 0000:00:17.1: PME# disabled -05:51:18,520 INFO kernel:pci 0000:00:17.2: PME# supported from D0 D3hot D3cold -05:51:18,520 INFO kernel:pci 0000:00:17.2: PME# disabled -05:51:18,520 INFO kernel:pci 0000:00:17.3: PME# supported from D0 D3hot D3cold -05:51:18,520 INFO kernel:pci 0000:00:17.3: PME# disabled -05:51:18,520 INFO kernel:pci 0000:00:17.4: PME# supported from D0 D3hot D3cold -05:51:18,520 INFO kernel:pci 0000:00:17.4: PME# disabled -05:51:18,520 INFO kernel:pci 0000:00:17.5: PME# supported from D0 D3hot D3cold -05:51:18,520 INFO kernel:pci 0000:00:17.5: PME# disabled -05:51:18,520 INFO kernel:pci 0000:00:17.6: PME# supported from D0 D3hot D3cold -05:51:18,520 INFO kernel:pci 0000:00:17.6: PME# disabled -05:51:18,520 INFO kernel:pci 0000:00:17.7: PME# supported from D0 D3hot D3cold -05:51:18,520 INFO kernel:pci 0000:00:17.7: PME# disabled -05:51:18,520 INFO kernel:pci 0000:00:18.0: PME# supported from D0 D3hot D3cold -05:51:18,520 INFO kernel:pci 0000:00:18.0: PME# disabled -05:51:18,520 INFO kernel:pci 0000:00:18.1: PME# supported from D0 D3hot D3cold -05:51:18,520 INFO kernel:pci 0000:00:18.1: PME# disabled -05:51:18,520 INFO kernel:pci 0000:00:18.2: PME# supported from D0 D3hot D3cold -05:51:18,520 INFO kernel:pci 0000:00:18.2: PME# disabled -05:51:18,520 INFO kernel:pci 0000:00:18.3: PME# supported from D0 D3hot D3cold -05:51:18,520 INFO kernel:pci 0000:00:18.3: PME# disabled -05:51:18,520 INFO kernel:pci 0000:00:18.4: PME# supported from D0 D3hot D3cold -05:51:18,520 INFO kernel:pci 0000:00:18.4: PME# disabled -05:51:18,520 INFO kernel:pci 0000:00:18.5: PME# supported from D0 D3hot D3cold -05:51:18,520 INFO kernel:pci 0000:00:18.5: PME# disabled -05:51:18,520 INFO kernel:pci 0000:00:18.6: PME# supported from D0 D3hot D3cold -05:51:18,520 INFO kernel:pci 0000:00:18.6: PME# disabled -05:51:18,520 INFO kernel:pci 0000:00:18.7: PME# supported from D0 D3hot D3cold -05:51:18,520 INFO kernel:pci 0000:00:18.7: PME# disabled -05:51:18,520 INFO kernel:pci 0000:00:01.0: PCI bridge to [bus 01-01] -05:51:18,520 DEBUG kernel:pci 0000:00:01.0: bridge window [io 0xf000-0x0000] (disabled) -05:51:18,520 DEBUG kernel:pci 0000:00:01.0: bridge window [mem 0xfff00000-0x000fffff] (disabled) -05:51:18,520 DEBUG kernel:pci 0000:00:01.0: bridge window [mem 0xfff00000-0x000fffff pref] (disabled) -05:51:18,520 DEBUG kernel:pci 0000:02:00.0: reg 10: [mem 0xd1020000-0xd103ffff 64bit] -05:51:18,520 DEBUG kernel:pci 0000:02:00.0: reg 18: [mem 0xd1000000-0xd100ffff 64bit] -05:51:18,520 DEBUG kernel:pci 0000:02:00.0: reg 20: [io 0x2000-0x203f] -05:51:18,520 DEBUG kernel:pci 0000:02:00.0: reg 30: [mem 0x00000000-0x0000ffff pref] -05:51:18,520 INFO kernel:pci 0000:02:00.0: PME# supported from D0 D3hot D3cold -05:51:18,520 INFO kernel:pci 0000:02:00.0: PME# disabled -05:51:18,520 DEBUG kernel:pci 0000:02:01.0: reg 10: [mem 0xd1040000-0xd105ffff 64bit] -05:51:18,520 DEBUG kernel:pci 0000:02:01.0: reg 18: [mem 0xd1010000-0xd101ffff 64bit] -05:51:18,520 DEBUG kernel:pci 0000:02:01.0: reg 20: [io 0x2040-0x207f] -05:51:18,520 DEBUG kernel:pci 0000:02:01.0: reg 30: [mem 0x00000000-0x0000ffff pref] -05:51:18,520 INFO kernel:pci 0000:02:01.0: PME# supported from D0 D3hot D3cold -05:51:18,520 INFO kernel:pci 0000:02:01.0: PME# disabled -05:51:18,520 DEBUG kernel:pci 0000:02:02.0: reg 10: [mem 0xd1080000-0xd109ffff 64bit] -05:51:18,520 DEBUG kernel:pci 0000:02:02.0: reg 18: [mem 0xd1060000-0xd106ffff 64bit] -05:51:18,520 DEBUG kernel:pci 0000:02:02.0: reg 20: [io 0x2080-0x20bf] -05:51:18,520 DEBUG kernel:pci 0000:02:02.0: reg 30: [mem 0x00000000-0x0000ffff pref] -05:51:18,520 INFO kernel:pci 0000:02:02.0: PME# supported from D0 D3hot D3cold -05:51:18,520 INFO kernel:pci 0000:02:02.0: PME# disabled -05:51:18,520 DEBUG kernel:pci 0000:02:03.0: reg 10: [mem 0xd10a0000-0xd10bffff 64bit] -05:51:18,520 DEBUG kernel:pci 0000:02:03.0: reg 18: [mem 0xd1070000-0xd107ffff 64bit] -05:51:18,520 DEBUG kernel:pci 0000:02:03.0: reg 20: [io 0x20c0-0x20ff] -05:51:18,520 DEBUG kernel:pci 0000:02:03.0: reg 30: [mem 0x00000000-0x0000ffff pref] -05:51:18,520 INFO kernel:pci 0000:02:03.0: PME# supported from D0 D3hot D3cold -05:51:18,520 INFO kernel:pci 0000:02:03.0: PME# disabled -05:51:18,520 INFO kernel:pci 0000:00:11.0: PCI bridge to [bus 02-02] (subtractive decode) -05:51:18,520 DEBUG kernel:pci 0000:00:11.0: bridge window [io 0x2000-0x3fff] -05:51:18,520 DEBUG kernel:pci 0000:00:11.0: bridge window [mem 0xd1000000-0xd23fffff] -05:51:18,520 DEBUG kernel:pci 0000:00:11.0: bridge window [mem 0xdc400000-0xdc9fffff 64bit pref] -05:51:18,520 DEBUG kernel:pci 0000:00:11.0: bridge window [mem 0x000a0000-0x000bffff] (subtractive decode) -05:51:18,520 DEBUG kernel:pci 0000:00:11.0: bridge window [mem 0x000d0000-0x000d3fff] (subtractive decode) -05:51:18,520 DEBUG kernel:pci 0000:00:11.0: bridge window [mem 0x000d4000-0x000d7fff] (subtractive decode) -05:51:18,520 DEBUG kernel:pci 0000:00:11.0: bridge window [mem 0x000d8000-0x000dbfff] (subtractive decode) -05:51:18,520 DEBUG kernel:pci 0000:00:11.0: bridge window [mem 0x80000000-0xfebfffff] (subtractive decode) -05:51:18,520 DEBUG kernel:pci 0000:00:11.0: bridge window [io 0x0000-0x0cf7] (subtractive decode) -05:51:18,520 DEBUG kernel:pci 0000:00:11.0: bridge window [io 0x0d00-0xfeff] (subtractive decode) -05:51:18,520 INFO kernel:pci 0000:00:15.0: PCI bridge to [bus 03-03] -05:51:18,520 DEBUG kernel:pci 0000:00:15.0: bridge window [io 0x4000-0x4fff] -05:51:18,520 DEBUG kernel:pci 0000:00:15.0: bridge window [mem 0xd2400000-0xd24fffff] -05:51:18,520 DEBUG kernel:pci 0000:00:15.0: bridge window [mem 0xd4400000-0xd44fffff 64bit pref] -05:51:18,520 INFO kernel:pci 0000:00:15.1: PCI bridge to [bus 04-04] -05:51:18,520 DEBUG kernel:pci 0000:00:15.1: bridge window [io 0x8000-0x8fff] -05:51:18,520 DEBUG kernel:pci 0000:00:15.1: bridge window [mem 0xd2800000-0xd28fffff] -05:51:18,520 DEBUG kernel:pci 0000:00:15.1: bridge window [mem 0xd4800000-0xd48fffff 64bit pref] -05:51:18,520 INFO kernel:pci 0000:00:15.2: PCI bridge to [bus 05-05] -05:51:18,520 DEBUG kernel:pci 0000:00:15.2: bridge window [io 0xc000-0xcfff] -05:51:18,520 DEBUG kernel:pci 0000:00:15.2: bridge window [mem 0xd2c00000-0xd2cfffff] -05:51:18,520 DEBUG kernel:pci 0000:00:15.2: bridge window [mem 0xdcb00000-0xdcbfffff 64bit pref] -05:51:18,520 INFO kernel:pci 0000:00:15.3: PCI bridge to [bus 06-06] -05:51:18,520 DEBUG kernel:pci 0000:00:15.3: bridge window [io 0xf000-0x0000] (disabled) -05:51:18,520 DEBUG kernel:pci 0000:00:15.3: bridge window [mem 0xd3000000-0xd30fffff] -05:51:18,520 DEBUG kernel:pci 0000:00:15.3: bridge window [mem 0xdcd00000-0xdcdfffff 64bit pref] -05:51:18,520 INFO kernel:pci 0000:00:15.4: PCI bridge to [bus 07-07] -05:51:18,520 DEBUG kernel:pci 0000:00:15.4: bridge window [io 0xf000-0x0000] (disabled) -05:51:18,520 DEBUG kernel:pci 0000:00:15.4: bridge window [mem 0xd3400000-0xd34fffff] -05:51:18,520 DEBUG kernel:pci 0000:00:15.4: bridge window [mem 0xdcf00000-0xdcffffff 64bit pref] -05:51:18,520 INFO kernel:pci 0000:00:15.5: PCI bridge to [bus 08-08] -05:51:18,520 DEBUG kernel:pci 0000:00:15.5: bridge window [io 0xf000-0x0000] (disabled) -05:51:18,520 DEBUG kernel:pci 0000:00:15.5: bridge window [mem 0xd3800000-0xd38fffff] -05:51:18,520 DEBUG kernel:pci 0000:00:15.5: bridge window [mem 0xdd100000-0xdd1fffff 64bit pref] -05:51:18,520 INFO kernel:pci 0000:00:15.6: PCI bridge to [bus 09-09] -05:51:18,520 DEBUG kernel:pci 0000:00:15.6: bridge window [io 0xf000-0x0000] (disabled) -05:51:18,520 DEBUG kernel:pci 0000:00:15.6: bridge window [mem 0xd3c00000-0xd3cfffff] -05:51:18,520 DEBUG kernel:pci 0000:00:15.6: bridge window [mem 0xdd300000-0xdd3fffff 64bit pref] -05:51:18,520 INFO kernel:pci 0000:00:15.7: PCI bridge to [bus 0a-0a] -05:51:18,520 DEBUG kernel:pci 0000:00:15.7: bridge window [io 0xf000-0x0000] (disabled) -05:51:18,520 DEBUG kernel:pci 0000:00:15.7: bridge window [mem 0xd4000000-0xd40fffff] -05:51:18,520 DEBUG kernel:pci 0000:00:15.7: bridge window [mem 0xdd500000-0xdd5fffff 64bit pref] -05:51:18,520 INFO kernel:pci 0000:00:16.0: PCI bridge to [bus 0b-0b] -05:51:18,520 DEBUG kernel:pci 0000:00:16.0: bridge window [io 0x5000-0x5fff] -05:51:18,520 DEBUG kernel:pci 0000:00:16.0: bridge window [mem 0xd2500000-0xd25fffff] -05:51:18,520 DEBUG kernel:pci 0000:00:16.0: bridge window [mem 0xd4500000-0xd45fffff 64bit pref] -05:51:18,521 INFO kernel:pci 0000:00:16.1: PCI bridge to [bus 0c-0c] -05:51:18,521 DEBUG kernel:pci 0000:00:16.1: bridge window [io 0x9000-0x9fff] -05:51:18,521 DEBUG kernel:pci 0000:00:16.1: bridge window [mem 0xd2900000-0xd29fffff] -05:51:18,521 DEBUG kernel:pci 0000:00:16.1: bridge window [mem 0xd4900000-0xd49fffff 64bit pref] -05:51:18,521 INFO kernel:pci 0000:00:16.2: PCI bridge to [bus 0d-0d] -05:51:18,521 DEBUG kernel:pci 0000:00:16.2: bridge window [io 0xd000-0xdfff] -05:51:18,521 DEBUG kernel:pci 0000:00:16.2: bridge window [mem 0xd2d00000-0xd2dfffff] -05:51:18,521 DEBUG kernel:pci 0000:00:16.2: bridge window [mem 0xd4b00000-0xd4bfffff 64bit pref] -05:51:18,521 INFO kernel:pci 0000:00:16.3: PCI bridge to [bus 0e-0e] -05:51:18,521 DEBUG kernel:pci 0000:00:16.3: bridge window [io 0xf000-0x0000] (disabled) -05:51:18,521 DEBUG kernel:pci 0000:00:16.3: bridge window [mem 0xd3100000-0xd31fffff] -05:51:18,521 DEBUG kernel:pci 0000:00:16.3: bridge window [mem 0xd4d00000-0xd4dfffff 64bit pref] -05:51:18,521 INFO kernel:pci 0000:00:16.4: PCI bridge to [bus 0f-0f] -05:51:18,521 DEBUG kernel:pci 0000:00:16.4: bridge window [io 0xf000-0x0000] (disabled) -05:51:18,521 DEBUG kernel:pci 0000:00:16.4: bridge window [mem 0xd3500000-0xd35fffff] -05:51:18,521 DEBUG kernel:pci 0000:00:16.4: bridge window [mem 0xd4f00000-0xd4ffffff 64bit pref] -05:51:18,521 INFO kernel:pci 0000:00:16.5: PCI bridge to [bus 10-10] -05:51:18,521 DEBUG kernel:pci 0000:00:16.5: bridge window [io 0xf000-0x0000] (disabled) -05:51:18,521 DEBUG kernel:pci 0000:00:16.5: bridge window [mem 0xd3900000-0xd39fffff] -05:51:18,521 DEBUG kernel:pci 0000:00:16.5: bridge window [mem 0xd5100000-0xd51fffff 64bit pref] -05:51:18,521 INFO kernel:pci 0000:00:16.6: PCI bridge to [bus 11-11] -05:51:18,521 DEBUG kernel:pci 0000:00:16.6: bridge window [io 0xf000-0x0000] (disabled) -05:51:18,521 DEBUG kernel:pci 0000:00:16.6: bridge window [mem 0xd3d00000-0xd3dfffff] -05:51:18,521 DEBUG kernel:pci 0000:00:16.6: bridge window [mem 0xd5300000-0xd53fffff 64bit pref] -05:51:18,521 INFO kernel:pci 0000:00:16.7: PCI bridge to [bus 12-12] -05:51:18,521 DEBUG kernel:pci 0000:00:16.7: bridge window [io 0xf000-0x0000] (disabled) -05:51:18,521 DEBUG kernel:pci 0000:00:16.7: bridge window [mem 0xd4100000-0xd41fffff] -05:51:18,521 DEBUG kernel:pci 0000:00:16.7: bridge window [mem 0xd5500000-0xd55fffff 64bit pref] -05:51:18,521 INFO kernel:pci 0000:00:17.0: PCI bridge to [bus 13-13] -05:51:18,521 DEBUG kernel:pci 0000:00:17.0: bridge window [io 0x6000-0x6fff] -05:51:18,521 DEBUG kernel:pci 0000:00:17.0: bridge window [mem 0xd2600000-0xd26fffff] -05:51:18,521 DEBUG kernel:pci 0000:00:17.0: bridge window [mem 0xd4600000-0xd46fffff 64bit pref] -05:51:18,521 INFO kernel:pci 0000:00:17.1: PCI bridge to [bus 14-14] -05:51:18,521 DEBUG kernel:pci 0000:00:17.1: bridge window [io 0xa000-0xafff] -05:51:18,521 DEBUG kernel:pci 0000:00:17.1: bridge window [mem 0xd2a00000-0xd2afffff] -05:51:18,521 DEBUG kernel:pci 0000:00:17.1: bridge window [mem 0xdca00000-0xdcafffff 64bit pref] -05:51:18,521 INFO kernel:pci 0000:00:17.2: PCI bridge to [bus 15-15] -05:51:18,521 DEBUG kernel:pci 0000:00:17.2: bridge window [io 0xe000-0xefff] -05:51:18,521 DEBUG kernel:pci 0000:00:17.2: bridge window [mem 0xd2e00000-0xd2efffff] -05:51:18,521 DEBUG kernel:pci 0000:00:17.2: bridge window [mem 0xdcc00000-0xdccfffff 64bit pref] -05:51:18,521 INFO kernel:pci 0000:00:17.3: PCI bridge to [bus 16-16] -05:51:18,521 DEBUG kernel:pci 0000:00:17.3: bridge window [io 0xf000-0x0000] (disabled) -05:51:18,521 DEBUG kernel:pci 0000:00:17.3: bridge window [mem 0xd3200000-0xd32fffff] -05:51:18,521 DEBUG kernel:pci 0000:00:17.3: bridge window [mem 0xdce00000-0xdcefffff 64bit pref] -05:51:18,521 INFO kernel:pci 0000:00:17.4: PCI bridge to [bus 17-17] -05:51:18,521 DEBUG kernel:pci 0000:00:17.4: bridge window [io 0xf000-0x0000] (disabled) -05:51:18,521 DEBUG kernel:pci 0000:00:17.4: bridge window [mem 0xd3600000-0xd36fffff] -05:51:18,521 DEBUG kernel:pci 0000:00:17.4: bridge window [mem 0xdd000000-0xdd0fffff 64bit pref] -05:51:18,521 INFO kernel:pci 0000:00:17.5: PCI bridge to [bus 18-18] -05:51:18,521 DEBUG kernel:pci 0000:00:17.5: bridge window [io 0xf000-0x0000] (disabled) -05:51:18,521 DEBUG kernel:pci 0000:00:17.5: bridge window [mem 0xd3a00000-0xd3afffff] -05:51:18,521 DEBUG kernel:pci 0000:00:17.5: bridge window [mem 0xdd200000-0xdd2fffff 64bit pref] -05:51:18,521 INFO kernel:pci 0000:00:17.6: PCI bridge to [bus 19-19] -05:51:18,521 DEBUG kernel:pci 0000:00:17.6: bridge window [io 0xf000-0x0000] (disabled) -05:51:18,521 DEBUG kernel:pci 0000:00:17.6: bridge window [mem 0xd3e00000-0xd3efffff] -05:51:18,521 DEBUG kernel:pci 0000:00:17.6: bridge window [mem 0xdd400000-0xdd4fffff 64bit pref] -05:51:18,521 INFO kernel:pci 0000:00:17.7: PCI bridge to [bus 1a-1a] -05:51:18,521 DEBUG kernel:pci 0000:00:17.7: bridge window [io 0xf000-0x0000] (disabled) -05:51:18,521 DEBUG kernel:pci 0000:00:17.7: bridge window [mem 0xd4200000-0xd42fffff] -05:51:18,521 DEBUG kernel:pci 0000:00:17.7: bridge window [mem 0xdd600000-0xdd6fffff 64bit pref] -05:51:18,521 INFO kernel:pci 0000:00:18.0: PCI bridge to [bus 1b-1b] -05:51:18,521 DEBUG kernel:pci 0000:00:18.0: bridge window [io 0x7000-0x7fff] -05:51:18,521 DEBUG kernel:pci 0000:00:18.0: bridge window [mem 0xd2700000-0xd27fffff] -05:51:18,521 DEBUG kernel:pci 0000:00:18.0: bridge window [mem 0xd4700000-0xd47fffff 64bit pref] -05:51:18,521 INFO kernel:pci 0000:00:18.1: PCI bridge to [bus 1c-1c] -05:51:18,521 DEBUG kernel:pci 0000:00:18.1: bridge window [io 0xb000-0xbfff] -05:51:18,521 DEBUG kernel:pci 0000:00:18.1: bridge window [mem 0xd2b00000-0xd2bfffff] -05:51:18,521 DEBUG kernel:pci 0000:00:18.1: bridge window [mem 0xd4a00000-0xd4afffff 64bit pref] -05:51:18,521 INFO kernel:pci 0000:00:18.2: PCI bridge to [bus 1d-1d] -05:51:18,521 DEBUG kernel:pci 0000:00:18.2: bridge window [io 0xf000-0xffff] -05:51:18,521 DEBUG kernel:pci 0000:00:18.2: bridge window [mem 0xd2f00000-0xd2ffffff] -05:51:18,521 DEBUG kernel:pci 0000:00:18.2: bridge window [mem 0xd4c00000-0xd4cfffff 64bit pref] -05:51:18,521 INFO kernel:pci 0000:00:18.3: PCI bridge to [bus 1e-1e] -05:51:18,521 DEBUG kernel:pci 0000:00:18.3: bridge window [io 0xf000-0x0000] (disabled) -05:51:18,521 DEBUG kernel:pci 0000:00:18.3: bridge window [mem 0xd3300000-0xd33fffff] -05:51:18,521 DEBUG kernel:pci 0000:00:18.3: bridge window [mem 0xd4e00000-0xd4efffff 64bit pref] -05:51:18,521 INFO kernel:pci 0000:00:18.4: PCI bridge to [bus 1f-1f] -05:51:18,521 DEBUG kernel:pci 0000:00:18.4: bridge window [io 0xf000-0x0000] (disabled) -05:51:18,521 DEBUG kernel:pci 0000:00:18.4: bridge window [mem 0xd3700000-0xd37fffff] -05:51:18,521 DEBUG kernel:pci 0000:00:18.4: bridge window [mem 0xd5000000-0xd50fffff 64bit pref] -05:51:18,521 INFO kernel:pci 0000:00:18.5: PCI bridge to [bus 20-20] -05:51:18,521 DEBUG kernel:pci 0000:00:18.5: bridge window [io 0xf000-0x0000] (disabled) -05:51:18,521 DEBUG kernel:pci 0000:00:18.5: bridge window [mem 0xd3b00000-0xd3bfffff] -05:51:18,521 DEBUG kernel:pci 0000:00:18.5: bridge window [mem 0xd5200000-0xd52fffff 64bit pref] -05:51:18,521 INFO kernel:pci 0000:00:18.6: PCI bridge to [bus 21-21] -05:51:18,521 DEBUG kernel:pci 0000:00:18.6: bridge window [io 0xf000-0x0000] (disabled) -05:51:18,521 DEBUG kernel:pci 0000:00:18.6: bridge window [mem 0xd3f00000-0xd3ffffff] -05:51:18,521 DEBUG kernel:pci 0000:00:18.6: bridge window [mem 0xd5400000-0xd54fffff 64bit pref] -05:51:18,521 INFO kernel:pci 0000:00:18.7: PCI bridge to [bus 22-22] -05:51:18,521 DEBUG kernel:pci 0000:00:18.7: bridge window [io 0xf000-0x0000] (disabled) -05:51:18,521 DEBUG kernel:pci 0000:00:18.7: bridge window [mem 0xd4300000-0xd43fffff] -05:51:18,521 DEBUG kernel:pci 0000:00:18.7: bridge window [mem 0xd5600000-0xd56fffff 64bit pref] -05:51:18,521 DEBUG kernel:ACPI: PCI Interrupt Routing Table [\_SB_.PCI0._PRT] -05:51:18,521 INFO kernel: pci0000:00: Requesting ACPI _OSC control (0x1d) -05:51:18,521 INFO kernel: pci0000:00: ACPI _OSC control (0x15) granted -05:51:18,521 INFO kernel:ACPI: PCI Interrupt Link [LNKA] (IRQs 3 4 5 6 7 *9 10 11 14 15) -05:51:18,521 INFO kernel:ACPI: PCI Interrupt Link [LNKB] (IRQs 3 4 5 6 7 9 10 *11 14 15) -05:51:18,521 INFO kernel:ACPI: PCI Interrupt Link [LNKC] (IRQs 3 4 5 6 7 9 *10 11 14 15) -05:51:18,521 INFO kernel:ACPI: PCI Interrupt Link [LNKD] (IRQs 3 4 *5 6 7 9 10 11 14 15) -05:51:18,521 INFO kernel:vgaarb: device added: PCI:0000:00:0f.0,decodes=io+mem,owns=io+mem,locks=none -05:51:18,521 INFO kernel:vgaarb: loaded -05:51:18,521 INFO kernel:vgaarb: bridge control possible 0000:00:0f.0 -05:51:18,521 NOTICE kernel:SCSI subsystem initialized -05:51:18,521 DEBUG kernel:libata version 3.00 loaded. -05:51:18,521 INFO kernel:usbcore: registered new interface driver usbfs -05:51:18,521 INFO kernel:usbcore: registered new interface driver hub -05:51:18,521 INFO kernel:usbcore: registered new device driver usb -05:51:18,521 INFO kernel:PCI: Using ACPI for IRQ routing -05:51:18,521 DEBUG kernel:PCI: old code would have set cacheline size to 32 bytes, but clflush_size = 64 -05:51:18,521 DEBUG kernel:PCI: pci_cache_line_size set to 64 bytes -05:51:18,521 INFO kernel:pci 0000:00:18.2: no compatible bridge window for [io 0xf000-0xffff] -05:51:18,521 INFO kernel:pci 0000:00:18.2: can't reserve window [io 0xf000-0xffff] -05:51:18,521 NOTICE kernel:lo: Dropping TSO features since no CSUM feature. -05:51:18,521 INFO kernel:NetLabel: Initializing -05:51:18,521 INFO kernel:NetLabel: domain hash size = 128 -05:51:18,521 INFO kernel:NetLabel: protocols = UNLABELED CIPSOv4 -05:51:18,521 INFO kernel:NetLabel: unlabeled traffic allowed by default -05:51:18,521 INFO kernel:HPET: 16 timers in total, 0 timers will be used for per-cpu timer -05:51:18,521 INFO kernel:hpet0: at MMIO 0xfed00000, IRQs 2, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 -05:51:18,521 INFO kernel:hpet0: 16 comparators, 64-bit 14.318180 MHz counter -05:51:18,521 INFO kernel:Switching to clocksource hpet -05:51:18,521 INFO kernel:pnp: PnP ACPI init -05:51:18,521 INFO kernel:ACPI: bus type pnp registered -05:51:18,521 DEBUG kernel:pnp 00:00: [io 0x0cf8-0x0cff] -05:51:18,521 DEBUG kernel:pnp 00:00: Plug and Play ACPI device, IDs PNP0a03 PNP0a08 (active) -05:51:18,521 DEBUG kernel:pnp 00:01: [io 0x0010-0x001f] -05:51:18,521 DEBUG kernel:pnp 00:01: [io 0x0024-0x0025] -05:51:18,521 DEBUG kernel:pnp 00:01: [io 0x0028-0x0029] -05:51:18,521 DEBUG kernel:pnp 00:01: [io 0x002c-0x002d] -05:51:18,521 DEBUG kernel:pnp 00:01: [io 0x002e-0x002f] -05:51:18,521 DEBUG kernel:pnp 00:01: [io 0x0030-0x0031] -05:51:18,521 DEBUG kernel:pnp 00:01: [io 0x0034-0x0035] -05:51:18,521 DEBUG kernel:pnp 00:01: [io 0x0038-0x0039] -05:51:18,521 DEBUG kernel:pnp 00:01: [io 0x003c-0x003d] -05:51:18,521 DEBUG kernel:pnp 00:01: [io 0x0050-0x0053] -05:51:18,521 DEBUG kernel:pnp 00:01: [io 0x0072-0x0077] -05:51:18,521 DEBUG kernel:pnp 00:01: [io 0x0080] -05:51:18,521 DEBUG kernel:pnp 00:01: [io 0x0090-0x009f] -05:51:18,521 DEBUG kernel:pnp 00:01: [io 0x00a4-0x00a5] -05:51:18,521 DEBUG kernel:pnp 00:01: [io 0x00a8-0x00a9] -05:51:18,521 DEBUG kernel:pnp 00:01: [io 0x00ac-0x00ad] -05:51:18,521 DEBUG kernel:pnp 00:01: [io 0x00b0-0x00b5] -05:51:18,521 DEBUG kernel:pnp 00:01: [io 0x00b8-0x00b9] -05:51:18,521 DEBUG kernel:pnp 00:01: [io 0x00bc-0x00bd] -05:51:18,521 DEBUG kernel:pnp 00:01: [io 0x1000-0x103f] -05:51:18,521 DEBUG kernel:pnp 00:01: [io 0x1040-0x104f] -05:51:18,521 DEBUG kernel:pnp 00:01: [io 0x0cf0-0x0cf1] -05:51:18,521 DEBUG kernel:pnp 00:01: Plug and Play ACPI device, IDs PNP0c02 (active) -05:51:18,521 DEBUG kernel:pnp 00:02: [io 0x0000-0x000f] -05:51:18,521 DEBUG kernel:pnp 00:02: [io 0x0081-0x008f] -05:51:18,521 DEBUG kernel:pnp 00:02: [io 0x00c0-0x00df] -05:51:18,521 DEBUG kernel:pnp 00:02: [dma 4] -05:51:18,521 DEBUG kernel:pnp 00:02: Plug and Play ACPI device, IDs PNP0200 (active) -05:51:18,521 DEBUG kernel:pnp 00:03: [io 0x0020-0x0021] -05:51:18,521 DEBUG kernel:pnp 00:03: [io 0x00a0-0x00a1] -05:51:18,521 DEBUG kernel:pnp 00:03: [io 0x04d0-0x04d1] -05:51:18,521 DEBUG kernel:pnp 00:03: [irq 2 disabled] -05:51:18,521 DEBUG kernel:pnp 00:03: Plug and Play ACPI device, IDs PNP0001 (active) -05:51:18,521 DEBUG kernel:pnp 00:04: [io 0x0070-0x0071] -05:51:18,521 DEBUG kernel:pnp 00:04: [irq 8] -05:51:18,521 DEBUG kernel:pnp 00:04: Plug and Play ACPI device, IDs PNP0b00 (active) -05:51:18,521 DEBUG kernel:pnp 00:05: [io 0x0061] -05:51:18,521 DEBUG kernel:pnp 00:05: Plug and Play ACPI device, IDs PNP0800 (active) -05:51:18,521 DEBUG kernel:pnp 00:06: [io 0x0060] -05:51:18,521 DEBUG kernel:pnp 00:06: [io 0x0064] -05:51:18,521 DEBUG kernel:pnp 00:06: [irq 1] -05:51:18,521 DEBUG kernel:pnp 00:06: Plug and Play ACPI device, IDs PNP0303 (active) -05:51:18,521 DEBUG kernel:pnp 00:07: [irq 12] -05:51:18,521 DEBUG kernel:pnp 00:07: Plug and Play ACPI device, IDs PNP0f13 (active) -05:51:18,521 DEBUG kernel:pnp 00:08: [mem 0xfed00000-0xfed003ff] -05:51:18,521 DEBUG kernel:pnp 00:08: Plug and Play ACPI device, IDs PNP0103 PNP0c01 (active) -05:51:18,521 DEBUG kernel:pnp 00:09: [io 0x0378-0x037f] -05:51:18,521 DEBUG kernel:pnp 00:09: [irq 7] -05:51:18,521 DEBUG kernel:pnp 00:09: Plug and Play ACPI device, IDs PNP0400 (active) -05:51:18,521 DEBUG kernel:pnp 00:0a: [io 0x03f8-0x03ff] -05:51:18,521 DEBUG kernel:pnp 00:0a: [irq 4] -05:51:18,521 DEBUG kernel:pnp 00:0a: Plug and Play ACPI device, IDs PNP0501 (active) -05:51:18,521 DEBUG kernel:pnp 00:0b: [io 0x02f8-0x02ff] -05:51:18,521 DEBUG kernel:pnp 00:0b: [irq 3] -05:51:18,521 DEBUG kernel:pnp 00:0b: Plug and Play ACPI device, IDs PNP0501 (active) -05:51:18,521 DEBUG kernel:pnp 00:0c: [io 0x03f0-0x03f5] -05:51:18,521 DEBUG kernel:pnp 00:0c: [io 0x03f7] -05:51:18,521 DEBUG kernel:pnp 00:0c: [irq 6] -05:51:18,521 DEBUG kernel:pnp 00:0c: [dma 2] -05:51:18,521 DEBUG kernel:pnp 00:0c: Plug and Play ACPI device, IDs PNP0700 (active) -05:51:18,521 DEBUG kernel:pnp 00:0d: [mem 0xe0000000-0xefffffff] -05:51:18,521 DEBUG kernel:pnp 00:0d: [io 0x1060-0x107f] -05:51:18,521 DEBUG kernel:pnp 00:0d: [mem 0xd0200000-0xd03fffff] -05:51:18,521 DEBUG kernel:pnp 00:0d: Plug and Play ACPI device, IDs PNP0c02 (active) -05:51:18,521 INFO kernel:pnp: PnP ACPI: found 14 devices -05:51:18,521 INFO kernel:ACPI: ACPI bus type pnp unregistered -05:51:18,521 INFO kernel:system 00:01: [io 0x1000-0x103f] has been reserved -05:51:18,521 INFO kernel:system 00:01: [io 0x1040-0x104f] has been reserved -05:51:18,521 INFO kernel:system 00:01: [io 0x0cf0-0x0cf1] has been reserved -05:51:18,521 INFO kernel:system 00:08: [mem 0xfed00000-0xfed003ff] has been reserved -05:51:18,521 INFO kernel:system 00:0d: [io 0x1060-0x107f] has been reserved -05:51:18,521 INFO kernel:system 00:0d: [mem 0xe0000000-0xefffffff] has been reserved -05:51:18,521 INFO kernel:system 00:0d: [mem 0xd0200000-0xd03fffff] has been reserved -05:51:18,521 DEBUG kernel:PCI: max bus depth: 1 pci_try_num: 2 -05:51:18,521 INFO kernel:pci 0000:00:0f.0: BAR 6: assigned [mem 0x80000000-0x80007fff pref] -05:51:18,521 INFO kernel:pci 0000:00:10.0: BAR 6: assigned [mem 0x80008000-0x8000bfff pref] -05:51:18,521 INFO kernel:pci 0000:00:18.2: BAR 13: can't assign io (size 0x1000) -05:51:18,521 INFO kernel:pci 0000:00:18.7: BAR 13: can't assign io (size 0x1000) -05:51:18,521 INFO kernel:pci 0000:00:18.6: BAR 13: can't assign io (size 0x1000) -05:51:18,521 INFO kernel:pci 0000:00:18.5: BAR 13: can't assign io (size 0x1000) -05:51:18,521 INFO kernel:pci 0000:00:18.4: BAR 13: can't assign io (size 0x1000) -05:51:18,521 INFO kernel:pci 0000:00:18.3: BAR 13: can't assign io (size 0x1000) -05:51:18,521 INFO kernel:pci 0000:00:17.7: BAR 13: can't assign io (size 0x1000) -05:51:18,521 INFO kernel:pci 0000:00:17.6: BAR 13: can't assign io (size 0x1000) -05:51:18,521 INFO kernel:pci 0000:00:17.5: BAR 13: can't assign io (size 0x1000) -05:51:18,521 INFO kernel:pci 0000:00:17.4: BAR 13: can't assign io (size 0x1000) -05:51:18,521 INFO kernel:pci 0000:00:17.3: BAR 13: can't assign io (size 0x1000) -05:51:18,521 INFO kernel:pci 0000:00:16.7: BAR 13: can't assign io (size 0x1000) -05:51:18,521 INFO kernel:pci 0000:00:16.6: BAR 13: can't assign io (size 0x1000) -05:51:18,521 INFO kernel:pci 0000:00:16.5: BAR 13: can't assign io (size 0x1000) -05:51:18,521 INFO kernel:pci 0000:00:16.4: BAR 13: can't assign io (size 0x1000) -05:51:18,521 INFO kernel:pci 0000:00:16.3: BAR 13: can't assign io (size 0x1000) -05:51:18,521 INFO kernel:pci 0000:00:15.7: BAR 13: can't assign io (size 0x1000) -05:51:18,521 INFO kernel:pci 0000:00:15.6: BAR 13: can't assign io (size 0x1000) -05:51:18,521 INFO kernel:pci 0000:00:15.5: BAR 13: can't assign io (size 0x1000) -05:51:18,521 INFO kernel:pci 0000:00:15.4: BAR 13: can't assign io (size 0x1000) -05:51:18,521 INFO kernel:pci 0000:00:15.3: BAR 13: can't assign io (size 0x1000) -05:51:18,521 INFO kernel:pci 0000:00:01.0: PCI bridge to [bus 01-01] -05:51:18,521 INFO kernel:pci 0000:00:01.0: PCI bridge to [bus 01-01] -05:51:18,521 INFO kernel:pci 0000:00:01.0: bridge window [io disabled] -05:51:18,521 INFO kernel:pci 0000:00:01.0: bridge window [mem disabled] -05:51:18,521 INFO kernel:pci 0000:00:01.0: bridge window [mem pref disabled] -05:51:18,521 INFO kernel:pci 0000:02:00.0: BAR 6: assigned [mem 0xdc400000-0xdc40ffff pref] -05:51:18,521 INFO kernel:pci 0000:02:01.0: BAR 6: assigned [mem 0xdc410000-0xdc41ffff pref] -05:51:18,521 INFO kernel:pci 0000:02:02.0: BAR 6: assigned [mem 0xdc420000-0xdc42ffff pref] -05:51:18,521 INFO kernel:pci 0000:02:03.0: BAR 6: assigned [mem 0xdc430000-0xdc43ffff pref] -05:51:18,521 INFO kernel:pci 0000:00:11.0: PCI bridge to [bus 02-02] -05:51:18,521 INFO kernel:pci 0000:00:11.0: PCI bridge to [bus 02-02] -05:51:18,521 INFO kernel:pci 0000:00:11.0: bridge window [io 0x2000-0x3fff] -05:51:18,521 INFO kernel:pci 0000:00:11.0: bridge window [mem 0xd1000000-0xd23fffff] -05:51:18,521 INFO kernel:pci 0000:00:11.0: bridge window [mem 0xdc400000-0xdc9fffff 64bit pref] -05:51:18,521 INFO kernel:pci 0000:00:15.0: PCI bridge to [bus 03-03] -05:51:18,521 INFO kernel:pci 0000:00:15.0: PCI bridge to [bus 03-03] -05:51:18,521 INFO kernel:pci 0000:00:15.0: bridge window [io 0x4000-0x4fff] -05:51:18,521 INFO kernel:pci 0000:00:15.0: bridge window [mem 0xd2400000-0xd24fffff] -05:51:18,521 INFO kernel:pci 0000:00:15.0: bridge window [mem 0xd4400000-0xd44fffff 64bit pref] -05:51:18,521 INFO kernel:pci 0000:00:15.1: PCI bridge to [bus 04-04] -05:51:18,521 INFO kernel:pci 0000:00:15.1: PCI bridge to [bus 04-04] -05:51:18,521 INFO kernel:pci 0000:00:15.1: bridge window [io 0x8000-0x8fff] -05:51:18,521 INFO kernel:pci 0000:00:15.1: bridge window [mem 0xd2800000-0xd28fffff] -05:51:18,521 INFO kernel:pci 0000:00:15.1: bridge window [mem 0xd4800000-0xd48fffff 64bit pref] -05:51:18,521 INFO kernel:pci 0000:00:15.2: PCI bridge to [bus 05-05] -05:51:18,521 INFO kernel:pci 0000:00:15.2: PCI bridge to [bus 05-05] -05:51:18,521 INFO kernel:pci 0000:00:15.2: bridge window [io 0xc000-0xcfff] -05:51:18,521 INFO kernel:pci 0000:00:15.2: bridge window [mem 0xd2c00000-0xd2cfffff] -05:51:18,521 INFO kernel:pci 0000:00:15.2: bridge window [mem 0xdcb00000-0xdcbfffff 64bit pref] -05:51:18,521 INFO kernel:pci 0000:00:15.3: PCI bridge to [bus 06-06] -05:51:18,521 INFO kernel:pci 0000:00:15.3: PCI bridge to [bus 06-06] -05:51:18,521 INFO kernel:pci 0000:00:15.3: bridge window [io disabled] -05:51:18,521 INFO kernel:pci 0000:00:15.3: bridge window [mem 0xd3000000-0xd30fffff] -05:51:18,521 INFO kernel:pci 0000:00:15.3: bridge window [mem 0xdcd00000-0xdcdfffff 64bit pref] -05:51:18,521 INFO kernel:pci 0000:00:15.4: PCI bridge to [bus 07-07] -05:51:18,521 INFO kernel:pci 0000:00:15.4: PCI bridge to [bus 07-07] -05:51:18,521 INFO kernel:pci 0000:00:15.4: bridge window [io disabled] -05:51:18,521 INFO kernel:pci 0000:00:15.4: bridge window [mem 0xd3400000-0xd34fffff] -05:51:18,521 INFO kernel:pci 0000:00:15.4: bridge window [mem 0xdcf00000-0xdcffffff 64bit pref] -05:51:18,521 INFO kernel:pci 0000:00:15.5: PCI bridge to [bus 08-08] -05:51:18,521 INFO kernel:pci 0000:00:15.5: PCI bridge to [bus 08-08] -05:51:18,521 INFO kernel:pci 0000:00:15.5: bridge window [io disabled] -05:51:18,521 INFO kernel:pci 0000:00:15.5: bridge window [mem 0xd3800000-0xd38fffff] -05:51:18,521 INFO kernel:pci 0000:00:15.5: bridge window [mem 0xdd100000-0xdd1fffff 64bit pref] -05:51:18,521 INFO kernel:pci 0000:00:15.6: PCI bridge to [bus 09-09] -05:51:18,521 INFO kernel:pci 0000:00:15.6: PCI bridge to [bus 09-09] -05:51:18,521 INFO kernel:pci 0000:00:15.6: bridge window [io disabled] -05:51:18,521 INFO kernel:pci 0000:00:15.6: bridge window [mem 0xd3c00000-0xd3cfffff] -05:51:18,521 INFO kernel:pci 0000:00:15.6: bridge window [mem 0xdd300000-0xdd3fffff 64bit pref] -05:51:18,521 INFO kernel:pci 0000:00:15.7: PCI bridge to [bus 0a-0a] -05:51:18,521 INFO kernel:pci 0000:00:15.7: PCI bridge to [bus 0a-0a] -05:51:18,521 INFO kernel:pci 0000:00:15.7: bridge window [io disabled] -05:51:18,521 INFO kernel:pci 0000:00:15.7: bridge window [mem 0xd4000000-0xd40fffff] -05:51:18,521 INFO kernel:pci 0000:00:15.7: bridge window [mem 0xdd500000-0xdd5fffff 64bit pref] -05:51:18,521 INFO kernel:pci 0000:00:16.0: PCI bridge to [bus 0b-0b] -05:51:18,521 INFO kernel:pci 0000:00:16.0: PCI bridge to [bus 0b-0b] -05:51:18,521 INFO kernel:pci 0000:00:16.0: bridge window [io 0x5000-0x5fff] -05:51:18,521 INFO kernel:pci 0000:00:16.0: bridge window [mem 0xd2500000-0xd25fffff] -05:51:18,521 INFO kernel:pci 0000:00:16.0: bridge window [mem 0xd4500000-0xd45fffff 64bit pref] -05:51:18,521 INFO kernel:pci 0000:00:16.1: PCI bridge to [bus 0c-0c] -05:51:18,521 INFO kernel:pci 0000:00:16.1: PCI bridge to [bus 0c-0c] -05:51:18,521 INFO kernel:pci 0000:00:16.1: bridge window [io 0x9000-0x9fff] -05:51:18,521 INFO kernel:pci 0000:00:16.1: bridge window [mem 0xd2900000-0xd29fffff] -05:51:18,521 INFO kernel:pci 0000:00:16.1: bridge window [mem 0xd4900000-0xd49fffff 64bit pref] -05:51:18,521 INFO kernel:pci 0000:00:16.2: PCI bridge to [bus 0d-0d] -05:51:18,521 INFO kernel:pci 0000:00:16.2: PCI bridge to [bus 0d-0d] -05:51:18,521 INFO kernel:pci 0000:00:16.2: bridge window [io 0xd000-0xdfff] -05:51:18,521 INFO kernel:pci 0000:00:16.2: bridge window [mem 0xd2d00000-0xd2dfffff] -05:51:18,521 INFO kernel:pci 0000:00:16.2: bridge window [mem 0xd4b00000-0xd4bfffff 64bit pref] -05:51:18,521 INFO kernel:pci 0000:00:16.3: PCI bridge to [bus 0e-0e] -05:51:18,521 INFO kernel:pci 0000:00:16.3: PCI bridge to [bus 0e-0e] -05:51:18,521 INFO kernel:pci 0000:00:16.3: bridge window [io disabled] -05:51:18,521 INFO kernel:pci 0000:00:16.3: bridge window [mem 0xd3100000-0xd31fffff] -05:51:18,521 INFO kernel:pci 0000:00:16.3: bridge window [mem 0xd4d00000-0xd4dfffff 64bit pref] -05:51:18,521 INFO kernel:pci 0000:00:16.4: PCI bridge to [bus 0f-0f] -05:51:18,521 INFO kernel:pci 0000:00:16.4: PCI bridge to [bus 0f-0f] -05:51:18,521 INFO kernel:pci 0000:00:16.4: bridge window [io disabled] -05:51:18,521 INFO kernel:pci 0000:00:16.4: bridge window [mem 0xd3500000-0xd35fffff] -05:51:18,521 INFO kernel:pci 0000:00:16.4: bridge window [mem 0xd4f00000-0xd4ffffff 64bit pref] -05:51:18,521 INFO kernel:pci 0000:00:16.5: PCI bridge to [bus 10-10] -05:51:18,521 INFO kernel:pci 0000:00:16.5: PCI bridge to [bus 10-10] -05:51:18,521 INFO kernel:pci 0000:00:16.5: bridge window [io disabled] -05:51:18,521 INFO kernel:pci 0000:00:16.5: bridge window [mem 0xd3900000-0xd39fffff] -05:51:18,521 INFO kernel:pci 0000:00:16.5: bridge window [mem 0xd5100000-0xd51fffff 64bit pref] -05:51:18,521 INFO kernel:pci 0000:00:16.6: PCI bridge to [bus 11-11] -05:51:18,521 INFO kernel:pci 0000:00:16.6: PCI bridge to [bus 11-11] -05:51:18,521 INFO kernel:pci 0000:00:16.6: bridge window [io disabled] -05:51:18,521 INFO kernel:pci 0000:00:16.6: bridge window [mem 0xd3d00000-0xd3dfffff] -05:51:18,521 INFO kernel:pci 0000:00:16.6: bridge window [mem 0xd5300000-0xd53fffff 64bit pref] -05:51:18,521 INFO kernel:pci 0000:00:16.7: PCI bridge to [bus 12-12] -05:51:18,521 INFO kernel:pci 0000:00:16.7: PCI bridge to [bus 12-12] -05:51:18,521 INFO kernel:pci 0000:00:16.7: bridge window [io disabled] -05:51:18,521 INFO kernel:pci 0000:00:16.7: bridge window [mem 0xd4100000-0xd41fffff] -05:51:18,521 INFO kernel:pci 0000:00:16.7: bridge window [mem 0xd5500000-0xd55fffff 64bit pref] -05:51:18,521 INFO kernel:pci 0000:00:17.0: PCI bridge to [bus 13-13] -05:51:18,521 INFO kernel:pci 0000:00:17.0: PCI bridge to [bus 13-13] -05:51:18,521 INFO kernel:pci 0000:00:17.0: bridge window [io 0x6000-0x6fff] -05:51:18,521 INFO kernel:pci 0000:00:17.0: bridge window [mem 0xd2600000-0xd26fffff] -05:51:18,521 INFO kernel:pci 0000:00:17.0: bridge window [mem 0xd4600000-0xd46fffff 64bit pref] -05:51:18,521 INFO kernel:pci 0000:00:17.1: PCI bridge to [bus 14-14] -05:51:18,521 INFO kernel:pci 0000:00:17.1: PCI bridge to [bus 14-14] -05:51:18,521 INFO kernel:pci 0000:00:17.1: bridge window [io 0xa000-0xafff] -05:51:18,521 INFO kernel:pci 0000:00:17.1: bridge window [mem 0xd2a00000-0xd2afffff] -05:51:18,521 INFO kernel:pci 0000:00:17.1: bridge window [mem 0xdca00000-0xdcafffff 64bit pref] -05:51:18,521 INFO kernel:pci 0000:00:17.2: PCI bridge to [bus 15-15] -05:51:18,521 INFO kernel:pci 0000:00:17.2: PCI bridge to [bus 15-15] -05:51:18,521 INFO kernel:pci 0000:00:17.2: bridge window [io 0xe000-0xefff] -05:51:18,521 INFO kernel:pci 0000:00:17.2: bridge window [mem 0xd2e00000-0xd2efffff] -05:51:18,521 INFO kernel:pci 0000:00:17.2: bridge window [mem 0xdcc00000-0xdccfffff 64bit pref] -05:51:18,521 INFO kernel:pci 0000:00:17.3: PCI bridge to [bus 16-16] -05:51:18,521 INFO kernel:pci 0000:00:17.3: PCI bridge to [bus 16-16] -05:51:18,521 INFO kernel:pci 0000:00:17.3: bridge window [io disabled] -05:51:18,521 INFO kernel:pci 0000:00:17.3: bridge window [mem 0xd3200000-0xd32fffff] -05:51:18,521 INFO kernel:pci 0000:00:17.3: bridge window [mem 0xdce00000-0xdcefffff 64bit pref] -05:51:18,521 INFO kernel:pci 0000:00:17.4: PCI bridge to [bus 17-17] -05:51:18,521 INFO kernel:pci 0000:00:17.4: PCI bridge to [bus 17-17] -05:51:18,521 INFO kernel:pci 0000:00:17.4: bridge window [io disabled] -05:51:18,521 INFO kernel:pci 0000:00:17.4: bridge window [mem 0xd3600000-0xd36fffff] -05:51:18,521 INFO kernel:pci 0000:00:17.4: bridge window [mem 0xdd000000-0xdd0fffff 64bit pref] -05:51:18,521 INFO kernel:pci 0000:00:17.5: PCI bridge to [bus 18-18] -05:51:18,521 INFO kernel:pci 0000:00:17.5: PCI bridge to [bus 18-18] -05:51:18,521 INFO kernel:pci 0000:00:17.5: bridge window [io disabled] -05:51:18,521 INFO kernel:pci 0000:00:17.5: bridge window [mem 0xd3a00000-0xd3afffff] -05:51:18,521 INFO kernel:pci 0000:00:17.5: bridge window [mem 0xdd200000-0xdd2fffff 64bit pref] -05:51:18,521 INFO kernel:pci 0000:00:17.6: PCI bridge to [bus 19-19] -05:51:18,521 INFO kernel:pci 0000:00:17.6: PCI bridge to [bus 19-19] -05:51:18,521 INFO kernel:pci 0000:00:17.6: bridge window [io disabled] -05:51:18,521 INFO kernel:pci 0000:00:17.6: bridge window [mem 0xd3e00000-0xd3efffff] -05:51:18,521 INFO kernel:pci 0000:00:17.6: bridge window [mem 0xdd400000-0xdd4fffff 64bit pref] -05:51:18,521 INFO kernel:pci 0000:00:17.7: PCI bridge to [bus 1a-1a] -05:51:18,521 INFO kernel:pci 0000:00:17.7: PCI bridge to [bus 1a-1a] -05:51:18,521 INFO kernel:pci 0000:00:17.7: bridge window [io disabled] -05:51:18,521 INFO kernel:pci 0000:00:17.7: bridge window [mem 0xd4200000-0xd42fffff] -05:51:18,521 INFO kernel:pci 0000:00:17.7: bridge window [mem 0xdd600000-0xdd6fffff 64bit pref] -05:51:18,521 INFO kernel:pci 0000:00:18.0: PCI bridge to [bus 1b-1b] -05:51:18,521 INFO kernel:pci 0000:00:18.0: PCI bridge to [bus 1b-1b] -05:51:18,521 INFO kernel:pci 0000:00:18.0: bridge window [io 0x7000-0x7fff] -05:51:18,521 INFO kernel:pci 0000:00:18.0: bridge window [mem 0xd2700000-0xd27fffff] -05:51:18,521 INFO kernel:pci 0000:00:18.0: bridge window [mem 0xd4700000-0xd47fffff 64bit pref] -05:51:18,521 INFO kernel:pci 0000:00:18.1: PCI bridge to [bus 1c-1c] -05:51:18,521 INFO kernel:pci 0000:00:18.1: PCI bridge to [bus 1c-1c] -05:51:18,521 INFO kernel:pci 0000:00:18.1: bridge window [io 0xb000-0xbfff] -05:51:18,521 INFO kernel:pci 0000:00:18.1: bridge window [mem 0xd2b00000-0xd2bfffff] -05:51:18,521 INFO kernel:pci 0000:00:18.1: bridge window [mem 0xd4a00000-0xd4afffff 64bit pref] -05:51:18,521 INFO kernel:pci 0000:00:18.2: PCI bridge to [bus 1d-1d] -05:51:18,521 INFO kernel:pci 0000:00:18.2: PCI bridge to [bus 1d-1d] -05:51:18,521 INFO kernel:pci 0000:00:18.2: bridge window [io disabled] -05:51:18,521 INFO kernel:pci 0000:00:18.2: bridge window [mem 0xd2f00000-0xd2ffffff] -05:51:18,521 INFO kernel:pci 0000:00:18.2: bridge window [mem 0xd4c00000-0xd4cfffff 64bit pref] -05:51:18,521 INFO kernel:pci 0000:00:18.3: PCI bridge to [bus 1e-1e] -05:51:18,521 INFO kernel:pci 0000:00:18.3: PCI bridge to [bus 1e-1e] -05:51:18,521 INFO kernel:pci 0000:00:18.3: bridge window [io disabled] -05:51:18,521 INFO kernel:pci 0000:00:18.3: bridge window [mem 0xd3300000-0xd33fffff] -05:51:18,521 INFO kernel:pci 0000:00:18.3: bridge window [mem 0xd4e00000-0xd4efffff 64bit pref] -05:51:18,521 INFO kernel:pci 0000:00:18.4: PCI bridge to [bus 1f-1f] -05:51:18,521 INFO kernel:pci 0000:00:18.4: PCI bridge to [bus 1f-1f] -05:51:18,521 INFO kernel:pci 0000:00:18.4: bridge window [io disabled] -05:51:18,521 INFO kernel:pci 0000:00:18.4: bridge window [mem 0xd3700000-0xd37fffff] -05:51:18,521 INFO kernel:pci 0000:00:18.4: bridge window [mem 0xd5000000-0xd50fffff 64bit pref] -05:51:18,521 INFO kernel:pci 0000:00:18.5: PCI bridge to [bus 20-20] -05:51:18,521 INFO kernel:pci 0000:00:18.5: PCI bridge to [bus 20-20] -05:51:18,521 INFO kernel:pci 0000:00:18.5: bridge window [io disabled] -05:51:18,521 INFO kernel:pci 0000:00:18.5: bridge window [mem 0xd3b00000-0xd3bfffff] -05:51:18,521 INFO kernel:pci 0000:00:18.5: bridge window [mem 0xd5200000-0xd52fffff 64bit pref] -05:51:18,521 INFO kernel:pci 0000:00:18.6: PCI bridge to [bus 21-21] -05:51:18,521 INFO kernel:pci 0000:00:18.6: PCI bridge to [bus 21-21] -05:51:18,521 INFO kernel:pci 0000:00:18.6: bridge window [io disabled] -05:51:18,521 INFO kernel:pci 0000:00:18.6: bridge window [mem 0xd3f00000-0xd3ffffff] -05:51:18,521 INFO kernel:pci 0000:00:18.6: bridge window [mem 0xd5400000-0xd54fffff 64bit pref] -05:51:18,521 INFO kernel:pci 0000:00:18.7: PCI bridge to [bus 22-22] -05:51:18,521 INFO kernel:pci 0000:00:18.7: PCI bridge to [bus 22-22] -05:51:18,521 INFO kernel:pci 0000:00:18.7: bridge window [io disabled] -05:51:18,521 INFO kernel:pci 0000:00:18.7: bridge window [mem 0xd4300000-0xd43fffff] -05:51:18,521 INFO kernel:pci 0000:00:18.7: bridge window [mem 0xd5600000-0xd56fffff 64bit pref] -05:51:18,521 DEBUG kernel:pci 0000:00:01.0: setting latency timer to 64 -05:51:18,521 DEBUG kernel:pci 0000:00:15.0: setting latency timer to 64 -05:51:18,521 DEBUG kernel:pci 0000:00:15.1: setting latency timer to 64 -05:51:18,521 DEBUG kernel:pci 0000:00:15.2: setting latency timer to 64 -05:51:18,521 DEBUG kernel:pci 0000:00:15.3: setting latency timer to 64 -05:51:18,521 DEBUG kernel:pci 0000:00:15.4: setting latency timer to 64 -05:51:18,521 DEBUG kernel:pci 0000:00:15.5: setting latency timer to 64 -05:51:18,521 DEBUG kernel:pci 0000:00:15.6: setting latency timer to 64 -05:51:18,521 DEBUG kernel:pci 0000:00:15.7: setting latency timer to 64 -05:51:18,521 DEBUG kernel:pci 0000:00:16.0: setting latency timer to 64 -05:51:18,521 DEBUG kernel:pci 0000:00:16.1: setting latency timer to 64 -05:51:18,521 DEBUG kernel:pci 0000:00:16.2: setting latency timer to 64 -05:51:18,521 DEBUG kernel:pci 0000:00:16.3: setting latency timer to 64 -05:51:18,521 DEBUG kernel:pci 0000:00:16.4: setting latency timer to 64 -05:51:18,521 DEBUG kernel:pci 0000:00:16.5: setting latency timer to 64 -05:51:18,521 DEBUG kernel:pci 0000:00:16.6: setting latency timer to 64 -05:51:18,521 DEBUG kernel:pci 0000:00:16.7: setting latency timer to 64 -05:51:18,521 DEBUG kernel:pci 0000:00:17.0: setting latency timer to 64 -05:51:18,521 DEBUG kernel:pci 0000:00:17.1: setting latency timer to 64 -05:51:18,522 DEBUG kernel:pci 0000:00:17.2: setting latency timer to 64 -05:51:18,522 DEBUG kernel:pci 0000:00:17.3: setting latency timer to 64 -05:51:18,522 DEBUG kernel:pci 0000:00:17.4: setting latency timer to 64 -05:51:18,522 DEBUG kernel:pci 0000:00:17.5: setting latency timer to 64 -05:51:18,522 DEBUG kernel:pci 0000:00:17.6: setting latency timer to 64 -05:51:18,522 DEBUG kernel:pci 0000:00:17.7: setting latency timer to 64 -05:51:18,522 DEBUG kernel:pci 0000:00:18.0: setting latency timer to 64 -05:51:18,522 DEBUG kernel:pci 0000:00:18.1: setting latency timer to 64 -05:51:18,522 DEBUG kernel:pci 0000:00:18.2: setting latency timer to 64 -05:51:18,522 DEBUG kernel:pci 0000:00:18.3: setting latency timer to 64 -05:51:18,522 DEBUG kernel:pci 0000:00:18.4: setting latency timer to 64 -05:51:18,522 DEBUG kernel:pci 0000:00:18.5: setting latency timer to 64 -05:51:18,522 DEBUG kernel:pci 0000:00:18.6: setting latency timer to 64 -05:51:18,522 DEBUG kernel:pci 0000:00:18.7: setting latency timer to 64 -05:51:18,522 DEBUG kernel:pci_bus 0000:00: resource 4 [mem 0x000a0000-0x000bffff] -05:51:18,522 DEBUG kernel:pci_bus 0000:00: resource 5 [mem 0x000d0000-0x000d3fff] -05:51:18,522 DEBUG kernel:pci_bus 0000:00: resource 6 [mem 0x000d4000-0x000d7fff] -05:51:18,522 DEBUG kernel:pci_bus 0000:00: resource 7 [mem 0x000d8000-0x000dbfff] -05:51:18,522 DEBUG kernel:pci_bus 0000:00: resource 8 [mem 0x80000000-0xfebfffff] -05:51:18,522 DEBUG kernel:pci_bus 0000:00: resource 9 [io 0x0000-0x0cf7] -05:51:18,522 DEBUG kernel:pci_bus 0000:00: resource 10 [io 0x0d00-0xfeff] -05:51:18,522 DEBUG kernel:pci_bus 0000:02: resource 0 [io 0x2000-0x3fff] -05:51:18,522 DEBUG kernel:pci_bus 0000:02: resource 1 [mem 0xd1000000-0xd23fffff] -05:51:18,522 DEBUG kernel:pci_bus 0000:02: resource 2 [mem 0xdc400000-0xdc9fffff 64bit pref] -05:51:18,522 DEBUG kernel:pci_bus 0000:02: resource 4 [mem 0x000a0000-0x000bffff] -05:51:18,522 DEBUG kernel:pci_bus 0000:02: resource 5 [mem 0x000d0000-0x000d3fff] -05:51:18,522 DEBUG kernel:pci_bus 0000:02: resource 6 [mem 0x000d4000-0x000d7fff] -05:51:18,522 DEBUG kernel:pci_bus 0000:02: resource 7 [mem 0x000d8000-0x000dbfff] -05:51:18,522 DEBUG kernel:pci_bus 0000:02: resource 8 [mem 0x80000000-0xfebfffff] -05:51:18,522 DEBUG kernel:pci_bus 0000:02: resource 9 [io 0x0000-0x0cf7] -05:51:18,522 DEBUG kernel:pci_bus 0000:02: resource 10 [io 0x0d00-0xfeff] -05:51:18,522 DEBUG kernel:pci_bus 0000:03: resource 0 [io 0x4000-0x4fff] -05:51:18,522 DEBUG kernel:pci_bus 0000:03: resource 1 [mem 0xd2400000-0xd24fffff] -05:51:18,522 DEBUG kernel:pci_bus 0000:03: resource 2 [mem 0xd4400000-0xd44fffff 64bit pref] -05:51:18,522 DEBUG kernel:pci_bus 0000:04: resource 0 [io 0x8000-0x8fff] -05:51:18,522 DEBUG kernel:pci_bus 0000:04: resource 1 [mem 0xd2800000-0xd28fffff] -05:51:18,522 DEBUG kernel:pci_bus 0000:04: resource 2 [mem 0xd4800000-0xd48fffff 64bit pref] -05:51:18,522 DEBUG kernel:pci_bus 0000:05: resource 0 [io 0xc000-0xcfff] -05:51:18,522 DEBUG kernel:pci_bus 0000:05: resource 1 [mem 0xd2c00000-0xd2cfffff] -05:51:18,522 DEBUG kernel:pci_bus 0000:05: resource 2 [mem 0xdcb00000-0xdcbfffff 64bit pref] -05:51:18,522 DEBUG kernel:pci_bus 0000:06: resource 1 [mem 0xd3000000-0xd30fffff] -05:51:18,522 DEBUG kernel:pci_bus 0000:06: resource 2 [mem 0xdcd00000-0xdcdfffff 64bit pref] -05:51:18,522 DEBUG kernel:pci_bus 0000:07: resource 1 [mem 0xd3400000-0xd34fffff] -05:51:18,522 DEBUG kernel:pci_bus 0000:07: resource 2 [mem 0xdcf00000-0xdcffffff 64bit pref] -05:51:18,522 DEBUG kernel:pci_bus 0000:08: resource 1 [mem 0xd3800000-0xd38fffff] -05:51:18,522 DEBUG kernel:pci_bus 0000:08: resource 2 [mem 0xdd100000-0xdd1fffff 64bit pref] -05:51:18,522 DEBUG kernel:pci_bus 0000:09: resource 1 [mem 0xd3c00000-0xd3cfffff] -05:51:18,522 DEBUG kernel:pci_bus 0000:09: resource 2 [mem 0xdd300000-0xdd3fffff 64bit pref] -05:51:18,522 DEBUG kernel:pci_bus 0000:0a: resource 1 [mem 0xd4000000-0xd40fffff] -05:51:18,522 DEBUG kernel:pci_bus 0000:0a: resource 2 [mem 0xdd500000-0xdd5fffff 64bit pref] -05:51:18,522 DEBUG kernel:pci_bus 0000:0b: resource 0 [io 0x5000-0x5fff] -05:51:18,522 DEBUG kernel:pci_bus 0000:0b: resource 1 [mem 0xd2500000-0xd25fffff] -05:51:18,522 DEBUG kernel:pci_bus 0000:0b: resource 2 [mem 0xd4500000-0xd45fffff 64bit pref] -05:51:18,522 DEBUG kernel:pci_bus 0000:0c: resource 0 [io 0x9000-0x9fff] -05:51:18,522 DEBUG kernel:pci_bus 0000:0c: resource 1 [mem 0xd2900000-0xd29fffff] -05:51:18,522 DEBUG kernel:pci_bus 0000:0c: resource 2 [mem 0xd4900000-0xd49fffff 64bit pref] -05:51:18,522 DEBUG kernel:pci_bus 0000:0d: resource 0 [io 0xd000-0xdfff] -05:51:18,522 DEBUG kernel:pci_bus 0000:0d: resource 1 [mem 0xd2d00000-0xd2dfffff] -05:51:18,522 DEBUG kernel:pci_bus 0000:0d: resource 2 [mem 0xd4b00000-0xd4bfffff 64bit pref] -05:51:18,522 DEBUG kernel:pci_bus 0000:0e: resource 1 [mem 0xd3100000-0xd31fffff] -05:51:18,522 DEBUG kernel:pci_bus 0000:0e: resource 2 [mem 0xd4d00000-0xd4dfffff 64bit pref] -05:51:18,522 DEBUG kernel:pci_bus 0000:0f: resource 1 [mem 0xd3500000-0xd35fffff] -05:51:18,522 DEBUG kernel:pci_bus 0000:0f: resource 2 [mem 0xd4f00000-0xd4ffffff 64bit pref] -05:51:18,522 DEBUG kernel:pci_bus 0000:10: resource 1 [mem 0xd3900000-0xd39fffff] -05:51:18,522 DEBUG kernel:pci_bus 0000:10: resource 2 [mem 0xd5100000-0xd51fffff 64bit pref] -05:51:18,522 DEBUG kernel:pci_bus 0000:11: resource 1 [mem 0xd3d00000-0xd3dfffff] -05:51:18,522 DEBUG kernel:pci_bus 0000:11: resource 2 [mem 0xd5300000-0xd53fffff 64bit pref] -05:51:18,522 DEBUG kernel:pci_bus 0000:12: resource 1 [mem 0xd4100000-0xd41fffff] -05:51:18,522 DEBUG kernel:pci_bus 0000:12: resource 2 [mem 0xd5500000-0xd55fffff 64bit pref] -05:51:18,522 DEBUG kernel:pci_bus 0000:13: resource 0 [io 0x6000-0x6fff] -05:51:18,522 DEBUG kernel:pci_bus 0000:13: resource 1 [mem 0xd2600000-0xd26fffff] -05:51:18,522 DEBUG kernel:pci_bus 0000:13: resource 2 [mem 0xd4600000-0xd46fffff 64bit pref] -05:51:18,522 DEBUG kernel:pci_bus 0000:14: resource 0 [io 0xa000-0xafff] -05:51:18,522 DEBUG kernel:pci_bus 0000:14: resource 1 [mem 0xd2a00000-0xd2afffff] -05:51:18,522 DEBUG kernel:pci_bus 0000:14: resource 2 [mem 0xdca00000-0xdcafffff 64bit pref] -05:51:18,522 DEBUG kernel:pci_bus 0000:15: resource 0 [io 0xe000-0xefff] -05:51:18,522 DEBUG kernel:pci_bus 0000:15: resource 1 [mem 0xd2e00000-0xd2efffff] -05:51:18,522 DEBUG kernel:pci_bus 0000:15: resource 2 [mem 0xdcc00000-0xdccfffff 64bit pref] -05:51:18,522 DEBUG kernel:pci_bus 0000:16: resource 1 [mem 0xd3200000-0xd32fffff] -05:51:18,522 DEBUG kernel:pci_bus 0000:16: resource 2 [mem 0xdce00000-0xdcefffff 64bit pref] -05:51:18,522 DEBUG kernel:pci_bus 0000:17: resource 1 [mem 0xd3600000-0xd36fffff] -05:51:18,522 DEBUG kernel:pci_bus 0000:17: resource 2 [mem 0xdd000000-0xdd0fffff 64bit pref] -05:51:18,522 DEBUG kernel:pci_bus 0000:18: resource 1 [mem 0xd3a00000-0xd3afffff] -05:51:18,522 DEBUG kernel:pci_bus 0000:18: resource 2 [mem 0xdd200000-0xdd2fffff 64bit pref] -05:51:18,522 DEBUG kernel:pci_bus 0000:19: resource 1 [mem 0xd3e00000-0xd3efffff] -05:51:18,522 DEBUG kernel:pci_bus 0000:19: resource 2 [mem 0xdd400000-0xdd4fffff 64bit pref] -05:51:18,522 DEBUG kernel:pci_bus 0000:1a: resource 1 [mem 0xd4200000-0xd42fffff] -05:51:18,522 DEBUG kernel:pci_bus 0000:1a: resource 2 [mem 0xdd600000-0xdd6fffff 64bit pref] -05:51:18,522 DEBUG kernel:pci_bus 0000:1b: resource 0 [io 0x7000-0x7fff] -05:51:18,522 DEBUG kernel:pci_bus 0000:1b: resource 1 [mem 0xd2700000-0xd27fffff] -05:51:18,522 DEBUG kernel:pci_bus 0000:1b: resource 2 [mem 0xd4700000-0xd47fffff 64bit pref] -05:51:18,522 DEBUG kernel:pci_bus 0000:1c: resource 0 [io 0xb000-0xbfff] -05:51:18,522 DEBUG kernel:pci_bus 0000:1c: resource 1 [mem 0xd2b00000-0xd2bfffff] -05:51:18,522 DEBUG kernel:pci_bus 0000:1c: resource 2 [mem 0xd4a00000-0xd4afffff 64bit pref] -05:51:18,522 DEBUG kernel:pci_bus 0000:1d: resource 1 [mem 0xd2f00000-0xd2ffffff] -05:51:18,522 DEBUG kernel:pci_bus 0000:1d: resource 2 [mem 0xd4c00000-0xd4cfffff 64bit pref] -05:51:18,522 DEBUG kernel:pci_bus 0000:1e: resource 1 [mem 0xd3300000-0xd33fffff] -05:51:18,522 DEBUG kernel:pci_bus 0000:1e: resource 2 [mem 0xd4e00000-0xd4efffff 64bit pref] -05:51:18,522 DEBUG kernel:pci_bus 0000:1f: resource 1 [mem 0xd3700000-0xd37fffff] -05:51:18,522 DEBUG kernel:pci_bus 0000:1f: resource 2 [mem 0xd5000000-0xd50fffff 64bit pref] -05:51:18,522 DEBUG kernel:pci_bus 0000:20: resource 1 [mem 0xd3b00000-0xd3bfffff] -05:51:18,522 DEBUG kernel:pci_bus 0000:20: resource 2 [mem 0xd5200000-0xd52fffff 64bit pref] -05:51:18,522 DEBUG kernel:pci_bus 0000:21: resource 1 [mem 0xd3f00000-0xd3ffffff] -05:51:18,522 DEBUG kernel:pci_bus 0000:21: resource 2 [mem 0xd5400000-0xd54fffff 64bit pref] -05:51:18,522 DEBUG kernel:pci_bus 0000:22: resource 1 [mem 0xd4300000-0xd43fffff] -05:51:18,522 DEBUG kernel:pci_bus 0000:22: resource 2 [mem 0xd5600000-0xd56fffff 64bit pref] -05:51:18,522 INFO kernel:NET: Registered protocol family 2 -05:51:18,522 INFO kernel:IP route cache hash table entries: 65536 (order: 7, 524288 bytes) -05:51:18,522 INFO kernel:TCP established hash table entries: 262144 (order: 10, 4194304 bytes) -05:51:18,527 INFO kernel:TCP bind hash table entries: 65536 (order: 8, 1048576 bytes) -05:51:18,527 INFO kernel:TCP: Hash tables configured (established 262144 bind 65536) -05:51:18,527 INFO kernel:TCP reno registered -05:51:18,527 INFO kernel:NET: Registered protocol family 1 -05:51:18,527 INFO kernel:pci 0000:00:00.0: Limiting direct PCI/PCI transfers -05:51:18,527 DEBUG kernel:pci 0000:00:0f.0: Boot video device -05:51:18,527 INFO kernel:Trying to unpack rootfs image as initramfs... -05:51:18,527 INFO kernel:Freeing initrd memory: 32601k freed -05:51:18,527 INFO kernel:Simple Boot Flag at 0x36 set to 0x80 -05:51:18,527 INFO kernel:audit: initializing netlink socket (disabled) -05:51:18,527 NOTICE kernel:type=2000 audit(1021096275.782:1): initialized -05:51:18,527 INFO kernel:HugeTLB registered 2 MB page size, pre-allocated 0 pages -05:51:18,527 NOTICE kernel:VFS: Disk quotas dquot_6.5.2 -05:51:18,527 WARNING kernel:Dquot-cache hash table entries: 512 (order 0, 4096 bytes) -05:51:18,527 INFO kernel:msgmni has been set to 4005 -05:51:18,527 DEBUG kernel:SELinux: Registering netfilter hooks -05:51:18,527 INFO kernel:alg: No test for stdrng (krng) -05:51:18,527 WARNING kernel:ksign: Installing public key data -05:51:18,527 WARNING kernel:Loading keyring -05:51:18,527 WARNING kernel:- Added public key 8A44323FB303E068 -05:51:18,527 WARNING kernel: - key was been created 363988184 seconds in future -05:51:18,527 WARNING kernel:- User ID: CentOS (Kernel Module GPG key) -05:51:18,527 INFO kernel:Block layer SCSI generic (bsg) driver version 0.4 loaded (major 251) -05:51:18,527 INFO kernel:io scheduler noop registered -05:51:18,527 INFO kernel:io scheduler anticipatory registered -05:51:18,527 INFO kernel:io scheduler deadline registered -05:51:18,527 INFO kernel:io scheduler cfq registered (default) -05:51:18,527 DEBUG kernel:pcieport 0000:00:15.0: setting latency timer to 64 -05:51:18,527 DEBUG kernel: alloc irq_desc for 24 on node -1 -05:51:18,527 DEBUG kernel: alloc kstat_irqs on node -1 -05:51:18,527 DEBUG kernel:pcieport 0000:00:15.0: irq 24 for MSI/MSI-X -05:51:18,527 DEBUG kernel:pcieport 0000:00:15.1: setting latency timer to 64 -05:51:18,527 DEBUG kernel: alloc irq_desc for 25 on node -1 -05:51:18,527 DEBUG kernel: alloc kstat_irqs on node -1 -05:51:18,527 DEBUG kernel:pcieport 0000:00:15.1: irq 25 for MSI/MSI-X -05:51:18,527 DEBUG kernel:pcieport 0000:00:15.2: setting latency timer to 64 -05:51:18,527 DEBUG kernel: alloc irq_desc for 26 on node -1 -05:51:18,527 DEBUG kernel: alloc kstat_irqs on node -1 -05:51:18,527 DEBUG kernel:pcieport 0000:00:15.2: irq 26 for MSI/MSI-X -05:51:18,527 DEBUG kernel:pcieport 0000:00:15.3: setting latency timer to 64 -05:51:18,527 DEBUG kernel: alloc irq_desc for 27 on node -1 -05:51:18,527 DEBUG kernel: alloc kstat_irqs on node -1 -05:51:18,527 DEBUG kernel:pcieport 0000:00:15.3: irq 27 for MSI/MSI-X -05:51:18,527 DEBUG kernel:pcieport 0000:00:15.4: setting latency timer to 64 -05:51:18,527 DEBUG kernel: alloc irq_desc for 28 on node -1 -05:51:18,527 DEBUG kernel: alloc kstat_irqs on node -1 -05:51:18,527 DEBUG kernel:pcieport 0000:00:15.4: irq 28 for MSI/MSI-X -05:51:18,527 DEBUG kernel:pcieport 0000:00:15.5: setting latency timer to 64 -05:51:18,527 DEBUG kernel: alloc irq_desc for 29 on node -1 -05:51:18,527 DEBUG kernel: alloc kstat_irqs on node -1 -05:51:18,527 DEBUG kernel:pcieport 0000:00:15.5: irq 29 for MSI/MSI-X -05:51:18,527 DEBUG kernel:pcieport 0000:00:15.6: setting latency timer to 64 -05:51:18,527 DEBUG kernel: alloc irq_desc for 30 on node -1 -05:51:18,527 DEBUG kernel: alloc kstat_irqs on node -1 -05:51:18,527 DEBUG kernel:pcieport 0000:00:15.6: irq 30 for MSI/MSI-X -05:51:18,527 DEBUG kernel:pcieport 0000:00:15.7: setting latency timer to 64 -05:51:18,527 DEBUG kernel: alloc irq_desc for 31 on node -1 -05:51:18,527 DEBUG kernel: alloc kstat_irqs on node -1 -05:51:18,527 DEBUG kernel:pcieport 0000:00:15.7: irq 31 for MSI/MSI-X -05:51:18,527 DEBUG kernel:pcieport 0000:00:16.0: setting latency timer to 64 -05:51:18,527 DEBUG kernel: alloc irq_desc for 32 on node -1 -05:51:18,527 DEBUG kernel: alloc kstat_irqs on node -1 -05:51:18,527 DEBUG kernel:pcieport 0000:00:16.0: irq 32 for MSI/MSI-X -05:51:18,527 DEBUG kernel:pcieport 0000:00:16.1: setting latency timer to 64 -05:51:18,527 DEBUG kernel: alloc irq_desc for 33 on node -1 -05:51:18,527 DEBUG kernel: alloc kstat_irqs on node -1 -05:51:18,527 DEBUG kernel:pcieport 0000:00:16.1: irq 33 for MSI/MSI-X -05:51:18,527 DEBUG kernel:pcieport 0000:00:16.2: setting latency timer to 64 -05:51:18,527 DEBUG kernel: alloc irq_desc for 34 on node -1 -05:51:18,527 DEBUG kernel: alloc kstat_irqs on node -1 -05:51:18,527 DEBUG kernel:pcieport 0000:00:16.2: irq 34 for MSI/MSI-X -05:51:18,527 DEBUG kernel:pcieport 0000:00:16.3: setting latency timer to 64 -05:51:18,527 DEBUG kernel: alloc irq_desc for 35 on node -1 -05:51:18,527 DEBUG kernel: alloc kstat_irqs on node -1 -05:51:18,527 DEBUG kernel:pcieport 0000:00:16.3: irq 35 for MSI/MSI-X -05:51:18,527 DEBUG kernel:pcieport 0000:00:16.4: setting latency timer to 64 -05:51:18,527 DEBUG kernel: alloc irq_desc for 36 on node -1 -05:51:18,527 DEBUG kernel: alloc kstat_irqs on node -1 -05:51:18,527 DEBUG kernel:pcieport 0000:00:16.4: irq 36 for MSI/MSI-X -05:51:18,527 DEBUG kernel:pcieport 0000:00:16.5: setting latency timer to 64 -05:51:18,527 DEBUG kernel: alloc irq_desc for 37 on node -1 -05:51:18,527 DEBUG kernel: alloc kstat_irqs on node -1 -05:51:18,527 DEBUG kernel:pcieport 0000:00:16.5: irq 37 for MSI/MSI-X -05:51:18,527 DEBUG kernel:pcieport 0000:00:16.6: setting latency timer to 64 -05:51:18,527 DEBUG kernel: alloc irq_desc for 38 on node -1 -05:51:18,527 DEBUG kernel: alloc kstat_irqs on node -1 -05:51:18,527 DEBUG kernel:pcieport 0000:00:16.6: irq 38 for MSI/MSI-X -05:51:18,527 DEBUG kernel:pcieport 0000:00:16.7: setting latency timer to 64 -05:51:18,527 DEBUG kernel: alloc irq_desc for 39 on node -1 -05:51:18,527 DEBUG kernel: alloc kstat_irqs on node -1 -05:51:18,527 DEBUG kernel:pcieport 0000:00:16.7: irq 39 for MSI/MSI-X -05:51:18,527 DEBUG kernel:pcieport 0000:00:17.0: setting latency timer to 64 -05:51:18,527 DEBUG kernel: alloc irq_desc for 40 on node -1 -05:51:18,527 DEBUG kernel: alloc kstat_irqs on node -1 -05:51:18,527 DEBUG kernel:pcieport 0000:00:17.0: irq 40 for MSI/MSI-X -05:51:18,527 DEBUG kernel:pcieport 0000:00:17.1: setting latency timer to 64 -05:51:18,527 DEBUG kernel: alloc irq_desc for 41 on node -1 -05:51:18,527 DEBUG kernel: alloc kstat_irqs on node -1 -05:51:18,527 DEBUG kernel:pcieport 0000:00:17.1: irq 41 for MSI/MSI-X -05:51:18,527 DEBUG kernel:pcieport 0000:00:17.2: setting latency timer to 64 -05:51:18,527 DEBUG kernel: alloc irq_desc for 42 on node -1 -05:51:18,527 DEBUG kernel: alloc kstat_irqs on node -1 -05:51:18,527 DEBUG kernel:pcieport 0000:00:17.2: irq 42 for MSI/MSI-X -05:51:18,527 DEBUG kernel:pcieport 0000:00:17.3: setting latency timer to 64 -05:51:18,527 DEBUG kernel: alloc irq_desc for 43 on node -1 -05:51:18,527 DEBUG kernel: alloc kstat_irqs on node -1 -05:51:18,527 DEBUG kernel:pcieport 0000:00:17.3: irq 43 for MSI/MSI-X -05:51:18,527 DEBUG kernel:pcieport 0000:00:17.4: setting latency timer to 64 -05:51:18,527 DEBUG kernel: alloc irq_desc for 44 on node -1 -05:51:18,527 DEBUG kernel: alloc kstat_irqs on node -1 -05:51:18,527 DEBUG kernel:pcieport 0000:00:17.4: irq 44 for MSI/MSI-X -05:51:18,527 DEBUG kernel:pcieport 0000:00:17.5: setting latency timer to 64 -05:51:18,527 DEBUG kernel: alloc irq_desc for 45 on node -1 -05:51:18,527 DEBUG kernel: alloc kstat_irqs on node -1 -05:51:18,527 DEBUG kernel:pcieport 0000:00:17.5: irq 45 for MSI/MSI-X -05:51:18,527 DEBUG kernel:pcieport 0000:00:17.6: setting latency timer to 64 -05:51:18,527 DEBUG kernel: alloc irq_desc for 46 on node -1 -05:51:18,527 DEBUG kernel: alloc kstat_irqs on node -1 -05:51:18,527 DEBUG kernel:pcieport 0000:00:17.6: irq 46 for MSI/MSI-X -05:51:18,527 DEBUG kernel:pcieport 0000:00:17.7: setting latency timer to 64 -05:51:18,527 DEBUG kernel: alloc irq_desc for 47 on node -1 -05:51:18,527 DEBUG kernel: alloc kstat_irqs on node -1 -05:51:18,527 DEBUG kernel:pcieport 0000:00:17.7: irq 47 for MSI/MSI-X -05:51:18,527 DEBUG kernel:pcieport 0000:00:18.0: setting latency timer to 64 -05:51:18,527 DEBUG kernel: alloc irq_desc for 48 on node -1 -05:51:18,527 DEBUG kernel: alloc kstat_irqs on node -1 -05:51:18,527 DEBUG kernel:pcieport 0000:00:18.0: irq 48 for MSI/MSI-X -05:51:18,527 DEBUG kernel:pcieport 0000:00:18.1: setting latency timer to 64 -05:51:18,527 DEBUG kernel: alloc irq_desc for 49 on node -1 -05:51:18,527 DEBUG kernel: alloc kstat_irqs on node -1 -05:51:18,527 DEBUG kernel:pcieport 0000:00:18.1: irq 49 for MSI/MSI-X -05:51:18,527 DEBUG kernel:pcieport 0000:00:18.2: setting latency timer to 64 -05:51:18,527 DEBUG kernel: alloc irq_desc for 50 on node -1 -05:51:18,527 DEBUG kernel: alloc kstat_irqs on node -1 -05:51:18,527 DEBUG kernel:pcieport 0000:00:18.2: irq 50 for MSI/MSI-X -05:51:18,527 DEBUG kernel:pcieport 0000:00:18.3: setting latency timer to 64 -05:51:18,527 DEBUG kernel: alloc irq_desc for 51 on node -1 -05:51:18,527 DEBUG kernel: alloc kstat_irqs on node -1 -05:51:18,527 DEBUG kernel:pcieport 0000:00:18.3: irq 51 for MSI/MSI-X -05:51:18,527 DEBUG kernel:pcieport 0000:00:18.4: setting latency timer to 64 -05:51:18,527 DEBUG kernel: alloc irq_desc for 52 on node -1 -05:51:18,527 DEBUG kernel: alloc kstat_irqs on node -1 -05:51:18,527 DEBUG kernel:pcieport 0000:00:18.4: irq 52 for MSI/MSI-X -05:51:18,527 DEBUG kernel:pcieport 0000:00:18.5: setting latency timer to 64 -05:51:18,527 DEBUG kernel: alloc irq_desc for 53 on node -1 -05:51:18,527 DEBUG kernel: alloc kstat_irqs on node -1 -05:51:18,527 DEBUG kernel:pcieport 0000:00:18.5: irq 53 for MSI/MSI-X -05:51:18,527 DEBUG kernel:pcieport 0000:00:18.6: setting latency timer to 64 -05:51:18,527 DEBUG kernel: alloc irq_desc for 54 on node -1 -05:51:18,527 DEBUG kernel: alloc kstat_irqs on node -1 -05:51:18,527 DEBUG kernel:pcieport 0000:00:18.6: irq 54 for MSI/MSI-X -05:51:18,527 DEBUG kernel:pcieport 0000:00:18.7: setting latency timer to 64 -05:51:18,527 DEBUG kernel: alloc irq_desc for 55 on node -1 -05:51:18,527 DEBUG kernel: alloc kstat_irqs on node -1 -05:51:18,527 DEBUG kernel:pcieport 0000:00:18.7: irq 55 for MSI/MSI-X -05:51:18,527 INFO kernel:pci_hotplug: PCI Hot Plug PCI Core version: 0.5 -05:51:18,527 INFO kernel:pciehp 0000:00:15.0:pcie04: HPC vendor_id 15ad device_id 7a0 ss_vid 0 ss_did 0 -05:51:18,527 DEBUG kernel:pciehp 0000:00:15.0:pcie04: service driver pciehp loaded -05:51:18,527 INFO kernel:pciehp 0000:00:15.1:pcie04: HPC vendor_id 15ad device_id 7a0 ss_vid 0 ss_did 0 -05:51:18,527 DEBUG kernel:pciehp 0000:00:15.1:pcie04: service driver pciehp loaded -05:51:18,527 INFO kernel:pciehp 0000:00:15.2:pcie04: HPC vendor_id 15ad device_id 7a0 ss_vid 0 ss_did 0 -05:51:18,527 DEBUG kernel:pciehp 0000:00:15.2:pcie04: service driver pciehp loaded -05:51:18,527 INFO kernel:pciehp 0000:00:15.3:pcie04: HPC vendor_id 15ad device_id 7a0 ss_vid 0 ss_did 0 -05:51:18,527 DEBUG kernel:pciehp 0000:00:15.3:pcie04: service driver pciehp loaded -05:51:18,527 INFO kernel:pciehp 0000:00:15.4:pcie04: HPC vendor_id 15ad device_id 7a0 ss_vid 0 ss_did 0 -05:51:18,527 DEBUG kernel:pciehp 0000:00:15.4:pcie04: service driver pciehp loaded -05:51:18,527 INFO kernel:pciehp 0000:00:15.5:pcie04: HPC vendor_id 15ad device_id 7a0 ss_vid 0 ss_did 0 -05:51:18,527 DEBUG kernel:pciehp 0000:00:15.5:pcie04: service driver pciehp loaded -05:51:18,527 INFO kernel:pciehp 0000:00:15.6:pcie04: HPC vendor_id 15ad device_id 7a0 ss_vid 0 ss_did 0 -05:51:18,527 DEBUG kernel:pciehp 0000:00:15.6:pcie04: service driver pciehp loaded -05:51:18,527 INFO kernel:pciehp 0000:00:15.7:pcie04: HPC vendor_id 15ad device_id 7a0 ss_vid 0 ss_did 0 -05:51:18,527 DEBUG kernel:pciehp 0000:00:15.7:pcie04: service driver pciehp loaded -05:51:18,527 INFO kernel:pciehp 0000:00:16.0:pcie04: HPC vendor_id 15ad device_id 7a0 ss_vid 0 ss_did 0 -05:51:18,527 DEBUG kernel:pciehp 0000:00:16.0:pcie04: service driver pciehp loaded -05:51:18,527 INFO kernel:pciehp 0000:00:16.1:pcie04: HPC vendor_id 15ad device_id 7a0 ss_vid 0 ss_did 0 -05:51:18,527 DEBUG kernel:pciehp 0000:00:16.1:pcie04: service driver pciehp loaded -05:51:18,527 INFO kernel:pciehp 0000:00:16.2:pcie04: HPC vendor_id 15ad device_id 7a0 ss_vid 0 ss_did 0 -05:51:18,527 DEBUG kernel:pciehp 0000:00:16.2:pcie04: service driver pciehp loaded -05:51:18,527 INFO kernel:pciehp 0000:00:16.3:pcie04: HPC vendor_id 15ad device_id 7a0 ss_vid 0 ss_did 0 -05:51:18,527 DEBUG kernel:pciehp 0000:00:16.3:pcie04: service driver pciehp loaded -05:51:18,527 INFO kernel:pciehp 0000:00:16.4:pcie04: HPC vendor_id 15ad device_id 7a0 ss_vid 0 ss_did 0 -05:51:18,527 DEBUG kernel:pciehp 0000:00:16.4:pcie04: service driver pciehp loaded -05:51:18,527 INFO kernel:pciehp 0000:00:16.5:pcie04: HPC vendor_id 15ad device_id 7a0 ss_vid 0 ss_did 0 -05:51:18,527 DEBUG kernel:pciehp 0000:00:16.5:pcie04: service driver pciehp loaded -05:51:18,527 INFO kernel:pciehp 0000:00:16.6:pcie04: HPC vendor_id 15ad device_id 7a0 ss_vid 0 ss_did 0 -05:51:18,527 DEBUG kernel:pciehp 0000:00:16.6:pcie04: service driver pciehp loaded -05:51:18,527 INFO kernel:pciehp 0000:00:16.7:pcie04: HPC vendor_id 15ad device_id 7a0 ss_vid 0 ss_did 0 -05:51:18,527 DEBUG kernel:pciehp 0000:00:16.7:pcie04: service driver pciehp loaded -05:51:18,527 INFO kernel:pciehp 0000:00:17.0:pcie04: HPC vendor_id 15ad device_id 7a0 ss_vid 0 ss_did 0 -05:51:18,527 DEBUG kernel:pciehp 0000:00:17.0:pcie04: service driver pciehp loaded -05:51:18,527 INFO kernel:pciehp 0000:00:17.1:pcie04: HPC vendor_id 15ad device_id 7a0 ss_vid 0 ss_did 0 -05:51:18,527 DEBUG kernel:pciehp 0000:00:17.1:pcie04: service driver pciehp loaded -05:51:18,527 INFO kernel:pciehp 0000:00:17.2:pcie04: HPC vendor_id 15ad device_id 7a0 ss_vid 0 ss_did 0 -05:51:18,527 DEBUG kernel:pciehp 0000:00:17.2:pcie04: service driver pciehp loaded -05:51:18,527 INFO kernel:pciehp 0000:00:17.3:pcie04: HPC vendor_id 15ad device_id 7a0 ss_vid 0 ss_did 0 -05:51:18,527 DEBUG kernel:pciehp 0000:00:17.3:pcie04: service driver pciehp loaded -05:51:18,527 INFO kernel:pciehp 0000:00:17.4:pcie04: HPC vendor_id 15ad device_id 7a0 ss_vid 0 ss_did 0 -05:51:18,527 DEBUG kernel:pciehp 0000:00:17.4:pcie04: service driver pciehp loaded -05:51:18,527 INFO kernel:pciehp 0000:00:17.5:pcie04: HPC vendor_id 15ad device_id 7a0 ss_vid 0 ss_did 0 -05:51:18,527 DEBUG kernel:pciehp 0000:00:17.5:pcie04: service driver pciehp loaded -05:51:18,527 INFO kernel:pciehp 0000:00:17.6:pcie04: HPC vendor_id 15ad device_id 7a0 ss_vid 0 ss_did 0 -05:51:18,527 DEBUG kernel:pciehp 0000:00:17.6:pcie04: service driver pciehp loaded -05:51:18,527 INFO kernel:pciehp 0000:00:17.7:pcie04: HPC vendor_id 15ad device_id 7a0 ss_vid 0 ss_did 0 -05:51:18,527 DEBUG kernel:pciehp 0000:00:17.7:pcie04: service driver pciehp loaded -05:51:18,527 INFO kernel:pciehp 0000:00:18.0:pcie04: HPC vendor_id 15ad device_id 7a0 ss_vid 0 ss_did 0 -05:51:18,527 DEBUG kernel:pciehp 0000:00:18.0:pcie04: service driver pciehp loaded -05:51:18,527 INFO kernel:pciehp 0000:00:18.1:pcie04: HPC vendor_id 15ad device_id 7a0 ss_vid 0 ss_did 0 -05:51:18,527 DEBUG kernel:pciehp 0000:00:18.1:pcie04: service driver pciehp loaded -05:51:18,527 INFO kernel:pciehp 0000:00:18.2:pcie04: HPC vendor_id 15ad device_id 7a0 ss_vid 0 ss_did 0 -05:51:18,527 DEBUG kernel:pciehp 0000:00:18.2:pcie04: service driver pciehp loaded -05:51:18,527 INFO kernel:pciehp 0000:00:18.3:pcie04: HPC vendor_id 15ad device_id 7a0 ss_vid 0 ss_did 0 -05:51:18,527 DEBUG kernel:pciehp 0000:00:18.3:pcie04: service driver pciehp loaded -05:51:18,527 INFO kernel:pciehp 0000:00:18.4:pcie04: HPC vendor_id 15ad device_id 7a0 ss_vid 0 ss_did 0 -05:51:18,527 DEBUG kernel:pciehp 0000:00:18.4:pcie04: service driver pciehp loaded -05:51:18,527 INFO kernel:pciehp 0000:00:18.5:pcie04: HPC vendor_id 15ad device_id 7a0 ss_vid 0 ss_did 0 -05:51:18,527 DEBUG kernel:pciehp 0000:00:18.5:pcie04: service driver pciehp loaded -05:51:18,527 INFO kernel:pciehp 0000:00:18.6:pcie04: HPC vendor_id 15ad device_id 7a0 ss_vid 0 ss_did 0 -05:51:18,527 DEBUG kernel:pciehp 0000:00:18.6:pcie04: service driver pciehp loaded -05:51:18,527 INFO kernel:pciehp 0000:00:18.7:pcie04: HPC vendor_id 15ad device_id 7a0 ss_vid 0 ss_did 0 -05:51:18,527 DEBUG kernel:pciehp 0000:00:18.7:pcie04: service driver pciehp loaded -05:51:18,527 INFO kernel:pciehp: PCI Express Hot Plug Controller Driver version: 0.4 -05:51:18,527 INFO kernel:acpiphp: ACPI Hot Plug PCI Controller Driver version: 0.5 -05:51:18,527 INFO kernel:acpiphp: Slot [32] registered -05:51:18,527 INFO kernel:acpiphp: Slot [33] registered -05:51:18,527 INFO kernel:acpiphp: Slot [34] registered -05:51:18,527 INFO kernel:acpiphp: Slot [35] registered -05:51:18,527 INFO kernel:acpiphp: Slot [36] registered -05:51:18,527 INFO kernel:acpiphp: Slot [37] registered -05:51:18,527 INFO kernel:acpiphp: Slot [38] registered -05:51:18,527 INFO kernel:acpiphp: Slot [39] registered -05:51:18,527 INFO kernel:acpiphp: Slot [40] registered -05:51:18,527 INFO kernel:acpiphp: Slot [41] registered -05:51:18,527 INFO kernel:acpiphp: Slot [42] registered -05:51:18,527 INFO kernel:acpiphp: Slot [43] registered -05:51:18,527 INFO kernel:acpiphp: Slot [44] registered -05:51:18,527 INFO kernel:acpiphp: Slot [45] registered -05:51:18,527 INFO kernel:acpiphp: Slot [46] registered -05:51:18,527 INFO kernel:acpiphp: Slot [47] registered -05:51:18,527 INFO kernel:acpiphp: Slot [48] registered -05:51:18,527 INFO kernel:acpiphp: Slot [49] registered -05:51:18,527 INFO kernel:acpiphp: Slot [50] registered -05:51:18,527 INFO kernel:acpiphp: Slot [51] registered -05:51:18,527 INFO kernel:acpiphp: Slot [52] registered -05:51:18,527 INFO kernel:acpiphp: Slot [53] registered -05:51:18,527 INFO kernel:acpiphp: Slot [54] registered -05:51:18,527 INFO kernel:acpiphp: Slot [55] registered -05:51:18,527 INFO kernel:acpiphp: Slot [56] registered -05:51:18,527 INFO kernel:acpiphp: Slot [57] registered -05:51:18,527 INFO kernel:acpiphp: Slot [58] registered -05:51:18,527 INFO kernel:acpiphp: Slot [59] registered -05:51:18,527 INFO kernel:acpiphp: Slot [60] registered -05:51:18,527 INFO kernel:acpiphp: Slot [61] registered -05:51:18,527 INFO kernel:acpiphp: Slot [62] registered -05:51:18,527 INFO kernel:acpiphp: Slot [63] registered -05:51:18,527 WARNING kernel:acpiphp_glue: Slot 160 already registered by another hotplug driver -05:51:18,527 WARNING kernel:acpiphp_glue: Slot 192 already registered by another hotplug driver -05:51:18,527 WARNING kernel:acpiphp_glue: Slot 224 already registered by another hotplug driver -05:51:18,527 WARNING kernel:acpiphp_glue: Slot 256 already registered by another hotplug driver -05:51:18,527 WARNING kernel:acpiphp_glue: Slot 161 already registered by another hotplug driver -05:51:18,527 WARNING kernel:acpiphp_glue: Slot 162 already registered by another hotplug driver -05:51:18,527 WARNING kernel:acpiphp_glue: Slot 163 already registered by another hotplug driver -05:51:18,527 WARNING kernel:acpiphp_glue: Slot 164 already registered by another hotplug driver -05:51:18,527 WARNING kernel:acpiphp_glue: Slot 165 already registered by another hotplug driver -05:51:18,527 WARNING kernel:acpiphp_glue: Slot 166 already registered by another hotplug driver -05:51:18,527 WARNING kernel:acpiphp_glue: Slot 167 already registered by another hotplug driver -05:51:18,527 WARNING kernel:acpiphp_glue: Slot 193 already registered by another hotplug driver -05:51:18,527 WARNING kernel:acpiphp_glue: Slot 194 already registered by another hotplug driver -05:51:18,527 WARNING kernel:acpiphp_glue: Slot 195 already registered by another hotplug driver -05:51:18,527 WARNING kernel:acpiphp_glue: Slot 196 already registered by another hotplug driver -05:51:18,527 WARNING kernel:acpiphp_glue: Slot 197 already registered by another hotplug driver -05:51:18,527 WARNING kernel:acpiphp_glue: Slot 198 already registered by another hotplug driver -05:51:18,527 WARNING kernel:acpiphp_glue: Slot 199 already registered by another hotplug driver -05:51:18,527 WARNING kernel:acpiphp_glue: Slot 225 already registered by another hotplug driver -05:51:18,527 WARNING kernel:acpiphp_glue: Slot 226 already registered by another hotplug driver -05:51:18,527 WARNING kernel:acpiphp_glue: Slot 227 already registered by another hotplug driver -05:51:18,527 WARNING kernel:acpiphp_glue: Slot 228 already registered by another hotplug driver -05:51:18,527 WARNING kernel:acpiphp_glue: Slot 229 already registered by another hotplug driver -05:51:18,527 WARNING kernel:acpiphp_glue: Slot 230 already registered by another hotplug driver -05:51:18,527 WARNING kernel:acpiphp_glue: Slot 231 already registered by another hotplug driver -05:51:18,527 WARNING kernel:acpiphp_glue: Slot 257 already registered by another hotplug driver -05:51:18,527 WARNING kernel:acpiphp_glue: Slot 258 already registered by another hotplug driver -05:51:18,527 WARNING kernel:acpiphp_glue: Slot 259 already registered by another hotplug driver -05:51:18,527 WARNING kernel:acpiphp_glue: Slot 260 already registered by another hotplug driver -05:51:18,527 WARNING kernel:acpiphp_glue: Slot 261 already registered by another hotplug driver -05:51:18,527 WARNING kernel:acpiphp_glue: Slot 262 already registered by another hotplug driver -05:51:18,527 WARNING kernel:acpiphp_glue: Slot 263 already registered by another hotplug driver -05:51:18,527 INFO kernel:ipmi message handler version 39.2 -05:51:18,527 INFO kernel:IPMI System Interface driver. -05:51:18,527 INFO kernel:ipmi_si: Adding default-specified kcs state machine -05:51:18,527 INFO kernel:ipmi_si: Trying default-specified kcs state machine at i/o address 0xca2, slave address 0x0, irq 0 -05:51:18,527 INFO kernel:ipmi_si: Interface detection failed -05:51:18,527 INFO kernel:ipmi_si: Adding default-specified smic state machine -05:51:18,527 INFO kernel:ipmi_si: Trying default-specified smic state machine at i/o address 0xca9, slave address 0x0, irq 0 -05:51:18,527 INFO kernel:ipmi_si: Interface detection failed -05:51:18,527 INFO kernel:ipmi_si: Adding default-specified bt state machine -05:51:18,527 INFO kernel:ipmi_si: Trying default-specified bt state machine at i/o address 0xe4, slave address 0x0, irq 0 -05:51:18,527 INFO kernel:ipmi_si: Interface detection failed -05:51:18,527 WARNING kernel:ipmi_si: Unable to find any System Interface(s) -05:51:18,527 INFO kernel:ACPI: AC Adapter [ACAD] (on-line) -05:51:18,527 INFO kernel:input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input0 -05:51:18,527 INFO kernel:ACPI: Power Button [PWRF] -05:51:18,527 DEBUG kernel:ACPI: acpi_idle registered with cpuidle -05:51:18,527 WARNING kernel:ACPI Exception: AE_NOT_FOUND, No or invalid critical threshold (20090903/thermal-386) -05:51:18,527 INFO kernel:GHES: HEST is not enabled! -05:51:18,527 INFO kernel:Non-volatile memory driver v1.3 -05:51:18,527 INFO kernel:Linux agpgart interface v0.103 -05:51:18,527 INFO kernel:agpgart-intel 0000:00:00.0: Intel 440BX Chipset -05:51:18,527 INFO kernel:agpgart-intel 0000:00:00.0: AGP aperture is 256M @ 0x0 -05:51:18,527 INFO kernel:crash memory driver: version 1.1 -05:51:18,527 INFO kernel:Serial: 8250/16550 driver, 4 ports, IRQ sharing enabled -05:51:18,527 INFO kernel:serial8250: ttyS0 at I/O 0x3f8 (irq = 4) is a 16550A -05:51:18,527 INFO kernel:serial8250: ttyS1 at I/O 0x2f8 (irq = 3) is a 16550A -05:51:18,527 INFO kernel:00:0a: ttyS0 at I/O 0x3f8 (irq = 4) is a 16550A -05:51:18,527 INFO kernel:00:0b: ttyS1 at I/O 0x2f8 (irq = 3) is a 16550A -05:51:18,527 INFO kernel:brd: module loaded -05:51:18,527 INFO kernel:loop: module loaded -05:51:18,527 INFO kernel:input: Macintosh mouse button emulation as /devices/virtual/input/input1 -05:51:18,527 INFO kernel:Fixed MDIO Bus: probed -05:51:18,527 INFO kernel:ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver -05:51:18,527 INFO kernel:ohci_hcd: USB 1.1 'Open' Host Controller (OHCI) Driver -05:51:18,527 INFO kernel:uhci_hcd: USB Universal Host Controller Interface driver -05:51:18,527 INFO kernel:PNP: PS/2 Controller [PNP0303:KBC,PNP0f13:MOUS] at 0x60,0x64 irq 1,12 -05:51:18,527 INFO kernel:Refined TSC clocksource calibration: 2400.080 MHz. -05:51:18,527 INFO kernel:Switching to clocksource tsc -05:51:18,527 INFO kernel:serio: i8042 KBD port at 0x60,0x64 irq 1 -05:51:18,527 INFO kernel:serio: i8042 AUX port at 0x60,0x64 irq 12 -05:51:18,527 INFO kernel:mice: PS/2 mouse device common for all mice -05:51:18,527 INFO kernel:rtc_cmos 00:04: rtc core: registered rtc_cmos as rtc0 -05:51:18,527 INFO kernel:rtc0: alarms up to one month, y3k, 114 bytes nvram, hpet irqs -05:51:18,527 INFO kernel:cpuidle: using governor ladder -05:51:18,527 INFO kernel:cpuidle: using governor menu -05:51:18,527 INFO kernel:EFI Variables Facility v0.08 2004-May-17 -05:51:18,527 INFO kernel:usbcore: registered new interface driver hiddev -05:51:18,527 INFO kernel:usbcore: registered new interface driver usbhid -05:51:18,527 INFO kernel:usbhid: v2.6:USB HID core driver -05:51:18,527 INFO kernel:GRE over IPv4 demultiplexor driver -05:51:18,527 INFO kernel:TCP cubic registered -05:51:18,527 INFO kernel:input: AT Translated Set 2 keyboard as /devices/platform/i8042/serio0/input/input2 -05:51:18,527 INFO kernel:Initializing XFRM netlink socket -05:51:18,527 INFO kernel:NET: Registered protocol family 17 -05:51:18,527 WARNING kernel:registered taskstats version 1 -05:51:18,527 INFO kernel:input: ImPS/2 Generic Wheel Mouse as /devices/platform/i8042/serio1/input/input3 -05:51:18,527 INFO kernel:rtc_cmos 00:04: setting system clock to 2002-05-11 05:51:18 UTC (1021096278) -05:51:18,527 INFO kernel:Initalizing network drop monitor service -05:51:18,527 INFO kernel:Freeing unused kernel memory: 1276k freed -05:51:18,527 INFO kernel:Write protecting the kernel read-only data: 10240k -05:51:18,527 INFO kernel:Freeing unused kernel memory: 800k freed -05:51:18,527 INFO kernel:Freeing unused kernel memory: 1588k freed -05:51:20,557 INFO kernel:squashfs: version 4.0 (2009/01/31) Phillip Lougher -05:51:20,568 INFO kernel:Loading iSCSI transport class v2.0-870. -05:51:20,587 NOTICE kernel:iscsi: registered transport (tcp) -05:51:20,594 INFO kernel:Floppy drive(s): fd0 is 1.44M -05:51:20,605 INFO kernel:FDC 0 is a post-1991 82077 -05:51:20,610 INFO kernel:BIOS EDD facility v0.16 2004-Jun-25, 2 devices found -05:51:20,614 INFO kernel:input: PC Speaker as /devices/platform/pcspkr/input/input4 -05:51:20,620 INFO kernel:No iBFT detected. -05:51:20,655 INFO kernel:NET: Registered protocol family 10 -05:51:20,657 INFO kernel:lo: Disabled Privacy Extensions -05:51:20,739 DEBUG kernel:ata_piix 0000:00:07.1: version 2.13 -05:51:20,740 INFO kernel:scsi0 : ata_piix -05:51:20,740 INFO kernel:scsi1 : ata_piix -05:51:20,740 INFO kernel:ata1: PATA max UDMA/33 cmd 0x1f0 ctl 0x3f6 bmdma 0x10c0 irq 14 -05:51:20,740 INFO kernel:ata2: PATA max UDMA/33 cmd 0x170 ctl 0x376 bmdma 0x10c8 irq 15 -05:51:20,750 ERR udevd-work: device node '/dev/rtc' already exists, link to '/dev/rtc0' will not overwrite it -05:51:20,926 INFO kernel:ata2.00: ATAPI: VMware Virtual IDE CDROM Drive, 00000001, max UDMA/33 -05:51:20,934 INFO kernel:ata2.00: configured for UDMA/33 -05:51:20,934 NOTICE kernel:scsi 1:0:0:0: CD-ROM NECVMWar VMware IDE CDR10 1.00 PQ: 0 ANSI: 5 -05:51:20,959 INFO kernel:Fusion MPT base driver 3.04.20 -05:51:20,959 INFO kernel:Copyright (c) 1999-2008 LSI Corporation -05:51:20,971 INFO kernel:Fusion MPT SPI Host driver 3.04.20 -05:51:20,971 DEBUG kernel: alloc irq_desc for 17 on node -1 -05:51:20,971 DEBUG kernel: alloc kstat_irqs on node -1 -05:51:20,971 INFO kernel:mptspi 0000:00:10.0: PCI INT A -> GSI 17 (level, low) -> IRQ 17 -05:51:20,972 INFO kernel:mptbase: ioc0: Initiating bringup -05:51:20,990 INFO kernel:ioc0: LSI53C1030 B0: Capabilities={Initiator} -05:51:21,031 INFO kernel:scsi2 : ioc0: LSI53C1030 B0, FwRev=01032920h, Ports=1, MaxQ=128, IRQ=17 -05:51:21,061 NOTICE kernel:scsi 2:0:0:0: Direct-Access VMware Virtual disk 1.0 PQ: 0 ANSI: 2 -05:51:21,061 INFO kernel:scsi target2:0:0: Beginning Domain Validation -05:51:21,061 INFO kernel:scsi target2:0:0: Domain Validation skipping write tests -05:51:21,061 INFO kernel:scsi target2:0:0: Ending Domain Validation -05:51:21,061 INFO kernel:scsi target2:0:0: FAST-40 WIDE SCSI 80.0 MB/s ST (25 ns, offset 127) -05:51:21,061 NOTICE kernel:scsi 2:0:1:0: Direct-Access VMware Virtual disk 1.0 PQ: 0 ANSI: 2 -05:51:21,061 INFO kernel:scsi target2:0:1: Beginning Domain Validation -05:51:21,061 INFO kernel:scsi target2:0:1: Domain Validation skipping write tests -05:51:21,061 INFO kernel:scsi target2:0:1: Ending Domain Validation -05:51:21,061 INFO kernel:scsi target2:0:1: FAST-40 WIDE SCSI 80.0 MB/s ST (25 ns, offset 127) -05:51:21,088 WARNING kernel:sr0: scsi3-mmc drive: 1x/1x writer dvd-ram cd/rw xa/form2 cdda tray -05:51:21,088 INFO kernel:Uniform CD-ROM driver Revision: 3.20 -05:51:21,088 DEBUG kernel:sr 1:0:0:0: Attached scsi CD-ROM sr0 -05:51:21,098 INFO kernel:e1000: Intel(R) PRO/1000 Network Driver - version 7.3.21-k8-NAPI -05:51:21,098 INFO kernel:e1000: Copyright (c) 1999-2006 Intel Corporation. -05:51:21,098 DEBUG kernel: alloc irq_desc for 18 on node -1 -05:51:21,098 DEBUG kernel: alloc kstat_irqs on node -1 -05:51:21,098 INFO kernel:e1000 0000:02:00.0: PCI INT A -> GSI 18 (level, low) -> IRQ 18 -05:51:21,098 DEBUG kernel:e1000 0000:02:00.0: setting latency timer to 64 -05:51:21,447 INFO kernel:e1000 0000:02:00.0: eth0: (PCI:66MHz:32-bit) 00:0c:29:21:89:af -05:51:21,447 INFO kernel:e1000 0000:02:00.0: eth0: Intel(R) PRO/1000 Network Connection -05:51:21,447 DEBUG kernel: alloc irq_desc for 19 on node -1 -05:51:21,447 DEBUG kernel: alloc kstat_irqs on node -1 -05:51:21,447 INFO kernel:e1000 0000:02:01.0: PCI INT A -> GSI 19 (level, low) -> IRQ 19 -05:51:21,447 DEBUG kernel:e1000 0000:02:01.0: setting latency timer to 64 -05:51:21,793 INFO kernel:e1000 0000:02:01.0: eth1: (PCI:66MHz:32-bit) 00:0c:29:21:89:b9 -05:51:21,793 INFO kernel:e1000 0000:02:01.0: eth1: Intel(R) PRO/1000 Network Connection -05:51:21,793 DEBUG kernel: alloc irq_desc for 16 on node -1 -05:51:21,793 DEBUG kernel: alloc kstat_irqs on node -1 -05:51:21,793 INFO kernel:e1000 0000:02:02.0: PCI INT A -> GSI 16 (level, low) -> IRQ 16 -05:51:21,793 DEBUG kernel:e1000 0000:02:02.0: setting latency timer to 64 -05:51:22,142 INFO kernel:e1000 0000:02:02.0: eth2: (PCI:66MHz:32-bit) 00:0c:29:21:89:c3 -05:51:22,142 INFO kernel:e1000 0000:02:02.0: eth2: Intel(R) PRO/1000 Network Connection -05:51:22,142 INFO kernel:e1000 0000:02:03.0: PCI INT A -> GSI 17 (level, low) -> IRQ 17 -05:51:22,142 DEBUG kernel:e1000 0000:02:03.0: setting latency timer to 64 -05:51:22,485 INFO kernel:e1000 0000:02:03.0: eth3: (PCI:66MHz:32-bit) 00:0c:29:21:89:cd -05:51:22,485 INFO kernel:e1000 0000:02:03.0: eth3: Intel(R) PRO/1000 Network Connection -05:51:22,515 NOTICE kernel:sd 2:0:0:0: [sda] 33554432 512-byte logical blocks: (17.1 GB/16.0 GiB) -05:51:22,515 NOTICE kernel:sd 2:0:0:0: [sda] Write Protect is off -05:51:22,515 DEBUG kernel:sd 2:0:0:0: [sda] Mode Sense: 61 00 00 00 -05:51:22,515 NOTICE kernel:sd 2:0:0:0: [sda] Cache data unavailable -05:51:22,515 ERR kernel:sd 2:0:0:0: [sda] Assuming drive cache: write through -05:51:22,515 NOTICE kernel:sd 2:0:0:0: [sda] Cache data unavailable -05:51:22,515 ERR kernel:sd 2:0:0:0: [sda] Assuming drive cache: write through -05:51:22,516 INFO kernel: sda: -05:51:22,516 NOTICE kernel:sd 2:0:1:0: [sdb] 33554432 512-byte logical blocks: (17.1 GB/16.0 GiB) -05:51:22,516 NOTICE kernel:sd 2:0:1:0: [sdb] Write Protect is off -05:51:22,516 DEBUG kernel:sd 2:0:1:0: [sdb] Mode Sense: 61 00 00 00 -05:51:22,516 NOTICE kernel:sd 2:0:1:0: [sdb] Cache data unavailable -05:51:22,516 ERR kernel:sd 2:0:1:0: [sdb] Assuming drive cache: write through -05:51:22,516 NOTICE kernel:sd 2:0:1:0: [sdb] Cache data unavailable -05:51:22,516 ERR kernel:sd 2:0:1:0: [sdb] Assuming drive cache: write through -05:51:22,522 INFO kernel: sdb: -05:51:22,522 NOTICE kernel:sd 2:0:1:0: [sdb] Cache data unavailable -05:51:22,522 ERR kernel:sd 2:0:1:0: [sdb] Assuming drive cache: write through -05:51:22,522 NOTICE kernel:sd 2:0:1:0: [sdb] Attached SCSI disk -05:51:22,577 WARNING kernel: sda1 sda2 sda3 -05:51:22,598 NOTICE kernel:sd 2:0:0:0: [sda] Cache data unavailable -05:51:22,598 ERR kernel:sd 2:0:0:0: [sda] Assuming drive cache: write through -05:51:22,598 NOTICE kernel:sd 2:0:0:0: [sda] Attached SCSI disk -05:51:22,606 NOTICE kernel:sr 1:0:0:0: Attached scsi generic sg0 type 5 -05:51:22,606 NOTICE kernel:sd 2:0:0:0: Attached scsi generic sg1 type 0 -05:51:22,606 NOTICE kernel:sd 2:0:1:0: Attached scsi generic sg2 type 0 -05:51:28,012 ERR udevd-work: device node '/dev/rtc' already exists, link to '/dev/rtc0' will not overwrite it -05:51:46,181 INFO NetworkManager: NetworkManager (version 0.8.1-66.el6) is starting... -05:51:46,181 INFO NetworkManager: Read config file /etc/NetworkManager/NetworkManager.conf -05:51:46,183 INFO NetworkManager: trying to start the modem manager... -05:51:46,186 INFO NetworkManager: monitoring kernel firmware directory '/lib/firmware'. -05:51:46,186 INFO NetworkManager: Bonding/Bridging/VLAN support enabled -05:51:46,188 NOTICE NetworkManager: ifcfg-rh: Acquired D-Bus service com.redhat.ifcfgrh1 -05:51:46,188 INFO NetworkManager: Loaded plugin ifcfg-rh: (c) 2007 - 2008 Red Hat, Inc. To report bugs please use the NetworkManager mailing list. -05:51:46,188 INFO NetworkManager: Loaded plugin keyfile: (c) 2007 - 2008 Red Hat, Inc. To report bugs please use the NetworkManager mailing list. -05:51:46,188 NOTICE NetworkManager: ifcfg-rh: parsing /etc/sysconfig/network-scripts/ifcfg-eth3 ... -05:51:46,190 NOTICE NetworkManager: ifcfg-rh: read connection 'System eth3' -05:51:46,190 NOTICE NetworkManager: ifcfg-rh: parsing /etc/sysconfig/network-scripts/ifcfg-eth2 ... -05:51:46,190 NOTICE NetworkManager: ifcfg-rh: read connection 'System eth2' -05:51:46,190 NOTICE NetworkManager: ifcfg-rh: parsing /etc/sysconfig/network-scripts/ifcfg-eth1 ... -05:51:46,191 NOTICE NetworkManager: ifcfg-rh: read connection 'System eth1' -05:51:46,191 NOTICE NetworkManager: ifcfg-rh: parsing /etc/sysconfig/network-scripts/ifcfg-eth0 ... -05:51:46,192 NOTICE NetworkManager: ifcfg-rh: read connection 'System eth0' -05:51:46,192 WARNING NetworkManager: Can not read directory '/etc/NetworkManager/system-connections': Error opening directory '/etc/NetworkManager/system-connections': No such file or directory -05:51:46,194 INFO NetworkManager: WiFi enabled by radio killswitch; enabled by state file -05:51:46,194 INFO NetworkManager: WWAN enabled by radio killswitch; enabled by state file -05:51:46,194 INFO NetworkManager: WiMAX enabled by radio killswitch; enabled by state file -05:51:46,194 INFO NetworkManager: Networking is enabled by state file -05:51:46,212 INFO kernel:802.1Q VLAN Support v1.8 Ben Greear -05:51:46,212 INFO kernel:All bugs added by David S. Miller -05:51:46,217 INFO kernel:e1000: eth0 NIC Link is Up 1000 Mbps Full Duplex, Flow Control: None -05:51:46,218 INFO NetworkManager: (eth0): carrier is OFF -05:51:46,218 INFO NetworkManager: (eth0): new Ethernet device (driver: 'e1000' ifindex: 2) -05:51:46,218 INFO NetworkManager: (eth0): exported as /org/freedesktop/NetworkManager/Devices/0 -05:51:46,218 INFO NetworkManager: (eth0): now managed -05:51:46,218 INFO NetworkManager: (eth0): device state change: 1 -> 2 (reason 2) -05:51:46,218 INFO NetworkManager: (eth0): bringing up device. -05:51:46,221 INFO kernel:8021q: adding VLAN 0 to HW filter on device eth0 -05:51:46,222 INFO NetworkManager: (eth0): carrier now ON (device state 2) -05:51:46,222 INFO NetworkManager: (eth0): preparing device. -05:51:46,222 INFO NetworkManager: (eth0): deactivating device (reason: 2). -05:51:46,223 INFO NetworkManager: (eth1): carrier is OFF -05:51:46,224 INFO NetworkManager: (eth1): new Ethernet device (driver: 'e1000' ifindex: 3) -05:51:46,224 INFO NetworkManager: (eth1): exported as /org/freedesktop/NetworkManager/Devices/1 -05:51:46,224 INFO NetworkManager: (eth1): now managed -05:51:46,224 INFO NetworkManager: (eth1): device state change: 1 -> 2 (reason 2) -05:51:46,224 INFO NetworkManager: (eth1): bringing up device. -05:51:46,229 INFO kernel:e1000: eth1 NIC Link is Up 1000 Mbps Full Duplex, Flow Control: None -05:51:46,233 INFO kernel:8021q: adding VLAN 0 to HW filter on device eth1 -05:51:46,233 INFO NetworkManager: (eth1): carrier now ON (device state 2) -05:51:46,234 INFO NetworkManager: (eth1): preparing device. -05:51:46,234 INFO NetworkManager: (eth1): deactivating device (reason: 2). -05:51:46,235 INFO NetworkManager: (eth2): carrier is OFF -05:51:46,235 INFO NetworkManager: (eth2): new Ethernet device (driver: 'e1000' ifindex: 4) -05:51:46,235 INFO NetworkManager: (eth2): exported as /org/freedesktop/NetworkManager/Devices/2 -05:51:46,235 INFO NetworkManager: (eth2): now managed -05:51:46,235 INFO NetworkManager: (eth2): device state change: 1 -> 2 (reason 2) -05:51:46,235 INFO NetworkManager: (eth2): bringing up device. -05:51:46,240 INFO kernel:e1000: eth2 NIC Link is Up 1000 Mbps Full Duplex, Flow Control: None -05:51:46,244 INFO kernel:8021q: adding VLAN 0 to HW filter on device eth2 -05:51:46,245 INFO NetworkManager: (eth2): carrier now ON (device state 2) -05:51:46,245 INFO NetworkManager: (eth2): preparing device. -05:51:46,245 INFO NetworkManager: (eth2): deactivating device (reason: 2). -05:51:46,246 INFO NetworkManager: (eth3): carrier is OFF -05:51:46,247 INFO NetworkManager: (eth3): new Ethernet device (driver: 'e1000' ifindex: 5) -05:51:46,247 INFO NetworkManager: (eth3): exported as /org/freedesktop/NetworkManager/Devices/3 -05:51:46,247 INFO NetworkManager: (eth3): now managed -05:51:46,247 INFO NetworkManager: (eth3): device state change: 1 -> 2 (reason 2) -05:51:46,247 INFO NetworkManager: (eth3): bringing up device. -05:51:46,251 INFO kernel:e1000: eth3 NIC Link is Up 1000 Mbps Full Duplex, Flow Control: None -05:51:46,255 INFO kernel:8021q: adding VLAN 0 to HW filter on device eth3 -05:51:46,256 INFO NetworkManager: (eth3): carrier now ON (device state 2) -05:51:46,256 INFO NetworkManager: (eth3): preparing device. -05:51:46,256 INFO NetworkManager: (eth3): deactivating device (reason: 2). -05:51:46,258 INFO NetworkManager: (eth0): carrier now OFF (device state 2) -05:51:46,258 INFO NetworkManager: (eth0): carrier now ON (device state 2) -05:51:46,258 WARNING NetworkManager: (nm-device.c:4447):nm_device_queue_state: runtime check failed: (priv->queued_state.id == 0) -05:51:46,258 INFO NetworkManager: (eth1): carrier now OFF (device state 2) -05:51:46,259 INFO NetworkManager: (eth1): carrier now ON (device state 2) -05:51:46,259 WARNING NetworkManager: (nm-device.c:4447):nm_device_queue_state: runtime check failed: (priv->queued_state.id == 0) -05:51:46,259 INFO NetworkManager: (eth2): carrier now OFF (device state 2) -05:51:46,259 INFO NetworkManager: (eth2): carrier now ON (device state 2) -05:51:46,259 WARNING NetworkManager: (nm-device.c:4447):nm_device_queue_state: runtime check failed: (priv->queued_state.id == 0) -05:51:46,259 INFO NetworkManager: (eth3): carrier now OFF (device state 2) -05:51:46,259 INFO NetworkManager: (eth3): carrier now ON (device state 2) -05:51:46,259 WARNING NetworkManager: (nm-device.c:4447):nm_device_queue_state: runtime check failed: (priv->queued_state.id == 0) -05:51:46,260 INFO NetworkManager: Trying to start the supplicant... -05:51:46,261 INFO NetworkManager: (eth0): device state change: 2 -> 3 (reason 40) -05:51:46,261 INFO NetworkManager: (eth1): device state change: 2 -> 3 (reason 40) -05:51:46,261 INFO NetworkManager: (eth2): device state change: 2 -> 3 (reason 40) -05:51:46,262 INFO NetworkManager: (eth3): device state change: 2 -> 3 (reason 40) -05:51:46,268 INFO NetworkManager: wpa_supplicant started -05:51:47,181 WARNING NetworkManager: error requesting auth for org.freedesktop.NetworkManager.enable-disable-network: (26) Remote Exception invoking org.freedesktop.PolicyKit1.Authority.CheckAuthorization() on /org/freedesktop/PolicyKit1/Authority at name org.freedesktop.PolicyKit1: org.freedesktop.DBus.Error.Spawn.ExecFailed: Cannot launch daemon, file not found or permissions invalid -05:51:47,182 WARNING NetworkManager: error requesting auth for org.freedesktop.NetworkManager.sleep-wake: (26) Remote Exception invoking org.freedesktop.PolicyKit1.Authority.CheckAuthorization() on /org/freedesktop/PolicyKit1/Authority at name org.freedesktop.PolicyKit1: org.freedesktop.DBus.Error.Spawn.ExecFailed: Cannot launch daemon, file not found or permissions invalid -05:51:47,182 WARNING NetworkManager: error requesting auth for org.freedesktop.NetworkManager.enable-disable-wifi: (26) Remote Exception invoking org.freedesktop.PolicyKit1.Authority.CheckAuthorization() on /org/freedesktop/PolicyKit1/Authority at name org.freedesktop.PolicyKit1: org.freedesktop.DBus.Error.Spawn.ExecFailed: Cannot launch daemon, file not found or permissions invalid -05:51:47,182 WARNING NetworkManager: error requesting auth for org.freedesktop.NetworkManager.enable-disable-wwan: (26) Remote Exception invoking org.freedesktop.PolicyKit1.Authority.CheckAuthorization() on /org/freedesktop/PolicyKit1/Authority at name org.freedesktop.PolicyKit1: org.freedesktop.DBus.Error.Spawn.ExecFailed: Cannot launch daemon, file not found or permissions invalid -05:51:47,182 WARNING NetworkManager: error requesting auth for org.freedesktop.NetworkManager.use-user-connections: (26) Remote Exception invoking org.freedesktop.PolicyKit1.Authority.CheckAuthorization() on /org/freedesktop/PolicyKit1/Authority at name org.freedesktop.PolicyKit1: org.freedesktop.DBus.Error.Spawn.ExecFailed: Cannot launch daemon, file not found or permissions invalid -05:51:47,182 WARNING NetworkManager: error requesting auth for org.freedesktop.NetworkManager.network-control: (26) Remote Exception invoking org.freedesktop.PolicyKit1.Authority.CheckAuthorization() on /org/freedesktop/PolicyKit1/Authority at name org.freedesktop.PolicyKit1: org.freedesktop.DBus.Error.Spawn.ExecFailed: Cannot launch daemon, file not found or permissions invalid -05:51:47,182 WARNING NetworkManager: error requesting auth for org.freedesktop.network-manager-settings.system.wifi.share.open: (26) Remote Exception invoking org.freedesktop.PolicyKit1.Authority.CheckAuthorization() on /org/freedesktop/PolicyKit1/Authority at name org.freedesktop.PolicyKit1: org.freedesktop.DBus.Error.Spawn.ExecFailed: Cannot launch daemon, file not found or permissions invalid -05:51:47,183 WARNING NetworkManager: error requesting auth for org.freedesktop.network-manager-settings.system.wifi.share.protected: (26) Remote Exception invoking org.freedesktop.PolicyKit1.Authority.CheckAuthorization() on /org/freedesktop/PolicyKit1/Authority at name org.freedesktop.PolicyKit1: org.freedesktop.DBus.Error.Spawn.ExecFailed: Cannot launch daemon, file not found or permissions invalid -05:51:47,191 WARNING NetworkManager: error requesting auth for org.freedesktop.NetworkManager.enable-disable-network: (26) Remote Exception invoking org.freedesktop.PolicyKit1.Authority.CheckAuthorization() on /org/freedesktop/PolicyKit1/Authority at name org.freedesktop.PolicyKit1: org.freedesktop.DBus.Error.Spawn.ExecFailed: Cannot launch daemon, file not found or permissions invalid -05:51:47,191 WARNING NetworkManager: error requesting auth for org.freedesktop.NetworkManager.sleep-wake: (26) Remote Exception invoking org.freedesktop.PolicyKit1.Authority.CheckAuthorization() on /org/freedesktop/PolicyKit1/Authority at name org.freedesktop.PolicyKit1: org.freedesktop.DBus.Error.Spawn.ExecFailed: Cannot launch daemon, file not found or permissions invalid -05:51:47,191 WARNING NetworkManager: error requesting auth for org.freedesktop.NetworkManager.enable-disable-wifi: (26) Remote Exception invoking org.freedesktop.PolicyKit1.Authority.CheckAuthorization() on /org/freedesktop/PolicyKit1/Authority at name org.freedesktop.PolicyKit1: org.freedesktop.DBus.Error.Spawn.ExecFailed: Cannot launch daemon, file not found or permissions invalid -05:51:47,191 WARNING NetworkManager: error requesting auth for org.freedesktop.NetworkManager.enable-disable-wwan: (26) Remote Exception invoking org.freedesktop.PolicyKit1.Authority.CheckAuthorization() on /org/freedesktop/PolicyKit1/Authority at name org.freedesktop.PolicyKit1: org.freedesktop.DBus.Error.Spawn.ExecFailed: Cannot launch daemon, file not found or permissions invalid -05:51:47,191 WARNING NetworkManager: error requesting auth for org.freedesktop.NetworkManager.use-user-connections: (26) Remote Exception invoking org.freedesktop.PolicyKit1.Authority.CheckAuthorization() on /org/freedesktop/PolicyKit1/Authority at name org.freedesktop.PolicyKit1: org.freedesktop.DBus.Error.Spawn.ExecFailed: Cannot launch daemon, file not found or permissions invalid -05:51:47,191 WARNING NetworkManager: error requesting auth for org.freedesktop.NetworkManager.network-control: (26) Remote Exception invoking org.freedesktop.PolicyKit1.Authority.CheckAuthorization() on /org/freedesktop/PolicyKit1/Authority at name org.freedesktop.PolicyKit1: org.freedesktop.DBus.Error.Spawn.ExecFailed: Cannot launch daemon, file not found or permissions invalid -05:51:47,192 WARNING NetworkManager: error requesting auth for org.freedesktop.network-manager-settings.system.wifi.share.open: (26) Remote Exception invoking org.freedesktop.PolicyKit1.Authority.CheckAuthorization() on /org/freedesktop/PolicyKit1/Authority at name org.freedesktop.PolicyKit1: org.freedesktop.DBus.Error.Spawn.ExecFailed: Cannot launch daemon, file not found or permissions invalid -05:51:47,192 WARNING NetworkManager: error requesting auth for org.freedesktop.network-manager-settings.system.wifi.share.protected: (26) Remote Exception invoking org.freedesktop.PolicyKit1.Authority.CheckAuthorization() on /org/freedesktop/PolicyKit1/Authority at name org.freedesktop.PolicyKit1: org.freedesktop.DBus.Error.Spawn.ExecFailed: Cannot launch daemon, file not found or permissions invalid -05:51:47,200 WARNING NetworkManager: error requesting auth for org.freedesktop.NetworkManager.enable-disable-network: (26) Remote Exception invoking org.freedesktop.PolicyKit1.Authority.CheckAuthorization() on /org/freedesktop/PolicyKit1/Authority at name org.freedesktop.PolicyKit1: org.freedesktop.DBus.Error.Spawn.ExecFailed: Cannot launch daemon, file not found or permissions invalid -05:51:47,200 WARNING NetworkManager: error requesting auth for org.freedesktop.NetworkManager.sleep-wake: (26) Remote Exception invoking org.freedesktop.PolicyKit1.Authority.CheckAuthorization() on /org/freedesktop/PolicyKit1/Authority at name org.freedesktop.PolicyKit1: org.freedesktop.DBus.Error.Spawn.ExecFailed: Cannot launch daemon, file not found or permissions invalid -05:51:47,200 WARNING NetworkManager: error requesting auth for org.freedesktop.NetworkManager.enable-disable-wifi: (26) Remote Exception invoking org.freedesktop.PolicyKit1.Authority.CheckAuthorization() on /org/freedesktop/PolicyKit1/Authority at name org.freedesktop.PolicyKit1: org.freedesktop.DBus.Error.Spawn.ExecFailed: Cannot launch daemon, file not found or permissions invalid -05:51:47,200 WARNING NetworkManager: error requesting auth for org.freedesktop.NetworkManager.enable-disable-wwan: (26) Remote Exception invoking org.freedesktop.PolicyKit1.Authority.CheckAuthorization() on /org/freedesktop/PolicyKit1/Authority at name org.freedesktop.PolicyKit1: org.freedesktop.DBus.Error.Spawn.ExecFailed: Cannot launch daemon, file not found or permissions invalid -05:51:47,200 WARNING NetworkManager: error requesting auth for org.freedesktop.NetworkManager.use-user-connections: (26) Remote Exception invoking org.freedesktop.PolicyKit1.Authority.CheckAuthorization() on /org/freedesktop/PolicyKit1/Authority at name org.freedesktop.PolicyKit1: org.freedesktop.DBus.Error.Spawn.ExecFailed: Cannot launch daemon, file not found or permissions invalid -05:51:47,201 WARNING NetworkManager: error requesting auth for org.freedesktop.NetworkManager.network-control: (26) Remote Exception invoking org.freedesktop.PolicyKit1.Authority.CheckAuthorization() on /org/freedesktop/PolicyKit1/Authority at name org.freedesktop.PolicyKit1: org.freedesktop.DBus.Error.Spawn.ExecFailed: Cannot launch daemon, file not found or permissions invalid -05:51:47,201 WARNING NetworkManager: error requesting auth for org.freedesktop.network-manager-settings.system.wifi.share.open: (26) Remote Exception invoking org.freedesktop.PolicyKit1.Authority.CheckAuthorization() on /org/freedesktop/PolicyKit1/Authority at name org.freedesktop.PolicyKit1: org.freedesktop.DBus.Error.Spawn.ExecFailed: Cannot launch daemon, file not found or permissions invalid -05:51:47,201 WARNING NetworkManager: error requesting auth for org.freedesktop.network-manager-settings.system.wifi.share.protected: (26) Remote Exception invoking org.freedesktop.PolicyKit1.Authority.CheckAuthorization() on /org/freedesktop/PolicyKit1/Authority at name org.freedesktop.PolicyKit1: org.freedesktop.DBus.Error.Spawn.ExecFailed: Cannot launch daemon, file not found or permissions invalid -05:51:47,212 WARNING NetworkManager: error requesting auth for org.freedesktop.NetworkManager.enable-disable-network: (26) Remote Exception invoking org.freedesktop.PolicyKit1.Authority.CheckAuthorization() on /org/freedesktop/PolicyKit1/Authority at name org.freedesktop.PolicyKit1: org.freedesktop.DBus.Error.Spawn.ExecFailed: Cannot launch daemon, file not found or permissions invalid -05:51:47,212 WARNING NetworkManager: error requesting auth for org.freedesktop.NetworkManager.sleep-wake: (26) Remote Exception invoking org.freedesktop.PolicyKit1.Authority.CheckAuthorization() on /org/freedesktop/PolicyKit1/Authority at name org.freedesktop.PolicyKit1: org.freedesktop.DBus.Error.Spawn.ExecFailed: Cannot launch daemon, file not found or permissions invalid -05:51:47,212 WARNING NetworkManager: error requesting auth for org.freedesktop.NetworkManager.enable-disable-wifi: (26) Remote Exception invoking org.freedesktop.PolicyKit1.Authority.CheckAuthorization() on /org/freedesktop/PolicyKit1/Authority at name org.freedesktop.PolicyKit1: org.freedesktop.DBus.Error.Spawn.ExecFailed: Cannot launch daemon, file not found or permissions invalid -05:51:47,212 WARNING NetworkManager: error requesting auth for org.freedesktop.NetworkManager.enable-disable-wwan: (26) Remote Exception invoking org.freedesktop.PolicyKit1.Authority.CheckAuthorization() on /org/freedesktop/PolicyKit1/Authority at name org.freedesktop.PolicyKit1: org.freedesktop.DBus.Error.Spawn.ExecFailed: Cannot launch daemon, file not found or permissions invalid -05:51:47,212 WARNING NetworkManager: error requesting auth for org.freedesktop.NetworkManager.use-user-connections: (26) Remote Exception invoking org.freedesktop.PolicyKit1.Authority.CheckAuthorization() on /org/freedesktop/PolicyKit1/Authority at name org.freedesktop.PolicyKit1: org.freedesktop.DBus.Error.Spawn.ExecFailed: Cannot launch daemon, file not found or permissions invalid -05:51:47,212 WARNING NetworkManager: error requesting auth for org.freedesktop.NetworkManager.network-control: (26) Remote Exception invoking org.freedesktop.PolicyKit1.Authority.CheckAuthorization() on /org/freedesktop/PolicyKit1/Authority at name org.freedesktop.PolicyKit1: org.freedesktop.DBus.Error.Spawn.ExecFailed: Cannot launch daemon, file not found or permissions invalid -05:51:47,213 WARNING NetworkManager: error requesting auth for org.freedesktop.network-manager-settings.system.wifi.share.open: (26) Remote Exception invoking org.freedesktop.PolicyKit1.Authority.CheckAuthorization() on /org/freedesktop/PolicyKit1/Authority at name org.freedesktop.PolicyKit1: org.freedesktop.DBus.Error.Spawn.ExecFailed: Cannot launch daemon, file not found or permissions invalid -05:51:47,213 WARNING NetworkManager: error requesting auth for org.freedesktop.network-manager-settings.system.wifi.share.protected: (26) Remote Exception invoking org.freedesktop.PolicyKit1.Authority.CheckAuthorization() on /org/freedesktop/PolicyKit1/Authority at name org.freedesktop.PolicyKit1: org.freedesktop.DBus.Error.Spawn.ExecFailed: Cannot launch daemon, file not found or permissions invalid -05:51:48,220 NOTICE NetworkManager: ifcfg-rh: updating /etc/sysconfig/network-scripts/ifcfg-eth0 -05:51:48,223 INFO NetworkManager: Auto-activating connection 'System eth0'. -05:51:48,224 INFO NetworkManager: Activation (eth0) starting connection 'System eth0' -05:51:48,224 INFO NetworkManager: (eth0): device state change: 3 -> 4 (reason 0) -05:51:48,224 INFO NetworkManager: Activation (eth0) Stage 1 of 5 (Device Prepare) scheduled... -05:51:48,224 INFO NetworkManager: Activation (eth0) Stage 1 of 5 (Device Prepare) started... -05:51:48,224 INFO NetworkManager: Activation (eth0) Stage 2 of 5 (Device Configure) scheduled... -05:51:48,225 INFO NetworkManager: Activation (eth0) Stage 1 of 5 (Device Prepare) complete. -05:51:48,225 INFO NetworkManager: Activation (eth0) Stage 2 of 5 (Device Configure) starting... -05:51:48,225 INFO NetworkManager: (eth0): device state change: 4 -> 5 (reason 0) -05:51:48,225 INFO NetworkManager: Activation (eth0) Stage 2 of 5 (Device Configure) successful. -05:51:48,225 INFO NetworkManager: Activation (eth0) Stage 3 of 5 (IP Configure Start) scheduled. -05:51:48,225 INFO NetworkManager: Activation (eth0) Stage 2 of 5 (Device Configure) complete. -05:51:48,225 INFO NetworkManager: Activation (eth0) Stage 3 of 5 (IP Configure Start) started... -05:51:48,225 INFO NetworkManager: (eth0): device state change: 5 -> 7 (reason 0) -05:51:48,225 INFO NetworkManager: Activation (eth0) Beginning DHCPv4 transaction -05:51:48,228 INFO dhclient: Internet Systems Consortium DHCP Client 4.1.1-P1 -05:51:48,228 INFO NetworkManager: dhclient started with pid 670 -05:51:48,228 INFO NetworkManager: Activation (eth0) DHCPv4 will time out in 45 seconds -05:51:48,228 INFO NetworkManager: Activation (eth0) Stage 3 of 5 (IP Configure Start) complete. -05:51:48,228 INFO dhclient: Copyright 2004-2010 Internet Systems Consortium. -05:51:48,228 INFO dhclient: All rights reserved. -05:51:48,228 INFO dhclient: For info, please visit https://www.isc.org/software/dhcp/ -05:51:48,229 INFO dhclient: -05:51:48,232 INFO NetworkManager: (eth0): DHCPv4 state changed nbi -> preinit -05:51:48,238 INFO dhclient: Listening on LPF/eth0/00:0c:29:21:89:af -05:51:48,238 INFO dhclient: Sending on LPF/eth0/00:0c:29:21:89:af -05:51:48,238 INFO dhclient: Sending on Socket/fallback -05:51:48,238 INFO dhclient: DHCPDISCOVER on eth0 to 255.255.255.255 port 67 interval 7 (xid=0x4cbfa09c) -05:51:48,266 INFO dhclient: DHCPOFFER from 10.145.88.211 -05:51:48,267 INFO dhclient: DHCPREQUEST on eth0 to 255.255.255.255 port 67 (xid=0x4cbfa09c) -05:51:50,624 INFO dhclient: DHCPACK from 10.145.88.211 (xid=0x4cbfa09c) -05:51:50,627 INFO NetworkManager: (eth0): DHCPv4 state changed preinit -> bound -05:51:50,627 INFO NetworkManager: Activation (eth0) Stage 4 of 5 (IP4 Configure Get) scheduled... -05:51:50,627 INFO NetworkManager: Activation (eth0) Stage 4 of 5 (IP4 Configure Get) started... -05:51:50,627 INFO NetworkManager: address 10.145.88.106 -05:51:50,627 INFO NetworkManager: prefix 23 (255.255.254.0) -05:51:50,627 INFO NetworkManager: gateway 10.145.88.1 -05:51:50,627 INFO NetworkManager: hostname 'server1' -05:51:50,627 INFO NetworkManager: nameserver '10.145.88.211' -05:51:50,628 INFO NetworkManager: Activation (eth0) Stage 5 of 5 (IP Configure Commit) scheduled... -05:51:50,628 INFO NetworkManager: Activation (eth0) Stage 4 of 5 (IP4 Configure Get) complete. -05:51:50,628 INFO NetworkManager: Activation (eth0) Stage 5 of 5 (IP Configure Commit) started... -05:51:50,628 INFO dhclient: bound to 10.145.88.106 -- renewal in 10408 seconds. -05:51:51,629 INFO NetworkManager: (eth0): device state change: 7 -> 8 (reason 0) -05:51:51,629 INFO NetworkManager: Policy set 'System eth0' (eth0) as default for IPv4 routing and DNS. -05:51:51,630 INFO NetworkManager: Setting system hostname to 'server1' (from DHCPv4) -05:51:51,630 INFO NetworkManager: Activation (eth0) successful, device activated. -05:51:51,631 INFO NetworkManager: Activation (eth0) Stage 5 of 5 (IP Configure Commit) complete. -05:52:07,660 WARNING NetworkManager: error requesting auth for org.freedesktop.NetworkManager.enable-disable-network: (26) Remote Exception invoking org.freedesktop.PolicyKit1.Authority.CheckAuthorization() on /org/freedesktop/PolicyKit1/Authority at name org.freedesktop.PolicyKit1: org.freedesktop.DBus.Error.Spawn.ExecFailed: Cannot launch daemon, file not found or permissions invalid -05:52:07,660 WARNING NetworkManager: error requesting auth for org.freedesktop.NetworkManager.sleep-wake: (26) Remote Exception invoking org.freedesktop.PolicyKit1.Authority.CheckAuthorization() on /org/freedesktop/PolicyKit1/Authority at name org.freedesktop.PolicyKit1: org.freedesktop.DBus.Error.Spawn.ExecFailed: Cannot launch daemon, file not found or permissions invalid -05:52:07,660 WARNING NetworkManager: error requesting auth for org.freedesktop.NetworkManager.enable-disable-wifi: (26) Remote Exception invoking org.freedesktop.PolicyKit1.Authority.CheckAuthorization() on /org/freedesktop/PolicyKit1/Authority at name org.freedesktop.PolicyKit1: org.freedesktop.DBus.Error.Spawn.ExecFailed: Cannot launch daemon, file not found or permissions invalid -05:52:07,660 WARNING NetworkManager: error requesting auth for org.freedesktop.NetworkManager.enable-disable-wwan: (26) Remote Exception invoking org.freedesktop.PolicyKit1.Authority.CheckAuthorization() on /org/freedesktop/PolicyKit1/Authority at name org.freedesktop.PolicyKit1: org.freedesktop.DBus.Error.Spawn.ExecFailed: Cannot launch daemon, file not found or permissions invalid -05:52:07,660 WARNING NetworkManager: error requesting auth for org.freedesktop.NetworkManager.use-user-connections: (26) Remote Exception invoking org.freedesktop.PolicyKit1.Authority.CheckAuthorization() on /org/freedesktop/PolicyKit1/Authority at name org.freedesktop.PolicyKit1: org.freedesktop.DBus.Error.Spawn.ExecFailed: Cannot launch daemon, file not found or permissions invalid -05:52:07,660 WARNING NetworkManager: error requesting auth for org.freedesktop.NetworkManager.network-control: (26) Remote Exception invoking org.freedesktop.PolicyKit1.Authority.CheckAuthorization() on /org/freedesktop/PolicyKit1/Authority at name org.freedesktop.PolicyKit1: org.freedesktop.DBus.Error.Spawn.ExecFailed: Cannot launch daemon, file not found or permissions invalid -05:52:07,660 WARNING NetworkManager: error requesting auth for org.freedesktop.network-manager-settings.system.wifi.share.open: (26) Remote Exception invoking org.freedesktop.PolicyKit1.Authority.CheckAuthorization() on /org/freedesktop/PolicyKit1/Authority at name org.freedesktop.PolicyKit1: org.freedesktop.DBus.Error.Spawn.ExecFailed: Cannot launch daemon, file not found or permissions invalid -05:52:07,660 WARNING NetworkManager: error requesting auth for org.freedesktop.network-manager-settings.system.wifi.share.protected: (26) Remote Exception invoking org.freedesktop.PolicyKit1.Authority.CheckAuthorization() on /org/freedesktop/PolicyKit1/Authority at name org.freedesktop.PolicyKit1: org.freedesktop.DBus.Error.Spawn.ExecFailed: Cannot launch daemon, file not found or permissions invalid -05:52:47,362 NOTICE dbus-daemon: [system] Reloaded configuration -05:52:47,364 NOTICE dbus-daemon: [system] Reloaded configuration -05:52:47,512 DEBUG kernel:SELinux: 2048 avtab hash slots, 277800 rules. -05:52:47,588 DEBUG kernel:SELinux: 2048 avtab hash slots, 277800 rules. -05:52:48,083 DEBUG kernel:SELinux: 9 users, 12 roles, 3917 types, 217 bools, 1 sens, 1024 cats -05:52:48,083 DEBUG kernel:SELinux: 81 classes, 277800 rules -05:52:48,088 DEBUG kernel:SELinux: Completing initialization. -05:52:48,088 DEBUG kernel:SELinux: Setting up existing superblocks. -05:52:48,088 DEBUG kernel:SELinux: initialized (dev loop0, type squashfs), not configured for labeling -05:52:48,088 DEBUG kernel:SELinux: initialized (dev tmpfs, type tmpfs), uses transition SIDs -05:52:48,088 DEBUG kernel:SELinux: initialized (dev tmpfs, type tmpfs), uses transition SIDs -05:52:48,089 DEBUG kernel:SELinux: initialized (dev selinuxfs, type selinuxfs), uses genfs_contexts -05:52:48,089 DEBUG kernel:SELinux: initialized (dev mqueue, type mqueue), uses transition SIDs -05:52:48,089 DEBUG kernel:SELinux: initialized (dev hugetlbfs, type hugetlbfs), uses transition SIDs -05:52:48,089 DEBUG kernel:SELinux: initialized (dev devpts, type devpts), uses transition SIDs -05:52:48,089 DEBUG kernel:SELinux: initialized (dev inotifyfs, type inotifyfs), uses genfs_contexts -05:52:48,089 DEBUG kernel:SELinux: initialized (dev anon_inodefs, type anon_inodefs), uses genfs_contexts -05:52:48,089 DEBUG kernel:SELinux: initialized (dev pipefs, type pipefs), uses task SIDs -05:52:48,089 DEBUG kernel:SELinux: initialized (dev debugfs, type debugfs), uses genfs_contexts -05:52:48,090 DEBUG kernel:SELinux: initialized (dev sockfs, type sockfs), uses task SIDs -05:52:48,090 DEBUG kernel:SELinux: initialized (dev devtmpfs, type devtmpfs), uses transition SIDs -05:52:48,090 DEBUG kernel:SELinux: initialized (dev tmpfs, type tmpfs), uses transition SIDs -05:52:48,090 DEBUG kernel:SELinux: initialized (dev proc, type proc), uses genfs_contexts -05:52:48,090 DEBUG kernel:SELinux: initialized (dev bdev, type bdev), uses genfs_contexts -05:52:48,090 DEBUG kernel:SELinux: initialized (dev rootfs, type rootfs), uses genfs_contexts -05:52:48,090 DEBUG kernel:SELinux: initialized (dev sysfs, type sysfs), uses genfs_contexts -05:52:48,116 NOTICE kernel:type=1403 audit(1021096368.114:2): policy loaded auid=4294967295 ses=4294967295 -05:52:48,165 INFO kernel:md: raid0 personality registered for level 0 -05:52:48,172 INFO kernel:md: raid1 personality registered for level 1 -05:52:48,176 INFO kernel:async_tx: api initialized (async) -05:52:48,188 INFO kernel:xor: automatically using best checksumming function: generic_sse -05:52:48,191 INFO kernel: generic_sse: 9112.000 MB/sec -05:52:48,191 INFO kernel:xor: using function: generic_sse (9112.000 MB/sec) -05:52:48,212 WARNING kernel:raid6: sse2x1 5777 MB/s -05:52:48,229 WARNING kernel:raid6: sse2x2 7031 MB/s -05:52:48,247 WARNING kernel:raid6: sse2x4 7550 MB/s -05:52:48,247 WARNING kernel:raid6: using algorithm sse2x4 (7550 MB/s) -05:52:48,247 WARNING kernel:raid6: using ssse3x2 recovery algorithm -05:52:48,261 INFO kernel:md: raid6 personality registered for level 6 -05:52:48,261 INFO kernel:md: raid5 personality registered for level 5 -05:52:48,261 INFO kernel:md: raid4 personality registered for level 4 -05:52:48,273 INFO kernel:md: raid10 personality registered for level 10 -05:52:48,277 INFO kernel:md: linear personality registered for level -1 -05:52:48,290 INFO kernel:device-mapper: uevent: version 1.0.3 -05:52:48,291 INFO kernel:device-mapper: ioctl: 4.24.6-ioctl (2013-01-15) initialised: dm-devel@redhat.com -05:52:48,324 INFO kernel:device-mapper: multipath: version 1.5.0 loaded -05:52:48,328 INFO kernel:device-mapper: multipath round-robin: version 1.0.0 loaded -05:53:05,608 WARNING kernel:hpet1: lost 5 rtc interrupts -05:53:05,608 WARNING kernel:hpet1: lost 1 rtc interrupts -05:53:21,197 NOTICE kernel:sd 2:0:0:0: [sda] Cache data unavailable -05:53:21,197 ERR kernel:sd 2:0:0:0: [sda] Assuming drive cache: write through -05:53:21,238 INFO kernel: sda: sda1 sda2 -05:53:25,106 NOTICE kernel:sd 2:0:0:0: [sda] Cache data unavailable -05:53:25,106 ERR kernel:sd 2:0:0:0: [sda] Assuming drive cache: write through -05:53:25,117 INFO kernel: sda: sda1 -05:53:31,920 NOTICE kernel:sd 2:0:0:0: [sda] Cache data unavailable -05:53:31,920 ERR kernel:sd 2:0:0:0: [sda] Assuming drive cache: write through -05:53:31,962 INFO kernel: sda: -05:53:33,120 NOTICE kernel:sd 2:0:0:0: [sda] Cache data unavailable -05:53:33,120 ERR kernel:sd 2:0:0:0: [sda] Assuming drive cache: write through -05:53:33,120 INFO kernel: sda: sda1 -05:53:50,037 NOTICE kernel:sd 2:0:0:0: [sda] Cache data unavailable -05:53:50,037 ERR kernel:sd 2:0:0:0: [sda] Assuming drive cache: write through -05:53:50,037 INFO kernel: sda: sda1 sda2 -05:53:55,178 NOTICE kernel:sd 2:0:0:0: [sda] Cache data unavailable -05:53:55,178 ERR kernel:sd 2:0:0:0: [sda] Assuming drive cache: write through -05:53:55,211 INFO kernel: sda: sda1 sda2 sda3 -05:54:41,918 INFO kernel:Adding 3354616k swap on /dev/sda2. Priority:-1 extents:1 across:3354616k -05:54:42,441 INFO kernel:kjournald starting. Commit interval 5 seconds -05:54:42,489 INFO kernel:EXT3-fs (dm-0): using internal journal -05:54:42,489 INFO kernel:EXT3-fs (dm-0): mounted filesystem with ordered data mode -05:54:42,489 DEBUG kernel:SELinux: initialized (dev dm-0, type ext3), uses xattr -05:54:42,913 INFO kernel:kjournald starting. Commit interval 5 seconds -05:54:42,977 INFO kernel:EXT3-fs (sda1): using internal journal -05:54:42,977 INFO kernel:EXT3-fs (sda1): mounted filesystem with ordered data mode -05:54:42,977 DEBUG kernel:SELinux: initialized (dev sda1, type ext3), uses xattr -05:54:43,167 DEBUG kernel:SELinux: initialized (dev tmpfs, type tmpfs), uses transition SIDs -05:54:43,255 INFO kernel:kjournald starting. Commit interval 5 seconds -05:54:43,268 INFO kernel:EXT3-fs (dm-1): using internal journal -05:54:43,268 INFO kernel:EXT3-fs (dm-1): mounted filesystem with ordered data mode -05:54:43,268 DEBUG kernel:SELinux: initialized (dev dm-1, type ext3), uses xattr -05:54:43,657 INFO kernel:kjournald starting. Commit interval 5 seconds -05:54:43,719 INFO kernel:EXT3-fs (dm-2): using internal journal -05:54:43,719 INFO kernel:EXT3-fs (dm-2): mounted filesystem with ordered data mode -05:54:43,719 DEBUG kernel:SELinux: initialized (dev dm-2, type ext3), uses xattr -05:54:43,913 INFO kernel:kjournald starting. Commit interval 5 seconds -05:54:43,949 INFO kernel:EXT3-fs (dm-3): using internal journal -05:54:43,949 INFO kernel:EXT3-fs (dm-3): mounted filesystem with ordered data mode -05:54:43,949 DEBUG kernel:SELinux: initialized (dev dm-3, type ext3), uses xattr -05:55:08,095 DEBUG kernel:SELinux: initialized (dev usbfs, type usbfs), uses genfs_contexts -05:55:08,106 NOTICE NetworkManager: ifcfg-rh: updating /etc/sysconfig/network-scripts/ifcfg-eth3 -05:55:08,107 NOTICE NetworkManager: ifcfg-rh: updating /etc/sysconfig/network-scripts/ifcfg-eth2 -05:55:08,109 NOTICE NetworkManager: ifcfg-rh: updating /etc/sysconfig/network-scripts/ifcfg-eth1 -05:55:09,125 NOTICE NetworkManager: ifcfg-rh: updating /etc/sysconfig/network-scripts/ifcfg-eth3 -05:55:09,126 NOTICE NetworkManager: ifcfg-rh: updating /etc/sysconfig/network-scripts/ifcfg-eth2 -05:55:09,127 NOTICE NetworkManager: ifcfg-rh: updating /etc/sysconfig/network-scripts/ifcfg-eth1 -05:55:09,128 NOTICE NetworkManager: ifcfg-rh: updating /etc/sysconfig/network-scripts/ifcfg-eth0 -05:59:16,883 ERR kernel:INFO: task flush-253:0:1525 blocked for more than 120 seconds. -05:59:16,883 ERR kernel: Not tainted 2.6.32-431.el6.x86_64 #1 -05:59:16,883 ERR kernel:"echo 0 > /proc/sys/kernel/hung_task_timeout_secs" disables this message. -05:59:16,883 INFO kernel:flush-253:0 D 0000000000000000 0 1525 2 0x00000080 -05:59:16,883 WARNING kernel: ffff8800592df6e0 0000000000000046 0000000000000000 ffff880079226080 -05:59:16,883 WARNING kernel: 0000000000000001 ffff880064ed8e40 ffff880079226080 ffff880079269dd0 -05:59:16,883 WARNING kernel: ffff880079226638 ffff8800592dffd8 000000000000fbc8 ffff880079226638 -05:59:16,883 WARNING kernel:Call Trace: -05:59:16,883 WARNING kernel: [] io_schedule+0x73/0xc0 -05:59:16,883 WARNING kernel: [] get_request_wait+0x108/0x1d0 -05:59:16,883 WARNING kernel: [] ? autoremove_wake_function+0x0/0x40 -05:59:16,883 WARNING kernel: [] ? elv_merge+0x17e/0x1c0 -05:59:16,883 WARNING kernel: [] blk_queue_bio+0x99/0x620 -05:59:16,883 WARNING kernel: [] generic_make_request+0x240/0x5a0 -05:59:16,883 WARNING kernel: [] ? mempool_alloc_slab+0x15/0x20 -05:59:16,883 WARNING kernel: [] submit_bio+0x70/0x120 -05:59:16,883 WARNING kernel: [] submit_bh+0x11d/0x1f0 -05:59:16,883 WARNING kernel: [] __block_write_full_page+0x1c8/0x330 -05:59:16,883 WARNING kernel: [] ? end_buffer_async_write+0x0/0x190 -05:59:16,883 WARNING kernel: [] ? blkdev_get_block+0x0/0x20 -05:59:16,883 WARNING kernel: [] ? blkdev_get_block+0x0/0x20 -05:59:16,883 WARNING kernel: [] block_write_full_page_endio+0xe0/0x120 -05:59:16,883 WARNING kernel: [] ? find_get_pages_tag+0x40/0x130 -05:59:16,883 WARNING kernel: [] block_write_full_page+0x15/0x20 -05:59:16,883 WARNING kernel: [] blkdev_writepage+0x18/0x20 -05:59:16,883 WARNING kernel: [] __writepage+0x17/0x40 -05:59:16,883 WARNING kernel: [] write_cache_pages+0x1fd/0x4c0 -05:59:16,883 WARNING kernel: [] ? __writepage+0x0/0x40 -05:59:16,883 WARNING kernel: [] generic_writepages+0x24/0x30 -05:59:16,883 WARNING kernel: [] do_writepages+0x21/0x40 -05:59:16,883 WARNING kernel: [] writeback_single_inode+0xdd/0x290 -05:59:16,883 WARNING kernel: [] writeback_sb_inodes+0xbd/0x170 -05:59:16,883 WARNING kernel: [] writeback_inodes_wb+0xab/0x1b0 -05:59:16,883 WARNING kernel: [] wb_writeback+0x2f3/0x410 -05:59:16,883 WARNING kernel: [] ? thread_return+0x4e/0x76e -05:59:16,883 WARNING kernel: [] ? del_timer_sync+0x22/0x30 -05:59:16,883 WARNING kernel: [] wb_do_writeback+0x1a5/0x240 -05:59:16,883 WARNING kernel: [] bdi_writeback_task+0x63/0x1b0 -05:59:16,883 WARNING kernel: [] ? bit_waitqueue+0x17/0xd0 -05:59:16,883 WARNING kernel: [] ? bdi_start_fn+0x0/0x100 -05:59:16,883 WARNING kernel: [] bdi_start_fn+0x86/0x100 -05:59:16,883 WARNING kernel: [] ? bdi_start_fn+0x0/0x100 -05:59:16,883 WARNING kernel: [] kthread+0x96/0xa0 -05:59:16,883 WARNING kernel: [] child_rip+0xa/0x20 -05:59:16,883 WARNING kernel: [] ? kthread+0x0/0xa0 -05:59:16,883 WARNING kernel: [] ? child_rip+0x0/0x20 -05:59:16,883 ERR kernel:INFO: task flush-253:3:1622 blocked for more than 120 seconds. -05:59:16,883 ERR kernel: Not tainted 2.6.32-431.el6.x86_64 #1 -05:59:16,883 ERR kernel:"echo 0 > /proc/sys/kernel/hung_task_timeout_secs" disables this message. -05:59:16,883 INFO kernel:flush-253:3 D 0000000000000001 0 1622 2 0x00000080 -05:59:16,883 WARNING kernel: ffff88005a5636e0 0000000000000046 0000000000000000 ffff8800790e6ae0 -05:59:16,883 WARNING kernel: 0000000000000001 ffff8800615bc080 ffff8800790e6ae0 ffff880079269dd0 -05:59:16,883 WARNING kernel: ffff8800790e7098 ffff88005a563fd8 000000000000fbc8 ffff8800790e7098 -05:59:16,883 WARNING kernel:Call Trace: -05:59:16,883 WARNING kernel: [] io_schedule+0x73/0xc0 -05:59:16,883 WARNING kernel: [] get_request_wait+0x108/0x1d0 -05:59:16,883 WARNING kernel: [] ? autoremove_wake_function+0x0/0x40 -05:59:16,883 WARNING kernel: [] ? elv_merge+0x17e/0x1c0 -05:59:16,883 WARNING kernel: [] blk_queue_bio+0x99/0x620 -05:59:16,883 WARNING kernel: [] ? read_tsc+0x9/0x20 -05:59:16,883 WARNING kernel: [] generic_make_request+0x240/0x5a0 -05:59:16,883 WARNING kernel: [] ? mempool_alloc_slab+0x15/0x20 -05:59:16,883 WARNING kernel: [] ? __dec_zone_page_state+0x2e/0x30 -05:59:16,883 WARNING kernel: [] submit_bio+0x70/0x120 -05:59:16,883 WARNING kernel: [] submit_bh+0x11d/0x1f0 -05:59:16,883 WARNING kernel: [] __block_write_full_page+0x1c8/0x330 -05:59:16,883 WARNING kernel: [] ? end_buffer_async_write+0x0/0x190 -05:59:16,883 WARNING kernel: [] ? blkdev_get_block+0x0/0x20 -05:59:16,883 WARNING kernel: [] ? blkdev_get_block+0x0/0x20 -05:59:16,883 WARNING kernel: [] block_write_full_page_endio+0xe0/0x120 -05:59:16,883 WARNING kernel: [] ? find_get_pages_tag+0x40/0x130 -05:59:16,883 WARNING kernel: [] block_write_full_page+0x15/0x20 -05:59:16,883 WARNING kernel: [] blkdev_writepage+0x18/0x20 -05:59:16,883 WARNING kernel: [] __writepage+0x17/0x40 -05:59:16,883 WARNING kernel: [] write_cache_pages+0x1fd/0x4c0 -05:59:16,883 WARNING kernel: [] ? __writepage+0x0/0x40 -05:59:16,883 WARNING kernel: [] generic_writepages+0x24/0x30 -05:59:16,883 WARNING kernel: [] do_writepages+0x21/0x40 -05:59:16,883 WARNING kernel: [] writeback_single_inode+0xdd/0x290 -05:59:16,883 WARNING kernel: [] writeback_sb_inodes+0xbd/0x170 -05:59:16,883 WARNING kernel: [] writeback_inodes_wb+0xab/0x1b0 -05:59:16,883 WARNING kernel: [] wb_writeback+0x2f3/0x410 -05:59:16,883 WARNING kernel: [] ? thread_return+0x4e/0x76e -05:59:16,883 WARNING kernel: [] ? del_timer_sync+0x22/0x30 -05:59:16,883 WARNING kernel: [] wb_do_writeback+0x1a5/0x240 -05:59:16,883 WARNING kernel: [] bdi_writeback_task+0x63/0x1b0 -05:59:16,883 WARNING kernel: [] ? bit_waitqueue+0x17/0xd0 -05:59:16,883 WARNING kernel: [] ? bdi_start_fn+0x0/0x100 -05:59:16,883 WARNING kernel: [] bdi_start_fn+0x86/0x100 -05:59:16,883 WARNING kernel: [] ? bdi_start_fn+0x0/0x100 -05:59:16,883 WARNING kernel: [] kthread+0x96/0xa0 -05:59:16,883 WARNING kernel: [] child_rip+0xa/0x20 -05:59:16,883 WARNING kernel: [] ? kthread+0x0/0xa0 -05:59:16,883 WARNING kernel: [] ? child_rip+0x0/0x20 -06:11:26,657 DEBUG kernel:SELinux: 2048 avtab hash slots, 277800 rules. -06:11:26,705 DEBUG kernel:SELinux: 2048 avtab hash slots, 277800 rules. -06:11:27,220 DEBUG kernel:SELinux: 9 users, 12 roles, 3917 types, 217 bools, 1 sens, 1024 cats -06:11:27,220 DEBUG kernel:SELinux: 81 classes, 277800 rules diff --git a/compass/tests/actions/update_progress/data/test2/anamon/checkpoint_5/server2.1/anaconda.log.template b/compass/tests/actions/update_progress/data/test2/anamon/checkpoint_5/server2.1/anaconda.log.template deleted file mode 100644 index 0e91936e..00000000 --- a/compass/tests/actions/update_progress/data/test2/anamon/checkpoint_5/server2.1/anaconda.log.template +++ /dev/null @@ -1,280 +0,0 @@ -05:50:22,531 INFO : kernel command line: initrd=/images/CentOS-6.5-x86_64/initrd.img ksdevice=bootif lang= kssendmac text ks=http://10.145.88.211/cblr/svc/op/ks/system/server2.1 BOOT_IMAGE=/images/CentOS-6.5-x86_64/vmlinuz BOOTIF=01-00-0c-29-5c-6a-b8 - -05:50:22,531 INFO : text mode forced from cmdline -05:50:22,531 DEBUG : readNetInfo /tmp/s390net not found, early return -05:50:22,531 INFO : anaconda version 13.21.215 on x86_64 starting -05:50:22,649 DEBUG : Saving module ipv6 -05:50:22,649 DEBUG : Saving module iscsi_ibft -05:50:22,649 DEBUG : Saving module iscsi_boot_sysfs -05:50:22,649 DEBUG : Saving module pcspkr -05:50:22,649 DEBUG : Saving module edd -05:50:22,649 DEBUG : Saving module floppy -05:50:22,649 DEBUG : Saving module iscsi_tcp -05:50:22,649 DEBUG : Saving module libiscsi_tcp -05:50:22,649 DEBUG : Saving module libiscsi -05:50:22,649 DEBUG : Saving module scsi_transport_iscsi -05:50:22,649 DEBUG : Saving module squashfs -05:50:22,649 DEBUG : Saving module cramfs -05:50:22,649 DEBUG : probing buses -05:50:22,673 DEBUG : waiting for hardware to initialize -05:50:28,619 DEBUG : probing buses -05:50:28,644 DEBUG : waiting for hardware to initialize -05:50:32,015 INFO : getting kickstart file -05:50:32,022 INFO : eth0 has link, using it -05:50:32,033 INFO : doing kickstart... setting it up -05:50:32,034 DEBUG : activating device eth0 -05:50:40,048 INFO : wait_for_iface_activation (2502): device eth0 activated -05:50:40,048 INFO : file location: http://10.145.88.211/cblr/svc/op/ks/system/server2.1 -05:50:40,049 INFO : transferring http://10.145.88.211/cblr/svc/op/ks/system/server2.1 -05:50:40,134 INFO : setting up kickstart -05:50:40,134 INFO : kickstart forcing text mode -05:50:40,134 INFO : kickstartFromUrl -05:50:40,134 INFO : results of url ks, url http://10.145.88.211/cblr/links/CentOS-6.5-x86_64 -05:50:40,135 INFO : trying to mount CD device /dev/sr0 on /mnt/stage2 -05:50:40,137 INFO : drive status is CDS_TRAY_OPEN -05:50:40,137 ERROR : Drive tray reports open when it should be closed -05:50:55,155 INFO : no stage2= given, assuming http://10.145.88.211/cblr/links/CentOS-6.5-x86_64/images/install.img -05:50:55,156 DEBUG : going to set language to en_US.UTF-8 -05:50:55,156 INFO : setting language to en_US.UTF-8 -05:50:55,169 INFO : starting STEP_METHOD -05:50:55,169 DEBUG : loaderData->method is set, adding skipMethodDialog -05:50:55,169 DEBUG : skipMethodDialog is set -05:50:55,176 INFO : starting STEP_STAGE2 -05:50:55,176 INFO : URL_STAGE_MAIN: url is http://10.145.88.211/cblr/links/CentOS-6.5-x86_64/images/install.img -05:50:55,176 INFO : transferring http://10.145.88.211/cblr/links/CentOS-6.5-x86_64/images/updates.img -05:50:56,174 ERROR : failed to mount loopback device /dev/loop7 on /tmp/update-disk as /tmp/updates-disk.img: (null) -05:50:56,175 ERROR : Error mounting /dev/loop7 on /tmp/update-disk: No such file or directory -05:50:56,175 INFO : transferring http://10.145.88.211/cblr/links/CentOS-6.5-x86_64/images/product.img -05:50:57,459 ERROR : Error downloading http://10.145.88.211/cblr/links/CentOS-6.5-x86_64/images/product.img: HTTP response code said error -05:50:57,459 INFO : transferring http://10.145.88.211/cblr/links/CentOS-6.5-x86_64/images/install.img -05:51:46,964 INFO : mounted loopback device /mnt/runtime on /dev/loop0 as /tmp/install.img -05:51:46,964 INFO : got stage2 at url http://10.145.88.211/cblr/links/CentOS-6.5-x86_64/images/install.img -05:51:47,009 INFO : Loading SELinux policy -05:51:47,753 INFO : getting ready to spawn shell now -05:51:47,973 INFO : Running anaconda script /usr/bin/anaconda -05:51:52,842 INFO : CentOS Linux is the highest priority installclass, using it -05:51:52,887 WARNING : /usr/lib/python2.6/site-packages/pykickstart/parser.py:713: DeprecationWarning: Script does not end with %end. This syntax has been deprecated. It may be removed from future releases, which will result in a fatal error from kickstart. Please modify your kickstart file to use this updated syntax. - warnings.warn(_("%s does not end with %%end. This syntax has been deprecated. It may be removed from future releases, which will result in a fatal error from kickstart. Please modify your kickstart file to use this updated syntax.") % _("Script"), DeprecationWarning) - -05:51:52,888 INFO : Running kickstart %%pre script(s) -05:51:52,888 WARNING : '/bin/sh' specified as full path -05:51:54,265 INFO : All kickstart %%pre script(s) have been run -05:51:54,314 INFO : ISCSID is /usr/sbin/iscsid -05:51:54,314 INFO : no initiator set -05:51:54,416 WARNING : '/usr/libexec/fcoe/fcoe_edd.sh' specified as full path -05:51:54,425 INFO : No FCoE EDD info found: No FCoE boot disk information is found in EDD! - -05:51:54,425 INFO : no /etc/zfcp.conf; not configuring zfcp -05:51:59,033 INFO : created new libuser.conf at /tmp/libuser.KyLOeb with instPath="/mnt/sysimage" -05:51:59,033 INFO : anaconda called with cmdline = ['/usr/bin/anaconda', '--stage2', 'http://10.145.88.211/cblr/links/CentOS-6.5-x86_64/images/install.img', '--kickstart', '/tmp/ks.cfg', '-T', '--selinux', '--lang', 'en_US', '--keymap', 'us', '--repo', 'http://10.145.88.211/cblr/links/CentOS-6.5-x86_64'] -05:51:59,033 INFO : Display mode = t -05:51:59,034 INFO : Default encoding = utf-8 -05:51:59,193 INFO : Detected 2016M of memory -05:51:59,193 INFO : Swap attempt of 4032M -05:51:59,528 INFO : ISCSID is /usr/sbin/iscsid -05:51:59,528 INFO : no initiator set -05:52:00,372 INFO : setting installation environment hostname to server2 -05:52:00,415 WARNING : Timezone US/Pacific set in kickstart is not valid. -05:52:00,541 INFO : Detected 2016M of memory -05:52:00,541 INFO : Suggested swap size (4032 M) exceeds 10 % of disk space, using 10 % of disk space (3276 M) instead. -05:52:00,541 INFO : Swap attempt of 3276M -05:52:00,698 WARNING : step installtype does not exist -05:52:00,699 WARNING : step confirminstall does not exist -05:52:00,699 WARNING : step complete does not exist -05:52:00,699 WARNING : step complete does not exist -05:52:00,699 WARNING : step complete does not exist -05:52:00,699 WARNING : step complete does not exist -05:52:00,700 WARNING : step complete does not exist -05:52:00,700 WARNING : step complete does not exist -05:52:00,700 WARNING : step complete does not exist -05:52:00,700 WARNING : step complete does not exist -05:52:00,700 WARNING : step complete does not exist -05:52:00,700 WARNING : step complete does not exist -05:52:00,701 WARNING : step complete does not exist -05:52:00,701 WARNING : step complete does not exist -05:52:00,701 WARNING : step complete does not exist -05:52:00,701 WARNING : step complete does not exist -05:52:00,701 WARNING : step complete does not exist -05:52:00,702 INFO : moving (1) to step setuptime -05:52:00,702 DEBUG : setuptime is a direct step -22:52:00,703 WARNING : '/usr/sbin/hwclock' specified as full path -22:52:02,003 INFO : leaving (1) step setuptime -22:52:02,003 INFO : moving (1) to step autopartitionexecute -22:52:02,003 DEBUG : autopartitionexecute is a direct step -22:52:02,141 INFO : leaving (1) step autopartitionexecute -22:52:02,141 INFO : moving (1) to step storagedone -22:52:02,141 DEBUG : storagedone is a direct step -22:52:02,142 INFO : leaving (1) step storagedone -22:52:02,142 INFO : moving (1) to step enablefilesystems -22:52:02,142 DEBUG : enablefilesystems is a direct step -22:52:08,928 DEBUG : notifying kernel of 'change' event on device /sys/class/block/sda1 -22:52:12,407 DEBUG : notifying kernel of 'change' event on device /sys/class/block/sda3 -22:52:25,536 DEBUG : notifying kernel of 'change' event on device /sys/class/block/dm-0 -22:52:30,102 DEBUG : notifying kernel of 'change' event on device /sys/class/block/dm-1 -22:52:35,181 DEBUG : notifying kernel of 'change' event on device /sys/class/block/dm-2 -22:52:40,809 DEBUG : notifying kernel of 'change' event on device /sys/class/block/dm-3 -22:52:44,576 INFO : failed to set SELinux context for /mnt/sysimage: [Errno 95] Operation not supported -22:52:44,576 DEBUG : isys.py:mount()- going to mount /dev/mapper/server2-rootvol on /mnt/sysimage as ext3 with options defaults -22:52:45,082 DEBUG : isys.py:mount()- going to mount /dev/sda1 on /mnt/sysimage/boot as ext3 with options defaults -22:52:45,230 DEBUG : isys.py:mount()- going to mount //dev on /mnt/sysimage/dev as bind with options defaults,bind -22:52:45,240 DEBUG : isys.py:mount()- going to mount devpts on /mnt/sysimage/dev/pts as devpts with options gid=5,mode=620 -22:52:45,247 DEBUG : isys.py:mount()- going to mount tmpfs on /mnt/sysimage/dev/shm as tmpfs with options defaults -22:52:45,333 DEBUG : isys.py:mount()- going to mount /dev/mapper/server2-homevol on /mnt/sysimage/home as ext3 with options defaults -22:52:45,482 INFO : failed to get default SELinux context for /proc: [Errno 2] No such file or directory -22:52:45,483 DEBUG : isys.py:mount()- going to mount proc on /mnt/sysimage/proc as proc with options defaults -22:52:45,487 INFO : failed to get default SELinux context for /proc: [Errno 2] No such file or directory -22:52:45,534 DEBUG : isys.py:mount()- going to mount sysfs on /mnt/sysimage/sys as sysfs with options defaults -22:52:45,571 DEBUG : isys.py:mount()- going to mount /dev/mapper/server2-tmpvol on /mnt/sysimage/tmp as ext3 with options defaults -22:52:45,795 DEBUG : isys.py:mount()- going to mount /dev/mapper/server2-varvol on /mnt/sysimage/var as ext3 with options defaults -22:52:45,955 INFO : leaving (1) step enablefilesystems -22:52:45,955 INFO : moving (1) to step bootloadersetup -22:52:45,956 DEBUG : bootloadersetup is a direct step -22:52:45,960 INFO : leaving (1) step bootloadersetup -22:52:45,960 INFO : moving (1) to step reposetup -22:52:45,960 DEBUG : reposetup is a direct step -22:52:47,076 ERROR : Error downloading treeinfo file: [Errno 14] PYCURL ERROR 22 - "The requested URL returned error: 404 Not Found" -22:52:47,077 INFO : added repository ppa_repo with URL http://10.145.88.211:80/cobbler/repo_mirror/ppa_repo/ -22:52:47,296 DEBUG : Grabbing http://10.145.88.211/cblr/links/CentOS-6.5-x86_64/repodata/repomd.xml -22:52:47,358 DEBUG : Grabbing http://10.145.88.211/cblr/links/CentOS-6.5-x86_64/repodata/0e371b19e547b9d7a7e8acc4b8c0c7c074509d33653cfaef9e8f4fd1d62d95de-primary.sqlite.bz2 -22:52:47,499 DEBUG : Grabbing http://10.145.88.211/cblr/links/CentOS-6.5-x86_64/repodata/34bae2d3c9c78e04ed2429923bc095005af1b166d1a354422c4c04274bae0f59-c6-minimal-x86_64.xml -22:52:47,629 INFO : leaving (1) step reposetup -22:52:47,629 INFO : moving (1) to step basepkgsel -22:52:47,629 DEBUG : basepkgsel is a direct step -22:52:47,645 WARNING : not adding Base group -22:52:48,052 INFO : leaving (1) step basepkgsel -22:52:48,053 INFO : moving (1) to step postselection -22:52:48,053 DEBUG : postselection is a direct step -22:52:48,056 INFO : selected kernel package for kernel -22:52:48,521 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/fs/ext3/ext3.ko.gz -22:52:48,521 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/fs/jbd/jbd.ko.gz -22:52:48,521 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/fs/mbcache.ko.gz -22:52:48,521 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/scsi/fcoe/fcoe.ko.gz -22:52:48,521 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/scsi/fcoe/libfcoe.ko.gz -22:52:48,521 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/scsi/libfc/libfc.ko.gz -22:52:48,521 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/scsi/scsi_transport_fc.ko.gz -22:52:48,521 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/scsi/scsi_tgt.ko.gz -22:52:48,521 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/crypto/xts.ko.gz -22:52:48,521 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/crypto/lrw.ko.gz -22:52:48,522 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/crypto/gf128mul.ko.gz -22:52:48,522 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/crypto/sha256_generic.ko.gz -22:52:48,522 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/crypto/cbc.ko.gz -22:52:48,522 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/md/dm-raid.ko.gz -22:52:48,522 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/md/dm-crypt.ko.gz -22:52:48,522 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/md/dm-round-robin.ko.gz -22:52:48,522 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/md/dm-multipath.ko.gz -22:52:48,522 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/md/dm-snapshot.ko.gz -22:52:48,522 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/md/dm-mirror.ko.gz -22:52:48,522 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/md/dm-region-hash.ko.gz -22:52:48,523 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/md/dm-log.ko.gz -22:52:48,523 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/md/dm-zero.ko.gz -22:52:48,523 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/md/dm-mod.ko.gz -22:52:48,523 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/md/linear.ko.gz -22:52:48,523 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/md/raid10.ko.gz -22:52:48,523 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/md/raid456.ko.gz -22:52:48,523 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/crypto/async_tx/async_raid6_recov.ko.gz -22:52:48,523 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/crypto/async_tx/async_pq.ko.gz -22:52:48,523 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/lib/raid6/raid6_pq.ko.gz -22:52:48,523 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/crypto/async_tx/async_xor.ko.gz -22:52:48,523 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/crypto/xor.ko.gz -22:52:48,524 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/crypto/async_tx/async_memcpy.ko.gz -22:52:48,524 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/crypto/async_tx/async_tx.ko.gz -22:52:48,524 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/md/raid1.ko.gz -22:52:48,524 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/md/raid0.ko.gz -22:52:48,524 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/net/8021q/8021q.ko.gz -22:52:48,524 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/net/802/garp.ko.gz -22:52:48,524 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/net/802/stp.ko.gz -22:52:48,524 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/net/llc/llc.ko.gz -22:52:48,524 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/infiniband/hw/mlx4/mlx4_ib.ko.gz -22:52:48,524 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/net/mlx4/mlx4_en.ko.gz -22:52:48,524 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/net/mlx4/mlx4_core.ko.gz -22:52:48,525 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/infiniband/ulp/ipoib/ib_ipoib.ko.gz -22:52:48,525 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/infiniband/core/ib_cm.ko.gz -22:52:48,525 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/infiniband/core/ib_sa.ko.gz -22:52:48,525 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/infiniband/core/ib_mad.ko.gz -22:52:48,525 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/infiniband/core/ib_core.ko.gz -22:52:48,525 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/scsi/sg.ko.gz -22:52:48,525 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/scsi/sd_mod.ko.gz -22:52:48,525 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/lib/crc-t10dif.ko.gz -22:52:48,525 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/net/e1000/e1000.ko.gz -22:52:48,525 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/scsi/sr_mod.ko.gz -22:52:48,526 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/cdrom/cdrom.ko.gz -22:52:48,526 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/misc/vmware_balloon.ko.gz -22:52:48,526 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/message/fusion/mptspi.ko.gz -22:52:48,526 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/message/fusion/mptscsih.ko.gz -22:52:48,526 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/message/fusion/mptbase.ko.gz -22:52:48,526 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/scsi/scsi_transport_spi.ko.gz -22:52:48,526 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/ata/pata_acpi.ko.gz -22:52:48,526 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/ata/ata_generic.ko.gz -22:52:48,526 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/ata/ata_piix.ko.gz -22:52:48,526 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/net/ipv6/ipv6.ko.gz -22:52:48,526 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/firmware/iscsi_ibft.ko.gz -22:52:48,527 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/scsi/iscsi_boot_sysfs.ko.gz -22:52:48,527 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/input/misc/pcspkr.ko.gz -22:52:48,527 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/firmware/edd.ko.gz -22:52:48,527 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/block/floppy.ko.gz -22:52:48,527 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/scsi/iscsi_tcp.ko.gz -22:52:48,527 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/scsi/libiscsi_tcp.ko.gz -22:52:48,527 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/scsi/libiscsi.ko.gz -22:52:48,527 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/scsi/scsi_transport_iscsi.ko.gz -22:52:48,527 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/fs/squashfs/squashfs.ko.gz -22:52:48,527 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/fs/cramfs/cramfs.ko.gz -22:52:53,656 INFO : leaving (1) step postselection -22:52:53,657 INFO : moving (1) to step install -22:52:53,660 INFO : leaving (1) step install -22:52:53,660 INFO : moving (1) to step preinstallconfig -22:52:53,660 DEBUG : preinstallconfig is a direct step -22:52:54,102 DEBUG : isys.py:mount()- going to mount /selinux on /mnt/sysimage/selinux as selinuxfs with options defaults -22:52:54,107 DEBUG : isys.py:mount()- going to mount /proc/bus/usb on /mnt/sysimage/proc/bus/usb as usbfs with options defaults -22:52:54,117 INFO : copy_to_sysimage: source '/etc/multipath/wwids' does not exist. -22:52:54,117 INFO : copy_to_sysimage: source '/etc/multipath/bindings' does not exist. -22:52:54,130 INFO : copy_to_sysimage: source '/etc/multipath/wwids' does not exist. -22:52:54,130 INFO : copy_to_sysimage: source '/etc/multipath/bindings' does not exist. -22:52:54,134 INFO : leaving (1) step preinstallconfig -22:52:54,134 INFO : moving (1) to step installpackages -22:52:54,134 DEBUG : installpackages is a direct step -22:52:54,134 INFO : Preparing to install packages -23:16:26,925 INFO : leaving (1) step installpackages -23:16:26,926 INFO : moving (1) to step postinstallconfig -23:16:26,926 DEBUG : postinstallconfig is a direct step -23:16:26,934 DEBUG : Removing cachedir: /mnt/sysimage/var/cache/yum/anaconda-CentOS-201311291202.x86_64 -23:16:26,949 DEBUG : Removing headers and packages from /mnt/sysimage/var/cache/yum/ppa_repo -23:16:26,953 INFO : leaving (1) step postinstallconfig -23:16:26,953 INFO : moving (1) to step writeconfig -23:16:26,953 DEBUG : writeconfig is a direct step -23:16:26,953 INFO : Writing main configuration -23:16:26,958 WARNING : '/usr/sbin/authconfig' specified as full path -23:16:30,473 WARNING : '/usr/sbin/lokkit' specified as full path -23:16:30,530 WARNING : '/usr/sbin/lokkit' specified as full path -23:16:30,632 INFO : removing libuser.conf at /tmp/libuser.KyLOeb -23:16:30,633 INFO : created new libuser.conf at /tmp/libuser.KyLOeb with instPath="/mnt/sysimage" -23:16:31,956 INFO : leaving (1) step writeconfig -23:16:31,956 INFO : moving (1) to step firstboot -23:16:31,957 DEBUG : firstboot is a direct step -23:16:31,957 INFO : leaving (1) step firstboot -23:16:31,957 INFO : moving (1) to step instbootloader -23:16:31,957 DEBUG : instbootloader is a direct step -23:16:33,920 WARNING : '/sbin/grub-install' specified as full path -23:16:34,226 WARNING : '/sbin/grub' specified as full path -23:16:35,092 INFO : leaving (1) step instbootloader -23:16:35,092 INFO : moving (1) to step reipl -23:16:35,092 DEBUG : reipl is a direct step -23:16:35,093 INFO : leaving (1) step reipl -23:16:35,093 INFO : moving (1) to step writeksconfig -23:16:35,093 DEBUG : writeksconfig is a direct step -23:16:35,093 INFO : Writing autokickstart file -23:16:35,124 INFO : leaving (1) step writeksconfig -23:16:35,124 INFO : moving (1) to step setfilecon -23:16:35,125 DEBUG : setfilecon is a direct step -23:16:35,125 INFO : setting SELinux contexts for anaconda created files -23:16:36,828 INFO : leaving (1) step setfilecon -23:16:36,829 INFO : moving (1) to step copylogs -23:16:36,829 DEBUG : copylogs is a direct step -23:16:36,829 INFO : Copying anaconda logs -23:16:36,831 INFO : leaving (1) step copylogs -23:16:36,831 INFO : moving (1) to step methodcomplete -23:16:36,832 DEBUG : methodcomplete is a direct step -23:16:36,832 INFO : leaving (1) step methodcomplete -23:16:36,832 INFO : moving (1) to step postscripts -23:16:36,832 DEBUG : postscripts is a direct step -23:16:36,832 INFO : Running kickstart %%post script(s) -23:16:36,872 WARNING : '/bin/sh' specified as full path diff --git a/compass/tests/actions/update_progress/data/test2/anamon/checkpoint_5/server2.1/chef-client.log.template b/compass/tests/actions/update_progress/data/test2/anamon/checkpoint_5/server2.1/chef-client.log.template deleted file mode 100644 index 7c1d0fa3..00000000 --- a/compass/tests/actions/update_progress/data/test2/anamon/checkpoint_5/server2.1/chef-client.log.template +++ /dev/null @@ -1,446 +0,0 @@ -Feb 21 20:21:42 server2.1 [2014-02-21T20:21:42-08:00] INFO: Forking chef instance to converge... -Feb 21 20:21:51 server2.1 [2014-02-21T20:21:50-08:00] INFO: *** Chef 11.8.0 *** -Feb 21 20:21:51 server2.1 [2014-02-21T20:21:50-08:00] INFO: Chef-client pid: 1350 -Feb 21 20:22:14 server2.1 [2014-02-21T20:22:14-08:00] INFO: Client key /etc/chef/client.pem is not present - registering -Feb 21 20:22:18 server2.1 [2014-02-21T20:22:18-08:00] INFO: HTTP Request Returned 404 Object Not Found: error -Feb 21 20:22:19 server2.1 [2014-02-21T20:22:18-08:00] INFO: Setting the run_list to ["role[os-ops-database]"] from JSON -Feb 21 20:22:19 server2.1 [2014-02-21T20:22:19-08:00] INFO: Run List is [role[os-ops-database]] -Feb 21 20:22:19 server2.1 [2014-02-21T20:22:19-08:00] INFO: Run List expands to [openstack-common, openstack-common::logging, openstack-ops-database::server, openstack-ops-database::openstack-db] -Feb 21 20:22:19 server2.1 [2014-02-21T20:22:19-08:00] INFO: Starting Chef Run for server2_openstack_1 -Feb 21 20:22:19 server2.1 [2014-02-21T20:22:19-08:00] INFO: Running start handlers -Feb 21 20:22:19 server2.1 [2014-02-21T20:22:19-08:00] INFO: Start handlers complete. -Feb 21 20:22:19 server2.1 [2014-02-21T20:22:19-08:00] INFO: HTTP Request Returned 404 Object Not Found: -Feb 21 20:22:20 server2.1 [2014-02-21T20:22:20-08:00] INFO: Loading cookbooks [apt, aws, build-essential, database, mysql, openssl, openstack-common, openstack-ops-database, postgresql, xfs, yum] -Feb 21 20:22:20 server2.1 [2014-02-21T20:22:20-08:00] INFO: Storing updated cookbooks/mysql/recipes/percona_repo.rb in the cache. -Feb 21 20:22:21 server2.1 [2014-02-21T20:22:20-08:00] INFO: Storing updated cookbooks/mysql/recipes/server.rb in the cache. -Feb 21 20:22:21 server2.1 [2014-02-21T20:22:21-08:00] INFO: Storing updated cookbooks/mysql/recipes/default.rb in the cache. -Feb 21 20:22:21 server2.1 [2014-02-21T20:22:21-08:00] INFO: Storing updated cookbooks/mysql/recipes/ruby.rb in the cache. -Feb 21 20:22:21 server2.1 [2014-02-21T20:22:21-08:00] INFO: Storing updated cookbooks/mysql/recipes/server_ec2.rb in the cache. -Feb 21 20:22:21 server2.1 [2014-02-21T20:22:21-08:00] INFO: Storing updated cookbooks/mysql/recipes/client.rb in the cache. -Feb 21 20:22:22 server2.1 [2014-02-21T20:22:22-08:00] INFO: Storing updated cookbooks/mysql/libraries/helpers.rb in the cache. -Feb 21 20:22:22 server2.1 [2014-02-21T20:22:22-08:00] INFO: Storing updated cookbooks/mysql/attributes/percona_repo.rb in the cache. -Feb 21 20:22:22 server2.1 [2014-02-21T20:22:22-08:00] INFO: Storing updated cookbooks/mysql/attributes/server.rb in the cache. -Feb 21 20:22:22 server2.1 [2014-02-21T20:22:22-08:00] INFO: Storing updated cookbooks/mysql/attributes/client.rb in the cache. -Feb 21 20:22:22 server2.1 [2014-02-21T20:22:22-08:00] INFO: Storing updated cookbooks/mysql/templates/default/my.cnf.erb in the cache. -Feb 21 20:22:23 server2.1 [2014-02-21T20:22:22-08:00] INFO: Storing updated cookbooks/mysql/templates/default/mysql-server.seed.erb in the cache. -Feb 21 20:22:23 server2.1 [2014-02-21T20:22:23-08:00] INFO: Storing updated cookbooks/mysql/templates/default/port_mysql.erb in the cache. -Feb 21 20:22:24 server2.1 [2014-02-21T20:22:24-08:00] INFO: Storing updated cookbooks/mysql/templates/default/debian.cnf.erb in the cache. -Feb 21 20:22:24 server2.1 [2014-02-21T20:22:24-08:00] INFO: Storing updated cookbooks/mysql/templates/default/grants.sql.erb in the cache. -Feb 21 20:22:25 server2.1 [2014-02-21T20:22:24-08:00] INFO: Storing updated cookbooks/mysql/templates/windows/my.cnf.erb in the cache. -Feb 21 20:22:25 server2.1 [2014-02-21T20:22:25-08:00] INFO: Storing updated cookbooks/mysql/LICENSE in the cache. -Feb 21 20:22:26 server2.1 [2014-02-21T20:22:26-08:00] INFO: Storing updated cookbooks/mysql/CHANGELOG.md in the cache. -Feb 21 20:22:26 server2.1 [2014-02-21T20:22:26-08:00] INFO: Storing updated cookbooks/mysql/metadata.rb in the cache. -Feb 21 20:22:26 server2.1 [2014-02-21T20:22:26-08:00] INFO: Storing updated cookbooks/mysql/TESTING.md in the cache. -Feb 21 20:22:26 server2.1 [2014-02-21T20:22:26-08:00] INFO: Storing updated cookbooks/mysql/Berksfile in the cache. -Feb 21 20:22:26 server2.1 [2014-02-21T20:22:26-08:00] INFO: Storing updated cookbooks/mysql/README.md in the cache. -Feb 21 20:22:27 server2.1 [2014-02-21T20:22:26-08:00] INFO: Storing updated cookbooks/mysql/CONTRIBUTING in the cache. -Feb 21 20:22:27 server2.1 [2014-02-21T20:22:27-08:00] INFO: Storing updated cookbooks/mysql/.kitchen.yml in the cache. -Feb 21 20:22:27 server2.1 [2014-02-21T20:22:27-08:00] INFO: Storing updated cookbooks/database/recipes/mysql.rb in the cache. -Feb 21 20:22:27 server2.1 [2014-02-21T20:22:27-08:00] INFO: Storing updated cookbooks/database/recipes/ebs_backup.rb in the cache. -Feb 21 20:22:27 server2.1 [2014-02-21T20:22:27-08:00] INFO: Storing updated cookbooks/database/recipes/default.rb in the cache. -Feb 21 20:22:27 server2.1 [2014-02-21T20:22:27-08:00] INFO: Storing updated cookbooks/database/recipes/ebs_volume.rb in the cache. -Feb 21 20:22:27 server2.1 [2014-02-21T20:22:27-08:00] INFO: Storing updated cookbooks/database/recipes/postgresql.rb in the cache. -Feb 21 20:22:28 server2.1 [2014-02-21T20:22:27-08:00] INFO: Storing updated cookbooks/database/recipes/master.rb in the cache. -Feb 21 20:22:28 server2.1 [2014-02-21T20:22:27-08:00] INFO: Storing updated cookbooks/database/recipes/snapshot.rb in the cache. -Feb 21 20:22:28 server2.1 [2014-02-21T20:22:28-08:00] INFO: Storing updated cookbooks/database/libraries/provider_database_mysql_user.rb in the cache. -Feb 21 20:22:28 server2.1 [2014-02-21T20:22:28-08:00] INFO: Storing updated cookbooks/database/libraries/provider_database_postgresql.rb in the cache. -Feb 21 20:22:28 server2.1 [2014-02-21T20:22:28-08:00] INFO: Storing updated cookbooks/database/libraries/resource_database_user.rb in the cache. -Feb 21 20:22:28 server2.1 [2014-02-21T20:22:28-08:00] INFO: Storing updated cookbooks/database/libraries/provider_database_postgresql_user.rb in the cache. -Feb 21 20:22:28 server2.1 [2014-02-21T20:22:28-08:00] INFO: Storing updated cookbooks/database/libraries/resource_mysql_database_user.rb in the cache. -Feb 21 20:22:28 server2.1 [2014-02-21T20:22:28-08:00] INFO: Storing updated cookbooks/database/libraries/resource_sql_server_database_user.rb in the cache. -Feb 21 20:22:29 server2.1 [2014-02-21T20:22:29-08:00] INFO: Storing updated cookbooks/database/libraries/provider_database_mysql.rb in the cache. -Feb 21 20:22:29 server2.1 [2014-02-21T20:22:29-08:00] INFO: Storing updated cookbooks/database/libraries/resource_mysql_database.rb in the cache. -Feb 21 20:22:30 server2.1 [2014-02-21T20:22:29-08:00] INFO: Storing updated cookbooks/database/libraries/provider_database_sql_server.rb in the cache. -Feb 21 20:22:30 server2.1 [2014-02-21T20:22:29-08:00] INFO: Storing updated cookbooks/database/libraries/resource_database.rb in the cache. -Feb 21 20:22:30 server2.1 [2014-02-21T20:22:29-08:00] INFO: Storing updated cookbooks/database/libraries/resource_postgresql_database_user.rb in the cache. -Feb 21 20:22:30 server2.1 [2014-02-21T20:22:30-08:00] INFO: Storing updated cookbooks/database/libraries/provider_database_sql_server_user.rb in the cache. -Feb 21 20:22:30 server2.1 [2014-02-21T20:22:30-08:00] INFO: Storing updated cookbooks/database/libraries/resource_sql_server_database.rb in the cache. -Feb 21 20:22:30 server2.1 [2014-02-21T20:22:30-08:00] INFO: Storing updated cookbooks/database/libraries/resource_postgresql_database.rb in the cache. -Feb 21 20:22:30 server2.1 [2014-02-21T20:22:30-08:00] INFO: Storing updated cookbooks/database/templates/default/ebs-db-restore.sh.erb in the cache. -Feb 21 20:22:30 server2.1 [2014-02-21T20:22:30-08:00] INFO: Storing updated cookbooks/database/templates/default/aws_config.erb in the cache. -Feb 21 20:22:30 server2.1 [2014-02-21T20:22:30-08:00] INFO: Storing updated cookbooks/database/templates/default/chef-solo-database-snapshot.rb.erb in the cache. -Feb 21 20:22:30 server2.1 [2014-02-21T20:22:30-08:00] INFO: Storing updated cookbooks/database/templates/default/ebs-backup-cron.erb in the cache. -Feb 21 20:22:30 server2.1 [2014-02-21T20:22:30-08:00] INFO: Storing updated cookbooks/database/templates/default/app_grants.sql.erb in the cache. -Feb 21 20:22:31 server2.1 [2014-02-21T20:22:30-08:00] INFO: Storing updated cookbooks/database/templates/default/s3cfg.erb in the cache. -Feb 21 20:22:31 server2.1 [2014-02-21T20:22:30-08:00] INFO: Storing updated cookbooks/database/templates/default/chef-solo-database-snapshot.cron.erb in the cache. -Feb 21 20:22:31 server2.1 [2014-02-21T20:22:30-08:00] INFO: Storing updated cookbooks/database/templates/default/chef-solo-database-snapshot.json.erb in the cache. -Feb 21 20:22:31 server2.1 [2014-02-21T20:22:31-08:00] INFO: Storing updated cookbooks/database/templates/default/ebs-db-backup.sh.erb in the cache. -Feb 21 20:22:31 server2.1 [2014-02-21T20:22:31-08:00] INFO: Storing updated cookbooks/database/LICENSE in the cache. -Feb 21 20:22:31 server2.1 [2014-02-21T20:22:31-08:00] INFO: Storing updated cookbooks/database/CHANGELOG.md in the cache. -Feb 21 20:22:32 server2.1 [2014-02-21T20:22:31-08:00] INFO: Storing updated cookbooks/database/metadata.rb in the cache. -Feb 21 20:22:32 server2.1 [2014-02-21T20:22:32-08:00] INFO: Storing updated cookbooks/database/README.md in the cache. -Feb 21 20:22:32 server2.1 [2014-02-21T20:22:32-08:00] INFO: Storing updated cookbooks/database/CONTRIBUTING in the cache. -Feb 21 20:22:32 server2.1 [2014-02-21T20:22:32-08:00] INFO: Storing updated cookbooks/openstack-ops-database/recipes/mysql-server.rb in the cache. -Feb 21 20:22:33 server2.1 [2014-02-21T20:22:32-08:00] INFO: Storing updated cookbooks/openstack-ops-database/recipes/server.rb in the cache. -Feb 21 20:22:33 server2.1 [2014-02-21T20:22:32-08:00] INFO: Storing updated cookbooks/openstack-ops-database/recipes/openstack-db.rb in the cache. -Feb 21 20:22:33 server2.1 [2014-02-21T20:22:32-08:00] INFO: Storing updated cookbooks/openstack-ops-database/recipes/postgresql-server.rb in the cache. -Feb 21 20:22:33 server2.1 [2014-02-21T20:22:33-08:00] INFO: Storing updated cookbooks/openstack-ops-database/recipes/postgresql-client.rb in the cache. -Feb 21 20:22:33 server2.1 [2014-02-21T20:22:33-08:00] INFO: Storing updated cookbooks/openstack-ops-database/recipes/mysql-client.rb in the cache. -Feb 21 20:22:33 server2.1 [2014-02-21T20:22:33-08:00] INFO: Storing updated cookbooks/openstack-ops-database/recipes/client.rb in the cache. -Feb 21 20:22:34 server2.1 [2014-02-21T20:22:33-08:00] INFO: Storing updated cookbooks/openstack-ops-database/attributes/default.rb in the cache. -Feb 21 20:22:34 server2.1 [2014-02-21T20:22:34-08:00] INFO: Storing updated cookbooks/openstack-ops-database/LICENSE in the cache. -Feb 21 20:22:34 server2.1 [2014-02-21T20:22:34-08:00] INFO: Storing updated cookbooks/openstack-ops-database/CHANGELOG.md in the cache. -Feb 21 20:22:34 server2.1 [2014-02-21T20:22:34-08:00] INFO: Storing updated cookbooks/openstack-ops-database/metadata.rb in the cache. -Feb 21 20:22:34 server2.1 [2014-02-21T20:22:34-08:00] INFO: Storing updated cookbooks/openstack-ops-database/README.md in the cache. -Feb 21 20:22:34 server2.1 [2014-02-21T20:22:34-08:00] INFO: Storing updated cookbooks/xfs/recipes/default.rb in the cache. -Feb 21 20:22:35 server2.1 [2014-02-21T20:22:34-08:00] INFO: Storing updated cookbooks/xfs/LICENSE in the cache. -Feb 21 20:22:35 server2.1 [2014-02-21T20:22:35-08:00] INFO: Storing updated cookbooks/xfs/CHANGELOG.md in the cache. -Feb 21 20:22:35 server2.1 [2014-02-21T20:22:35-08:00] INFO: Storing updated cookbooks/xfs/metadata.rb in the cache. -Feb 21 20:22:35 server2.1 [2014-02-21T20:22:35-08:00] INFO: Storing updated cookbooks/xfs/TESTING.md in the cache. -Feb 21 20:22:35 server2.1 [2014-02-21T20:22:35-08:00] INFO: Storing updated cookbooks/xfs/Berksfile in the cache. -Feb 21 20:22:35 server2.1 [2014-02-21T20:22:35-08:00] INFO: Storing updated cookbooks/xfs/README.md in the cache. -Feb 21 20:22:36 server2.1 [2014-02-21T20:22:35-08:00] INFO: Storing updated cookbooks/xfs/CONTRIBUTING in the cache. -Feb 21 20:22:36 server2.1 [2014-02-21T20:22:35-08:00] INFO: Storing updated cookbooks/xfs/.kitchen.yml in the cache. -Feb 21 20:22:36 server2.1 [2014-02-21T20:22:35-08:00] INFO: Storing updated cookbooks/aws/resources/s3_file.rb in the cache. -Feb 21 20:22:36 server2.1 [2014-02-21T20:22:35-08:00] INFO: Storing updated cookbooks/aws/resources/elastic_lb.rb in the cache. -Feb 21 20:22:36 server2.1 [2014-02-21T20:22:36-08:00] INFO: Storing updated cookbooks/aws/resources/resource_tag.rb in the cache. -Feb 21 20:22:36 server2.1 [2014-02-21T20:22:36-08:00] INFO: Storing updated cookbooks/aws/resources/ebs_volume.rb in the cache. -Feb 21 20:22:36 server2.1 [2014-02-21T20:22:36-08:00] INFO: Storing updated cookbooks/aws/resources/ebs_raid.rb in the cache. -Feb 21 20:22:36 server2.1 [2014-02-21T20:22:36-08:00] INFO: Storing updated cookbooks/aws/resources/elastic_ip.rb in the cache. -Feb 21 20:22:36 server2.1 [2014-02-21T20:22:36-08:00] INFO: Storing updated cookbooks/aws/providers/s3_file.rb in the cache. -Feb 21 20:22:36 server2.1 [2014-02-21T20:22:36-08:00] INFO: Storing updated cookbooks/aws/providers/elastic_lb.rb in the cache. -Feb 21 20:22:36 server2.1 [2014-02-21T20:22:36-08:00] INFO: Storing updated cookbooks/aws/providers/resource_tag.rb in the cache. -Feb 21 20:22:37 server2.1 [2014-02-21T20:22:36-08:00] INFO: Storing updated cookbooks/aws/providers/ebs_volume.rb in the cache. -Feb 21 20:22:37 server2.1 [2014-02-21T20:22:36-08:00] INFO: Storing updated cookbooks/aws/providers/ebs_raid.rb in the cache. -Feb 21 20:22:37 server2.1 [2014-02-21T20:22:36-08:00] INFO: Storing updated cookbooks/aws/providers/elastic_ip.rb in the cache. -Feb 21 20:22:37 server2.1 [2014-02-21T20:22:37-08:00] INFO: Storing updated cookbooks/aws/recipes/default.rb in the cache. -Feb 21 20:22:37 server2.1 [2014-02-21T20:22:37-08:00] INFO: Storing updated cookbooks/aws/libraries/ec2.rb in the cache. -Feb 21 20:22:37 server2.1 [2014-02-21T20:22:37-08:00] INFO: Storing updated cookbooks/aws/attributes/default.rb in the cache. -Feb 21 20:22:37 server2.1 [2014-02-21T20:22:37-08:00] INFO: Storing updated cookbooks/aws/LICENSE in the cache. -Feb 21 20:22:37 server2.1 [2014-02-21T20:22:37-08:00] INFO: Storing updated cookbooks/aws/CHANGELOG.md in the cache. -Feb 21 20:22:37 server2.1 [2014-02-21T20:22:37-08:00] INFO: Storing updated cookbooks/aws/metadata.rb in the cache. -Feb 21 20:22:37 server2.1 [2014-02-21T20:22:37-08:00] INFO: Storing updated cookbooks/aws/README.md in the cache. -Feb 21 20:22:38 server2.1 [2014-02-21T20:22:38-08:00] INFO: Storing updated cookbooks/aws/CONTRIBUTING in the cache. -Feb 21 20:22:38 server2.1 [2014-02-21T20:22:38-08:00] INFO: Storing updated cookbooks/openssl/recipes/default.rb in the cache. -Feb 21 20:22:39 server2.1 [2014-02-21T20:22:39-08:00] INFO: Storing updated cookbooks/openssl/libraries/secure_password.rb in the cache. -Feb 21 20:22:39 server2.1 [2014-02-21T20:22:39-08:00] INFO: Storing updated cookbooks/openssl/LICENSE in the cache. -Feb 21 20:22:39 server2.1 [2014-02-21T20:22:39-08:00] INFO: Storing updated cookbooks/openssl/CHANGELOG.md in the cache. -Feb 21 20:22:40 server2.1 [2014-02-21T20:22:39-08:00] INFO: Storing updated cookbooks/openssl/metadata.rb in the cache. -Feb 21 20:22:40 server2.1 [2014-02-21T20:22:39-08:00] INFO: Storing updated cookbooks/openssl/README.md in the cache. -Feb 21 20:22:40 server2.1 [2014-02-21T20:22:39-08:00] INFO: Storing updated cookbooks/openssl/CONTRIBUTING in the cache. -Feb 21 20:22:40 server2.1 [2014-02-21T20:22:39-08:00] INFO: Storing updated cookbooks/build-essential/recipes/smartos.rb in the cache. -Feb 21 20:22:40 server2.1 [2014-02-21T20:22:40-08:00] INFO: Storing updated cookbooks/build-essential/recipes/fedora.rb in the cache. -Feb 21 20:22:40 server2.1 [2014-02-21T20:22:40-08:00] INFO: Storing updated cookbooks/build-essential/recipes/debian.rb in the cache. -Feb 21 20:22:40 server2.1 [2014-02-21T20:22:40-08:00] INFO: Storing updated cookbooks/build-essential/recipes/rhel.rb in the cache. -Feb 21 20:22:40 server2.1 [2014-02-21T20:22:40-08:00] INFO: Storing updated cookbooks/build-essential/recipes/default.rb in the cache. -Feb 21 20:22:40 server2.1 [2014-02-21T20:22:40-08:00] INFO: Storing updated cookbooks/build-essential/recipes/omnios.rb in the cache. -Feb 21 20:22:40 server2.1 [2014-02-21T20:22:40-08:00] INFO: Storing updated cookbooks/build-essential/recipes/mac_os_x.rb in the cache. -Feb 21 20:22:40 server2.1 [2014-02-21T20:22:40-08:00] INFO: Storing updated cookbooks/build-essential/recipes/suse.rb in the cache. -Feb 21 20:22:40 server2.1 [2014-02-21T20:22:40-08:00] INFO: Storing updated cookbooks/build-essential/recipes/solaris2.rb in the cache. -Feb 21 20:22:40 server2.1 [2014-02-21T20:22:40-08:00] INFO: Storing updated cookbooks/build-essential/attributes/default.rb in the cache. -Feb 21 20:22:40 server2.1 [2014-02-21T20:22:40-08:00] INFO: Storing updated cookbooks/build-essential/LICENSE in the cache. -Feb 21 20:22:41 server2.1 [2014-02-21T20:22:41-08:00] INFO: Storing updated cookbooks/build-essential/CHANGELOG.md in the cache. -Feb 21 20:22:41 server2.1 [2014-02-21T20:22:41-08:00] INFO: Storing updated cookbooks/build-essential/metadata.rb in the cache. -Feb 21 20:22:41 server2.1 [2014-02-21T20:22:41-08:00] INFO: Storing updated cookbooks/build-essential/TESTING.md in the cache. -Feb 21 20:22:41 server2.1 [2014-02-21T20:22:41-08:00] INFO: Storing updated cookbooks/build-essential/Berksfile in the cache. -Feb 21 20:22:41 server2.1 [2014-02-21T20:22:41-08:00] INFO: Storing updated cookbooks/build-essential/README.md in the cache. -Feb 21 20:22:41 server2.1 [2014-02-21T20:22:41-08:00] INFO: Storing updated cookbooks/build-essential/CONTRIBUTING in the cache. -Feb 21 20:22:42 server2.1 [2014-02-21T20:22:41-08:00] INFO: Storing updated cookbooks/build-essential/.kitchen.yml in the cache. -Feb 21 20:22:42 server2.1 [2014-02-21T20:22:42-08:00] INFO: Storing updated cookbooks/apt/resources/repository.rb in the cache. -Feb 21 20:22:42 server2.1 [2014-02-21T20:22:42-08:00] INFO: Storing updated cookbooks/apt/resources/preference.rb in the cache. -Feb 21 20:22:42 server2.1 [2014-02-21T20:22:42-08:00] INFO: Storing updated cookbooks/apt/providers/repository.rb in the cache. -Feb 21 20:22:42 server2.1 [2014-02-21T20:22:42-08:00] INFO: Storing updated cookbooks/apt/providers/preference.rb in the cache. -Feb 21 20:22:42 server2.1 [2014-02-21T20:22:42-08:00] INFO: Storing updated cookbooks/apt/recipes/default.rb in the cache. -Feb 21 20:22:42 server2.1 [2014-02-21T20:22:42-08:00] INFO: Storing updated cookbooks/apt/recipes/cacher-ng.rb in the cache. -Feb 21 20:22:42 server2.1 [2014-02-21T20:22:42-08:00] INFO: Storing updated cookbooks/apt/recipes/cacher-client.rb in the cache. -Feb 21 20:22:43 server2.1 [2014-02-21T20:22:42-08:00] INFO: Storing updated cookbooks/apt/attributes/default.rb in the cache. -Feb 21 20:22:43 server2.1 [2014-02-21T20:22:43-08:00] INFO: Storing updated cookbooks/apt/files/default/apt-proxy-v2.conf in the cache. -Feb 21 20:22:43 server2.1 [2014-02-21T20:22:43-08:00] INFO: Storing updated cookbooks/apt/templates/debian-6.0/acng.conf.erb in the cache. -Feb 21 20:22:43 server2.1 [2014-02-21T20:22:43-08:00] INFO: Storing updated cookbooks/apt/templates/ubuntu-10.04/acng.conf.erb in the cache. -Feb 21 20:22:44 server2.1 [2014-02-21T20:22:43-08:00] INFO: Storing updated cookbooks/apt/templates/default/acng.conf.erb in the cache. -Feb 21 20:22:44 server2.1 [2014-02-21T20:22:43-08:00] INFO: Storing updated cookbooks/apt/templates/default/01proxy.erb in the cache. -Feb 21 20:22:44 server2.1 [2014-02-21T20:22:43-08:00] INFO: Storing updated cookbooks/apt/LICENSE in the cache. -Feb 21 20:22:44 server2.1 [2014-02-21T20:22:44-08:00] INFO: Storing updated cookbooks/apt/CHANGELOG.md in the cache. -Feb 21 20:22:44 server2.1 [2014-02-21T20:22:44-08:00] INFO: Storing updated cookbooks/apt/metadata.rb in the cache. -Feb 21 20:22:44 server2.1 [2014-02-21T20:22:44-08:00] INFO: Storing updated cookbooks/apt/TESTING.md in the cache. -Feb 21 20:22:44 server2.1 [2014-02-21T20:22:44-08:00] INFO: Storing updated cookbooks/apt/Berksfile in the cache. -Feb 21 20:22:44 server2.1 [2014-02-21T20:22:44-08:00] INFO: Storing updated cookbooks/apt/README.md in the cache. -Feb 21 20:22:44 server2.1 [2014-02-21T20:22:44-08:00] INFO: Storing updated cookbooks/apt/CONTRIBUTING in the cache. -Feb 21 20:22:45 server2.1 [2014-02-21T20:22:44-08:00] INFO: Storing updated cookbooks/apt/.kitchen.yml in the cache. -Feb 21 20:22:45 server2.1 [2014-02-21T20:22:45-08:00] INFO: Storing updated cookbooks/postgresql/recipes/yum_pgdg_postgresql.rb in the cache. -Feb 21 20:22:45 server2.1 [2014-02-21T20:22:45-08:00] INFO: Storing updated cookbooks/postgresql/recipes/server.rb in the cache. -Feb 21 20:22:45 server2.1 [2014-02-21T20:22:45-08:00] INFO: Storing updated cookbooks/postgresql/recipes/server_redhat.rb in the cache. -Feb 21 20:22:45 server2.1 [2014-02-21T20:22:45-08:00] INFO: Storing updated cookbooks/postgresql/recipes/config_pgtune.rb in the cache. -Feb 21 20:22:45 server2.1 [2014-02-21T20:22:45-08:00] INFO: Storing updated cookbooks/postgresql/recipes/server_debian.rb in the cache. -Feb 21 20:22:46 server2.1 [2014-02-21T20:22:45-08:00] INFO: Storing updated cookbooks/postgresql/recipes/contrib.rb in the cache. -Feb 21 20:22:46 server2.1 [2014-02-21T20:22:45-08:00] INFO: Storing updated cookbooks/postgresql/recipes/default.rb in the cache. -Feb 21 20:22:46 server2.1 [2014-02-21T20:22:45-08:00] INFO: Storing updated cookbooks/postgresql/recipes/apt_pgdg_postgresql.rb in the cache. -Feb 21 20:22:46 server2.1 [2014-02-21T20:22:46-08:00] INFO: Storing updated cookbooks/postgresql/recipes/config_initdb.rb in the cache. -Feb 21 20:22:46 server2.1 [2014-02-21T20:22:46-08:00] INFO: Storing updated cookbooks/postgresql/recipes/ruby.rb in the cache. -Feb 21 20:22:46 server2.1 [2014-02-21T20:22:46-08:00] INFO: Storing updated cookbooks/postgresql/recipes/client.rb in the cache. -Feb 21 20:22:46 server2.1 [2014-02-21T20:22:46-08:00] INFO: Storing updated cookbooks/postgresql/libraries/default.rb in the cache. -Feb 21 20:22:46 server2.1 [2014-02-21T20:22:46-08:00] INFO: Storing updated cookbooks/postgresql/attributes/default.rb in the cache. -Feb 21 20:22:46 server2.1 [2014-02-21T20:22:46-08:00] INFO: Storing updated cookbooks/postgresql/files/default/tests/minitest/server_test.rb in the cache. -Feb 21 20:22:46 server2.1 [2014-02-21T20:22:46-08:00] INFO: Storing updated cookbooks/postgresql/files/default/tests/minitest/apt_pgdg_postgresql_test.rb in the cache. -Feb 21 20:22:46 server2.1 [2014-02-21T20:22:46-08:00] INFO: Storing updated cookbooks/postgresql/files/default/tests/minitest/default_test.rb in the cache. -Feb 21 20:22:46 server2.1 [2014-02-21T20:22:46-08:00] INFO: Storing updated cookbooks/postgresql/files/default/tests/minitest/ruby_test.rb in the cache. -Feb 21 20:22:46 server2.1 [2014-02-21T20:22:46-08:00] INFO: Storing updated cookbooks/postgresql/files/default/tests/minitest/support/helpers.rb in the cache. -Feb 21 20:22:47 server2.1 [2014-02-21T20:22:46-08:00] INFO: Storing updated cookbooks/postgresql/templates/default/postgresql.conf.erb in the cache. -Feb 21 20:22:47 server2.1 [2014-02-21T20:22:46-08:00] INFO: Storing updated cookbooks/postgresql/templates/default/pgsql.sysconfig.erb in the cache. -Feb 21 20:22:47 server2.1 [2014-02-21T20:22:46-08:00] INFO: Storing updated cookbooks/postgresql/templates/default/pg_hba.conf.erb in the cache. -Feb 21 20:22:47 server2.1 [2014-02-21T20:22:46-08:00] INFO: Storing updated cookbooks/postgresql/LICENSE in the cache. -Feb 21 20:22:47 server2.1 [2014-02-21T20:22:46-08:00] INFO: Storing updated cookbooks/postgresql/CHANGELOG.md in the cache. -Feb 21 20:22:47 server2.1 [2014-02-21T20:22:47-08:00] INFO: Storing updated cookbooks/postgresql/metadata.rb in the cache. -Feb 21 20:22:47 server2.1 [2014-02-21T20:22:47-08:00] INFO: Storing updated cookbooks/postgresql/TESTING.md in the cache. -Feb 21 20:22:47 server2.1 [2014-02-21T20:22:47-08:00] INFO: Storing updated cookbooks/postgresql/CONTRIBUTING.md in the cache. -Feb 21 20:22:47 server2.1 [2014-02-21T20:22:47-08:00] INFO: Storing updated cookbooks/postgresql/Berksfile in the cache. -Feb 21 20:22:47 server2.1 [2014-02-21T20:22:47-08:00] INFO: Storing updated cookbooks/postgresql/README.md in the cache. -Feb 21 20:22:47 server2.1 [2014-02-21T20:22:47-08:00] INFO: Storing updated cookbooks/postgresql/.kitchen.yml in the cache. -Feb 21 20:22:47 server2.1 [2014-02-21T20:22:47-08:00] INFO: Storing updated cookbooks/yum/resources/key.rb in the cache. -Feb 21 20:22:47 server2.1 [2014-02-21T20:22:47-08:00] INFO: Storing updated cookbooks/yum/resources/repository.rb in the cache. -Feb 21 20:22:47 server2.1 [2014-02-21T20:22:47-08:00] INFO: Storing updated cookbooks/yum/providers/key.rb in the cache. -Feb 21 20:22:47 server2.1 [2014-02-21T20:22:47-08:00] INFO: Storing updated cookbooks/yum/providers/repository.rb in the cache. -Feb 21 20:22:47 server2.1 [2014-02-21T20:22:47-08:00] INFO: Storing updated cookbooks/yum/recipes/test.rb in the cache. -Feb 21 20:22:48 server2.1 [2014-02-21T20:22:47-08:00] INFO: Storing updated cookbooks/yum/recipes/epel.rb in the cache. -Feb 21 20:22:48 server2.1 [2014-02-21T20:22:48-08:00] INFO: Storing updated cookbooks/yum/recipes/yum.rb in the cache. -Feb 21 20:22:48 server2.1 [2014-02-21T20:22:48-08:00] INFO: Storing updated cookbooks/yum/recipes/default.rb in the cache. -Feb 21 20:22:48 server2.1 [2014-02-21T20:22:48-08:00] INFO: Storing updated cookbooks/yum/recipes/ius.rb in the cache. -Feb 21 20:22:48 server2.1 [2014-02-21T20:22:48-08:00] INFO: Storing updated cookbooks/yum/recipes/repoforge.rb in the cache. -Feb 21 20:22:48 server2.1 [2014-02-21T20:22:48-08:00] INFO: Storing updated cookbooks/yum/recipes/elrepo.rb in the cache. -Feb 21 20:22:48 server2.1 [2014-02-21T20:22:48-08:00] INFO: Storing updated cookbooks/yum/recipes/remi.rb in the cache. -Feb 21 20:22:48 server2.1 [2014-02-21T20:22:48-08:00] INFO: Storing updated cookbooks/yum/attributes/epel.rb in the cache. -Feb 21 20:22:48 server2.1 [2014-02-21T20:22:48-08:00] INFO: Storing updated cookbooks/yum/attributes/default.rb in the cache. -Feb 21 20:22:48 server2.1 [2014-02-21T20:22:48-08:00] INFO: Storing updated cookbooks/yum/attributes/elrepo.rb in the cache. -Feb 21 20:22:49 server2.1 [2014-02-21T20:22:48-08:00] INFO: Storing updated cookbooks/yum/attributes/remi.rb in the cache. -Feb 21 20:22:49 server2.1 [2014-02-21T20:22:49-08:00] INFO: Storing updated cookbooks/yum/files/default/tests/minitest/test_test.rb in the cache. -Feb 21 20:22:49 server2.1 [2014-02-21T20:22:49-08:00] INFO: Storing updated cookbooks/yum/files/default/tests/minitest/default_test.rb in the cache. -Feb 21 20:22:49 server2.1 [2014-02-21T20:22:49-08:00] INFO: Storing updated cookbooks/yum/files/default/tests/minitest/support/helpers.rb in the cache. -Feb 21 20:22:49 server2.1 [2014-02-21T20:22:49-08:00] INFO: Storing updated cookbooks/yum/files/default/RPM-GPG-KEY-EPEL-6 in the cache. -Feb 21 20:22:49 server2.1 [2014-02-21T20:22:49-08:00] INFO: Storing updated cookbooks/yum/templates/default/repo.erb in the cache. -Feb 21 20:22:49 server2.1 [2014-02-21T20:22:49-08:00] INFO: Storing updated cookbooks/yum/templates/default/yum-rhel6.conf.erb in the cache. -Feb 21 20:22:49 server2.1 [2014-02-21T20:22:49-08:00] INFO: Storing updated cookbooks/yum/templates/default/yum-rhel5.conf.erb in the cache. -Feb 21 20:22:49 server2.1 [2014-02-21T20:22:49-08:00] INFO: Storing updated cookbooks/yum/LICENSE in the cache. -Feb 21 20:22:49 server2.1 [2014-02-21T20:22:49-08:00] INFO: Storing updated cookbooks/yum/CHANGELOG.md in the cache. -Feb 21 20:22:51 server2.1 [2014-02-21T20:22:49-08:00] INFO: Storing updated cookbooks/yum/metadata.rb in the cache. -Feb 21 20:22:51 server2.1 [2014-02-21T20:22:51-08:00] INFO: Storing updated cookbooks/yum/CONTRIBUTING.md in the cache. -Feb 21 20:22:51 server2.1 [2014-02-21T20:22:51-08:00] INFO: Storing updated cookbooks/yum/Berksfile in the cache. -Feb 21 20:22:51 server2.1 [2014-02-21T20:22:51-08:00] INFO: Storing updated cookbooks/yum/README.md in the cache. -Feb 21 20:22:51 server2.1 [2014-02-21T20:22:51-08:00] INFO: Storing updated cookbooks/yum/.kitchen.yml in the cache. -Feb 21 20:22:51 server2.1 [2014-02-21T20:22:51-08:00] INFO: Storing updated cookbooks/openstack-common/recipes/default.rb in the cache. -Feb 21 20:22:51 server2.1 [2014-02-21T20:22:51-08:00] INFO: Storing updated cookbooks/openstack-common/recipes/logging.rb in the cache. -Feb 21 20:22:52 server2.1 [2014-02-21T20:22:52-08:00] INFO: Storing updated cookbooks/openstack-common/recipes/databag.rb in the cache. -Feb 21 20:22:52 server2.1 [2014-02-21T20:22:52-08:00] INFO: Storing updated cookbooks/openstack-common/libraries/parse.rb in the cache. -Feb 21 20:22:52 server2.1 [2014-02-21T20:22:52-08:00] INFO: Storing updated cookbooks/openstack-common/libraries/endpoints.rb in the cache. -Feb 21 20:22:52 server2.1 [2014-02-21T20:22:52-08:00] INFO: Storing updated cookbooks/openstack-common/libraries/search.rb in the cache. -Feb 21 20:22:52 server2.1 [2014-02-21T20:22:52-08:00] INFO: Storing updated cookbooks/openstack-common/libraries/database.rb in the cache. -Feb 21 20:22:52 server2.1 [2014-02-21T20:22:52-08:00] INFO: Storing updated cookbooks/openstack-common/libraries/network.rb in the cache. -Feb 21 20:22:52 server2.1 [2014-02-21T20:22:52-08:00] INFO: Storing updated cookbooks/openstack-common/libraries/passwords.rb in the cache. -Feb 21 20:22:52 server2.1 [2014-02-21T20:22:52-08:00] INFO: Storing updated cookbooks/openstack-common/libraries/uri.rb in the cache. -Feb 21 20:22:52 server2.1 [2014-02-21T20:22:52-08:00] INFO: Storing updated cookbooks/openstack-common/attributes/default.rb in the cache. -Feb 21 20:22:52 server2.1 [2014-02-21T20:22:52-08:00] INFO: Storing updated cookbooks/openstack-common/templates/default/logging.conf.erb in the cache. -Feb 21 20:22:52 server2.1 [2014-02-21T20:22:52-08:00] INFO: Storing updated cookbooks/openstack-common/LICENSE in the cache. -Feb 21 20:22:52 server2.1 [2014-02-21T20:22:52-08:00] INFO: Storing updated cookbooks/openstack-common/Strainerfile in the cache. -Feb 21 20:22:52 server2.1 [2014-02-21T20:22:52-08:00] INFO: Storing updated cookbooks/openstack-common/.tailor in the cache. -Feb 21 20:22:52 server2.1 [2014-02-21T20:22:52-08:00] INFO: Storing updated cookbooks/openstack-common/CHANGELOG.md in the cache. -Feb 21 20:22:53 server2.1 [2014-02-21T20:22:52-08:00] INFO: Storing updated cookbooks/openstack-common/metadata.rb in the cache. -Feb 21 20:22:53 server2.1 [2014-02-21T20:22:52-08:00] INFO: Storing updated cookbooks/openstack-common/Berksfile in the cache. -Feb 21 20:22:53 server2.1 [2014-02-21T20:22:52-08:00] INFO: Storing updated cookbooks/openstack-common/README.md in the cache. -Feb 21 20:22:53 server2.1 [2014-02-21T20:22:52-08:00] INFO: Storing updated cookbooks/openstack-common/Gemfile.lock in the cache. -Feb 21 20:22:53 server2.1 [2014-02-21T20:22:52-08:00] INFO: Storing updated cookbooks/openstack-common/Gemfile in the cache. -Feb 21 20:23:05 server2.1 [2014-02-21T20:23:04-08:00] INFO: Processing package[autoconf] action install (build-essential::rhel line 38) -Feb 21 20:23:47 server2.1 [2014-02-21T20:23:46-08:00] INFO: package[autoconf] installing autoconf-2.63-5.1.el6 from base repository -Feb 21 20:25:48 server2.1 [2014-02-21T20:25:48-08:00] INFO: Processing package[bison] action install (build-essential::rhel line 38) -Feb 21 20:25:49 server2.1 [2014-02-21T20:25:49-08:00] INFO: package[bison] installing bison-2.4.1-5.el6 from base repository -Feb 21 20:26:04 server2.1 [2014-02-21T20:26:03-08:00] INFO: Processing package[flex] action install (build-essential::rhel line 38) -Feb 21 20:26:04 server2.1 [2014-02-21T20:26:03-08:00] INFO: package[flex] installing flex-2.5.35-8.el6 from base repository -Feb 21 20:26:11 server2.1 [2014-02-21T20:26:10-08:00] INFO: Processing package[gcc] action install (build-essential::rhel line 38) -Feb 21 20:26:14 server2.1 [2014-02-21T20:26:13-08:00] INFO: package[gcc] installing gcc-4.4.7-4.el6 from base repository -Feb 21 20:28:09 server2.1 [2014-02-21T20:28:09-08:00] INFO: Processing package[gcc-c++] action install (build-essential::rhel line 38) -Feb 21 20:28:11 server2.1 [2014-02-21T20:28:11-08:00] INFO: package[gcc-c++] installing gcc-c++-4.4.7-4.el6 from base repository -Feb 21 20:28:35 server2.1 [2014-02-21T20:28:35-08:00] INFO: Processing package[kernel-devel] action install (build-essential::rhel line 38) -Feb 21 20:28:38 server2.1 [2014-02-21T20:28:38-08:00] INFO: package[kernel-devel] installing kernel-devel-2.6.32-431.5.1.el6 from updates repository -Feb 21 20:29:49 server2.1 [2014-02-21T20:29:49-08:00] INFO: Processing package[make] action install (build-essential::rhel line 38) -Feb 21 20:29:49 server2.1 [2014-02-21T20:29:49-08:00] INFO: Processing package[m4] action install (build-essential::rhel line 38) -Feb 21 20:29:49 server2.1 [2014-02-21T20:29:49-08:00] INFO: Processing package[mysql] action install (mysql::client line 46) -Feb 21 20:29:49 server2.1 [2014-02-21T20:29:49-08:00] INFO: package[mysql] installing mysql-5.1.73-3.el6_5 from updates repository -Feb 21 20:30:18 server2.1 [2014-02-21T20:30:18-08:00] INFO: Processing package[mysql-devel] action install (mysql::client line 46) -Feb 21 20:30:19 server2.1 [2014-02-21T20:30:19-08:00] INFO: package[mysql-devel] installing mysql-devel-5.1.73-3.el6_5 from updates repository -Feb 21 20:31:06 server2.1 [2014-02-21T20:31:05-08:00] INFO: Processing chef_gem[mysql] action install (mysql::ruby line 31) -Feb 21 20:31:26 server2.1 [2014-02-21T20:31:25-08:00] WARN: Cloning resource attributes for directory[/var/lib/mysql] from prior resource (CHEF-3694) -Feb 21 20:31:26 server2.1 [2014-02-21T20:31:25-08:00] WARN: Previous directory[/var/lib/mysql]: /var/chef/cache/cookbooks/mysql/recipes/server.rb:115:in `block in from_file' -Feb 21 20:31:26 server2.1 [2014-02-21T20:31:25-08:00] WARN: Current directory[/var/lib/mysql]: /var/chef/cache/cookbooks/mysql/recipes/server.rb:115:in `block in from_file' -Feb 21 20:31:26 server2.1 [2014-02-21T20:31:25-08:00] INFO: Could not find previously defined grants.sql resource -Feb 21 20:31:26 server2.1 [2014-02-21T20:31:25-08:00] WARN: Cloning resource attributes for service[mysql] from prior resource (CHEF-3694) -Feb 21 20:31:26 server2.1 [2014-02-21T20:31:25-08:00] WARN: Previous service[mysql]: /var/chef/cache/cookbooks/mysql/recipes/server.rb:161:in `from_file' -Feb 21 20:31:26 server2.1 [2014-02-21T20:31:25-08:00] WARN: Current service[mysql]: /var/chef/cache/cookbooks/mysql/recipes/server.rb:225:in `from_file' -Feb 21 20:31:26 server2.1 [2014-02-21T20:31:25-08:00] WARN: Cloning resource attributes for database_user[service] from prior resource (CHEF-3694) -Feb 21 20:31:26 server2.1 [2014-02-21T20:31:25-08:00] WARN: Previous database_user[service]: /var/chef/cache/cookbooks/openstack-common/libraries/database.rb:82:in `db_create_with_user' -Feb 21 20:31:26 server2.1 [2014-02-21T20:31:25-08:00] WARN: Current database_user[service]: /var/chef/cache/cookbooks/openstack-common/libraries/database.rb:90:in `db_create_with_user' -Feb 21 20:31:26 server2.1 [2014-02-21T20:31:25-08:00] WARN: Cloning resource attributes for database_user[horizon] from prior resource (CHEF-3694) -Feb 21 20:31:26 server2.1 [2014-02-21T20:31:25-08:00] WARN: Previous database_user[horizon]: /var/chef/cache/cookbooks/openstack-common/libraries/database.rb:82:in `db_create_with_user' -Feb 21 20:31:26 server2.1 [2014-02-21T20:31:25-08:00] WARN: Current database_user[horizon]: /var/chef/cache/cookbooks/openstack-common/libraries/database.rb:90:in `db_create_with_user' -Feb 21 20:31:26 server2.1 [2014-02-21T20:31:25-08:00] WARN: Cloning resource attributes for database_user[service] from prior resource (CHEF-3694) -Feb 21 20:31:26 server2.1 [2014-02-21T20:31:25-08:00] WARN: Previous database_user[service]: /var/chef/cache/cookbooks/openstack-common/libraries/database.rb:90:in `db_create_with_user' -Feb 21 20:31:26 server2.1 [2014-02-21T20:31:25-08:00] WARN: Current database_user[service]: /var/chef/cache/cookbooks/openstack-common/libraries/database.rb:82:in `db_create_with_user' -Feb 21 20:31:26 server2.1 [2014-02-21T20:31:25-08:00] WARN: Cloning resource attributes for database_user[service] from prior resource (CHEF-3694) -Feb 21 20:31:26 server2.1 [2014-02-21T20:31:25-08:00] WARN: Previous database_user[service]: /var/chef/cache/cookbooks/openstack-common/libraries/database.rb:82:in `db_create_with_user' -Feb 21 20:31:26 server2.1 [2014-02-21T20:31:25-08:00] WARN: Current database_user[service]: /var/chef/cache/cookbooks/openstack-common/libraries/database.rb:90:in `db_create_with_user' -Feb 21 20:31:26 server2.1 [2014-02-21T20:31:25-08:00] WARN: Cloning resource attributes for database_user[service] from prior resource (CHEF-3694) -Feb 21 20:31:26 server2.1 [2014-02-21T20:31:25-08:00] WARN: Previous database_user[service]: /var/chef/cache/cookbooks/openstack-common/libraries/database.rb:90:in `db_create_with_user' -Feb 21 20:31:26 server2.1 [2014-02-21T20:31:25-08:00] WARN: Current database_user[service]: /var/chef/cache/cookbooks/openstack-common/libraries/database.rb:82:in `db_create_with_user' -Feb 21 20:31:26 server2.1 [2014-02-21T20:31:25-08:00] WARN: Cloning resource attributes for database_user[service] from prior resource (CHEF-3694) -Feb 21 20:31:26 server2.1 [2014-02-21T20:31:25-08:00] WARN: Previous database_user[service]: /var/chef/cache/cookbooks/openstack-common/libraries/database.rb:82:in `db_create_with_user' -Feb 21 20:31:26 server2.1 [2014-02-21T20:31:25-08:00] WARN: Current database_user[service]: /var/chef/cache/cookbooks/openstack-common/libraries/database.rb:90:in `db_create_with_user' -Feb 21 20:31:26 server2.1 [2014-02-21T20:31:25-08:00] WARN: Cloning resource attributes for database_user[ceilometer] from prior resource (CHEF-3694) -Feb 21 20:31:26 server2.1 [2014-02-21T20:31:25-08:00] WARN: Previous database_user[ceilometer]: /var/chef/cache/cookbooks/openstack-common/libraries/database.rb:82:in `db_create_with_user' -Feb 21 20:31:26 server2.1 [2014-02-21T20:31:25-08:00] WARN: Current database_user[ceilometer]: /var/chef/cache/cookbooks/openstack-common/libraries/database.rb:90:in `db_create_with_user' -Feb 21 20:31:26 server2.1 [2014-02-21T20:31:25-08:00] WARN: Cloning resource attributes for database_user[service] from prior resource (CHEF-3694) -Feb 21 20:31:26 server2.1 [2014-02-21T20:31:25-08:00] WARN: Previous database_user[service]: /var/chef/cache/cookbooks/openstack-common/libraries/database.rb:90:in `db_create_with_user' -Feb 21 20:31:26 server2.1 [2014-02-21T20:31:25-08:00] WARN: Current database_user[service]: /var/chef/cache/cookbooks/openstack-common/libraries/database.rb:82:in `db_create_with_user' -Feb 21 20:31:26 server2.1 [2014-02-21T20:31:25-08:00] WARN: Cloning resource attributes for database_user[service] from prior resource (CHEF-3694) -Feb 21 20:31:26 server2.1 [2014-02-21T20:31:25-08:00] WARN: Previous database_user[service]: /var/chef/cache/cookbooks/openstack-common/libraries/database.rb:82:in `db_create_with_user' -Feb 21 20:31:26 server2.1 [2014-02-21T20:31:25-08:00] WARN: Current database_user[service]: /var/chef/cache/cookbooks/openstack-common/libraries/database.rb:90:in `db_create_with_user' -Feb 21 20:31:26 server2.1 [2014-02-21T20:31:25-08:00] WARN: Cloning resource attributes for database_user[service] from prior resource (CHEF-3694) -Feb 21 20:31:26 server2.1 [2014-02-21T20:31:25-08:00] WARN: Previous database_user[service]: /var/chef/cache/cookbooks/openstack-common/libraries/database.rb:90:in `db_create_with_user' -Feb 21 20:31:26 server2.1 [2014-02-21T20:31:25-08:00] WARN: Current database_user[service]: /var/chef/cache/cookbooks/openstack-common/libraries/database.rb:82:in `db_create_with_user' -Feb 21 20:31:26 server2.1 [2014-02-21T20:31:25-08:00] WARN: Cloning resource attributes for database_user[service] from prior resource (CHEF-3694) -Feb 21 20:31:26 server2.1 [2014-02-21T20:31:25-08:00] WARN: Previous database_user[service]: /var/chef/cache/cookbooks/openstack-common/libraries/database.rb:82:in `db_create_with_user' -Feb 21 20:31:26 server2.1 [2014-02-21T20:31:25-08:00] WARN: Current database_user[service]: /var/chef/cache/cookbooks/openstack-common/libraries/database.rb:90:in `db_create_with_user' -Feb 21 20:31:26 server2.1 [2014-02-21T20:31:25-08:00] INFO: Processing yum_key[RPM-GPG-KEY-EPEL-6] action add (yum::epel line 22) -Feb 21 20:31:26 server2.1 [2014-02-21T20:31:25-08:00] INFO: Adding RPM-GPG-KEY-EPEL-6 GPG key to /etc/pki/rpm-gpg/ -Feb 21 20:31:26 server2.1 [2014-02-21T20:31:25-08:00] INFO: Processing package[gnupg2] action install (/var/chef/cache/cookbooks/yum/providers/key.rb line 32) -Feb 21 20:31:26 server2.1 [2014-02-21T20:31:26-08:00] INFO: Processing execute[import-rpm-gpg-key-RPM-GPG-KEY-EPEL-6] action nothing (/var/chef/cache/cookbooks/yum/providers/key.rb line 35) -Feb 21 20:31:26 server2.1 [2014-02-21T20:31:26-08:00] INFO: Processing cookbook_file[/etc/pki/rpm-gpg/RPM-GPG-KEY-EPEL-6] action create (/var/chef/cache/cookbooks/yum/providers/key.rb line 66) -Feb 21 20:31:26 server2.1 [2014-02-21T20:31:26-08:00] INFO: cookbook_file[/etc/pki/rpm-gpg/RPM-GPG-KEY-EPEL-6] created file /etc/pki/rpm-gpg/RPM-GPG-KEY-EPEL-6 -Feb 21 20:31:26 server2.1 [2014-02-21T20:31:26-08:00] INFO: cookbook_file[/etc/pki/rpm-gpg/RPM-GPG-KEY-EPEL-6] updated file contents /etc/pki/rpm-gpg/RPM-GPG-KEY-EPEL-6 -Feb 21 20:31:26 server2.1 [2014-02-21T20:31:26-08:00] INFO: cookbook_file[/etc/pki/rpm-gpg/RPM-GPG-KEY-EPEL-6] mode changed to 644 -Feb 21 20:31:27 server2.1 [2014-02-21T20:31:26-08:00] INFO: Processing yum_repository[epel] action add (yum::epel line 27) -Feb 21 20:31:27 server2.1 [2014-02-21T20:31:26-08:00] INFO: Adding epel repository to /etc/yum.repos.d/epel.repo -Feb 21 20:31:27 server2.1 [2014-02-21T20:31:26-08:00] WARN: Cloning resource attributes for yum_key[RPM-GPG-KEY-EPEL-6] from prior resource (CHEF-3694) -Feb 21 20:31:27 server2.1 [2014-02-21T20:31:26-08:00] WARN: Previous yum_key[RPM-GPG-KEY-EPEL-6]: /var/chef/cache/cookbooks/yum/recipes/epel.rb:22:in `from_file' -Feb 21 20:31:27 server2.1 [2014-02-21T20:31:26-08:00] WARN: Current yum_key[RPM-GPG-KEY-EPEL-6]: /var/chef/cache/cookbooks/yum/providers/repository.rb:85:in `repo_config' -Feb 21 20:31:27 server2.1 [2014-02-21T20:31:26-08:00] INFO: Processing yum_key[RPM-GPG-KEY-EPEL-6] action add (/var/chef/cache/cookbooks/yum/providers/repository.rb line 85) -Feb 21 20:31:27 server2.1 [2014-02-21T20:31:26-08:00] INFO: Processing execute[yum-makecache] action nothing (/var/chef/cache/cookbooks/yum/providers/repository.rb line 88) -Feb 21 20:31:27 server2.1 [2014-02-21T20:31:26-08:00] INFO: Processing ruby_block[reload-internal-yum-cache] action nothing (/var/chef/cache/cookbooks/yum/providers/repository.rb line 93) -Feb 21 20:31:27 server2.1 [2014-02-21T20:31:26-08:00] INFO: Processing template[/etc/yum.repos.d/epel.repo] action create (/var/chef/cache/cookbooks/yum/providers/repository.rb line 100) -Feb 21 20:31:27 server2.1 [2014-02-21T20:31:26-08:00] INFO: template[/etc/yum.repos.d/epel.repo] created file /etc/yum.repos.d/epel.repo -Feb 21 20:31:27 server2.1 [2014-02-21T20:31:26-08:00] INFO: template[/etc/yum.repos.d/epel.repo] updated file contents /etc/yum.repos.d/epel.repo -Feb 21 20:31:27 server2.1 [2014-02-21T20:31:26-08:00] INFO: template[/etc/yum.repos.d/epel.repo] mode changed to 644 -Feb 21 20:31:27 server2.1 [2014-02-21T20:31:26-08:00] INFO: template[/etc/yum.repos.d/epel.repo] sending run action to execute[yum-makecache] (immediate) -Feb 21 20:31:27 server2.1 [2014-02-21T20:31:26-08:00] INFO: Processing execute[yum-makecache] action run (/var/chef/cache/cookbooks/yum/providers/repository.rb line 88) -Feb 21 20:32:35 server2.1 [2014-02-21T20:32:35-08:00] INFO: execute[yum-makecache] ran successfully -Feb 21 20:32:35 server2.1 [2014-02-21T20:32:35-08:00] INFO: template[/etc/yum.repos.d/epel.repo] sending create action to ruby_block[reload-internal-yum-cache] (immediate) -Feb 21 20:32:35 server2.1 [2014-02-21T20:32:35-08:00] INFO: Processing ruby_block[reload-internal-yum-cache] action create (/var/chef/cache/cookbooks/yum/providers/repository.rb line 93) -Feb 21 20:32:35 server2.1 [2014-02-21T20:32:35-08:00] INFO: ruby_block[reload-internal-yum-cache] called -Feb 21 20:32:35 server2.1 [2014-02-21T20:32:35-08:00] INFO: Processing yum_repository[openstack] action create (openstack-common::default line 103) -Feb 21 20:32:35 server2.1 [2014-02-21T20:32:35-08:00] INFO: Adding and updating openstack repository in /etc/yum.repos.d/openstack.repo -Feb 21 20:32:35 server2.1 [2014-02-21T20:32:35-08:00] WARN: Cloning resource attributes for execute[yum-makecache] from prior resource (CHEF-3694) -Feb 21 20:32:35 server2.1 [2014-02-21T20:32:35-08:00] WARN: Previous execute[yum-makecache]: /var/chef/cache/cookbooks/yum/providers/repository.rb:88:in `repo_config' -Feb 21 20:32:35 server2.1 [2014-02-21T20:32:35-08:00] WARN: Current execute[yum-makecache]: /var/chef/cache/cookbooks/yum/providers/repository.rb:88:in `repo_config' -Feb 21 20:32:35 server2.1 [2014-02-21T20:32:35-08:00] WARN: Cloning resource attributes for ruby_block[reload-internal-yum-cache] from prior resource (CHEF-3694) -Feb 21 20:32:35 server2.1 [2014-02-21T20:32:35-08:00] WARN: Previous ruby_block[reload-internal-yum-cache]: /var/chef/cache/cookbooks/yum/providers/repository.rb:93:in `repo_config' -Feb 21 20:32:35 server2.1 [2014-02-21T20:32:35-08:00] WARN: Current ruby_block[reload-internal-yum-cache]: /var/chef/cache/cookbooks/yum/providers/repository.rb:93:in `repo_config' -Feb 21 20:32:35 server2.1 [2014-02-21T20:32:35-08:00] INFO: Processing execute[yum-makecache] action nothing (/var/chef/cache/cookbooks/yum/providers/repository.rb line 88) -Feb 21 20:32:35 server2.1 [2014-02-21T20:32:35-08:00] INFO: Processing ruby_block[reload-internal-yum-cache] action nothing (/var/chef/cache/cookbooks/yum/providers/repository.rb line 93) -Feb 21 20:32:35 server2.1 [2014-02-21T20:32:35-08:00] INFO: Processing template[/etc/yum.repos.d/openstack.repo] action create (/var/chef/cache/cookbooks/yum/providers/repository.rb line 100) -Feb 21 20:32:35 server2.1 [2014-02-21T20:32:35-08:00] INFO: template[/etc/yum.repos.d/openstack.repo] created file /etc/yum.repos.d/openstack.repo -Feb 21 20:32:35 server2.1 [2014-02-21T20:32:35-08:00] INFO: template[/etc/yum.repos.d/openstack.repo] updated file contents /etc/yum.repos.d/openstack.repo -Feb 21 20:32:35 server2.1 [2014-02-21T20:32:35-08:00] INFO: template[/etc/yum.repos.d/openstack.repo] mode changed to 644 -Feb 21 20:32:35 server2.1 [2014-02-21T20:32:35-08:00] INFO: template[/etc/yum.repos.d/openstack.repo] sending run action to execute[yum-makecache] (immediate) -Feb 21 20:32:35 server2.1 [2014-02-21T20:32:35-08:00] INFO: Processing execute[yum-makecache] action run (/var/chef/cache/cookbooks/yum/providers/repository.rb line 88) -Feb 21 20:32:51 server2.1 [2014-02-21T20:32:51-08:00] INFO: execute[yum-makecache] ran successfully -Feb 21 20:32:51 server2.1 [2014-02-21T20:32:51-08:00] INFO: template[/etc/yum.repos.d/openstack.repo] sending create action to ruby_block[reload-internal-yum-cache] (immediate) -Feb 21 20:32:51 server2.1 [2014-02-21T20:32:51-08:00] INFO: Processing ruby_block[reload-internal-yum-cache] action create (/var/chef/cache/cookbooks/yum/providers/repository.rb line 93) -Feb 21 20:32:51 server2.1 [2014-02-21T20:32:51-08:00] INFO: ruby_block[reload-internal-yum-cache] called -Feb 21 20:32:51 server2.1 [2014-02-21T20:32:51-08:00] INFO: Processing execute[yum-update] action run (openstack-common::default line 110) -Feb 21 20:37:21 server2.1 [2014-02-21T20:37:20-08:00] INFO: execute[yum-update] ran successfully -Feb 21 20:37:21 server2.1 [2014-02-21T20:37:20-08:00] INFO: Processing directory[/etc/openstack] action create (openstack-common::logging line 20) -Feb 21 20:37:21 server2.1 [2014-02-21T20:37:20-08:00] INFO: directory[/etc/openstack] created directory /etc/openstack -Feb 21 20:37:21 server2.1 [2014-02-21T20:37:20-08:00] INFO: directory[/etc/openstack] owner changed to 0 -Feb 21 20:37:21 server2.1 [2014-02-21T20:37:20-08:00] INFO: directory[/etc/openstack] group changed to 0 -Feb 21 20:37:21 server2.1 [2014-02-21T20:37:20-08:00] INFO: directory[/etc/openstack] mode changed to 755 -Feb 21 20:37:21 server2.1 [2014-02-21T20:37:20-08:00] INFO: Processing template[/etc/openstack/logging.conf] action create (openstack-common::logging line 27) -Feb 21 20:37:21 server2.1 [2014-02-21T20:37:20-08:00] INFO: template[/etc/openstack/logging.conf] created file /etc/openstack/logging.conf -Feb 21 20:37:21 server2.1 [2014-02-21T20:37:20-08:00] INFO: template[/etc/openstack/logging.conf] updated file contents /etc/openstack/logging.conf -Feb 21 20:37:21 server2.1 [2014-02-21T20:37:20-08:00] INFO: template[/etc/openstack/logging.conf] owner changed to 0 -Feb 21 20:37:21 server2.1 [2014-02-21T20:37:20-08:00] INFO: template[/etc/openstack/logging.conf] group changed to 0 -Feb 21 20:37:21 server2.1 [2014-02-21T20:37:20-08:00] INFO: template[/etc/openstack/logging.conf] mode changed to 644 -Feb 21 20:37:21 server2.1 [2014-02-21T20:37:20-08:00] INFO: Processing package[autoconf] action nothing (build-essential::rhel line 38) -Feb 21 20:37:21 server2.1 [2014-02-21T20:37:20-08:00] INFO: Processing package[bison] action nothing (build-essential::rhel line 38) -Feb 21 20:37:21 server2.1 [2014-02-21T20:37:20-08:00] INFO: Processing package[flex] action nothing (build-essential::rhel line 38) -Feb 21 20:37:21 server2.1 [2014-02-21T20:37:20-08:00] INFO: Processing package[gcc] action nothing (build-essential::rhel line 38) -Feb 21 20:37:21 server2.1 [2014-02-21T20:37:20-08:00] INFO: Processing package[gcc-c++] action nothing (build-essential::rhel line 38) -Feb 21 20:37:21 server2.1 [2014-02-21T20:37:20-08:00] INFO: Processing package[kernel-devel] action nothing (build-essential::rhel line 38) -Feb 21 20:37:21 server2.1 [2014-02-21T20:37:20-08:00] INFO: Processing package[make] action nothing (build-essential::rhel line 38) -Feb 21 20:37:21 server2.1 [2014-02-21T20:37:20-08:00] INFO: Processing package[m4] action nothing (build-essential::rhel line 38) -Feb 21 20:37:21 server2.1 [2014-02-21T20:37:20-08:00] INFO: Processing package[mysql] action install (mysql::client line 46) -Feb 21 20:37:26 server2.1 [2014-02-21T20:37:25-08:00] INFO: Processing package[mysql-devel] action install (mysql::client line 46) -Feb 21 20:37:26 server2.1 [2014-02-21T20:37:25-08:00] INFO: Processing chef_gem[mysql] action install (mysql::ruby line 31) -Feb 21 20:37:26 server2.1 [2014-02-21T20:37:26-08:00] INFO: Processing package[mysql-server] action install (mysql::server line 101) -Feb 21 20:37:26 server2.1 [2014-02-21T20:37:26-08:00] INFO: package[mysql-server] installing mysql-server-5.1.73-3.el6_5 from updates repository -Feb 21 20:37:46 server2.1 [2014-02-21T20:37:45-08:00] INFO: package[mysql-server] sending start action to service[mysql] (immediate) -Feb 21 20:37:46 server2.1 [2014-02-21T20:37:45-08:00] INFO: Processing service[mysql] action start (mysql::server line 225) -Feb 21 20:38:00 server2.1 [2014-02-21T20:38:00-08:00] INFO: service[mysql] started -Feb 21 20:38:00 server2.1 [2014-02-21T20:38:00-08:00] INFO: Processing directory[/var/run/mysqld] action create (mysql::server line 115) -Feb 21 20:38:00 server2.1 [2014-02-21T20:38:00-08:00] INFO: Processing directory[/var/log/mysql] action create (mysql::server line 115) -Feb 21 20:38:00 server2.1 [2014-02-21T20:38:00-08:00] INFO: directory[/var/log/mysql] created directory /var/log/mysql -Feb 21 20:38:00 server2.1 [2014-02-21T20:38:00-08:00] INFO: directory[/var/log/mysql] owner changed to 27 -Feb 21 20:38:00 server2.1 [2014-02-21T20:38:00-08:00] INFO: directory[/var/log/mysql] group changed to 27 -Feb 21 20:38:00 server2.1 [2014-02-21T20:38:00-08:00] INFO: Processing directory[/etc] action create (mysql::server line 115) -Feb 21 20:38:00 server2.1 [2014-02-21T20:38:00-08:00] INFO: directory[/etc] owner changed to 27 -Feb 21 20:38:00 server2.1 [2014-02-21T20:38:00-08:00] INFO: directory[/etc] group changed to 27 -Feb 21 20:38:00 server2.1 [2014-02-21T20:38:00-08:00] INFO: Processing directory[/etc/mysql/conf.d] action create (mysql::server line 115) -Feb 21 20:38:00 server2.1 [2014-02-21T20:38:00-08:00] INFO: directory[/etc/mysql/conf.d] created directory /etc/mysql/conf.d -Feb 21 20:38:00 server2.1 [2014-02-21T20:38:00-08:00] INFO: directory[/etc/mysql/conf.d] owner changed to 27 -Feb 21 20:38:00 server2.1 [2014-02-21T20:38:00-08:00] INFO: directory[/etc/mysql/conf.d] group changed to 27 -Feb 21 20:38:00 server2.1 [2014-02-21T20:38:00-08:00] INFO: Processing directory[/var/lib/mysql] action create (mysql::server line 115) -Feb 21 20:38:00 server2.1 [2014-02-21T20:38:00-08:00] INFO: Processing directory[/var/lib/mysql] action create (mysql::server line 115) -Feb 21 20:38:00 server2.1 [2014-02-21T20:38:00-08:00] INFO: Processing execute[mysql-install-db] action run (mysql::server line 155) -Feb 21 20:38:00 server2.1 [2014-02-21T20:38:00-08:00] INFO: Processing service[mysql] action enable (mysql::server line 161) -Feb 21 20:38:00 server2.1 [2014-02-21T20:38:00-08:00] INFO: service[mysql] enabled -Feb 21 20:38:00 server2.1 [2014-02-21T20:38:00-08:00] INFO: Processing execute[assign-root-password] action run (mysql::server line 173) -Feb 21 20:38:00 server2.1 [2014-02-21T20:38:00-08:00] INFO: execute[assign-root-password] ran successfully -Feb 21 20:38:00 server2.1 [2014-02-21T20:38:00-08:00] INFO: Processing template[/etc/mysql_grants.sql] action create (mysql::server line 186) -Feb 21 20:38:00 server2.1 [2014-02-21T20:38:00-08:00] INFO: template[/etc/mysql_grants.sql] created file /etc/mysql_grants.sql -Feb 21 20:38:00 server2.1 [2014-02-21T20:38:00-08:00] INFO: template[/etc/mysql_grants.sql] updated file contents /etc/mysql_grants.sql -Feb 21 20:38:00 server2.1 [2014-02-21T20:38:00-08:00] INFO: template[/etc/mysql_grants.sql] owner changed to 0 -Feb 21 20:38:00 server2.1 [2014-02-21T20:38:00-08:00] INFO: template[/etc/mysql_grants.sql] group changed to 0 -Feb 21 20:38:00 server2.1 [2014-02-21T20:38:00-08:00] INFO: template[/etc/mysql_grants.sql] mode changed to 600 -Feb 21 20:38:00 server2.1 [2014-02-21T20:38:00-08:00] INFO: template[/etc/mysql_grants.sql] sending run action to execute[mysql-install-privileges] (immediate) -Feb 21 20:38:00 server2.1 [2014-02-21T20:38:00-08:00] INFO: Processing execute[mysql-install-privileges] action run (mysql::server line 202) -Feb 21 20:38:01 server2.1 [2014-02-21T20:38:00-08:00] INFO: execute[mysql-install-privileges] ran successfully -Feb 21 20:38:01 server2.1 [2014-02-21T20:38:00-08:00] INFO: Processing execute[mysql-install-privileges] action nothing (mysql::server line 202) -Feb 21 20:38:01 server2.1 [2014-02-21T20:38:00-08:00] INFO: Processing template[/etc/my.cnf] action create (mysql::server line 209) -Feb 21 20:38:01 server2.1 [2014-02-21T20:38:00-08:00] INFO: template[/etc/my.cnf] backed up to /var/chef/backup/etc/my.cnf.chef-20140221203800.767413 -Feb 21 20:38:01 server2.1 [2014-02-21T20:38:00-08:00] INFO: template[/etc/my.cnf] updated file contents /etc/my.cnf -Feb 21 20:38:01 server2.1 [2014-02-21T20:38:00-08:00] INFO: template[/etc/my.cnf] sending restart action to service[mysql] (immediate) -Feb 21 20:38:01 server2.1 [2014-02-21T20:38:00-08:00] INFO: Processing service[mysql] action restart (mysql::server line 225) -Feb 21 20:38:06 server2.1 [2014-02-21T20:38:06-08:00] INFO: service[mysql] restarted -Feb 21 20:38:06 server2.1 [2014-02-21T20:38:06-08:00] INFO: Processing service[mysql] action start (mysql::server line 225) -Feb 21 20:38:06 server2.1 [2014-02-21T20:38:06-08:00] INFO: Processing mysql_database_user[drop empty localhost user] action drop (openstack-ops-database::mysql-server line 42) -Feb 21 20:38:06 server2.1 [2014-02-21T20:38:06-08:00] INFO: Processing mysql_database_user[drop empty hostname user] action drop (openstack-ops-database::mysql-server line 50) -Feb 21 20:38:06 server2.1 [2014-02-21T20:38:06-08:00] INFO: Processing mysql_database[test] action drop (openstack-ops-database::mysql-server line 58) -Feb 21 20:38:06 server2.1 [2014-02-21T20:38:06-08:00] INFO: Processing mysql_database[FLUSH privileges] action nothing (openstack-ops-database::mysql-server line 64) -Feb 21 20:38:06 server2.1 [2014-02-21T20:38:06-08:00] INFO: Processing database[create nova database] action create (openstack-ops-database::openstack-db line 74) -Feb 21 20:38:06 server2.1 [2014-02-21T20:38:06-08:00] INFO: Processing database_user[service] action create (openstack-ops-database::openstack-db line 82) -Feb 21 20:38:06 server2.1 [2014-02-21T20:38:06-08:00] INFO: Processing database_user[service] action grant (openstack-ops-database::openstack-db line 90) -Feb 21 20:38:06 server2.1 [2014-02-21T20:38:06-08:00] INFO: database_user[service]: granting access with statement [GRANT all ON `nova`.* TO `service`@`%` IDENTIFIED BY [FILTERED]] -Feb 21 20:38:06 server2.1 [2014-02-21T20:38:06-08:00] INFO: Processing database[create horizon database] action create (openstack-ops-database::openstack-db line 74) -Feb 21 20:38:06 server2.1 [2014-02-21T20:38:06-08:00] INFO: Processing database_user[horizon] action create (openstack-ops-database::openstack-db line 82) -Feb 21 20:38:06 server2.1 [2014-02-21T20:38:06-08:00] INFO: Processing database_user[horizon] action grant (openstack-ops-database::openstack-db line 90) -Feb 21 20:38:06 server2.1 [2014-02-21T20:38:06-08:00] INFO: database_user[horizon]: granting access with statement [GRANT all ON `horizon`.* TO `horizon`@`%` IDENTIFIED BY [FILTERED]] -Feb 21 20:38:06 server2.1 [2014-02-21T20:38:06-08:00] INFO: Processing database[create keystone database] action create (openstack-ops-database::openstack-db line 74) -Feb 21 20:38:06 server2.1 [2014-02-21T20:38:06-08:00] INFO: Processing database_user[service] action create (openstack-ops-database::openstack-db line 82) -Feb 21 20:38:06 server2.1 [2014-02-21T20:38:06-08:00] INFO: Processing database_user[service] action grant (openstack-ops-database::openstack-db line 90) -Feb 21 20:38:06 server2.1 [2014-02-21T20:38:06-08:00] INFO: database_user[service]: granting access with statement [GRANT all ON `keystone`.* TO `service`@`%` IDENTIFIED BY [FILTERED]] -Feb 21 20:38:06 server2.1 [2014-02-21T20:38:06-08:00] INFO: Processing database[create glance database] action create (openstack-ops-database::openstack-db line 74) -Feb 21 20:38:06 server2.1 [2014-02-21T20:38:06-08:00] INFO: Processing database_user[service] action create (openstack-ops-database::openstack-db line 82) -Feb 21 20:38:06 server2.1 [2014-02-21T20:38:06-08:00] INFO: Processing database_user[service] action grant (openstack-ops-database::openstack-db line 90) -Feb 21 20:38:06 server2.1 [2014-02-21T20:38:06-08:00] INFO: database_user[service]: granting access with statement [GRANT all ON `glance`.* TO `service`@`%` IDENTIFIED BY [FILTERED]] -Feb 21 20:38:06 server2.1 [2014-02-21T20:38:06-08:00] INFO: Processing database[create ceilometer database] action create (openstack-ops-database::openstack-db line 74) -Feb 21 20:38:06 server2.1 [2014-02-21T20:38:06-08:00] INFO: Processing database_user[ceilometer] action create (openstack-ops-database::openstack-db line 82) -Feb 21 20:38:06 server2.1 [2014-02-21T20:38:06-08:00] INFO: Processing database_user[ceilometer] action grant (openstack-ops-database::openstack-db line 90) -Feb 21 20:38:06 server2.1 [2014-02-21T20:38:06-08:00] INFO: database_user[ceilometer]: granting access with statement [GRANT all ON `ceilometer`.* TO `ceilometer`@`%` IDENTIFIED BY [FILTERED]] -Feb 21 20:38:06 server2.1 [2014-02-21T20:38:06-08:00] INFO: Processing database[create quantum database] action create (openstack-ops-database::openstack-db line 74) -Feb 21 20:38:06 server2.1 [2014-02-21T20:38:06-08:00] INFO: Processing database_user[service] action create (openstack-ops-database::openstack-db line 82) -Feb 21 20:38:06 server2.1 [2014-02-21T20:38:06-08:00] INFO: Processing database_user[service] action grant (openstack-ops-database::openstack-db line 90) -Feb 21 20:38:06 server2.1 [2014-02-21T20:38:06-08:00] INFO: database_user[service]: granting access with statement [GRANT all ON `quantum`.* TO `service`@`%` IDENTIFIED BY [FILTERED]] -Feb 21 20:38:06 server2.1 [2014-02-21T20:38:06-08:00] INFO: Processing database[create cinder database] action create (openstack-ops-database::openstack-db line 74) -Feb 21 20:38:06 server2.1 [2014-02-21T20:38:06-08:00] INFO: Processing database_user[service] action create (openstack-ops-database::openstack-db line 82) -Feb 21 20:38:06 server2.1 [2014-02-21T20:38:06-08:00] INFO: Processing database_user[service] action grant (openstack-ops-database::openstack-db line 90) -Feb 21 20:38:06 server2.1 [2014-02-21T20:38:06-08:00] INFO: database_user[service]: granting access with statement [GRANT all ON `cinder`.* TO `service`@`%` IDENTIFIED BY [FILTERED]] -Feb 21 20:38:06 server2.1 [2014-02-21T20:38:06-08:00] INFO: [mysql_database[test]] sending query action to mysql_database[FLUSH privileges] (delayed) -Feb 21 20:38:06 server2.1 [2014-02-21T20:38:06-08:00] INFO: Processing mysql_database[FLUSH privileges] action query (openstack-ops-database::mysql-server line 64) -Feb 21 20:38:07 server2.1 [2014-02-21T20:38:07-08:00] INFO: Chef Run complete in 948.167010559 seconds -Feb 21 20:38:08 server2.1 [2014-02-21T20:38:07-08:00] INFO: Running report handlers -Feb 21 20:38:08 server2.1 [2014-02-21T20:38:07-08:00] INFO: Report handlers complete diff --git a/compass/tests/actions/update_progress/data/test2/anamon/checkpoint_5/server2.1/install.log.template b/compass/tests/actions/update_progress/data/test2/anamon/checkpoint_5/server2.1/install.log.template deleted file mode 100644 index 861b3a53..00000000 --- a/compass/tests/actions/update_progress/data/test2/anamon/checkpoint_5/server2.1/install.log.template +++ /dev/null @@ -1,212 +0,0 @@ -Installing libgcc-4.4.7-4.el6.x86_64 -warning: libgcc-4.4.7-4.el6.x86_64: Header V3 RSA/SHA1 Signature, key ID c105b9de: NOKEY -Installing setup-2.8.14-20.el6_4.1.noarch -Installing filesystem-2.4.30-3.el6.x86_64 -Installing basesystem-10.0-4.el6.noarch -Installing ncurses-base-5.7-3.20090208.el6.x86_64 -Installing kernel-firmware-2.6.32-431.el6.noarch -Installing tzdata-2013g-1.el6.noarch -Installing nss-softokn-freebl-3.14.3-9.el6.x86_64 -Installing glibc-common-2.12-1.132.el6.x86_64 -Installing glibc-2.12-1.132.el6.x86_64 -Installing ncurses-libs-5.7-3.20090208.el6.x86_64 -Installing bash-4.1.2-15.el6_4.x86_64 -Installing libattr-2.4.44-7.el6.x86_64 -Installing libcap-2.16-5.5.el6.x86_64 -Installing zlib-1.2.3-29.el6.x86_64 -Installing info-4.13a-8.el6.x86_64 -Installing popt-1.13-7.el6.x86_64 -Installing chkconfig-1.3.49.3-2.el6_4.1.x86_64 -Installing audit-libs-2.2-2.el6.x86_64 -Installing libcom_err-1.41.12-18.el6.x86_64 -Installing libacl-2.2.49-6.el6.x86_64 -Installing db4-4.7.25-18.el6_4.x86_64 -Installing nspr-4.10.0-1.el6.x86_64 -Installing nss-util-3.15.1-3.el6.x86_64 -Installing readline-6.0-4.el6.x86_64 -Installing libsepol-2.0.41-4.el6.x86_64 -Installing libselinux-2.0.94-5.3.el6_4.1.x86_64 -Installing shadow-utils-4.1.4.2-13.el6.x86_64 -Installing sed-4.2.1-10.el6.x86_64 -Installing bzip2-libs-1.0.5-7.el6_0.x86_64 -Installing libuuid-2.17.2-12.14.el6.x86_64 -Installing libstdc++-4.4.7-4.el6.x86_64 -Installing libblkid-2.17.2-12.14.el6.x86_64 -Installing gawk-3.1.7-10.el6.x86_64 -Installing file-libs-5.04-15.el6.x86_64 -Installing libgpg-error-1.7-4.el6.x86_64 -Installing dbus-libs-1.2.24-7.el6_3.x86_64 -Installing libudev-147-2.51.el6.x86_64 -Installing pcre-7.8-6.el6.x86_64 -Installing grep-2.6.3-4.el6.x86_64 -Installing lua-5.1.4-4.1.el6.x86_64 -Installing sqlite-3.6.20-1.el6.x86_64 -Installing cyrus-sasl-lib-2.1.23-13.el6_3.1.x86_64 -Installing libidn-1.18-2.el6.x86_64 -Installing expat-2.0.1-11.el6_2.x86_64 -Installing xz-libs-4.999.9-0.3.beta.20091007git.el6.x86_64 -Installing elfutils-libelf-0.152-1.el6.x86_64 -Installing libgcrypt-1.4.5-11.el6_4.x86_64 -Installing bzip2-1.0.5-7.el6_0.x86_64 -Installing findutils-4.4.2-6.el6.x86_64 -Installing libselinux-utils-2.0.94-5.3.el6_4.1.x86_64 -Installing checkpolicy-2.0.22-1.el6.x86_64 -Installing cpio-2.10-11.el6_3.x86_64 -Installing which-2.19-6.el6.x86_64 -Installing libxml2-2.7.6-14.el6.x86_64 -Installing libedit-2.11-4.20080712cvs.1.el6.x86_64 -Installing pth-2.0.7-9.3.el6.x86_64 -Installing tcp_wrappers-libs-7.6-57.el6.x86_64 -Installing sysvinit-tools-2.87-5.dsf.el6.x86_64 -Installing libtasn1-2.3-3.el6_2.1.x86_64 -Installing p11-kit-0.18.5-2.el6.x86_64 -Installing p11-kit-trust-0.18.5-2.el6.x86_64 -Installing ca-certificates-2013.1.94-65.0.el6.noarch -Installing device-mapper-persistent-data-0.2.8-2.el6.x86_64 -Installing nss-softokn-3.14.3-9.el6.x86_64 -Installing libnih-1.0.1-7.el6.x86_64 -Installing upstart-0.6.5-12.el6_4.1.x86_64 -Installing file-5.04-15.el6.x86_64 -Installing gmp-4.3.1-7.el6_2.2.x86_64 -Installing libusb-0.1.12-23.el6.x86_64 -Installing MAKEDEV-3.24-6.el6.x86_64 -Installing libutempter-1.1.5-4.1.el6.x86_64 -Installing psmisc-22.6-15.el6_0.1.x86_64 -Installing net-tools-1.60-110.el6_2.x86_64 -Installing vim-minimal-7.2.411-1.8.el6.x86_64 -Installing tar-1.23-11.el6.x86_64 -Installing procps-3.2.8-25.el6.x86_64 -Installing db4-utils-4.7.25-18.el6_4.x86_64 -Installing e2fsprogs-libs-1.41.12-18.el6.x86_64 -Installing libss-1.41.12-18.el6.x86_64 -Installing pinentry-0.7.6-6.el6.x86_64 -Installing binutils-2.20.51.0.2-5.36.el6.x86_64 -Installing m4-1.4.13-5.el6.x86_64 -Installing diffutils-2.8.1-28.el6.x86_64 -Installing make-3.81-20.el6.x86_64 -Installing dash-0.5.5.1-4.el6.x86_64 -Installing ncurses-5.7-3.20090208.el6.x86_64 -Installing groff-1.18.1.4-21.el6.x86_64 -Installing less-436-10.el6.x86_64 -Installing coreutils-libs-8.4-31.el6.x86_64 -Installing gzip-1.3.12-19.el6_4.x86_64 -Installing cracklib-2.8.16-4.el6.x86_64 -Installing cracklib-dicts-2.8.16-4.el6.x86_64 -Installing coreutils-8.4-31.el6.x86_64 -Installing pam-1.1.1-17.el6.x86_64 -Installing module-init-tools-3.9-21.el6_4.x86_64 -Installing hwdata-0.233-9.1.el6.noarch -Installing redhat-logos-60.0.14-12.el6.centos.noarch -Installing plymouth-scripts-0.8.3-27.el6.centos.x86_64 -Installing libpciaccess-0.13.1-2.el6.x86_64 -Installing nss-3.15.1-15.el6.x86_64 -Installing nss-sysinit-3.15.1-15.el6.x86_64 -Installing nss-tools-3.15.1-15.el6.x86_64 -Installing openldap-2.4.23-32.el6_4.1.x86_64 -Installing logrotate-3.7.8-17.el6.x86_64 -Installing gdbm-1.8.0-36.el6.x86_64 -Installing mingetty-1.08-5.el6.x86_64 -Installing keyutils-libs-1.4-4.el6.x86_64 -Installing krb5-libs-1.10.3-10.el6_4.6.x86_64 -Installing openssl-1.0.1e-15.el6.x86_64 -Installing libssh2-1.4.2-1.el6.x86_64 -Installing libcurl-7.19.7-37.el6_4.x86_64 -Installing gnupg2-2.0.14-6.el6_4.x86_64 -Installing gpgme-1.1.8-3.el6.x86_64 -Installing curl-7.19.7-37.el6_4.x86_64 -Installing rpm-libs-4.8.0-37.el6.x86_64 -Installing rpm-4.8.0-37.el6.x86_64 -Installing fipscheck-lib-1.2.0-7.el6.x86_64 -Installing fipscheck-1.2.0-7.el6.x86_64 -Installing mysql-libs-5.1.71-1.el6.x86_64 -Installing ethtool-3.5-1.el6.x86_64 -Installing pciutils-libs-3.1.10-2.el6.x86_64 -Installing plymouth-core-libs-0.8.3-27.el6.centos.x86_64 -Installing libcap-ng-0.6.4-3.el6_0.1.x86_64 -Installing libffi-3.0.5-3.2.el6.x86_64 -Installing python-2.6.6-51.el6.x86_64 -Installing python-libs-2.6.6-51.el6.x86_64 -Installing python-pycurl-7.19.0-8.el6.x86_64 -Installing python-urlgrabber-3.9.1-9.el6.noarch -Installing pygpgme-0.1-18.20090824bzr68.el6.x86_64 -Installing rpm-python-4.8.0-37.el6.x86_64 -Installing python-iniparse-0.3.1-2.1.el6.noarch -Installing slang-2.2.1-1.el6.x86_64 -Installing newt-0.52.11-3.el6.x86_64 -Installing newt-python-0.52.11-3.el6.x86_64 -Installing ustr-1.0.4-9.1.el6.x86_64 -Installing libsemanage-2.0.43-4.2.el6.x86_64 -Installing libaio-0.3.107-10.el6.x86_64 -Installing pkgconfig-0.23-9.1.el6.x86_64 -Installing gamin-0.1.10-9.el6.x86_64 -Installing glib2-2.26.1-3.el6.x86_64 -Installing shared-mime-info-0.70-4.el6.x86_64 -Installing libuser-0.56.13-5.el6.x86_64 -Installing grubby-7.0.15-5.el6.x86_64 -Installing yum-metadata-parser-1.1.2-16.el6.x86_64 -Installing yum-plugin-fastestmirror-1.1.30-14.el6.noarch -Installing yum-3.2.29-40.el6.centos.noarch -Installing dbus-glib-0.86-6.el6.x86_64 -Installing dhcp-common-4.1.1-38.P1.el6.centos.x86_64 -Installing centos-release-6-5.el6.centos.11.1.x86_64 -Installing policycoreutils-2.0.83-19.39.el6.x86_64 -Installing iptables-1.4.7-11.el6.x86_64 -Installing iproute-2.6.32-31.el6.x86_64 -Installing iputils-20071127-17.el6_4.2.x86_64 -Installing util-linux-ng-2.17.2-12.14.el6.x86_64 -Installing initscripts-9.03.40-2.el6.centos.x86_64 -Installing udev-147-2.51.el6.x86_64 -Installing device-mapper-libs-1.02.79-8.el6.x86_64 -Installing device-mapper-1.02.79-8.el6.x86_64 -Installing device-mapper-event-libs-1.02.79-8.el6.x86_64 -Installing openssh-5.3p1-94.el6.x86_64 -Installing device-mapper-event-1.02.79-8.el6.x86_64 -Installing lvm2-libs-2.02.100-8.el6.x86_64 -Installing cryptsetup-luks-libs-1.2.0-7.el6.x86_64 -Installing device-mapper-multipath-libs-0.4.9-72.el6.x86_64 -Installing kpartx-0.4.9-72.el6.x86_64 -Installing libdrm-2.4.45-2.el6.x86_64 -Installing plymouth-0.8.3-27.el6.centos.x86_64 -Installing rsyslog-5.8.10-8.el6.x86_64 -Installing cyrus-sasl-2.1.23-13.el6_3.1.x86_64 -Installing postfix-2.6.6-2.2.el6_1.x86_64 -Installing cronie-anacron-1.4.4-12.el6.x86_64 -Installing cronie-1.4.4-12.el6.x86_64 -Installing crontabs-1.10-33.el6.noarch -Installing ntpdate-4.2.6p5-1.el6.centos.x86_64 -Installing iptables-ipv6-1.4.7-11.el6.x86_64 -Installing selinux-policy-3.7.19-231.el6.noarch -Installing kbd-misc-1.15-11.el6.noarch -Installing kbd-1.15-11.el6.x86_64 -Installing dracut-004-335.el6.noarch -Installing dracut-kernel-004-335.el6.noarch -Installing kernel-2.6.32-431.el6.x86_64 -Installing fuse-2.8.3-4.el6.x86_64 -Installing selinux-policy-targeted-3.7.19-231.el6.noarch -Installing system-config-firewall-base-1.2.27-5.el6.noarch -Installing ntp-4.2.6p5-1.el6.centos.x86_64 -Installing device-mapper-multipath-0.4.9-72.el6.x86_64 -Installing cryptsetup-luks-1.2.0-7.el6.x86_64 -Installing lvm2-2.02.100-8.el6.x86_64 -Installing openssh-clients-5.3p1-94.el6.x86_64 -Installing openssh-server-5.3p1-94.el6.x86_64 -Installing mdadm-3.2.6-7.el6.x86_64 -Installing b43-openfwwf-5.2-4.el6.noarch -Installing dhclient-4.1.1-38.P1.el6.centos.x86_64 -Installing iscsi-initiator-utils-6.2.0.873-10.el6.x86_64 -Installing passwd-0.77-4.el6_2.2.x86_64 -Installing authconfig-6.1.12-13.el6.x86_64 -Installing grub-0.97-83.el6.x86_64 -Installing efibootmgr-0.5.4-11.el6.x86_64 -Installing wget-1.12-1.8.el6.x86_64 -Installing sudo-1.8.6p3-12.el6.x86_64 -Installing audit-2.2-2.el6.x86_64 -Installing e2fsprogs-1.41.12-18.el6.x86_64 -Installing xfsprogs-3.1.1-14.el6.x86_64 -Installing acl-2.2.49-6.el6.x86_64 -Installing attr-2.4.44-7.el6.x86_64 -Installing chef-11.8.0-1.el6.x86_64 -warning: chef-11.8.0-1.el6.x86_64: Header V4 DSA/SHA1 Signature, key ID 83ef826a: NOKEY -Installing bridge-utils-1.2-10.el6.x86_64 -Installing rootfiles-8.1-6.1.el6.noarch -*** FINISHED INSTALLING PACKAGES *** \ No newline at end of file diff --git a/compass/tests/actions/update_progress/data/test2/anamon/checkpoint_5/server2.1/sys.log.template b/compass/tests/actions/update_progress/data/test2/anamon/checkpoint_5/server2.1/sys.log.template deleted file mode 100644 index 1fbb5602..00000000 --- a/compass/tests/actions/update_progress/data/test2/anamon/checkpoint_5/server2.1/sys.log.template +++ /dev/null @@ -1,1628 +0,0 @@ -05:50:20,517 INFO kernel:imklog 5.8.10, log source = /proc/kmsg started. -05:50:20,517 INFO rsyslogd: [origin software="rsyslogd" swVersion="5.8.10" x-pid="68" x-info="http://www.rsyslog.com"] start -05:50:20,517 INFO kernel:Initializing cgroup subsys cpuset -05:50:20,517 INFO kernel:Initializing cgroup subsys cpu -05:50:20,517 NOTICE kernel:Linux version 2.6.32-431.el6.x86_64 (mockbuild@c6b8.bsys.dev.centos.org) (gcc version 4.4.7 20120313 (Red Hat 4.4.7-4) (GCC) ) #1 SMP Fri Nov 22 03:15:09 UTC 2013 -05:50:20,517 INFO kernel:Command line: initrd=/images/CentOS-6.5-x86_64/initrd.img ksdevice=bootif lang= kssendmac text ks=http://10.145.88.211/cblr/svc/op/ks/system/server2.1 BOOT_IMAGE=/images/CentOS-6.5-x86_64/vmlinuz BOOTIF=01-00-0c-29-5c-6a-b8 -05:50:20,517 INFO kernel:KERNEL supported cpus: -05:50:20,517 INFO kernel: Intel GenuineIntel -05:50:20,517 INFO kernel: AMD AuthenticAMD -05:50:20,517 INFO kernel: Centaur CentaurHauls -05:50:20,517 INFO kernel:Disabled fast string operations -05:50:20,517 INFO kernel:BIOS-provided physical RAM map: -05:50:20,517 INFO kernel: BIOS-e820: 0000000000000000 - 000000000009f400 (usable) -05:50:20,517 INFO kernel: BIOS-e820: 000000000009f400 - 00000000000a0000 (reserved) -05:50:20,517 INFO kernel: BIOS-e820: 00000000000ca000 - 00000000000cc000 (reserved) -05:50:20,517 INFO kernel: BIOS-e820: 00000000000dc000 - 0000000000100000 (reserved) -05:50:20,517 INFO kernel: BIOS-e820: 0000000000100000 - 000000007fef0000 (usable) -05:50:20,517 INFO kernel: BIOS-e820: 000000007fef0000 - 000000007feff000 (ACPI data) -05:50:20,517 INFO kernel: BIOS-e820: 000000007feff000 - 000000007ff00000 (ACPI NVS) -05:50:20,517 INFO kernel: BIOS-e820: 000000007ff00000 - 0000000080000000 (usable) -05:50:20,517 INFO kernel: BIOS-e820: 00000000e0000000 - 00000000f0000000 (reserved) -05:50:20,517 INFO kernel: BIOS-e820: 00000000fec00000 - 00000000fec10000 (reserved) -05:50:20,517 INFO kernel: BIOS-e820: 00000000fee00000 - 00000000fee01000 (reserved) -05:50:20,517 INFO kernel: BIOS-e820: 00000000fffe0000 - 0000000100000000 (reserved) -05:50:20,517 INFO kernel:DMI present. -05:50:20,517 WARNING kernel:SMBIOS version 2.4 @ 0xF68F0 -05:50:20,517 DEBUG kernel:DMI: VMware, Inc. VMware Virtual Platform/440BX Desktop Reference Platform, BIOS 6.00 01/07/2011 -05:50:20,517 NOTICE kernel:Phoenix BIOS detected: BIOS may corrupt low RAM, working around it. -05:50:20,517 DEBUG kernel:e820 update range: 0000000000000000 - 0000000000010000 (usable) ==> (reserved) -05:50:20,517 INFO kernel:Hypervisor detected: VMware -05:50:20,517 DEBUG kernel:e820 update range: 0000000000000000 - 0000000000001000 (usable) ==> (reserved) -05:50:20,517 DEBUG kernel:e820 remove range: 00000000000a0000 - 0000000000100000 (usable) -05:50:20,517 INFO kernel:last_pfn = 0x80000 max_arch_pfn = 0x400000000 -05:50:20,517 DEBUG kernel:MTRR default type: uncachable -05:50:20,517 DEBUG kernel:MTRR fixed ranges enabled: -05:50:20,517 DEBUG kernel: 00000-9FFFF write-back -05:50:20,517 DEBUG kernel: A0000-BFFFF uncachable -05:50:20,517 DEBUG kernel: C0000-CFFFF write-protect -05:50:20,517 DEBUG kernel: D0000-EFFFF uncachable -05:50:20,517 DEBUG kernel: F0000-FFFFF write-protect -05:50:20,517 DEBUG kernel:MTRR variable ranges enabled: -05:50:20,517 DEBUG kernel: 0 base 0000000000 mask FF80000000 write-back -05:50:20,517 DEBUG kernel: 1 disabled -05:50:20,517 DEBUG kernel: 2 disabled -05:50:20,517 DEBUG kernel: 3 disabled -05:50:20,517 DEBUG kernel: 4 disabled -05:50:20,517 DEBUG kernel: 5 disabled -05:50:20,517 DEBUG kernel: 6 disabled -05:50:20,517 DEBUG kernel: 7 disabled -05:50:20,517 INFO kernel:x86 PAT enabled: cpu 0, old 0x0, new 0x7010600070106 -05:50:20,517 DEBUG kernel:initial memory mapped : 0 - 20000000 -05:50:20,517 INFO kernel:init_memory_mapping: 0000000000000000-0000000080000000 -05:50:20,517 DEBUG kernel: 0000000000 - 0080000000 page 2M -05:50:20,517 DEBUG kernel:kernel direct mapping tables up to 80000000 @ 10000-13000 -05:50:20,517 INFO kernel:RAMDISK: 7def9000 - 7fecf4ff -05:50:20,517 WARNING kernel:ACPI: RSDP 00000000000f6940 00024 (v02 PTLTD ) -05:50:20,517 WARNING kernel:ACPI: XSDT 000000007fef0333 00054 (v01 INTEL 440BX 06040000 VMW 01324272) -05:50:20,517 WARNING kernel:ACPI: FACP 000000007fefee98 000F4 (v04 INTEL 440BX 06040000 PTL 000F4240) -05:50:20,517 WARNING kernel:ACPI: DSDT 000000007fef055d 0E93B (v01 PTLTD Custom 06040000 MSFT 03000001) -05:50:20,517 WARNING kernel:ACPI: FACS 000000007fefffc0 00040 -05:50:20,517 WARNING kernel:ACPI: BOOT 000000007fef0535 00028 (v01 PTLTD $SBFTBL$ 06040000 LTP 00000001) -05:50:20,517 WARNING kernel:ACPI: APIC 000000007fef04d7 0005E (v01 PTLTD ? APIC 06040000 LTP 00000000) -05:50:20,517 WARNING kernel:ACPI: MCFG 000000007fef049b 0003C (v01 PTLTD $PCITBL$ 06040000 LTP 00000001) -05:50:20,517 WARNING kernel:ACPI: SRAT 000000007fef03fb 000A0 (v02 VMWARE MEMPLUG 06040000 VMW 00000001) -05:50:20,517 WARNING kernel:ACPI: HPET 000000007fef03c3 00038 (v01 VMWARE VMW HPET 06040000 WMV 00000001) -05:50:20,517 DEBUG kernel:ACPI: Local APIC address 0xfee00000 -05:50:20,517 INFO kernel:Setting APIC routing to flat. -05:50:20,517 INFO kernel:SRAT: PXM 0 -> APIC 0 -> Node 0 -05:50:20,517 INFO kernel:SRAT: PXM 0 -> APIC 1 -> Node 0 -05:50:20,517 INFO kernel:SRAT: Node 0 PXM 0 0-a0000 -05:50:20,517 INFO kernel:SRAT: Node 0 PXM 0 100000-80000000 -05:50:20,517 DEBUG kernel:NUMA: Allocated memnodemap from 11000 - 12040 -05:50:20,517 DEBUG kernel:NUMA: Using 20 for the hash shift. -05:50:20,517 INFO kernel:Bootmem setup node 0 0000000000000000-0000000080000000 -05:50:20,517 INFO kernel: NODE_DATA [0000000000012040 - 000000000004603f] -05:50:20,517 INFO kernel: bootmap [0000000000047000 - 0000000000056fff] pages 10 -05:50:20,517 INFO kernel:(8 early reservations) ==> bootmem [0000000000 - 0080000000] -05:50:20,517 INFO kernel: #0 [0000000000 - 0000001000] BIOS data page ==> [0000000000 - 0000001000] -05:50:20,517 INFO kernel: #1 [0000006000 - 0000008000] TRAMPOLINE ==> [0000006000 - 0000008000] -05:50:20,517 INFO kernel: #2 [0001000000 - 000201faa4] TEXT DATA BSS ==> [0001000000 - 000201faa4] -05:50:20,517 INFO kernel: #3 [007def9000 - 007fecf4ff] RAMDISK ==> [007def9000 - 007fecf4ff] -05:50:20,517 INFO kernel: #4 [000009f400 - 0000100000] BIOS reserved ==> [000009f400 - 0000100000] -05:50:20,517 INFO kernel: #5 [0002020000 - 00020201f0] BRK ==> [0002020000 - 00020201f0] -05:50:20,517 INFO kernel: #6 [0000010000 - 0000011000] PGTABLE ==> [0000010000 - 0000011000] -05:50:20,517 INFO kernel: #7 [0000011000 - 0000012040] MEMNODEMAP ==> [0000011000 - 0000012040] -05:50:20,517 INFO kernel:found SMP MP-table at [ffff8800000f69b0] f69b0 -05:50:20,517 DEBUG kernel: [ffffea0000000000-ffffea0001bfffff] PMD -> [ffff880002600000-ffff8800041fffff] on node 0 -05:50:20,517 WARNING kernel:Zone PFN ranges: -05:50:20,517 WARNING kernel: DMA 0x00000010 -> 0x00001000 -05:50:20,517 WARNING kernel: DMA32 0x00001000 -> 0x00100000 -05:50:20,517 WARNING kernel: Normal 0x00100000 -> 0x00100000 -05:50:20,517 WARNING kernel:Movable zone start PFN for each node -05:50:20,517 WARNING kernel:early_node_map[3] active PFN ranges -05:50:20,517 WARNING kernel: 0: 0x00000010 -> 0x0000009f -05:50:20,517 WARNING kernel: 0: 0x00000100 -> 0x0007fef0 -05:50:20,520 WARNING kernel: 0: 0x0007ff00 -> 0x00080000 -05:50:20,520 DEBUG kernel:On node 0 totalpages: 524159 -05:50:20,520 DEBUG kernel: DMA zone: 56 pages used for memmap -05:50:20,520 DEBUG kernel: DMA zone: 101 pages reserved -05:50:20,520 DEBUG kernel: DMA zone: 3826 pages, LIFO batch:0 -05:50:20,520 DEBUG kernel: DMA32 zone: 7112 pages used for memmap -05:50:20,520 DEBUG kernel: DMA32 zone: 513064 pages, LIFO batch:31 -05:50:20,520 INFO kernel:ACPI: PM-Timer IO Port: 0x1008 -05:50:20,520 DEBUG kernel:ACPI: Local APIC address 0xfee00000 -05:50:20,520 INFO kernel:Setting APIC routing to flat. -05:50:20,520 INFO kernel:ACPI: LAPIC (acpi_id[0x00] lapic_id[0x00] enabled) -05:50:20,520 INFO kernel:ACPI: LAPIC (acpi_id[0x01] lapic_id[0x01] enabled) -05:50:20,520 INFO kernel:ACPI: LAPIC_NMI (acpi_id[0x00] high edge lint[0x1]) -05:50:20,520 INFO kernel:ACPI: LAPIC_NMI (acpi_id[0x01] high edge lint[0x1]) -05:50:20,520 INFO kernel:ACPI: IOAPIC (id[0x02] address[0xfec00000] gsi_base[0]) -05:50:20,521 INFO kernel:IOAPIC[0]: apic_id 2, version 17, address 0xfec00000, GSI 0-23 -05:50:20,521 INFO kernel:ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 high edge) -05:50:20,521 DEBUG kernel:ACPI: IRQ0 used by override. -05:50:20,521 DEBUG kernel:ACPI: IRQ2 used by override. -05:50:20,521 DEBUG kernel:ACPI: IRQ9 used by override. -05:50:20,521 INFO kernel:Using ACPI (MADT) for SMP configuration information -05:50:20,521 INFO kernel:ACPI: HPET id: 0x8086af01 base: 0xfed00000 -05:50:20,521 INFO kernel:SMP: Allowing 2 CPUs, 0 hotplug CPUs -05:50:20,521 DEBUG kernel:nr_irqs_gsi: 24 -05:50:20,521 INFO kernel:PM: Registered nosave memory: 000000000009f000 - 00000000000a0000 -05:50:20,521 INFO kernel:PM: Registered nosave memory: 00000000000a0000 - 00000000000ca000 -05:50:20,521 INFO kernel:PM: Registered nosave memory: 00000000000ca000 - 00000000000cc000 -05:50:20,521 INFO kernel:PM: Registered nosave memory: 00000000000cc000 - 00000000000dc000 -05:50:20,521 INFO kernel:PM: Registered nosave memory: 00000000000dc000 - 0000000000100000 -05:50:20,521 INFO kernel:PM: Registered nosave memory: 000000007fef0000 - 000000007feff000 -05:50:20,521 INFO kernel:PM: Registered nosave memory: 000000007feff000 - 000000007ff00000 -05:50:20,521 INFO kernel:Allocating PCI resources starting at 80000000 (gap: 80000000:60000000) -05:50:20,521 INFO kernel:Booting paravirtualized kernel on bare hardware -05:50:20,521 INFO kernel:NR_CPUS:4096 nr_cpumask_bits:2 nr_cpu_ids:2 nr_node_ids:1 -05:50:20,521 INFO kernel:PERCPU: Embedded 31 pages/cpu @ffff880002200000 s94872 r8192 d23912 u1048576 -05:50:20,521 INFO kernel:pcpu-alloc: s94872 r8192 d23912 u1048576 alloc=1*2097152 -05:50:20,521 INFO kernel:pcpu-alloc: [0] 0 1 -05:50:20,521 WARNING kernel:Built 1 zonelists in Node order, mobility grouping on. Total pages: 516890 -05:50:20,521 WARNING kernel:Policy zone: DMA32 -05:50:20,521 NOTICE kernel:Kernel command line: initrd=/images/CentOS-6.5-x86_64/initrd.img ksdevice=bootif lang= kssendmac text ks=http://10.145.88.211/cblr/svc/op/ks/system/server2.1 BOOT_IMAGE=/images/CentOS-6.5-x86_64/vmlinuz BOOTIF=01-00-0c-29-5c-6a-b8 -05:50:20,521 INFO kernel:PID hash table entries: 4096 (order: 3, 32768 bytes) -05:50:20,521 INFO kernel:Checking aperture... -05:50:20,521 INFO kernel:No AGP bridge found -05:50:20,521 INFO kernel:Memory: 2018096k/2097152k available (5325k kernel code, 516k absent, 78540k reserved, 7013k data, 1276k init) -05:50:20,521 INFO kernel:Hierarchical RCU implementation. -05:50:20,521 INFO kernel:NR_IRQS:33024 nr_irqs:424 -05:50:20,521 INFO kernel:Extended CMOS year: 2000 -05:50:20,521 WARNING kernel:Console: colour VGA+ 80x25 -05:50:20,521 INFO kernel:console [tty0] enabled -05:50:20,521 INFO kernel:allocated 8388608 bytes of page_cgroup -05:50:20,521 INFO kernel:please try 'cgroup_disable=memory' option if you don't want memory cgroups -05:50:20,521 DEBUG kernel:hpet clockevent registered -05:50:20,521 INFO kernel:TSC freq read from hypervisor : 2400.085 MHz -05:50:20,521 WARNING kernel:Detected 2400.085 MHz processor. -05:50:20,521 INFO kernel:Calibrating delay loop (skipped) preset value.. 4800.17 BogoMIPS (lpj=2400085) -05:50:20,521 INFO kernel:pid_max: default: 32768 minimum: 301 -05:50:20,521 INFO kernel:Security Framework initialized -05:50:20,521 INFO kernel:SELinux: Initializing. -05:50:20,521 DEBUG kernel:SELinux: Starting in permissive mode -05:50:20,521 INFO kernel:Dentry cache hash table entries: 262144 (order: 9, 2097152 bytes) -05:50:20,521 INFO kernel:Inode-cache hash table entries: 131072 (order: 8, 1048576 bytes) -05:50:20,521 WARNING kernel:Mount-cache hash table entries: 256 -05:50:20,521 INFO kernel:Initializing cgroup subsys ns -05:50:20,521 INFO kernel:Initializing cgroup subsys cpuacct -05:50:20,521 INFO kernel:Initializing cgroup subsys memory -05:50:20,521 INFO kernel:Initializing cgroup subsys devices -05:50:20,521 INFO kernel:Initializing cgroup subsys freezer -05:50:20,521 INFO kernel:Initializing cgroup subsys net_cls -05:50:20,521 INFO kernel:Initializing cgroup subsys blkio -05:50:20,521 INFO kernel:Initializing cgroup subsys perf_event -05:50:20,521 INFO kernel:Initializing cgroup subsys net_prio -05:50:20,521 INFO kernel:Disabled fast string operations -05:50:20,521 INFO kernel:CPU: Physical Processor ID: 0 -05:50:20,521 INFO kernel:mce: CPU supports 0 MCE banks -05:50:20,521 INFO kernel:alternatives: switching to unfair spinlock -05:50:20,521 INFO kernel:ACPI: Core revision 20090903 -05:50:20,521 INFO kernel:ftrace: converting mcount calls to 0f 1f 44 00 00 -05:50:20,521 INFO kernel:ftrace: allocating 21769 entries in 86 pages -05:50:20,521 INFO kernel:APIC routing finalized to flat. -05:50:20,521 INFO kernel:..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1 -05:50:20,521 INFO kernel:CPU0: Intel(R) Xeon(R) CPU E5620 @ 2.40GHz stepping 02 -05:50:20,521 INFO kernel:Performance Events: 16-deep LBR, Westmere events, Intel PMU driver. -05:50:20,521 WARNING kernel:CPUID marked event: 'cpu cycles' unavailable -05:50:20,521 WARNING kernel:CPUID marked event: 'instructions' unavailable -05:50:20,521 WARNING kernel:CPUID marked event: 'bus cycles' unavailable -05:50:20,521 WARNING kernel:CPUID marked event: 'cache references' unavailable -05:50:20,521 WARNING kernel:CPUID marked event: 'cache misses' unavailable -05:50:20,521 WARNING kernel:CPUID marked event: 'branch instructions' unavailable -05:50:20,521 WARNING kernel:CPUID marked event: 'branch misses' unavailable -05:50:20,521 INFO kernel:... version: 3 -05:50:20,521 INFO kernel:... bit width: 48 -05:50:20,521 INFO kernel:... generic registers: 4 -05:50:20,521 INFO kernel:... value mask: 0000ffffffffffff -05:50:20,521 INFO kernel:... max period: 000000007fffffff -05:50:20,521 INFO kernel:... fixed-purpose events: 3 -05:50:20,521 INFO kernel:... event mask: 000000070000000f -05:50:20,521 WARNING kernel:NMI watchdog disabled (cpu0): hardware events not enabled -05:50:20,521 INFO kernel:Booting Node 0, Processors #1 Ok. -05:50:20,521 INFO kernel:Disabled fast string operations -05:50:20,521 INFO kernel:mce: CPU supports 0 MCE banks -05:50:20,521 INFO kernel:Skipped synchronization checks as TSC is reliable. -05:50:20,521 INFO kernel:Brought up 2 CPUs -05:50:20,521 INFO kernel:Total of 2 processors activated (9600.34 BogoMIPS). -05:50:20,521 INFO kernel:x86 PAT enabled: cpu 0, old 0x0, new 0x7010600070106 -05:50:20,521 INFO kernel:x86 PAT enabled: cpu 1, old 0x0, new 0x7010600070106 -05:50:20,521 DEBUG kernel:sizeof(vma)=200 bytes -05:50:20,521 DEBUG kernel:sizeof(page)=56 bytes -05:50:20,521 DEBUG kernel:sizeof(inode)=592 bytes -05:50:20,521 DEBUG kernel:sizeof(dentry)=192 bytes -05:50:20,521 DEBUG kernel:sizeof(ext3inode)=800 bytes -05:50:20,521 DEBUG kernel:sizeof(buffer_head)=104 bytes -05:50:20,521 DEBUG kernel:sizeof(skbuff)=232 bytes -05:50:20,521 DEBUG kernel:sizeof(task_struct)=2648 bytes -05:50:20,521 INFO kernel:devtmpfs: initialized -05:50:20,521 INFO kernel:PM: Registering ACPI NVS region at 7feff000 (4096 bytes) -05:50:20,521 INFO kernel:regulator: core version 0.5 -05:50:20,521 INFO kernel:NET: Registered protocol family 16 -05:50:20,521 INFO kernel:ACPI: bus type pci registered -05:50:20,521 NOTICE kernel:PCI: MCFG configuration 0: base e0000000 segment 0 buses 0 - 255 -05:50:20,521 NOTICE kernel:PCI: MCFG area at e0000000 reserved in E820 -05:50:20,521 INFO kernel:PCI: Using MMCONFIG at e0000000 - efffffff -05:50:20,521 INFO kernel:PCI: Using configuration type 1 for base access -05:50:20,521 WARNING kernel:bio: create slab at 0 -05:50:20,521 DEBUG kernel:ACPI: EC: Look up EC in DSDT -05:50:20,521 NOTICE kernel:ACPI: BIOS _OSI(Linux) query ignored -05:50:20,521 INFO kernel:ACPI: Interpreter enabled -05:50:20,521 INFO kernel:ACPI: (supports S0 S1 S4 S5) -05:50:20,521 INFO kernel:ACPI: Using IOAPIC for interrupt routing -05:50:20,521 INFO kernel:ACPI: No dock devices found. -05:50:20,521 INFO kernel:PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug -05:50:20,521 INFO kernel:ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-ff]) -05:50:20,521 INFO kernel:pci_root PNP0A03:00: host bridge window [mem 0x000a0000-0x000bffff] -05:50:20,521 INFO kernel:pci_root PNP0A03:00: host bridge window [mem 0x000d0000-0x000d3fff] -05:50:20,521 INFO kernel:pci_root PNP0A03:00: host bridge window [mem 0x000d4000-0x000d7fff] -05:50:20,521 INFO kernel:pci_root PNP0A03:00: host bridge window [mem 0x000d8000-0x000dbfff] -05:50:20,521 INFO kernel:pci_root PNP0A03:00: host bridge window [mem 0x80000000-0xfebfffff] -05:50:20,521 INFO kernel:pci_root PNP0A03:00: host bridge window [io 0x0000-0x0cf7] -05:50:20,521 INFO kernel:pci_root PNP0A03:00: host bridge window [io 0x0d00-0xfeff] -05:50:20,521 INFO kernel:PCI host bridge to bus 0000:00 -05:50:20,521 INFO kernel:pci_bus 0000:00: root bus resource [mem 0x000a0000-0x000bffff] -05:50:20,521 INFO kernel:pci_bus 0000:00: root bus resource [mem 0x000d0000-0x000d3fff] -05:50:20,521 INFO kernel:pci_bus 0000:00: root bus resource [mem 0x000d4000-0x000d7fff] -05:50:20,521 INFO kernel:pci_bus 0000:00: root bus resource [mem 0x000d8000-0x000dbfff] -05:50:20,521 INFO kernel:pci_bus 0000:00: root bus resource [mem 0x80000000-0xfebfffff] -05:50:20,521 INFO kernel:pci_bus 0000:00: root bus resource [io 0x0000-0x0cf7] -05:50:20,521 INFO kernel:pci_bus 0000:00: root bus resource [io 0x0d00-0xfeff] -05:50:20,521 DEBUG kernel:pci 0000:00:07.1: reg 20: [io 0x10c0-0x10cf] -05:50:20,521 INFO kernel:pci 0000:00:07.3: quirk: [io 0x1000-0x103f] claimed by PIIX4 ACPI -05:50:20,521 INFO kernel:pci 0000:00:07.3: quirk: [io 0x1040-0x104f] claimed by PIIX4 SMB -05:50:20,521 DEBUG kernel:pci 0000:00:07.7: reg 10: [io 0x1080-0x10bf] -05:50:20,521 DEBUG kernel:pci 0000:00:07.7: reg 14: [mem 0xd0000000-0xd0001fff 64bit] -05:50:20,521 DEBUG kernel:pci 0000:00:0f.0: reg 10: [io 0x10d0-0x10df] -05:50:20,521 DEBUG kernel:pci 0000:00:0f.0: reg 14: [mem 0xd8000000-0xdbffffff pref] -05:50:20,521 DEBUG kernel:pci 0000:00:0f.0: reg 18: [mem 0xd0800000-0xd0ffffff] -05:50:20,521 DEBUG kernel:pci 0000:00:0f.0: reg 30: [mem 0x00000000-0x00007fff pref] -05:50:20,521 DEBUG kernel:pci 0000:00:10.0: reg 10: [io 0x1400-0x14ff] -05:50:20,521 DEBUG kernel:pci 0000:00:10.0: reg 14: [mem 0xd0040000-0xd005ffff 64bit] -05:50:20,521 DEBUG kernel:pci 0000:00:10.0: reg 1c: [mem 0xd0020000-0xd003ffff 64bit] -05:50:20,521 DEBUG kernel:pci 0000:00:10.0: reg 30: [mem 0x00000000-0x00003fff pref] -05:50:20,521 INFO kernel:pci 0000:00:15.0: PME# supported from D0 D3hot D3cold -05:50:20,521 INFO kernel:pci 0000:00:15.0: PME# disabled -05:50:20,521 INFO kernel:pci 0000:00:15.1: PME# supported from D0 D3hot D3cold -05:50:20,521 INFO kernel:pci 0000:00:15.1: PME# disabled -05:50:20,521 INFO kernel:pci 0000:00:15.2: PME# supported from D0 D3hot D3cold -05:50:20,521 INFO kernel:pci 0000:00:15.2: PME# disabled -05:50:20,521 INFO kernel:pci 0000:00:15.3: PME# supported from D0 D3hot D3cold -05:50:20,521 INFO kernel:pci 0000:00:15.3: PME# disabled -05:50:20,521 INFO kernel:pci 0000:00:15.4: PME# supported from D0 D3hot D3cold -05:50:20,521 INFO kernel:pci 0000:00:15.4: PME# disabled -05:50:20,521 INFO kernel:pci 0000:00:15.5: PME# supported from D0 D3hot D3cold -05:50:20,521 INFO kernel:pci 0000:00:15.5: PME# disabled -05:50:20,521 INFO kernel:pci 0000:00:15.6: PME# supported from D0 D3hot D3cold -05:50:20,521 INFO kernel:pci 0000:00:15.6: PME# disabled -05:50:20,521 INFO kernel:pci 0000:00:15.7: PME# supported from D0 D3hot D3cold -05:50:20,521 INFO kernel:pci 0000:00:15.7: PME# disabled -05:50:20,521 INFO kernel:pci 0000:00:16.0: PME# supported from D0 D3hot D3cold -05:50:20,521 INFO kernel:pci 0000:00:16.0: PME# disabled -05:50:20,521 INFO kernel:pci 0000:00:16.1: PME# supported from D0 D3hot D3cold -05:50:20,521 INFO kernel:pci 0000:00:16.1: PME# disabled -05:50:20,521 INFO kernel:pci 0000:00:16.2: PME# supported from D0 D3hot D3cold -05:50:20,521 INFO kernel:pci 0000:00:16.2: PME# disabled -05:50:20,521 INFO kernel:pci 0000:00:16.3: PME# supported from D0 D3hot D3cold -05:50:20,521 INFO kernel:pci 0000:00:16.3: PME# disabled -05:50:20,521 INFO kernel:pci 0000:00:16.4: PME# supported from D0 D3hot D3cold -05:50:20,521 INFO kernel:pci 0000:00:16.4: PME# disabled -05:50:20,521 INFO kernel:pci 0000:00:16.5: PME# supported from D0 D3hot D3cold -05:50:20,521 INFO kernel:pci 0000:00:16.5: PME# disabled -05:50:20,521 INFO kernel:pci 0000:00:16.6: PME# supported from D0 D3hot D3cold -05:50:20,521 INFO kernel:pci 0000:00:16.6: PME# disabled -05:50:20,521 INFO kernel:pci 0000:00:16.7: PME# supported from D0 D3hot D3cold -05:50:20,521 INFO kernel:pci 0000:00:16.7: PME# disabled -05:50:20,521 INFO kernel:pci 0000:00:17.0: PME# supported from D0 D3hot D3cold -05:50:20,521 INFO kernel:pci 0000:00:17.0: PME# disabled -05:50:20,521 INFO kernel:pci 0000:00:17.1: PME# supported from D0 D3hot D3cold -05:50:20,521 INFO kernel:pci 0000:00:17.1: PME# disabled -05:50:20,521 INFO kernel:pci 0000:00:17.2: PME# supported from D0 D3hot D3cold -05:50:20,521 INFO kernel:pci 0000:00:17.2: PME# disabled -05:50:20,521 INFO kernel:pci 0000:00:17.3: PME# supported from D0 D3hot D3cold -05:50:20,521 INFO kernel:pci 0000:00:17.3: PME# disabled -05:50:20,521 INFO kernel:pci 0000:00:17.4: PME# supported from D0 D3hot D3cold -05:50:20,521 INFO kernel:pci 0000:00:17.4: PME# disabled -05:50:20,521 INFO kernel:pci 0000:00:17.5: PME# supported from D0 D3hot D3cold -05:50:20,521 INFO kernel:pci 0000:00:17.5: PME# disabled -05:50:20,521 INFO kernel:pci 0000:00:17.6: PME# supported from D0 D3hot D3cold -05:50:20,521 INFO kernel:pci 0000:00:17.6: PME# disabled -05:50:20,521 INFO kernel:pci 0000:00:17.7: PME# supported from D0 D3hot D3cold -05:50:20,521 INFO kernel:pci 0000:00:17.7: PME# disabled -05:50:20,521 INFO kernel:pci 0000:00:18.0: PME# supported from D0 D3hot D3cold -05:50:20,521 INFO kernel:pci 0000:00:18.0: PME# disabled -05:50:20,521 INFO kernel:pci 0000:00:18.1: PME# supported from D0 D3hot D3cold -05:50:20,521 INFO kernel:pci 0000:00:18.1: PME# disabled -05:50:20,521 INFO kernel:pci 0000:00:18.2: PME# supported from D0 D3hot D3cold -05:50:20,521 INFO kernel:pci 0000:00:18.2: PME# disabled -05:50:20,521 INFO kernel:pci 0000:00:18.3: PME# supported from D0 D3hot D3cold -05:50:20,521 INFO kernel:pci 0000:00:18.3: PME# disabled -05:50:20,521 INFO kernel:pci 0000:00:18.4: PME# supported from D0 D3hot D3cold -05:50:20,521 INFO kernel:pci 0000:00:18.4: PME# disabled -05:50:20,521 INFO kernel:pci 0000:00:18.5: PME# supported from D0 D3hot D3cold -05:50:20,521 INFO kernel:pci 0000:00:18.5: PME# disabled -05:50:20,521 INFO kernel:pci 0000:00:18.6: PME# supported from D0 D3hot D3cold -05:50:20,521 INFO kernel:pci 0000:00:18.6: PME# disabled -05:50:20,521 INFO kernel:pci 0000:00:18.7: PME# supported from D0 D3hot D3cold -05:50:20,521 INFO kernel:pci 0000:00:18.7: PME# disabled -05:50:20,521 INFO kernel:pci 0000:00:01.0: PCI bridge to [bus 01-01] -05:50:20,521 DEBUG kernel:pci 0000:00:01.0: bridge window [io 0xf000-0x0000] (disabled) -05:50:20,521 DEBUG kernel:pci 0000:00:01.0: bridge window [mem 0xfff00000-0x000fffff] (disabled) -05:50:20,521 DEBUG kernel:pci 0000:00:01.0: bridge window [mem 0xfff00000-0x000fffff pref] (disabled) -05:50:20,521 DEBUG kernel:pci 0000:02:00.0: reg 10: [mem 0xd1020000-0xd103ffff 64bit] -05:50:20,521 DEBUG kernel:pci 0000:02:00.0: reg 18: [mem 0xd1000000-0xd100ffff 64bit] -05:50:20,521 DEBUG kernel:pci 0000:02:00.0: reg 20: [io 0x2000-0x203f] -05:50:20,521 DEBUG kernel:pci 0000:02:00.0: reg 30: [mem 0x00000000-0x0000ffff pref] -05:50:20,521 INFO kernel:pci 0000:02:00.0: PME# supported from D0 D3hot D3cold -05:50:20,521 INFO kernel:pci 0000:02:00.0: PME# disabled -05:50:20,521 DEBUG kernel:pci 0000:02:01.0: reg 10: [mem 0xd1040000-0xd105ffff 64bit] -05:50:20,521 DEBUG kernel:pci 0000:02:01.0: reg 18: [mem 0xd1010000-0xd101ffff 64bit] -05:50:20,521 DEBUG kernel:pci 0000:02:01.0: reg 20: [io 0x2040-0x207f] -05:50:20,521 DEBUG kernel:pci 0000:02:01.0: reg 30: [mem 0x00000000-0x0000ffff pref] -05:50:20,521 INFO kernel:pci 0000:02:01.0: PME# supported from D0 D3hot D3cold -05:50:20,521 INFO kernel:pci 0000:02:01.0: PME# disabled -05:50:20,521 DEBUG kernel:pci 0000:02:02.0: reg 10: [mem 0xd1080000-0xd109ffff 64bit] -05:50:20,521 DEBUG kernel:pci 0000:02:02.0: reg 18: [mem 0xd1060000-0xd106ffff 64bit] -05:50:20,521 DEBUG kernel:pci 0000:02:02.0: reg 20: [io 0x2080-0x20bf] -05:50:20,521 DEBUG kernel:pci 0000:02:02.0: reg 30: [mem 0x00000000-0x0000ffff pref] -05:50:20,521 INFO kernel:pci 0000:02:02.0: PME# supported from D0 D3hot D3cold -05:50:20,521 INFO kernel:pci 0000:02:02.0: PME# disabled -05:50:20,521 DEBUG kernel:pci 0000:02:03.0: reg 10: [mem 0xd10a0000-0xd10bffff 64bit] -05:50:20,521 DEBUG kernel:pci 0000:02:03.0: reg 18: [mem 0xd1070000-0xd107ffff 64bit] -05:50:20,521 DEBUG kernel:pci 0000:02:03.0: reg 20: [io 0x20c0-0x20ff] -05:50:20,521 DEBUG kernel:pci 0000:02:03.0: reg 30: [mem 0x00000000-0x0000ffff pref] -05:50:20,521 INFO kernel:pci 0000:02:03.0: PME# supported from D0 D3hot D3cold -05:50:20,521 INFO kernel:pci 0000:02:03.0: PME# disabled -05:50:20,521 INFO kernel:pci 0000:00:11.0: PCI bridge to [bus 02-02] (subtractive decode) -05:50:20,521 DEBUG kernel:pci 0000:00:11.0: bridge window [io 0x2000-0x3fff] -05:50:20,521 DEBUG kernel:pci 0000:00:11.0: bridge window [mem 0xd1000000-0xd23fffff] -05:50:20,521 DEBUG kernel:pci 0000:00:11.0: bridge window [mem 0xdc400000-0xdc9fffff 64bit pref] -05:50:20,521 DEBUG kernel:pci 0000:00:11.0: bridge window [mem 0x000a0000-0x000bffff] (subtractive decode) -05:50:20,521 DEBUG kernel:pci 0000:00:11.0: bridge window [mem 0x000d0000-0x000d3fff] (subtractive decode) -05:50:20,521 DEBUG kernel:pci 0000:00:11.0: bridge window [mem 0x000d4000-0x000d7fff] (subtractive decode) -05:50:20,521 DEBUG kernel:pci 0000:00:11.0: bridge window [mem 0x000d8000-0x000dbfff] (subtractive decode) -05:50:20,521 DEBUG kernel:pci 0000:00:11.0: bridge window [mem 0x80000000-0xfebfffff] (subtractive decode) -05:50:20,521 DEBUG kernel:pci 0000:00:11.0: bridge window [io 0x0000-0x0cf7] (subtractive decode) -05:50:20,521 DEBUG kernel:pci 0000:00:11.0: bridge window [io 0x0d00-0xfeff] (subtractive decode) -05:50:20,521 INFO kernel:pci 0000:00:15.0: PCI bridge to [bus 03-03] -05:50:20,521 DEBUG kernel:pci 0000:00:15.0: bridge window [io 0x4000-0x4fff] -05:50:20,521 DEBUG kernel:pci 0000:00:15.0: bridge window [mem 0xd2400000-0xd24fffff] -05:50:20,521 DEBUG kernel:pci 0000:00:15.0: bridge window [mem 0xd4400000-0xd44fffff 64bit pref] -05:50:20,521 INFO kernel:pci 0000:00:15.1: PCI bridge to [bus 04-04] -05:50:20,521 DEBUG kernel:pci 0000:00:15.1: bridge window [io 0x8000-0x8fff] -05:50:20,521 DEBUG kernel:pci 0000:00:15.1: bridge window [mem 0xd2800000-0xd28fffff] -05:50:20,521 DEBUG kernel:pci 0000:00:15.1: bridge window [mem 0xd4800000-0xd48fffff 64bit pref] -05:50:20,521 INFO kernel:pci 0000:00:15.2: PCI bridge to [bus 05-05] -05:50:20,521 DEBUG kernel:pci 0000:00:15.2: bridge window [io 0xc000-0xcfff] -05:50:20,521 DEBUG kernel:pci 0000:00:15.2: bridge window [mem 0xd2c00000-0xd2cfffff] -05:50:20,521 DEBUG kernel:pci 0000:00:15.2: bridge window [mem 0xdcb00000-0xdcbfffff 64bit pref] -05:50:20,521 INFO kernel:pci 0000:00:15.3: PCI bridge to [bus 06-06] -05:50:20,521 DEBUG kernel:pci 0000:00:15.3: bridge window [io 0xf000-0x0000] (disabled) -05:50:20,521 DEBUG kernel:pci 0000:00:15.3: bridge window [mem 0xd3000000-0xd30fffff] -05:50:20,521 DEBUG kernel:pci 0000:00:15.3: bridge window [mem 0xdcd00000-0xdcdfffff 64bit pref] -05:50:20,521 INFO kernel:pci 0000:00:15.4: PCI bridge to [bus 07-07] -05:50:20,521 DEBUG kernel:pci 0000:00:15.4: bridge window [io 0xf000-0x0000] (disabled) -05:50:20,521 DEBUG kernel:pci 0000:00:15.4: bridge window [mem 0xd3400000-0xd34fffff] -05:50:20,521 DEBUG kernel:pci 0000:00:15.4: bridge window [mem 0xdcf00000-0xdcffffff 64bit pref] -05:50:20,521 INFO kernel:pci 0000:00:15.5: PCI bridge to [bus 08-08] -05:50:20,521 DEBUG kernel:pci 0000:00:15.5: bridge window [io 0xf000-0x0000] (disabled) -05:50:20,521 DEBUG kernel:pci 0000:00:15.5: bridge window [mem 0xd3800000-0xd38fffff] -05:50:20,521 DEBUG kernel:pci 0000:00:15.5: bridge window [mem 0xdd100000-0xdd1fffff 64bit pref] -05:50:20,521 INFO kernel:pci 0000:00:15.6: PCI bridge to [bus 09-09] -05:50:20,521 DEBUG kernel:pci 0000:00:15.6: bridge window [io 0xf000-0x0000] (disabled) -05:50:20,521 DEBUG kernel:pci 0000:00:15.6: bridge window [mem 0xd3c00000-0xd3cfffff] -05:50:20,521 DEBUG kernel:pci 0000:00:15.6: bridge window [mem 0xdd300000-0xdd3fffff 64bit pref] -05:50:20,521 INFO kernel:pci 0000:00:15.7: PCI bridge to [bus 0a-0a] -05:50:20,521 DEBUG kernel:pci 0000:00:15.7: bridge window [io 0xf000-0x0000] (disabled) -05:50:20,521 DEBUG kernel:pci 0000:00:15.7: bridge window [mem 0xd4000000-0xd40fffff] -05:50:20,521 DEBUG kernel:pci 0000:00:15.7: bridge window [mem 0xdd500000-0xdd5fffff 64bit pref] -05:50:20,521 INFO kernel:pci 0000:00:16.0: PCI bridge to [bus 0b-0b] -05:50:20,521 DEBUG kernel:pci 0000:00:16.0: bridge window [io 0x5000-0x5fff] -05:50:20,521 DEBUG kernel:pci 0000:00:16.0: bridge window [mem 0xd2500000-0xd25fffff] -05:50:20,521 DEBUG kernel:pci 0000:00:16.0: bridge window [mem 0xd4500000-0xd45fffff 64bit pref] -05:50:20,522 INFO kernel:pci 0000:00:16.1: PCI bridge to [bus 0c-0c] -05:50:20,522 DEBUG kernel:pci 0000:00:16.1: bridge window [io 0x9000-0x9fff] -05:50:20,522 DEBUG kernel:pci 0000:00:16.1: bridge window [mem 0xd2900000-0xd29fffff] -05:50:20,522 DEBUG kernel:pci 0000:00:16.1: bridge window [mem 0xd4900000-0xd49fffff 64bit pref] -05:50:20,522 INFO kernel:pci 0000:00:16.2: PCI bridge to [bus 0d-0d] -05:50:20,522 DEBUG kernel:pci 0000:00:16.2: bridge window [io 0xd000-0xdfff] -05:50:20,522 DEBUG kernel:pci 0000:00:16.2: bridge window [mem 0xd2d00000-0xd2dfffff] -05:50:20,522 DEBUG kernel:pci 0000:00:16.2: bridge window [mem 0xd4b00000-0xd4bfffff 64bit pref] -05:50:20,522 INFO kernel:pci 0000:00:16.3: PCI bridge to [bus 0e-0e] -05:50:20,522 DEBUG kernel:pci 0000:00:16.3: bridge window [io 0xf000-0x0000] (disabled) -05:50:20,522 DEBUG kernel:pci 0000:00:16.3: bridge window [mem 0xd3100000-0xd31fffff] -05:50:20,522 DEBUG kernel:pci 0000:00:16.3: bridge window [mem 0xd4d00000-0xd4dfffff 64bit pref] -05:50:20,522 INFO kernel:pci 0000:00:16.4: PCI bridge to [bus 0f-0f] -05:50:20,522 DEBUG kernel:pci 0000:00:16.4: bridge window [io 0xf000-0x0000] (disabled) -05:50:20,522 DEBUG kernel:pci 0000:00:16.4: bridge window [mem 0xd3500000-0xd35fffff] -05:50:20,522 DEBUG kernel:pci 0000:00:16.4: bridge window [mem 0xd4f00000-0xd4ffffff 64bit pref] -05:50:20,522 INFO kernel:pci 0000:00:16.5: PCI bridge to [bus 10-10] -05:50:20,522 DEBUG kernel:pci 0000:00:16.5: bridge window [io 0xf000-0x0000] (disabled) -05:50:20,522 DEBUG kernel:pci 0000:00:16.5: bridge window [mem 0xd3900000-0xd39fffff] -05:50:20,522 DEBUG kernel:pci 0000:00:16.5: bridge window [mem 0xd5100000-0xd51fffff 64bit pref] -05:50:20,522 INFO kernel:pci 0000:00:16.6: PCI bridge to [bus 11-11] -05:50:20,522 DEBUG kernel:pci 0000:00:16.6: bridge window [io 0xf000-0x0000] (disabled) -05:50:20,522 DEBUG kernel:pci 0000:00:16.6: bridge window [mem 0xd3d00000-0xd3dfffff] -05:50:20,522 DEBUG kernel:pci 0000:00:16.6: bridge window [mem 0xd5300000-0xd53fffff 64bit pref] -05:50:20,522 INFO kernel:pci 0000:00:16.7: PCI bridge to [bus 12-12] -05:50:20,522 DEBUG kernel:pci 0000:00:16.7: bridge window [io 0xf000-0x0000] (disabled) -05:50:20,522 DEBUG kernel:pci 0000:00:16.7: bridge window [mem 0xd4100000-0xd41fffff] -05:50:20,522 DEBUG kernel:pci 0000:00:16.7: bridge window [mem 0xd5500000-0xd55fffff 64bit pref] -05:50:20,522 INFO kernel:pci 0000:00:17.0: PCI bridge to [bus 13-13] -05:50:20,522 DEBUG kernel:pci 0000:00:17.0: bridge window [io 0x6000-0x6fff] -05:50:20,522 DEBUG kernel:pci 0000:00:17.0: bridge window [mem 0xd2600000-0xd26fffff] -05:50:20,522 DEBUG kernel:pci 0000:00:17.0: bridge window [mem 0xd4600000-0xd46fffff 64bit pref] -05:50:20,522 INFO kernel:pci 0000:00:17.1: PCI bridge to [bus 14-14] -05:50:20,522 DEBUG kernel:pci 0000:00:17.1: bridge window [io 0xa000-0xafff] -05:50:20,522 DEBUG kernel:pci 0000:00:17.1: bridge window [mem 0xd2a00000-0xd2afffff] -05:50:20,522 DEBUG kernel:pci 0000:00:17.1: bridge window [mem 0xdca00000-0xdcafffff 64bit pref] -05:50:20,522 INFO kernel:pci 0000:00:17.2: PCI bridge to [bus 15-15] -05:50:20,522 DEBUG kernel:pci 0000:00:17.2: bridge window [io 0xe000-0xefff] -05:50:20,522 DEBUG kernel:pci 0000:00:17.2: bridge window [mem 0xd2e00000-0xd2efffff] -05:50:20,522 DEBUG kernel:pci 0000:00:17.2: bridge window [mem 0xdcc00000-0xdccfffff 64bit pref] -05:50:20,522 INFO kernel:pci 0000:00:17.3: PCI bridge to [bus 16-16] -05:50:20,522 DEBUG kernel:pci 0000:00:17.3: bridge window [io 0xf000-0x0000] (disabled) -05:50:20,522 DEBUG kernel:pci 0000:00:17.3: bridge window [mem 0xd3200000-0xd32fffff] -05:50:20,522 DEBUG kernel:pci 0000:00:17.3: bridge window [mem 0xdce00000-0xdcefffff 64bit pref] -05:50:20,522 INFO kernel:pci 0000:00:17.4: PCI bridge to [bus 17-17] -05:50:20,522 DEBUG kernel:pci 0000:00:17.4: bridge window [io 0xf000-0x0000] (disabled) -05:50:20,522 DEBUG kernel:pci 0000:00:17.4: bridge window [mem 0xd3600000-0xd36fffff] -05:50:20,522 DEBUG kernel:pci 0000:00:17.4: bridge window [mem 0xdd000000-0xdd0fffff 64bit pref] -05:50:20,522 INFO kernel:pci 0000:00:17.5: PCI bridge to [bus 18-18] -05:50:20,522 DEBUG kernel:pci 0000:00:17.5: bridge window [io 0xf000-0x0000] (disabled) -05:50:20,522 DEBUG kernel:pci 0000:00:17.5: bridge window [mem 0xd3a00000-0xd3afffff] -05:50:20,522 DEBUG kernel:pci 0000:00:17.5: bridge window [mem 0xdd200000-0xdd2fffff 64bit pref] -05:50:20,522 INFO kernel:pci 0000:00:17.6: PCI bridge to [bus 19-19] -05:50:20,522 DEBUG kernel:pci 0000:00:17.6: bridge window [io 0xf000-0x0000] (disabled) -05:50:20,522 DEBUG kernel:pci 0000:00:17.6: bridge window [mem 0xd3e00000-0xd3efffff] -05:50:20,522 DEBUG kernel:pci 0000:00:17.6: bridge window [mem 0xdd400000-0xdd4fffff 64bit pref] -05:50:20,522 INFO kernel:pci 0000:00:17.7: PCI bridge to [bus 1a-1a] -05:50:20,522 DEBUG kernel:pci 0000:00:17.7: bridge window [io 0xf000-0x0000] (disabled) -05:50:20,522 DEBUG kernel:pci 0000:00:17.7: bridge window [mem 0xd4200000-0xd42fffff] -05:50:20,522 DEBUG kernel:pci 0000:00:17.7: bridge window [mem 0xdd600000-0xdd6fffff 64bit pref] -05:50:20,522 INFO kernel:pci 0000:00:18.0: PCI bridge to [bus 1b-1b] -05:50:20,522 DEBUG kernel:pci 0000:00:18.0: bridge window [io 0x7000-0x7fff] -05:50:20,522 DEBUG kernel:pci 0000:00:18.0: bridge window [mem 0xd2700000-0xd27fffff] -05:50:20,522 DEBUG kernel:pci 0000:00:18.0: bridge window [mem 0xd4700000-0xd47fffff 64bit pref] -05:50:20,522 INFO kernel:pci 0000:00:18.1: PCI bridge to [bus 1c-1c] -05:50:20,522 DEBUG kernel:pci 0000:00:18.1: bridge window [io 0xb000-0xbfff] -05:50:20,522 DEBUG kernel:pci 0000:00:18.1: bridge window [mem 0xd2b00000-0xd2bfffff] -05:50:20,522 DEBUG kernel:pci 0000:00:18.1: bridge window [mem 0xd4a00000-0xd4afffff 64bit pref] -05:50:20,522 INFO kernel:pci 0000:00:18.2: PCI bridge to [bus 1d-1d] -05:50:20,522 DEBUG kernel:pci 0000:00:18.2: bridge window [io 0xf000-0xffff] -05:50:20,522 DEBUG kernel:pci 0000:00:18.2: bridge window [mem 0xd2f00000-0xd2ffffff] -05:50:20,522 DEBUG kernel:pci 0000:00:18.2: bridge window [mem 0xd4c00000-0xd4cfffff 64bit pref] -05:50:20,522 INFO kernel:pci 0000:00:18.3: PCI bridge to [bus 1e-1e] -05:50:20,522 DEBUG kernel:pci 0000:00:18.3: bridge window [io 0xf000-0x0000] (disabled) -05:50:20,522 DEBUG kernel:pci 0000:00:18.3: bridge window [mem 0xd3300000-0xd33fffff] -05:50:20,522 DEBUG kernel:pci 0000:00:18.3: bridge window [mem 0xd4e00000-0xd4efffff 64bit pref] -05:50:20,522 INFO kernel:pci 0000:00:18.4: PCI bridge to [bus 1f-1f] -05:50:20,522 DEBUG kernel:pci 0000:00:18.4: bridge window [io 0xf000-0x0000] (disabled) -05:50:20,522 DEBUG kernel:pci 0000:00:18.4: bridge window [mem 0xd3700000-0xd37fffff] -05:50:20,522 DEBUG kernel:pci 0000:00:18.4: bridge window [mem 0xd5000000-0xd50fffff 64bit pref] -05:50:20,522 INFO kernel:pci 0000:00:18.5: PCI bridge to [bus 20-20] -05:50:20,522 DEBUG kernel:pci 0000:00:18.5: bridge window [io 0xf000-0x0000] (disabled) -05:50:20,522 DEBUG kernel:pci 0000:00:18.5: bridge window [mem 0xd3b00000-0xd3bfffff] -05:50:20,522 DEBUG kernel:pci 0000:00:18.5: bridge window [mem 0xd5200000-0xd52fffff 64bit pref] -05:50:20,522 INFO kernel:pci 0000:00:18.6: PCI bridge to [bus 21-21] -05:50:20,522 DEBUG kernel:pci 0000:00:18.6: bridge window [io 0xf000-0x0000] (disabled) -05:50:20,522 DEBUG kernel:pci 0000:00:18.6: bridge window [mem 0xd3f00000-0xd3ffffff] -05:50:20,522 DEBUG kernel:pci 0000:00:18.6: bridge window [mem 0xd5400000-0xd54fffff 64bit pref] -05:50:20,522 INFO kernel:pci 0000:00:18.7: PCI bridge to [bus 22-22] -05:50:20,522 DEBUG kernel:pci 0000:00:18.7: bridge window [io 0xf000-0x0000] (disabled) -05:50:20,522 DEBUG kernel:pci 0000:00:18.7: bridge window [mem 0xd4300000-0xd43fffff] -05:50:20,522 DEBUG kernel:pci 0000:00:18.7: bridge window [mem 0xd5600000-0xd56fffff 64bit pref] -05:50:20,522 DEBUG kernel:ACPI: PCI Interrupt Routing Table [\_SB_.PCI0._PRT] -05:50:20,522 INFO kernel: pci0000:00: Requesting ACPI _OSC control (0x1d) -05:50:20,522 INFO kernel: pci0000:00: ACPI _OSC control (0x15) granted -05:50:20,522 INFO kernel:ACPI: PCI Interrupt Link [LNKA] (IRQs 3 4 5 6 7 *9 10 11 14 15) -05:50:20,522 INFO kernel:ACPI: PCI Interrupt Link [LNKB] (IRQs 3 4 5 6 7 9 10 *11 14 15) -05:50:20,522 INFO kernel:ACPI: PCI Interrupt Link [LNKC] (IRQs 3 4 5 6 7 9 *10 11 14 15) -05:50:20,522 INFO kernel:ACPI: PCI Interrupt Link [LNKD] (IRQs 3 4 *5 6 7 9 10 11 14 15) -05:50:20,522 INFO kernel:vgaarb: device added: PCI:0000:00:0f.0,decodes=io+mem,owns=io+mem,locks=none -05:50:20,522 INFO kernel:vgaarb: loaded -05:50:20,522 INFO kernel:vgaarb: bridge control possible 0000:00:0f.0 -05:50:20,522 NOTICE kernel:SCSI subsystem initialized -05:50:20,522 DEBUG kernel:libata version 3.00 loaded. -05:50:20,522 INFO kernel:usbcore: registered new interface driver usbfs -05:50:20,522 INFO kernel:usbcore: registered new interface driver hub -05:50:20,522 INFO kernel:usbcore: registered new device driver usb -05:50:20,522 INFO kernel:PCI: Using ACPI for IRQ routing -05:50:20,522 DEBUG kernel:PCI: old code would have set cacheline size to 32 bytes, but clflush_size = 64 -05:50:20,522 DEBUG kernel:PCI: pci_cache_line_size set to 64 bytes -05:50:20,522 INFO kernel:pci 0000:00:18.2: no compatible bridge window for [io 0xf000-0xffff] -05:50:20,522 INFO kernel:pci 0000:00:18.2: can't reserve window [io 0xf000-0xffff] -05:50:20,522 NOTICE kernel:lo: Dropping TSO features since no CSUM feature. -05:50:20,522 INFO kernel:NetLabel: Initializing -05:50:20,522 INFO kernel:NetLabel: domain hash size = 128 -05:50:20,522 INFO kernel:NetLabel: protocols = UNLABELED CIPSOv4 -05:50:20,522 INFO kernel:NetLabel: unlabeled traffic allowed by default -05:50:20,522 INFO kernel:HPET: 16 timers in total, 0 timers will be used for per-cpu timer -05:50:20,522 INFO kernel:hpet0: at MMIO 0xfed00000, IRQs 2, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 -05:50:20,522 INFO kernel:hpet0: 16 comparators, 64-bit 14.318180 MHz counter -05:50:20,522 INFO kernel:Switching to clocksource hpet -05:50:20,522 INFO kernel:pnp: PnP ACPI init -05:50:20,522 INFO kernel:ACPI: bus type pnp registered -05:50:20,522 DEBUG kernel:pnp 00:00: [io 0x0cf8-0x0cff] -05:50:20,522 DEBUG kernel:pnp 00:00: Plug and Play ACPI device, IDs PNP0a03 PNP0a08 (active) -05:50:20,522 DEBUG kernel:pnp 00:01: [io 0x0010-0x001f] -05:50:20,522 DEBUG kernel:pnp 00:01: [io 0x0024-0x0025] -05:50:20,522 DEBUG kernel:pnp 00:01: [io 0x0028-0x0029] -05:50:20,522 DEBUG kernel:pnp 00:01: [io 0x002c-0x002d] -05:50:20,522 DEBUG kernel:pnp 00:01: [io 0x002e-0x002f] -05:50:20,522 DEBUG kernel:pnp 00:01: [io 0x0030-0x0031] -05:50:20,522 DEBUG kernel:pnp 00:01: [io 0x0034-0x0035] -05:50:20,522 DEBUG kernel:pnp 00:01: [io 0x0038-0x0039] -05:50:20,522 DEBUG kernel:pnp 00:01: [io 0x003c-0x003d] -05:50:20,522 DEBUG kernel:pnp 00:01: [io 0x0050-0x0053] -05:50:20,522 DEBUG kernel:pnp 00:01: [io 0x0072-0x0077] -05:50:20,522 DEBUG kernel:pnp 00:01: [io 0x0080] -05:50:20,522 DEBUG kernel:pnp 00:01: [io 0x0090-0x009f] -05:50:20,522 DEBUG kernel:pnp 00:01: [io 0x00a4-0x00a5] -05:50:20,522 DEBUG kernel:pnp 00:01: [io 0x00a8-0x00a9] -05:50:20,522 DEBUG kernel:pnp 00:01: [io 0x00ac-0x00ad] -05:50:20,522 DEBUG kernel:pnp 00:01: [io 0x00b0-0x00b5] -05:50:20,522 DEBUG kernel:pnp 00:01: [io 0x00b8-0x00b9] -05:50:20,522 DEBUG kernel:pnp 00:01: [io 0x00bc-0x00bd] -05:50:20,522 DEBUG kernel:pnp 00:01: [io 0x1000-0x103f] -05:50:20,522 DEBUG kernel:pnp 00:01: [io 0x1040-0x104f] -05:50:20,522 DEBUG kernel:pnp 00:01: [io 0x0cf0-0x0cf1] -05:50:20,522 DEBUG kernel:pnp 00:01: Plug and Play ACPI device, IDs PNP0c02 (active) -05:50:20,522 DEBUG kernel:pnp 00:02: [io 0x0000-0x000f] -05:50:20,522 DEBUG kernel:pnp 00:02: [io 0x0081-0x008f] -05:50:20,522 DEBUG kernel:pnp 00:02: [io 0x00c0-0x00df] -05:50:20,522 DEBUG kernel:pnp 00:02: [dma 4] -05:50:20,522 DEBUG kernel:pnp 00:02: Plug and Play ACPI device, IDs PNP0200 (active) -05:50:20,522 DEBUG kernel:pnp 00:03: [io 0x0020-0x0021] -05:50:20,522 DEBUG kernel:pnp 00:03: [io 0x00a0-0x00a1] -05:50:20,522 DEBUG kernel:pnp 00:03: [io 0x04d0-0x04d1] -05:50:20,522 DEBUG kernel:pnp 00:03: [irq 2 disabled] -05:50:20,522 DEBUG kernel:pnp 00:03: Plug and Play ACPI device, IDs PNP0001 (active) -05:50:20,522 DEBUG kernel:pnp 00:04: [io 0x0070-0x0071] -05:50:20,522 DEBUG kernel:pnp 00:04: [irq 8] -05:50:20,522 DEBUG kernel:pnp 00:04: Plug and Play ACPI device, IDs PNP0b00 (active) -05:50:20,522 DEBUG kernel:pnp 00:05: [io 0x0061] -05:50:20,522 DEBUG kernel:pnp 00:05: Plug and Play ACPI device, IDs PNP0800 (active) -05:50:20,522 DEBUG kernel:pnp 00:06: [io 0x0060] -05:50:20,522 DEBUG kernel:pnp 00:06: [io 0x0064] -05:50:20,522 DEBUG kernel:pnp 00:06: [irq 1] -05:50:20,522 DEBUG kernel:pnp 00:06: Plug and Play ACPI device, IDs PNP0303 (active) -05:50:20,522 DEBUG kernel:pnp 00:07: [irq 12] -05:50:20,522 DEBUG kernel:pnp 00:07: Plug and Play ACPI device, IDs PNP0f13 (active) -05:50:20,522 DEBUG kernel:pnp 00:08: [mem 0xfed00000-0xfed003ff] -05:50:20,522 DEBUG kernel:pnp 00:08: Plug and Play ACPI device, IDs PNP0103 PNP0c01 (active) -05:50:20,522 DEBUG kernel:pnp 00:09: [io 0x0378-0x037f] -05:50:20,522 DEBUG kernel:pnp 00:09: [irq 7] -05:50:20,522 DEBUG kernel:pnp 00:09: Plug and Play ACPI device, IDs PNP0400 (active) -05:50:20,522 DEBUG kernel:pnp 00:0a: [io 0x03f8-0x03ff] -05:50:20,522 DEBUG kernel:pnp 00:0a: [irq 4] -05:50:20,522 DEBUG kernel:pnp 00:0a: Plug and Play ACPI device, IDs PNP0501 (active) -05:50:20,522 DEBUG kernel:pnp 00:0b: [io 0x02f8-0x02ff] -05:50:20,522 DEBUG kernel:pnp 00:0b: [irq 3] -05:50:20,522 DEBUG kernel:pnp 00:0b: Plug and Play ACPI device, IDs PNP0501 (active) -05:50:20,522 DEBUG kernel:pnp 00:0c: [io 0x03f0-0x03f5] -05:50:20,522 DEBUG kernel:pnp 00:0c: [io 0x03f7] -05:50:20,522 DEBUG kernel:pnp 00:0c: [irq 6] -05:50:20,522 DEBUG kernel:pnp 00:0c: [dma 2] -05:50:20,522 DEBUG kernel:pnp 00:0c: Plug and Play ACPI device, IDs PNP0700 (active) -05:50:20,522 DEBUG kernel:pnp 00:0d: [mem 0xe0000000-0xefffffff] -05:50:20,522 DEBUG kernel:pnp 00:0d: [io 0x1060-0x107f] -05:50:20,522 DEBUG kernel:pnp 00:0d: [mem 0xd0200000-0xd03fffff] -05:50:20,522 DEBUG kernel:pnp 00:0d: Plug and Play ACPI device, IDs PNP0c02 (active) -05:50:20,522 INFO kernel:pnp: PnP ACPI: found 14 devices -05:50:20,522 INFO kernel:ACPI: ACPI bus type pnp unregistered -05:50:20,522 INFO kernel:system 00:01: [io 0x1000-0x103f] has been reserved -05:50:20,522 INFO kernel:system 00:01: [io 0x1040-0x104f] has been reserved -05:50:20,522 INFO kernel:system 00:01: [io 0x0cf0-0x0cf1] has been reserved -05:50:20,522 INFO kernel:system 00:08: [mem 0xfed00000-0xfed003ff] has been reserved -05:50:20,522 INFO kernel:system 00:0d: [io 0x1060-0x107f] has been reserved -05:50:20,522 INFO kernel:system 00:0d: [mem 0xe0000000-0xefffffff] has been reserved -05:50:20,522 INFO kernel:system 00:0d: [mem 0xd0200000-0xd03fffff] has been reserved -05:50:20,522 DEBUG kernel:PCI: max bus depth: 1 pci_try_num: 2 -05:50:20,522 INFO kernel:pci 0000:00:0f.0: BAR 6: assigned [mem 0x80000000-0x80007fff pref] -05:50:20,522 INFO kernel:pci 0000:00:10.0: BAR 6: assigned [mem 0x80008000-0x8000bfff pref] -05:50:20,522 INFO kernel:pci 0000:00:18.2: BAR 13: can't assign io (size 0x1000) -05:50:20,522 INFO kernel:pci 0000:00:18.7: BAR 13: can't assign io (size 0x1000) -05:50:20,522 INFO kernel:pci 0000:00:18.6: BAR 13: can't assign io (size 0x1000) -05:50:20,522 INFO kernel:pci 0000:00:18.5: BAR 13: can't assign io (size 0x1000) -05:50:20,522 INFO kernel:pci 0000:00:18.4: BAR 13: can't assign io (size 0x1000) -05:50:20,522 INFO kernel:pci 0000:00:18.3: BAR 13: can't assign io (size 0x1000) -05:50:20,523 INFO kernel:pci 0000:00:17.7: BAR 13: can't assign io (size 0x1000) -05:50:20,523 INFO kernel:pci 0000:00:17.6: BAR 13: can't assign io (size 0x1000) -05:50:20,523 INFO kernel:pci 0000:00:17.5: BAR 13: can't assign io (size 0x1000) -05:50:20,523 INFO kernel:pci 0000:00:17.4: BAR 13: can't assign io (size 0x1000) -05:50:20,523 INFO kernel:pci 0000:00:17.3: BAR 13: can't assign io (size 0x1000) -05:50:20,523 INFO kernel:pci 0000:00:16.7: BAR 13: can't assign io (size 0x1000) -05:50:20,523 INFO kernel:pci 0000:00:16.6: BAR 13: can't assign io (size 0x1000) -05:50:20,523 INFO kernel:pci 0000:00:16.5: BAR 13: can't assign io (size 0x1000) -05:50:20,523 INFO kernel:pci 0000:00:16.4: BAR 13: can't assign io (size 0x1000) -05:50:20,523 INFO kernel:pci 0000:00:16.3: BAR 13: can't assign io (size 0x1000) -05:50:20,523 INFO kernel:pci 0000:00:15.7: BAR 13: can't assign io (size 0x1000) -05:50:20,523 INFO kernel:pci 0000:00:15.6: BAR 13: can't assign io (size 0x1000) -05:50:20,523 INFO kernel:pci 0000:00:15.5: BAR 13: can't assign io (size 0x1000) -05:50:20,523 INFO kernel:pci 0000:00:15.4: BAR 13: can't assign io (size 0x1000) -05:50:20,523 INFO kernel:pci 0000:00:15.3: BAR 13: can't assign io (size 0x1000) -05:50:20,523 INFO kernel:pci 0000:00:01.0: PCI bridge to [bus 01-01] -05:50:20,523 INFO kernel:pci 0000:00:01.0: PCI bridge to [bus 01-01] -05:50:20,523 INFO kernel:pci 0000:00:01.0: bridge window [io disabled] -05:50:20,523 INFO kernel:pci 0000:00:01.0: bridge window [mem disabled] -05:50:20,523 INFO kernel:pci 0000:00:01.0: bridge window [mem pref disabled] -05:50:20,523 INFO kernel:pci 0000:02:00.0: BAR 6: assigned [mem 0xdc400000-0xdc40ffff pref] -05:50:20,523 INFO kernel:pci 0000:02:01.0: BAR 6: assigned [mem 0xdc410000-0xdc41ffff pref] -05:50:20,523 INFO kernel:pci 0000:02:02.0: BAR 6: assigned [mem 0xdc420000-0xdc42ffff pref] -05:50:20,523 INFO kernel:pci 0000:02:03.0: BAR 6: assigned [mem 0xdc430000-0xdc43ffff pref] -05:50:20,523 INFO kernel:pci 0000:00:11.0: PCI bridge to [bus 02-02] -05:50:20,523 INFO kernel:pci 0000:00:11.0: PCI bridge to [bus 02-02] -05:50:20,523 INFO kernel:pci 0000:00:11.0: bridge window [io 0x2000-0x3fff] -05:50:20,523 INFO kernel:pci 0000:00:11.0: bridge window [mem 0xd1000000-0xd23fffff] -05:50:20,523 INFO kernel:pci 0000:00:11.0: bridge window [mem 0xdc400000-0xdc9fffff 64bit pref] -05:50:20,523 INFO kernel:pci 0000:00:15.0: PCI bridge to [bus 03-03] -05:50:20,523 INFO kernel:pci 0000:00:15.0: PCI bridge to [bus 03-03] -05:50:20,523 INFO kernel:pci 0000:00:15.0: bridge window [io 0x4000-0x4fff] -05:50:20,523 INFO kernel:pci 0000:00:15.0: bridge window [mem 0xd2400000-0xd24fffff] -05:50:20,523 INFO kernel:pci 0000:00:15.0: bridge window [mem 0xd4400000-0xd44fffff 64bit pref] -05:50:20,523 INFO kernel:pci 0000:00:15.1: PCI bridge to [bus 04-04] -05:50:20,523 INFO kernel:pci 0000:00:15.1: PCI bridge to [bus 04-04] -05:50:20,523 INFO kernel:pci 0000:00:15.1: bridge window [io 0x8000-0x8fff] -05:50:20,523 INFO kernel:pci 0000:00:15.1: bridge window [mem 0xd2800000-0xd28fffff] -05:50:20,523 INFO kernel:pci 0000:00:15.1: bridge window [mem 0xd4800000-0xd48fffff 64bit pref] -05:50:20,523 INFO kernel:pci 0000:00:15.2: PCI bridge to [bus 05-05] -05:50:20,523 INFO kernel:pci 0000:00:15.2: PCI bridge to [bus 05-05] -05:50:20,523 INFO kernel:pci 0000:00:15.2: bridge window [io 0xc000-0xcfff] -05:50:20,523 INFO kernel:pci 0000:00:15.2: bridge window [mem 0xd2c00000-0xd2cfffff] -05:50:20,523 INFO kernel:pci 0000:00:15.2: bridge window [mem 0xdcb00000-0xdcbfffff 64bit pref] -05:50:20,523 INFO kernel:pci 0000:00:15.3: PCI bridge to [bus 06-06] -05:50:20,523 INFO kernel:pci 0000:00:15.3: PCI bridge to [bus 06-06] -05:50:20,523 INFO kernel:pci 0000:00:15.3: bridge window [io disabled] -05:50:20,523 INFO kernel:pci 0000:00:15.3: bridge window [mem 0xd3000000-0xd30fffff] -05:50:20,523 INFO kernel:pci 0000:00:15.3: bridge window [mem 0xdcd00000-0xdcdfffff 64bit pref] -05:50:20,523 INFO kernel:pci 0000:00:15.4: PCI bridge to [bus 07-07] -05:50:20,523 INFO kernel:pci 0000:00:15.4: PCI bridge to [bus 07-07] -05:50:20,523 INFO kernel:pci 0000:00:15.4: bridge window [io disabled] -05:50:20,523 INFO kernel:pci 0000:00:15.4: bridge window [mem 0xd3400000-0xd34fffff] -05:50:20,523 INFO kernel:pci 0000:00:15.4: bridge window [mem 0xdcf00000-0xdcffffff 64bit pref] -05:50:20,523 INFO kernel:pci 0000:00:15.5: PCI bridge to [bus 08-08] -05:50:20,523 INFO kernel:pci 0000:00:15.5: PCI bridge to [bus 08-08] -05:50:20,523 INFO kernel:pci 0000:00:15.5: bridge window [io disabled] -05:50:20,523 INFO kernel:pci 0000:00:15.5: bridge window [mem 0xd3800000-0xd38fffff] -05:50:20,523 INFO kernel:pci 0000:00:15.5: bridge window [mem 0xdd100000-0xdd1fffff 64bit pref] -05:50:20,523 INFO kernel:pci 0000:00:15.6: PCI bridge to [bus 09-09] -05:50:20,523 INFO kernel:pci 0000:00:15.6: PCI bridge to [bus 09-09] -05:50:20,523 INFO kernel:pci 0000:00:15.6: bridge window [io disabled] -05:50:20,523 INFO kernel:pci 0000:00:15.6: bridge window [mem 0xd3c00000-0xd3cfffff] -05:50:20,523 INFO kernel:pci 0000:00:15.6: bridge window [mem 0xdd300000-0xdd3fffff 64bit pref] -05:50:20,523 INFO kernel:pci 0000:00:15.7: PCI bridge to [bus 0a-0a] -05:50:20,523 INFO kernel:pci 0000:00:15.7: PCI bridge to [bus 0a-0a] -05:50:20,523 INFO kernel:pci 0000:00:15.7: bridge window [io disabled] -05:50:20,523 INFO kernel:pci 0000:00:15.7: bridge window [mem 0xd4000000-0xd40fffff] -05:50:20,523 INFO kernel:pci 0000:00:15.7: bridge window [mem 0xdd500000-0xdd5fffff 64bit pref] -05:50:20,523 INFO kernel:pci 0000:00:16.0: PCI bridge to [bus 0b-0b] -05:50:20,523 INFO kernel:pci 0000:00:16.0: PCI bridge to [bus 0b-0b] -05:50:20,523 INFO kernel:pci 0000:00:16.0: bridge window [io 0x5000-0x5fff] -05:50:20,523 INFO kernel:pci 0000:00:16.0: bridge window [mem 0xd2500000-0xd25fffff] -05:50:20,523 INFO kernel:pci 0000:00:16.0: bridge window [mem 0xd4500000-0xd45fffff 64bit pref] -05:50:20,523 INFO kernel:pci 0000:00:16.1: PCI bridge to [bus 0c-0c] -05:50:20,523 INFO kernel:pci 0000:00:16.1: PCI bridge to [bus 0c-0c] -05:50:20,523 INFO kernel:pci 0000:00:16.1: bridge window [io 0x9000-0x9fff] -05:50:20,523 INFO kernel:pci 0000:00:16.1: bridge window [mem 0xd2900000-0xd29fffff] -05:50:20,523 INFO kernel:pci 0000:00:16.1: bridge window [mem 0xd4900000-0xd49fffff 64bit pref] -05:50:20,523 INFO kernel:pci 0000:00:16.2: PCI bridge to [bus 0d-0d] -05:50:20,523 INFO kernel:pci 0000:00:16.2: PCI bridge to [bus 0d-0d] -05:50:20,523 INFO kernel:pci 0000:00:16.2: bridge window [io 0xd000-0xdfff] -05:50:20,523 INFO kernel:pci 0000:00:16.2: bridge window [mem 0xd2d00000-0xd2dfffff] -05:50:20,523 INFO kernel:pci 0000:00:16.2: bridge window [mem 0xd4b00000-0xd4bfffff 64bit pref] -05:50:20,523 INFO kernel:pci 0000:00:16.3: PCI bridge to [bus 0e-0e] -05:50:20,523 INFO kernel:pci 0000:00:16.3: PCI bridge to [bus 0e-0e] -05:50:20,523 INFO kernel:pci 0000:00:16.3: bridge window [io disabled] -05:50:20,523 INFO kernel:pci 0000:00:16.3: bridge window [mem 0xd3100000-0xd31fffff] -05:50:20,523 INFO kernel:pci 0000:00:16.3: bridge window [mem 0xd4d00000-0xd4dfffff 64bit pref] -05:50:20,523 INFO kernel:pci 0000:00:16.4: PCI bridge to [bus 0f-0f] -05:50:20,523 INFO kernel:pci 0000:00:16.4: PCI bridge to [bus 0f-0f] -05:50:20,523 INFO kernel:pci 0000:00:16.4: bridge window [io disabled] -05:50:20,523 INFO kernel:pci 0000:00:16.4: bridge window [mem 0xd3500000-0xd35fffff] -05:50:20,523 INFO kernel:pci 0000:00:16.4: bridge window [mem 0xd4f00000-0xd4ffffff 64bit pref] -05:50:20,523 INFO kernel:pci 0000:00:16.5: PCI bridge to [bus 10-10] -05:50:20,523 INFO kernel:pci 0000:00:16.5: PCI bridge to [bus 10-10] -05:50:20,523 INFO kernel:pci 0000:00:16.5: bridge window [io disabled] -05:50:20,523 INFO kernel:pci 0000:00:16.5: bridge window [mem 0xd3900000-0xd39fffff] -05:50:20,523 INFO kernel:pci 0000:00:16.5: bridge window [mem 0xd5100000-0xd51fffff 64bit pref] -05:50:20,523 INFO kernel:pci 0000:00:16.6: PCI bridge to [bus 11-11] -05:50:20,523 INFO kernel:pci 0000:00:16.6: PCI bridge to [bus 11-11] -05:50:20,523 INFO kernel:pci 0000:00:16.6: bridge window [io disabled] -05:50:20,523 INFO kernel:pci 0000:00:16.6: bridge window [mem 0xd3d00000-0xd3dfffff] -05:50:20,523 INFO kernel:pci 0000:00:16.6: bridge window [mem 0xd5300000-0xd53fffff 64bit pref] -05:50:20,523 INFO kernel:pci 0000:00:16.7: PCI bridge to [bus 12-12] -05:50:20,523 INFO kernel:pci 0000:00:16.7: PCI bridge to [bus 12-12] -05:50:20,523 INFO kernel:pci 0000:00:16.7: bridge window [io disabled] -05:50:20,523 INFO kernel:pci 0000:00:16.7: bridge window [mem 0xd4100000-0xd41fffff] -05:50:20,523 INFO kernel:pci 0000:00:16.7: bridge window [mem 0xd5500000-0xd55fffff 64bit pref] -05:50:20,523 INFO kernel:pci 0000:00:17.0: PCI bridge to [bus 13-13] -05:50:20,523 INFO kernel:pci 0000:00:17.0: PCI bridge to [bus 13-13] -05:50:20,523 INFO kernel:pci 0000:00:17.0: bridge window [io 0x6000-0x6fff] -05:50:20,523 INFO kernel:pci 0000:00:17.0: bridge window [mem 0xd2600000-0xd26fffff] -05:50:20,523 INFO kernel:pci 0000:00:17.0: bridge window [mem 0xd4600000-0xd46fffff 64bit pref] -05:50:20,523 INFO kernel:pci 0000:00:17.1: PCI bridge to [bus 14-14] -05:50:20,523 INFO kernel:pci 0000:00:17.1: PCI bridge to [bus 14-14] -05:50:20,523 INFO kernel:pci 0000:00:17.1: bridge window [io 0xa000-0xafff] -05:50:20,523 INFO kernel:pci 0000:00:17.1: bridge window [mem 0xd2a00000-0xd2afffff] -05:50:20,523 INFO kernel:pci 0000:00:17.1: bridge window [mem 0xdca00000-0xdcafffff 64bit pref] -05:50:20,523 INFO kernel:pci 0000:00:17.2: PCI bridge to [bus 15-15] -05:50:20,523 INFO kernel:pci 0000:00:17.2: PCI bridge to [bus 15-15] -05:50:20,523 INFO kernel:pci 0000:00:17.2: bridge window [io 0xe000-0xefff] -05:50:20,523 INFO kernel:pci 0000:00:17.2: bridge window [mem 0xd2e00000-0xd2efffff] -05:50:20,523 INFO kernel:pci 0000:00:17.2: bridge window [mem 0xdcc00000-0xdccfffff 64bit pref] -05:50:20,523 INFO kernel:pci 0000:00:17.3: PCI bridge to [bus 16-16] -05:50:20,523 INFO kernel:pci 0000:00:17.3: PCI bridge to [bus 16-16] -05:50:20,523 INFO kernel:pci 0000:00:17.3: bridge window [io disabled] -05:50:20,523 INFO kernel:pci 0000:00:17.3: bridge window [mem 0xd3200000-0xd32fffff] -05:50:20,523 INFO kernel:pci 0000:00:17.3: bridge window [mem 0xdce00000-0xdcefffff 64bit pref] -05:50:20,523 INFO kernel:pci 0000:00:17.4: PCI bridge to [bus 17-17] -05:50:20,523 INFO kernel:pci 0000:00:17.4: PCI bridge to [bus 17-17] -05:50:20,523 INFO kernel:pci 0000:00:17.4: bridge window [io disabled] -05:50:20,523 INFO kernel:pci 0000:00:17.4: bridge window [mem 0xd3600000-0xd36fffff] -05:50:20,523 INFO kernel:pci 0000:00:17.4: bridge window [mem 0xdd000000-0xdd0fffff 64bit pref] -05:50:20,523 INFO kernel:pci 0000:00:17.5: PCI bridge to [bus 18-18] -05:50:20,523 INFO kernel:pci 0000:00:17.5: PCI bridge to [bus 18-18] -05:50:20,523 INFO kernel:pci 0000:00:17.5: bridge window [io disabled] -05:50:20,523 INFO kernel:pci 0000:00:17.5: bridge window [mem 0xd3a00000-0xd3afffff] -05:50:20,523 INFO kernel:pci 0000:00:17.5: bridge window [mem 0xdd200000-0xdd2fffff 64bit pref] -05:50:20,523 INFO kernel:pci 0000:00:17.6: PCI bridge to [bus 19-19] -05:50:20,523 INFO kernel:pci 0000:00:17.6: PCI bridge to [bus 19-19] -05:50:20,523 INFO kernel:pci 0000:00:17.6: bridge window [io disabled] -05:50:20,523 INFO kernel:pci 0000:00:17.6: bridge window [mem 0xd3e00000-0xd3efffff] -05:50:20,523 INFO kernel:pci 0000:00:17.6: bridge window [mem 0xdd400000-0xdd4fffff 64bit pref] -05:50:20,523 INFO kernel:pci 0000:00:17.7: PCI bridge to [bus 1a-1a] -05:50:20,523 INFO kernel:pci 0000:00:17.7: PCI bridge to [bus 1a-1a] -05:50:20,523 INFO kernel:pci 0000:00:17.7: bridge window [io disabled] -05:50:20,523 INFO kernel:pci 0000:00:17.7: bridge window [mem 0xd4200000-0xd42fffff] -05:50:20,523 INFO kernel:pci 0000:00:17.7: bridge window [mem 0xdd600000-0xdd6fffff 64bit pref] -05:50:20,523 INFO kernel:pci 0000:00:18.0: PCI bridge to [bus 1b-1b] -05:50:20,523 INFO kernel:pci 0000:00:18.0: PCI bridge to [bus 1b-1b] -05:50:20,523 INFO kernel:pci 0000:00:18.0: bridge window [io 0x7000-0x7fff] -05:50:20,523 INFO kernel:pci 0000:00:18.0: bridge window [mem 0xd2700000-0xd27fffff] -05:50:20,523 INFO kernel:pci 0000:00:18.0: bridge window [mem 0xd4700000-0xd47fffff 64bit pref] -05:50:20,523 INFO kernel:pci 0000:00:18.1: PCI bridge to [bus 1c-1c] -05:50:20,523 INFO kernel:pci 0000:00:18.1: PCI bridge to [bus 1c-1c] -05:50:20,523 INFO kernel:pci 0000:00:18.1: bridge window [io 0xb000-0xbfff] -05:50:20,523 INFO kernel:pci 0000:00:18.1: bridge window [mem 0xd2b00000-0xd2bfffff] -05:50:20,523 INFO kernel:pci 0000:00:18.1: bridge window [mem 0xd4a00000-0xd4afffff 64bit pref] -05:50:20,523 INFO kernel:pci 0000:00:18.2: PCI bridge to [bus 1d-1d] -05:50:20,523 INFO kernel:pci 0000:00:18.2: PCI bridge to [bus 1d-1d] -05:50:20,523 INFO kernel:pci 0000:00:18.2: bridge window [io disabled] -05:50:20,523 INFO kernel:pci 0000:00:18.2: bridge window [mem 0xd2f00000-0xd2ffffff] -05:50:20,523 INFO kernel:pci 0000:00:18.2: bridge window [mem 0xd4c00000-0xd4cfffff 64bit pref] -05:50:20,523 INFO kernel:pci 0000:00:18.3: PCI bridge to [bus 1e-1e] -05:50:20,523 INFO kernel:pci 0000:00:18.3: PCI bridge to [bus 1e-1e] -05:50:20,523 INFO kernel:pci 0000:00:18.3: bridge window [io disabled] -05:50:20,523 INFO kernel:pci 0000:00:18.3: bridge window [mem 0xd3300000-0xd33fffff] -05:50:20,523 INFO kernel:pci 0000:00:18.3: bridge window [mem 0xd4e00000-0xd4efffff 64bit pref] -05:50:20,523 INFO kernel:pci 0000:00:18.4: PCI bridge to [bus 1f-1f] -05:50:20,523 INFO kernel:pci 0000:00:18.4: PCI bridge to [bus 1f-1f] -05:50:20,523 INFO kernel:pci 0000:00:18.4: bridge window [io disabled] -05:50:20,523 INFO kernel:pci 0000:00:18.4: bridge window [mem 0xd3700000-0xd37fffff] -05:50:20,523 INFO kernel:pci 0000:00:18.4: bridge window [mem 0xd5000000-0xd50fffff 64bit pref] -05:50:20,523 INFO kernel:pci 0000:00:18.5: PCI bridge to [bus 20-20] -05:50:20,523 INFO kernel:pci 0000:00:18.5: PCI bridge to [bus 20-20] -05:50:20,523 INFO kernel:pci 0000:00:18.5: bridge window [io disabled] -05:50:20,523 INFO kernel:pci 0000:00:18.5: bridge window [mem 0xd3b00000-0xd3bfffff] -05:50:20,523 INFO kernel:pci 0000:00:18.5: bridge window [mem 0xd5200000-0xd52fffff 64bit pref] -05:50:20,523 INFO kernel:pci 0000:00:18.6: PCI bridge to [bus 21-21] -05:50:20,523 INFO kernel:pci 0000:00:18.6: PCI bridge to [bus 21-21] -05:50:20,523 INFO kernel:pci 0000:00:18.6: bridge window [io disabled] -05:50:20,523 INFO kernel:pci 0000:00:18.6: bridge window [mem 0xd3f00000-0xd3ffffff] -05:50:20,523 INFO kernel:pci 0000:00:18.6: bridge window [mem 0xd5400000-0xd54fffff 64bit pref] -05:50:20,523 INFO kernel:pci 0000:00:18.7: PCI bridge to [bus 22-22] -05:50:20,523 INFO kernel:pci 0000:00:18.7: PCI bridge to [bus 22-22] -05:50:20,523 INFO kernel:pci 0000:00:18.7: bridge window [io disabled] -05:50:20,523 INFO kernel:pci 0000:00:18.7: bridge window [mem 0xd4300000-0xd43fffff] -05:50:20,523 INFO kernel:pci 0000:00:18.7: bridge window [mem 0xd5600000-0xd56fffff 64bit pref] -05:50:20,523 DEBUG kernel:pci 0000:00:01.0: setting latency timer to 64 -05:50:20,523 DEBUG kernel:pci 0000:00:15.0: setting latency timer to 64 -05:50:20,523 DEBUG kernel:pci 0000:00:15.1: setting latency timer to 64 -05:50:20,523 DEBUG kernel:pci 0000:00:15.2: setting latency timer to 64 -05:50:20,523 DEBUG kernel:pci 0000:00:15.3: setting latency timer to 64 -05:50:20,523 DEBUG kernel:pci 0000:00:15.4: setting latency timer to 64 -05:50:20,523 DEBUG kernel:pci 0000:00:15.5: setting latency timer to 64 -05:50:20,523 DEBUG kernel:pci 0000:00:15.6: setting latency timer to 64 -05:50:20,523 DEBUG kernel:pci 0000:00:15.7: setting latency timer to 64 -05:50:20,523 DEBUG kernel:pci 0000:00:16.0: setting latency timer to 64 -05:50:20,523 DEBUG kernel:pci 0000:00:16.1: setting latency timer to 64 -05:50:20,523 DEBUG kernel:pci 0000:00:16.2: setting latency timer to 64 -05:50:20,523 DEBUG kernel:pci 0000:00:16.3: setting latency timer to 64 -05:50:20,523 DEBUG kernel:pci 0000:00:16.4: setting latency timer to 64 -05:50:20,523 DEBUG kernel:pci 0000:00:16.5: setting latency timer to 64 -05:50:20,523 DEBUG kernel:pci 0000:00:16.6: setting latency timer to 64 -05:50:20,523 DEBUG kernel:pci 0000:00:16.7: setting latency timer to 64 -05:50:20,523 DEBUG kernel:pci 0000:00:17.0: setting latency timer to 64 -05:50:20,523 DEBUG kernel:pci 0000:00:17.1: setting latency timer to 64 -05:50:20,523 DEBUG kernel:pci 0000:00:17.2: setting latency timer to 64 -05:50:20,523 DEBUG kernel:pci 0000:00:17.3: setting latency timer to 64 -05:50:20,523 DEBUG kernel:pci 0000:00:17.4: setting latency timer to 64 -05:50:20,523 DEBUG kernel:pci 0000:00:17.5: setting latency timer to 64 -05:50:20,523 DEBUG kernel:pci 0000:00:17.6: setting latency timer to 64 -05:50:20,523 DEBUG kernel:pci 0000:00:17.7: setting latency timer to 64 -05:50:20,523 DEBUG kernel:pci 0000:00:18.0: setting latency timer to 64 -05:50:20,523 DEBUG kernel:pci 0000:00:18.1: setting latency timer to 64 -05:50:20,523 DEBUG kernel:pci 0000:00:18.2: setting latency timer to 64 -05:50:20,523 DEBUG kernel:pci 0000:00:18.3: setting latency timer to 64 -05:50:20,523 DEBUG kernel:pci 0000:00:18.4: setting latency timer to 64 -05:50:20,523 DEBUG kernel:pci 0000:00:18.5: setting latency timer to 64 -05:50:20,523 DEBUG kernel:pci 0000:00:18.6: setting latency timer to 64 -05:50:20,523 DEBUG kernel:pci 0000:00:18.7: setting latency timer to 64 -05:50:20,523 DEBUG kernel:pci_bus 0000:00: resource 4 [mem 0x000a0000-0x000bffff] -05:50:20,523 DEBUG kernel:pci_bus 0000:00: resource 5 [mem 0x000d0000-0x000d3fff] -05:50:20,523 DEBUG kernel:pci_bus 0000:00: resource 6 [mem 0x000d4000-0x000d7fff] -05:50:20,523 DEBUG kernel:pci_bus 0000:00: resource 7 [mem 0x000d8000-0x000dbfff] -05:50:20,523 DEBUG kernel:pci_bus 0000:00: resource 8 [mem 0x80000000-0xfebfffff] -05:50:20,523 DEBUG kernel:pci_bus 0000:00: resource 9 [io 0x0000-0x0cf7] -05:50:20,523 DEBUG kernel:pci_bus 0000:00: resource 10 [io 0x0d00-0xfeff] -05:50:20,523 DEBUG kernel:pci_bus 0000:02: resource 0 [io 0x2000-0x3fff] -05:50:20,523 DEBUG kernel:pci_bus 0000:02: resource 1 [mem 0xd1000000-0xd23fffff] -05:50:20,523 DEBUG kernel:pci_bus 0000:02: resource 2 [mem 0xdc400000-0xdc9fffff 64bit pref] -05:50:20,523 DEBUG kernel:pci_bus 0000:02: resource 4 [mem 0x000a0000-0x000bffff] -05:50:20,523 DEBUG kernel:pci_bus 0000:02: resource 5 [mem 0x000d0000-0x000d3fff] -05:50:20,523 DEBUG kernel:pci_bus 0000:02: resource 6 [mem 0x000d4000-0x000d7fff] -05:50:20,523 DEBUG kernel:pci_bus 0000:02: resource 7 [mem 0x000d8000-0x000dbfff] -05:50:20,523 DEBUG kernel:pci_bus 0000:02: resource 8 [mem 0x80000000-0xfebfffff] -05:50:20,523 DEBUG kernel:pci_bus 0000:02: resource 9 [io 0x0000-0x0cf7] -05:50:20,523 DEBUG kernel:pci_bus 0000:02: resource 10 [io 0x0d00-0xfeff] -05:50:20,523 DEBUG kernel:pci_bus 0000:03: resource 0 [io 0x4000-0x4fff] -05:50:20,523 DEBUG kernel:pci_bus 0000:03: resource 1 [mem 0xd2400000-0xd24fffff] -05:50:20,523 DEBUG kernel:pci_bus 0000:03: resource 2 [mem 0xd4400000-0xd44fffff 64bit pref] -05:50:20,523 DEBUG kernel:pci_bus 0000:04: resource 0 [io 0x8000-0x8fff] -05:50:20,523 DEBUG kernel:pci_bus 0000:04: resource 1 [mem 0xd2800000-0xd28fffff] -05:50:20,523 DEBUG kernel:pci_bus 0000:04: resource 2 [mem 0xd4800000-0xd48fffff 64bit pref] -05:50:20,523 DEBUG kernel:pci_bus 0000:05: resource 0 [io 0xc000-0xcfff] -05:50:20,523 DEBUG kernel:pci_bus 0000:05: resource 1 [mem 0xd2c00000-0xd2cfffff] -05:50:20,523 DEBUG kernel:pci_bus 0000:05: resource 2 [mem 0xdcb00000-0xdcbfffff 64bit pref] -05:50:20,523 DEBUG kernel:pci_bus 0000:06: resource 1 [mem 0xd3000000-0xd30fffff] -05:50:20,523 DEBUG kernel:pci_bus 0000:06: resource 2 [mem 0xdcd00000-0xdcdfffff 64bit pref] -05:50:20,523 DEBUG kernel:pci_bus 0000:07: resource 1 [mem 0xd3400000-0xd34fffff] -05:50:20,523 DEBUG kernel:pci_bus 0000:07: resource 2 [mem 0xdcf00000-0xdcffffff 64bit pref] -05:50:20,523 DEBUG kernel:pci_bus 0000:08: resource 1 [mem 0xd3800000-0xd38fffff] -05:50:20,523 DEBUG kernel:pci_bus 0000:08: resource 2 [mem 0xdd100000-0xdd1fffff 64bit pref] -05:50:20,523 DEBUG kernel:pci_bus 0000:09: resource 1 [mem 0xd3c00000-0xd3cfffff] -05:50:20,523 DEBUG kernel:pci_bus 0000:09: resource 2 [mem 0xdd300000-0xdd3fffff 64bit pref] -05:50:20,523 DEBUG kernel:pci_bus 0000:0a: resource 1 [mem 0xd4000000-0xd40fffff] -05:50:20,523 DEBUG kernel:pci_bus 0000:0a: resource 2 [mem 0xdd500000-0xdd5fffff 64bit pref] -05:50:20,523 DEBUG kernel:pci_bus 0000:0b: resource 0 [io 0x5000-0x5fff] -05:50:20,523 DEBUG kernel:pci_bus 0000:0b: resource 1 [mem 0xd2500000-0xd25fffff] -05:50:20,523 DEBUG kernel:pci_bus 0000:0b: resource 2 [mem 0xd4500000-0xd45fffff 64bit pref] -05:50:20,523 DEBUG kernel:pci_bus 0000:0c: resource 0 [io 0x9000-0x9fff] -05:50:20,523 DEBUG kernel:pci_bus 0000:0c: resource 1 [mem 0xd2900000-0xd29fffff] -05:50:20,523 DEBUG kernel:pci_bus 0000:0c: resource 2 [mem 0xd4900000-0xd49fffff 64bit pref] -05:50:20,523 DEBUG kernel:pci_bus 0000:0d: resource 0 [io 0xd000-0xdfff] -05:50:20,523 DEBUG kernel:pci_bus 0000:0d: resource 1 [mem 0xd2d00000-0xd2dfffff] -05:50:20,523 DEBUG kernel:pci_bus 0000:0d: resource 2 [mem 0xd4b00000-0xd4bfffff 64bit pref] -05:50:20,523 DEBUG kernel:pci_bus 0000:0e: resource 1 [mem 0xd3100000-0xd31fffff] -05:50:20,523 DEBUG kernel:pci_bus 0000:0e: resource 2 [mem 0xd4d00000-0xd4dfffff 64bit pref] -05:50:20,523 DEBUG kernel:pci_bus 0000:0f: resource 1 [mem 0xd3500000-0xd35fffff] -05:50:20,523 DEBUG kernel:pci_bus 0000:0f: resource 2 [mem 0xd4f00000-0xd4ffffff 64bit pref] -05:50:20,523 DEBUG kernel:pci_bus 0000:10: resource 1 [mem 0xd3900000-0xd39fffff] -05:50:20,523 DEBUG kernel:pci_bus 0000:10: resource 2 [mem 0xd5100000-0xd51fffff 64bit pref] -05:50:20,523 DEBUG kernel:pci_bus 0000:11: resource 1 [mem 0xd3d00000-0xd3dfffff] -05:50:20,523 DEBUG kernel:pci_bus 0000:11: resource 2 [mem 0xd5300000-0xd53fffff 64bit pref] -05:50:20,523 DEBUG kernel:pci_bus 0000:12: resource 1 [mem 0xd4100000-0xd41fffff] -05:50:20,523 DEBUG kernel:pci_bus 0000:12: resource 2 [mem 0xd5500000-0xd55fffff 64bit pref] -05:50:20,523 DEBUG kernel:pci_bus 0000:13: resource 0 [io 0x6000-0x6fff] -05:50:20,523 DEBUG kernel:pci_bus 0000:13: resource 1 [mem 0xd2600000-0xd26fffff] -05:50:20,523 DEBUG kernel:pci_bus 0000:13: resource 2 [mem 0xd4600000-0xd46fffff 64bit pref] -05:50:20,523 DEBUG kernel:pci_bus 0000:14: resource 0 [io 0xa000-0xafff] -05:50:20,523 DEBUG kernel:pci_bus 0000:14: resource 1 [mem 0xd2a00000-0xd2afffff] -05:50:20,523 DEBUG kernel:pci_bus 0000:14: resource 2 [mem 0xdca00000-0xdcafffff 64bit pref] -05:50:20,523 DEBUG kernel:pci_bus 0000:15: resource 0 [io 0xe000-0xefff] -05:50:20,523 DEBUG kernel:pci_bus 0000:15: resource 1 [mem 0xd2e00000-0xd2efffff] -05:50:20,523 DEBUG kernel:pci_bus 0000:15: resource 2 [mem 0xdcc00000-0xdccfffff 64bit pref] -05:50:20,523 DEBUG kernel:pci_bus 0000:16: resource 1 [mem 0xd3200000-0xd32fffff] -05:50:20,523 DEBUG kernel:pci_bus 0000:16: resource 2 [mem 0xdce00000-0xdcefffff 64bit pref] -05:50:20,523 DEBUG kernel:pci_bus 0000:17: resource 1 [mem 0xd3600000-0xd36fffff] -05:50:20,523 DEBUG kernel:pci_bus 0000:17: resource 2 [mem 0xdd000000-0xdd0fffff 64bit pref] -05:50:20,523 DEBUG kernel:pci_bus 0000:18: resource 1 [mem 0xd3a00000-0xd3afffff] -05:50:20,523 DEBUG kernel:pci_bus 0000:18: resource 2 [mem 0xdd200000-0xdd2fffff 64bit pref] -05:50:20,523 DEBUG kernel:pci_bus 0000:19: resource 1 [mem 0xd3e00000-0xd3efffff] -05:50:20,523 DEBUG kernel:pci_bus 0000:19: resource 2 [mem 0xdd400000-0xdd4fffff 64bit pref] -05:50:20,524 DEBUG kernel:pci_bus 0000:1a: resource 1 [mem 0xd4200000-0xd42fffff] -05:50:20,524 DEBUG kernel:pci_bus 0000:1a: resource 2 [mem 0xdd600000-0xdd6fffff 64bit pref] -05:50:20,524 DEBUG kernel:pci_bus 0000:1b: resource 0 [io 0x7000-0x7fff] -05:50:20,524 DEBUG kernel:pci_bus 0000:1b: resource 1 [mem 0xd2700000-0xd27fffff] -05:50:20,524 DEBUG kernel:pci_bus 0000:1b: resource 2 [mem 0xd4700000-0xd47fffff 64bit pref] -05:50:20,524 DEBUG kernel:pci_bus 0000:1c: resource 0 [io 0xb000-0xbfff] -05:50:20,524 DEBUG kernel:pci_bus 0000:1c: resource 1 [mem 0xd2b00000-0xd2bfffff] -05:50:20,524 DEBUG kernel:pci_bus 0000:1c: resource 2 [mem 0xd4a00000-0xd4afffff 64bit pref] -05:50:20,524 DEBUG kernel:pci_bus 0000:1d: resource 1 [mem 0xd2f00000-0xd2ffffff] -05:50:20,524 DEBUG kernel:pci_bus 0000:1d: resource 2 [mem 0xd4c00000-0xd4cfffff 64bit pref] -05:50:20,524 DEBUG kernel:pci_bus 0000:1e: resource 1 [mem 0xd3300000-0xd33fffff] -05:50:20,524 DEBUG kernel:pci_bus 0000:1e: resource 2 [mem 0xd4e00000-0xd4efffff 64bit pref] -05:50:20,524 DEBUG kernel:pci_bus 0000:1f: resource 1 [mem 0xd3700000-0xd37fffff] -05:50:20,524 DEBUG kernel:pci_bus 0000:1f: resource 2 [mem 0xd5000000-0xd50fffff 64bit pref] -05:50:20,524 DEBUG kernel:pci_bus 0000:20: resource 1 [mem 0xd3b00000-0xd3bfffff] -05:50:20,524 DEBUG kernel:pci_bus 0000:20: resource 2 [mem 0xd5200000-0xd52fffff 64bit pref] -05:50:20,524 DEBUG kernel:pci_bus 0000:21: resource 1 [mem 0xd3f00000-0xd3ffffff] -05:50:20,524 DEBUG kernel:pci_bus 0000:21: resource 2 [mem 0xd5400000-0xd54fffff 64bit pref] -05:50:20,524 DEBUG kernel:pci_bus 0000:22: resource 1 [mem 0xd4300000-0xd43fffff] -05:50:20,524 DEBUG kernel:pci_bus 0000:22: resource 2 [mem 0xd5600000-0xd56fffff 64bit pref] -05:50:20,524 INFO kernel:NET: Registered protocol family 2 -05:50:20,524 INFO kernel:IP route cache hash table entries: 65536 (order: 7, 524288 bytes) -05:50:20,524 INFO kernel:TCP established hash table entries: 262144 (order: 10, 4194304 bytes) -05:50:20,524 INFO kernel:TCP bind hash table entries: 65536 (order: 8, 1048576 bytes) -05:50:20,524 INFO kernel:TCP: Hash tables configured (established 262144 bind 65536) -05:50:20,524 INFO kernel:TCP reno registered -05:50:20,524 INFO kernel:NET: Registered protocol family 1 -05:50:20,524 INFO kernel:pci 0000:00:00.0: Limiting direct PCI/PCI transfers -05:50:20,524 DEBUG kernel:pci 0000:00:0f.0: Boot video device -05:50:20,524 INFO kernel:Trying to unpack rootfs image as initramfs... -05:50:20,524 INFO kernel:Freeing initrd memory: 32601k freed -05:50:20,524 INFO kernel:Simple Boot Flag at 0x36 set to 0x80 -05:50:20,524 INFO kernel:audit: initializing netlink socket (disabled) -05:50:20,524 NOTICE kernel:type=2000 audit(1021096218.805:1): initialized -05:50:20,524 INFO kernel:HugeTLB registered 2 MB page size, pre-allocated 0 pages -05:50:20,524 NOTICE kernel:VFS: Disk quotas dquot_6.5.2 -05:50:20,524 WARNING kernel:Dquot-cache hash table entries: 512 (order 0, 4096 bytes) -05:50:20,524 INFO kernel:msgmni has been set to 4005 -05:50:20,526 DEBUG kernel:SELinux: Registering netfilter hooks -05:50:20,526 INFO kernel:alg: No test for stdrng (krng) -05:50:20,526 WARNING kernel:ksign: Installing public key data -05:50:20,526 WARNING kernel:Loading keyring -05:50:20,526 WARNING kernel:- Added public key 8A44323FB303E068 -05:50:20,526 WARNING kernel: - key was been created 363988241 seconds in future -05:50:20,526 WARNING kernel:- User ID: CentOS (Kernel Module GPG key) -05:50:20,526 INFO kernel:Block layer SCSI generic (bsg) driver version 0.4 loaded (major 251) -05:50:20,526 INFO kernel:io scheduler noop registered -05:50:20,526 INFO kernel:io scheduler anticipatory registered -05:50:20,526 INFO kernel:io scheduler deadline registered -05:50:20,526 INFO kernel:io scheduler cfq registered (default) -05:50:20,526 DEBUG kernel:pcieport 0000:00:15.0: setting latency timer to 64 -05:50:20,526 DEBUG kernel: alloc irq_desc for 24 on node -1 -05:50:20,526 DEBUG kernel: alloc kstat_irqs on node -1 -05:50:20,526 DEBUG kernel:pcieport 0000:00:15.0: irq 24 for MSI/MSI-X -05:50:20,526 DEBUG kernel:pcieport 0000:00:15.1: setting latency timer to 64 -05:50:20,526 DEBUG kernel: alloc irq_desc for 25 on node -1 -05:50:20,526 DEBUG kernel: alloc kstat_irqs on node -1 -05:50:20,526 DEBUG kernel:pcieport 0000:00:15.1: irq 25 for MSI/MSI-X -05:50:20,526 DEBUG kernel:pcieport 0000:00:15.2: setting latency timer to 64 -05:50:20,526 DEBUG kernel: alloc irq_desc for 26 on node -1 -05:50:20,526 DEBUG kernel: alloc kstat_irqs on node -1 -05:50:20,526 DEBUG kernel:pcieport 0000:00:15.2: irq 26 for MSI/MSI-X -05:50:20,526 DEBUG kernel:pcieport 0000:00:15.3: setting latency timer to 64 -05:50:20,526 DEBUG kernel: alloc irq_desc for 27 on node -1 -05:50:20,526 DEBUG kernel: alloc kstat_irqs on node -1 -05:50:20,526 DEBUG kernel:pcieport 0000:00:15.3: irq 27 for MSI/MSI-X -05:50:20,526 DEBUG kernel:pcieport 0000:00:15.4: setting latency timer to 64 -05:50:20,526 DEBUG kernel: alloc irq_desc for 28 on node -1 -05:50:20,526 DEBUG kernel: alloc kstat_irqs on node -1 -05:50:20,526 DEBUG kernel:pcieport 0000:00:15.4: irq 28 for MSI/MSI-X -05:50:20,526 DEBUG kernel:pcieport 0000:00:15.5: setting latency timer to 64 -05:50:20,526 DEBUG kernel: alloc irq_desc for 29 on node -1 -05:50:20,526 DEBUG kernel: alloc kstat_irqs on node -1 -05:50:20,526 DEBUG kernel:pcieport 0000:00:15.5: irq 29 for MSI/MSI-X -05:50:20,526 DEBUG kernel:pcieport 0000:00:15.6: setting latency timer to 64 -05:50:20,526 DEBUG kernel: alloc irq_desc for 30 on node -1 -05:50:20,526 DEBUG kernel: alloc kstat_irqs on node -1 -05:50:20,526 DEBUG kernel:pcieport 0000:00:15.6: irq 30 for MSI/MSI-X -05:50:20,526 DEBUG kernel:pcieport 0000:00:15.7: setting latency timer to 64 -05:50:20,526 DEBUG kernel: alloc irq_desc for 31 on node -1 -05:50:20,526 DEBUG kernel: alloc kstat_irqs on node -1 -05:50:20,526 DEBUG kernel:pcieport 0000:00:15.7: irq 31 for MSI/MSI-X -05:50:20,526 DEBUG kernel:pcieport 0000:00:16.0: setting latency timer to 64 -05:50:20,526 DEBUG kernel: alloc irq_desc for 32 on node -1 -05:50:20,526 DEBUG kernel: alloc kstat_irqs on node -1 -05:50:20,526 DEBUG kernel:pcieport 0000:00:16.0: irq 32 for MSI/MSI-X -05:50:20,526 DEBUG kernel:pcieport 0000:00:16.1: setting latency timer to 64 -05:50:20,526 DEBUG kernel: alloc irq_desc for 33 on node -1 -05:50:20,526 DEBUG kernel: alloc kstat_irqs on node -1 -05:50:20,526 DEBUG kernel:pcieport 0000:00:16.1: irq 33 for MSI/MSI-X -05:50:20,526 DEBUG kernel:pcieport 0000:00:16.2: setting latency timer to 64 -05:50:20,526 DEBUG kernel: alloc irq_desc for 34 on node -1 -05:50:20,526 DEBUG kernel: alloc kstat_irqs on node -1 -05:50:20,526 DEBUG kernel:pcieport 0000:00:16.2: irq 34 for MSI/MSI-X -05:50:20,526 DEBUG kernel:pcieport 0000:00:16.3: setting latency timer to 64 -05:50:20,526 DEBUG kernel: alloc irq_desc for 35 on node -1 -05:50:20,526 DEBUG kernel: alloc kstat_irqs on node -1 -05:50:20,526 DEBUG kernel:pcieport 0000:00:16.3: irq 35 for MSI/MSI-X -05:50:20,526 DEBUG kernel:pcieport 0000:00:16.4: setting latency timer to 64 -05:50:20,526 DEBUG kernel: alloc irq_desc for 36 on node -1 -05:50:20,526 DEBUG kernel: alloc kstat_irqs on node -1 -05:50:20,526 DEBUG kernel:pcieport 0000:00:16.4: irq 36 for MSI/MSI-X -05:50:20,526 DEBUG kernel:pcieport 0000:00:16.5: setting latency timer to 64 -05:50:20,526 DEBUG kernel: alloc irq_desc for 37 on node -1 -05:50:20,526 DEBUG kernel: alloc kstat_irqs on node -1 -05:50:20,526 DEBUG kernel:pcieport 0000:00:16.5: irq 37 for MSI/MSI-X -05:50:20,526 DEBUG kernel:pcieport 0000:00:16.6: setting latency timer to 64 -05:50:20,526 DEBUG kernel: alloc irq_desc for 38 on node -1 -05:50:20,526 DEBUG kernel: alloc kstat_irqs on node -1 -05:50:20,526 DEBUG kernel:pcieport 0000:00:16.6: irq 38 for MSI/MSI-X -05:50:20,526 DEBUG kernel:pcieport 0000:00:16.7: setting latency timer to 64 -05:50:20,526 DEBUG kernel: alloc irq_desc for 39 on node -1 -05:50:20,526 DEBUG kernel: alloc kstat_irqs on node -1 -05:50:20,526 DEBUG kernel:pcieport 0000:00:16.7: irq 39 for MSI/MSI-X -05:50:20,526 DEBUG kernel:pcieport 0000:00:17.0: setting latency timer to 64 -05:50:20,526 DEBUG kernel: alloc irq_desc for 40 on node -1 -05:50:20,526 DEBUG kernel: alloc kstat_irqs on node -1 -05:50:20,526 DEBUG kernel:pcieport 0000:00:17.0: irq 40 for MSI/MSI-X -05:50:20,526 DEBUG kernel:pcieport 0000:00:17.1: setting latency timer to 64 -05:50:20,526 DEBUG kernel: alloc irq_desc for 41 on node -1 -05:50:20,526 DEBUG kernel: alloc kstat_irqs on node -1 -05:50:20,526 DEBUG kernel:pcieport 0000:00:17.1: irq 41 for MSI/MSI-X -05:50:20,526 DEBUG kernel:pcieport 0000:00:17.2: setting latency timer to 64 -05:50:20,526 DEBUG kernel: alloc irq_desc for 42 on node -1 -05:50:20,526 DEBUG kernel: alloc kstat_irqs on node -1 -05:50:20,526 DEBUG kernel:pcieport 0000:00:17.2: irq 42 for MSI/MSI-X -05:50:20,526 DEBUG kernel:pcieport 0000:00:17.3: setting latency timer to 64 -05:50:20,526 DEBUG kernel: alloc irq_desc for 43 on node -1 -05:50:20,526 DEBUG kernel: alloc kstat_irqs on node -1 -05:50:20,526 DEBUG kernel:pcieport 0000:00:17.3: irq 43 for MSI/MSI-X -05:50:20,526 DEBUG kernel:pcieport 0000:00:17.4: setting latency timer to 64 -05:50:20,526 DEBUG kernel: alloc irq_desc for 44 on node -1 -05:50:20,526 DEBUG kernel: alloc kstat_irqs on node -1 -05:50:20,526 DEBUG kernel:pcieport 0000:00:17.4: irq 44 for MSI/MSI-X -05:50:20,526 DEBUG kernel:pcieport 0000:00:17.5: setting latency timer to 64 -05:50:20,526 DEBUG kernel: alloc irq_desc for 45 on node -1 -05:50:20,526 DEBUG kernel: alloc kstat_irqs on node -1 -05:50:20,526 DEBUG kernel:pcieport 0000:00:17.5: irq 45 for MSI/MSI-X -05:50:20,526 DEBUG kernel:pcieport 0000:00:17.6: setting latency timer to 64 -05:50:20,526 DEBUG kernel: alloc irq_desc for 46 on node -1 -05:50:20,526 DEBUG kernel: alloc kstat_irqs on node -1 -05:50:20,526 DEBUG kernel:pcieport 0000:00:17.6: irq 46 for MSI/MSI-X -05:50:20,526 DEBUG kernel:pcieport 0000:00:17.7: setting latency timer to 64 -05:50:20,526 DEBUG kernel: alloc irq_desc for 47 on node -1 -05:50:20,526 DEBUG kernel: alloc kstat_irqs on node -1 -05:50:20,526 DEBUG kernel:pcieport 0000:00:17.7: irq 47 for MSI/MSI-X -05:50:20,526 DEBUG kernel:pcieport 0000:00:18.0: setting latency timer to 64 -05:50:20,526 DEBUG kernel: alloc irq_desc for 48 on node -1 -05:50:20,526 DEBUG kernel: alloc kstat_irqs on node -1 -05:50:20,526 DEBUG kernel:pcieport 0000:00:18.0: irq 48 for MSI/MSI-X -05:50:20,526 DEBUG kernel:pcieport 0000:00:18.1: setting latency timer to 64 -05:50:20,526 DEBUG kernel: alloc irq_desc for 49 on node -1 -05:50:20,526 DEBUG kernel: alloc kstat_irqs on node -1 -05:50:20,526 DEBUG kernel:pcieport 0000:00:18.1: irq 49 for MSI/MSI-X -05:50:20,526 DEBUG kernel:pcieport 0000:00:18.2: setting latency timer to 64 -05:50:20,526 DEBUG kernel: alloc irq_desc for 50 on node -1 -05:50:20,526 DEBUG kernel: alloc kstat_irqs on node -1 -05:50:20,526 DEBUG kernel:pcieport 0000:00:18.2: irq 50 for MSI/MSI-X -05:50:20,526 DEBUG kernel:pcieport 0000:00:18.3: setting latency timer to 64 -05:50:20,526 DEBUG kernel: alloc irq_desc for 51 on node -1 -05:50:20,526 DEBUG kernel: alloc kstat_irqs on node -1 -05:50:20,526 DEBUG kernel:pcieport 0000:00:18.3: irq 51 for MSI/MSI-X -05:50:20,526 DEBUG kernel:pcieport 0000:00:18.4: setting latency timer to 64 -05:50:20,526 DEBUG kernel: alloc irq_desc for 52 on node -1 -05:50:20,526 DEBUG kernel: alloc kstat_irqs on node -1 -05:50:20,526 DEBUG kernel:pcieport 0000:00:18.4: irq 52 for MSI/MSI-X -05:50:20,526 DEBUG kernel:pcieport 0000:00:18.5: setting latency timer to 64 -05:50:20,526 DEBUG kernel: alloc irq_desc for 53 on node -1 -05:50:20,526 DEBUG kernel: alloc kstat_irqs on node -1 -05:50:20,526 DEBUG kernel:pcieport 0000:00:18.5: irq 53 for MSI/MSI-X -05:50:20,526 DEBUG kernel:pcieport 0000:00:18.6: setting latency timer to 64 -05:50:20,526 DEBUG kernel: alloc irq_desc for 54 on node -1 -05:50:20,526 DEBUG kernel: alloc kstat_irqs on node -1 -05:50:20,526 DEBUG kernel:pcieport 0000:00:18.6: irq 54 for MSI/MSI-X -05:50:20,526 DEBUG kernel:pcieport 0000:00:18.7: setting latency timer to 64 -05:50:20,526 DEBUG kernel: alloc irq_desc for 55 on node -1 -05:50:20,526 DEBUG kernel: alloc kstat_irqs on node -1 -05:50:20,526 DEBUG kernel:pcieport 0000:00:18.7: irq 55 for MSI/MSI-X -05:50:20,526 INFO kernel:pci_hotplug: PCI Hot Plug PCI Core version: 0.5 -05:50:20,526 INFO kernel:pciehp 0000:00:15.0:pcie04: HPC vendor_id 15ad device_id 7a0 ss_vid 0 ss_did 0 -05:50:20,526 DEBUG kernel:pciehp 0000:00:15.0:pcie04: service driver pciehp loaded -05:50:20,526 INFO kernel:pciehp 0000:00:15.1:pcie04: HPC vendor_id 15ad device_id 7a0 ss_vid 0 ss_did 0 -05:50:20,526 DEBUG kernel:pciehp 0000:00:15.1:pcie04: service driver pciehp loaded -05:50:20,526 INFO kernel:pciehp 0000:00:15.2:pcie04: HPC vendor_id 15ad device_id 7a0 ss_vid 0 ss_did 0 -05:50:20,526 DEBUG kernel:pciehp 0000:00:15.2:pcie04: service driver pciehp loaded -05:50:20,526 INFO kernel:pciehp 0000:00:15.3:pcie04: HPC vendor_id 15ad device_id 7a0 ss_vid 0 ss_did 0 -05:50:20,526 DEBUG kernel:pciehp 0000:00:15.3:pcie04: service driver pciehp loaded -05:50:20,526 INFO kernel:pciehp 0000:00:15.4:pcie04: HPC vendor_id 15ad device_id 7a0 ss_vid 0 ss_did 0 -05:50:20,526 DEBUG kernel:pciehp 0000:00:15.4:pcie04: service driver pciehp loaded -05:50:20,526 INFO kernel:pciehp 0000:00:15.5:pcie04: HPC vendor_id 15ad device_id 7a0 ss_vid 0 ss_did 0 -05:50:20,526 DEBUG kernel:pciehp 0000:00:15.5:pcie04: service driver pciehp loaded -05:50:20,526 INFO kernel:pciehp 0000:00:15.6:pcie04: HPC vendor_id 15ad device_id 7a0 ss_vid 0 ss_did 0 -05:50:20,526 DEBUG kernel:pciehp 0000:00:15.6:pcie04: service driver pciehp loaded -05:50:20,526 INFO kernel:pciehp 0000:00:15.7:pcie04: HPC vendor_id 15ad device_id 7a0 ss_vid 0 ss_did 0 -05:50:20,526 DEBUG kernel:pciehp 0000:00:15.7:pcie04: service driver pciehp loaded -05:50:20,526 INFO kernel:pciehp 0000:00:16.0:pcie04: HPC vendor_id 15ad device_id 7a0 ss_vid 0 ss_did 0 -05:50:20,526 DEBUG kernel:pciehp 0000:00:16.0:pcie04: service driver pciehp loaded -05:50:20,526 INFO kernel:pciehp 0000:00:16.1:pcie04: HPC vendor_id 15ad device_id 7a0 ss_vid 0 ss_did 0 -05:50:20,526 DEBUG kernel:pciehp 0000:00:16.1:pcie04: service driver pciehp loaded -05:50:20,526 INFO kernel:pciehp 0000:00:16.2:pcie04: HPC vendor_id 15ad device_id 7a0 ss_vid 0 ss_did 0 -05:50:20,526 DEBUG kernel:pciehp 0000:00:16.2:pcie04: service driver pciehp loaded -05:50:20,526 INFO kernel:pciehp 0000:00:16.3:pcie04: HPC vendor_id 15ad device_id 7a0 ss_vid 0 ss_did 0 -05:50:20,526 DEBUG kernel:pciehp 0000:00:16.3:pcie04: service driver pciehp loaded -05:50:20,526 INFO kernel:pciehp 0000:00:16.4:pcie04: HPC vendor_id 15ad device_id 7a0 ss_vid 0 ss_did 0 -05:50:20,526 DEBUG kernel:pciehp 0000:00:16.4:pcie04: service driver pciehp loaded -05:50:20,526 INFO kernel:pciehp 0000:00:16.5:pcie04: HPC vendor_id 15ad device_id 7a0 ss_vid 0 ss_did 0 -05:50:20,526 DEBUG kernel:pciehp 0000:00:16.5:pcie04: service driver pciehp loaded -05:50:20,526 INFO kernel:pciehp 0000:00:16.6:pcie04: HPC vendor_id 15ad device_id 7a0 ss_vid 0 ss_did 0 -05:50:20,526 DEBUG kernel:pciehp 0000:00:16.6:pcie04: service driver pciehp loaded -05:50:20,526 INFO kernel:pciehp 0000:00:16.7:pcie04: HPC vendor_id 15ad device_id 7a0 ss_vid 0 ss_did 0 -05:50:20,526 DEBUG kernel:pciehp 0000:00:16.7:pcie04: service driver pciehp loaded -05:50:20,526 INFO kernel:pciehp 0000:00:17.0:pcie04: HPC vendor_id 15ad device_id 7a0 ss_vid 0 ss_did 0 -05:50:20,526 DEBUG kernel:pciehp 0000:00:17.0:pcie04: service driver pciehp loaded -05:50:20,526 INFO kernel:pciehp 0000:00:17.1:pcie04: HPC vendor_id 15ad device_id 7a0 ss_vid 0 ss_did 0 -05:50:20,526 DEBUG kernel:pciehp 0000:00:17.1:pcie04: service driver pciehp loaded -05:50:20,526 INFO kernel:pciehp 0000:00:17.2:pcie04: HPC vendor_id 15ad device_id 7a0 ss_vid 0 ss_did 0 -05:50:20,526 DEBUG kernel:pciehp 0000:00:17.2:pcie04: service driver pciehp loaded -05:50:20,526 INFO kernel:pciehp 0000:00:17.3:pcie04: HPC vendor_id 15ad device_id 7a0 ss_vid 0 ss_did 0 -05:50:20,526 DEBUG kernel:pciehp 0000:00:17.3:pcie04: service driver pciehp loaded -05:50:20,526 INFO kernel:pciehp 0000:00:17.4:pcie04: HPC vendor_id 15ad device_id 7a0 ss_vid 0 ss_did 0 -05:50:20,526 DEBUG kernel:pciehp 0000:00:17.4:pcie04: service driver pciehp loaded -05:50:20,526 INFO kernel:pciehp 0000:00:17.5:pcie04: HPC vendor_id 15ad device_id 7a0 ss_vid 0 ss_did 0 -05:50:20,526 DEBUG kernel:pciehp 0000:00:17.5:pcie04: service driver pciehp loaded -05:50:20,526 INFO kernel:pciehp 0000:00:17.6:pcie04: HPC vendor_id 15ad device_id 7a0 ss_vid 0 ss_did 0 -05:50:20,526 DEBUG kernel:pciehp 0000:00:17.6:pcie04: service driver pciehp loaded -05:50:20,526 INFO kernel:pciehp 0000:00:17.7:pcie04: HPC vendor_id 15ad device_id 7a0 ss_vid 0 ss_did 0 -05:50:20,526 DEBUG kernel:pciehp 0000:00:17.7:pcie04: service driver pciehp loaded -05:50:20,526 INFO kernel:pciehp 0000:00:18.0:pcie04: HPC vendor_id 15ad device_id 7a0 ss_vid 0 ss_did 0 -05:50:20,526 DEBUG kernel:pciehp 0000:00:18.0:pcie04: service driver pciehp loaded -05:50:20,526 INFO kernel:pciehp 0000:00:18.1:pcie04: HPC vendor_id 15ad device_id 7a0 ss_vid 0 ss_did 0 -05:50:20,526 DEBUG kernel:pciehp 0000:00:18.1:pcie04: service driver pciehp loaded -05:50:20,526 INFO kernel:pciehp 0000:00:18.2:pcie04: HPC vendor_id 15ad device_id 7a0 ss_vid 0 ss_did 0 -05:50:20,526 DEBUG kernel:pciehp 0000:00:18.2:pcie04: service driver pciehp loaded -05:50:20,526 INFO kernel:pciehp 0000:00:18.3:pcie04: HPC vendor_id 15ad device_id 7a0 ss_vid 0 ss_did 0 -05:50:20,526 DEBUG kernel:pciehp 0000:00:18.3:pcie04: service driver pciehp loaded -05:50:20,526 INFO kernel:pciehp 0000:00:18.4:pcie04: HPC vendor_id 15ad device_id 7a0 ss_vid 0 ss_did 0 -05:50:20,526 DEBUG kernel:pciehp 0000:00:18.4:pcie04: service driver pciehp loaded -05:50:20,526 INFO kernel:pciehp 0000:00:18.5:pcie04: HPC vendor_id 15ad device_id 7a0 ss_vid 0 ss_did 0 -05:50:20,526 DEBUG kernel:pciehp 0000:00:18.5:pcie04: service driver pciehp loaded -05:50:20,526 INFO kernel:pciehp 0000:00:18.6:pcie04: HPC vendor_id 15ad device_id 7a0 ss_vid 0 ss_did 0 -05:50:20,526 DEBUG kernel:pciehp 0000:00:18.6:pcie04: service driver pciehp loaded -05:50:20,526 INFO kernel:pciehp 0000:00:18.7:pcie04: HPC vendor_id 15ad device_id 7a0 ss_vid 0 ss_did 0 -05:50:20,526 DEBUG kernel:pciehp 0000:00:18.7:pcie04: service driver pciehp loaded -05:50:20,526 INFO kernel:pciehp: PCI Express Hot Plug Controller Driver version: 0.4 -05:50:20,526 INFO kernel:acpiphp: ACPI Hot Plug PCI Controller Driver version: 0.5 -05:50:20,526 INFO kernel:acpiphp: Slot [32] registered -05:50:20,526 INFO kernel:acpiphp: Slot [33] registered -05:50:20,526 INFO kernel:acpiphp: Slot [34] registered -05:50:20,526 INFO kernel:acpiphp: Slot [35] registered -05:50:20,526 INFO kernel:acpiphp: Slot [36] registered -05:50:20,526 INFO kernel:acpiphp: Slot [37] registered -05:50:20,526 INFO kernel:acpiphp: Slot [38] registered -05:50:20,527 INFO kernel:acpiphp: Slot [39] registered -05:50:20,527 INFO kernel:acpiphp: Slot [40] registered -05:50:20,527 INFO kernel:acpiphp: Slot [41] registered -05:50:20,527 INFO kernel:acpiphp: Slot [42] registered -05:50:20,527 INFO kernel:acpiphp: Slot [43] registered -05:50:20,527 INFO kernel:acpiphp: Slot [44] registered -05:50:20,527 INFO kernel:acpiphp: Slot [45] registered -05:50:20,527 INFO kernel:acpiphp: Slot [46] registered -05:50:20,527 INFO kernel:acpiphp: Slot [47] registered -05:50:20,527 INFO kernel:acpiphp: Slot [48] registered -05:50:20,527 INFO kernel:acpiphp: Slot [49] registered -05:50:20,527 INFO kernel:acpiphp: Slot [50] registered -05:50:20,527 INFO kernel:acpiphp: Slot [51] registered -05:50:20,527 INFO kernel:acpiphp: Slot [52] registered -05:50:20,527 INFO kernel:acpiphp: Slot [53] registered -05:50:20,527 INFO kernel:acpiphp: Slot [54] registered -05:50:20,527 INFO kernel:acpiphp: Slot [55] registered -05:50:20,527 INFO kernel:acpiphp: Slot [56] registered -05:50:20,527 INFO kernel:acpiphp: Slot [57] registered -05:50:20,527 INFO kernel:acpiphp: Slot [58] registered -05:50:20,527 INFO kernel:acpiphp: Slot [59] registered -05:50:20,527 INFO kernel:acpiphp: Slot [60] registered -05:50:20,527 INFO kernel:acpiphp: Slot [61] registered -05:50:20,527 INFO kernel:acpiphp: Slot [62] registered -05:50:20,527 INFO kernel:acpiphp: Slot [63] registered -05:50:20,527 WARNING kernel:acpiphp_glue: Slot 160 already registered by another hotplug driver -05:50:20,527 WARNING kernel:acpiphp_glue: Slot 192 already registered by another hotplug driver -05:50:20,527 WARNING kernel:acpiphp_glue: Slot 224 already registered by another hotplug driver -05:50:20,527 WARNING kernel:acpiphp_glue: Slot 256 already registered by another hotplug driver -05:50:20,527 WARNING kernel:acpiphp_glue: Slot 161 already registered by another hotplug driver -05:50:20,527 WARNING kernel:acpiphp_glue: Slot 162 already registered by another hotplug driver -05:50:20,527 WARNING kernel:acpiphp_glue: Slot 163 already registered by another hotplug driver -05:50:20,527 WARNING kernel:acpiphp_glue: Slot 164 already registered by another hotplug driver -05:50:20,527 WARNING kernel:acpiphp_glue: Slot 165 already registered by another hotplug driver -05:50:20,527 WARNING kernel:acpiphp_glue: Slot 166 already registered by another hotplug driver -05:50:20,527 WARNING kernel:acpiphp_glue: Slot 167 already registered by another hotplug driver -05:50:20,527 WARNING kernel:acpiphp_glue: Slot 193 already registered by another hotplug driver -05:50:20,527 WARNING kernel:acpiphp_glue: Slot 194 already registered by another hotplug driver -05:50:20,527 WARNING kernel:acpiphp_glue: Slot 195 already registered by another hotplug driver -05:50:20,527 WARNING kernel:acpiphp_glue: Slot 196 already registered by another hotplug driver -05:50:20,527 WARNING kernel:acpiphp_glue: Slot 197 already registered by another hotplug driver -05:50:20,527 WARNING kernel:acpiphp_glue: Slot 198 already registered by another hotplug driver -05:50:20,527 WARNING kernel:acpiphp_glue: Slot 199 already registered by another hotplug driver -05:50:20,527 WARNING kernel:acpiphp_glue: Slot 225 already registered by another hotplug driver -05:50:20,527 WARNING kernel:acpiphp_glue: Slot 226 already registered by another hotplug driver -05:50:20,527 WARNING kernel:acpiphp_glue: Slot 227 already registered by another hotplug driver -05:50:20,527 WARNING kernel:acpiphp_glue: Slot 228 already registered by another hotplug driver -05:50:20,527 WARNING kernel:acpiphp_glue: Slot 229 already registered by another hotplug driver -05:50:20,527 WARNING kernel:acpiphp_glue: Slot 230 already registered by another hotplug driver -05:50:20,527 WARNING kernel:acpiphp_glue: Slot 231 already registered by another hotplug driver -05:50:20,527 WARNING kernel:acpiphp_glue: Slot 257 already registered by another hotplug driver -05:50:20,527 WARNING kernel:acpiphp_glue: Slot 258 already registered by another hotplug driver -05:50:20,527 WARNING kernel:acpiphp_glue: Slot 259 already registered by another hotplug driver -05:50:20,527 WARNING kernel:acpiphp_glue: Slot 260 already registered by another hotplug driver -05:50:20,527 WARNING kernel:acpiphp_glue: Slot 261 already registered by another hotplug driver -05:50:20,527 WARNING kernel:acpiphp_glue: Slot 262 already registered by another hotplug driver -05:50:20,527 WARNING kernel:acpiphp_glue: Slot 263 already registered by another hotplug driver -05:50:20,527 INFO kernel:ipmi message handler version 39.2 -05:50:20,527 INFO kernel:IPMI System Interface driver. -05:50:20,527 INFO kernel:ipmi_si: Adding default-specified kcs state machine -05:50:20,527 INFO kernel:ipmi_si: Trying default-specified kcs state machine at i/o address 0xca2, slave address 0x0, irq 0 -05:50:20,527 INFO kernel:ipmi_si: Interface detection failed -05:50:20,527 INFO kernel:ipmi_si: Adding default-specified smic state machine -05:50:20,527 INFO kernel:ipmi_si: Trying default-specified smic state machine at i/o address 0xca9, slave address 0x0, irq 0 -05:50:20,527 INFO kernel:ipmi_si: Interface detection failed -05:50:20,527 INFO kernel:ipmi_si: Adding default-specified bt state machine -05:50:20,527 INFO kernel:ipmi_si: Trying default-specified bt state machine at i/o address 0xe4, slave address 0x0, irq 0 -05:50:20,527 INFO kernel:ipmi_si: Interface detection failed -05:50:20,527 WARNING kernel:ipmi_si: Unable to find any System Interface(s) -05:50:20,527 INFO kernel:ACPI: AC Adapter [ACAD] (on-line) -05:50:20,527 INFO kernel:input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input0 -05:50:20,527 INFO kernel:ACPI: Power Button [PWRF] -05:50:20,527 DEBUG kernel:ACPI: acpi_idle registered with cpuidle -05:50:20,527 WARNING kernel:ACPI Exception: AE_NOT_FOUND, No or invalid critical threshold (20090903/thermal-386) -05:50:20,527 INFO kernel:GHES: HEST is not enabled! -05:50:20,527 INFO kernel:Non-volatile memory driver v1.3 -05:50:20,527 INFO kernel:Linux agpgart interface v0.103 -05:50:20,527 INFO kernel:agpgart-intel 0000:00:00.0: Intel 440BX Chipset -05:50:20,527 INFO kernel:agpgart-intel 0000:00:00.0: AGP aperture is 256M @ 0x0 -05:50:20,527 INFO kernel:crash memory driver: version 1.1 -05:50:20,527 INFO kernel:Serial: 8250/16550 driver, 4 ports, IRQ sharing enabled -05:50:20,527 INFO kernel:serial8250: ttyS0 at I/O 0x3f8 (irq = 4) is a 16550A -05:50:20,527 INFO kernel:serial8250: ttyS1 at I/O 0x2f8 (irq = 3) is a 16550A -05:50:20,527 INFO kernel:00:0a: ttyS0 at I/O 0x3f8 (irq = 4) is a 16550A -05:50:20,527 INFO kernel:00:0b: ttyS1 at I/O 0x2f8 (irq = 3) is a 16550A -05:50:20,527 INFO kernel:brd: module loaded -05:50:20,527 INFO kernel:loop: module loaded -05:50:20,527 INFO kernel:input: Macintosh mouse button emulation as /devices/virtual/input/input1 -05:50:20,527 INFO kernel:Fixed MDIO Bus: probed -05:50:20,527 INFO kernel:ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver -05:50:20,527 INFO kernel:ohci_hcd: USB 1.1 'Open' Host Controller (OHCI) Driver -05:50:20,527 INFO kernel:uhci_hcd: USB Universal Host Controller Interface driver -05:50:20,527 INFO kernel:PNP: PS/2 Controller [PNP0303:KBC,PNP0f13:MOUS] at 0x60,0x64 irq 1,12 -05:50:20,527 INFO kernel:Refined TSC clocksource calibration: 2400.081 MHz. -05:50:20,527 INFO kernel:Switching to clocksource tsc -05:50:20,527 INFO kernel:serio: i8042 KBD port at 0x60,0x64 irq 1 -05:50:20,527 INFO kernel:serio: i8042 AUX port at 0x60,0x64 irq 12 -05:50:20,527 INFO kernel:mice: PS/2 mouse device common for all mice -05:50:20,527 INFO kernel:rtc_cmos 00:04: rtc core: registered rtc_cmos as rtc0 -05:50:20,527 INFO kernel:rtc0: alarms up to one month, y3k, 114 bytes nvram, hpet irqs -05:50:20,527 INFO kernel:cpuidle: using governor ladder -05:50:20,527 INFO kernel:cpuidle: using governor menu -05:50:20,527 INFO kernel:EFI Variables Facility v0.08 2004-May-17 -05:50:20,527 INFO kernel:usbcore: registered new interface driver hiddev -05:50:20,527 INFO kernel:usbcore: registered new interface driver usbhid -05:50:20,527 INFO kernel:usbhid: v2.6:USB HID core driver -05:50:20,527 INFO kernel:GRE over IPv4 demultiplexor driver -05:50:20,527 INFO kernel:input: AT Translated Set 2 keyboard as /devices/platform/i8042/serio0/input/input2 -05:50:20,527 INFO kernel:TCP cubic registered -05:50:20,527 INFO kernel:Initializing XFRM netlink socket -05:50:20,527 INFO kernel:NET: Registered protocol family 17 -05:50:20,527 WARNING kernel:registered taskstats version 1 -05:50:20,527 INFO kernel:input: ImPS/2 Generic Wheel Mouse as /devices/platform/i8042/serio1/input/input3 -05:50:20,527 INFO kernel:rtc_cmos 00:04: setting system clock to 2002-05-11 05:50:20 UTC (1021096220) -05:50:20,527 INFO kernel:Initalizing network drop monitor service -05:50:20,527 INFO kernel:Freeing unused kernel memory: 1276k freed -05:50:20,527 INFO kernel:Write protecting the kernel read-only data: 10240k -05:50:20,527 INFO kernel:Freeing unused kernel memory: 800k freed -05:50:20,527 INFO kernel:Freeing unused kernel memory: 1588k freed -05:50:22,553 INFO kernel:squashfs: version 4.0 (2009/01/31) Phillip Lougher -05:50:22,564 INFO kernel:Loading iSCSI transport class v2.0-870. -05:50:22,583 NOTICE kernel:iscsi: registered transport (tcp) -05:50:22,589 INFO kernel:Floppy drive(s): fd0 is 1.44M -05:50:22,600 INFO kernel:FDC 0 is a post-1991 82077 -05:50:22,604 INFO kernel:BIOS EDD facility v0.16 2004-Jun-25, 2 devices found -05:50:22,608 INFO kernel:input: PC Speaker as /devices/platform/pcspkr/input/input4 -05:50:22,615 INFO kernel:No iBFT detected. -05:50:22,648 INFO kernel:NET: Registered protocol family 10 -05:50:22,648 INFO kernel:lo: Disabled Privacy Extensions -05:50:22,720 DEBUG kernel:ata_piix 0000:00:07.1: version 2.13 -05:50:22,720 INFO kernel:scsi0 : ata_piix -05:50:22,721 INFO kernel:scsi1 : ata_piix -05:50:22,721 INFO kernel:ata1: PATA max UDMA/33 cmd 0x1f0 ctl 0x3f6 bmdma 0x10c0 irq 14 -05:50:22,721 INFO kernel:ata2: PATA max UDMA/33 cmd 0x170 ctl 0x376 bmdma 0x10c8 irq 15 -05:50:22,731 ERR udevd-work: device node '/dev/rtc' already exists, link to '/dev/rtc0' will not overwrite it -05:50:22,907 INFO kernel:ata2.00: ATAPI: VMware Virtual IDE CDROM Drive, 00000001, max UDMA/33 -05:50:22,913 INFO kernel:ata2.00: configured for UDMA/33 -05:50:22,913 NOTICE kernel:scsi 1:0:0:0: CD-ROM NECVMWar VMware IDE CDR10 1.00 PQ: 0 ANSI: 5 -05:50:22,936 INFO kernel:Fusion MPT base driver 3.04.20 -05:50:22,936 INFO kernel:Copyright (c) 1999-2008 LSI Corporation -05:50:22,947 INFO kernel:Fusion MPT SPI Host driver 3.04.20 -05:50:22,947 DEBUG kernel: alloc irq_desc for 17 on node -1 -05:50:22,947 DEBUG kernel: alloc kstat_irqs on node -1 -05:50:22,947 INFO kernel:mptspi 0000:00:10.0: PCI INT A -> GSI 17 (level, low) -> IRQ 17 -05:50:22,947 INFO kernel:mptbase: ioc0: Initiating bringup -05:50:22,966 INFO kernel:ioc0: LSI53C1030 B0: Capabilities={Initiator} -05:50:23,007 INFO kernel:scsi2 : ioc0: LSI53C1030 B0, FwRev=01032920h, Ports=1, MaxQ=128, IRQ=17 -05:50:23,035 NOTICE kernel:scsi 2:0:0:0: Direct-Access VMware Virtual disk 1.0 PQ: 0 ANSI: 2 -05:50:23,035 INFO kernel:scsi target2:0:0: Beginning Domain Validation -05:50:23,035 INFO kernel:scsi target2:0:0: Domain Validation skipping write tests -05:50:23,035 INFO kernel:scsi target2:0:0: Ending Domain Validation -05:50:23,035 INFO kernel:scsi target2:0:0: FAST-40 WIDE SCSI 80.0 MB/s ST (25 ns, offset 127) -05:50:23,036 NOTICE kernel:scsi 2:0:1:0: Direct-Access VMware Virtual disk 1.0 PQ: 0 ANSI: 2 -05:50:23,036 INFO kernel:scsi target2:0:1: Beginning Domain Validation -05:50:23,037 INFO kernel:scsi target2:0:1: Domain Validation skipping write tests -05:50:23,037 INFO kernel:scsi target2:0:1: Ending Domain Validation -05:50:23,037 INFO kernel:scsi target2:0:1: FAST-40 WIDE SCSI 80.0 MB/s ST (25 ns, offset 127) -05:50:23,061 WARNING kernel:sr0: scsi3-mmc drive: 1x/1x writer dvd-ram cd/rw xa/form2 cdda tray -05:50:23,061 INFO kernel:Uniform CD-ROM driver Revision: 3.20 -05:50:23,061 DEBUG kernel:sr 1:0:0:0: Attached scsi CD-ROM sr0 -05:50:23,072 INFO kernel:e1000: Intel(R) PRO/1000 Network Driver - version 7.3.21-k8-NAPI -05:50:23,072 INFO kernel:e1000: Copyright (c) 1999-2006 Intel Corporation. -05:50:23,072 DEBUG kernel: alloc irq_desc for 18 on node -1 -05:50:23,072 DEBUG kernel: alloc kstat_irqs on node -1 -05:50:23,072 INFO kernel:e1000 0000:02:00.0: PCI INT A -> GSI 18 (level, low) -> IRQ 18 -05:50:23,072 DEBUG kernel:e1000 0000:02:00.0: setting latency timer to 64 -05:50:23,422 INFO kernel:e1000 0000:02:00.0: eth0: (PCI:66MHz:32-bit) 00:0c:29:5c:6a:b8 -05:50:23,422 INFO kernel:e1000 0000:02:00.0: eth0: Intel(R) PRO/1000 Network Connection -05:50:23,422 DEBUG kernel: alloc irq_desc for 19 on node -1 -05:50:23,422 DEBUG kernel: alloc kstat_irqs on node -1 -05:50:23,422 INFO kernel:e1000 0000:02:01.0: PCI INT A -> GSI 19 (level, low) -> IRQ 19 -05:50:23,422 DEBUG kernel:e1000 0000:02:01.0: setting latency timer to 64 -05:50:23,766 INFO kernel:e1000 0000:02:01.0: eth1: (PCI:66MHz:32-bit) 00:0c:29:5c:6a:c2 -05:50:23,766 INFO kernel:e1000 0000:02:01.0: eth1: Intel(R) PRO/1000 Network Connection -05:50:23,766 DEBUG kernel: alloc irq_desc for 16 on node -1 -05:50:23,766 DEBUG kernel: alloc kstat_irqs on node -1 -05:50:23,766 INFO kernel:e1000 0000:02:02.0: PCI INT A -> GSI 16 (level, low) -> IRQ 16 -05:50:23,766 DEBUG kernel:e1000 0000:02:02.0: setting latency timer to 64 -05:50:24,116 INFO kernel:e1000 0000:02:02.0: eth2: (PCI:66MHz:32-bit) 00:0c:29:5c:6a:cc -05:50:24,116 INFO kernel:e1000 0000:02:02.0: eth2: Intel(R) PRO/1000 Network Connection -05:50:24,116 INFO kernel:e1000 0000:02:03.0: PCI INT A -> GSI 17 (level, low) -> IRQ 17 -05:50:24,116 DEBUG kernel:e1000 0000:02:03.0: setting latency timer to 64 -05:50:24,461 INFO kernel:e1000 0000:02:03.0: eth3: (PCI:66MHz:32-bit) 00:0c:29:5c:6a:d6 -05:50:24,461 INFO kernel:e1000 0000:02:03.0: eth3: Intel(R) PRO/1000 Network Connection -05:50:24,497 NOTICE kernel:sd 2:0:0:0: [sda] 33554432 512-byte logical blocks: (17.1 GB/16.0 GiB) -05:50:24,497 NOTICE kernel:sd 2:0:0:0: [sda] Write Protect is off -05:50:24,497 DEBUG kernel:sd 2:0:0:0: [sda] Mode Sense: 61 00 00 00 -05:50:24,497 NOTICE kernel:sd 2:0:0:0: [sda] Cache data unavailable -05:50:24,497 ERR kernel:sd 2:0:0:0: [sda] Assuming drive cache: write through -05:50:24,497 NOTICE kernel:sd 2:0:0:0: [sda] Cache data unavailable -05:50:24,497 ERR kernel:sd 2:0:0:0: [sda] Assuming drive cache: write through -05:50:24,497 INFO kernel: sda: -05:50:24,497 NOTICE kernel:sd 2:0:1:0: [sdb] 33554432 512-byte logical blocks: (17.1 GB/16.0 GiB) -05:50:24,497 NOTICE kernel:sd 2:0:1:0: [sdb] Write Protect is off -05:50:24,497 DEBUG kernel:sd 2:0:1:0: [sdb] Mode Sense: 61 00 00 00 -05:50:24,497 NOTICE kernel:sd 2:0:1:0: [sdb] Cache data unavailable -05:50:24,497 ERR kernel:sd 2:0:1:0: [sdb] Assuming drive cache: write through -05:50:24,497 NOTICE kernel:sd 2:0:1:0: [sdb] Cache data unavailable -05:50:24,497 ERR kernel:sd 2:0:1:0: [sdb] Assuming drive cache: write through -05:50:24,502 INFO kernel: sdb: -05:50:24,502 NOTICE kernel:sd 2:0:1:0: [sdb] Cache data unavailable -05:50:24,502 ERR kernel:sd 2:0:1:0: [sdb] Assuming drive cache: write through -05:50:24,502 NOTICE kernel:sd 2:0:1:0: [sdb] Attached SCSI disk -05:50:24,505 WARNING kernel: sda1 sda2 -05:50:24,531 NOTICE kernel:sd 2:0:0:0: [sda] Cache data unavailable -05:50:24,531 ERR kernel:sd 2:0:0:0: [sda] Assuming drive cache: write through -05:50:24,531 NOTICE kernel:sd 2:0:0:0: [sda] Attached SCSI disk -05:50:24,537 NOTICE kernel:sr 1:0:0:0: Attached scsi generic sg0 type 5 -05:50:24,538 NOTICE kernel:sd 2:0:0:0: Attached scsi generic sg1 type 0 -05:50:24,538 NOTICE kernel:sd 2:0:1:0: Attached scsi generic sg2 type 0 -05:50:28,728 ERR udevd-work: device node '/dev/rtc' already exists, link to '/dev/rtc0' will not overwrite it -05:50:31,010 INFO NetworkManager: NetworkManager (version 0.8.1-66.el6) is starting... -05:50:31,010 INFO NetworkManager: Read config file /etc/NetworkManager/NetworkManager.conf -05:50:31,012 INFO NetworkManager: trying to start the modem manager... -05:50:31,016 INFO NetworkManager: monitoring kernel firmware directory '/lib/firmware'. -05:50:31,016 INFO NetworkManager: Bonding/Bridging/VLAN support enabled -05:50:31,017 NOTICE NetworkManager: ifcfg-rh: Acquired D-Bus service com.redhat.ifcfgrh1 -05:50:31,018 INFO NetworkManager: Loaded plugin ifcfg-rh: (c) 2007 - 2008 Red Hat, Inc. To report bugs please use the NetworkManager mailing list. -05:50:31,018 INFO NetworkManager: Loaded plugin keyfile: (c) 2007 - 2008 Red Hat, Inc. To report bugs please use the NetworkManager mailing list. -05:50:31,018 NOTICE NetworkManager: ifcfg-rh: parsing /etc/sysconfig/network-scripts/ifcfg-eth3 ... -05:50:31,020 NOTICE NetworkManager: ifcfg-rh: read connection 'System eth3' -05:50:31,020 NOTICE NetworkManager: ifcfg-rh: parsing /etc/sysconfig/network-scripts/ifcfg-eth2 ... -05:50:31,021 NOTICE NetworkManager: ifcfg-rh: read connection 'System eth2' -05:50:31,021 NOTICE NetworkManager: ifcfg-rh: parsing /etc/sysconfig/network-scripts/ifcfg-eth1 ... -05:50:31,022 NOTICE NetworkManager: ifcfg-rh: read connection 'System eth1' -05:50:31,022 NOTICE NetworkManager: ifcfg-rh: parsing /etc/sysconfig/network-scripts/ifcfg-eth0 ... -05:50:31,022 NOTICE NetworkManager: ifcfg-rh: read connection 'System eth0' -05:50:31,023 WARNING NetworkManager: Can not read directory '/etc/NetworkManager/system-connections': Error opening directory '/etc/NetworkManager/system-connections': No such file or directory -05:50:31,025 INFO NetworkManager: WiFi enabled by radio killswitch; enabled by state file -05:50:31,025 INFO NetworkManager: WWAN enabled by radio killswitch; enabled by state file -05:50:31,025 INFO NetworkManager: WiMAX enabled by radio killswitch; enabled by state file -05:50:31,025 INFO NetworkManager: Networking is enabled by state file -05:50:31,044 INFO kernel:802.1Q VLAN Support v1.8 Ben Greear -05:50:31,044 INFO kernel:All bugs added by David S. Miller -05:50:31,045 INFO NetworkManager: (eth0): carrier is OFF -05:50:31,045 INFO NetworkManager: (eth0): new Ethernet device (driver: 'e1000' ifindex: 2) -05:50:31,045 INFO NetworkManager: (eth0): exported as /org/freedesktop/NetworkManager/Devices/0 -05:50:31,045 INFO NetworkManager: (eth0): now managed -05:50:31,045 INFO NetworkManager: (eth0): device state change: 1 -> 2 (reason 2) -05:50:31,045 INFO NetworkManager: (eth0): bringing up device. -05:50:31,051 INFO kernel:e1000: eth0 NIC Link is Up 1000 Mbps Full Duplex, Flow Control: None -05:50:31,055 INFO kernel:8021q: adding VLAN 0 to HW filter on device eth0 -05:50:31,056 INFO NetworkManager: (eth0): carrier now ON (device state 2) -05:50:31,056 INFO NetworkManager: (eth0): preparing device. -05:50:31,056 INFO NetworkManager: (eth0): deactivating device (reason: 2). -05:50:31,057 INFO NetworkManager: (eth1): carrier is OFF -05:50:31,058 INFO NetworkManager: (eth1): new Ethernet device (driver: 'e1000' ifindex: 3) -05:50:31,058 INFO NetworkManager: (eth1): exported as /org/freedesktop/NetworkManager/Devices/1 -05:50:31,058 INFO NetworkManager: (eth1): now managed -05:50:31,058 INFO NetworkManager: (eth1): device state change: 1 -> 2 (reason 2) -05:50:31,058 INFO NetworkManager: (eth1): bringing up device. -05:50:31,063 INFO kernel:e1000: eth1 NIC Link is Up 1000 Mbps Full Duplex, Flow Control: None -05:50:31,068 INFO kernel:8021q: adding VLAN 0 to HW filter on device eth1 -05:50:31,068 INFO NetworkManager: (eth1): carrier now ON (device state 2) -05:50:31,068 INFO NetworkManager: (eth1): preparing device. -05:50:31,068 INFO NetworkManager: (eth1): deactivating device (reason: 2). -05:50:31,069 INFO NetworkManager: (eth2): carrier is OFF -05:50:31,070 INFO NetworkManager: (eth2): new Ethernet device (driver: 'e1000' ifindex: 4) -05:50:31,070 INFO NetworkManager: (eth2): exported as /org/freedesktop/NetworkManager/Devices/2 -05:50:31,070 INFO NetworkManager: (eth2): now managed -05:50:31,070 INFO NetworkManager: (eth2): device state change: 1 -> 2 (reason 2) -05:50:31,070 INFO NetworkManager: (eth2): bringing up device. -05:50:31,076 INFO kernel:e1000: eth2 NIC Link is Up 1000 Mbps Full Duplex, Flow Control: None -05:50:31,080 INFO kernel:8021q: adding VLAN 0 to HW filter on device eth2 -05:50:31,080 INFO NetworkManager: (eth2): carrier now ON (device state 2) -05:50:31,080 INFO NetworkManager: (eth2): preparing device. -05:50:31,080 INFO NetworkManager: (eth2): deactivating device (reason: 2). -05:50:31,081 INFO NetworkManager: (eth3): carrier is OFF -05:50:31,082 INFO NetworkManager: (eth3): new Ethernet device (driver: 'e1000' ifindex: 5) -05:50:31,082 INFO NetworkManager: (eth3): exported as /org/freedesktop/NetworkManager/Devices/3 -05:50:31,082 INFO NetworkManager: (eth3): now managed -05:50:31,082 INFO NetworkManager: (eth3): device state change: 1 -> 2 (reason 2) -05:50:31,082 INFO NetworkManager: (eth3): bringing up device. -05:50:31,086 INFO kernel:e1000: eth3 NIC Link is Up 1000 Mbps Full Duplex, Flow Control: None -05:50:31,091 INFO kernel:8021q: adding VLAN 0 to HW filter on device eth3 -05:50:31,091 INFO NetworkManager: (eth3): carrier now ON (device state 2) -05:50:31,091 INFO NetworkManager: (eth3): preparing device. -05:50:31,091 INFO NetworkManager: (eth3): deactivating device (reason: 2). -05:50:31,093 INFO NetworkManager: (eth0): carrier now OFF (device state 2) -05:50:31,094 INFO NetworkManager: (eth0): carrier now ON (device state 2) -05:50:31,094 WARNING NetworkManager: (nm-device.c:4447):nm_device_queue_state: runtime check failed: (priv->queued_state.id == 0) -05:50:31,094 INFO NetworkManager: (eth1): carrier now OFF (device state 2) -05:50:31,094 INFO NetworkManager: (eth1): carrier now ON (device state 2) -05:50:31,094 WARNING NetworkManager: (nm-device.c:4447):nm_device_queue_state: runtime check failed: (priv->queued_state.id == 0) -05:50:31,094 INFO NetworkManager: (eth2): carrier now OFF (device state 2) -05:50:31,095 INFO NetworkManager: (eth2): carrier now ON (device state 2) -05:50:31,095 WARNING NetworkManager: (nm-device.c:4447):nm_device_queue_state: runtime check failed: (priv->queued_state.id == 0) -05:50:31,095 INFO NetworkManager: (eth3): carrier now OFF (device state 2) -05:50:31,095 INFO NetworkManager: (eth3): carrier now ON (device state 2) -05:50:31,095 WARNING NetworkManager: (nm-device.c:4447):nm_device_queue_state: runtime check failed: (priv->queued_state.id == 0) -05:50:31,096 INFO NetworkManager: Trying to start the supplicant... -05:50:31,097 INFO NetworkManager: (eth0): device state change: 2 -> 3 (reason 40) -05:50:31,097 INFO NetworkManager: (eth1): device state change: 2 -> 3 (reason 40) -05:50:31,097 INFO NetworkManager: (eth2): device state change: 2 -> 3 (reason 40) -05:50:31,098 INFO NetworkManager: (eth3): device state change: 2 -> 3 (reason 40) -05:50:31,104 INFO NetworkManager: wpa_supplicant started -05:50:32,010 WARNING NetworkManager: error requesting auth for org.freedesktop.NetworkManager.enable-disable-network: (26) Remote Exception invoking org.freedesktop.PolicyKit1.Authority.CheckAuthorization() on /org/freedesktop/PolicyKit1/Authority at name org.freedesktop.PolicyKit1: org.freedesktop.DBus.Error.Spawn.ExecFailed: Cannot launch daemon, file not found or permissions invalid -05:50:32,010 WARNING NetworkManager: error requesting auth for org.freedesktop.NetworkManager.sleep-wake: (26) Remote Exception invoking org.freedesktop.PolicyKit1.Authority.CheckAuthorization() on /org/freedesktop/PolicyKit1/Authority at name org.freedesktop.PolicyKit1: org.freedesktop.DBus.Error.Spawn.ExecFailed: Cannot launch daemon, file not found or permissions invalid -05:50:32,010 WARNING NetworkManager: error requesting auth for org.freedesktop.NetworkManager.enable-disable-wifi: (26) Remote Exception invoking org.freedesktop.PolicyKit1.Authority.CheckAuthorization() on /org/freedesktop/PolicyKit1/Authority at name org.freedesktop.PolicyKit1: org.freedesktop.DBus.Error.Spawn.ExecFailed: Cannot launch daemon, file not found or permissions invalid -05:50:32,010 WARNING NetworkManager: error requesting auth for org.freedesktop.NetworkManager.enable-disable-wwan: (26) Remote Exception invoking org.freedesktop.PolicyKit1.Authority.CheckAuthorization() on /org/freedesktop/PolicyKit1/Authority at name org.freedesktop.PolicyKit1: org.freedesktop.DBus.Error.Spawn.ExecFailed: Cannot launch daemon, file not found or permissions invalid -05:50:32,010 WARNING NetworkManager: error requesting auth for org.freedesktop.NetworkManager.use-user-connections: (26) Remote Exception invoking org.freedesktop.PolicyKit1.Authority.CheckAuthorization() on /org/freedesktop/PolicyKit1/Authority at name org.freedesktop.PolicyKit1: org.freedesktop.DBus.Error.Spawn.ExecFailed: Cannot launch daemon, file not found or permissions invalid -05:50:32,010 WARNING NetworkManager: error requesting auth for org.freedesktop.NetworkManager.network-control: (26) Remote Exception invoking org.freedesktop.PolicyKit1.Authority.CheckAuthorization() on /org/freedesktop/PolicyKit1/Authority at name org.freedesktop.PolicyKit1: org.freedesktop.DBus.Error.Spawn.ExecFailed: Cannot launch daemon, file not found or permissions invalid -05:50:32,010 WARNING NetworkManager: error requesting auth for org.freedesktop.network-manager-settings.system.wifi.share.open: (26) Remote Exception invoking org.freedesktop.PolicyKit1.Authority.CheckAuthorization() on /org/freedesktop/PolicyKit1/Authority at name org.freedesktop.PolicyKit1: org.freedesktop.DBus.Error.Spawn.ExecFailed: Cannot launch daemon, file not found or permissions invalid -05:50:32,010 WARNING NetworkManager: error requesting auth for org.freedesktop.network-manager-settings.system.wifi.share.protected: (26) Remote Exception invoking org.freedesktop.PolicyKit1.Authority.CheckAuthorization() on /org/freedesktop/PolicyKit1/Authority at name org.freedesktop.PolicyKit1: org.freedesktop.DBus.Error.Spawn.ExecFailed: Cannot launch daemon, file not found or permissions invalid -05:50:32,019 WARNING NetworkManager: error requesting auth for org.freedesktop.NetworkManager.enable-disable-network: (26) Remote Exception invoking org.freedesktop.PolicyKit1.Authority.CheckAuthorization() on /org/freedesktop/PolicyKit1/Authority at name org.freedesktop.PolicyKit1: org.freedesktop.DBus.Error.Spawn.ExecFailed: Cannot launch daemon, file not found or permissions invalid -05:50:32,019 WARNING NetworkManager: error requesting auth for org.freedesktop.NetworkManager.sleep-wake: (26) Remote Exception invoking org.freedesktop.PolicyKit1.Authority.CheckAuthorization() on /org/freedesktop/PolicyKit1/Authority at name org.freedesktop.PolicyKit1: org.freedesktop.DBus.Error.Spawn.ExecFailed: Cannot launch daemon, file not found or permissions invalid -05:50:32,019 WARNING NetworkManager: error requesting auth for org.freedesktop.NetworkManager.enable-disable-wifi: (26) Remote Exception invoking org.freedesktop.PolicyKit1.Authority.CheckAuthorization() on /org/freedesktop/PolicyKit1/Authority at name org.freedesktop.PolicyKit1: org.freedesktop.DBus.Error.Spawn.ExecFailed: Cannot launch daemon, file not found or permissions invalid -05:50:32,019 WARNING NetworkManager: error requesting auth for org.freedesktop.NetworkManager.enable-disable-wwan: (26) Remote Exception invoking org.freedesktop.PolicyKit1.Authority.CheckAuthorization() on /org/freedesktop/PolicyKit1/Authority at name org.freedesktop.PolicyKit1: org.freedesktop.DBus.Error.Spawn.ExecFailed: Cannot launch daemon, file not found or permissions invalid -05:50:32,019 WARNING NetworkManager: error requesting auth for org.freedesktop.NetworkManager.use-user-connections: (26) Remote Exception invoking org.freedesktop.PolicyKit1.Authority.CheckAuthorization() on /org/freedesktop/PolicyKit1/Authority at name org.freedesktop.PolicyKit1: org.freedesktop.DBus.Error.Spawn.ExecFailed: Cannot launch daemon, file not found or permissions invalid -05:50:32,019 WARNING NetworkManager: error requesting auth for org.freedesktop.NetworkManager.network-control: (26) Remote Exception invoking org.freedesktop.PolicyKit1.Authority.CheckAuthorization() on /org/freedesktop/PolicyKit1/Authority at name org.freedesktop.PolicyKit1: org.freedesktop.DBus.Error.Spawn.ExecFailed: Cannot launch daemon, file not found or permissions invalid -05:50:32,019 WARNING NetworkManager: error requesting auth for org.freedesktop.network-manager-settings.system.wifi.share.open: (26) Remote Exception invoking org.freedesktop.PolicyKit1.Authority.CheckAuthorization() on /org/freedesktop/PolicyKit1/Authority at name org.freedesktop.PolicyKit1: org.freedesktop.DBus.Error.Spawn.ExecFailed: Cannot launch daemon, file not found or permissions invalid -05:50:32,019 WARNING NetworkManager: error requesting auth for org.freedesktop.network-manager-settings.system.wifi.share.protected: (26) Remote Exception invoking org.freedesktop.PolicyKit1.Authority.CheckAuthorization() on /org/freedesktop/PolicyKit1/Authority at name org.freedesktop.PolicyKit1: org.freedesktop.DBus.Error.Spawn.ExecFailed: Cannot launch daemon, file not found or permissions invalid -05:50:32,026 WARNING NetworkManager: error requesting auth for org.freedesktop.NetworkManager.enable-disable-network: (26) Remote Exception invoking org.freedesktop.PolicyKit1.Authority.CheckAuthorization() on /org/freedesktop/PolicyKit1/Authority at name org.freedesktop.PolicyKit1: org.freedesktop.DBus.Error.Spawn.ExecFailed: Cannot launch daemon, file not found or permissions invalid -05:50:32,026 WARNING NetworkManager: error requesting auth for org.freedesktop.NetworkManager.sleep-wake: (26) Remote Exception invoking org.freedesktop.PolicyKit1.Authority.CheckAuthorization() on /org/freedesktop/PolicyKit1/Authority at name org.freedesktop.PolicyKit1: org.freedesktop.DBus.Error.Spawn.ExecFailed: Cannot launch daemon, file not found or permissions invalid -05:50:32,027 WARNING NetworkManager: error requesting auth for org.freedesktop.NetworkManager.enable-disable-wifi: (26) Remote Exception invoking org.freedesktop.PolicyKit1.Authority.CheckAuthorization() on /org/freedesktop/PolicyKit1/Authority at name org.freedesktop.PolicyKit1: org.freedesktop.DBus.Error.Spawn.ExecFailed: Cannot launch daemon, file not found or permissions invalid -05:50:32,027 WARNING NetworkManager: error requesting auth for org.freedesktop.NetworkManager.enable-disable-wwan: (26) Remote Exception invoking org.freedesktop.PolicyKit1.Authority.CheckAuthorization() on /org/freedesktop/PolicyKit1/Authority at name org.freedesktop.PolicyKit1: org.freedesktop.DBus.Error.Spawn.ExecFailed: Cannot launch daemon, file not found or permissions invalid -05:50:32,027 WARNING NetworkManager: error requesting auth for org.freedesktop.NetworkManager.use-user-connections: (26) Remote Exception invoking org.freedesktop.PolicyKit1.Authority.CheckAuthorization() on /org/freedesktop/PolicyKit1/Authority at name org.freedesktop.PolicyKit1: org.freedesktop.DBus.Error.Spawn.ExecFailed: Cannot launch daemon, file not found or permissions invalid -05:50:32,027 WARNING NetworkManager: error requesting auth for org.freedesktop.NetworkManager.network-control: (26) Remote Exception invoking org.freedesktop.PolicyKit1.Authority.CheckAuthorization() on /org/freedesktop/PolicyKit1/Authority at name org.freedesktop.PolicyKit1: org.freedesktop.DBus.Error.Spawn.ExecFailed: Cannot launch daemon, file not found or permissions invalid -05:50:32,027 WARNING NetworkManager: error requesting auth for org.freedesktop.network-manager-settings.system.wifi.share.open: (26) Remote Exception invoking org.freedesktop.PolicyKit1.Authority.CheckAuthorization() on /org/freedesktop/PolicyKit1/Authority at name org.freedesktop.PolicyKit1: org.freedesktop.DBus.Error.Spawn.ExecFailed: Cannot launch daemon, file not found or permissions invalid -05:50:32,027 WARNING NetworkManager: error requesting auth for org.freedesktop.network-manager-settings.system.wifi.share.protected: (26) Remote Exception invoking org.freedesktop.PolicyKit1.Authority.CheckAuthorization() on /org/freedesktop/PolicyKit1/Authority at name org.freedesktop.PolicyKit1: org.freedesktop.DBus.Error.Spawn.ExecFailed: Cannot launch daemon, file not found or permissions invalid -05:50:32,039 WARNING NetworkManager: error requesting auth for org.freedesktop.NetworkManager.enable-disable-network: (26) Remote Exception invoking org.freedesktop.PolicyKit1.Authority.CheckAuthorization() on /org/freedesktop/PolicyKit1/Authority at name org.freedesktop.PolicyKit1: org.freedesktop.DBus.Error.Spawn.ExecFailed: Cannot launch daemon, file not found or permissions invalid -05:50:32,039 WARNING NetworkManager: error requesting auth for org.freedesktop.NetworkManager.sleep-wake: (26) Remote Exception invoking org.freedesktop.PolicyKit1.Authority.CheckAuthorization() on /org/freedesktop/PolicyKit1/Authority at name org.freedesktop.PolicyKit1: org.freedesktop.DBus.Error.Spawn.ExecFailed: Cannot launch daemon, file not found or permissions invalid -05:50:32,039 WARNING NetworkManager: error requesting auth for org.freedesktop.NetworkManager.enable-disable-wifi: (26) Remote Exception invoking org.freedesktop.PolicyKit1.Authority.CheckAuthorization() on /org/freedesktop/PolicyKit1/Authority at name org.freedesktop.PolicyKit1: org.freedesktop.DBus.Error.Spawn.ExecFailed: Cannot launch daemon, file not found or permissions invalid -05:50:32,039 WARNING NetworkManager: error requesting auth for org.freedesktop.NetworkManager.enable-disable-wwan: (26) Remote Exception invoking org.freedesktop.PolicyKit1.Authority.CheckAuthorization() on /org/freedesktop/PolicyKit1/Authority at name org.freedesktop.PolicyKit1: org.freedesktop.DBus.Error.Spawn.ExecFailed: Cannot launch daemon, file not found or permissions invalid -05:50:32,039 WARNING NetworkManager: error requesting auth for org.freedesktop.NetworkManager.use-user-connections: (26) Remote Exception invoking org.freedesktop.PolicyKit1.Authority.CheckAuthorization() on /org/freedesktop/PolicyKit1/Authority at name org.freedesktop.PolicyKit1: org.freedesktop.DBus.Error.Spawn.ExecFailed: Cannot launch daemon, file not found or permissions invalid -05:50:32,039 WARNING NetworkManager: error requesting auth for org.freedesktop.NetworkManager.network-control: (26) Remote Exception invoking org.freedesktop.PolicyKit1.Authority.CheckAuthorization() on /org/freedesktop/PolicyKit1/Authority at name org.freedesktop.PolicyKit1: org.freedesktop.DBus.Error.Spawn.ExecFailed: Cannot launch daemon, file not found or permissions invalid -05:50:32,039 WARNING NetworkManager: error requesting auth for org.freedesktop.network-manager-settings.system.wifi.share.open: (26) Remote Exception invoking org.freedesktop.PolicyKit1.Authority.CheckAuthorization() on /org/freedesktop/PolicyKit1/Authority at name org.freedesktop.PolicyKit1: org.freedesktop.DBus.Error.Spawn.ExecFailed: Cannot launch daemon, file not found or permissions invalid -05:50:32,039 WARNING NetworkManager: error requesting auth for org.freedesktop.network-manager-settings.system.wifi.share.protected: (26) Remote Exception invoking org.freedesktop.PolicyKit1.Authority.CheckAuthorization() on /org/freedesktop/PolicyKit1/Authority at name org.freedesktop.PolicyKit1: org.freedesktop.DBus.Error.Spawn.ExecFailed: Cannot launch daemon, file not found or permissions invalid -05:50:33,054 NOTICE NetworkManager: ifcfg-rh: updating /etc/sysconfig/network-scripts/ifcfg-eth0 -05:50:33,057 INFO NetworkManager: Auto-activating connection 'System eth0'. -05:50:33,057 INFO NetworkManager: Activation (eth0) starting connection 'System eth0' -05:50:33,058 INFO NetworkManager: (eth0): device state change: 3 -> 4 (reason 0) -05:50:33,058 INFO NetworkManager: Activation (eth0) Stage 1 of 5 (Device Prepare) scheduled... -05:50:33,058 INFO NetworkManager: Activation (eth0) Stage 1 of 5 (Device Prepare) started... -05:50:33,059 INFO NetworkManager: Activation (eth0) Stage 2 of 5 (Device Configure) scheduled... -05:50:33,059 INFO NetworkManager: Activation (eth0) Stage 1 of 5 (Device Prepare) complete. -05:50:33,059 INFO NetworkManager: Activation (eth0) Stage 2 of 5 (Device Configure) starting... -05:50:33,059 INFO NetworkManager: (eth0): device state change: 4 -> 5 (reason 0) -05:50:33,059 INFO NetworkManager: Activation (eth0) Stage 2 of 5 (Device Configure) successful. -05:50:33,059 INFO NetworkManager: Activation (eth0) Stage 3 of 5 (IP Configure Start) scheduled. -05:50:33,059 INFO NetworkManager: Activation (eth0) Stage 2 of 5 (Device Configure) complete. -05:50:33,059 INFO NetworkManager: Activation (eth0) Stage 3 of 5 (IP Configure Start) started... -05:50:33,059 INFO NetworkManager: (eth0): device state change: 5 -> 7 (reason 0) -05:50:33,060 INFO NetworkManager: Activation (eth0) Beginning DHCPv4 transaction -05:50:33,062 INFO dhclient: Internet Systems Consortium DHCP Client 4.1.1-P1 -05:50:33,062 INFO NetworkManager: dhclient started with pid 654 -05:50:33,063 INFO NetworkManager: Activation (eth0) DHCPv4 will time out in 45 seconds -05:50:33,063 INFO dhclient: Copyright 2004-2010 Internet Systems Consortium. -05:50:33,063 INFO dhclient: All rights reserved. -05:50:33,063 INFO dhclient: For info, please visit https://www.isc.org/software/dhcp/ -05:50:33,063 INFO dhclient: -05:50:33,063 INFO NetworkManager: Activation (eth0) Stage 3 of 5 (IP Configure Start) complete. -05:50:33,066 INFO NetworkManager: (eth0): DHCPv4 state changed nbi -> preinit -05:50:33,068 INFO dhclient: Listening on LPF/eth0/00:0c:29:5c:6a:b8 -05:50:33,068 INFO dhclient: Sending on LPF/eth0/00:0c:29:5c:6a:b8 -05:50:33,068 INFO dhclient: Sending on Socket/fallback -05:50:37,004 INFO dhclient: DHCPDISCOVER on eth0 to 255.255.255.255 port 67 interval 7 (xid=0x3433ec2c) -05:50:37,048 INFO dhclient: DHCPOFFER from 10.145.88.211 -05:50:37,048 INFO dhclient: DHCPREQUEST on eth0 to 255.255.255.255 port 67 (xid=0x3433ec2c) -05:50:38,084 INFO dhclient: DHCPACK from 10.145.88.211 (xid=0x3433ec2c) -05:50:38,087 INFO dhclient: bound to 10.145.88.104 -- renewal in 10764 seconds. -05:50:38,087 INFO NetworkManager: (eth0): DHCPv4 state changed preinit -> bound -05:50:38,087 INFO NetworkManager: Activation (eth0) Stage 4 of 5 (IP4 Configure Get) scheduled... -05:50:38,087 INFO NetworkManager: Activation (eth0) Stage 4 of 5 (IP4 Configure Get) started... -05:50:38,087 INFO NetworkManager: address 10.145.88.104 -05:50:38,087 INFO NetworkManager: prefix 23 (255.255.254.0) -05:50:38,087 INFO NetworkManager: gateway 10.145.88.1 -05:50:38,087 INFO NetworkManager: hostname 'server2' -05:50:38,087 INFO NetworkManager: nameserver '10.145.88.211' -05:50:38,088 INFO NetworkManager: Activation (eth0) Stage 5 of 5 (IP Configure Commit) scheduled... -05:50:38,088 INFO NetworkManager: Activation (eth0) Stage 4 of 5 (IP4 Configure Get) complete. -05:50:38,088 INFO NetworkManager: Activation (eth0) Stage 5 of 5 (IP Configure Commit) started... -05:50:39,089 INFO NetworkManager: (eth0): device state change: 7 -> 8 (reason 0) -05:50:39,090 INFO NetworkManager: Policy set 'System eth0' (eth0) as default for IPv4 routing and DNS. -05:50:39,090 INFO NetworkManager: Setting system hostname to 'server2' (from DHCPv4) -05:50:39,091 INFO NetworkManager: Activation (eth0) successful, device activated. -05:50:39,092 INFO NetworkManager: Activation (eth0) Stage 5 of 5 (IP Configure Commit) complete. -05:50:55,174 WARNING NetworkManager: error requesting auth for org.freedesktop.NetworkManager.enable-disable-network: (26) Remote Exception invoking org.freedesktop.PolicyKit1.Authority.CheckAuthorization() on /org/freedesktop/PolicyKit1/Authority at name org.freedesktop.PolicyKit1: org.freedesktop.DBus.Error.Spawn.ExecFailed: Cannot launch daemon, file not found or permissions invalid -05:50:55,174 WARNING NetworkManager: error requesting auth for org.freedesktop.NetworkManager.sleep-wake: (26) Remote Exception invoking org.freedesktop.PolicyKit1.Authority.CheckAuthorization() on /org/freedesktop/PolicyKit1/Authority at name org.freedesktop.PolicyKit1: org.freedesktop.DBus.Error.Spawn.ExecFailed: Cannot launch daemon, file not found or permissions invalid -05:50:55,174 WARNING NetworkManager: error requesting auth for org.freedesktop.NetworkManager.enable-disable-wifi: (26) Remote Exception invoking org.freedesktop.PolicyKit1.Authority.CheckAuthorization() on /org/freedesktop/PolicyKit1/Authority at name org.freedesktop.PolicyKit1: org.freedesktop.DBus.Error.Spawn.ExecFailed: Cannot launch daemon, file not found or permissions invalid -05:50:55,174 WARNING NetworkManager: error requesting auth for org.freedesktop.NetworkManager.enable-disable-wwan: (26) Remote Exception invoking org.freedesktop.PolicyKit1.Authority.CheckAuthorization() on /org/freedesktop/PolicyKit1/Authority at name org.freedesktop.PolicyKit1: org.freedesktop.DBus.Error.Spawn.ExecFailed: Cannot launch daemon, file not found or permissions invalid -05:50:55,174 WARNING NetworkManager: error requesting auth for org.freedesktop.NetworkManager.use-user-connections: (26) Remote Exception invoking org.freedesktop.PolicyKit1.Authority.CheckAuthorization() on /org/freedesktop/PolicyKit1/Authority at name org.freedesktop.PolicyKit1: org.freedesktop.DBus.Error.Spawn.ExecFailed: Cannot launch daemon, file not found or permissions invalid -05:50:55,174 WARNING NetworkManager: error requesting auth for org.freedesktop.NetworkManager.network-control: (26) Remote Exception invoking org.freedesktop.PolicyKit1.Authority.CheckAuthorization() on /org/freedesktop/PolicyKit1/Authority at name org.freedesktop.PolicyKit1: org.freedesktop.DBus.Error.Spawn.ExecFailed: Cannot launch daemon, file not found or permissions invalid -05:50:55,174 WARNING NetworkManager: error requesting auth for org.freedesktop.network-manager-settings.system.wifi.share.open: (26) Remote Exception invoking org.freedesktop.PolicyKit1.Authority.CheckAuthorization() on /org/freedesktop/PolicyKit1/Authority at name org.freedesktop.PolicyKit1: org.freedesktop.DBus.Error.Spawn.ExecFailed: Cannot launch daemon, file not found or permissions invalid -05:50:55,174 WARNING NetworkManager: error requesting auth for org.freedesktop.network-manager-settings.system.wifi.share.protected: (26) Remote Exception invoking org.freedesktop.PolicyKit1.Authority.CheckAuthorization() on /org/freedesktop/PolicyKit1/Authority at name org.freedesktop.PolicyKit1: org.freedesktop.DBus.Error.Spawn.ExecFailed: Cannot launch daemon, file not found or permissions invalid -05:51:46,967 NOTICE dbus-daemon: [system] Unable to reload configuration: Error in file /etc/dbus-1/system.d/nm-dhcp-client.conf, line 1, column 0: no element found -05:51:46,969 NOTICE dbus-daemon: [system] Unable to reload configuration: Error in file /etc/dbus-1/system.d/org.freedesktop.PolicyKit1.conf, line 1, column 0: no element found -05:51:46,976 NOTICE dbus-daemon: [system] Reloaded configuration -05:51:47,135 DEBUG kernel:SELinux: 2048 avtab hash slots, 277800 rules. -05:51:47,214 DEBUG kernel:SELinux: 2048 avtab hash slots, 277800 rules. -05:51:47,702 DEBUG kernel:SELinux: 9 users, 12 roles, 3917 types, 217 bools, 1 sens, 1024 cats -05:51:47,702 DEBUG kernel:SELinux: 81 classes, 277800 rules -05:51:47,706 DEBUG kernel:SELinux: Completing initialization. -05:51:47,706 DEBUG kernel:SELinux: Setting up existing superblocks. -05:51:47,706 DEBUG kernel:SELinux: initialized (dev loop0, type squashfs), not configured for labeling -05:51:47,706 DEBUG kernel:SELinux: initialized (dev tmpfs, type tmpfs), uses transition SIDs -05:51:47,706 DEBUG kernel:SELinux: initialized (dev tmpfs, type tmpfs), uses transition SIDs -05:51:47,708 DEBUG kernel:SELinux: initialized (dev selinuxfs, type selinuxfs), uses genfs_contexts -05:51:47,708 DEBUG kernel:SELinux: initialized (dev mqueue, type mqueue), uses transition SIDs -05:51:47,708 DEBUG kernel:SELinux: initialized (dev hugetlbfs, type hugetlbfs), uses transition SIDs -05:51:47,708 DEBUG kernel:SELinux: initialized (dev devpts, type devpts), uses transition SIDs -05:51:47,708 DEBUG kernel:SELinux: initialized (dev inotifyfs, type inotifyfs), uses genfs_contexts -05:51:47,708 DEBUG kernel:SELinux: initialized (dev anon_inodefs, type anon_inodefs), uses genfs_contexts -05:51:47,708 DEBUG kernel:SELinux: initialized (dev pipefs, type pipefs), uses task SIDs -05:51:47,708 DEBUG kernel:SELinux: initialized (dev debugfs, type debugfs), uses genfs_contexts -05:51:47,708 DEBUG kernel:SELinux: initialized (dev sockfs, type sockfs), uses task SIDs -05:51:47,708 DEBUG kernel:SELinux: initialized (dev devtmpfs, type devtmpfs), uses transition SIDs -05:51:47,708 DEBUG kernel:SELinux: initialized (dev tmpfs, type tmpfs), uses transition SIDs -05:51:47,708 DEBUG kernel:SELinux: initialized (dev proc, type proc), uses genfs_contexts -05:51:47,708 DEBUG kernel:SELinux: initialized (dev bdev, type bdev), uses genfs_contexts -05:51:47,708 DEBUG kernel:SELinux: initialized (dev rootfs, type rootfs), uses genfs_contexts -05:51:47,709 DEBUG kernel:SELinux: initialized (dev sysfs, type sysfs), uses genfs_contexts -05:51:47,751 NOTICE kernel:type=1403 audit(1021096307.739:2): policy loaded auid=4294967295 ses=4294967295 -05:51:47,786 INFO kernel:md: raid0 personality registered for level 0 -05:51:47,793 INFO kernel:md: raid1 personality registered for level 1 -05:51:47,797 INFO kernel:async_tx: api initialized (async) -05:51:47,802 INFO kernel:xor: automatically using best checksumming function: generic_sse -05:51:47,810 INFO kernel: generic_sse: 9176.000 MB/sec -05:51:47,810 INFO kernel:xor: using function: generic_sse (9176.000 MB/sec) -05:51:47,834 WARNING kernel:raid6: sse2x1 4742 MB/s -05:51:47,851 WARNING kernel:raid6: sse2x2 7117 MB/s -05:51:47,868 WARNING kernel:raid6: sse2x4 7660 MB/s -05:51:47,868 WARNING kernel:raid6: using algorithm sse2x4 (7660 MB/s) -05:51:47,868 WARNING kernel:raid6: using ssse3x2 recovery algorithm -05:51:47,882 INFO kernel:md: raid6 personality registered for level 6 -05:51:47,882 INFO kernel:md: raid5 personality registered for level 5 -05:51:47,882 INFO kernel:md: raid4 personality registered for level 4 -05:51:47,893 INFO kernel:md: raid10 personality registered for level 10 -05:51:47,896 INFO kernel:md: linear personality registered for level -1 -05:51:47,909 INFO kernel:device-mapper: uevent: version 1.0.3 -05:51:47,909 INFO kernel:device-mapper: ioctl: 4.24.6-ioctl (2013-01-15) initialised: dm-devel@redhat.com -05:51:47,940 INFO kernel:device-mapper: multipath: version 1.5.0 loaded -05:51:47,944 INFO kernel:device-mapper: multipath round-robin: version 1.0.0 loaded -05:52:05,224 NOTICE kernel:sd 2:0:0:0: [sda] Cache data unavailable -05:52:05,224 ERR kernel:sd 2:0:0:0: [sda] Assuming drive cache: write through -05:52:05,225 INFO kernel: sda: sda1 -05:52:06,013 NOTICE kernel:sd 2:0:0:0: [sda] Cache data unavailable -05:52:06,013 ERR kernel:sd 2:0:0:0: [sda] Assuming drive cache: write through -05:52:06,023 INFO kernel: sda: -05:52:06,365 NOTICE kernel:sd 2:0:0:0: [sda] Cache data unavailable -05:52:06,365 ERR kernel:sd 2:0:0:0: [sda] Assuming drive cache: write through -05:52:06,415 INFO kernel: sda: sda1 -05:52:09,171 NOTICE kernel:sd 2:0:0:0: [sda] Cache data unavailable -05:52:09,171 ERR kernel:sd 2:0:0:0: [sda] Assuming drive cache: write through -05:52:09,171 INFO kernel: sda: sda1 sda2 -05:52:11,280 NOTICE kernel:sd 2:0:0:0: [sda] Cache data unavailable -05:52:11,280 ERR kernel:sd 2:0:0:0: [sda] Assuming drive cache: write through -05:52:11,280 INFO kernel: sda: sda1 sda2 sda3 -05:52:44,551 INFO kernel:Adding 3354616k swap on /dev/sda2. Priority:-1 extents:1 across:3354616k -05:52:45,044 INFO kernel:kjournald starting. Commit interval 5 seconds -05:52:45,053 INFO kernel:EXT3-fs (dm-0): using internal journal -05:52:45,053 INFO kernel:EXT3-fs (dm-0): mounted filesystem with ordered data mode -05:52:45,053 DEBUG kernel:SELinux: initialized (dev dm-0, type ext3), uses xattr -05:52:45,103 INFO kernel:kjournald starting. Commit interval 5 seconds -05:52:45,170 INFO kernel:EXT3-fs (sda1): using internal journal -05:52:45,170 INFO kernel:EXT3-fs (sda1): mounted filesystem with ordered data mode -05:52:45,170 DEBUG kernel:SELinux: initialized (dev sda1, type ext3), uses xattr -05:52:45,250 DEBUG kernel:SELinux: initialized (dev tmpfs, type tmpfs), uses transition SIDs -05:52:45,384 INFO kernel:kjournald starting. Commit interval 5 seconds -05:52:45,439 INFO kernel:EXT3-fs (dm-1): using internal journal -05:52:45,439 INFO kernel:EXT3-fs (dm-1): mounted filesystem with ordered data mode -05:52:45,439 DEBUG kernel:SELinux: initialized (dev dm-1, type ext3), uses xattr -05:52:45,604 INFO kernel:kjournald starting. Commit interval 5 seconds -05:52:45,648 INFO kernel:EXT3-fs (dm-2): using internal journal -05:52:45,648 INFO kernel:EXT3-fs (dm-2): mounted filesystem with ordered data mode -05:52:45,648 DEBUG kernel:SELinux: initialized (dev dm-2, type ext3), uses xattr -05:52:45,851 INFO kernel:kjournald starting. Commit interval 5 seconds -05:52:45,875 INFO kernel:EXT3-fs (dm-3): using internal journal -05:52:45,875 INFO kernel:EXT3-fs (dm-3): mounted filesystem with ordered data mode -05:52:45,875 DEBUG kernel:SELinux: initialized (dev dm-3, type ext3), uses xattr -05:52:54,110 DEBUG kernel:SELinux: initialized (dev usbfs, type usbfs), uses genfs_contexts -05:52:54,121 NOTICE NetworkManager: ifcfg-rh: updating /etc/sysconfig/network-scripts/ifcfg-eth3 -05:52:54,121 NOTICE NetworkManager: ifcfg-rh: updating /etc/sysconfig/network-scripts/ifcfg-eth2 -05:52:54,124 NOTICE NetworkManager: ifcfg-rh: updating /etc/sysconfig/network-scripts/ifcfg-eth1 -05:52:55,143 NOTICE NetworkManager: ifcfg-rh: updating /etc/sysconfig/network-scripts/ifcfg-eth3 -05:52:55,145 NOTICE NetworkManager: ifcfg-rh: updating /etc/sysconfig/network-scripts/ifcfg-eth2 -05:52:55,146 NOTICE NetworkManager: ifcfg-rh: updating /etc/sysconfig/network-scripts/ifcfg-eth1 -05:52:55,146 NOTICE NetworkManager: ifcfg-rh: updating /etc/sysconfig/network-scripts/ifcfg-eth0 -06:11:24,179 DEBUG kernel:SELinux: 2048 avtab hash slots, 277800 rules. -06:11:24,305 DEBUG kernel:SELinux: 2048 avtab hash slots, 277800 rules. -06:11:24,821 DEBUG kernel:SELinux: 9 users, 12 roles, 3917 types, 217 bools, 1 sens, 1024 cats -06:11:24,821 DEBUG kernel:SELinux: 81 classes, 277800 rules diff --git a/compass/tests/actions/update_progress/data/test2/test2 b/compass/tests/actions/update_progress/data/test2/test2 deleted file mode 100644 index 90fe85ec..00000000 --- a/compass/tests/actions/update_progress/data/test2/test2 +++ /dev/null @@ -1,224 +0,0 @@ -ADAPTERS = [ - {'name': 'CentOS_openstack', 'os': 'CentOS', 'target_system': 'openstack'}, -] -ROLES = [ - {'name': 'os-single-controller', 'target_system': 'openstack'}, - {'name': 'os-network', 'target_system': 'openstack'}, - {'name': 'os-compute', 'target_system': 'openstack'}, -] -SWITCHES = [ - {'ip': '1.2.3.4', 'vendor': 'huawei', 'credential': {'version': 'v2c', 'community': 'public'}}, -] -MACHINES_BY_SWITCH = { - '1.2.3.4': [ - {'mac': '00:00:01:02:03:04', 'port': 1, 'vlan': 1}, - {'mac': '00:00:01:02:03:05', 'port': 2, 'vlan': 2}, - ], -} -CLUSTERS = [ - { - 'name': 'cluster1', - 'adapter': 'CentOS_openstack', - 'mutable': False, - 'security': { - 'server_credentials': { - 'username': 'root', 'password': 'huawei' - }, - 'service_credentials': { - 'username': 'service', 'password': 'huawei' - }, - 'console_credentials': { - 'username': 'admin', 'password': 'huawei' - } - }, - 'networking': { - 'interfaces': { - 'management': { - 'nic': 'eth0', - 'promisc': 0, - 'netmask': '255.255.255.0', - 'ip_end': '192.168.20.200', - 'gateway': '', - 'ip_start': '192.168.20.100' - }, - 'storage': { - 'nic': 'eth0', - 'promisc': 0, - 'netmask': '255.255.254.0', - 'ip_end': '10.145.88.200', - 'gateway': '10.145.88.1', - 'ip_start': '10.145.88.100' - }, - 'public': { - 'nic': 'eth2', - 'promisc': 1, - 'netmask': '255.255.254.0', - 'ip_end': '10.145.88.255', - 'gateway': '10.145.88.1', - 'ip_start': '10.145.88.100' - }, - 'tenant': { - 'nic': 'eth0', - 'promisc': 0, - 'netmask': '255.255.254.0', - 'ip_end': '10.145.88.120', - 'gateway': '10.145.88.1', - 'ip_start': '10.145.88.100' - } - }, - 'global': { - 'nameservers': '192.168.20.254', - 'proxy': 'http://192.168.20.254:3128', - 'ntp_server': '192.168.20.254', - 'search_path': 'ods.com', - 'gateway': '10.145.88.1' - }, - }, - 'partition': '/home 20%%;/tmp 10%%;/var 30%%;', - }, -] -HOSTS_BY_CLUSTER = { - 'cluster1': [ - { - 'hostname': 'server1', - 'mac': '00:00:01:02:03:04', - 'mutable': False, - 'config': { - 'networking': { - 'interfaces': { - 'management': { - 'ip': '192.168.20.100', - }, - }, - }, - 'roles': ["os-single-controller", "os-network"], - }, - },{ - 'hostname': 'server2', - 'mac': '00:00:01:02:03:05', - 'mutable': False, - 'config': { - 'networking': { - 'interfaces': { - 'management': { - 'ip': '192.168.20.101', - }, - }, - }, - 'roles': ["os-compute"], - }, - }, - - ], -} - -EXPECTED = { - 'test2': { - 'checkpoint_1': { - 'host_states': { - 'server1': { - 'hostname': 'server1', - 'progress': 0.006, - 'state': 'INSTALLING' - }, - 'server2': { - 'hostname': 'server2', - 'progress': 0.006, - 'state': 'INSTALLING' - }, - }, - 'cluster_states': { - 'cluster1': { - 'clustername': 'cluster1', - 'progress': 0.006, - 'state': 'INSTALLING' - }, - }, - }, - 'checkpoint_2': { - 'host_states': { - 'server1': { - 'hostname': 'server1', - 'progress': 0.33, - 'state': 'INSTALLING' - }, - 'server2': { - 'hostname': 'server2', - 'progress': 0.33, - 'state': 'INSTALLING' - }, - }, - 'cluster_states': { - 'cluster1': { - 'clustername': 'cluster1', - 'progress': 0.33, - 'state': 'INSTALLING' - }, - }, - }, - 'checkpoint_3': { - 'host_states': { - 'server1': { - 'hostname': 'server1', - 'progress': 0.6, - 'state': 'INSTALLING' - }, - 'server2': { - 'hostname': 'server2', - 'progress': 0.6, - 'state': 'INSTALLING' - }, - }, - 'cluster_states': { - 'cluster1': { - 'clustername': 'cluster1', - 'progress': 0.6, - 'state': 'INSTALLING' - }, - }, - }, - 'checkpoint_4': { - 'host_states': { - 'server1': { - 'hostname': 'server1', - 'progress': 0.73882, - 'state': 'INSTALLING' - }, - 'server2': { - 'hostname': 'server2', - 'progress': 0.68374, - 'state': 'INSTALLING' - }, - }, - 'cluster_states': { - 'cluster1': { - 'clustername': 'cluster1', - 'progress': 0.71128, - 'state': 'INSTALLING' - }, - }, - }, - 'checkpoint_5': { - 'host_states': { - 'server1': { - 'hostname': 'server1', - 'progress': 1.0, - 'state': 'READY', - }, - 'server2': { - 'hostname': 'server2', - 'progress': 1.0, - 'state': 'READY', - } - }, - 'cluster_states': { - 'cluster1': { - 'clustername': 'cluster1', - 'progress': 1.0, - 'state': 'READY' - }, - }, - }, - }, -} - diff --git a/compass/tests/actions/update_progress/test_update_progress.py b/compass/tests/actions/update_progress/test_update_progress.py deleted file mode 100644 index 2c6f5a16..00000000 --- a/compass/tests/actions/update_progress/test_update_progress.py +++ /dev/null @@ -1,255 +0,0 @@ -#!/usr/bin/python -# -# Copyright 2014 Huawei Technologies Co. Ltd -# -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. - -"""integration test for action update_progress""" -import logging -import mock -import os -import os.path -import shutil -import unittest2 -import uuid - -from contextlib import contextmanager - - -os.environ['COMPASS_IGNORE_SETTING'] = 'true' - - -from compass.utils import setting_wrapper as setting -reload(setting) - - -setting.CONFIG_DIR = '%s/data' % os.path.dirname(os.path.abspath(__file__)) - - -from compass.actions import update_progress -from compass.actions import util -from compass.db import database -from compass.db.model import Adapter -from compass.db.model import Cluster -from compass.db.model import ClusterHost -from compass.db.model import ClusterState -from compass.db.model import HostState -from compass.db.model import Machine -from compass.db.model import Role -from compass.db.model import Switch - -from compass.log_analyzor import file_matcher - -from compass.utils import flags -from compass.utils import logsetting - - -def sortCheckPoints(check_points): - ret = [] - mapping = {} - for check_point in check_points: - cp_index = int(check_point[-1]) - ret.append(cp_index) - mapping[cp_index] = check_point - - ret.sort() - while True: - if isinstance(ret[0], int): - ret.append(mapping[ret[0]]) - ret.pop(0) - else: - break - return ret - - -class TestEndToEnd(unittest2.TestCase): - """Integration test classs.""" - - def _mock_lock(self): - @contextmanager - def _lock(lock_name, blocking=True, timeout=10): - """mock lock.""" - try: - yield lock_name - finally: - pass - - self.lock_backup_ = util.lock - util.lock = mock.Mock(side_effect=_lock) - - def _unmock_lock(self): - util.lock = self.lock_backup_ - - def _test(self, config_file): - full_path = '%s/data/%s' % ( - os.path.dirname(os.path.abspath(__file__)), - config_file) - config_file_path = '%s/%s' % ( - full_path, config_file) - - class _TmpLogMocker: - """Mocks logs from a check point.""" - - def __init__(in_self, source_path, check_point, tmp_logdir): - in_self.source_path = source_path - in_self.check_point = check_point - in_self.__logdir__ = tmp_logdir - - def _merge_logs(in_self): - dest = in_self.__logdir__ - source = os.path.join( - in_self.source_path, in_self.check_point) - shutil.copytree(source, dest) - for root, sub_dir, files in os.walk(dest): - for file in files: - new_name = file.replace(".template", "") - os.rename( - os.path.join(root, file), - os.path.join(root, new_name)) - - config_globals = {} - config_locals = {} - execfile(config_file_path, config_globals, config_locals) - self._prepare_database(config_locals) - cluster_hosts = {} - with database.session() as session: - clusters = session.query(Cluster).all() - for cluster in clusters: - cluster_hosts[cluster.id] = [ - host.id for host in cluster.hosts] - - mock_log_path = os.path.join(full_path, "anamon") - check_points = os.listdir(mock_log_path) - check_points = sortCheckPoints(check_points) - for check_point in check_points: - tmp_logdir = os.path.join('/tmp/mocklogs', str(uuid.uuid4())) - log_mocker = _TmpLogMocker(mock_log_path, check_point, tmp_logdir) - setting.INSTALLATION_LOGDIR = log_mocker.__logdir__ - logging.info('temp logging dir set to: %s', - setting.INSTALLATION_LOGDIR) - log_mocker._merge_logs() - reload(file_matcher) - update_progress.update_progress(cluster_hosts) - self._check_progress(config_locals, config_file, check_point) - - def _check_progress(self, mock_configs, test_type, check_point): - with database.session() as session: - host_states = session.query(HostState).all() - cluster_states = session.query(ClusterState).all() - expected = mock_configs['EXPECTED'] - - for host_state in host_states: - states = self._filter_query_result( - host_state, ("hostname", "state", "progress")) - expected_host_states = expected[ - test_type][check_point][ - 'host_states'][host_state.hostname] - self.assertEqual(expected_host_states, states) - - for cluster_state in cluster_states: - states = self._filter_query_result( - cluster_state, ("clustername", "state", "progress")) - expected_cluster_states = expected[ - test_type][check_point][ - 'cluster_states'][cluster_state.clustername] - self.assertEqual(expected_cluster_states, states) - - def _filter_query_result(self, model, keywords): - filtered_dict = {} - for keyword in keywords: - pair = {keyword: eval("model.%s" % keyword)} - filtered_dict.update(pair) - return filtered_dict - - def _prepare_database(self, config_locals): - """Prepare database.""" - with database.session() as session: - adapters = {} - for adapter_config in config_locals['ADAPTERS']: - adapter = Adapter(**adapter_config) - session.add(adapter) - adapters[adapter_config['name']] = adapter - - roles = {} - for role_config in config_locals['ROLES']: - role = Role(**role_config) - session.add(role) - roles[role_config['name']] = role - - switches = {} - for switch_config in config_locals['SWITCHES']: - switch = Switch(**switch_config) - session.add(switch) - switches[switch_config['ip']] = switch - - machines = {} - for switch_ip, machine_configs in ( - config_locals['MACHINES_BY_SWITCH'].items() - ): - for machine_config in machine_configs: - machine = Machine(**machine_config) - machines[machine_config['mac']] = machine - machine.switch = switches[switch_ip] - session.add(machine) - - clusters = {} - for cluster_config in config_locals['CLUSTERS']: - adapter_name = cluster_config['adapter'] - del cluster_config['adapter'] - cluster = Cluster(**cluster_config) - clusters[cluster_config['name']] = cluster - cluster.adapter = adapters[adapter_name] - cluster.state = ClusterState( - state="INSTALLING", progress=0.0, message='') - session.add(cluster) - - hosts = {} - for cluster_name, host_configs in ( - config_locals['HOSTS_BY_CLUSTER'].items() - ): - for host_config in host_configs: - mac = host_config['mac'] - del host_config['mac'] - host = ClusterHost(**host_config) - hosts['%s.%s' % ( - host_config['hostname'], cluster_name)] = host - host.machine = machines[mac] - host.cluster = clusters[cluster_name] - host.state = HostState( - state="INSTALLING", progress=0.0, message='') - session.add(host) - - def setUp(self): - super(TestEndToEnd, self).setUp() - logsetting.init() - database.create_db() - self._mock_lock() - os.system = mock.Mock() - self.progress_checker_ = {} - - def tearDown(self): - database.drop_db() - self._unmock_lock() - #shutil.rmtree('/tmp/mocklogs/') - super(TestEndToEnd, self).tearDown() - - def test_1(self): - self._test('test1') - - def test_2(self): - self._test('test2') - -if __name__ == '__main__': - flags.init() - logsetting.init() - unittest2.main() diff --git a/compass/tests/api/__init__.py b/compass/tests/api/__init__.py index 4ee55a4c..e69de29b 100644 --- a/compass/tests/api/__init__.py +++ b/compass/tests/api/__init__.py @@ -1,13 +0,0 @@ -# Copyright 2014 Huawei Technologies Co. Ltd -# -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. diff --git a/compass/tests/api/expected_csv/adapter.csv b/compass/tests/api/expected_csv/adapter.csv deleted file mode 100644 index 5cf79dda..00000000 --- a/compass/tests/api/expected_csv/adapter.csv +++ /dev/null @@ -1,2 +0,0 @@ -id,name,os,target_system -1,Centos_openstack,Centos,openstack diff --git a/compass/tests/api/expected_csv/cluster.csv b/compass/tests/api/expected_csv/cluster.csv deleted file mode 100644 index 1cf12dcd..00000000 --- a/compass/tests/api/expected_csv/cluster.csv +++ /dev/null @@ -1,3 +0,0 @@ -id,name,security_config.server_credentials.username,security_config.server_credentials.password,security_config.service_credentials.username,security_config.service_credentials.password,security_config.console_credentials.username,security_config.console_credentials.password,networking_config.interfaces.management.nic,networking_config.interfaces.management.netmask,networking_config.interfaces.management.promisc,networking_config.interfaces.management.ip_end,networking_config.interfaces.management.gateway,networking_config.interfaces.management.ip_start,networking_config.interfaces.storage.nic,networking_config.interfaces.storage.netmask,networking_config.interfaces.storage.promisc,networking_config.interfaces.storage.ip_end,networking_config.interfaces.storage.gateway,networking_config.interfaces.storage.ip_start,networking_config.interfaces.public.nic,networking_config.interfaces.public.netmask,networking_config.interfaces.public.promisc,networking_config.interfaces.public.ip_end,networking_config.interfaces.public.gateway,networking_config.interfaces.public.ip_start,networking_config.interfaces.tenant.nic,networking_config.interfaces.tenant.netmask,networking_config.interfaces.tenant.promisc,networking_config.interfaces.tenant.ip_end,networking_config.interfaces.tenant.gateway,networking_config.interfaces.tenant.ip_start,networking_config.global.nameservers,networking_config.global.ntp_server,networking_config.global.gateway,networking_config.global.ha_vip,networking_config.global.proxy,networking_config.global.search_path,partition_config,adapter_id,state -1,cluster_01,root,root,service,admin,console,admin,eth0,255.255.255.0,1,10.120.1.200,None,10.120.1.100,eth3,255.255.255.0,0,172.29.1.200,None,172.29.1.100,eth2,255.255.255.0,0,12.145.1.200,None,12.145.1.100,eth1,255.255.255.0,0,192.168.1.200,None,192.168.1.100,8.8.8.8,127.0.0.1,192.168.1.1,None,http://127.0.0.1:3128,ods.com,"/home 20%;/tmp 10%;/var 30%;",1,READY -2,cluster_02,root,root,service,admin,console,admin,eth0,255.255.255.0,1,10.120.2.200,None,10.120.2.100,eth3,255.255.255.0,0,172.29.2.200,None,172.29.2.100,eth2,255.255.255.0,0,12.145.2.200,None,12.145.2.100,eth1,255.255.255.0,0,192.168.2.200,None,192.168.2.100,8.8.8.8,127.0.0.1,192.168.1.1,None,http://127.0.0.1:3128,ods.com,"/home 20%;/tmp 10%;/var 30%;",1,ERROR diff --git a/compass/tests/api/expected_csv/cluster_host.csv b/compass/tests/api/expected_csv/cluster_host.csv deleted file mode 100644 index 0330bdf8..00000000 --- a/compass/tests/api/expected_csv/cluster_host.csv +++ /dev/null @@ -1,7 +0,0 @@ -id,cluster_id,hostname,machine_id,config_data.networking.interfaces.management.ip,config_data.networking.interfaces.tenant.ip,config_data.roles,state,deploy_action -1,1,host_01,1,10.120.1.100,192.168.1.100,['base'],READY,0 -2,1,host_02,2,10.120.1.101,192.168.1.101,['base'],READY,0 -3,1,host_03,3,10.120.1.102,192.168.1.102,['base'],READY,0 -4,2,host_01,4,10.120.2.100,192.168.2.100,['base'],ERROR,0 -5,2,host_02,5,10.120.2.101,192.168.2.101,['base'],READY,0 -6,2,host_03,6,10.120.2.102,192.168.2.102,['base'],ERROR,0 diff --git a/compass/tests/api/expected_csv/machine.csv b/compass/tests/api/expected_csv/machine.csv deleted file mode 100644 index b02d95fe..00000000 --- a/compass/tests/api/expected_csv/machine.csv +++ /dev/null @@ -1,12 +0,0 @@ -id,mac,port,vlan,switch_id -1,00:0c:27:88:0c:a1,1,1,1 -2,00:0c:27:88:0c:a2,2,1,1 -3,00:0c:27:88:0c:a3,3,1,1 -4,00:0c:27:88:0c:b1,1,1,2 -5,00:0c:27:88:0c:b2,2,1,2 -6,00:0c:27:88:0c:b3,3,1,2 -7,00:0c:27:88:0c:c1,1,1,3 -8,00:0c:27:88:0c:c2,2,1,3 -9,00:0c:27:88:0c:c3,3,1,3 -10,00:0c:27:88:0c:d1,1,1,4 -11,00:0c:27:88:0c:d2,2,1,4 diff --git a/compass/tests/api/expected_csv/role.csv b/compass/tests/api/expected_csv/role.csv deleted file mode 100644 index cc611bea..00000000 --- a/compass/tests/api/expected_csv/role.csv +++ /dev/null @@ -1,2 +0,0 @@ -id,name,target_system,description -1,compute,openstack,None diff --git a/compass/tests/api/expected_csv/switch.csv b/compass/tests/api/expected_csv/switch.csv deleted file mode 100644 index 40af787c..00000000 --- a/compass/tests/api/expected_csv/switch.csv +++ /dev/null @@ -1,5 +0,0 @@ -id,ip,credential_data.version,credential_data.community -1,192.168.2.1,2c,public -2,192.168.2.2,2c,public -3,192.168.2.3,2c,public -4,192.168.2.4,2c,public diff --git a/compass/tests/api/expected_csv/switch_config.csv b/compass/tests/api/expected_csv/switch_config.csv deleted file mode 100644 index 405bcf0e..00000000 --- a/compass/tests/api/expected_csv/switch_config.csv +++ /dev/null @@ -1,3 +0,0 @@ -id,ip,filter_port -1,192.168.1.10,1 -2,192.168.1.11,2 diff --git a/compass/tests/api/test_api.py b/compass/tests/api/test_api.py old mode 100755 new mode 100644 index aaffad2f..ea7e3040 --- a/compass/tests/api/test_api.py +++ b/compass/tests/api/test_api.py @@ -6,7 +6,7 @@ # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # -# http://www.apache.org/licenses/LICENSE-2.0 +# http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, @@ -15,1591 +15,44 @@ # limitations under the License. """test api module.""" -import celery -import copy -import csv -import mock -import os import simplejson as json import unittest2 -os.environ['COMPASS_IGNORE_SETTING'] = 'true' - - -from compass.utils import setting_wrapper as setting -reload(setting) - - from compass.api import app -from compass.api import login_manager -from compass.db import database -from compass.db.model import Adapter -from compass.db.model import Cluster -from compass.db.model import ClusterHost -from compass.db.model import ClusterState -from compass.db.model import HostState -from compass.db.model import Machine -from compass.db.model import Role -from compass.db.model import Switch -from compass.db.model import SwitchConfig -from compass.utils import flags -from compass.utils import logsetting -from compass.utils import util +from compass.api.exception import ItemNotFound +from compass.db.api import database + app.config['TESTING'] = True -app.config['WTF_CSRF_ENABLED'] = False -login_manager.init_app(app) class ApiTestCase(unittest2.TestCase): """base api test class.""" - CLUSTER_NAME = "Test1" - SWITCH_IP_ADDRESS1 = '10.10.10.1' - SWITCH_CREDENTIAL = {'version': 'xxx', - 'community': 'xxx'} DATABASE_URL = 'sqlite://' def setUp(self): super(ApiTestCase, self).setUp() - logsetting.init() database.init(self.DATABASE_URL) database.create_db() self.test_client = app.test_client() - # We do not want to send a real task as our test environment - # does not have a AMQP system set up. TODO(): any better way? - celery.current_app.send_task = mock.Mock() - def tearDown(self): database.drop_db() super(ApiTestCase, self).tearDown() - -class TestSwtichMachineAPI(ApiTestCase): - """test switch machine api.""" - - SWITCH_RESP_TPL = {"state": "under_monitoring", - "ip": "", - "link": {"href": "", - "rel": "self"}, - "id": ""} - - def setUp(self): - super(TestSwtichMachineAPI, self).setUp() - logsetting.init() - # Create one switch in database - with database.session() as session: - test_switch = Switch(ip=self.SWITCH_IP_ADDRESS1) - test_switch.credential = self.SWITCH_CREDENTIAL - test_switch.state = 'under_monitoring' - session.add(test_switch) - - def tearDown(self): - super(TestSwtichMachineAPI, self).tearDown() - - def test_get_switch_list(self): - """tst get switch list api.""" - # Prepare testing data - with database.session() as session: - switches = [ - Switch( - ip='192.168.1.1', - credential_data=json.dumps(self.SWITCH_CREDENTIAL)), - Switch( - ip='192.168.1.2', - credential_data=json.dumps(self.SWITCH_CREDENTIAL)), - Switch( - ip='192.1.192.1', - credential_data=json.dumps(self.SWITCH_CREDENTIAL)), - Switch( - ip='192.1.192.2', - credential_data=json.dumps(self.SWITCH_CREDENTIAL)), - Switch( - ip='192.1.195.3', - credential_data=json.dumps(self.SWITCH_CREDENTIAL)), - Switch( - ip='192.2.192.4', - credential_data=json.dumps(self.SWITCH_CREDENTIAL)) - ] - session.add_all(switches) - - # Start to query switches - # a. query multiple switches with ip - # b. query switches with only switchIpNetwork - # c. query only with limit - # d. query swithes with switchIpNetwork and limit number - # e. query switches with all conditions - # f. Invliad switch ip format - # g. Invalid switch ip network format - - test_list = [{'url': ('/switches?switchIp=192.168.1.1' - '&switchIp=192.168.1.2'), - 'expected_code': 200, 'expected_count': 2}, - {'url': '/switches?switchIpNetwork=192.1.192.0/22', - 'expected_code': 200, 'expected_count': 3}, - {'url': '/switches?limit=3', 'expected_code': 200, - 'expected_count': 3}, - {'url': '/switches?limit=-1', 'expected_code': 400}, - {'url': ('/switches?switchIpNetwork=192.1.192.0/22' - '&limit=1'), - 'expected_code': 200, 'expected_count': 1}, - {'url': ('/switches?switchIp=192.168.1.1' - '&switchIpNetwork=192.1.192.0/22&limit=3'), - 'expected_code': 400}, - {'url': '/switches?switchIp=192.168.1.xx', - 'expected_code': 400}, - {'url': '/switches?switchIpNetwork=192.168.1.x', - 'expected_code': 400}] - - for test in test_list: - url = test['url'] - return_value = self.test_client.get(url) - data = json.loads(return_value.get_data()) - expected_code = test['expected_code'] - self.assertEqual(return_value.status_code, expected_code) - - if 'expected_count' in test: - expected_count = test['expected_count'] - switch_count = len(data['switches']) - self.assertEqual(switch_count, expected_count) - - def test_post_switch_list(self): - """test post switch list.""" - # Test SwitchList POST method - url = '/switches' - - # a. post a new switch - data = {'switch': { - 'ip': '10.10.10.2', - 'credential': self.SWITCH_CREDENTIAL}} - - return_value = self.test_client.post(url, data=json.dumps(data)) - self.assertEqual(return_value.status_code, 202) - - with database.session() as session: - switch = session.query(Switch).filter_by(ip='10.10.10.2').first() - self.assertEqual(switch.ip, '10.10.10.2') - - # b. Post Conflict switch Ip - return_value = self.test_client.post(url, data=json.dumps(data)) - self.assertEqual(return_value.status_code, 409) - data = json.loads(return_value.get_data()) - self.assertEqual("IP address '10.10.10.2' already exists", - data['message']) - self.assertEqual(2, data['failedSwitch']) - - # c. Invalid Ip format - data = {'switch': { - 'ip': '192.543.1.1', - 'credential': self.SWITCH_CREDENTIAL}} - return_value = self.test_client.post(url, data=json.dumps(data)) - self.assertEqual(return_value.status_code, 400) - - def test_get_switch_by_id(self): - """test get switch by id.""" - # Test Get /switches/{id} - # Non-exist switch id - url = '/switches/1000' - return_value = self.test_client.get(url) - self.assertEqual(return_value.status_code, 404) - - correct_url = '/switches/1' - return_value = self.test_client.get(correct_url) - data = json.loads(return_value.get_data()) - - expected_switch_resp = self.SWITCH_RESP_TPL.copy() - expected_switch_resp['link']['href'] = correct_url - expected_switch_resp['id'] = 1 - expected_switch_resp['ip'] = "10.10.10.1" - - self.assertEqual(return_value.status_code, 200) - self.assertEqual(data["status"], "OK") - self.assertDictEqual(data["switch"], expected_switch_resp) - - def test_put_switch_by_id(self): - """test put switch by id.""" - # Test put a switch by id - url = '/switches/1000' - # Put a non-existing switch - data = {'switch': {'credential': self.SWITCH_CREDENTIAL}} - return_value = self.test_client.put(url, data=json.dumps(data)) - self.assertEqual(return_value.status_code, 404) - - # Put sucessfully - url = '/switches/1' - credential = copy.deepcopy(self.SWITCH_CREDENTIAL) - credential['version'] = '1v' - data = {'switch': {'credential': credential}} - return_value = self.test_client.put(url, data=json.dumps(data)) - self.assertEqual(return_value.status_code, 202) - self.assertEqual( - json.loads(return_value.get_data())['switch']['state'], - 'repolling') - - def test_delete_switch(self): - """test delete switch.""" - url = '/switches/1' - return_value = self.test_client.delete(url) - self.assertEqual(return_value.status_code, 405) - - def test_get_machine_by_id(self): - """test get machine by id.""" - # Prepare testing data - with database.session() as session: - machine = Machine(mac='00:27:88:0c:a6', port='1', vlan='1', - switch_id=1) - session.add(machine) - - # machine id exists in Machine table - url = '/machines/1' - return_value = self.test_client.get(url) - self.assertEqual(return_value.status_code, 200) - - # machine id doesn't exist - url = '/machines/1000' - return_value = self.test_client.get(url) - self.assertEqual(return_value.status_code, 404) - - def test_get_machine_list(self): - """test get machine list.""" - #Prepare testing data - with database.session() as session: - switch_config = [ - SwitchConfig(ip='10.10.10.1', filter_port='6'), - SwitchConfig(ip='10.10.10.1', filter_port='7') - ] - session.add_all(switch_config) - - machines = [Machine(mac='00:27:88:0c:01', port='1', vlan='1', - switch_id=1), - Machine(mac='00:27:88:0c:02', port='2', vlan='1', - switch_id=1), - Machine(mac='00:27:88:0c:03', port='3', vlan='1', - switch_id=1), - Machine(mac='00:27:88:01:04', port='4', vlan='1', - switch_id=1), - Machine(mac='00:27:88:01:05', port='5', vlan='1', - switch_id=1), - Machine(mac='00:27:88:01:06', port='6', vlan='1', - switch_id=1), - Machine(mac='00:27:88:01:07', port='7', vlan='1', - switch_id=1), - Machine(mac='00:27:88:01:08', port='8', vlan='1', - switch_id=1), - Machine(mac='00:27:88:01:09', port='9', vlan='1', - switch_id=1), - Machine(mac='00:27:88:01:10', port='10', vlan='1', - switch_id=1), - Machine(mac='00:27:88:0c:04', port='3', vlan='1', - switch_id=2), - Machine(mac='00:27:88:0c:05', port='4', vlan='2', - switch_id=2), - Machine(mac='00:27:88:0c:06', port='5', vlan='3', - switch_id=3)] - session.add_all(machines) - - test_list = [{'url': '/machines', 'expected': 11}, - {'url': '/machines?limit=3', 'expected': 3}, - {'url': '/machines?limit=50', 'expected': 11}, - {'url': '/machines?switchId=1&vladId=1&port=2', - 'expected': 1}, - {'url': '/machines?switchId=1&vladId=1&limit=2', - 'expected': 2}, - {'url': '/machines?switchId=1', 'expected': 8}, - # TODO: - #{'url': '/machines?switchId=1&port=6', 'expected': 1}, - {'url': '/machines?switchId=4', 'expected': 0}, - {'url': "/machines?mac='00:27:88:0c:01'", 'expected': 1}] - - for test in test_list: - url = test['url'] - expected = test['expected'] - return_value = self.test_client.get(url) - data = json.loads(return_value.get_data()) - count = len(data['machines']) - self.assertEqual(return_value.status_code, 200) - self.assertEqual(count, expected) - - -class TestClusterAPI(ApiTestCase): - """test cluster api.""" - - SECURITY_CONFIG = { - 'server_credentials': { - 'username': 'root', - 'password': 'huawei123'}, - 'service_credentials': { - 'username': 'admin', - 'password': 'huawei123'}, - 'console_credentials': { - 'username': 'admin', - 'password': 'huawei123'}} - - NETWORKING_CONFIG = { - "interfaces": { - "management": { - "ip_start": "192.168.1.100", - "ip_end": "192.168.1.200", - "netmask": "255.255.255.0", - "gateway": "192.168.1.1", - "nic": "eth0", - "promisc": 1}, - "tenant": { - "ip_start": "192.168.1.100", - "ip_end": "192.168.1.200", - "netmask": "255.255.255.0", - "gateway": "", - "nic": "eth1", - "promisc": 0}, - "public": { - "ip_start": "192.168.1.100", - "ip_end": "192.168.1.200", - "netmask": "255.255.255.0", - "gateway": "", - "nic": "eth3", - "promisc": 1}, - "storage": { - "ip_start": "192.168.1.100", - "ip_end": "192.168.1.200", - "netmask": "255.255.255.0", - "gateway": "", - "nic": "eth3", - "promisc": 1}}, - "global": { - "gateway": "192.168.1.1", - "proxy": "", - "ntp_server": "", - "nameservers": "8.8.8.8", - "search_path": "ods.com,ods1.com", - "ha_vip": "192.168.20.1"}} - - def setUp(self): - super(TestClusterAPI, self).setUp() - logsetting.init() - #Prepare testing data - with database.session() as session: - clusters_list = [ - Cluster(name='cluster_01'), # undeployed - Cluster(name="cluster_02"), # undeployed - Cluster(name="cluster_03", mutable=False), # installing - Cluster(name="cluster_04", mutable=False), # installing - Cluster(name="cluster_05"), # failed - Cluster(name="cluster_06"), # failed - Cluster(name="cluster_07"), # successful - Cluster(name="cluster_08"), # successful - ] - session.add_all(clusters_list) - - cluster_states = [ - ClusterState(id=3, state='INSTALLING'), - ClusterState(id=4, state='INSTALLING'), - ClusterState(id=5, state='ERROR'), - ClusterState(id=6, state='ERROR'), - ClusterState(id=7, state='READY'), - ClusterState(id=8, state='READY'), - ] - session.add_all(cluster_states) - session.flush() - - def tearDown(self): - super(TestClusterAPI, self).tearDown() - - def test_get_cluster_by_id(self): - """test get cluster by id.""" - # a. Get an existing cluster - # b. Get a non-existing cluster, return 404 - test_list = [{'url': '/clusters/1', 'expected_code': 200, - 'expected': {'clusterName': 'cluster_01', - 'href': '/clusters/1'}}, - {'url': '/clusters/1000', 'expected_code': 404}] - - for test in test_list: - url = test['url'] - return_value = self.test_client.get(url) - data = json.loads(return_value.get_data()) - self.assertEqual(return_value.status_code, test['expected_code']) - if 'expected' in test: - excepted_name = test['expected']['clusterName'] - excepted_href = test['expected']['href'] - self.assertEqual(data['cluster']['clusterName'], excepted_name) - self.assertEqual(data['cluster']['link']['href'], - excepted_href) - - # Create a cluster - def test_post_cluster(self): - """test post cluster.""" - # a. Post a new cluster but no adapter exists - cluster_req = {'cluster': {'name': 'cluster_09', - 'adapter_id': 1}} - url = '/clusters' - return_value = self.test_client.post(url, data=json.dumps(cluster_req)) - data = json.loads(return_value.get_data()) - - self.assertEqual(return_value.status_code, 404) - - #b. Post a cluster sucessfully - with database.session() as session: - adapter = Adapter(name='Centos_openstack', os='Centos', - target_system='openstack') - session.add(adapter) - - return_value = self.test_client.post(url, data=json.dumps(cluster_req)) - data = json.loads(return_value.get_data()) - self.assertEqual(data['cluster']['id'], 9) - self.assertEqual(data['cluster']['name'], 'cluster_09') - - #c. Post an existing cluster, return 409 - return_value = self.test_client.post(url, data=json.dumps(cluster_req)) - self.assertEqual(return_value.status_code, 409) - #d. Post a new cluster without providing a name - cluster_req['cluster']['name'] = '' - return_value = self.test_client.post(url, data=json.dumps(cluster_req)) - data = json.loads(return_value.get_data()) - self.assertEqual(data['cluster']['id'], 10) - - def test_get_clusters(self): - """test get clusters.""" - # a. get all clusters - url = "/clusters" + def test_get_user(self): + url = "/v1.0/users/1" return_value = self.test_client.get(url) data = json.loads(return_value.get_data()) - self.assertEqual(len(data['clusters']), 8) + excepted_code = 200 + self.assertEqual(return_value.status_code, excepted_code) - # b. get all undeployed clusters - url = "/clusters?state=undeployed" + self.assertEqual(1, data['id']) + self.assertEqual("admin@abc.com", data['email']) + + url = "/v1.0/users/2" return_value = self.test_client.get(url) - data = json.loads(return_value.get_data()) - self.assertEqual(len(data['clusters']), 2) - - # c. get all failed clusters - url = "/clusters?state=failed" - return_value = self.test_client.get(url) - data = json.loads(return_value.get_data()) - self.assertEqual(len(data['clusters']), 2) - - # d. get all installing clusters - url = "/clusters?state=installing" - return_value = self.test_client.get(url) - data = json.loads(return_value.get_data()) - self.assertEqual(len(data['clusters']), 2) - - # e. get all successful clusters - url = "/clusters?state=successful" - return_value = self.test_client.get(url) - data = json.loads(return_value.get_data()) - self.assertEqual(len(data['clusters']), 2) - - def test_put_cluster_security_resource(self): - """test put cluster security resource.""" - # Prepare testing data - security = {'security': self.SECURITY_CONFIG} - - # a. Upate cluster's security config - url = '/clusters/1/security' - return_value = self.test_client.put(url, data=json.dumps(security)) - self.assertEqual(return_value.status_code, 200) - with database.session() as session: - cluster_security_config = session.query( - Cluster.security_config).filter_by(id=1).first()[0] - self.assertDictEqual(self.SECURITY_CONFIG, - json.loads(cluster_security_config)) - - # b. Update a non-existing cluster's resource - url = '/clusters/1000/security' - return_value = self.test_client.put(url, data=json.dumps(security)) - self.assertEqual(return_value.status_code, 404) - - # c. Update invalid cluster config item - url = '/clusters/1/xxx' - return_value = self.test_client.put(url, data=json.dumps(security)) - self.assertEqual(return_value.status_code, 400) - - # d. Security config is invalid -- some required field is null - url = "/clusters/1/security" - invalid_security = copy.deepcopy(security) - invalid_security['security']['server_credentials']['username'] = None - return_value = self.test_client.put( - url, data=json.dumps(invalid_security)) - self.assertEqual(return_value.status_code, 400) - - # e. Security config is invalid -- keyword is incorrect - invalid_security = copy.deepcopy(security) - invalid_security['security']['xxxx'] = {'xxx': 'xxx'} - return_value = self.test_client.put( - url, data=json.dumps(invalid_security)) - self.assertEqual(return_value.status_code, 400) - - # f. Security config is invalid -- missing keyword - invalid_security = copy.deepcopy(security) - del invalid_security["security"]["server_credentials"] - return_value = self.test_client.put( - url, data=json.dumps(invalid_security)) - self.assertEqual(return_value.status_code, 400) - - # g. Security config is invalid -- missing subkey keyword - invalid_security = copy.deepcopy(security) - del invalid_security["security"]["server_credentials"]["username"] - return_value = self.test_client.put( - url, data=json.dumps(invalid_security)) - self.assertEqual(return_value.status_code, 400) - - def test_put_cluster_networking_resource(self): - """test put cluster networking resource.""" - networking = {"networking": self.NETWORKING_CONFIG} - url = "/clusters/1/networking" - return_value = self.test_client.put(url, data=json.dumps(networking)) - self.assertEqual(return_value.status_code, 200) - - # Missing some required keyword in interfaces section - invalid_config = copy.deepcopy(networking) - del invalid_config["networking"]["interfaces"]["management"]["nic"] - return_value = self.test_client.put( - url, data=json.dumps(invalid_config)) - self.assertEqual(return_value.status_code, 400) - - invalid_config = copy.deepcopy(networking) - del invalid_config["networking"]["interfaces"]["management"] - return_value = self.test_client.put( - url, data=json.dumps(invalid_config)) - self.assertEqual(return_value.status_code, 400) - - invalid_config = copy.deepcopy(networking) - invalid_config["networking"]["interfaces"]["xxx"] = {} - return_value = self.test_client.put( - url, data=json.dumps(invalid_config)) - self.assertEqual(return_value.status_code, 400) - - # Missing some required keyword in global section - invalid_config = copy.deepcopy(networking) - del invalid_config["networking"]["global"]["gateway"] - return_value = self.test_client.put( - url, data=json.dumps(invalid_config)) - self.assertEqual(return_value.status_code, 400) - - # Invalid value in interfaces section - invalid_config = copy.deepcopy(networking) - invalid_config["networking"]["interfaces"]["tenant"]["nic"] = "eth0" - return_value = self.test_client.put( - url, data=json.dumps(invalid_config)) - self.assertEqual(return_value.status_code, 400) - - # Invalid value in global section - invalid_config = copy.deepcopy(networking) - invalid_config["networking"]["global"]["nameservers"] = "*.*.*.*," - return_value = self.test_client.put( - url, data=json.dumps(invalid_config)) - self.assertEqual(return_value.status_code, 400) - - def test_get_cluster_resource(self): - """test get cluster resource.""" - # Test resource - with database.session() as session: - cluster = session.query(Cluster).filter_by(id=1).first() - cluster.security = self.SECURITY_CONFIG - cluster.networking = self.NETWORKING_CONFIG - - # a. query secuirty config by cluster id - url = '/clusters/1/security' - return_value = self.test_client.get(url) - data = json.loads(return_value.get_data()) - self.assertEqual(return_value.status_code, 200) - self.assertDictEqual(data['security'], self.SECURITY_CONFIG) - - url = '/clusters/1/networking' - return_value = self.test_client.get(url) - data = json.loads(return_value.get_data()) - self.assertEqual(return_value.status_code, 200) - self.assertDictEqual(data['networking'], self.NETWORKING_CONFIG) - - # b. query a nonsupported resource, return 400 - url = '/clusters/1/xxx' - return_value = self.test_client.get(url) - data = json.loads(return_value.get_data()) - self.assertEqual(return_value.status_code, 400) - excepted_err_msg = "Invalid resource name 'xxx'!" - self.assertEqual(data['message'], excepted_err_msg) - - def test_cluster_action(self): - """test cluster action.""" - from sqlalchemy import func - #Prepare testing data: create machines, clusters in database - #The first three machines will belong to cluster_01, the last one - #belongs to cluster_10 - with database.session() as session: - machines = [Machine(mac='00:27:88:0c:01'), - Machine(mac='00:27:88:0c:02'), - Machine(mac='00:27:88:0c:03'), - Machine(mac='00:27:88:0c:04'), - Machine(mac='00:27:88:0c:05'), - Machine(mac='00:27:88:0c:06'), - Machine(mac='00:27:88:0c:07'), - Machine(mac='00:27:88:0c:08')] - clusters = [Cluster(name='cluster_10')] - session.add_all(machines) - session.add_all(clusters) - # add a host to machine '00:27:88:0c:04' to cluster_02 - host = ClusterHost(cluster_id=10, machine_id=4, - hostname='host_c2_01') - session.add(host) - - # Do an action to a non-existing cluster - url = '/clusters/1000/action' - request = {'addHosts': [10, 20, 30]} - return_value = self.test_client.post(url, data=json.dumps(request)) - self.assertEqual(return_value.status_code, 404) - - # Test 'addHosts' action on cluster_01 - # 1. add a host with non-existing machine - url = '/clusters/1/action' - request = {'addHosts': [1, 1000, 1001]} - return_value = self.test_client.post(url, data=json.dumps(request)) - self.assertEqual(return_value.status_code, 404) - # ClusterHost table should not have any records. - with database.session() as session: - hosts_num = session.query( - func.count(ClusterHost.id) - ).filter_by(cluster_id=1).scalar() - self.assertEqual(hosts_num, 0) - - # 2. add a host with a installed machine - request = {'addHosts': [1, 4]} - return_value = self.test_client.post(url, data=json.dumps(request)) - self.assertEqual(return_value.status_code, 409) - data = json.loads(return_value.get_data()) - self.assertEqual(len(data['failedMachines']), 1) - - # 3. add hosts to cluster_01 - request = {'addHosts': [1, 2, 3]} - return_value = self.test_client.post(url, data=json.dumps(request)) - self.assertEqual(return_value.status_code, 200) - total_hosts = 0 - with database.session() as session: - total_hosts = session.query( - func.count(ClusterHost.id) - ).filter_by(cluster_id=1).scalar() - data = json.loads(return_value.get_data()) - self.assertEqual(len(data['cluster_hosts']), total_hosts) - self.assertEqual(total_hosts, 3) - - # 4. try to remove some hosts not existing and in different cluster - request = {'removeHosts': [1, 2, 3, 1000, 1001]} - return_value = self.test_client.post(url, data=json.dumps(request)) - self.assertEqual(return_value.status_code, 404) - data = json.loads(return_value.get_data()) - self.assertEqual(len(data['failedHosts']), 3) - with database.session() as session: - count = session.query( - func.count(ClusterHost.id) - ).filter_by(cluster_id=1).scalar() - self.assertEqual(count, 3) - - # 5. sucessfully remove requested hosts - request = {'removeHosts': [2, 3]} - return_value = self.test_client.post(url, data=json.dumps(request)) - self.assertEqual(return_value.status_code, 200) - data = json.loads(return_value.get_data()) - self.assertEqual(len(data['cluster_hosts']), 2) - with database.session() as session: - count = session.query( - func.count(ClusterHost.id) - ).filter_by(cluster_id=1).scalar() - self.assertEqual(count, 1) - - # 6. Test 'replaceAllHosts' action on cluster_01 - request = {'replaceAllHosts': [5, 6, 7]} - return_value = self.test_client.post(url, data=json.dumps(request)) - self.assertEqual(return_value.status_code, 200) - data = json.loads(return_value.get_data()) - self.assertEqual(len(data['cluster_hosts']), 3) - with database.session() as session: - count = session.query( - func.count(ClusterHost.id) - ).filter_by(cluster_id=1).scalar() - self.assertEqual(count, 3) - - # 7. Test 'deploy' action on cluster_01 - request = {'deploy': []} - return_value = self.test_client.post(url, data=json.dumps(request)) - self.assertEqual(return_value.status_code, 202) - - # 8. Test deploy cluster_01 the second time - return_value = self.test_client.post(url, data=json.dumps(request)) - self.assertEqual(return_value.status_code, 400) - - # 9. Try to deploy cluster_02 which no host in - url = '/clusters/2/action' - with database.session() as session: - session.query( - ClusterHost - ).filter_by(cluster_id=2).delete( - synchronize_session=False - ) - host = session.query( - ClusterHost - ).filter_by(cluster_id=2).first() - - return_value = self.test_client.post(url, data=json.dumps(request)) - self.assertEqual(return_value.status_code, 404) - - # 10. Try to add a new host to cluster_01 and deploy it - with database.session() as session: - cluster = session.query(Cluster).filter_by(id=1).first() - cluster.mutable = True - - hosts = session.query(ClusterHost).filter_by(cluster_id=1).all() - for host in hosts: - host.mutable = True - url = '/clusters/1/action' - # add another machine as a new host into cluster_01 - request = json.dumps({"addHosts": [8]}) - return_value = self.test_client.post(url, data=request) - host_id = json.loads(return_value.get_data())["cluster_hosts"][0]["id"] - - deploy_request = json.dumps({"deploy": [host_id]}) - return_value = self.test_client.post(url, data=deploy_request) - self.assertEqual(202, return_value.status_code) - - cluster_state = session.query(ClusterState).filter_by(id=1).first() - self.assertIsNone(cluster_state) - - expected_deploy_result = { - "cluster": { - "cluster_id": 1, - "url": "/clusters/1/progress" - }, - "hosts": [ - {"host_id": 5, - "url": "/cluster_hosts/5/progress"} - ] - } - data = json.loads(return_value.get_data())["deployment"] - self.assertDictEqual(expected_deploy_result, data) - - -class ClusterHostAPITest(ApiTestCase): - """test cluster host api.""" - - def setUp(self): - super(ClusterHostAPITest, self).setUp() - self.test_config_data = { - "networking": { - "interfaces": { - "management": { - "ip": "192.168.1.1"}, - "tenant": { - "ip": "10.12.1.1"} - }, - "global": {}}, - "roles": []} - # Insert a host into database for testing - with database.session() as session: - clusters_list = [Cluster(name='cluster_01'), - Cluster(name='cluster_02')] - session.add_all(clusters_list) - - switch = Switch(ip='192.168.1.1') - session.add(switch) - - machines_list = [Machine(mac='00:27:88:0c:01', switch_id=1), - Machine(mac='00:27:88:0c:02', switch_id=1), - Machine(mac='00:27:88:0c:03', switch_id=1), - Machine(mac='00:27:88:0c:04', switch_id=1)] - session.add_all(machines_list) - - host = ClusterHost(hostname='host_01', cluster_id=1, machine_id=1) - host.config_data = json.dumps(self.test_config_data) - session.add(host) - - hosts_list = [ - ClusterHost(hostname='host_02', cluster_id=1, machine_id=2), - ClusterHost(hostname='host_03', cluster_id=1, machine_id=3), - ClusterHost(hostname='host_04', cluster_id=2, machine_id=4) - ] - session.add_all(hosts_list) - - def tearDown(self): - super(ClusterHostAPITest, self).tearDown() - - def test_clusterhost_get_config(self): - """test get cluster host config.""" - # 1. Try to get a config of the cluster host which does not exist - url = '/clusterhosts/1000/config' - return_value = self.test_client.get(url) - self.assertEqual(404, return_value.status_code) - - # 2. Get a config of a cluster host sucessfully - test_config_data = copy.deepcopy(self.test_config_data) - test_config_data['hostname'] = 'host_01' - - url = '/clusterhosts/1/config' - return_value = self.test_client.get(url) - self.assertEqual(200, return_value.status_code) - config = json.loads(return_value.get_data())['config'] - - expected_config = copy.deepcopy(test_config_data) - expected_config['hostid'] = 1 - expected_config['hostname'] = 'host_01' - expected_config['clusterid'] = 1 - expected_config['clustername'] = 'cluster_01' - expected_config['fullname'] = 'host_01.1' - expected_config['networking']['interfaces']['management'][ - 'mac'] = "00:27:88:0c:01" - expected_config['switch_port'] = '' - expected_config['switch_ip'] = '192.168.1.1' - expected_config['vlan'] = 0 - self.assertDictEqual(config, expected_config) - - def test_clusterhost_put_config(self): - """test put clusterhost config.""" - config = copy.deepcopy(self.test_config_data) - config['roles'] = ['base'] - config['networking']['interfaces']['management']['ip'] = '192.168.1.2' - config['networking']['interfaces']['tenant']['ip'] = '10.12.1.2' - - # 1. Try to put a config of the cluster host which does not exist - url = '/clusterhosts/1000/config' - return_value = self.test_client.put(url, data=json.dumps(config)) - self.assertEqual(404, return_value.status_code) - - # 2. Config with incorrect ip format - url = '/clusterhosts/2/config' - incorrect_conf = copy.deepcopy(config) - incorrect_conf['hostname'] = 'host_02' - incorrect_conf[ - 'networking']['interfaces']['management']['ip'] = 'xxx' - return_vlaue = self.test_client.put( - url, data=json.dumps(incorrect_conf)) - self.assertEqual(400, return_vlaue.status_code) - - # 3. Config put sucessfully - config['hostname'] = 'host_02' - return_value = self.test_client.put(url, data=json.dumps(config)) - self.assertEqual(200, return_value.status_code) - with database.session() as session: - host = session.query(ClusterHost).filter_by(id=2).first() - config_db = json.loads(host.config_data) - config_db['hostname'] = host.hostname - self.maxDiff = None - self.assertDictEqual(config, config_db) - - def test_clusterhost_delete_subkey(self): - """test delete cluster host subkey.""" - # 1. Try to delete an unqalified subkey of config - url = '/clusterhosts/1/config/gateway' - return_value = self.test_client.delete(url) - self.assertEqual(400, return_value.status_code) - - # 2. Try to delete a subkey sucessfully - url = 'clusterhosts/1/config/roles' - return_value = self.test_client.delete(url) - self.assertEqual(200, return_value.status_code) - expected_config = copy.deepcopy(self.test_config_data) - with database.session() as session: - config_db = session.query( - ClusterHost.config_data).filter_by(id=1).first()[0] - self.assertDictEqual(expected_config, json.loads(config_db)) - - # 3. Try to delete a subkey of a config belonged to an immtable host - with database.session() as session: - session.query( - ClusterHost).filter_by(id=1).update({'mutable': False}) - - url = 'clusterhosts/1/config/roles' - return_value = self.test_client.delete(url) - self.assertEqual(400, return_value.status_code) - - def test_clusterhost_get_by_id(self): - """test get cluster host by id.""" - # 1. Get host sucessfully - url = '/clusterhosts/1' - return_value = self.test_client.get(url) - self.assertEqual(200, return_value.status_code) - hostname = json.loads(return_value.get_data())[ - 'cluster_host']['hostname'] - self.assertEqual('host_01', hostname) - - # 2. Get a non-existing host - url = '/clusterhosts/1000' - return_value = self.test_client.get(url) - self.assertEqual(404, return_value.status_code) - - def test_list_clusterhosts(self): - """test list cluster hosts.""" - # 1. list the cluster host whose hostname is host_01 - url = '/clusterhosts?hostname=host_02' - return_value = self.test_client.get(url) - self.assertEqual(200, return_value.status_code) - hostname = json.loads(return_value.get_data())[ - 'cluster_hosts'][0]['hostname'] - self.assertEqual('host_02', hostname) - - # 2. list cluster hosts whose cluster name is cluster_01 - url = '/clusterhosts?clustername=cluster_01' - return_value = self.test_client.get(url) - self.assertEqual(200, return_value.status_code) - hosts_num = len(json.loads(return_value.get_data())['cluster_hosts']) - self.assertEqual(3, hosts_num) - - # 3. list the host whose name is host_03 and cluser name is cluster_01 - url = '/clusterhosts?hostname=host_03&clustername=cluster_01' - return_value = self.test_client.get(url) - self.assertEqual(200, return_value.status_code) - hostname = json.loads(return_value.get_data())[ - 'cluster_hosts'][0]['hostname'] - self.assertEqual('host_03', hostname) - - # 4. list all hosts - url = '/clusterhosts' - return_value = self.test_client.get(url) - self.assertEqual(200, return_value.status_code) - hosts_num = len(json.loads(return_value.get_data())['cluster_hosts']) - self.assertEqual(4, hosts_num) - - # 5. Cannot found any hosts in clust name: cluster_1000 - url = '/clusterhosts?clustername=cluster_1000' - return_value = self.test_client.get(url) - self.assertEqual(200, return_value.status_code) - hosts_result = json.loads(return_value.get_data())['cluster_hosts'] - self.assertListEqual([], hosts_result) - - def test_host_installing_progress(self): - """test get host installing progress.""" - # 1. Get progress of a non-existing host - url = '/clusterhosts/1000/progress' - return_value = self.test_client.get(url) - self.assertEqual(404, return_value.status_code) - - # 2. Get progress of a host without state - url = '/clusterhosts/1/progress' - return_value = self.test_client.get(url) - self.assertEqual(200, return_value.status_code) - - # 3. Get progress which is in UNINITIALIZED state - with database.session() as session: - host = session.query(ClusterHost).filter_by(id=1).first() - host.state = HostState() - - return_value = self.test_client.get(url) - self.assertEqual(200, return_value.status_code) - data = json.loads(return_value.get_data()) - self.assertEqual('UNINITIALIZED', data['progress']['state']) - self.assertEqual(0, data['progress']['percentage']) - - # 4. Get progress which is in INSTALLING state - with database.session() as session: - host = session.query(ClusterHost).filter_by(id=1).first() - host.state.state = 'INSTALLING' - session.query( - HostState - ).filter_by( - id=1 - ).update({ - 'progress': 0.3, - 'message': 'Configuring...', - 'severity': 'INFO' - }) - - return_value = self.test_client.get(url) - self.assertEqual(200, return_value.status_code) - data = json.loads(return_value.get_data()) - self.assertEqual('INSTALLING', data['progress']['state']) - self.assertEqual(0.3, data['progress']['percentage']) - - -class TestAdapterAPI(ApiTestCase): - """test adapter api.""" - - def setUp(self): - super(TestAdapterAPI, self).setUp() - with database.session() as session: - adapters = [Adapter(name='Centos_openstack', os='Centos', - target_system='openstack'), - Adapter(name='Ubuntu_openstack', os='Ubuntu', - target_system='openstack')] - session.add_all(adapters) - - roles = [Role(name='Control', target_system='openstack'), - Role(name='Compute', target_system='openstack'), - Role(name='Master', target_system='hadoop')] - session.add_all(roles) - - def tearDown(self): - super(TestAdapterAPI, self).tearDown() - - def test_list_adapter_by_id(self): - """test list adapter by id.""" - url = '/adapters/1' - return_value = self.test_client.get(url) - self.assertEqual(200, return_value.status_code) - data = json.loads(return_value.get_data()) - self.assertEqual('Centos_openstack', data['adapter']['name']) - - def test_list_adapter_roles(self): - """test list adapter roles.""" - url = '/adapters/1/roles' - return_value = self.test_client.get(url) - self.assertEqual(200, return_value.status_code) - data = json.loads(return_value.get_data()) - self.assertEqual(2, len(data['roles'])) - - def test_list_adapters(self): - """test list adapters.""" - url = '/adapters?name=Centos_openstack' - return_value = self.test_client.get(url) - data = json.loads(return_value.get_data()) - self.assertEqual(200, return_value.status_code) - execpted_result = {"name": "Centos_openstack", - "os": "Centos", - "target_system": "openstack", - "id": 1, - "link": { - "href": "/adapters/1", - "rel": "self"} - } - self.assertDictEqual(execpted_result, data['adapters'][0]) - - url = '/adapters' - return_value = self.test_client.get(url) - data = json.loads(return_value.get_data()) - self.assertEqual(200, return_value.status_code) - self.assertEqual(2, len(data['adapters'])) - - -class TestAPIWorkFlow(ApiTestCase): - """test api workflow.""" - - CLUSTER_SECURITY_CONFIG = { - "security": { - "server_credentials": { - "username": "admin", - "password": "admin"}, - "service_credentials": { - "username": "admin", - "password": "admin"}, - "console_credentials": { - "username": "admin", - "password": "admin"} - } - } - - CLUSTER_NETWORKING_CONFIG = { - "networking": { - "interfaces": { - "management": { - "ip_start": "10.120.8.100", - "ip_end": "10.120.8.200", - "netmask": "255.255.255.0", - "gateway": "", - "nic": "eth0", - "promisc": 1 - }, - "tenant": { - "ip_start": "192.168.10.100", - "ip_end": "192.168.10.200", - "netmask": "255.255.255.0", - "gateway": "", - "nic": "eth1", - "promisc": 0 - }, - "public": { - "ip_start": "12.145.68.100", - "ip_end": "12.145.68.200", - "netmask": "255.255.255.0", - "gateway": "", - "nic": "eth2", - "promisc": 0 - }, - "storage": { - "ip_start": "172.29.8.100", - "ip_end": "172.29.8.200", - "netmask": "255.255.255.0", - "gateway": "", - "nic": "eth3", - "promisc": 0 - } - }, - "global": { - "nameservers": "8.8.8.8", - "search_path": "ods.com", - "gateway": "192.168.1.1", - "proxy": "http://127.0.0.1:3128", - "ntp_server": "127.0.0.1", - "ha_vip": "" - } - } - } - - CLUSTER_PARTITION_CONFIG = { - "partition": "/home 20%;" - } - - CLUSTERHOST_CONFIG = { - "hostname": "", - "networking": { - "interfaces": { - "management": { - "ip": "" - }, - "tenant": { - "ip": "" - } - } - }, - "roles": ["base"] - } - - def setUp(self): - super(TestAPIWorkFlow, self).setUp() - - #Prepare test data - with database.session() as session: - # Populate switch info to DB - switch = Switch( - ip="192.168.2.1", - credential_data=json.dumps( - {"version": "2c", "community": "public"}), - vendor_info="huawei", - state="under_monitoring") - session.add(switch) - - # Populate machines info to DB - machines = [ - Machine(mac='00:27:88:0c:a6', port='1', vlan='1', switch_id=1), - Machine(mac='00:27:88:0c:a7', port='2', vlan='1', switch_id=1), - Machine(mac='00:27:88:0c:a8', port='3', vlan='1', switch_id=1), - ] - - session.add_all(machines) - - adapter = Adapter(name='Centos_openstack', os='Centos', - target_system='openstack') - session.add(adapter) - - def tearDown(self): - super(TestAPIWorkFlow, self).tearDown() - - def test_work_flow(self): - """test api workflow.""" - # Polling switch: mock post switch - # url = '/switches' - # data = {"ip": "192.168.2.1", - # "credential": {"version": "2c", "community": "public"}} - # self.test_client.post(url, json.dumps(data)) - - # Get machines once polling switch done. If switch state changed to - # "under_monitoring" state. - url = '/switches/1' - switch_state = "initialized" - while switch_state != "under_monitoring": - return_value = self.test_client.get(url) - switch_state = json.loads(return_value.get_data())[ - 'switch']['state'] - - url = '/machines?switchId=1' - return_value = self.test_client.get(url) - self.assertEqual(200, return_value.status_code) - machines = json.loads(return_value.get_data())['machines'] - - # Create a Cluster and get cluster id from response - # In this example, adapter_id will be 1 by default. - url = '/clusters' - data = { - "cluster": { - "name": "cluster_01", - "adapter_id": 1 - } - } - return_value = self.test_client.post(url, data=json.dumps(data)) - self.assertEqual(200, return_value.status_code) - cluster_id = json.loads(return_value.get_data())['cluster']['id'] - - # Add machines as hosts of the cluster - url = '/clusters/%s/action' % cluster_id - machines_id = [] - for machine in machines: - machines_id.append(machine["id"]) - - data = {"addHosts": machines_id} - return_value = self.test_client.post(url, data=json.dumps(data)) - self.assertEqual(200, return_value.status_code) - hosts_info = json.loads(return_value.get_data())["cluster_hosts"] - - # Update cluster security configuration - url = '/clusters/%s/security' % cluster_id - security_config = json.dumps(self.CLUSTER_SECURITY_CONFIG) - return_value = self.test_client.put(url, data=security_config) - self.assertEqual(200, return_value.status_code) - - # Update cluster networking configuration - url = '/clusters/%s/networking' % cluster_id - networking_config = json.dumps(self.CLUSTER_NETWORKING_CONFIG) - return_value = self.test_client.put(url, data=networking_config) - self.assertEqual(200, return_value.status_code) - - # Update cluster partition configuration - url = '/clusters/%s/partition' % cluster_id - partition_config = json.dumps(self.CLUSTER_PARTITION_CONFIG) - return_value = self.test_client.put(url, data=partition_config) - self.assertEqual(200, return_value.status_code) - - # Put cluster host config individually - hosts_configs = [ - copy.deepcopy(self.CLUSTERHOST_CONFIG), - copy.deepcopy(self.CLUSTERHOST_CONFIG), - copy.deepcopy(self.CLUSTERHOST_CONFIG) - ] - names = ["host_01", "host_02", "host_03"] - mgmt_ips = ["10.120.8.100", "10.120.8.101", "10.120.8.102"] - tenant_ips = ["12.120.8.100", "12.120.8.101", "12.120.8.102"] - for config, name, mgmt_ip, tenant_ip in zip(hosts_configs, names, - mgmt_ips, tenant_ips): - config["hostname"] = name - config["networking"]["interfaces"]["management"]["ip"] = mgmt_ip - config["networking"]["interfaces"]["tenant"]["ip"] = tenant_ip - - for config, host_info in zip(hosts_configs, hosts_info): - host_id = host_info["id"] - url = 'clusterhosts/%d/config' % host_id - return_value = self.test_client.put(url, data=json.dumps(config)) - self.assertEqual(200, return_value.status_code) - - # deploy the Cluster - url = "/clusters/%d/action" % cluster_id - data = json.dumps({"deploy": []}) - return_value = self.test_client.post(url, data=data) - self.assertEqual(202, return_value.status_code) - - # Verify the final cluster configuration - expected_cluster_config = {} - expected_cluster_config.update(self.CLUSTER_SECURITY_CONFIG) - expected_cluster_config.update(self.CLUSTER_NETWORKING_CONFIG) - expected_cluster_config.update(self.CLUSTER_PARTITION_CONFIG) - expected_cluster_config["clusterid"] = cluster_id - expected_cluster_config["clustername"] = "cluster_01" - - with database.session() as session: - cluster = session.query(Cluster).filter_by(id=cluster_id).first() - config = cluster.config - self.assertDictEqual(config, expected_cluster_config) - - # Verify each host configuration - for host_info, excepted in zip(hosts_info, hosts_configs): - machine_id = host_info["machine_id"] - machine = session.query( - Machine).filter_by(id=machine_id).first() - mac = machine.mac - excepted["clusterid"] = cluster_id - excepted["clustername"] = "cluster_01" - excepted["hostid"] = host_info["id"] - excepted["fullname"] = "%s.%s" % ( - excepted["hostname"], excepted["clusterid"]) - excepted["networking"]["interfaces"]["management"]["mac"] = mac - excepted['switch_port'] = machine.port - excepted['vlan'] = machine.vlan - switch = machine.switch - excepted['switch_ip'] = switch.ip - host = session.query( - ClusterHost).filter_by(id=host_info["id"]).first() - self.maxDiff = None - self.assertDictEqual(host.config, excepted) - - -class TestExport(ApiTestCase): - """test export functions.""" - - CLUSTER_SECURITY_CONFIG = { - "security": { - "server_credentials": { - "username": "root", - "password": "root"}, - "service_credentials": { - "username": "service", - "password": "admin"}, - "console_credentials": { - "username": "console", - "password": "admin"} - } - } - CLUSTER_NETWORKING_CONFIG = { - "networking": { - "interfaces": { - "management": { - "ip_start": "10.120.8.100", - "ip_end": "10.120.8.200", - "netmask": "255.255.255.0", - "gateway": "", - "nic": "eth0", - "promisc": 1 - }, - "tenant": { - "ip_start": "192.168.10.100", - "ip_end": "192.168.10.200", - "netmask": "255.255.255.0", - "gateway": "", - "nic": "eth1", - "promisc": 0 - }, - "public": { - "ip_start": "12.145.68.100", - "ip_end": "12.145.68.200", - "netmask": "255.255.255.0", - "gateway": "", - "nic": "eth2", - "promisc": 0 - }, - "storage": { - "ip_start": "172.29.8.100", - "ip_end": "172.29.8.200", - "netmask": "255.255.255.0", - "gateway": "", - "nic": "eth3", - "promisc": 0 - } - }, - "global": { - "nameservers": "8.8.8.8", - "search_path": "ods.com", - "gateway": "192.168.1.1", - "proxy": "http://127.0.0.1:3128", - "ntp_server": "127.0.0.1", - "ha_vip": "" - } - } - } - CLUSTER_PARTITION_CONFIG = { - "partition": "/home 20%;/tmp 10%;/var 30%;" - } - - CLUSTERHOST_CONFIG = { - "networking": { - "interfaces": { - "management": { - "ip": "" - }, - "tenant": { - "ip": "" - } - } - }, - "roles": ["base"] - } - CSV_EXCEPTED_OUTPUT_DIR = '/'.join(( - os.path.dirname(os.path.realpath(__file__)), 'expected_csv')) - - def setUp(self): - super(TestExport, self).setUp() - #Prepare test data - with database.session() as session: - # populate switch_config - switch_config = [SwitchConfig(ip='192.168.1.10', filter_port='1'), - SwitchConfig(ip='192.168.1.11', filter_port='2')] - session.add_all(switch_config) - - # populate role table - role = Role(name='compute', target_system='openstack') - session.add(role) - - # Populate one adapter to DB - adapter = Adapter(name='Centos_openstack', os='Centos', - target_system='openstack') - session.add(adapter) - - #Populate switches info to DB - switches = [ - Switch( - ip="192.168.2.1", - credential_data=json.dumps( - {"version": "2c", "community": "public"}), - vendor_info="huawei", - state="under_monitoring"), - Switch( - ip="192.168.2.2", - credential_data=json.dumps( - {"version": "2c", "community": "public"}), - vendor_info="huawei", - state="under_monitoring"), - Switch( - ip="192.168.2.3", - credential_data=json.dumps( - {"version": "2c", "community": "public"}), - vendor_info="huawei", - state="under_monitoring"), - Switch( - ip="192.168.2.4", - credential_data=json.dumps( - {"version": "2c", "community": "public"}), - vendor_info="huawei", - state="under_monitoring") - ] - session.add_all(switches) - - # Populate machines info to DB - machines = [ - Machine(mac='00:0c:27:88:0c:a1', port='1', vlan='1', - switch_id=1), - Machine(mac='00:0c:27:88:0c:a2', port='2', vlan='1', - switch_id=1), - Machine(mac='00:0c:27:88:0c:a3', port='3', vlan='1', - switch_id=1), - Machine(mac='00:0c:27:88:0c:b1', port='1', vlan='1', - switch_id=2), - Machine(mac='00:0c:27:88:0c:b2', port='2', vlan='1', - switch_id=2), - Machine(mac='00:0c:27:88:0c:b3', port='3', vlan='1', - switch_id=2), - Machine(mac='00:0c:27:88:0c:c1', port='1', vlan='1', - switch_id=3), - Machine(mac='00:0c:27:88:0c:c2', port='2', vlan='1', - switch_id=3), - Machine(mac='00:0c:27:88:0c:c3', port='3', vlan='1', - switch_id=3), - Machine(mac='00:0c:27:88:0c:d1', port='1', vlan='1', - switch_id=4), - Machine(mac='00:0c:27:88:0c:d2', port='2', vlan='1', - switch_id=4), - ] - - session.add_all(machines) - - # Popluate clusters into DB - """ - a. cluster #1: a new machine will be added to it. - b. cluster #2: a failed machine needs to be re-deployed. - c. cluster #3: a new cluster with 3 hosts will be deployed. - """ - clusters_networking_config = [ - {"networking": - {"interfaces": {"management": {"ip_start": "10.120.1.100", - "ip_end": "10.120.1.200"}, - "tenant": {"ip_start": "192.168.1.100", - "ip_end": "192.168.1.200"}, - "public": {"ip_start": "12.145.1.100", - "ip_end": "12.145.1.200"}, - "storage": {"ip_start": "172.29.1.100", - "ip_end": "172.29.1.200"}}}}, - {"networking": - {"interfaces": {"management": {"ip_start": "10.120.2.100", - "ip_end": "10.120.2.200"}, - "tenant": {"ip_start": "192.168.2.100", - "ip_end": "192.168.2.200"}, - "public": {"ip_start": "12.145.2.100", - "ip_end": "12.145.2.200"}, - "storage": {"ip_start": "172.29.2.100", - "ip_end": "172.29.2.200"}}}} - ] - cluster_names = ['cluster_01', 'cluster_02'] - for name, networking_config in zip(cluster_names, - clusters_networking_config): - nconfig = copy.deepcopy(self.CLUSTER_NETWORKING_CONFIG) - util.merge_dict(nconfig, networking_config) - c = Cluster(name=name, adapter_id=1, - security_config=json.dumps( - self.CLUSTER_SECURITY_CONFIG['security']), - networking_config=json.dumps( - nconfig['networking']), - partition_config=json.dumps( - self.CLUSTER_PARTITION_CONFIG['partition'])) - session.add(c) - - # Populate hosts to each cluster - host_mips = ['10.120.1.100', '10.120.1.101', '10.120.1.102', - '10.120.2.100', '10.120.2.101', '10.120.2.102'] - host_tips = ['192.168.1.100', '192.168.1.101', '192.168.1.102', - '192.168.2.100', '192.168.2.101', '192.168.2.102'] - hosts_config = [] - for mip, tip in zip(host_mips, host_tips): - config = copy.deepcopy(self.CLUSTERHOST_CONFIG) - config['networking']['interfaces']['management']['ip'] = mip - config['networking']['interfaces']['tenant']['ip'] = tip - hosts_config.append(json.dumps(config)) - - hosts = [ - ClusterHost(hostname='host_01', machine_id=1, cluster_id=1, - config_data=hosts_config[0]), - ClusterHost(hostname='host_02', machine_id=2, cluster_id=1, - config_data=hosts_config[1]), - ClusterHost(hostname='host_03', machine_id=3, cluster_id=1, - config_data=hosts_config[2]), - ClusterHost(hostname='host_01', machine_id=4, cluster_id=2, - config_data=hosts_config[3]), - ClusterHost(hostname='host_02', machine_id=5, cluster_id=2, - config_data=hosts_config[4]), - ClusterHost(hostname='host_03', machine_id=6, cluster_id=2, - config_data=hosts_config[5]) - ] - session.add_all(hosts) - - # Populate cluster state and host state - cluster_states = [ - ClusterState(id=1, state="READY", progress=1.0, - message="Successfully!"), - ClusterState(id=2, state="ERROR", progress=0.5, - message="Failed!") - ] - session.add_all(cluster_states) - - host_states = [ - HostState(id=1, state="READY", progress=1.0, - message="Successfully!"), - HostState(id=2, state="READY", progress=1.0, - message="Successfully!"), - HostState(id=3, state="READY", progress=1.0, - message="Successfully!"), - HostState(id=4, state="ERROR", progress=0.5, - message="Failed!"), - HostState(id=5, state="READY", progress=1.0, - message="Successfully!"), - HostState(id=6, state="ERROR", progress=1.0, - message="Failed!") - ] - session.add_all(host_states) - session.flush() - - def tearDown(self): - super(TestExport, self).tearDown() - - def test_export(self): - """test export.""" - talbes = ['switch', 'machine', 'cluster', 'cluster_host', 'adapter', - 'role', 'switch_config'] - for tname in talbes: - url = '/'.join(('/export', tname)) - return_value = self.test_client.get(url) - resp_data = return_value.get_data() - resp_data = resp_data.split('\n') - resp_data = csv.DictReader(resp_data) - expected_file = '/'.join((self.CSV_EXCEPTED_OUTPUT_DIR, - (tname + '.csv'))) - expected_data = csv.DictReader(open(expected_file)) - for export_row, expected_row in zip(resp_data, expected_data): - self.assertDictEqual(export_row, expected_row) - self.maxDiff = None - - -class TestUser(ApiTestCase): - def setUp(self): - super(TestUser, self).setUp() - - def tearDown(self): - super(TestUser, self).tearDown() - - def test_get_user_by_id(self): - # Success to get a user - url = "/users/1" - return_value = self.test_client.get(url) - - data = json.loads(return_value.get_data()) - self.assertEqual(1, data['user']['id']) - - # Try to get a nonexisting user - url = "/users/1000" - return_value = self.test_client.get(url) - self.assertEqual(404, return_value.status_code) - - -if __name__ == '__main__': - flags.init() - logsetting.init() - unittest2.main() + excepted_code = 404 + self.assertEqual(return_value.status_code, excepted_code) diff --git a/compass/tests/api/test_auth.py b/compass/tests/api/test_auth.py deleted file mode 100644 index 0998371b..00000000 --- a/compass/tests/api/test_auth.py +++ /dev/null @@ -1,126 +0,0 @@ -# Copyright 2014 Huawei Technologies Co. Ltd -# -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. - -import os -import simplejson as json -import time -import unittest2 - -os.environ['COMPASS_IGNORE_SETTING'] = 'true' - - -from compass.utils import setting_wrapper as setting -reload(setting) - -from compass.api import app -from compass.api import auth -from compass.api import login_manager - -from compass.db import database -from compass.db.model import User - -from compass.utils import flags -from compass.utils import logsetting - - -login_manager.init_app(app) - - -class AuthTestCase(unittest2.TestCase): - DATABASE_URL = 'sqlite://' - USER_CREDENTIALS = {"email": "admin@abc.com", "password": "admin"} - - def setUp(self): - super(AuthTestCase, self).setUp() - logsetting.init() - database.init(self.DATABASE_URL) - database.create_db() - - self.test_client = app.test_client() - - def tearDown(self): - database.drop_db() - super(AuthTestCase, self).tearDown() - - def test_login_logout(self): - url = '/login' - # a. successfully login - data = self.USER_CREDENTIALS - return_value = self.test_client.post(url, data=data, - follow_redirects=True) - - self.assertIn("Logged in successfully!", return_value.get_data()) - - url = '/logout' - return_value = self.test_client.get(url, follow_redirects=True) - self.assertIn("You have logged out!", return_value.get_data()) - - def test_login_failed(self): - - url = '/login' - # a. Failed to login with incorrect user info - data_list = [{"email": "xxx", "password": "admin"}, - {"email": "admin@abc.com", "password": "xxx"}] - for data in data_list: - return_value = self.test_client.post(url, data=data, - follow_redirects=True) - self.assertIn("Wrong username or password!", - return_value.get_data()) - - # b. Inactive user - User.query.filter_by(email="admin@abc.com").update({"active": False}) - - data = {"email": "admin@abc.com", "password": "admin"} - return_value = self.test_client.post(url, data=data, - follow_redirects=True) - self.assertIn("This username is disabled!", return_value.get_data()) - - def test_get_token(self): - url = '/token' - - # a. Failed to get token by posting incorrect user email - req_data = json.dumps({"email": "xxx", "password": "admin"}) - return_value = self.test_client.post(url, data=req_data) - self.assertEqual(401, return_value.status_code) - - # b. Success to get token - req_data = json.dumps(self.USER_CREDENTIALS) - return_value = self.test_client.post(url, data=req_data) - resp = json.loads(return_value.get_data()) - self.assertIsNotNone(resp['token']) - - def test_header_loader(self): - # Get Token - url = '/token' - req_data = json.dumps(self.USER_CREDENTIALS) - return_value = self.test_client.post(url, data=req_data) - token = json.loads(return_value.get_data())['token'] - user_id = auth.get_user_info_from_token(token, 50) - self.assertEqual(1, user_id) - - # Test on token expiration. - # Sleep 5 seconds but only allow token lifetime of 2 seconds - time.sleep(5) - user_id = auth.get_user_info_from_token(token, 2) - self.assertIsNone(user_id) - - # Get None user from the incorrect token - result = auth.get_user_info_from_token("xxx", 50) - self.assertIsNone(result) - - -if __name__ == '__main__': - flags.init() - logsetting.init() - unittest2.main() diff --git a/compass/tests/apicommand/run_server.py b/compass/tests/apicommand/run_server.py deleted file mode 100755 index ba4e23ea..00000000 --- a/compass/tests/apicommand/run_server.py +++ /dev/null @@ -1,297 +0,0 @@ -#!/usr/bin/env python -# -# Copyright 2014 Huawei Technologies Co. Ltd -# -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. -"""run fake flask server for test.""" -import copy -import os -import simplejson as json -import sys - - -curr_dir = os.path.dirname(os.path.realpath(__file__)) -compass_dir = os.path.dirname(os.path.dirname(os.path.dirname(curr_dir))) -sys.path.append(compass_dir) - - -from compass.api import app -from compass.db import database -from compass.db.model import Adapter -from compass.db.model import Cluster -from compass.db.model import ClusterHost -from compass.db.model import ClusterState -from compass.db.model import HostState -from compass.db.model import Machine -from compass.db.model import Role -from compass.db.model import Switch -from compass.db.model import SwitchConfig -from compass.utils import util - - -def setupDb(): - """setup database.""" - SECURITY_CONFIG = { - "security": { - "server_credentials": { - "username": "root", - "password": "root"}, - "service_credentials": { - "username": "service", - "password": "admin"}, - "console_credentials": { - "username": "console", - "password": "admin"} - } - } - - NET_CONFIG = { - "networking": { - "interfaces": { - "management": { - "ip_start": "10.120.8.100", - "ip_end": "10.120.8.200", - "netmask": "255.255.255.0", - "gateway": "", - "nic": "eth0", - "promisc": 1 - }, - "tenant": { - "ip_start": "192.168.10.100", - "ip_end": "192.168.10.200", - "netmask": "255.255.255.0", - "gateway": "", - "nic": "eth1", - "promisc": 0 - }, - "public": { - "ip_start": "12.145.68.100", - "ip_end": "12.145.68.200", - "netmask": "255.255.255.0", - "gateway": "", - "nic": "eth2", - "promisc": 0 - }, - "storage": { - "ip_start": "172.29.8.100", - "ip_end": "172.29.8.200", - "netmask": "255.255.255.0", - "gateway": "", - "nic": "eth3", - "promisc": 0 - } - }, - "global": { - "nameservers": "8.8.8.8", - "search_path": "ods.com", - "gateway": "192.168.1.1", - "proxy": "http://127.0.0.1:3128", - "ntp_server": "127.0.0.1" - } - } - } - - PAR_CONFIG = { - "partition": "/home 20%;/tmp 10%;/var 30%;" - } - - HOST_CONFIG = { - "networking": { - "interfaces": { - "management": { - "ip": "%s" - }, - "tenant": { - "ip": "%s" - } - } - }, - "roles": ["base"] - } - - print "Setting up DB ..." - with database.session() as session: - # populate switch_config - switch_config = SwitchConfig(ip='192.168.1.10', filter_port='1') - session.add(switch_config) - - # populate role table - role = Role(name='compute', target_system='openstack') - session.add(role) - - # Populate one adapter to DB - adapter = Adapter(name='Centos_openstack', os='Centos', - target_system='openstack') - session.add(adapter) - - #Populate switches info to DB - switches = [Switch(ip="192.168.2.1", - credential={"version": "2c", - "community": "public"}, - vendor="huawei", - state="under_monitoring"), - Switch(ip="192.168.2.2", - credential={"version": "2c", - "community": "public"}, - vendor="huawei", - state="under_monitoring"), - Switch(ip="192.168.2.3", - credential={"version": "2c", - "community": "public"}, - vendor="huawei", - state="under_monitoring"), - Switch(ip="192.168.2.4", - credential={"version": "2c", - "community": "public"}, - vendor="huawei", - state="under_monitoring")] - session.add_all(switches) - - # Populate machines info to DB - machines = [ - Machine(mac='00:0c:27:88:0c:a1', port='1', vlan='1', - switch_id=1), - Machine(mac='00:0c:27:88:0c:a2', port='2', vlan='1', - switch_id=1), - Machine(mac='00:0c:27:88:0c:a3', port='3', vlan='1', - switch_id=1), - Machine(mac='00:0c:27:88:0c:b1', port='1', vlan='1', - switch_id=2), - Machine(mac='00:0c:27:88:0c:b2', port='2', vlan='1', - switch_id=2), - Machine(mac='00:0c:27:88:0c:b3', port='3', vlan='1', - switch_id=2), - Machine(mac='00:0c:27:88:0c:c1', port='1', vlan='1', - switch_id=3), - Machine(mac='00:0c:27:88:0c:c2', port='2', vlan='1', - switch_id=3), - Machine(mac='00:0c:27:88:0c:c3', port='3', vlan='1', - switch_id=3), - Machine(mac='00:0c:27:88:0c:d1', port='1', vlan='1', - switch_id=4), - Machine(mac='00:0c:27:88:0c:d2', port='2', vlan='1', - switch_id=4), - ] - - session.add_all(machines) - # Popluate clusters into DB - """ - a. cluster #1: a new machine will be added to it. - b. cluster #2: a failed machine needs to be re-deployed. - c. cluster #3: a new cluster with 3 hosts will be deployed. - """ - clusters_networking_config = [ - {"networking": - {"interfaces": {"management": {"ip_start": "10.120.1.100", - "ip_end": "10.120.1.200"}, - "tenant": {"ip_start": "192.168.1.100", - "ip_end": "192.168.1.200"}, - "public": {"ip_start": "12.145.1.100", - "ip_end": "12.145.1.200"}, - "storage": {"ip_start": "172.29.1.100", - "ip_end": "172.29.1.200"}}}}, - {"networking": - {"interfaces": {"management": {"ip_start": "10.120.2.100", - "ip_end": "10.120.2.200"}, - "tenant": {"ip_start": "192.168.2.100", - "ip_end": "192.168.2.200"}, - "public": {"ip_start": "12.145.2.100", - "ip_end": "12.145.2.200"}, - "storage": {"ip_start": "172.29.2.100", - "ip_end": "172.29.2.200"}}}} - ] - cluster_names = ['cluster_01', 'cluster_02'] - for name, networking_config in zip(cluster_names, - clusters_networking_config): - nconfig = copy.deepcopy(NET_CONFIG) - util.merge_dict(nconfig, networking_config) - c = Cluster( - name=name, adapter_id=1, - security_config=json.dumps(SECURITY_CONFIG['security']), - networking_config=json.dumps(nconfig['networking']), - partition_config=json.dumps(PAR_CONFIG['partition'])) - session.add(c) - # Populate hosts to each cluster - host_mips = ['10.120.1.100', '10.120.1.101', '10.120.1.102', - '10.120.2.100', '10.120.2.101', '10.120.2.102'] - host_tips = ['192.168.1.100', '192.168.1.101', '192.168.1.102', - '192.168.2.100', '192.168.2.101', '192.168.2.102'] - - hosts_config = [] - for mip, tip in zip(host_mips, host_tips): - config = copy.deepcopy(HOST_CONFIG) - config['networking']['interfaces']['management']['ip'] = mip - config['networking']['interfaces']['tenant']['ip'] = tip - hosts_config.append(json.dumps(config)) - - hosts = [ - ClusterHost(hostname='host_01', machine_id=1, cluster_id=1, - config_data=hosts_config[0]), - ClusterHost(hostname='host_02', machine_id=2, cluster_id=1, - config_data=hosts_config[1]), - ClusterHost(hostname='host_03', machine_id=3, cluster_id=1, - config_data=hosts_config[2]), - ClusterHost(hostname='host_01', machine_id=4, cluster_id=2, - config_data=hosts_config[3]), - ClusterHost(hostname='host_02', machine_id=5, cluster_id=2, - config_data=hosts_config[4]), - ClusterHost(hostname='host_03', machine_id=6, cluster_id=2, - config_data=hosts_config[5]) - ] - session.add_all(hosts) - - # Populate cluster state and host state - cluster_states = [ - ClusterState(id=1, state="READY", progress=1.0, - message="Successfully!"), - ClusterState(id=2, state="ERROR", progress=0.5, - message="Failed!") - ] - session.add_all(cluster_states) - - host_states = [ - HostState(id=1, state="READY", progress=1.0, - message="Successfully!"), - HostState(id=2, state="READY", progress=1.0, - message="Successfully!"), - HostState(id=3, state="READY", progress=1.0, - message="Successfully!"), - HostState(id=4, state="ERROR", progress=0.5, - message="Failed!"), - HostState(id=5, state="READY", progress=1.0, - message="Successfully!"), - HostState(id=6, state="ERROR", progress=1.0, - message="Failed!") - ] - session.add_all(host_states) - - -if __name__ == '__main__': - db_url, port = sys.argv[1:] - print db_url - try: - database.init(db_url) - database.create_db() - except Exception as error: - print "=====> Failed to create database" - print error - - try: - setupDb() - except Exception as error: - print "setupDb=====>Failed to setup database" - print error - - print "Starting server ....." - print "port is ", port - app.run(use_reloader=False, host="0.0.0.0", port=port) diff --git a/compass/tests/apicommand/test_csvdeploy.py b/compass/tests/apicommand/test_csvdeploy.py deleted file mode 100755 index fa603211..00000000 --- a/compass/tests/apicommand/test_csvdeploy.py +++ /dev/null @@ -1,171 +0,0 @@ -#!/usr/bin/env python -# -# Copyright 2014 Huawei Technologies Co. Ltd -# -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. - -"""test deploy from csv file.""" -import mock -import os -import shutil -import signal -import simplejson as json -import socket -import subprocess -import sys -import tempfile -import time -import unittest2 - - -curr_dir = os.path.dirname(os.path.realpath(__file__)) -api_cmd_path = '/'.join(( - os.path.dirname(os.path.dirname(os.path.dirname(curr_dir))), 'bin')) -sys.path.append(api_cmd_path) - - -import csvdeploy - - -os.environ['COMPASS_IGNORE_SETTING'] = 'true' - - -from compass.utils import setting_wrapper as setting -reload(setting) - - -from compass.db import database -from compass.db.model import Cluster -from compass.db.model import ClusterHost -from compass.utils import flags -from compass.utils import logsetting - -from compass.apiclient.restful import Client - - -class ApiTestCase(unittest2.TestCase): - def setUp(self): - super(ApiTestCase, self).setUp() - # Create database file - try: - self.db_dir = tempfile.mkdtemp() - self.db_file = '/'.join((self.db_dir, 'app.db')) - except Exception: - sys.exit(2) - - database_url = '/'.join(('sqlite://', self.db_file)) - # Get a free random port for app server - - try: - tmp_socket = socket.socket(socket.AF_INET, socket.SOCK_STREAM) - tmp_socket.bind(('', 0)) - self.port = tmp_socket.getsockname()[-1] - tmp_socket.close() - time.sleep(10) - except socket.error: - sys.exit(1) - - cmd = '%s run_server.py %s %d' % ( - sys.executable, database_url, self.port) - self.proc = subprocess.Popen(cmd, shell=True, - stderr=subprocess.PIPE, - preexec_fn=os.setsid, - cwd=curr_dir) - time.sleep(5) - - # Initial database - try: - database.init(database_url) - except Exception as error: - print "Exception when initializing database: %s" % error - - def tearDown(self): - super(ApiTestCase, self).tearDown() - - database.ENGINE.dispose() - database.init('sqlite://') - os.killpg(self.proc.pid, signal.SIGTERM) - try: - if os.path.exists(self.db_dir): - shutil.rmtree(self.db_dir) - except Exception: - sys.exit(1) - - -class TestAPICommand(ApiTestCase): - CSV_IMPORT_DIR = '/'.join((curr_dir, 'test_files')) - - def setUp(self): - super(TestAPICommand, self).setUp() - self.deploy_return_val = { - 'status': 'accepted', - 'deployment': {'cluster': {'cluster_id': 1, - 'url': '/clusters/1/progress'}, - 'hosts': [{'host_id': 1, - 'url': '/cluster_hosts/1/progress'}]}} - - def tearDown(self): - # Remove the resulting output file from the test case. - try: - os.remove(os.path.join(self.CSV_IMPORT_DIR, 'progress.csv')) - except OSError: - pass - super(TestAPICommand, self).tearDown() - - def test_start(self): - """test start deploy from csv.""" - Client.deploy_hosts = mock.Mock( - return_value=(202, self.deploy_return_val)) - csvdeploy.write_progress_to_file = mock.Mock() - url = "http://127.0.0.1:%d" % self.port - csvdeploy.start(self.CSV_IMPORT_DIR, url) - clusters = csvdeploy.get_csv('cluster.csv', - csv_dir=self.CSV_IMPORT_DIR) - with database.session() as session: - for csv_cluster in clusters: - cluster_id = csv_cluster['id'] - cluster = session.query( - Cluster - ).filter_by(id=cluster_id).first() - self.assertIsNotNone(cluster) - self.assertEqual(csv_cluster['name'], cluster.name) - self.assertDictEqual(csv_cluster['security_config'], - json.loads(cluster.security_config)) - self.maxDiff = None - self.assertDictEqual(csv_cluster['networking_config'], - json.loads(cluster.networking_config)) - self.assertEqual(csv_cluster['partition_config'], - json.loads(cluster.partition_config)) - self.assertEqual(csv_cluster['adapter_id'], cluster.adapter_id) - self.maxDiff = None - - hosts = csvdeploy.get_csv('cluster_host.csv', - csv_dir=self.CSV_IMPORT_DIR) - for csv_host in hosts: - cluster_id = csv_host['cluster_id'] - hostname = csv_host['hostname'] - host_in_db = session.query(ClusterHost)\ - .filter_by(cluster_id=cluster_id, - hostname=hostname).first() - self.assertIsNotNone(host_in_db) - self.assertEqual(csv_host['hostname'], host_in_db.hostname) - self.assertEqual(csv_host['machine_id'], host_in_db.machine_id) - self.assertDictEqual(csv_host['config_data'], - json.loads(host_in_db.config_data)) - self.maxDiff = None - - -if __name__ == '__main__': - flags.init() - logsetting.init() - unittest2.main() diff --git a/compass/tests/apicommand/test_files/adapter.csv b/compass/tests/apicommand/test_files/adapter.csv deleted file mode 100644 index 5cf79dda..00000000 --- a/compass/tests/apicommand/test_files/adapter.csv +++ /dev/null @@ -1,2 +0,0 @@ -id,name,os,target_system -1,Centos_openstack,Centos,openstack diff --git a/compass/tests/apicommand/test_files/cluster.csv b/compass/tests/apicommand/test_files/cluster.csv deleted file mode 100644 index 430f5614..00000000 --- a/compass/tests/apicommand/test_files/cluster.csv +++ /dev/null @@ -1,4 +0,0 @@ -id,name,security_config.server_credentials.username,security_config.server_credentials.password,security_config.service_credentials.username,security_config.service_credentials.password,security_config.console_credentials.username,security_config.console_credentials.password,networking_config.interfaces.management.nic,networking_config.interfaces.management.netmask,networking_config.interfaces.management.promisc,networking_config.interfaces.management.ip_end,networking_config.interfaces.management.gateway,networking_config.interfaces.management.ip_start,networking_config.interfaces.storage.nic,networking_config.interfaces.storage.netmask,networking_config.interfaces.storage.promisc,networking_config.interfaces.storage.ip_end,networking_config.interfaces.storage.gateway,networking_config.interfaces.storage.ip_start,networking_config.interfaces.public.nic,networking_config.interfaces.public.netmask,networking_config.interfaces.public.promisc,networking_config.interfaces.public.ip_end,networking_config.interfaces.public.gateway,networking_config.interfaces.public.ip_start,networking_config.interfaces.tenant.nic,networking_config.interfaces.tenant.netmask,networking_config.interfaces.tenant.promisc,networking_config.interfaces.tenant.ip_end,networking_config.interfaces.tenant.gateway,networking_config.interfaces.tenant.ip_start,networking_config.global.nameservers,networking_config.global.ntp_server,networking_config.global.gateway,networking_config.global.ha_vip,networking_config.global.proxy,networking_config.global.search_path,partition_config,adapter_id,state -1,cluster_01,root,root,service,admin,console,admin,eth0,255.255.255.0,1,10.120.1.200,None,10.120.1.100,eth3,255.255.255.0,0,172.29.1.200,None,172.29.1.100,eth2,255.255.255.0,0,12.145.1.200,None,12.145.1.100,eth1,255.255.255.0,0,192.168.1.200,None,192.168.1.100,8.8.8.8,127.0.0.1,192.168.1.1,None,http://127.0.0.1:3128,ods.com,"/home 20%;/tmp 10%;/var 30%;",1,READY -2,cluster_02,root,root,service,admin,console,admin,eth0,255.255.255.0,1,10.120.2.200,None,10.120.2.100,eth3,255.255.255.0,0,172.29.2.200,None,172.29.2.100,eth2,255.255.255.0,0,12.145.2.200,None,12.145.2.100,eth1,255.255.255.0,0,192.168.2.200,None,192.168.2.100,8.8.8.8,127.0.0.1,192.168.1.1,None,http://127.0.0.1:3128,ods.com,"/home 20%;/tmp 10%;/var 30%;",1,ERROR -3,cluster_03,root,admin,service,admin,console,admin,eth0,255.255.255.0,1,10.120.3.200,None,10.120.3.100,eth3,255.255.255.0,0,172.29.3.200,None,172.29.3.100,eth2,255.255.255.0,0,12.145.3.200,None,12.145.3.100,eth1,255.255.255.0,0,192.168.3.200,None,192.168.3.100,8.8.8.8,120.0.0.1,192.168.1.1,None,http://localhost:3128,ods.com,"/home 40%;/tmp 20%;/var 30%;",1,None diff --git a/compass/tests/apicommand/test_files/cluster_host.csv b/compass/tests/apicommand/test_files/cluster_host.csv deleted file mode 100644 index 874cd8d0..00000000 --- a/compass/tests/apicommand/test_files/cluster_host.csv +++ /dev/null @@ -1,12 +0,0 @@ -id,cluster_id,hostname,machine_id,config_data.networking.interfaces.management.ip,config_data.networking.interfaces.tenant.ip,config_data.roles,state,deploy_action -1,1,host_01,1,10.120.1.100,192.168.1.100,['base'],READY,0 -2,1,host_02,2,10.120.1.101,192.168.1.101,['base'],READY,0 -3,1,host_03,3,10.120.1.102,192.168.1.102,['base'],READY,0 -4,2,host_01,4,10.120.2.100,192.168.2.100,['base'],ERROR,1 -5,2,host_02,5,10.120.2.101,192.168.2.101,['base'],READY,0 -6,2,host_03,6,10.120.2.102,192.168.2.102,['base'],ERROR,1 -7,3,host_01,7,10.120.3.100,192.168.3.100,['base'],None,1 -8,3,host_02,8,10.120.3.101,192.168.3.102,['base'],None,1 -9,3,host_03,9,10.120.3.102,192.168.3.102,['base'],None,1 -10,1,host_04,10,10.120.1.103,192.168.1.103,['base'],None,1 -11,2,host_04,11,10.120.2.104,192.168.2.104,['base'],None,1 diff --git a/compass/tests/apicommand/test_files/machine.csv b/compass/tests/apicommand/test_files/machine.csv deleted file mode 100644 index b02d95fe..00000000 --- a/compass/tests/apicommand/test_files/machine.csv +++ /dev/null @@ -1,12 +0,0 @@ -id,mac,port,vlan,switch_id -1,00:0c:27:88:0c:a1,1,1,1 -2,00:0c:27:88:0c:a2,2,1,1 -3,00:0c:27:88:0c:a3,3,1,1 -4,00:0c:27:88:0c:b1,1,1,2 -5,00:0c:27:88:0c:b2,2,1,2 -6,00:0c:27:88:0c:b3,3,1,2 -7,00:0c:27:88:0c:c1,1,1,3 -8,00:0c:27:88:0c:c2,2,1,3 -9,00:0c:27:88:0c:c3,3,1,3 -10,00:0c:27:88:0c:d1,1,1,4 -11,00:0c:27:88:0c:d2,2,1,4 diff --git a/compass/tests/apicommand/test_files/role.csv b/compass/tests/apicommand/test_files/role.csv deleted file mode 100644 index cc611bea..00000000 --- a/compass/tests/apicommand/test_files/role.csv +++ /dev/null @@ -1,2 +0,0 @@ -id,name,target_system,description -1,compute,openstack,None diff --git a/compass/tests/apicommand/test_files/switch.csv b/compass/tests/apicommand/test_files/switch.csv deleted file mode 100644 index 40af787c..00000000 --- a/compass/tests/apicommand/test_files/switch.csv +++ /dev/null @@ -1,5 +0,0 @@ -id,ip,credential_data.version,credential_data.community -1,192.168.2.1,2c,public -2,192.168.2.2,2c,public -3,192.168.2.3,2c,public -4,192.168.2.4,2c,public diff --git a/compass/tests/apicommand/test_files/switch_config.csv b/compass/tests/apicommand/test_files/switch_config.csv deleted file mode 100644 index 405bcf0e..00000000 --- a/compass/tests/apicommand/test_files/switch_config.csv +++ /dev/null @@ -1,3 +0,0 @@ -id,ip,filter_port -1,192.168.1.10,1 -2,192.168.1.11,2 diff --git a/compass/tests/config_management/__init__.py b/compass/tests/config_management/__init__.py deleted file mode 100644 index 4ee55a4c..00000000 --- a/compass/tests/config_management/__init__.py +++ /dev/null @@ -1,13 +0,0 @@ -# Copyright 2014 Huawei Technologies Co. Ltd -# -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. diff --git a/compass/tests/config_management/installers/__init__.py b/compass/tests/config_management/installers/__init__.py deleted file mode 100644 index e69de29b..00000000 diff --git a/compass/tests/config_management/installers/test_os_installer.py b/compass/tests/config_management/installers/test_os_installer.py deleted file mode 100755 index e02eb28f..00000000 --- a/compass/tests/config_management/installers/test_os_installer.py +++ /dev/null @@ -1,88 +0,0 @@ -#!/usr/bin/python -# -# Copyright 2014 Huawei Technologies Co. Ltd -# -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. - -"""test os installer module. - - .. moduleauthor:: Xiaodong Wang -""" -import os -import unittest2 - - -os.environ['COMPASS_IGNORE_SETTING'] = 'true' - - -from compass.utils import setting_wrapper as setting -reload(setting) - - -from compass.config_management.installers import os_installer -from compass.utils import flags -from compass.utils import logsetting - - -class DummyInstaller(os_installer.Installer): - """dummy installer.""" - - NAME = 'dummy' - - def __init__(self): - super(DummyInstaller, self).__init__() - - -class Dummy2Installer(os_installer.Installer): - """another dummy installer.""" - - NAME = 'dummy' - - def __init__(self): - super(Dummy2Installer, self).__init__() - - -class TestInstallerFunctions(unittest2.TestCase): - """test installer functions.""" - - def setUp(self): - super(TestInstallerFunctions, self).setUp() - logsetting.init() - self.installers_backup_ = os_installer.INSTALLERS - os_installer.INSTALLERS = {} - - def tearDown(self): - os_installer.INSTALLERS = self.installers_backup_ - super(TestInstallerFunctions, self).tearDown() - - def test_found_installer(self): - """test found installer.""" - os_installer.register(DummyInstaller) - intaller = os_installer.get_installer_by_name(DummyInstaller.NAME) - self.assertIsInstance(intaller, DummyInstaller) - - def test_notfound_unregistered_installer(self): - """test not found unregistered installer.""" - self.assertRaises(KeyError, os_installer.get_installer_by_name, - DummyInstaller.NAME) - - def test_multi_registered_installer(self): - """test register multi installers with the same name.""" - os_installer.register(DummyInstaller) - self.assertRaises(KeyError, os_installer.register, Dummy2Installer) - - -if __name__ == '__main__': - flags.init() - logsetting.init() - unittest2.main() diff --git a/compass/tests/config_management/installers/test_package_installer.py b/compass/tests/config_management/installers/test_package_installer.py deleted file mode 100755 index eeab3c88..00000000 --- a/compass/tests/config_management/installers/test_package_installer.py +++ /dev/null @@ -1,89 +0,0 @@ -#!/usr/bin/python -# -# Copyright 2014 Huawei Technologies Co. Ltd -# -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. - -"""test package_installer module - - .. moduleauthor:: Xiaodong Wang -""" -import os -import unittest2 - - -os.environ['COMPASS_IGNORE_SETTING'] = 'true' - - -from compass.utils import setting_wrapper as setting -reload(setting) - - -from compass.config_management.installers import package_installer -from compass.utils import flags -from compass.utils import logsetting - - -class DummyInstaller(package_installer.Installer): - """dummy installer.""" - - NAME = 'dummy' - - def __init__(self): - pass - - -class Dummy2Installer(package_installer.Installer): - """another dummy installer.""" - NAME = 'dummy' - - def __init__(self): - pass - - -class TestInstallerFunctions(unittest2.TestCase): - """test installer functions.""" - - def setUp(self): - super(TestInstallerFunctions, self).setUp() - logsetting.init() - self.installers_backup_ = package_installer.INSTALLERS - package_installer.INSTALLERS = {} - - def tearDown(self): - package_installer.INSTALLERS = self.installers_backup_ - super(TestInstallerFunctions, self).tearDown() - - def test_found_installer(self): - """test found installer""" - package_installer.register(DummyInstaller) - intaller = package_installer.get_installer_by_name( - DummyInstaller.NAME) - self.assertIsInstance(intaller, DummyInstaller) - - def test_notfound_unregistered_installer(self): - """test not found unregistered installer.""" - self.assertRaises(KeyError, package_installer.get_installer_by_name, - DummyInstaller.NAME) - - def test_multi_registered_installer(self): - """test register multi installers with the same name.""" - package_installer.register(DummyInstaller) - self.assertRaises(KeyError, package_installer.register, - Dummy2Installer) - - -if __name__ == '__main__': - flags.init() - logsetting.init() - unittest2.main() diff --git a/compass/tests/config_management/providers/__init__.py b/compass/tests/config_management/providers/__init__.py deleted file mode 100644 index 4ee55a4c..00000000 --- a/compass/tests/config_management/providers/__init__.py +++ /dev/null @@ -1,13 +0,0 @@ -# Copyright 2014 Huawei Technologies Co. Ltd -# -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. diff --git a/compass/tests/config_management/providers/test_config_provider.py b/compass/tests/config_management/providers/test_config_provider.py deleted file mode 100755 index de5f3c52..00000000 --- a/compass/tests/config_management/providers/test_config_provider.py +++ /dev/null @@ -1,89 +0,0 @@ -#!/usr/bin/python -# -# Copyright 2014 Huawei Technologies Co. Ltd -# -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. -"""test config provider module. - - .. moduleauthor:: Xiaodong Wang -""" -import os -import unittest2 - - -os.environ['COMPASS_IGNORE_SETTING'] = 'true' - - -from compass.utils import setting_wrapper as setting -reload(setting) - - -from compass.config_management.providers import config_provider -from compass.utils import flags -from compass.utils import logsetting - - -class DummyProvider(config_provider.ConfigProvider): - """Dummy provider.""" - - NAME = 'dummy' - - def __init__(self): - super(DummyProvider, self).__init__() - - -class Dummy2Provider(config_provider.ConfigProvider): - """another dummy provider.""" - - NAME = 'dummy' - - def __init__(self): - super(Dummy2Provider, self).__init__() - - -class TestProviderRegisterFunctions(unittest2.TestCase): - """test provider register.""" - - def setUp(self): - super(TestProviderRegisterFunctions, self).setUp() - logsetting.init() - self.config_provider_backup_ = config_provider.PROVIDERS - config_provider.PROVIDERS = {} - - def tearDown(self): - config_provider.PROVIDERS = self.config_provider_backup_ - super(TestProviderRegisterFunctions, self).tearDown() - - def test_found_provider(self): - """test found provider.""" - config_provider.register_provider(DummyProvider) - provider = config_provider.get_provider_by_name( - DummyProvider.NAME) - self.assertIsInstance(provider, DummyProvider) - - def test_notfound_unregistered_provider(self): - """test notfound unregistered provider.""" - self.assertRaises(KeyError, config_provider.get_provider_by_name, - DummyProvider.NAME) - - def test_multi_registered_provider(self): - """tst register multi provider with the same name.""" - config_provider.register_provider(DummyProvider) - self.assertRaises(KeyError, config_provider.register_provider, - Dummy2Provider) - - -if __name__ == '__main__': - flags.init() - logsetting.init() - unittest2.main() diff --git a/compass/tests/config_management/utils/1 b/compass/tests/config_management/utils/1 deleted file mode 100644 index 3808fb33..00000000 --- a/compass/tests/config_management/utils/1 +++ /dev/null @@ -1,300 +0,0 @@ -# Copyright 2014 Huawei Technologies Co. Ltd -# -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. - -"""Module to set the hosts configs from cluster config. - - .. moduleauthor:: Xiaodong Wang -""" -import copy -import logging - -from compass.config_management.utils import config_reference -from compass.utils import util - - -class ConfigMapping(object): - """Class to merge cluster config ref to host config ref by path list.""" - - def __init__(self, path_list, from_upper_keys={}, - from_lower_keys={}, to_key='.', - override=False, override_conditions={}, - value=None): - """Constructor - - :param path_list: list of path to merge from cluster ref to host refs - :type path_list: list of str - :param from_upper_keys: kwargs from cluster ref for value callback. - :type from_upper_keys: dict of kwargs name to path in cluster ref - :param from_lower_keys: kwargs from host refs for value callback. - :type from_lower_keys: dict of kwargs name to path in host refs. - :param to_key: the path in host refs to be merged to. - :type to_key: str - :param override: if the path in host ref can be overridden. - :type override: callback or bool - :param override_conditions: kwargs from host ref for override callback - :type override_conditions: dict of kwargs name to path in host ref - :param value: the value to be set in host refs. - :type value: callback or any type - """ - self.path_list_ = path_list - self.from_upper_keys_ = from_upper_keys - self.from_lower_keys_ = from_lower_keys - self.to_key_ = to_key - self.override_ = override - self.override_conditions_ = override_conditions - self.value_ = value - self.is_valid() - - def __repr__(self): - return ( - '%s[path_list=%s,from_upper_keys=%s,' - 'from_lower_keys=%s,to_key=%s,override=%s,' - 'override_conditions=%s,value=%s]' - ) % ( - self.__class__.__name__, - self.path_list_, self.from_upper_keys_, - self.from_lower_keys_, self.to_key_, - self.override_, self.override_conditions_, - self.value_) - - def _is_valid_path_list(self): - """Check path_list are valid.""" - for i, path in enumerate(self.path_list_): - if not isinstance(path, str): - raise TypeError( - 'path_list[%d] type is %s while ' - 'expected type is str: %s' % ( - i, type(path), path)) - - def _is_valid_from_upper_keys(self): - """Check from_upper_keys are valid.""" - for mapping_key, from_upper_key in self.from_upper_keys_.items(): - if not isinstance(from_upper_key, str): - raise TypeError( - 'from_upper_keys[%s] type is %s' - 'while expected type is str: %s' % ( - mapping_key, type(from_upper_key), from_upper_key)) - - if '*' in from_upper_key: - raise KeyError( - 'from_upper_keys[%s] %s contains *' % ( - mapping_key, from_upper_key)) - - def _is_valid_from_lower_keys(self): - """Check from_lower_keys are valid.""" - for mapping_key, from_lower_key in self.from_lower_keys_.items(): - if not isinstance(from_lower_key, str): - raise TypeError( - 'from_lower_keys[%s] type' - 'is %s while expected type is str: %s' % ( - mapping_key, type(from_lower_key), from_lower_key)) - - if '*' in from_lower_key: - raise KeyError( - 'from_lower_keys[%s] %s contains *' % ( - mapping_key, from_lower_key)) - - def _is_valid_from_keys(self): - """Check from keys are valid.""" - self._is_valid_from_upper_keys() - self._is_valid_from_lower_keys() - upper_keys = set(self.from_upper_keys_.keys()) - lower_keys = set(self.from_lower_keys_.keys()) - intersection = upper_keys.intersection(lower_keys) - if intersection: - raise KeyError( - 'there is intersection between from_upper_keys %s' - ' and from_lower_keys %s: %s' % ( - upper_keys, lower_keys, intersection)) - - def _is_valid_to_key(self): - """Check to_key is valid.""" - if '*' in self.to_key_: - raise KeyError('to_key %s contains *' % self.to_key_) - - def _is_valid_override_conditions(self): - """Check override conditions are valid.""" - override_items = self.override_conditions_.items() - for mapping_key, override_condition in override_items: - if not util.is_instance(override_condition, [str, unicode]): - raise TypeError( - 'override_conditions[%s] type is %s ' - 'while expected type is [str, unicode]: %s' % ( - mapping_key, type(override_condition), - override_condition)) - - if '*' in override_condition: - raise KeyError( - 'override_conditions[%s] %s contains *' % ( - mapping_key, override_condition)) - - def is_valid(self): - """Check ConfigMapping instance is valid.""" - self._is_valid_path_list() - self._is_valid_from_keys() - self._is_valid_to_key() - self._is_valid_override_conditions() - - def _get_upper_sub_refs(self, upper_ref): - """get sub_refs from upper_ref.""" - upper_refs = [] - for path in self.path_list_: - upper_refs.extend(upper_ref.ref_items(path)) - - return upper_refs - - def _get_mapping_from_upper_keys(self, ref_key, sub_ref): - """Get upper config mapping from from_upper_keys.""" - sub_configs = {} - for mapping_key, from_upper_key in self.from_upper_keys_.items(): - if from_upper_key in sub_ref: - sub_configs[mapping_key] = sub_ref[from_upper_key] - else: - logging.info('%s ignore from_upper_key %s in %s', - self, from_upper_key, ref_key) - return sub_configs - - def _get_mapping_from_lower_keys(self, ref_key, lower_sub_refs): - """Get lower config mapping from from_lower_keys.""" - sub_configs = {} - for mapping_key, from_lower_key in self.from_lower_keys_.items(): - sub_configs[mapping_key] = {} - - for lower_key, lower_sub_ref in lower_sub_refs.items(): - for mapping_key, from_lower_key in self.from_lower_keys_.items(): - if from_lower_key in lower_sub_ref: - sub_configs[mapping_key][lower_key] = ( - lower_sub_ref[from_lower_key]) - else: - logging.error( - '%s ignore from_lower_key %s in %s lower_key %s', - self, from_lower_key, ref_key, lower_key) - - return sub_configs - - def _get_values(self, ref_key, sub_ref, lower_sub_refs, sub_configs): - """Get values to set to lower configs.""" - if self.value_ is None: - lower_values = {} - for lower_key in lower_sub_refs.keys(): - lower_values[lower_key] = copy.deepcopy(sub_ref.config) - - return lower_values - - if not callable(self.value_): - lower_values = {} - for lower_key in lower_sub_refs.keys(): - lower_values[lower_key] = copy.deepcopy(self.value_) - - return lower_values - - return self.value_(sub_ref, ref_key, lower_sub_refs, - self.to_key_, **sub_configs) - - def _get_override(self, ref_key, sub_ref): - """Get override from ref_key, ref from ref_key.""" - if not callable(self.override_): - return bool(self.override_) - - override_condition_configs = {} - override_items = self.override_conditions_.items() - for mapping_key, override_condition in override_items: - if override_condition in sub_ref: - override_condition_configs[mapping_key] = \ - sub_ref[override_condition] - else: - logging.info('%s no override condition %s in %s', - self, override_condition, ref_key) - - return self.override_(sub_ref, ref_key, - **override_condition_configs) - - def merge(self, upper_ref, lower_refs): - """merge upper config to lower configs.""" - upper_sub_refs = self._get_upper_sub_refs(upper_ref) - - for ref_key, sub_ref in upper_sub_refs: - sub_configs = self._get_mapping_from_upper_keys(ref_key, sub_ref) - - lower_sub_refs = {} - for lower_key, lower_ref in lower_refs.items(): - lower_sub_refs[lower_key] = lower_ref.setdefault(ref_key) - - lower_sub_configs = self._get_mapping_from_lower_keys( - ref_key, lower_sub_refs) - - util.merge_dict(sub_configs, lower_sub_configs) - - values = self._get_values( - ref_key, sub_ref, lower_sub_refs, sub_configs) - - logging.debug('%s set values %s to %s', - ref_key, self.to_key_, values) - for lower_key, lower_sub_ref in lower_sub_refs.items(): - if lower_key not in values: - logging.error('no key %s in %s', lower_key, values) - continue - - value = values[lower_key] - lower_to_ref = lower_sub_ref.setdefault(self.to_key_) - override = self._get_override(self.to_key_, lower_to_ref) - lower_to_ref.update(value, override) - - -class ConfigMerger(object): - """Class to merge clsuter config to host configs.""" - - def __init__(self, mappings): - """Constructor - - :param mappings: list of :class:`ConfigMapping` instance - """ - self.mappings_ = mappings - self.is_valid() - - def __repr__(self): - return '%s[mappings=%s]' % (self.__class__.__name__, self.mappings_) - - def is_valid(self): - """Check ConfigMerger instance is valid.""" - if not isinstance(self.mappings_, list): - raise TypeError( - '%s mapping type is %s while expect type is list: %s' % ( - self.__class__.__name__, type(self.mappings_), - self.mappings_)) - - def merge(self, upper_config, lower_configs): - """Merge cluster config to host configs. - - :param upper_config: cluster configuration to merge from. - :type upper_config: dict - :param lower_configs: host configurations to merge to. - :type lower_configs: dict of host id to host config as dict - """ - upper_ref = config_reference.ConfigReference(upper_config) - lower_refs = {} - for lower_key, lower_config in lower_configs.items(): - lower_refs[lower_key] = config_reference.ConfigReference( - lower_config) - - for mapping in self.mappings_: - logging.debug('apply merging from the rule %s', mapping) - mapping.merge(upper_ref, lower_refs) - - for lower_key, lower_config in lower_configs.items(): - lower_configs[lower_key] = config_reference.get_clean_config( - lower_config) - - logging.debug('merged upper config\n%s\nto lower configs:\n%s', - upper_config, lower_configs) diff --git a/compass/tests/config_management/utils/__init__.py b/compass/tests/config_management/utils/__init__.py deleted file mode 100644 index 4ee55a4c..00000000 --- a/compass/tests/config_management/utils/__init__.py +++ /dev/null @@ -1,13 +0,0 @@ -# Copyright 2014 Huawei Technologies Co. Ltd -# -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. diff --git a/compass/tests/config_management/utils/test_config_filter.py b/compass/tests/config_management/utils/test_config_filter.py deleted file mode 100755 index 6f5bef1a..00000000 --- a/compass/tests/config_management/utils/test_config_filter.py +++ /dev/null @@ -1,168 +0,0 @@ -#!/usr/bin/python -# -# Copyright 2014 Huawei Technologies Co. Ltd -# -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. - -"""test config_filter module. - - .. moduleauthor:: Xiaodong Wang -""" -import os -import unittest2 - - -os.environ['COMPASS_IGNORE_SETTING'] = 'true' - - -from compass.utils import setting_wrapper as setting -reload(setting) - - -from compass.config_management.utils import config_filter -from compass.utils import flags -from compass.utils import logsetting - - -class TestConfigFilter(unittest2.TestCase): - """test config filter class.""" - - def setUp(self): - super(TestConfigFilter, self).setUp() - logsetting.init() - self.config_ = { - '1': '1', - '2': { - '22': '22', - '33': { - '333': '333', - '44': '444' - } - }, - '3': {'33': '44'} - } - - def tearDown(self): - super(TestConfigFilter, self).tearDown() - - def test_init(self): - config_filter.ConfigFilter( - allows={ - 'abc': config_filter.AllowRule(), - 'def': config_filter.AllowRule() - }, - denies={ - 'def': config_filter.DenyRule(), - 'ghi': config_filter.DenyRule() - }) - config_filter.ConfigFilter( - allows={ - u'abc': config_filter.AllowRule(), - u'def': config_filter.AllowRule() - }, - denies={ - u'def': config_filter.DenyRule(), - u'ghi': config_filter.DenyRule() - }) - - def test_init_allows(self): - # allows type should be a dict of string to AllowRule. - self.assertRaises( - TypeError, config_filter.ConfigFilter, - allows=['abd', 'abc']) - self.assertRaises( - TypeError, config_filter.ConfigFilter, - allows='abc') - self.assertRaises( - TypeError, config_filter.ConfigFilter, - allows={'abc': 'bdc'}) - - def test_init_denies(self): - # denies type should be dict of string to DenyRule. - self.assertRaises( - TypeError, config_filter.ConfigFilter, - denies=['abd', 'abc']) - self.assertRaises( - TypeError, config_filter.ConfigFilter, - denies='abc') - self.assertRaises( - TypeError, config_filter.ConfigFilter, - denies={'abc': 'bdc'}) - - def test_allows_asterisks(self): - """test allows rules.""" - # keys in allows will be copied to dest. - # if '*' in allows, all keys will be copied to dest. - allows = { - '*': config_filter.AllowRule(), - '3': config_filter.AllowRule(), - '5': config_filter.AllowRule() - } - configfilter = config_filter.ConfigFilter(allows) - filtered_config = configfilter.filter(self.config_) - self.assertEqual(filtered_config, self.config_) - - def test_allows_path(self): - allows = { - '/1': config_filter.AllowRule(), - '2/22': config_filter.AllowRule(), - '5': config_filter.AllowRule() - } - expected_config = {'1': '1', '2': {'22': '22'}} - configfilter = config_filter.ConfigFilter(allows) - filtered_config = configfilter.filter(self.config_) - self.assertEqual(filtered_config, expected_config) - - def test_allows_asterrisks_in_path(self): - allows = { - '*/33': config_filter.AllowRule() - } - expected_config = {'2': {'33': {'333': '333', - '44': '444'}}, - '3': {'33': '44'}} - configfilter = config_filter.ConfigFilter(allows) - filtered_config = configfilter.filter(self.config_) - self.assertEqual(filtered_config, expected_config) - - def test_denies(self): - """test denies rules.""" - # keys in denies list will be removed from filtered config. - denies = { - '/1': config_filter.DenyRule(), - '2/22': config_filter.DenyRule(), - '2/33/333': config_filter.DenyRule(), - '5': config_filter.DenyRule() - } - expected_config = {'2': {'33': {'44': '444'}}, '3': {'33': '44'}} - configfilter = config_filter.ConfigFilter(denies=denies) - filtered_config = configfilter.filter(self.config_) - self.assertEqual(filtered_config, expected_config) - - def test_denies_asterisks(self): - denies = {'*': config_filter.DenyRule()} - configfilter = config_filter.ConfigFilter(denies=denies) - filtered_config = configfilter.filter(self.config_) - self.assertIsNone(filtered_config) - - def tet_deneis_asterisks_in_path(self): - denies = {'*/33': config_filter.DenyRule()} - expected_config = {'1': '1', '2': {'22': '22'}} - configfilter = config_filter.ConfigFilter(denies=denies) - filtered_config = configfilter.filter(self.config_) - self.assertEqual(filtered_config, expected_config) - - -if __name__ == '__main__': - flags.init() - logsetting.init() - unittest2.main() diff --git a/compass/tests/config_management/utils/test_config_merger.py b/compass/tests/config_management/utils/test_config_merger.py deleted file mode 100755 index 8dc1554a..00000000 --- a/compass/tests/config_management/utils/test_config_merger.py +++ /dev/null @@ -1,578 +0,0 @@ -#!/usr/bin/python -# -# Copyright 2014 Huawei Technologies Co. Ltd -# -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. - -"""test config merger module. - - .. moduleauthor:: Xiaodong Wang -""" -import os -import unittest2 - -os.environ['COMPASS_IGNORE_SETTING'] = 'true' - - -from compass.utils import setting_wrapper as setting -reload(setting) - - -from compass.config_management.utils import config_merger -from compass.config_management.utils import config_reference -from compass.utils import flags -from compass.utils import logsetting - - -class TestConfigMapping(unittest2.TestCase): - """test config mapping class.""" - - def setUp(self): - super(TestConfigMapping, self).setUp() - logsetting.init() - - def tearDown(self): - super(TestConfigMapping, self).tearDown() - - def test_init(self): - # path_list should be list of string. - config_merger.ConfigMapping( - path_list=['1/2/3', '/4/5/6']) - config_merger.ConfigMapping( - path_list=[u'1/2/3', u'/4/5/6']) - self.assertRaises( - TypeError, - config_merger.ConfigMapping, path_list={'1/2/3': '4'}) - self.assertRaises( - TypeError, config_merger.ConfigMapping, path_list='1234') - self.assertRaises( - TypeError, config_merger.ConfigMapping, - path_list=[{'1/2/3': '4'}]) - - def test_init_from_upper_keys(self): - # from_upper_keys should be dict of string to string. - config_merger.ConfigMapping( - path_list=['1/2/3', '/4/5/6'], from_upper_keys={'4': '4'}) - config_merger.ConfigMapping( - path_list=['1/2/3', '/4/5/6'], from_upper_keys={u'4': u'4'}) - self.assertRaises( - TypeError, config_merger.ConfigMapping, - path_list=['1/2/3', '/4/5/6'], - from_upper_keys=['4']) - self.assertRaises( - TypeError, config_merger.ConfigMapping, - path_list=['1/2/3', '/4/5/6'], - from_upper_keys='4') - self.assertRaises( - TypeError, config_merger.ConfigMapping, - path_list=['1/2/3', '/4/5/6'], - from_upper_keys={4: '4'}) - self.assertRaises( - TypeError, config_merger.ConfigMapping, - path_list=['1/2/3', '/4/5/6'], - from_upper_keys={'4': 4}) - - def test_init_from_lower_keys(self): - # from_lower_keys should be dict of string to string. - config_merger.ConfigMapping( - path_list=['1/2/3', '/4/5/6'], from_lower_keys={'4': '4'}) - config_merger.ConfigMapping( - path_list=['1/2/3', '/4/5/6'], from_lower_keys={u'4': u'4'}) - self.assertRaises( - TypeError, config_merger.ConfigMapping, - path_list=['1/2/3', '/4/5/6'], - from_lower_keys=['4']) - self.assertRaises( - TypeError, config_merger.ConfigMapping, - path_list=['1/2/3', '/4/5/6'], - from_lower_keys='4') - self.assertRaises( - TypeError, config_merger.ConfigMapping, - path_list=['1/2/3', '/4/5/6'], - from_lower_keys={4: '4'}) - self.assertRaises( - TypeError, config_merger.ConfigMapping, - path_list=['1/2/3', '/4/5/6'], - from_lower_keys={'4': 4}) - - def test_init_overlap_upper_keys_lower_keys(self): - # there should be overlap between from_upper_keys and from_lower_keys. - self.assertRaises( - KeyError, config_merger.ConfigMapping, - path_list=['1/2/3', '/4/5/6'], - from_upper_keys={'1': '1', '2': '2'}, - from_lower_keys={'1': '1', '3': '3'}) - config_merger.ConfigMapping( - path_list=['1/2/3', '/4/5/6'], - from_upper_keys={'1': '1', '2': '2'}, - from_lower_keys={'3': '3', '4': '4'}) - - def test_init_to_key(self): - # to_key type should be string. - config_merger.ConfigMapping( - path_list=['1/2/3', '/4/5/6'], - to_key='hello') - config_merger.ConfigMapping( - path_list=['1/2/3', '/4/5/6'], - to_key=u'hello') - self.assertRaises( - TypeError, config_merger.ConfigMapping, - path_list=['1/2/3', '/4/5/6'], - to_key=['hello']) - self.assertRaises( - TypeError, config_merger.ConfigMapping, - path_list=['1/2/3', '/4/5/6'], - to_key=123) - - def test_init_to_key_no_asterrisks(self): - # to_key should not contains '*'. - self.assertRaises( - KeyError, config_merger.ConfigMapping, - path_list=['1/2/3', '/4/5/6'], - to_key='abc*def') - - def test_init_override_conditions(self): - # override_conditions type should be dict of string to string. - config_merger.ConfigMapping( - path_list=['1/2/3', '/4/5/6'], - override_conditions={'hello': 'hi'}) - self.assertRaises( - TypeError, config_merger.ConfigMapping, - path_list=['1/2/3', '/4/5/6'], - override_conditions=['hello', 'hi']) - self.assertRaises( - TypeError, config_merger.ConfigMapping, - path_list=['1/2/3', '/4/5/6'], - override_conditions='hello') - self.assertRaises( - TypeError, config_merger.ConfigMapping, - path_list=['1/2/3', '/4/5/6'], - override_conditions={5: 'hi'}) - self.assertRaises( - TypeError, config_merger.ConfigMapping, - path_list=['1/2/3', '/4/5/6'], - override_conditions={'hello': 5}) - - def test_init_override_conditions_no_asterrisks(self): - # the value in each override_conditions key value pair - # should not contains '*'. - self.assertRaises( - KeyError, config_merger.ConfigMapping, - path_list=['1/2/3', '/4/5/6'], - override_conditions={'hello': 'hi*hi'}) - - def test_merge(self): - # the key in path_list will be copied - # from upper config to lower configs. - upper_config = { - 'key': 'abc', - 'key2': 'def' - } - upper_ref = config_reference.ConfigReference(upper_config) - lower_configs = { - 1: {}, 2: {}, 3: {} - } - lower_refs = {} - for lower_key, lower_config in lower_configs.items(): - lower_refs[lower_key] = config_reference.ConfigReference( - lower_config) - - merger = config_merger.ConfigMapping( - path_list=['key']) - merger.merge(upper_ref, lower_refs) - self.assertEqual( - lower_configs, - {1: {'key': 'abc'}, 2: {'key': 'abc'}, 3: {'key': 'abc'}}) - - def test_merge_all_matching_keys_copied(self): - # all the keys matching the pattern will be copied - # from upper config to lower configs. - upper_config = { - 'key': 'abc', - 'key2': 'def' - } - upper_ref = config_reference.ConfigReference(upper_config) - lower_configs = { - 1: {}, 2: {}, 3: {} - } - lower_refs = {} - for lower_key, lower_config in lower_configs.items(): - lower_refs[lower_key] = config_reference.ConfigReference( - lower_config) - - merger = config_merger.ConfigMapping( - path_list=['key*']) - merger.merge(upper_ref, lower_refs) - self.assertEqual( - lower_configs, - { - 1: {'key': 'abc', 'key2': 'def'}, - 2: {'key': 'abc', 'key2': 'def'}, - 3: {'key': 'abc', 'key2': 'def'} - } - ) - - def test_merge_value_set_explictly(self): - # key in lower configs are set to expected value. - upper_config = { - 'key': 'abc', - 'key2': 'def' - } - upper_ref = config_reference.ConfigReference(upper_config) - lower_configs = { - 1: {}, 2: {}, 3: {} - } - lower_refs = {} - for lower_key, lower_config in lower_configs.items(): - lower_refs[lower_key] = config_reference.ConfigReference( - lower_config) - - merger = config_merger.ConfigMapping( - path_list=['key'], value='def') - merger.merge(upper_ref, lower_refs) - self.assertEqual( - lower_configs, - { - 1: {'key': 'def'}, - 2: {'key': 'def'}, - 3: {'key': 'def'} - } - ) - - def test_merge_value_set_by_callback(self): - # key in lower config is called a callback to expected value . - upper_config = { - 'key': 'abc', - 'key2': 'def' - } - upper_ref = config_reference.ConfigReference(upper_config) - lower_configs = { - 1: {}, 2: {}, 3: {} - } - lower_refs = {} - for lower_key, lower_config in lower_configs.items(): - lower_refs[lower_key] = config_reference.ConfigReference( - lower_config) - - def _merge_value(sub_ref, ref_key, lower_sub_refs, to_key): - values = {} - for lower_key, lower_sub_ref in lower_sub_refs.items(): - values[lower_key] = '%s.%s' % (sub_ref.config, lower_key) - - return values - - merger = config_merger.ConfigMapping( - path_list=['key'], value=_merge_value) - merger.merge(upper_ref, lower_refs) - self.assertEqual( - lower_configs, - { - 1: {'key': 'abc.1'}, - 2: {'key': 'abc.2'}, - 3: {'key': 'abc.3'} - } - ) - - def test_merge_to_key(self): - # set lower configs expected key from the key in upper config. - upper_config = { - 'key': 'abc', - 'key2': 'def' - } - upper_ref = config_reference.ConfigReference(upper_config) - lower_configs = { - 1: {}, 2: {}, 3: {} - } - lower_refs = {} - for lower_key, lower_config in lower_configs.items(): - lower_refs[lower_key] = config_reference.ConfigReference( - lower_config) - - def _merge_value(sub_ref, ref_key, lower_sub_refs, to_key): - values = {} - for lower_key, lower_sub_ref in lower_sub_refs.items(): - values[lower_key] = '%s.%s' % (sub_ref.config, lower_key) - - return values - - merger = config_merger.ConfigMapping( - path_list=['key'], value=_merge_value, to_key='/key2') - merger.merge(upper_ref, lower_refs) - self.assertEqual( - lower_configs, - { - 1: {'key': None, 'key2': 'abc.1'}, - 2: {'key': None, 'key2': 'abc.2'}, - 3: {'key': None, 'key2': 'abc.3'} - } - ) - - def test_merge_from_upper_and_lower_configs(self): - # set lower configs from some keys of upper config and lower configs. - upper_config = { - 'key': 'abc', - 'key_prefix': 'A', - 'key_suffix': 'B' - } - upper_ref = config_reference.ConfigReference(upper_config) - lower_configs = { - 1: {'name': 'hello'}, 2: {'name': 'hi'}, 3: {'name': 'today'} - } - lower_refs = {} - for lower_key, lower_config in lower_configs.items(): - lower_refs[lower_key] = config_reference.ConfigReference( - lower_config) - - def _merge_value2( - sub_ref, ref_key, lower_sub_refs, to_key, - prefix='', suffix='', names={} - ): - values = {} - for lower_key, lower_sub_ref in lower_sub_refs.items(): - values[lower_key] = '%s%s%s' % ( - prefix, names.get(lower_key, ''), suffix) - - return values - - merger = config_merger.ConfigMapping( - path_list=['key'], value=_merge_value2, - from_upper_keys={'prefix': '/key_prefix', 'suffix': '/key_suffix'}, - from_lower_keys={'names': '/name'}) - merger.merge(upper_ref, lower_refs) - self.assertEqual( - lower_configs, - { - 1: {'name': 'hello', 'key': 'AhelloB'}, - 2: {'name': 'hi', 'key': 'AhiB'}, - 3: {'name': 'today', 'key': 'AtodayB'} - } - ) - - def test_merge_multikey_to_same_tokey_nooverride(self): - # mutli key in upper config writes the same dest key, the later one - # will be ignored if override is False. - upper_config = { - 'key1': 'abc', - 'key2': 'bcd' - } - upper_ref = config_reference.ConfigReference(upper_config) - lower_configs = { - 1: {}, 2: {}, 3: {} - } - lower_refs = {} - for lower_key, lower_config in lower_configs.items(): - lower_refs[lower_key] = config_reference.ConfigReference( - lower_config) - merger = config_merger.ConfigMapping( - path_list=['key1', 'key2'], to_key='/key', override=False) - merger.merge(upper_ref, lower_refs) - self.assertEqual( - lower_configs, - { - 1: {'key': 'abc', 'key1': None, 'key2': None}, - 2: {'key': 'abc', 'key1': None, 'key2': None}, - 3: {'key': 'abc', 'key1': None, 'key2': None} - } - ) - - def test_merge_multikey_to_sam_tokey_override(self): - # if multi key in upper config writes the same dest key, - # the later one will override the former one if override is True. - upper_config = { - 'key1': 'abc', - 'key2': 'bcd' - } - upper_ref = config_reference.ConfigReference(upper_config) - lower_configs = { - 1: {}, 2: {}, 3: {} - } - lower_refs = {} - for lower_key, lower_config in lower_configs.items(): - lower_refs[lower_key] = config_reference.ConfigReference( - lower_config) - merger = config_merger.ConfigMapping( - path_list=['key1', 'key2'], to_key='/key', override=True) - merger.merge(upper_ref, lower_refs) - self.assertEqual( - lower_configs, - { - 1: {'key': 'bcd', 'key1': None, 'key2': None}, - 2: {'key': 'bcd', 'key1': None, 'key2': None}, - 3: {'key': 'bcd', 'key1': None, 'key2': None} - } - ) - - def test_merge_override_callback(self): - # override param can be set from callback. - upper_config = { - 'key1': 'abc', - 'key2': 'bcd', - 'key3': 'def', - 'key_prefix': 'b', - 'key_suffix': 'd' - } - upper_ref = config_reference.ConfigReference(upper_config) - lower_configs = { - 1: {}, 2: {}, 3: {} - } - lower_refs = {} - for lower_key, lower_config in lower_configs.items(): - lower_refs[lower_key] = config_reference.ConfigReference( - lower_config) - - def _generate_override( - sub_ref, ref_key, lower_ref, to_key, prefix='', suffix='' - ): - return ( - sub_ref.config.startswith(prefix) and - sub_ref.config.endswith(suffix) - ) - - merger = config_merger.ConfigMapping( - path_list=['key1', 'key2', 'key3'], to_key='/key', - override=_generate_override, - override_conditions={ - 'prefix': '/key_prefix', 'suffix': '/key_suffix' - } - ) - merger.merge(upper_ref, lower_refs) - self.assertEqual( - lower_configs, - { - 1: {'key': 'bcd', 'key1': None, 'key2': None, 'key3': None}, - 2: {'key': 'bcd', 'key1': None, 'key2': None, 'key3': None}, - 3: {'key': 'bcd', 'key1': None, 'key2': None, 'key3': None} - } - ) - - -class TestConfigMerger(unittest2.TestCase): - """test config merger class.""" - - def setUp(self): - super(TestConfigMerger, self).setUp() - logsetting.init() - - def tearDown(self): - super(TestConfigMerger, self).tearDown() - - def test_init(self): - # mappings should be list of ConfigMapping. - config_merger.ConfigMerger(mappings=[]) - config_merger.ConfigMerger( - mappings=[ - config_merger.ConfigMapping( - path_list=['1/2/3', '/4/5/6']) - ] - ) - self.assertRaises( - TypeError, config_merger.ConfigMerger, - mapping={'hello': config_merger.ConfigMapping(path_list=[])}) - self.assertRaises( - TypeError, config_merger.ConfigMerger, - mapping=config_merger.ConfigMapping(path_list=[])) - self.assertRaises( - TypeError, config_merger.ConfigMerger, - mapping='config_merger.ConfigMapping(path_list=[])') - self.assertRaises( - TypeError, config_merger.ConfigMerger, - mapping=[{'hello': config_merger.ConfigMapping(path_list=[])}]) - self.assertRaises( - TypeError, config_merger.ConfigMerger, - mapping=['config_merger.ConfigMapping(path_list=[])']) - - def test_merge(self): - # if multi ConfigMapping updates the same key and no override is set - # for the later one, the later one will be ignored. - config = { - 'key1': 'abc', - 'key2': 'bcd' - } - lower_configs = { - 1: {}, 2: {}, 3: {} - } - merger = config_merger.ConfigMerger( - mappings=[ - config_merger.ConfigMapping( - path_list=['key1'], to_key='/mkey'), - config_merger.ConfigMapping( - path_list=['key2'], to_key='/mkey') - ] - ) - merger.merge(config, lower_configs) - self.assertEqual( - lower_configs, - {1: {'mkey': 'abc'}, 2: {'mkey': 'abc'}, 3: {'mkey': 'abc'}} - ) - - def test_merge_multi_mapping_to_same_tokey(self): - # if multi ConfigMapping updates the same key and override is set - # for the later one, the later one will override the former one. - config = { - 'key1': 'abc', - 'key2': 'bcd' - } - lower_configs = { - 1: {}, 2: {}, 3: {} - } - merger = config_merger.ConfigMerger( - mappings=[ - config_merger.ConfigMapping( - path_list=['key1'], to_key='/mkey'), - config_merger.ConfigMapping( - path_list=['key2'], to_key='/mkey', - override=True) - ] - ) - merger.merge(config, lower_configs) - self.assertEqual( - lower_configs, - {1: {'mkey': 'bcd'}, 2: {'mkey': 'bcd'}, 3: {'mkey': 'bcd'}} - ) - - def test_merge_override_callback(self): - # override param can be callback. - config = { - 'key1': 'abc', - 'key2': 'bcd' - } - lower_configs = { - 1: {}, 2: {}, 3: {} - } - - def _merge_value(sub_ref, ref_key, lower_sub_refs, to_key): - values = {} - for lower_key, lower_sub_ref in lower_sub_refs.items(): - values[lower_key] = None - - return values - - merger = config_merger.ConfigMerger( - mappings=[ - config_merger.ConfigMapping( - path_list=['key1'], - value=_merge_value, - to_key='/mkey') - ] - ) - merger.merge(config, lower_configs) - self.assertEqual( - lower_configs, - {1: None, 2: None, 3: None} - ) - - -if __name__ == '__main__': - flags.init() - logsetting.init() - unittest2.main() diff --git a/compass/tests/config_management/utils/test_config_merger_callbacks.py b/compass/tests/config_management/utils/test_config_merger_callbacks.py deleted file mode 100755 index 07845f67..00000000 --- a/compass/tests/config_management/utils/test_config_merger_callbacks.py +++ /dev/null @@ -1,767 +0,0 @@ -#!/usr/bin/python -# -# Copyright 2014 Huawei Technologies Co. Ltd -# -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. - -"""test config merger callbacks module. - - .. moduleauthor:: Xiaodong Wang -""" -import os -import unittest2 - - -os.environ['COMPASS_IGNORE_SETTING'] = 'true' - - -from compass.utils import setting_wrapper as setting -reload(setting) - - -from compass.config_management.utils import config_merger_callbacks -from compass.config_management.utils import config_reference -from compass.utils import flags -from compass.utils import logsetting - - -class TestAssignRoles(unittest2.TestCase): - """test assign roles.""" - - def setUp(self): - super(TestAssignRoles, self).setUp() - logsetting.init() - self.roles_ = ['control', 'api', 'compute'] - self.maxs_ = {'control': 1, 'api': 1, 'compute': -1} - self.default_min_ = 1 - - def tearDown(self): - super(TestAssignRoles, self).tearDown() - - def test_assign_roles_allinone_roles_empty(self): - """test assign roles all in one node.""" - lower_configs = { - 1: {'roles': []}, - } - lower_refs = {} - for hostid, config in lower_configs.items(): - lower_refs[hostid] = config_reference.ConfigReference(config) - assigned = config_merger_callbacks.assign_roles( - None, None, lower_refs, 'roles', roles=self.roles_, - maxs=self.maxs_, - default_min=self.default_min_) - self.assertEqual(assigned, {1: ['control', 'api', 'compute']}) - - def test_assign_roles_allinone_no_roles(self): - lower_configs = { - 1: {}, - } - lower_refs = {} - for hostid, config in lower_configs.items(): - lower_refs[hostid] = config_reference.ConfigReference(config) - assigned = config_merger_callbacks.assign_roles( - None, None, lower_refs, 'roles', roles=self.roles_, - maxs=self.maxs_, default_min=self.default_min_) - self.assertEqual(assigned, {1: ['control', 'api', 'compute']}) - - def test_assign_roles_allinone_roles_sorted(self): - lower_configs = { - 1: {'roles': ['api', 'control', 'compute']}, - } - lower_refs = {} - for hostid, config in lower_configs.items(): - lower_refs[hostid] = config_reference.ConfigReference(config) - assigned = config_merger_callbacks.assign_roles( - None, None, lower_refs, 'roles', roles=self.roles_, - maxs=self.maxs_, default_min=self.default_min_) - self.assertEqual(assigned, {1: ['control', 'api', 'compute']}) - - def test_assign_roles_allinone_roles_set_additional_roles(self): - lower_configs = { - 1: {'roles': ['control', 'api', 'compute', 'mysql']}, - } - lower_refs = {} - for hostid, config in lower_configs.items(): - lower_refs[hostid] = config_reference.ConfigReference(config) - assigned = config_merger_callbacks.assign_roles( - None, None, lower_refs, 'roles', roles=self.roles_, - maxs=self.maxs_, default_min=self.default_min_) - self.assertEqual(assigned, {1: ['control', 'api', 'compute', 'mysql']}) - - def test_assign_roles_allinone_roles_set_less_roles(self): - lower_configs = { - 1: {'roles': ['control', 'api']}, - } - lower_refs = {} - for hostid, config in lower_configs.items(): - lower_refs[hostid] = config_reference.ConfigReference(config) - assigned = config_merger_callbacks.assign_roles( - None, None, lower_refs, 'roles', roles=self.roles_, - maxs=self.maxs_, default_min=self.default_min_) - self.assertEqual(assigned, {1: ['control', 'api']}) - - def test_assign_roles_allinone_exclusives(self): - exclusives = ['control'] - lower_configs = { - 1: {'roles': []}, - } - lower_refs = {} - for hostid, config in lower_configs.items(): - lower_refs[hostid] = config_reference.ConfigReference(config) - self.assertRaises( - ValueError, config_merger_callbacks.assign_roles, - None, None, lower_refs, 'roles', roles=self.roles_, - maxs=self.maxs_, default_min=self.default_min_, - exclusives=exclusives) - - def test_assign_roles_allinone_bundles(self): - lower_configs = { - 1: {'roles': []}, - } - exclusives = ['control'] - bundles = [['control', 'api', 'compute']] - lower_refs = {} - for hostid, config in lower_configs.items(): - lower_refs[hostid] = config_reference.ConfigReference(config) - - assigned = config_merger_callbacks.assign_roles( - None, None, lower_refs, 'roles', roles=self.roles_, - maxs=self.maxs_, default_min=self.default_min_, - exclusives=exclusives, bundles=bundles) - self.assertEqual(assigned, {1: ['control', 'api', 'compute']}) - - def test_assign_roles_allinone_bundles_noenough_hosts(self): - exclusives = ['control'] - bundles = [['control', 'api']] - lower_configs = { - 1: {'roles': []}, - } - lower_refs = {} - for hostid, config in lower_configs.items(): - lower_refs[hostid] = config_reference.ConfigReference(config) - self.assertRaises( - ValueError, config_merger_callbacks.assign_roles, - None, None, lower_refs, 'roles', roles=self.roles_, - maxs=self.maxs_, default_min=self.default_min_, - exclusives=exclusives, bundles=bundles) - - def test_assign_roles_allinone_maxes_mins_noenough_hosts(self): - lower_configs = { - 1: {'roles': []}, - } - lower_refs = {} - for hostid, config in lower_configs.items(): - lower_refs[hostid] = config_reference.ConfigReference(config) - maxs = {'control': 1, 'api': 2, 'compute': -1} - mins = {'control': 1, 'api': 2} - default_min = 0 - self.assertRaises( - ValueError, config_merger_callbacks.assign_roles, - None, None, lower_refs, 'roles', roles=self.roles_, - maxs=maxs, mins=mins, - default_min=default_min) - - def test_assign_roles_allinone_maxes_mins(self): - lower_configs = { - 1: {'roles': []}, - } - lower_refs = {} - for hostid, config in lower_configs.items(): - lower_refs[hostid] = config_reference.ConfigReference(config) - maxs = {'control': 1, 'api': 2, 'compute': -1} - mins = {'control': 1, 'api': 0} - default_min = 0 - assigned = config_merger_callbacks.assign_roles( - None, None, lower_refs, 'roles', roles=self.roles_, - maxs=maxs, mins=mins, default_min=default_min) - self.assertEqual(assigned, {1: ['control']}) - - def test_assign_roles(self): - """test assign roles.""" - lower_configs = { - 1: {'roles': ['control']}, - 2: {'roles': ['api', 'compute']}, - 3: {'roles': []}, - 4: {}, - 5: {}, - } - lower_refs = {} - for hostid, config in lower_configs.items(): - lower_refs[hostid] = config_reference.ConfigReference(config) - exclusives = ['control'] - assigned = config_merger_callbacks.assign_roles( - None, None, lower_refs, 'roles', roles=self.roles_, - maxs=self.maxs_, - default_min=self.default_min_, - exclusives=exclusives) - self.assertEqual(assigned, {1: ['control'], - 2: ['api', 'compute'], - 3: ['compute'], - 4: ['compute'], - 5: ['compute']}) - - def test_assign_roles_multihosts_one_role(self): - default_min = 2 - maxs = {'control': 1, 'api': 2, 'compute': 2} - exclusives = ['control'] - lower_configs = { - 1: {'roles': ['control']}, - 2: {'roles': ['api', 'compute']}, - 3: {'roles': []}, - 4: {}, - 5: {}, - } - lower_refs = {} - for hostid, config in lower_configs.items(): - lower_refs[hostid] = config_reference.ConfigReference(config) - assigned = config_merger_callbacks.assign_roles( - None, None, lower_refs, 'roles', roles=self.roles_, - maxs=maxs, default_min=default_min, - exclusives=exclusives) - self.assertEqual(assigned, {1: ['control'], - 2: ['api', 'compute'], - 3: ['control'], - 4: ['api'], - 5: ['compute']}) - - def test_assign_roles_bundles(self): - roles = ['control', 'api', 'compute', 'mysql'] - maxs = {'control': 1, 'api': 2, 'compute': -1, 'mysql': 2} - exclusives = ['control'] - bundles = [['control', 'api']] - lower_configs = { - 1: {}, - 2: {}, - 3: {}, - 4: {}, - 5: {}, - } - lower_refs = {} - for hostid, config in lower_configs.items(): - lower_refs[hostid] = config_reference.ConfigReference(config) - assigned = config_merger_callbacks.assign_roles( - None, None, lower_refs, 'roles', roles=roles, - maxs=maxs, default_min=self.default_min_, - exclusives=exclusives, bundles=bundles) - self.assertEqual(assigned, {1: ['control', 'api'], - 2: ['compute'], - 3: ['mysql'], - 4: ['mysql'], - 5: ['compute']}) - - def test_assign_roles_multi_default_roles(self): - roles = ['control', 'api', 'compute', 'mysql'] - maxs = {'control': 1, 'api': 2, 'compute': -1, 'mysql': -2} - exclusives = ['control'] - bundles = [['control', 'api']] - lower_configs = { - 1: {}, - 2: {}, - 3: {}, - 4: {}, - 5: {}, - 6: {} - } - lower_refs = {} - for hostid, config in lower_configs.items(): - lower_refs[hostid] = config_reference.ConfigReference(config) - assigned = config_merger_callbacks.assign_roles( - None, None, lower_refs, 'roles', roles=roles, - maxs=maxs, default_min=self.default_min_, - exclusives=exclusives, bundles=bundles) - self.assertEqual(assigned, {1: ['control', 'api'], - 2: ['compute'], - 3: ['mysql'], - 4: ['mysql'], - 5: ['compute'], - 6: ['mysql']}) - - def test_assign_roles_hosts_portion_by_default_roles(self): - roles = ['control', 'api', 'compute', 'mysql'] - maxs = {'control': 1, 'api': 2, 'compute': -1, 'mysql': -1} - exclusives = ['control'] - bundles = [['control', 'api']] - lower_configs = { - 1: {}, - 2: {}, - 3: {}, - 4: {}, - 5: {}, - 6: {} - } - lower_refs = {} - for hostid, config in lower_configs.items(): - lower_refs[hostid] = config_reference.ConfigReference(config) - assigned = config_merger_callbacks.assign_roles( - None, None, lower_refs, 'roles', roles=roles, - maxs=maxs, default_min=self.default_min_, - exclusives=exclusives, bundles=bundles) - self.assertEqual(assigned, {1: ['control', 'api'], - 2: ['compute'], - 3: ['mysql'], - 4: ['compute'], - 5: ['mysql'], - 6: ['compute']}) - - def test_assign_roles_by_host_number_one_host(self): - lower_configs = { - 1: {} - } - lower_refs = {} - for hostid, config in lower_configs.items(): - lower_refs[hostid] = config_reference.ConfigReference(config) - default = { - 'roles': ['control', 'api', 'compute'], - 'maxs': {'control': 1, 'api': 1, 'compute': -1}, - 'default_min': 1, - 'exclusives': ['control'] - } - policy_by_host_numbers = { - '1': { - 'bundles': [['control', 'api', 'compute']] - }, - '2': { - 'bundles': [['control', 'api']] - }, - } - assigned = config_merger_callbacks.assign_roles_by_host_numbers( - None, None, lower_refs, 'roles', - policy_by_host_numbers=policy_by_host_numbers, - default=default) - self.assertEqual(assigned, {1: ['control', 'api', 'compute']}) - - def test_assign_roles_by_host_number_two_hosts(self): - lower_configs = { - 1: {}, - 2: {} - } - lower_refs = {} - for hostid, config in lower_configs.items(): - lower_refs[hostid] = config_reference.ConfigReference(config) - default = { - 'roles': ['control', 'api', 'compute'], - 'maxs': {'control': 1, 'api': 1, 'compute': -1}, - 'default_min': 1, - 'exclusives': ['control'] - } - policy_by_host_numbers = { - '1': { - 'bundles': [['control', 'api', 'compute']] - }, - '2': { - 'bundles': [['control', 'api']] - }, - } - assigned = config_merger_callbacks.assign_roles_by_host_numbers( - None, None, lower_refs, 'roles', - policy_by_host_numbers=policy_by_host_numbers, - default=default) - self.assertEqual(assigned, {1: ['control', 'api'], 2: ['compute']}) - - def test_assign_roles_by_host_number_host_number_not_found(self): - lower_configs = { - 1: {}, - 2: {}, - 3: {} - } - lower_refs = {} - for hostid, config in lower_configs.items(): - lower_refs[hostid] = config_reference.ConfigReference(config) - default = { - 'roles': ['control', 'api', 'compute'], - 'maxs': {'control': 1, 'api': 1, 'compute': -1}, - 'default_min': 1, - 'exclusives': ['control'] - } - policy_by_host_numbers = { - '1': { - 'bundles': [['control', 'api', 'compute']] - }, - '2': { - 'bundles': [['control', 'api']] - }, - } - assigned = config_merger_callbacks.assign_roles_by_host_numbers( - None, None, lower_refs, 'roles', - policy_by_host_numbers=policy_by_host_numbers, - default=default) - self.assertEqual( - assigned, {1: ['control'], 2: ['api'], 3: ['compute']}) - - def test_assign_roles_by_host_number_host_number_host_number_int(self): - default = { - 'roles': ['control', 'api', 'compute'], - 'maxs': {'control': 1, 'api': 1, 'compute': -1}, - 'default_min': 1, - 'exclusives': ['control'] - } - policy_by_host_numbers = { - 1: { - 'bundles': [['control', 'api', 'compute']] - }, - 2: { - 'bundles': [['control', 'api']] - }, - } - lower_configs = { - 1: {} - } - lower_refs = {} - for hostid, config in lower_configs.items(): - lower_refs[hostid] = config_reference.ConfigReference(config) - self.assertRaises( - ValueError, config_merger_callbacks.assign_roles_by_host_numbers, - None, None, lower_refs, 'roles', - policy_by_host_numbers=policy_by_host_numbers, - default=default) - - -class TestAssignIPs(unittest2.TestCase): - """test assign ips.""" - - def setUp(self): - super(TestAssignIPs, self).setUp() - logsetting.init() - - def tearDown(self): - super(TestAssignIPs, self).tearDown() - - def test_assign_ips_validate(self): - lower_configs = { - 1: {} - } - lower_refs = {} - for hostid, config in lower_configs.items(): - lower_refs[hostid] = config_reference.ConfigReference(config) - # ip_start and ip_end param should be the correct format. - self.assertRaises( - ValueError, config_merger_callbacks.assign_ips, - None, None, lower_refs, 'ip', - ip_start='') - self.assertRaises( - ValueError, config_merger_callbacks.assign_ips, - None, None, lower_refs, 'ip', - ip_start='100') - self.assertRaises( - ValueError, config_merger_callbacks.assign_ips, - None, None, lower_refs, 'ip', - ip_end='') - self.assertRaises( - ValueError, config_merger_callbacks.assign_ips, - None, None, lower_refs, 'ip', - ip_end='100') - - def test_assign_ip_ip_start_ip_end_relation(self): - lower_configs = { - 1: {} - } - lower_refs = {} - for hostid, config in lower_configs.items(): - lower_refs[hostid] = config_reference.ConfigReference(config) - self.assertRaises( - ValueError, config_merger_callbacks.assign_ips, - None, None, lower_refs, 'ip', - ip_start='192.168.100.100', ip_end='192.168.100.99') - assigned = config_merger_callbacks.assign_ips( - None, None, lower_refs, 'ip', - ip_start='192.168.100.100', ip_end='192.168.100.100') - self.assertEqual(assigned, {1: '192.168.100.100'}) - - def test_assign_ips_multi_hosts_noenough_ips(self): - lower_configs = { - 1: {}, 2: {} - } - lower_refs = {} - for hostid, config in lower_configs.items(): - lower_refs[hostid] = config_reference.ConfigReference(config) - self.assertRaises( - ValueError, config_merger_callbacks.assign_ips, - None, None, lower_refs, 'ip', - ip_start='192.168.100.100', ip_end='192.168.100.100') - - def test_assign_ips_multi_hosts(self): - lower_configs = { - 1: {}, 2: {} - } - lower_refs = {} - for hostid, config in lower_configs.items(): - lower_refs[hostid] = config_reference.ConfigReference(config) - assigned = config_merger_callbacks.assign_ips( - None, None, lower_refs, 'ip', - ip_start='192.168.100.100', ip_end='192.168.100.101') - self.assertEqual( - assigned, {1: '192.168.100.100', 2: '192.168.100.101'}) - - -class TestAssignFromPattern(unittest2.TestCase): - """test assign value from pattern.""" - - def setUp(self): - super(TestAssignFromPattern, self).setUp() - logsetting.init() - - def tearDown(self): - super(TestAssignFromPattern, self).tearDown() - - def test_pattern(self): - lower_configs = { - 1: {} - } - lower_refs = {} - for hostid, config in lower_configs.items(): - lower_refs[hostid] = config_reference.ConfigReference(config) - assigned = config_merger_callbacks.assign_from_pattern( - None, None, lower_refs, 'pattern', pattern='hello') - self.assertEqual(assigned, {1: 'hello'}) - - def test_pattern_upper_keys(self): - lower_configs = { - 1: {} - } - lower_refs = {} - for hostid, config in lower_configs.items(): - lower_refs[hostid] = config_reference.ConfigReference(config) - assigned = config_merger_callbacks.assign_from_pattern( - None, None, lower_refs, 'pattern', - upper_keys=['clustername'], pattern='%(clustername)s', - clustername='mycluster') - self.assertEqual(assigned, {1: 'mycluster'}) - - def test_pattern_lower_keys(self): - lower_configs = { - 1: {} - } - lower_refs = {} - for hostid, config in lower_configs.items(): - lower_refs[hostid] = config_reference.ConfigReference(config) - assigned = config_merger_callbacks.assign_from_pattern( - None, None, lower_refs, 'pattern', - lower_keys=['hostname'], pattern='%(hostname)s', - hostname={1: 'myhost'}) - self.assertEqual(assigned, {1: 'myhost'}) - - def test_pattern_upper_keys_lower_keys(self): - lower_configs = { - 1: {} - } - lower_refs = {} - for hostid, config in lower_configs.items(): - lower_refs[hostid] = config_reference.ConfigReference(config) - assigned = config_merger_callbacks.assign_from_pattern( - None, None, lower_refs, 'pattern', - upper_keys=['clustername'], lower_keys=['hostname'], - pattern='%(hostname)s.%(clustername)s', - hostname={1: 'myhost'}, clustername='mycluster') - self.assertEqual(assigned, {1: 'myhost.mycluster'}) - - def test_pattern_upper_keys_lower_keys_overlap(self): - lower_configs = { - 1: {} - } - lower_refs = {} - for hostid, config in lower_configs.items(): - lower_refs[hostid] = config_reference.ConfigReference(config) - self.assertRaises( - KeyError, config_merger_callbacks.assign_from_pattern, - None, None, lower_refs, 'pattern', - upper_keys=['clustername'], - lower_keys=['clustername', 'hostname'], - pattern='%(hostname)s.%(clustername)s', - hostname={1: 'myhost'}, clustername='mycluster') - - def test_pattern_extra_keys(self): - lower_configs = { - 1: {} - } - lower_refs = {} - for hostid, config in lower_configs.items(): - lower_refs[hostid] = config_reference.ConfigReference(config) - self.assertRaises( - KeyError, config_merger_callbacks.assign_from_pattern, - None, None, lower_refs, 'pattern', - upper_keys=['clustername', 'clusterid'], - lower_keys=['hostname', 'hostid'], - pattern='%(hostname)s.%(clustername)s', - hostname={1: 'myhost'}, clustername='mycluster') - - def test_pattern_lower_key_not_dict(self): - lower_configs = { - 1: {} - } - lower_refs = {} - for hostid, config in lower_configs.items(): - lower_refs[hostid] = config_reference.ConfigReference(config) - self.assertRaises( - KeyError, config_merger_callbacks.assign_from_pattern, - None, None, lower_refs, 'pattern', - upper_keys=['clustername'], - lower_keys=['hostname'], - pattern='%(hostname)s.%(clustername)s', - hostname='myhost', clustername='mycluster') - - def test_pattern_extra_kwargs(self): - lower_configs = { - 1: {} - } - lower_refs = {} - for hostid, config in lower_configs.items(): - lower_refs[hostid] = config_reference.ConfigReference(config) - assigned = config_merger_callbacks.assign_from_pattern( - None, None, lower_refs, 'pattern', - upper_keys=['clustername'], - lower_keys=['hostname'], - pattern='%(hostname)s.%(clustername)s', - hostname={1: 'myhost'}, clustername='mycluster', - hostid={1: 'myhost'}, clusterid=1) - self.assertEqual(assigned, {1: 'myhost.mycluster'}) - - def test_pattern_extra_key_in_pattern(self): - lower_configs = { - 1: {} - } - lower_refs = {} - for hostid, config in lower_configs.items(): - lower_refs[hostid] = config_reference.ConfigReference(config) - self.assertRaises( - KeyError, config_merger_callbacks.assign_from_pattern, - None, None, lower_refs, 'pattern', - upper_keys=['clustername'], - lower_keys=['hostname'], - pattern='%(hostid)s.%(clusterid)s', - hostname={1: 'myhost'}, clustername='mycluster') - - -class TestNoProxy(unittest2.TestCase): - """test assign noproxy.""" - - def setUp(self): - super(TestNoProxy, self).setUp() - logsetting.init() - - def tearDown(self): - super(TestNoProxy, self).tearDown() - - def test_noproxy(self): - lower_configs = { - 1: {}, - 2: {} - } - lower_refs = {} - for hostid, config in lower_configs.items(): - lower_refs[hostid] = config_reference.ConfigReference(config) - assigned = config_merger_callbacks.assign_noproxy( - None, None, lower_refs, 'noproxy', - default=['127.0.0.1', 'compass', '10.145.88.3'], - clusterid=1, noproxy_pattern='%(hostname)s.%(clusterid)s,%(ip)s', - hostnames={1: 'host1', 2: 'host2'}, - ips={1: '10.145.88.1', 2: '10.145.88.2'}) - self.assertEqual( - assigned, { - 1: ( - '127.0.0.1,compass,10.145.88.3,' - 'host1.1,10.145.88.1,host2.1,10.145.88.2' - ), - 2: ( - '127.0.0.1,compass,10.145.88.3,' - 'host1.1,10.145.88.1,host2.1,10.145.88.2' - ) - }) - - def test_noproxy_noclusterid(self): - lower_configs = { - 1: {}, - 2: {} - } - lower_refs = {} - for hostid, config in lower_configs.items(): - lower_refs[hostid] = config_reference.ConfigReference(config) - self.assertRaises( - KeyError, config_merger_callbacks.assign_noproxy, - None, None, lower_refs, 'noproxy', - default=['127.0.0.1', 'compass', '10.145.88.3'], - noproxy_pattern='%(hostname)s.%(clusterid)s,%(ip)s', - hostnames={1: 'host1', 2: 'host2'}, - ips={1: '10.145.88.1', 2: '10.145.88.2'}) - - def test_noproxy_nohostname_ips(self): - lower_configs = { - 1: {}, - 2: {} - } - lower_refs = {} - for hostid, config in lower_configs.items(): - lower_refs[hostid] = config_reference.ConfigReference(config) - self.assertRaises( - KeyError, config_merger_callbacks.assign_noproxy, - None, None, lower_refs, 'noproxy', - default=['127.0.0.1', 'compass', '10.145.88.3'], - noproxy_pattern='%(hostname)s.%(clusterid)s,%(ip)s', - clusterid=1, hostnames={1: 'host1'}, - ips={1: '10.145.88.1'}) - - def test_noproxy_extra_keys_in_pattern(self): - lower_configs = { - 1: {}, - 2: {} - } - lower_refs = {} - for hostid, config in lower_configs.items(): - lower_refs[hostid] = config_reference.ConfigReference(config) - self.assertRaises( - KeyError, config_merger_callbacks.assign_noproxy, - None, None, lower_refs, 'noproxy', - default=['127.0.0.1', 'compass', '10.145.88.3'], - noproxy_pattern='%(hostname)s.%(clustername)s,%(ip)s', - clusterid=1, hostnames={1: 'host1', 2: 'host2'}, - ips={1: '10.145.88.1', 2: '10.145.88.2'}) - - -class TestOverrideIfEmpty(unittest2.TestCase): - """test override if empty.""" - - def setUp(self): - super(TestOverrideIfEmpty, self).setUp() - logsetting.init() - - def tearDown(self): - super(TestOverrideIfEmpty, self).tearDown() - - def test_lower_config_none(self): - lower_config = None - lower_ref = config_reference.ConfigReference(lower_config) - override = config_merger_callbacks.override_if_empty( - None, None, lower_ref, 'override') - self.assertTrue(override) - - def test_lower_config_empty(self): - lower_config = '' - lower_ref = config_reference.ConfigReference(lower_config) - override = config_merger_callbacks.override_if_empty( - None, None, lower_ref, 'override') - self.assertTrue(override) - lower_config = [] - lower_ref = config_reference.ConfigReference(lower_config) - override = config_merger_callbacks.override_if_empty( - None, None, lower_ref, 'override') - self.assertTrue(override) - lower_config = {} - lower_ref = config_reference.ConfigReference(lower_config) - override = config_merger_callbacks.override_if_empty( - None, None, lower_ref, 'override') - self.assertTrue(override) - - -if __name__ == '__main__': - flags.init() - logsetting.init() - unittest2.main() diff --git a/compass/tests/config_management/utils/test_config_reference.py b/compass/tests/config_management/utils/test_config_reference.py deleted file mode 100755 index 6b4f1826..00000000 --- a/compass/tests/config_management/utils/test_config_reference.py +++ /dev/null @@ -1,353 +0,0 @@ -#!/usr/bin/python -# -# Copyright 2014 Huawei Technologies Co. Ltd -# -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. - -"""test config reference module. - - .. moduleauthor:: Xiaodong Wang -""" -import copy -import os -import unittest2 - - -os.environ['COMPASS_IGNORE_SETTING'] = 'true' - - -from compass.utils import setting_wrapper as setting -reload(setting) - - -from compass.config_management.utils import config_reference -from compass.utils import flags -from compass.utils import logsetting -from compass.utils import util - - -class TestCleanConfig(unittest2.TestCase): - """test clean_config function.""" - - def setUp(self): - super(TestCleanConfig, self).setUp() - logsetting.init() - - def tearDown(self): - super(TestCleanConfig, self).tearDown() - - def test_config_empty(self): - """test config is empty.""" - self.assertIsNone(config_reference.get_clean_config(None)) - self.assertIsNone(config_reference.get_clean_config({})) - self.assertEqual([], config_reference.get_clean_config([])) - self.assertEqual('', config_reference.get_clean_config('')) - - def test_recursive_empty_dict(self): - """test config is recursively empty.""" - self.assertIsNone(config_reference.get_clean_config({'test': {}})) - self.assertIsNone(config_reference.get_clean_config({'test': None})) - - def test_nromal_dict(self): - """test config is normal dict.""" - config_list = [ - {'abc': 'abc'}, - {'abc': [1, 2, 3]}, - {'abc': {'1': '123'}}, - [1, 2, 3], - 'abc', - ] - for config in config_list: - self.assertEqual(config, config_reference.get_clean_config(config)) - - def test_partial_clean(self): - """test config is partial cleaned.""" - config_and_cleans = [ - ({'abc': 1, 'bcd': None}, {'abc': 1}), - ({'abc': 1, 'bcd': {}}, {'abc': 1}), - ({'abc': 1, 'bcd': {'m': {}}}, {'abc': 1}), - ({'abc': 1, 'b': {'m': {}, 'n': 2}}, {'abc': 1, 'b': {'n': 2}}), - ] - for config, expected_config in config_and_cleans: - self.assertEqual( - expected_config, - config_reference.get_clean_config(config)) - - -class TestConfigReference(unittest2.TestCase): - """test config reference class.""" - - def setUp(self): - super(TestConfigReference, self).setUp() - logsetting.init() - self.config_ = {'1': {'2': 3, '10': {}}, '4': [5, 6, 7], '8': 8} - self.ref_ = config_reference.ConfigReference(self.config_) - - def tearDown(self): - super(TestConfigReference, self).tearDown() - - def test_init(self): - """test init function.""" - # create ConfigReference instance. - self.assertEqual(self.ref_.config, self.config_) - self.assertEqual(id(self.ref_.config), id(self.config_)) - - def test_init_with_parent(self): - # create ConfigReference instance with parent param. - # it will add a key value pair in parent config if not exists. - config2 = {'5': {'6': 6}} - ref2 = config_reference.ConfigReference(config2['5'], self.ref_, '5') - expected_config = copy.deepcopy(self.config_) - util.merge_dict(expected_config, config2) - self.assertEqual(self.config_, expected_config) - self.assertEqual(id(self.config_['5']), id(ref2.config)) - self.assertEqual(id(ref2.config), id(config2['5'])) - - def test_init_with_parent_update(self): - # create ConfigReference instance with parent param. - # it will update the key value pair in parent config if it exists. - config3 = {'5': {'7': 7}} - ref3 = config_reference.ConfigReference(config3['5'], self.ref_, '5') - expected_config = copy.deepcopy(self.config_) - util.merge_dict(expected_config, config3) - self.assertEqual(self.config_, expected_config) - self.assertEqual(id(self.config_['5']), id(ref3.config)) - self.assertEqual(id(ref3.config), id(config3['5'])) - - def test_init_config_keys(self): - # config key should be string. - config_reference.ConfigReference(1) - config_reference.ConfigReference('1') - config_reference.ConfigReference([1, 2]) - config_reference.ConfigReference({'1': 2}) - config_reference.ConfigReference({u'1': 2}) - self.assertRaises( - TypeError, config_reference.ConfigReference, {1: 2}) - - def test_init_parent_type(self): - # parent instance should be of ConfigReference. - self.assertRaises( - TypeError, config_reference.ConfigReference, - {'1': 2}, parent=object()) - - def test_init_parent_key_type(self): - # parent key should be string. - self.assertRaises( - TypeError, config_reference.ConfigReference, - {'1': 2}, parent=self.ref_, parent_key=6) - - def test_ref_noexist_key(self): - # raise KeyError when accessing noexist key. - self.assertRaises(KeyError, self.ref_.ref, '') - self.assertRaises(KeyError, self.ref_.ref, '/1/2/4') - - def test_ref_dot_key(self): - # . key returns the same reference. - self.assertEqual(id(self.ref_.ref('.')), id(self.ref_)) - self.assertEqual(self.ref_.ref('.').config, self.config_) - - def test_ref_double_dot_key(self): - # .. key returns the same reference if ref itself - # is the top level reference. - self.assertEqual(id(self.ref_.ref('..')), id(self.ref_)) - self.assertEqual(self.ref_.ref('..').config, self.config_) - - def test_ref_slash_key(self): - # / key returns the same reference if the ref itself is - # the top level reference. - self.assertEqual(id(self.ref_.ref('/')), id(self.ref_)) - self.assertEqual(self.ref_.ref('/').config, self.config_) - - def test_ref_key(self): - # ref() returns the reference of the . - self.assertEqual(self.ref_.ref('1').config, self.config_['1']) - self.assertEqual(self.ref_.ref('1/2').config, - self.config_['1']['2']) - self.assertEqual(self.ref_.ref('1/2/.').config, - self.config_['1']['2']) - self.assertEqual(self.ref_.ref('1/2/..').config, - self.config_['1']) - self.assertEqual(self.ref_.ref('1/2//').config, - self.config_['1']['2']) - self.assertEqual(self.ref_.ref('/1').config, - self.config_['1']) - self.assertEqual(self.ref_.ref('/1/2').config, - self.config_['1']['2']) - - def test_ref_key_in_parent(self): - # from sub ref, we can get the reference of it parent or root. - subref = self.ref_.ref('1') - self.assertEqual(id(subref.ref('..')), id(self.ref_)) - self.assertEqual(subref.ref('..').config, self.config_) - self.assertEqual(id(subref.ref('../..')), id(self.ref_)) - self.assertEqual(subref.ref('../..').config, self.config_) - self.assertEqual(id(subref.ref('/')), id(self.ref_)) - self.assertEqual(subref.ref('/').config, self.config_) - self.assertEqual(subref.ref('2').config, self.config_['1']['2']) - self.assertEqual(subref.ref('2/..').config, self.config_['1']) - self.assertEqual(subref.ref('/4').config, self.config_['4']) - - def test_ref_key_not_exist(self): - subref = self.ref_.ref('1') - self.assertRaises(KeyError, subref.ref, '/4/5') - self.assertRaises(KeyError, subref.ref, '/9') - - def test_ref_key_not_exist_and_create(self): - # create sub reference if key does not exists and - # create_if_not_exist param is True. - subref2 = self.ref_.ref('9', True) - self.assertEqual(self.ref_.ref('9'), subref2) - - def test_refs(self): - """test refs function.""" - # ref_keys will return all matching refs. - refkeys = self.ref_.ref_keys('1') - self.assertEqual(set(refkeys), set(['1'])) - - def test_refs_asterisks(self): - refkeys = self.ref_.ref_keys('/1/*') - self.assertEqual(set(refkeys), set(['/1/2', '/1/10'])) - refkeys = self.ref_.ref_keys('*') - self.assertEqual(set(refkeys), set(['1', '4', '8'])) - refkeys = self.ref_.ref_keys('8*') - self.assertEqual(set(refkeys), set(['8'])) - - def test_refs_empty_key(self): - # ref keys will raise KeyError if the param is empty. - self.assertRaises(KeyError, self.ref_.ref_keys, '') - - def test_contains(self): - """test contains function.""" - self.assertIn('/1/2', self.ref_) - self.assertIn('1/10/', self.ref_) - self.assertIn('4/', self.ref_) - self.assertIn('/1/2/..', self.ref_) - self.assertNotIn('/1/3/7', self.ref_) - self.assertNotIn('/1/2/3/..', self.ref_) - - def test_getitem(self): - """test getitem function.""" - self.assertEqual(self.ref_['1'], self.config_['1']) - self.assertEqual(self.ref_['1/2'], self.config_['1']['2']) - self.assertEqual(self.ref_['/1'], self.config_['1']) - self.assertEqual(self.ref_['1/2/../../4'], self.config_['4']) - - def test_setitem(self): - """test setitem function.""" - self.ref_['/1/2'] = '6' - self.assertEqual(self.config_['1']['2'], '6') - self.assertEqual(self.ref_['/1/2'], '6') - self.ref_['1/10/5'] = 7 - self.assertEqual(self.config_['1']['10']['5'], 7) - self.assertEqual(self.ref_['1/10/5'], 7) - self.ref_['3/6/8'] = [1, 3, 5] - self.assertEqual(self.config_['3']['6']['8'], [1, 3, 5]) - self.assertEqual(self.ref_['3/6/8'], [1, 3, 5]) - - def test_del(self): - """test del function.""" - del self.ref_['/8'] - self.assertNotIn('8', self.config_) - del self.ref_['1/2'] - self.assertNotIn('2', self.config_['1']) - del self.ref_['1'] - self.assertNotIn('1', self.config_) - - def test_del_noexist_key(self): - # del nonexist key will raise KeyError - self.assertRaises(KeyError, self.ref_.__delitem__, '9') - - def test_len(self): - ref = config_reference.ConfigReference({}) - self.assertEqual(len(ref), 0) - ref = config_reference.ConfigReference({'1': '2', '2': '4'}) - self.assertEqual(len(ref), 2) - ref = config_reference.ConfigReference( - {'1': {'2': '3', '4': '5'}, '2': '4'}) - self.assertEqual(len(ref), 4) - - def test_bool(self): - ref = config_reference.ConfigReference({}) - self.assertFalse(ref) - ref = config_reference.ConfigReference({'1': 1}) - self.assertTrue(ref) - - def test_get(self): - """test get function.""" - self.assertEqual(self.ref_.get('1/2'), self.config_['1']['2']) - self.assertIsNone(self.ref_.get('1/3')) - self.assertEqual(self.ref_.get('1/3', 3), 3) - self.assertNotIn('3', self.config_['1']) - - def test_setdefault(self): - """test setdefault function.""" - self.assertEqual(self.ref_.setdefault('1/2').config, - self.config_['1']['2']) - self.assertIsNone(self.ref_.setdefault('1/3').config) - self.assertEqual(self.ref_.setdefault('1/4', 4).config, 4) - self.assertEqual(4, self.config_['1']['4']) - - def test_update(self): - """test update function.""" - expected_config = copy.deepcopy(self.config_) - config2 = {'9': 9, '10': {'10': 10}} - util.merge_dict(expected_config, config2) - self.ref_.update(config2) - self.assertEqual(self.ref_.config, expected_config) - - def test_update_nooverride(self): - # if override is False and ref config is not None, ignore the update. - expected_config = copy.deepcopy(self.config_) - self.ref_.update(10, False) - self.assertEqual(self.config_, expected_config) - - def test_update_override(self): - # if override is True, it will force update the config. - self.ref_.update(10) - self.assertEqual(self.ref_.config, 10) - - def test_iter(self): - """test iter function.""" - items = dict(self.ref_.items()) - self.assertEqual({ - '1': {'2': 3, '10': {}}, - '1/2': 3, - '1/10': {}, - '4': [5, 6, 7], - '8': 8}, items) - self.assertEqual( - set(self.ref_.keys()), - set(['1', '1/2', '1/10', '4', '8'])) - - def test_match(self): - config = {'1': {'2': 'abcdef'}, '3': ['efg', 'hij', 'k']} - ref = config_reference.ConfigReference(config) - self.assertTrue(ref.match({'1/2': 'abcdef'})) - self.assertFalse(ref.match({'1/2': 'abceef'})) - self.assertTrue(ref.match({'1/2': '[a-z]+'})) - self.assertFalse(ref.match({'1/2': '[0-9]+'})) - self.assertTrue(ref.match({'3': 'efg'})) - self.assertFalse(ref.match({'3': 'm'})) - self.assertTrue(ref.match({'3': 'hij'})) - - def test_filter(self): - config = {'1': {'2': 'abcdef', '4': 4}, '3': ['efg', 'hij', 'k']} - ref = config_reference.ConfigReference(config) - self.assertEqual(ref.filter(['1/2', '1/4', '5']), - {'1/2': 'abcdef', '1/4': 4}) - - -if __name__ == '__main__': - flags.init() - logsetting.init() - unittest2.main() diff --git a/compass/tests/config_management/utils/test_config_translator.py b/compass/tests/config_management/utils/test_config_translator.py deleted file mode 100755 index b3d76083..00000000 --- a/compass/tests/config_management/utils/test_config_translator.py +++ /dev/null @@ -1,568 +0,0 @@ -#!/usr/bin/python -# -# Copyright 2014 Huawei Technologies Co. Ltd -# -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. - -"""test config translator module. - - .. moduleauthor:: Xiaodong Wang -""" -import os -import unittest2 - - -os.environ['COMPASS_IGNORE_SETTING'] = 'true' - - -from compass.utils import setting_wrapper as setting -reload(setting) - - -from compass.config_management.utils import config_reference -from compass.config_management.utils import config_translator -from compass.utils import flags -from compass.utils import logsetting - - -class TestKeyTranslator(unittest2.TestCase): - """test key translator class.""" - - def setUp(self): - super(TestKeyTranslator, self).setUp() - logsetting.init() - - def tearDown(self): - super(TestKeyTranslator, self).tearDown() - - def test_init(self): - # translated_keys should be callback or list of string or callback. - config_translator.KeyTranslator( - translated_keys=['/a/b/c', '/d/e']) - config_translator.KeyTranslator( - translated_keys=[u'/a/b/c', u'/d/e']) - config_translator.KeyTranslator( - translated_keys=(lambda sub_ref, ref_key: [])) - config_translator.KeyTranslator( - translated_keys=[lambda sub_ref, ref_key: '/d/e']) - self.assertRaises( - TypeError, config_translator.KeyTranslator, - translated_keys='/a/b/c') - self.assertRaises( - TypeError, config_translator.KeyTranslator, - translated_keys={'/a/b/c': 'd/e'}) - self.assertRaises( - TypeError, config_translator.KeyTranslator, - translated_keys=[5, 6, 7]) - self.assertRaises( - TypeError, config_translator.KeyTranslator, - translated_keys=[('5', '6')]) - - def test_init_translated_keys_noasterrisks(self): - # the key in translated key should not contain '*'. - self.assertRaises( - KeyError, config_translator.KeyTranslator, - translated_keys=['/a/*/b']) - - def test_init_from_keys(self): - # the from keys should be dict of string to string. - config_translator.KeyTranslator( - translated_keys=['/a/b/c', '/d/e'], from_keys={'m': '/m/n'}) - config_translator.KeyTranslator( - translated_keys=['/a/b/c', '/d/e'], from_keys={u'm': u'/m/n'}) - self.assertRaises( - TypeError, config_translator.KeyTranslator, - translated_keys=['/a/b/c'], from_keys=['m']) - self.assertRaises( - TypeError, config_translator.KeyTranslator, - translated_keys=['/a/b/c'], from_keys='m') - self.assertRaises( - TypeError, config_translator.KeyTranslator, - translated_keys=['/a/b/c'], from_keys={5: 'm'}) - self.assertRaises( - TypeError, config_translator.KeyTranslator, - translated_keys=['/a/b/c'], from_keys={'m': 5}) - self.assertRaises( - TypeError, config_translator.KeyTranslator, - translated_keys=['/a/b/c'], from_keys={'m': ['/m/n']}) - - def test_init_from_keys_noasterisks(self): - # the value of the from_keys should not contain '*'. - self.assertRaises( - KeyError, config_translator.KeyTranslator, - translated_keys=['/a/b/c'], from_keys={'m': '/m/*/n'}) - - def test_init_from_values(self): - # from_values should be dict of string to string. - config_translator.KeyTranslator( - translated_keys=['/a/b/c'], from_values={'m': '/m'}) - config_translator.KeyTranslator( - translated_keys=['/a/b/c'], from_values={u'm': u'/m'}) - self.assertRaises( - TypeError, config_translator.KeyTranslator, - translated_keys=['/a/b/c'], from_values=['m']) - self.assertRaises( - TypeError, config_translator.KeyTranslator, - translated_keys=['/a/b/c'], from_values='m') - self.assertRaises( - TypeError, config_translator.KeyTranslator, - translated_keys=['/a/b/c'], from_values={5: 'm'}) - self.assertRaises( - TypeError, config_translator.KeyTranslator, - translated_keys=['/a/b/c'], from_keys={'m': 5}) - self.assertRaises( - TypeError, config_translator.KeyTranslator, - translated_keys=['/a/b/c'], from_values={'m': ['/m/n']}) - - def test_init_from_values_noasterisks(self): - # the value of the from_values should not contain '*'. - self.assertRaises( - KeyError, config_translator.KeyTranslator, - translated_keys=['/a/b/c'], from_values={'m': '/m/*/n'}) - - def test_init_override_conditions(self): - # override_conditions should be dict of string to string - config_translator.KeyTranslator( - translated_keys=['1/2/3', '/4/5/6'], - override_conditions={'hello': 'hi'}) - config_translator.KeyTranslator( - translated_keys=['1/2/3', '/4/5/6'], - override_conditions={u'hello': u'hi'}) - self.assertRaises( - TypeError, config_translator.KeyTranslator, - translated_keys=['1/2/3', '/4/5/6'], - override_conditions=['hello', 'hi']) - self.assertRaises( - TypeError, config_translator.KeyTranslator, - translated_keys=['1/2/3', '/4/5/6'], - override_conditions='hello') - self.assertRaises( - TypeError, config_translator.KeyTranslator, - translated_keys=['1/2/3', '/4/5/6'], - override_conditions={5: 'hi'}) - self.assertRaises( - TypeError, config_translator.KeyTranslator, - translated_keys=['1/2/3', '/4/5/6'], - override_conditions={'hello': 5}) - - def test_init_override_conditions_noasterisks(self): - # the value in override_conditions should not contains '*'. - self.assertRaises( - KeyError, config_translator.KeyTranslator, - translated_keys=['1/2/3', '/4/5/6'], - override_conditions={'hello': 'hi*hi'}) - - def test_translate(self): - # test get translated keys. - # only keys in translated_keys is set in translted config. - config = { - 'key1': 'abc', - 'key2': 'bcd', - 'key3': 'mnq' - } - ref = config_reference.ConfigReference(config) - translated_config = {} - translated_ref = config_reference.ConfigReference(translated_config) - translator = config_translator.KeyTranslator( - translated_keys=['key2', 'key3']) - translator.translate(ref, 'key1', translated_ref) - self.assertEqual(translated_config, {'key2': 'abc', 'key3': 'abc'}) - - def test_translate_translated_keys_callback(self): - # translated_keys can be callback to dynamically - # get the translated_keys. - config = { - 'key1': 'abc', - 'key2': 'bcd', - 'key3': 'mnq' - } - ref = config_reference.ConfigReference(config) - translated_config = {} - translated_ref = config_reference.ConfigReference(translated_config) - translator = config_translator.KeyTranslator( - translated_keys=( - lambda sub_ref, ref_key: ['m%s' % ref_key, 'n%s' % ref_key])) - translator.translate(ref, 'key*', translated_ref) - self.assertEqual( - translated_config, { - 'mkey1': 'abc', 'mkey2': 'bcd', 'mkey3': 'mnq', - 'nkey1': 'abc', 'nkey2': 'bcd', 'nkey3': 'mnq', - } - ) - - def test_translate_translated_keys_each_key_callback(self): - # each translated key can be a callback to dynamically - # get the translated key. - config = { - 'key1': 'abc', - 'key2': 'bcd', - 'key3': 'mnq' - } - ref = config_reference.ConfigReference(config) - translated_config = {} - translated_ref = config_reference.ConfigReference(translated_config) - translator = config_translator.KeyTranslator( - translated_keys=['key1', (lambda sub_ref, ref_key: 'mkey2')]) - translator.translate(ref, 'key1', translated_ref) - self.assertEqual( - translated_config, {'key1': 'abc', 'mkey2': 'abc'}) - - def test_translate_from_keys(self): - # generate translated_keys from some keys from config. - config = { - 'key': 'abc', - 'key_suffix': 'A', - 'key_prefix': 'B' - } - - def _generate_key(sub_ref, ref_key, prefix='', suffix=''): - return '%s%s%s' % (prefix, ref_key, suffix) - - def _generate_keys(sub_ref, ref_key, prefix='', suffix=''): - return ['%s%s%s' % (prefix, ref_key, suffix)] - - ref = config_reference.ConfigReference(config) - translated_config = {} - translated_ref = config_reference.ConfigReference(translated_config) - translator = config_translator.KeyTranslator( - translated_keys=[_generate_key], - from_keys={'prefix': '/key_prefix', 'suffix': '/key_suffix'}) - translator.translate(ref, 'key', translated_ref) - self.assertEqual(translated_config, {'BkeyA': 'abc'}) - translated_config = {} - translated_ref = config_reference.ConfigReference(translated_config) - translator = config_translator.KeyTranslator( - translated_keys=_generate_keys, - from_keys={'prefix': '/key_prefix', 'suffix': '/key_suffix'}) - translator.translate(ref, 'key', translated_ref) - self.assertEqual(translated_config, {'BkeyA': 'abc'}) - - def test_translate_translated_value(self): - # translated_value can be set explictly. - config = { - 'key': 'abc', - 'key_suffix': 'A', - 'key_prefix': 'B' - } - ref = config_reference.ConfigReference(config) - translated_config = {} - translated_ref = config_reference.ConfigReference(translated_config) - translator = config_translator.KeyTranslator( - translated_keys=['mnq'], - translated_value='mnq') - translator.translate(ref, 'key', translated_ref) - self.assertEqual(translated_config, {'mnq': 'mnq'}) - - def test_translated_value_by_callback_none(self): - # translated value can be generated from callback. - # the value will be ignored when generated translated_value is None. - config = { - 'key': 'abc', - } - ref = config_reference.ConfigReference(config) - translated_config = {} - translated_ref = config_reference.ConfigReference(translated_config) - - def _generate_none( - sub_ref, ref_key, translated_sub_ref, translated_key - ): - return None - - translator = config_translator.KeyTranslator( - translated_keys=['mnq'], - translated_value=_generate_none) - translator.translate(ref, 'key', translated_ref) - self.assertEqual(translated_config, {'mnq': None}) - - def test_translate_translated_value_by_callback(self): - # translated_value can be set from some field of config. - config = { - 'key': 'abc', - 'key_suffix': 'A', - 'key_prefix': 'B' - } - ref = config_reference.ConfigReference(config) - translated_config = {} - translated_ref = config_reference.ConfigReference(translated_config) - - def _generate_value( - sub_ref, ref_key, translated_sub_ref, translated_key, - prefix='', suffix='' - ): - return '%s%s%s' % (prefix, sub_ref.config, suffix) - - translator = config_translator.KeyTranslator( - translated_keys=['mnq'], - translated_value=_generate_value, - from_values={'prefix': '/key_prefix', 'suffix': '/key_suffix'}) - translator.translate(ref, 'key', translated_ref) - self.assertEqual(translated_config, {'mnq': 'BabcA'}) - - def test_translate_nooverride(self): - # the translated key will be ignored when the key has already existed - # in translated config and override is False. - config = { - 'key': 'abc', - } - ref = config_reference.ConfigReference(config) - translated_config = {'mnq': 'mnq'} - translated_ref = config_reference.ConfigReference(translated_config) - translator = config_translator.KeyTranslator( - translated_keys=['mnq'], override=False) - translator.translate(ref, 'key', translated_ref) - self.assertEqual(translated_config, {'mnq': 'mnq'}) - - def test_translate_override(self): - # the translated config will be overrided if override param is True. - config = { - 'key': 'abc', - } - ref = config_reference.ConfigReference(config) - translated_config = {'mnq': 'mnq'} - translated_ref = config_reference.ConfigReference(translated_config) - translator = config_translator.KeyTranslator( - translated_keys=['mnq'], override=True) - translator.translate(ref, 'key', translated_ref) - self.assertEqual(translated_config, {'mnq': 'abc'}) - - def test_translate_override_by_callback(self): - # override param can be set from callback. - config = { - 'key': 'abc', - } - ref = config_reference.ConfigReference(config) - translated_config = {'klm': 'klm', 'mnq': 'mnq'} - translated_ref = config_reference.ConfigReference(translated_config) - - def _generate_override( - sub_ref, ref_key, - translated_sub_ref, translated_key - ): - return translated_key == 'klm' - - translator = config_translator.KeyTranslator( - translated_keys=['klm', 'mnq'], override=_generate_override) - translator.translate(ref, 'key', translated_ref) - self.assertEqual(translated_config, {'klm': 'abc', 'mnq': 'mnq'}) - - def test_translate_override_conditions(self): - # override param can be set from some config fields. - config = { - 'key': 'abc', - 'key_suffix': 'A', - 'key_prefix': 'B' - } - ref = config_reference.ConfigReference(config) - translated_config = {'BmA': 'BmA', 'mnq': 'mnq'} - translated_ref = config_reference.ConfigReference(translated_config) - - def _generate_override2( - sub_ref, ref_key, - translated_sub_ref, translated_key, prefix='', suffix='', - ): - return ( - translated_key.startswith(prefix) and - translated_key.endswith(suffix)) - - translator = config_translator.KeyTranslator( - translated_keys=['BmA', 'mnq'], - override=_generate_override2, - override_conditions={ - 'prefix': '/key_prefix', 'suffix': '/key_suffix' - } - ) - translator.translate(ref, 'key', translated_ref) - self.assertEqual(translated_config, {'BmA': 'abc', 'mnq': 'mnq'}) - - -class TestConfigTranslatorFunctions(unittest2.TestCase): - """test config translator class.""" - - def setUp(self): - super(TestConfigTranslatorFunctions, self).setUp() - logsetting.init() - - def tearDown(self): - super(TestConfigTranslatorFunctions, self).tearDown() - - def test_init(self): - # mapping should be dict of string to list of KeyTranslator. - config_translator.ConfigTranslator( - mapping={ - 'key1': [config_translator.KeyTranslator( - translated_keys=['abc'] - )] - } - ) - config_translator.ConfigTranslator( - mapping={ - u'key1': [config_translator.KeyTranslator( - translated_keys=['abc'] - )] - } - ) - self.assertRaises( - TypeError, config_translator.ConfigTranslator, - mapping=[config_translator.KeyTranslator(translated_keys=['abc'])] - ) - self.assertRaises( - TypeError, config_translator.ConfigTranslator, - mapping=config_translator.KeyTranslator(translated_keys=['abc']) - ) - self.assertRaises( - TypeError, config_translator.ConfigTranslator, - mapping={ - 'abc': config_translator.KeyTranslator(translated_keys=['abc']) - } - ) - self.assertRaises( - TypeError, config_translator.ConfigTranslator, - mapping={ - 1: [config_translator.KeyTranslator(translated_keys=['abc'])] - } - ) - self.assertRaises( - TypeError, config_translator.ConfigTranslator, - mapping={ - 'abc': [ - { - 'm': config_translator.KeyTranslator( - translated_keys=['abc']) - } - ] - } - ) - - def test_translate(self): - """test translate config.""" - config = { - 'key1': 'abc', - 'key2': 'bcd' - } - translator = config_translator.ConfigTranslator( - mapping={ - 'key1': [ - config_translator.KeyTranslator( - translated_keys=['mkey1'] - ) - ], - 'key2': [ - config_translator.KeyTranslator( - translated_keys=['mkey2'], - translated_value='mkey2' - ), - config_translator.KeyTranslator( - translated_keys=['mkey2'], - translated_value='nkey2' - ) - ] - } - ) - translated_config = translator.translate(config) - self.assertEqual(translated_config, - {'mkey1': 'abc', 'mkey2': 'mkey2'}) - - def test_translate_nooverride(self): - # the later KeyTranslator will be ignored if the former one - # has already set the value. - config = { - 'key1': 'abc', - 'key2': 'bcd' - } - translator = config_translator.ConfigTranslator( - mapping={ - 'key1': [ - config_translator.KeyTranslator( - translated_keys=['mkey1'] - ) - ], - 'key2': [ - config_translator.KeyTranslator( - translated_keys=['mkey2'], - translated_value='mkey2' - ), - config_translator.KeyTranslator( - translated_keys=['mkey2'], - translated_value='nkey2', - override=False - ) - ] - } - ) - translated_config = translator.translate(config) - self.assertEqual(translated_config, - {'mkey1': 'abc', 'mkey2': 'mkey2'}) - - def test_translate_override(self): - # the later KeyTranslator will override the former one - # if override is set. - config = { - 'key1': 'abc', - 'key2': 'bcd' - } - translator = config_translator.ConfigTranslator( - mapping={ - 'key1': [ - config_translator.KeyTranslator( - translated_keys=['mkey1'] - ) - ], - 'key2': [ - config_translator.KeyTranslator( - translated_keys=['mkey2'], - translated_value='mkey2' - ), - config_translator.KeyTranslator( - translated_keys=['mkey2'], - translated_value='nkey2', - override=True - ) - ] - } - ) - translated_config = translator.translate(config) - self.assertEqual(translated_config, - {'mkey1': 'abc', 'mkey2': 'nkey2'}) - - def test_translated_generated_value_none(self): - # When the generated value is None, - # the translated key will be ignored. - config = { - 'key1': 'abc', - 'key2': 'bcd' - } - - def _generate_none( - sub_ref, ref_key, translated_sub_ref, translated_key - ): - return None - - translator = config_translator.ConfigTranslator( - mapping={ - 'key1': [ - config_translator.KeyTranslator( - translated_keys=['mkey1'], - translated_value=_generate_none - ) - ] - } - ) - translated_config = translator.translate(config) - self.assertEqual(translated_config, - None) - - -if __name__ == '__main__': - flags.init() - logsetting.init() - unittest2.main() diff --git a/compass/tests/config_management/utils/test_config_translator_callbacks.py b/compass/tests/config_management/utils/test_config_translator_callbacks.py deleted file mode 100644 index a2e40b01..00000000 --- a/compass/tests/config_management/utils/test_config_translator_callbacks.py +++ /dev/null @@ -1,103 +0,0 @@ -#!/usr/bin/python -# -# Copyright 2014 Huawei Technologies Co. Ltd -# -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. - -"""test config_filter module. - - .. moduleauthor:: Xiaodong Wang -""" -import os -import unittest2 - - -os.environ['COMPASS_IGNORE_SETTING'] = 'true' - - -from compass.utils import setting_wrapper as setting -reload(setting) - - -from compass.config_management.utils import config_reference -from compass.config_management.utils import config_translator_callbacks -from compass.utils import flags -from compass.utils import logsetting - - -class TestGetKeyFromPattern(unittest2.TestCase): - """test get key from pattern.""" - - def setUp(self): - super(TestGetKeyFromPattern, self).setUp() - logsetting.init() - - def tearDown(self): - super(TestGetKeyFromPattern, self).tearDown() - - def test_get_key_from_pattern(self): - key = config_translator_callbacks.get_key_from_pattern( - None, '/networking/interfaces/management/ip', - to_pattern='macaddress-%(nic)s', - nic='eth0') - self.assertEqual(key, 'macaddress-eth0') - - def test_get_key_from_pattern_extra_keys_in_to_pattern(self): - self.assertRaises( - KeyError, config_translator_callbacks.get_key_from_pattern, - None, '/networking/interfaces/management/ip', - to_pattern='macaddress-%(nic)s') - - -class TestAddValue(unittest2.TestCase): - """test add value.""" - - def setUp(self): - super(TestAddValue, self).setUp() - logsetting.init() - - def tearDown(self): - super(TestAddValue, self).tearDown() - - def test_add_value_if_not_exist(self): - config = 'hello' - ref = config_reference.ConfigReference(config) - translated_config = None - translated_ref = config_reference.ConfigReference(translated_config) - new_value = config_translator_callbacks.add_value( - ref, None, translated_ref, None) - self.assertEqual(new_value, ['hello']) - - def test_add_value(self): - config = 'hello' - ref = config_reference.ConfigReference(config) - translated_config = ['hi'] - translated_ref = config_reference.ConfigReference(translated_config) - new_value = config_translator_callbacks.add_value( - ref, None, translated_ref, None) - self.assertEqual(new_value, ['hi', 'hello']) - - def test_ignore_add_value(self): - config = 'hello' - ref = config_reference.ConfigReference(config) - translated_config = ['hi'] - translated_ref = config_reference.ConfigReference(translated_config) - new_value = config_translator_callbacks.add_value( - ref, None, translated_ref, None, condition=False) - self.assertEqual(new_value, ['hi']) - - -if __name__ == '__main__': - flags.init() - logsetting.init() - unittest2.main() diff --git a/compass/tests/db/test_database.py b/compass/tests/db/test_database.py deleted file mode 100644 index 322fb38c..00000000 --- a/compass/tests/db/test_database.py +++ /dev/null @@ -1,64 +0,0 @@ -# Copyright 2014 Huawei Technologies Co. Ltd -# -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. - -"""test util module. - - .. moduleauthor:: Xiaodong Wang -""" -import os -import unittest2 - - -os.environ['COMPASS_IGNORE_SETTING'] = 'true' - - -from compass.utils import setting_wrapper as setting -reload(setting) - - -from compass.db import database -from compass.utils import flags -from compass.utils import logsetting - - -class TestDatabase(unittest2.TestCase): - """Test database actions.""" - - def setUp(self): - super(TestDatabase, self).setUp() - logsetting.init() - database.init('sqlite://') - - def tearDown(self): - super(TestDatabase, self).tearDown() - - def test_init(self): - database.init('sqlite:///tmp/app.db') - self.assertEqual(str(database.ENGINE.url), - 'sqlite:///tmp/app.db') - self.assertEqual(str(database.SCOPED_SESSION.bind.url), - 'sqlite:///tmp/app.db') - - def test_session(self): - with database.session() as session: - self.assertEqual(database.current_session(), session) - self.assertTrue(database.in_session()) - - self.assertFalse(database.in_session()) - - -if __name__ == '__main__': - flags.init() - logsetting.init() - unittest2.main() diff --git a/compass/tests/db/test_model.py b/compass/tests/db/test_model.py deleted file mode 100644 index 50e58740..00000000 --- a/compass/tests/db/test_model.py +++ /dev/null @@ -1,522 +0,0 @@ -# Copyright 2014 Huawei Technologies Co. Ltd -# -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. - -"""test util module. - - .. moduleauthor:: Xiaodong Wang -""" -import os -import sqlalchemy.exc -import unittest2 - - -os.environ['COMPASS_IGNORE_SETTING'] = 'true' - - -from compass.utils import setting_wrapper as setting -reload(setting) - - -from compass.db import database -from compass.db import model -from compass.utils import flags -from compass.utils import logsetting - - -class TestModel(unittest2.TestCase): - """Test database model.""" - - def setUp(self): - super(TestModel, self).setUp() - logsetting.init() - database.init('sqlite://') - database.create_db() - - def tearDown(self): - database.drop_db() - super(TestModel, self).tearDown() - - def test_switch_config(self): - with database.session() as session: - session.add(model.SwitchConfig( - ip='10.145.88.1', filter_port='123' - )) - - with database.session() as session: - switch_configs = session.query(model.SwitchConfig).all() - self.assertEqual(len(switch_configs), 1) - self.assertEqual(switch_configs[0].ip, '10.145.88.1') - self.assertEqual(switch_configs[0].filter_port, '123') - - def test_switch_config_ip_filterport_unique(self): - def _call(): - with database.session() as session: - session.add(model.SwitchConfig( - ip='10.145.88.1', filter_port='123')) - session.add(model.SwitchConfig( - ip='10.145.88.1', filter_port='123')) - - self.assertRaises(sqlalchemy.exc.IntegrityError, _call) - - def test_switch(self): - with database.session() as session: - switch = model.Switch(ip='10.145.88.1') - switch.credential = { - 'version': 'v2c', 'community': 'public' - } - switch.vendor = 'huawei' - session.add(switch) - - with database.session() as session: - switches = session.query(model.Switch).all() - self.assertEqual(len(switches), 1) - self.assertEqual(switches[0].ip, '10.145.88.1') - self.assertEqual( - switches[0].credential, { - 'version': 'v2c', 'community': 'public' - } - ) - self.assertEqual(switches[0].vendor, 'huawei') - - def test_switch_ip_unique(self): - def _call(): - with database.session() as session: - session.add(model.Switch(ip='10.145.88.1')) - session.add(model.Switch(ip='10.145.88.1')) - - self.assertRaises(sqlalchemy.exc.IntegrityError, _call) - - def test_machine_no_switch(self): - with database.session() as session: - session.add(model.Machine( - mac='00:00:00:01:02:03', - port='123', vlan=100)) - - with database.session() as session: - machines = session.query(model.Machine).all() - self.assertEqual(len(machines), 1) - self.assertEqual(machines[0].mac, '00:00:00:01:02:03') - self.assertEqual(machines[0].port, '123') - self.assertEqual(machines[0].vlan, 100) - self.assertIsNone(machines[0].switch) - - def test_machine_with_switch(self): - with database.session() as session: - switch = model.Switch(ip='192.168.1.1') - switch.machines.append( - model.Machine( - mac='00:00:00:01:02:03', - port='123', vlan=100) - ) - session.add(switch) - - with database.session() as session: - machines = session.query(model.Machine).all() - self.assertEqual(len(machines), 1) - self.assertEqual(machines[0].mac, '00:00:00:01:02:03') - self.assertEqual(machines[0].port, '123') - self.assertEqual(machines[0].vlan, 100) - self.assertIsNotNone(machines[0].switch) - - def test_machine_mac_switch_vlan_unique(self): - def _call(): - with database.session() as session: - machine1 = model.Machine( - mac='00:00:00:01:02:03', - port='123', - vlan=100 - ) - machine2 = model.Machine( - mac='00:00:00:01:02:03', - port='123', - vlan=100 - ) - switch = model.Switch(ip='192.168.1.1') - switch.machines = [machine1, machine2] - session.add(switch) - - self.assertRaises(sqlalchemy.exc.IntegrityError, _call) - - def test_machine_owned_by_one_switch(self): - with database.session() as session: - switch1 = model.Switch(ip='192.168.1.1') - switch2 = model.Switch(ip='192.168.1.2') - machine = model.Machine( - mac='00:00:00:01:02:03', - port='123', - vlan=100 - ) - switch1.machines = [machine] - switch2.machines = [machine] - session.add(switch1) - session.add(switch2) - - with database.session() as session: - machine = session.query(model.Machine).first() - self.assertEqual(machine.switch.ip, '192.168.1.2') - - def test_del_switch(self): - with database.session() as session: - switch = model.Switch(ip='192.68.1.1') - switch.machines = [model.Machine( - mac='00:00:00:01:02:03', - port='123', - vlan=100 - )] - session.add(switch) - - with database.session() as session: - session.query(model.Switch).delete() - - with database.session() as session: - machines = session.query(model.Machine).all() - self.assertEqual(len(machines), 1) - self.assertEqual(machines[0].mac, '00:00:00:01:02:03') - self.assertIsNone(machines[0].switch) - - def test_del_machine(self): - with database.session() as session: - switch = model.Switch(ip='192.68.1.1') - switch.machines = [model.Machine( - mac='00:00:00:01:02:03', - port='123', - vlan=100 - )] - session.add(switch) - - with database.session() as session: - session.query(model.Machine).delete() - - with database.session() as session: - switch = session.query(model.Switch).first() - self.assertEqual(switch.machines.count(), 0) - - def test_cluster_no_name(self): - with database.session() as session: - session.add(model.Cluster()) - - with database.session() as session: - clusters = session.query(model.Cluster).all() - self.assertEqual(len(clusters), 1) - self.assertIsNotNone(clusters[0].name) - self.assertFalse(clusters[0].name == '') - - def test_cluster_empty_name(self): - with database.session() as session: - session.add(model.Cluster(name='')) - - with database.session() as session: - clusters = session.query(model.Cluster).all() - self.assertEqual(len(clusters), 1) - self.assertIsNotNone(clusters[0].name) - self.assertFalse(clusters[0].name == '') - - def test_cluster_name_unique(self): - def _call(): - with database.session() as session: - session.add(model.Cluster(name='cluster1')) - session.add(model.Cluster(name='cluster1')) - - self.assertRaises(sqlalchemy.exc.IntegrityError, _call) - - def test_adapter(self): - with database.session() as session: - session.add(model.Adapter( - name='CentOS_openstack', - os='CentOS', target_system='Openstack')) - - with database.session() as session: - adapters = session.query(model.Adapter).all() - self.assertEqual(len(adapters), 1) - self.assertEqual(adapters[0].name, 'CentOS_openstack') - self.assertEqual(adapters[0].os, 'CentOS') - self.assertEqual(adapters[0].target_system, 'Openstack') - - def test_adapter_name_unique(self): - def _call(): - with database.session() as session: - session.add(model.Adapter( - name='CentOS_openstack', - os='CentOS6.4', target_system='Openstack1')) - session.add(model.Adapter( - name='CentOS_openstack', - os='CentOSi6.5', target_system='Openstack2')) - - self.assertRaises(sqlalchemy.exc.IntegrityError, _call) - - def test_adapter_os_target_system_unique(self): - def _call(): - with database.session() as session: - session.add(model.Adapter( - name='CentOS_openstack1', - os='CentOS', target_system='Openstack')) - session.add(model.Adapter( - name='CentOS_openstack2', - os='CentOS', target_system='Openstack')) - - self.assertRaises(sqlalchemy.exc.IntegrityError, _call) - - def test_cluster_adapter(self): - with database.session() as session: - adapter = model.Adapter( - name='CentOS_openstack', - os='CentOS', - target_system='openstack') - cluster = model.Cluster( - name='cluster1') - cluster.adapter = adapter - session.add(cluster) - - with database.session() as session: - adapter = session.query(model.Adapter).first() - self.assertEqual(adapter.clusters.count(), 1) - - def test_cluster_del(self): - with database.session() as session: - adapter = model.Adapter( - name='CentOS_openstack', - os='CentOS', - target_system='openstack') - cluster = model.Cluster( - name='cluster1') - cluster.adapter = adapter - session.add(cluster) - - with database.session() as session: - session.query(model.Cluster).delete() - - with database.session() as session: - adapters = session.query(model.Adapter).all() - self.assertEqual(len(adapters), 1) - - def test_adapter_del(self): - with database.session() as session: - adapter = model.Adapter( - name='CentOS_openstack', - os='CentOS', - target_system='openstack') - cluster = model.Cluster( - name='cluster1') - cluster.adapter = adapter - session.add(cluster) - - with database.session() as session: - session.query(model.Adapter).delete() - - with database.session() as session: - cluster = session.query(model.Cluster).first() - self.assertIsNone(cluster.adapter) - - def test_cluster_config(self): - with database.session() as session: - cluster = model.Cluster(name='cluster1') - cluster.security = { - 'user': 'abc', - 'password': '123' - } - cluster.networking = { - 'interface': 'eth0', - } - cluster.partition = '/tmp 20%' - session.add(cluster) - - with database.session() as session: - cluster = session.query(model.Cluster).first() - self.assertDictContainsSubset( - { - 'clustername': 'cluster1', - 'security': {'user': 'abc', 'password': '123'}, - 'networking': {'interface': 'eth0'}, - 'partition': '/tmp 20%' - }, cluster.config) - - def test_cluster_config_set(self): - with database.session() as session: - cluster = model.Cluster(name='cluster1') - cluster.config = { - 'security': { - 'user': 'abc', - 'password': '123' - }, - 'networking': { - 'interface': 'eth0', - }, - 'partition': '/tmp 20%' - } - session.add(cluster) - - with database.session() as session: - cluster = session.query(model.Cluster).first() - self.assertEqual( - cluster.security, - {'user': 'abc', 'password': '123'}) - self.assertEqual( - cluster.networking, - {'interface': 'eth0'}) - self.assertEqual( - cluster.partition, - '/tmp 20%') - - def test_clusterhost(self): - with database.session() as session: - host = model.ClusterHost( - hostname='host1') - host.cluster = model.Cluster( - name='cluster1') - host.machine = model.Machine( - mac='00:00:00:01:02:03', - port='123', - vlan=100) - host.machine.switch = model.Switch( - ip='192.168.1.1') - session.add(host) - - with database.session() as session: - host = session.query(model.ClusterHost).first() - self.assertEqual(host.cluster.name, 'cluster1') - self.assertEqual(host.machine.mac, '00:00:00:01:02:03') - self.assertEqual(host.machine.switch.ip, '192.168.1.1') - - def test_no_hostname(self): - with database.session() as session: - cluster = model.Cluster() - cluster.hosts = [model.ClusterHost()] - session.add(cluster) - - with database.session() as session: - hosts = session.query(model.ClusterHost).all() - self.assertEqual(len(hosts), 1) - self.assertIsNotNone(hosts[0].hostname) - self.assertFalse(hosts[0].hostname == '') - - def test_hostname_empty(self): - with database.session() as session: - cluster = model.Cluster() - cluster.hosts = [model.ClusterHost(hostname='')] - session.add(cluster) - - with database.session() as session: - hosts = session.query(model.ClusterHost).all() - self.assertEqual(len(hosts), 1) - self.assertIsNotNone(hosts[0].hostname) - self.assertFalse(hosts[0].hostname == '') - - def test_hostname_cluster_unique(self): - def _call(): - with database.session() as session: - cluster = model.Cluster(name='cluster1') - cluster.hosts = [ - model.ClusterHost(hostname='host1'), - model.ClusterHost(hostname='host1') - ] - session.add(cluster) - - self.assertRaises(sqlalchemy.exc.IntegrityError, _call) - - def test_clusterhost_delete_cluster(self): - with database.session() as session: - cluster = model.Cluster(name='cluster1') - cluster.hosts = [ - model.ClusterHost(hostname='host1') - ] - session.add(cluster) - - with database.session() as session: - session.query(model.Cluster).delete() - - with database.session() as session: - host = session.query(model.ClusterHost).first() - self.assertIsNone(host.cluster) - - def test_clusterhost_delete_machine(self): - with database.session() as session: - host = model.ClusterHost(hostname='host1') - host.machine = model.Machine( - mac='00:00:00:01:02:03', - port='123', - vlan=100) - session.add(host) - - with database.session() as session: - session.query(model.Machine).delete() - - with database.session() as session: - host = session.query(model.ClusterHost).first() - self.assertIsNone(host.machine) - - def test_clusterhost_delete_host(self): - with database.session() as session: - cluster = model.Cluster(name='cluster1') - host = model.ClusterHost(hostname='host1') - cluster.hosts = [host] - host.machine = model.Machine( - mac='00:00:00:01:02:03', - port='123', - vlan=100) - session.add(cluster) - - with database.session() as session: - session.query(model.ClusterHost).delete() - - with database.session() as session: - cluster = session.query(model.Cluster).first() - self.assertEqual(cluster.hosts.count(), 0) - machine = session.query(model.Machine).first() - self.assertIsNone(machine.host) - - def test_host_config(self): - with database.session() as session: - cluster = model.Cluster(name='cluster1') - host = model.ClusterHost( - hostname='host1') - host.machine = model.Machine( - mac='00:00:00:01:02:03', - port='123', - vlan=100) - host.machine.switch = model.Switch( - ip='192.168.1.1') - cluster.hosts = [host] - host.config = { - 'networking': { - 'interfaces': { - 'management': {'ip': '192.168.1.100'} - } - } - } - session.add(cluster) - - with database.session() as session: - host = session.query(model.ClusterHost).first() - self.assertDictContainsSubset( - { - 'hostname': 'host1', - 'clustername': 'cluster1', - 'networking': { - 'interfaces': { - 'management': { - 'mac': '00:00:00:01:02:03', - 'ip': '192.168.1.100' - } - } - }, - 'switch_port': '123', - 'vlan': 100, - 'switch_ip': '192.168.1.1' - }, host.config) - - -if __name__ == '__main__': - flags.init() - logsetting.init() - unittest2.main() diff --git a/compass/tests/hdsdiscovery/__init__.py b/compass/tests/hdsdiscovery/__init__.py deleted file mode 100644 index 4ee55a4c..00000000 --- a/compass/tests/hdsdiscovery/__init__.py +++ /dev/null @@ -1,13 +0,0 @@ -# Copyright 2014 Huawei Technologies Co. Ltd -# -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. diff --git a/compass/tests/hdsdiscovery/test_base.py b/compass/tests/hdsdiscovery/test_base.py deleted file mode 100755 index be096f9c..00000000 --- a/compass/tests/hdsdiscovery/test_base.py +++ /dev/null @@ -1,129 +0,0 @@ -#!/usr/bin/python -# -# Copyright 2014 Huawei Technologies Co. Ltd -# -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. - -"""test hdsdiscovery base module.""" -import os -import unittest2 - -from mock import patch - - -os.environ['COMPASS_IGNORE_SETTING'] = 'true' - - -from compass.utils import setting_wrapper as setting -reload(setting) - - -from compass.hdsdiscovery.base import BaseSnmpMacPlugin -from compass.hdsdiscovery.base import BaseSnmpVendor -from compass.hdsdiscovery.error import TimeoutError -from compass.utils import flags -from compass.utils import logsetting - - -class MockSnmpVendor(BaseSnmpVendor): - """snmp vendor mock class.""" - - def __init__(self): - BaseSnmpVendor.__init__(self, ["MockVendor", "FakeVendor"]) - - -class TestBaseSnmpMacPlugin(unittest2.TestCase): - """teset base snmp plugin class.""" - - def setUp(self): - super(TestBaseSnmpMacPlugin, self).setUp() - logsetting.init() - self.test_plugin = BaseSnmpMacPlugin('127.0.0.1', - {'version': '2c', - 'community': 'public'}) - - def tearDown(self): - del self.test_plugin - super(TestBaseSnmpMacPlugin, self).tearDown() - - @patch('compass.hdsdiscovery.utils.snmpget_by_cl') - def test_get_port(self, mock_snmpget): - """test snmp get port.""" - # Successfully get port number - mock_snmpget.return_value = 'IF-MIB::ifName.4 = STRING: ge-1/1/4' - result = self.test_plugin.get_port('4') - self.assertEqual('4', result) - - # Failed to get port number, switch is timeout - mock_snmpget.side_effect = TimeoutError("Timeout") - result = self.test_plugin.get_port('4') - self.assertIsNone(result) - - @patch('compass.hdsdiscovery.utils.snmpget_by_cl') - def test_get_vlan_id(self, mock_snmpget): - """test snmp get vlan.""" - # Port is None - self.assertIsNone(self.test_plugin.get_vlan_id(None)) - - # Port is not None - mock_snmpget.return_value = 'Q-BRIDGE-MIB::dot1qPvid.4 = Gauge32: 100' - result = self.test_plugin.get_vlan_id('4') - self.assertEqual('100', result) - - # Faild to query switch due to timeout - mock_snmpget.side_effect = TimeoutError("Timeout") - result = self.test_plugin.get_vlan_id('4') - self.assertIsNone(result) - - def test_get_mac_address(self): - """tet snmp get mac address.""" - # Correct input for mac numbers - mac_numbers = '0.224.129.230.57.173'.split('.') - mac = self.test_plugin.get_mac_address(mac_numbers) - self.assertEqual('00:e0:81:e6:39:ad', mac) - - # Incorrct input for mac numbers - mac_numbers = '0.224.129.230.57'.split('.') - mac = self.test_plugin.get_mac_address(mac_numbers) - self.assertIsNone(mac) - - -class BaseTest(unittest2.TestCase): - """base test class.""" - - def setUp(self): - super(BaseTest, self).setUp() - logsetting.init() - - def tearDown(self): - super(BaseTest, self).tearDown() - - def test_base_snmp_vendor(self): - """test base snmp vendor.""" - fake = MockSnmpVendor() - - is_vendor = fake.is_this_vendor("FakeVendor 1.1") - - self.assertTrue(is_vendor) - - # check case-insensitive match - self.assertFalse(fake.is_this_vendor("fakevendor1.1")) - - # breaks word-boudary match - self.assertFalse(fake.is_this_vendor("FakeVendor1.1")) - - -if __name__ == '__main__': - flags.init() - logsetting.init() - unittest2.main() diff --git a/compass/tests/hdsdiscovery/test_hdsdiscovery.py b/compass/tests/hdsdiscovery/test_hdsdiscovery.py deleted file mode 100755 index e2208b42..00000000 --- a/compass/tests/hdsdiscovery/test_hdsdiscovery.py +++ /dev/null @@ -1,245 +0,0 @@ -#!/usr/bin/python -# -# Copyright 2014 Huawei Technologies Co. Ltd -# -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. - -"""test hdsdiscovery module.""" -import os -import unittest2 - -from mock import Mock -from mock import patch - -os.environ['COMPASS_IGNORE_SETTING'] = 'true' - - -from compass.utils import setting_wrapper as setting -reload(setting) - - -from compass.hdsdiscovery.hdmanager import HDManager -from compass.hdsdiscovery.vendors.huawei.huawei import Huawei -from compass.hdsdiscovery.vendors.huawei.plugins.mac import Mac -from compass.hdsdiscovery.vendors.ovswitch.plugins.mac import Mac as OVSMac -from compass.utils import flags -from compass.utils import logsetting - - -SNMP_V2_CREDENTIALS = {'version': '2c', - 'community': 'public'} - - -class HuaweiTest(unittest2.TestCase): - """test huawei switch snmp get.""" - - def setUp(self): - super(HuaweiTest, self).setUp() - logsetting.init() - self.huawei = Huawei() - self.sys_info = 'Huawei Technologies' - - def tearDown(self): - del self.huawei - super(HuaweiTest, self).tearDown() - - def test_is_this_vendor(self): - """test device vendor is haiwei.""" - #Incorrect system information - incorrect_sys_info = "xxx" - self.assertFalse( - self.huawei.is_this_vendor(incorrect_sys_info)) - - #Correct vendor - self.assertTrue( - self.huawei.is_this_vendor(self.sys_info)) - - -class HuaweiMacTest(unittest2.TestCase): - """test get mac from huawei device.""" - - def setUp(self): - super(HuaweiMacTest, self).setUp() - logsetting.init() - host = '192.168.1.1' - credential = {'version': '2c', 'community': 'public'} - self.mac_plugin = Mac(host, credential) - - def tearDown(self): - del self.mac_plugin - super(HuaweiMacTest, self).tearDown() - - @patch("compass.hdsdiscovery.utils.snmpwalk_by_cl") - def test_process_data(self, mock_snmpwalk): - """get progress data function.""" - # GET operation haven't been implemeneted. - self.assertIsNone(self.mac_plugin.process_data('GET')) - - # SNMP Walk Timeout - #utils.snmpwalk_by_cl = Mock(return_value=None) - mock_snmpwalk.return_value = None - self.assertIsNone(self.mac_plugin.process_data()) - - # Successfully get MAC addresses from the switch - mock_snmp_walk_result = [ - {"iid": "40.110.212.77.198.190.88.1.48", "value": "10"}, - {"iid": "40.110.212.100.199.74.88.1.48", "value": "11"}, - {"iid": "0.12.41.53.220.2.88.1.48", "value": "12"} - ] - expected_mac_info = [ - {"mac": "28:6e:d4:4d:c6:be", "port": "1", "vlan": "88"}, - {"mac": "28:6e:d4:64:c7:4a", "port": "2", "vlan": "88"}, - {"mac": "00:0c:29:35:dc:02", "port": "3", "vlan": "88"} - ] - #utils.snmpwalk_by_cl = Mock(return_value=mock_snmp_walk_result) - mock_snmpwalk.return_value = mock_snmp_walk_result - self.mac_plugin.get_port = Mock() - self.mac_plugin.get_port.side_effect = ["1", "2", "3"] - result = self.mac_plugin.process_data() - self.assertEqual(expected_mac_info, result) - - -class OVSMacTest(unittest2.TestCase): - """ovs switch test.""" - - def setUp(self): - super(OVSMacTest, self).setUp() - logsetting.init() - self.host = '10.145.88.160' - self.credential = {'username': 'root', 'password': 'huawei'} - - @patch('compass.hdsdiscovery.utils.ssh_remote_execute') - def test_scan(self, ovs_mock): - """test scan ovs switch.""" - ovs_mock.return_value = [] - mac_instance = OVSMac(self.host, self.credential) - self.assertIsNone(mac_instance.scan()) - del mac_instance - - ovs_mock.return_value = ['\n', '\n', '\n'] - mac_instance = OVSMac(self.host, self.credential) - self.assertEqual([], mac_instance.scan()) - del mac_instance - - -class HDManagerTest(unittest2.TestCase): - """test HDManager.""" - - def setUp(self): - super(HDManagerTest, self).setUp() - logsetting.init() - self.manager = HDManager() - self.correct_host = '127.0.0.1' - self.correct_credential = {'version': '2c', 'community': 'public'} - - def tearDown(self): - del self.manager - super(HDManagerTest, self).tearDown() - - @patch('compass.hdsdiscovery.hdmanager.HDManager.get_sys_info') - def test_get_vendor(self, sys_info_mock): - """test get_vendor.""" - # Incorrect ip - vendor, state, err = self.manager.get_vendor('1234.1.1.1', - self.correct_credential) - self.assertIsNone(vendor) - self.assertEqual('error', state) - - # Incorrect credential - incorr_cred = {'version': '1v', 'community': 'private'} - vendor, state, err = self.manager.get_vendor(self.correct_host, - incorr_cred) - self.assertIsNone(vendor) - self.assertEqual('error', state) - - # SNMP get system description Timeout - excepted_err_msg = 'Timeout: No Response from 127.0.0.1.' - sys_info_mock.return_value = (None, excepted_err_msg) - result, state, err = self.manager.get_vendor(self.correct_host, - self.correct_credential) - self.assertIsNone(result) - self.assertEqual(state, 'unreachable') - self.assertEqual(err, excepted_err_msg) - - # No vendor plugin supported - excepted_err_msg = 'Not supported switch vendor!' - sys_info_mock.return_value = ('xxxxxx', excepted_err_msg) - result, state, err = self.manager.get_vendor(self.correct_host, - self.correct_credential) - self.assertIsNone(result) - self.assertEqual(state, 'notsupported') - self.assertEqual(err, excepted_err_msg) - - # Found the correct vendor - sys_info = ['Huawei Versatile Routing Platform Software', - 'ProCurve J9089A Switch 2610-48-PWR, revision R.11.25', - 'Pica8 XorPlus Platform Software'] - expected_vendor_names = ['huawei', 'hp', 'pica8'] - for info, expected_vendor in zip(sys_info, expected_vendor_names): - sys_info_mock.return_value = (info, '') - # the result is a tuple ($vendor, $state, $error_message) - result = self.manager.get_vendor(self.correct_host, - self.correct_credential) - self.assertEqual(result[0], expected_vendor) - - @patch('compass.hdsdiscovery.hdmanager.HDManager.get_sys_info') - def test_is_valid_vendor(self, sys_info_mock): - """test is_valid_vendor.""" - #non-exsiting vendor under vendors directory - self.assertFalse( - self.manager.is_valid_vendor(self.correct_host, - self.correct_credential, - 'xxxx') - ) - - #No system description retrieved - sys_info_mock.return_value = (None, 'TIMEOUT') - self.assertFalse( - self.manager.is_valid_vendor(self.correct_host, - self.correct_credential, - 'pica8') - ) - - #Incorrect vendor name - sys_info = 'Pica8 XorPlus Platform Software' - sys_info_mock.return_value = (sys_info, '') - self.assertFalse( - self.manager.is_valid_vendor(self.correct_host, - self.correct_credential, - 'huawei') - ) - - #Correct vendor name - self.assertTrue( - self.manager.is_valid_vendor(self.correct_host, - self.correct_credential, - 'pica8') - ) - - def test_learn(self): - """test learn.""" - #non-exsiting plugin - self.assertIsNone(self.manager.learn(self.correct_host, - self.correct_credential, - 'huawei', 'xxx')) - - #non-existing vendor - self.assertIsNone(self.manager.learn(self.correct_host, - self.correct_credential, - 'xxxx', 'mac')) - - -if __name__ == '__main__': - flags.init() - logsetting.init() - unittest2.main() diff --git a/compass/tests/hdsdiscovery/test_utils.py b/compass/tests/hdsdiscovery/test_utils.py deleted file mode 100755 index 46778ba1..00000000 --- a/compass/tests/hdsdiscovery/test_utils.py +++ /dev/null @@ -1,105 +0,0 @@ -#!/usr/bin/python -# -# Copyright 2014 Huawei Technologies Co. Ltd -# -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. - -"""test hdsdiscovery.utils module.""" -from mock import Mock -from mock import patch -import os -import unittest2 - - -os.environ['COMPASS_IGNORE_SETTING'] = 'true' - - -from compass.utils import setting_wrapper as setting -reload(setting) - - -from compass.hdsdiscovery.error import TimeoutError -from compass.hdsdiscovery import utils -from compass.utils import flags -from compass.utils import logsetting - - -SNMP_V2_CREDENTIALS = {'version': '2c', - 'community': 'public'} - - -class UtilsTest(unittest2.TestCase): - """test huawei switch snmp get.""" - - def setUp(self): - super(UtilsTest, self).setUp() - logsetting.init() - self.host = "127.0.0.1" - self.credentials = SNMP_V2_CREDENTIALS - - def tearDown(self): - super(UtilsTest, self).tearDown() - - def test_load_module(self): - """get load_module function.""" - # Successfully load HUAWEI module - huawei_vendor_path = "/".join( - (os.path.dirname( - os.path.dirname(os.path.dirname(os.path.realpath(__file__)))), - "hdsdiscovery/vendors/huawei") - ) - - # No module found - self.assertIsNone(utils.load_module("xxx", huawei_vendor_path)) - - @patch("compass.hdsdiscovery.utils.exec_command") - def test_snmpget_by_cl(self, mock_exec_command): - oid = "sysDescr.0" - # Incorrect credentials - incorr_credentials = {"version": "1v", "community": "public"} - self.assertIsNone(utils.snmpget_by_cl(self.host, - incorr_credentials, - oid)) - # Switch timeout, failed to execute SNMPGET - mock_exec_command.return_value = (1, None, "Timeout") - with self.assertRaises(TimeoutError): - utils.snmpget_by_cl(self.host, self.credentials, oid) - - # Successfully get system information - mock_exec_command.return_value = (0, "Huawei Technologies", None) - result = utils.snmpget_by_cl(self.host, self.credentials, oid) - self.assertEqual("Huawei Technologies", result) - - def test_snmpwalk_by_cl(self): - oid = "BRIDGE-MIB::dot1dTpFdbPort" - # the result of SNMPWALK is None - utils.exec_command = Mock(return_value=(0, None, None)) - result = utils.snmpwalk_by_cl(self.host, self.credentials, oid) - self.assertEqual([], result) - - # Successfully execute SNMPWALK - return_value = ("xxx.0.12.41.112.143.193 = INTEGER: 47\n" - "xxx.0.12.41.139.17.124 = INTEGER: 47\n") - expected_result = [ - {"iid": "0.12.41.112.143.193", "value": "47"}, - {"iid": "0.12.41.139.17.124", "value": "47"} - ] - utils.exec_command = Mock(return_value=(0, return_value, None)) - result = utils.snmpwalk_by_cl(self.host, self.credentials, oid) - self.assertEqual(expected_result, result) - - -if __name__ == '__main__': - flags.init() - logsetting.init() - unittest2.main() diff --git a/compass/tests/log_analyzor/data/config b/compass/tests/log_analyzor/data/config deleted file mode 100644 index aab65d49..00000000 --- a/compass/tests/log_analyzor/data/config +++ /dev/null @@ -1,97 +0,0 @@ -ADAPTERS = [ - {'name': 'CentOS_openstack', 'os': 'CentOS', 'target_system': 'openstack'}, -] -ROLES = [ - {'name': 'os-single-controller', 'target_system': 'openstack'}, - {'name': 'os-network', 'target_system': 'openstack'}, - {'name': 'os-compute', 'target_system': 'openstack'}, -] -SWITCHES = [ - {'ip': '1.2.3.4', 'vendor': 'huawei', 'credential': {'version': 'v2c', 'community': 'public'}}, -] -MACHINES_BY_SWITCH = { - '1.2.3.4': [ - {'mac': '00:00:01:02:03:04', 'port': 1, 'vlan': 1}, - ], -} -CLUSTERS = [ - { - 'name': 'cluster1', - 'adapter': 'CentOS_openstack', - 'mutable': False, - 'security': { - 'server_credentials': { - 'username': 'root', 'password': 'huawei' - }, - 'service_credentials': { - 'username': 'service', 'password': 'huawei' - }, - 'console_credentials': { - 'username': 'admin', 'password': 'huawei' - } - }, - 'networking': { - 'interfaces': { - 'management': { - 'nic': 'eth0', - 'promisc': 0, - 'netmask': '255.255.255.0', - 'ip_end': '192.168.20.200', - 'gateway': '', - 'ip_start': '192.168.20.100' - }, - 'storage': { - 'nic': 'eth0', - 'promisc': 0, - 'netmask': '255.255.254.0', - 'ip_end': '10.145.88.200', - 'gateway': '10.145.88.1', - 'ip_start': '10.145.88.100' - }, - 'public': { - 'nic': 'eth2', - 'promisc': 1, - 'netmask': '255.255.254.0', - 'ip_end': '10.145.88.255', - 'gateway': '10.145.88.1', - 'ip_start': '10.145.88.100' - }, - 'tenant': { - 'nic': 'eth0', - 'promisc': 0, - 'netmask': '255.255.254.0', - 'ip_end': '10.145.88.120', - 'gateway': '10.145.88.1', - 'ip_start': '10.145.88.100' - } - }, - 'global': { - 'nameservers': '192.168.20.254', - 'proxy': 'http://192.168.20.254:3128', - 'ntp_server': '192.168.20.254', - 'search_path': 'ods.com', - 'gateway': '10.145.88.1' - }, - }, - 'partition': '/home 20%%;/tmp 10%%;/var 30%%;', - }, -] -HOSTS_BY_CLUSTER = { - 'cluster1': [ - { - 'hostname': 'server1', - 'mac': '00:00:01:02:03:04', - 'mutable': False, - 'config': { - 'networking': { - 'interfaces': { - 'management': { - 'ip': '192.168.20.100', - }, - }, - }, - 'roles': ["os-single-controller", "os-network", "os-compute"], - }, - }, - ], -} diff --git a/compass/tests/log_analyzor/test_adapter_matcher.py b/compass/tests/log_analyzor/test_adapter_matcher.py deleted file mode 100755 index cb5fe08a..00000000 --- a/compass/tests/log_analyzor/test_adapter_matcher.py +++ /dev/null @@ -1,629 +0,0 @@ -# Copyright 2014 Huawei Technologies Co. Ltd -# -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. - -"""test adapter matcher module""" - -import os -import unittest2 - -os.environ['COMPASS_IGNORE_SETTING'] = 'true' - - -from compass.utils import setting_wrapper as setting -reload(setting) - - -from compass.db import database -from compass.db.model import Adapter -from compass.db.model import Cluster -from compass.db.model import ClusterHost -from compass.db.model import ClusterState -from compass.db.model import HostState -from compass.db.model import Machine -from compass.db.model import Role -from compass.db.model import Switch - -from compass.log_analyzor import adapter_matcher -from compass.log_analyzor.file_matcher import FileMatcher -from compass.log_analyzor.line_matcher import IncrementalProgress -from compass.log_analyzor.line_matcher import LineMatcher -from compass.log_analyzor import progress_calculator - -from compass.utils import flags -from compass.utils import logsetting - - -class TestAdapterItemMatcher(unittest2.TestCase): - def setUp(self): - super(TestAdapterItemMatcher, self).setUp() - logsetting.init() - - def tearDown(self): - super(TestAdapterItemMatcher, self).tearDown() - - def test_update_progress(self): - test_update_progress_range = { - 'min_progress': 0.3, - 'max_progress': 0.7, - } - expected = ['sys.log', 0.0, 0.1] - file_matchers = [ - FileMatcher( - filename='sys.log', - min_progress=0.0, - max_progress=0.1, - line_matchers={ - 'start': LineMatcher( - pattern=r'NOTICE (?P.*)', - progress=IncrementalProgress(.1, .9, .1), - message_template='%(message)s', - unmatch_nextline_next_matcher_name='start', - match_nextline_next_matcher_name='exit' - ), - } - ), - ] - matcher = adapter_matcher.AdapterItemMatcher( - file_matchers=file_matchers) - matcher.update_progress_range( - **test_update_progress_range) - file_matcher = matcher.file_matchers_[0] - result = [] - result.append(file_matcher.filename_) - result.append(file_matcher.min_progress_) - result.append(file_matcher.max_progress_) - self.assertEqual(expected, result) - - -class TestOSMatcher(unittest2.TestCase): - def setUp(self): - super(TestOSMatcher, self).setUp() - self.item_matcher = progress_calculator\ - .OS_INSTALLER_CONFIGURATIONS[ - 'CentOS' - ] - logsetting.init() - - def tearDown(self): - super(TestOSMatcher, self).tearDown() - - def test_min_larger_than_max(self): - test_min_larger_than_max = { - 'os_installer_name': 'os_installer', - 'os_pattern': r'.*.', - 'item_matcher': None, - 'min_progress': 1.0, - 'max_progress': 0.0, - } - self.assertRaises( - IndexError, - adapter_matcher.OSMatcher, - **test_min_larger_than_max - ) - - def test_progress_exceed_one(self): - test_progress_exceed_one = { - 'os_installer_name': 'os_installer', - 'os_pattern': r'.*.', - 'item_matcher': None, - 'min_progress': 1.1, - 'max_progress': 1.1, - } - self.assertRaises( - IndexError, - adapter_matcher.OSMatcher, - **test_progress_exceed_one - ) - - def test_match(self): - test_match = { - 'os_installer_name': 'cobbler', - 'os_pattern': r'CentOS.*', - 'item_matcher': self.item_matcher, - 'min_progress': 0.0, - 'max_progress': 0.6, - } - matcher = adapter_matcher.OSMatcher( - **test_match) - self.assertTrue(matcher.match( - 'cobbler', - 'CentOS6.4')) - - def test_installer_unmatch(self): - test_installer_unmatch = { - 'os_installer_name': 'razor', - 'os_pattern': r'CentOS.*', - 'item_matcher': self.item_matcher, - 'min_progress': 0.0, - 'max_progress': 0.6, - } - matcher = adapter_matcher.OSMatcher( - **test_installer_unmatch) - self.assertFalse(matcher.match( - 'cobbler', - 'CentOS6.4')) - - def test_os_unmatch(self): - test_os_unmatch = { - 'os_installer_name': 'cobbler', - 'os_pattern': r'Ubuntu.*', - 'item_matcher': self.item_matcher, - 'min_progress': 0.0, - 'max_progress': 0.6, - } - matcher = adapter_matcher.OSMatcher( - **test_os_unmatch) - self.assertFalse(matcher.match( - 'cobbler', - 'CentOS6.4')) - - def test_both_unmatch(self): - test_both_unmatch = { - 'os_installer_name': 'razor', - 'os_pattern': r'Ubuntu.*', - 'item_matcher': self.item_matcher, - 'min_progress': 0.0, - 'max_progress': 0.6, - } - matcher = adapter_matcher.OSMatcher( - **test_both_unmatch) - self.assertFalse(matcher.match( - 'cobbler', - 'CentOS6.4')) - - -class TestPackageMatcher(unittest2.TestCase): - def setUp(self): - super(TestPackageMatcher, self).setUp() - self.item_matcher = progress_calculator\ - .PACKAGE_INSTALLER_CONFIGURATIONS[ - 'openstack' - ] - logsetting.init() - - def tearDown(self): - super(TestPackageMatcher, self).tearDown() - - def test_match(self): - test_match = { - 'package_installer_name': 'chef', - 'target_system': 'openstack', - 'item_matcher': self.item_matcher, - 'min_progress': 0.6, - 'max_progress': 1.0, - } - matcher = adapter_matcher.PackageMatcher( - **test_match) - self.assertTrue(matcher.match( - 'chef', - 'openstack')) - - def test_installer_unmatch(self): - test_installer_unmatch = { - 'package_installer_name': 'puppet', - 'target_system': 'openstack', - 'item_matcher': self.item_matcher, - 'min_progress': 0.6, - 'max_progress': 1.0, - } - matcher = adapter_matcher.PackageMatcher( - **test_installer_unmatch) - self.assertFalse(matcher.match( - 'chef', - 'openstack')) - - def test_target_system_unmatch(self): - test_target_system_unmatch = { - 'package_installer_name': 'chef', - 'target_system': 'hadoop', - 'item_matcher': self.item_matcher, - 'min_progress': 0.6, - 'max_progress': 1.0, - } - matcher = adapter_matcher.PackageMatcher( - **test_target_system_unmatch) - self.assertFalse(matcher.match( - 'chef', - 'openstack')) - - def test_both_unmatch(self): - test_both_unmatch = { - 'package_installer_name': 'puppet', - 'target_system': 'hadoop', - 'item_matcher': self.item_matcher, - 'min_progress': 0.6, - 'max_progress': 1.0, - } - matcher = adapter_matcher.PackageMatcher( - **test_both_unmatch) - self.assertFalse(matcher.match( - 'chef', - 'openstack')) - - -class TestAdapterMatcher(unittest2.TestCase): - def setUp(self): - super(TestAdapterMatcher, self).setUp() - self.os_item_matcher = progress_calculator\ - .OS_INSTALLER_CONFIGURATIONS[ - 'CentOS' - ] - self.package_item_matcher = progress_calculator\ - .PACKAGE_INSTALLER_CONFIGURATIONS[ - 'openstack' - ] - logsetting.init() - database.create_db() - - def tearDown(self): - super(TestAdapterMatcher, self).tearDown() - database.drop_db() - - def test_match(self): - test_match = { - 'os_matcher': { - 'os_installer_name': 'cobbler', - 'os_pattern': 'CentOS.*', - 'item_matcher': self.os_item_matcher, - 'min_progress': 0.0, - 'max_progress': 0.6 - }, - 'package_matcher': { - 'package_installer_name': 'chef', - 'target_system': 'openstack', - 'item_matcher': self.package_item_matcher, - 'min_progress': 0.6, - 'max_progress': 1.0 - } - } - os_matcher = adapter_matcher.OSMatcher( - **test_match['os_matcher']) - package_matcher = adapter_matcher.PackageMatcher( - **test_match['package_matcher']) - matcher = adapter_matcher.AdapterMatcher( - os_matcher, package_matcher) - - self.assertTrue( - matcher.match( - 'cobbler', 'CentOS6.4', - 'chef', 'openstack')) - - def test_os_unmatch(self): - test_os_unmatch = { - 'os_matcher': { - 'os_installer_name': 'razor', - 'os_pattern': 'CentOS.*', - 'item_matcher': self.os_item_matcher, - 'min_progress': 0.0, - 'max_progress': 0.6 - }, - 'package_matcher': { - 'package_installer_name': 'chef', - 'target_system': 'openstack', - 'item_matcher': self.package_item_matcher, - 'min_progress': 0.6, - 'max_progress': 1.0 - } - } - os_matcher = adapter_matcher.OSMatcher( - **test_os_unmatch['os_matcher']) - package_matcher = adapter_matcher.PackageMatcher( - **test_os_unmatch['package_matcher']) - matcher = adapter_matcher.AdapterMatcher( - os_matcher, package_matcher) - - self.assertFalse( - matcher.match( - 'cobbler', 'CentOS6.4', - 'chef', 'openstack')) - - def test_package_unmatch(self): - test_package_unmatch = { - 'os_matcher': { - 'os_installer_name': 'cobbler', - 'os_pattern': 'CentOS.*', - 'item_matcher': self.os_item_matcher, - 'min_progress': 0.0, - 'max_progress': 0.6 - }, - 'package_matcher': { - 'package_installer_name': 'puppet', - 'target_system': 'openstack', - 'item_matcher': self.package_item_matcher, - 'min_progress': 0.6, - 'max_progress': 1.0 - } - } - os_matcher = adapter_matcher.OSMatcher( - **test_package_unmatch['os_matcher']) - package_matcher = adapter_matcher.PackageMatcher( - **test_package_unmatch['package_matcher']) - matcher = adapter_matcher.AdapterMatcher( - os_matcher, package_matcher) - - self.assertFalse( - matcher.match( - 'cobbler', 'CentOS6.4', - 'chef', 'openstack')) - - def test_both_unmatch(self): - test_both_unmatch = { - 'os_matcher': { - 'os_installer_name': 'cobbler', - 'os_pattern': 'Ubuntu*', - 'item_matcher': self.os_item_matcher, - 'min_progress': 0.0, - 'max_progress': 0.6 - }, - 'package_matcher': { - 'package_installer_name': 'chef', - 'target_system': 'hadoop', - 'item_matcher': self.package_item_matcher, - 'min_progress': 0.6, - 'max_progress': 1.0 - } - } - os_matcher = adapter_matcher.OSMatcher( - **test_both_unmatch['os_matcher']) - package_matcher = adapter_matcher.PackageMatcher( - **test_both_unmatch['package_matcher']) - matcher = adapter_matcher.AdapterMatcher( - os_matcher, package_matcher) - - self.assertFalse( - matcher.match( - 'cobbler', 'CentOS6.4', - 'chef', 'openstack')) - - def test_update_progress(self): - config = { - 'ADAPTERS': [ - { - 'name': 'CentOS_openstack', - 'os': 'CentOS', - 'target_system': 'openstack', - }, - ], - 'ROLES': [ - { - 'name': 'os-single-controller', - 'target_system': 'openstack', - }, - { - 'name': 'os-network', - 'target_system': 'openstack', - }, - { - 'name': 'os-compute', - 'target_system': 'openstack', - }, - ], - 'SWITCHES': [ - { - 'ip': '1.2.3.4', - 'vendor': 'huawei', - 'credential': { - 'version': 'v2c', - 'comunity': 'public', - } - }, - ], - 'MACHINES_BY_SWITCH': { - '1.2.3.4': [ - { - 'mac': '00:00:01:02:03:04', - 'port': 1, - 'vlan': 1 - }, - ], - }, - 'CLUSTERS': [ - { - 'name': 'cluster1', - 'adapter': 'CentOS_openstack', - 'mutable': False, - 'security': { - 'server_credentials': { - 'username': 'root', - 'password': 'huawei' - }, - 'service_credentials': { - 'username': 'service', - 'password': 'huawei' - }, - 'console_credentials': { - 'username': 'admin', - 'password': 'huawei' - } - }, - 'networking': { - 'interfaces': { - 'management': { - 'nic': 'eth0', - 'promisc': 0, - 'netmask': '255.255.255.0', - 'ip_end': '192.168.20.200', - 'gateway': '', - 'ip_start': '192.168.20.100' - }, - 'storage': { - 'nic': 'eth0', - 'promisc': 0, - 'netmask': '255.255.254.0', - 'ip_end': '10.145.88.200', - 'gateway': '10.145.88.1', - 'ip_start': '10.145.88.100' - }, - 'public': { - 'nic': 'eth2', - 'promisc': 1, - 'netmask': '255.255.254.0', - 'ip_end': '10.145.88.255', - 'gateway': '10.145.88.1', - 'ip_start': '10.145.88.100' - }, - 'tenant': { - 'nic': 'eth0', - 'promisc': 0, - 'netmask': '255.255.254.0', - 'ip_end': '10.145.88.120', - 'gateway': '10.145.88.1', - 'ip_start': '10.145.88.100' - } - }, - 'global': { - 'nameservers': '192.168.20.254', - 'proxy': 'http://192.168.20.254:3128', - 'ntp_server': '192.168.20.254', - 'search_path': 'ods.com', - 'gateway': '10.145.88.1' - }, - }, - 'partition': '/home 20%%;/tmp 10%%;/var 30%%;', - }, - ], - 'HOSTS_BY_CLUSTER': { - 'cluster1': [ - { - 'hostname': 'server1', - 'mac': '00:00:01:02:03:04', - 'mutable': False, - 'config': { - 'networking': { - 'interfaces': { - 'management': { - 'ip': '192.168.20.100', - }, - }, - }, - 'roles': [ - "os-single-controller", - "os-network", - "os-compute" - ], - }, - }, - ], - }, - } - self._prepare_database(config) - cluster_hosts = {} - with database.session() as session: - clusters = session.query(Cluster).all() - for cluster in clusters: - cluster_hosts[cluster.id] = [ - host.id for host in cluster.hosts] - - test_update_progress = { - 'os_matcher': { - 'os_installer_name': 'cobbler', - 'os_pattern': 'CentOS.*', - 'item_matcher': self.os_item_matcher, - 'min_progress': 0.0, - 'max_progress': 0.6 - }, - 'package_matcher': { - 'package_installer_name': 'chef', - 'target_system': 'openstack', - 'item_matcher': self.package_item_matcher, - 'min_progress': 0.6, - 'max_progress': 1.0 - } - } - os_matcher = adapter_matcher.OSMatcher( - **test_update_progress['os_matcher']) - package_matcher = adapter_matcher.PackageMatcher( - **test_update_progress['package_matcher']) - matcher = adapter_matcher.AdapterMatcher( - os_matcher, package_matcher) - for cluster_id in cluster_hosts.keys(): - matcher.update_progress( - cluster_id, - cluster_hosts[cluster_id]) - - expected_cluster_state = { - 'state': 'INSTALLING', - 'progress': 0.0 - } - cluster = {} - host = {} - with database.session(): - cluster_state = session.query(ClusterState).all() - cluster['state'] = cluster_state[0].state - cluster['progress'] = cluster_state[0].progress - self.assertEqual(expected_cluster_state, - cluster) - - def _prepare_database(self, config): - with database.session() as session: - adapters = {} - for adapter_config in config['ADAPTERS']: - adapter = Adapter(**adapter_config) - session.add(adapter) - adapters[adapter_config['name']] = adapter - - roles = {} - for role_config in config['ROLES']: - role = Role(**role_config) - session.add(role) - roles[role_config['name']] = role - - switches = {} - for switch_config in config['SWITCHES']: - switch = Switch(**switch_config) - session.add(switch) - switches[switch_config['ip']] = switch - - machines = {} - for switch_ip, machine_configs in ( - config['MACHINES_BY_SWITCH'].items() - ): - for machine_config in machine_configs: - machine = Machine(**machine_config) - machines[machine_config['mac']] = machine - machine.switch = switches[switch_ip] - session.add(machine) - - clusters = {} - for cluster_config in config['CLUSTERS']: - adapter_name = cluster_config['adapter'] - del cluster_config['adapter'] - cluster = Cluster(**cluster_config) - clusters[cluster_config['name']] = cluster - cluster.adapter = adapters[adapter_name] - cluster.state = ClusterState( - state="INSTALLING", progress=0.0, message='') - session.add(cluster) - - hosts = {} - for cluster_name, host_configs in ( - config['HOSTS_BY_CLUSTER'].items() - ): - for host_config in host_configs: - mac = host_config['mac'] - del host_config['mac'] - host = ClusterHost(**host_config) - hosts['%s.%s' % ( - host_config['hostname'], cluster_name)] = host - host.machine = machines[mac] - host.cluster = clusters[cluster_name] - host.state = HostState( - state="INSTALLING", progress=0.0, message='') - session.add(host) - - -if __name__ == '__main__': - flags.init() - logsetting.init() - unittest2.main() diff --git a/compass/tests/log_analyzor/test_file_matcher.py b/compass/tests/log_analyzor/test_file_matcher.py deleted file mode 100755 index cce33299..00000000 --- a/compass/tests/log_analyzor/test_file_matcher.py +++ /dev/null @@ -1,436 +0,0 @@ -# Copyright 2014 Huawei Technologies Co. Ltd -# -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. - -"""test file matcher module""" - -import datetime -import mock -import os -import unittest2 - -os.environ['COMPASS_IGNORE_SETTING'] = 'true' - - -from compass.utils import setting_wrapper as setting -reload(setting) - - -from compass.db import database -from compass.db.model import Adapter -from compass.db.model import Cluster -from compass.db.model import ClusterHost -from compass.db.model import ClusterState -from compass.db.model import HostState -from compass.db.model import LogProgressingHistory -from compass.db.model import Machine -from compass.db.model import Role -from compass.db.model import Switch - -from compass.log_analyzor import file_matcher - -from compass.log_analyzor.line_matcher import IncrementalProgress -from compass.log_analyzor.line_matcher import LineMatcher -from compass.log_analyzor.line_matcher import Progress - -from compass.utils import flags -from compass.utils import logsetting - - -def prepare_database(config): - with database.session() as session: - adapters = {} - for adapter_config in config['ADAPTERS']: - adapter = Adapter(**adapter_config) - session.add(adapter) - adapters[adapter_config['name']] = adapter - - roles = {} - for role_config in config['ROLES']: - role = Role(**role_config) - session.add(role) - roles[role_config['name']] = role - - switches = {} - for switch_config in config['SWITCHES']: - switch = Switch(**switch_config) - session.add(switch) - switches[switch_config['ip']] = switch - - machines = {} - for switch_ip, machine_configs in ( - config['MACHINES_BY_SWITCH'].items() - ): - for machine_config in machine_configs: - machine = Machine(**machine_config) - machines[machine_config['mac']] = machine - machine.switch = switches[switch_ip] - session.add(machine) - - clusters = {} - for cluster_config in config['CLUSTERS']: - adapter_name = cluster_config['adapter'] - del cluster_config['adapter'] - cluster = Cluster(**cluster_config) - clusters[cluster_config['name']] = cluster - cluster.adapter = adapters[adapter_name] - cluster.state = ClusterState( - state="INSTALLING", progress=0.0, message='') - session.add(cluster) - - hosts = {} - for cluster_name, host_configs in ( - config['HOSTS_BY_CLUSTER'].items() - ): - for host_config in host_configs: - mac = host_config['mac'] - del host_config['mac'] - host = ClusterHost(**host_config) - hosts['%s.%s' % ( - host_config['hostname'], cluster_name)] = host - host.machine = machines[mac] - host.cluster = clusters[cluster_name] - host.state = HostState( - state="INSTALLING", progress=0.0, message='') - session.add(host) - - -class TestFilterFileExist(unittest2.TestCase): - def setUp(self): - super(TestFilterFileExist, self).setUp() - logsetting.init() - - def tearDown(self): - super(TestFilterFileExist, self).tearDown() - - def test_filter(self): - pathname = 'NeverExists' - filter = file_matcher.FilterFileExist() - res = filter.filter(pathname) - self.assertFalse(res) - - -class TestCompositeFileFilter(unittest2.TestCase): - def setUp(self): - super(TestCompositeFileFilter, self).setUp() - self.file_path = os.path.dirname(os.path.abspath(__file__)) - logsetting.init() - - def tearDown(self): - super(TestCompositeFileFilter, self).tearDown() - - def test_filter(self): - filter_list = [ - file_matcher.FilterFileExist(), - file_matcher.FilterFileExist(), - ] - exists = self.file_path + '/test_file_matcher.py' - non_exists = '/nonexists' - composite_filter = file_matcher.CompositeFileFilter( - filter_list) - self.assertTrue( - composite_filter.filter(exists)) - self.assertFalse( - composite_filter.filter(non_exists)) - - def test_append_filter(self): - filter_list = [ - file_matcher.FilterFileExist(), - file_matcher.FilterFileExist(), - ] - composite_filter = file_matcher.CompositeFileFilter( - filter_list) - new_filter = file_matcher.FilterFileExist() - composite_filter.append_filter(new_filter) - self.assertEqual(3, len(composite_filter.filters_)) - - -class TestFileReader(unittest2.TestCase): - def setUp(self): - super(TestFileReader, self).setUp() - logsetting.init() - database.create_db() - self.config_file = '%s/data/config' % ( - os.path.dirname(os.path.abspath(__file__))) - - def tearDown(self): - super(TestFileReader, self).tearDown() - database.drop_db() - - def test_get_empty_history(self): - config_locals = {} - config_globals = {} - execfile(self.config_file, config_globals, config_locals) - prepare_database(config_locals) - expected = { - 'matcher_name': 'start', - 'progress': 0.0, - 'message': '', - 'severity': None - } - res = {} - reader = file_matcher.FileReader('dummy') - history = reader.get_history() - res.update( - { - 'matcher_name': history[0], - 'progress': history[1].progress, - 'message': history[1].message, - 'severity': history[1].severity - }) - self.assertEqual(expected, res) - - def test_get_existing_history(self): - config_locals = {} - config_globals = {} - execfile(self.config_file, config_globals, config_locals) - prepare_database(config_locals) - with database.session() as session: - history = LogProgressingHistory( - line_matcher_name='start', - progress=0.5, - message='dummy', - severity='INFO', - position=0, - partial_line='', - pathname='dummy') - session.add(history) - - expected = { - 'matcher_name': 'start', - 'progress': 0.5, - 'message': 'dummy', - 'severity': 'INFO' - } - res = {} - reader = file_matcher.FileReader('dummy') - history = reader.get_history() - res.update({ - 'matcher_name': history[0], - 'progress': history[1].progress, - 'message': history[1].message, - 'severity': history[1].severity - }) - self.assertEqual(expected, res) - - def test_update_history_from_none(self): - config_locals = {} - config_globals = {} - execfile(self.config_file, config_globals, config_locals) - prepare_database(config_locals) - - expected = { - 'progress': 0.5, - 'line_matcher_name': 'start' - } - reader = file_matcher.FileReader('dummy') - reader.update_history( - expected['line_matcher_name'], - Progress( - progress=expected['progress'], - message='', - severity='INFO')) - res = {} - with database.session() as session: - history = session.query( - LogProgressingHistory).first() - res.update({ - 'line_matcher_name': history.line_matcher_name, - 'progress': history.progress - }) - self.assertEqual(expected, res) - - def test_update_history_from_existing(self): - config_locals = {} - config_globals = {} - execfile(self.config_file, config_globals, config_locals) - prepare_database(config_locals) - - with database.session() as session: - history = LogProgressingHistory( - line_matcher_name='start', - progress=0.5, - message='dummy', - severity='INFO', - position=0, - partial_line='', - pathname='dummy') - session.add(history) - - expected = { - 'progress': 0.8, - 'line_matcher_name': 'start' - } - reader = file_matcher.FileReader('dummy') - reader.position_ = 1 - reader.update_history( - expected['line_matcher_name'], - Progress( - progress=expected['progress'], - message='', - severity='INFO')) - res = {} - with database.session() as session: - history = session.query( - LogProgressingHistory).first() - res.update({ - 'line_matcher_name': history.line_matcher_name, - 'progress': history.progress - }) - self.assertEqual(expected, res) - - def test_update_history_failure(self): - config_locals = {} - config_globals = {} - execfile(self.config_file, config_globals, config_locals) - prepare_database(config_locals) - - with database.session() as session: - history = LogProgressingHistory( - line_matcher_name='start', - progress=0.5, - message='dummy', - severity='INFO', - position=0, - partial_line='', - pathname='dummy') - session.add(history) - - expected = { - 'progress': 0.8, - 'line_matcher_name': 'start' - } - reader = file_matcher.FileReader('dummy') - reader.update_history( - expected['line_matcher_name'], - Progress( - progress=expected['progress'], - message='', - severity='INFO')) - res = {} - with database.session() as session: - history = session.query( - LogProgressingHistory).first() - res.update({ - 'line_matcher_name': history.line_matcher_name, - 'progress': history.progress - }) - self.assertNotEqual(expected, res) - - -class TestFileReaderFactory(unittest2.TestCase): - def setUp(self): - super(TestFileReaderFactory, self).setUp() - logsetting.init() - - def tearDown(self): - super(TestFileReaderFactory, self).tearDown() - - def test_get_file_reader_None(self): - reader_factory = file_matcher.FileReaderFactory( - 'dummy', - file_matcher.get_file_filter()) - - reader = reader_factory.get_file_reader('dummy', 'dummy') - self.assertIsNone(reader) - - -class TestFileMatcher(unittest2.TestCase): - def setUp(self): - super(TestFileMatcher, self).setUp() - logsetting.init() - - def tearDown(self): - super(TestFileMatcher, self).tearDown() - - def test_update_absolute_progress_range(self): - matcher = file_matcher.FileMatcher( - filename='sys.log', - min_progress=0.0, - max_progress=0.1, - line_matchers={ - 'start': LineMatcher( - pattern=r'NOTICE (?P.*)', - progress=IncrementalProgress(.1, .9, .1), - message_template='%(message)s', - unmatch_nextline_next_matcher_name='start', - match_nextline_next_matcher_name='exit' - ), - } - ) - matcher.update_absolute_progress_range(0.5, 1.0) - expected = [0.5, 0.55] - res = [] - res.append(matcher.absolute_min_progress_) - res.append(matcher.absolute_max_progress_) - self.assertEqual(expected, res) - - def test_update_total_progress_none(self): - file_progress = Progress( - message=None, - progress=0.5, - severity='info') - - total_progress = file_progress - matcher = file_matcher.FileMatcher( - filename='sys.log', - min_progress=0.0, - max_progress=0.1, - line_matchers={ - 'start': LineMatcher( - pattern=r'NOTICE (?P.*)', - progress=IncrementalProgress(.1, .9, .1), - message_template='%(message)s', - unmatch_nextline_next_matcher_name='start', - match_nextline_next_matcher_name='exit' - ), - } - ) - res = matcher.update_total_progress(file_progress, total_progress) - self.assertIsNone(res) - - def test_update_total_progress(self): - file_progress = Progress( - message='dummy', - progress=0.5, - severity='info') - - total_progress = Progress( - message='dummy', - progress=0.4, - severity='info') - - matcher = file_matcher.FileMatcher( - filename='sys.log', - min_progress=0.0, - max_progress=0.1, - line_matchers={ - 'start': LineMatcher( - pattern=r'NOTICE (?P.*)', - progress=IncrementalProgress(.1, .9, .1), - message_template='%(message)s', - unmatch_nextline_next_matcher_name='start', - match_nextline_next_matcher_name='exit' - ), - } - ) - matcher.update_total_progress(file_progress, total_progress) - self.assertEqual( - 0.5, - total_progress.progress) - - -if __name__ == '__main__': - flags.init() - logsetting.init() - unittest2.main() diff --git a/compass/tests/log_analyzor/test_line_matcher.py b/compass/tests/log_analyzor/test_line_matcher.py deleted file mode 100755 index d68aed4e..00000000 --- a/compass/tests/log_analyzor/test_line_matcher.py +++ /dev/null @@ -1,229 +0,0 @@ -#!/usr/bin/python -# -# Copyright 2014 Huawei Technologies Co. Ltd -# -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. - -import os -import unittest2 - -os.environ['COMPASS_IGNORE_SETTING'] = 'true' - - -from compass.utils import setting_wrapper as setting -reload(setting) - - -from compass.log_analyzor import line_matcher -from compass.utils import flags -from compass.utils import logsetting - - -class TestProgress(unittest2.TestCase): - """test class for Progress class.""" - - def setUp(self): - super(TestProgress, self).setUp() - logsetting.init() - - def tearDown(self): - super(TestProgress, self).tearDown() - - def test_repr(self): - config = { - 'progress': 0.5, - 'message': 'dummy', - 'severity': '' - } - expected = 'Progress[progress:0.5, message:dummy, severity:]' - test_line_matcher = line_matcher.Progress(**config) - self.assertEqual(expected, test_line_matcher.__repr__()) - - -class TestProgressCalculator(unittest2.TestCase): - def setUp(self): - super(TestProgressCalculator, self).setUp() - logsetting.init() - self._mock_progress() - - def tearDown(self): - super(TestProgressCalculator, self).tearDown() - - def _mock_progress(self): - self.progress = line_matcher.Progress( - progress=0.5, - message='', - severity='') - - def test_update_progress_progress(self): - test_1 = { - 'progress_data': 0.7, - 'message': '', - 'severity': '', - 'progress': self.progress - } - expected_1 = 0.7 - line_matcher.ProgressCalculator.update_progress( - **test_1) - self.assertEqual(expected_1, self.progress.progress) - - def test_update_progress_other(self): - test = { - 'progress_data': 0.5, - 'message': 'dummy', - 'severity': 'dummy', - 'progress': self.progress - } - expected_message = test['message'] - expected_severity = test['severity'] - line_matcher.ProgressCalculator.update_progress( - **test) - self.assertEqual(expected_message, self.progress.message) - self.assertEqual(expected_severity, self.progress.severity) - - -class TestIncrementalProgress(unittest2.TestCase): - def setUp(self): - super(TestIncrementalProgress, self).setUp() - logsetting.init() - - def tearDown(self): - super(TestIncrementalProgress, self).tearDown() - - def test_init(self): - test_exceed_one = { - 'min_progress': 1.1, - 'max_progress': 1.1, - 'incremental_ratio': 0.5, - } - self.assertRaises( - IndexError, - line_matcher.IncrementalProgress, - **test_exceed_one) - - def test_min_larger_than_max(self): - test_min_larger_than_max = { - 'min_progress': 0.7, - 'max_progress': 0.3, - 'incremental_ratio': 0.5, - } - self.assertRaises( - IndexError, - line_matcher.IncrementalProgress, - **test_min_larger_than_max) - - def test_invalid_ratio(self): - test_invalid_ratio = { - 'min_progress': 0.3, - 'max_progress': 0.7, - 'incremental_ratio': 1.1, - } - self.assertRaises( - IndexError, - line_matcher.IncrementalProgress, - **test_invalid_ratio) - - -class TestRelativeProgress(unittest2.TestCase): - def setUp(self): - super(TestRelativeProgress, self).setUp() - logsetting.init() - - def tearDown(self): - super(TestRelativeProgress, self).tearDown() - - def test_init(self): - self.assertRaises( - IndexError, - line_matcher.RelativeProgress, - progress=1.1) - - -class TestLineMatcher(unittest2.TestCase): - def setUp(self): - super(TestLineMatcher, self).setUp() - logsetting.init() - - def tearDown(self): - super(TestLineMatcher, self).tearDown() - - def test_progress_unsupported(self): - test_progress_unsupported = { - 'pattern': r' ', - 'progress': 'dummy', - } - self.assertRaises( - TypeError, - line_matcher.LineMatcher, - **test_progress_unsupported) - - def test_regex_not_match(self): - line = 'abc' - regex_ = r'^s' - progress = line_matcher.Progress( - progress=1, message='a', severity=' ') - test_regex_not_match = { - 'pattern': regex_, - 'unmatch_sameline_next_matcher_name': 'usn', - 'unmatch_nextline_next_matcher_name': 'unn', - 'match_sameline_next_matcher_name': 'msn', - 'match_nextline_next_matcher_name': 'mnn', - } - matcher = line_matcher.LineMatcher( - **test_regex_not_match) - expected = ('usn', 'unn') - self.assertEqual( - expected, - matcher.update_progress( - line, progress)) - - def test_regex_match(self): - line = 'abc' - regex_ = r'^a' - progress = line_matcher.Progress( - progress=1, message='a', severity=' ') - test_regex_match = { - 'pattern': regex_, - 'unmatch_sameline_next_matcher_name': 'usn', - 'unmatch_nextline_next_matcher_name': 'unn', - 'match_sameline_next_matcher_name': 'msn', - 'match_nextline_next_matcher_name': 'mnn', - } - matcher = line_matcher.LineMatcher( - **test_regex_match) - expected = ('msn', 'mnn') - self.assertEqual( - expected, - matcher.update_progress( - line, progress)) - - def test_wrong_message(self): - line = 'abc' - progress = line_matcher.Progress( - progress=1, message='a', severity=' ') - test_wrong_message = { - 'pattern': r'.*.', - 'message_template': 'Installing %(package)s' - } - matcher = line_matcher.LineMatcher( - **test_wrong_message) - self.assertRaises( - KeyError, - matcher.update_progress, - line=line, - progress=progress) - -if __name__ == '__main__': - flags.init() - logsetting.init() - unittest2.main() diff --git a/compass/tests/utils/__init__.py b/compass/tests/utils/__init__.py deleted file mode 100644 index 4ee55a4c..00000000 --- a/compass/tests/utils/__init__.py +++ /dev/null @@ -1,13 +0,0 @@ -# Copyright 2014 Huawei Technologies Co. Ltd -# -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. diff --git a/compass/tests/utils/test_util.py b/compass/tests/utils/test_util.py deleted file mode 100755 index a4056688..00000000 --- a/compass/tests/utils/test_util.py +++ /dev/null @@ -1,188 +0,0 @@ -# Copyright 2014 Huawei Technologies Co. Ltd -# -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. - -"""test util module. - - .. moduleauthor:: Xiaodong Wang -""" -import os -import unittest2 - - -os.environ['COMPASS_IGNORE_SETTING'] = 'true' - - -from compass.utils import setting_wrapper as setting -reload(setting) - - -from compass.utils import flags -from compass.utils import logsetting -from compass.utils import util - - -class TestDictMerge(unittest2.TestCase): - """Test dict merge.""" - - def setUp(self): - super(TestDictMerge, self).setUp() - logsetting.init() - - def tearDown(self): - super(TestDictMerge, self).tearDown() - - def test_simple_merge(self): - """simple test of merge - merge_dict performs in-place merge of rhs to lhs - """ - lhs = {1: 1} - rhs = {2: 2} - util.merge_dict(lhs, rhs) - self.assertEqual(lhs, {1: 1, 2: 2}) - - def test_recursive_merge(self): - """test merge recursively.""" - lhs = {1: {2: 3}} - rhs = {1: {3: 4}} - util.merge_dict(lhs, rhs) - self.assertEqual(lhs, {1: {2: 3, 3: 4}}) - - def test_merge_override(self): - """test merge override.""" - lhs = {1: 1} - rhs = {1: 2} - util.merge_dict(lhs, rhs) - self.assertEqual(lhs, {1: 2}) - - lhs = {1: {2: 3, 3: 5}} - rhs = {1: {2: 4, 4: 6}} - util.merge_dict(lhs, rhs) - self.assertEqual(lhs, {1: {2: 4, 3: 5, 4: 6}}) - - def test_merge_not_override(self): - """test merge not override.""" - lhs = {1: 1} - rhs = {1: 2} - util.merge_dict(lhs, rhs, False) - self.assertEqual(lhs, {1: 1}) - - lhs = {1: {2: 3, 3: 5}} - rhs = {1: {2: 4, 4: 6}} - util.merge_dict(lhs, rhs, False) - self.assertEqual(lhs, {1: {2: 3, 3: 5, 4: 6}}) - - def test_change_after_merge(self): - """test change after merge.""" - lhs = {1: {2: 3}} - rhs = {1: {3: [4, 5, 6]}} - util.merge_dict(lhs, rhs) - self.assertEqual(lhs, {1: {2: 3, 3: [4, 5, 6]}}) - self.assertEqual(rhs, {1: {3: [4, 5, 6]}}) - rhs[1][3].append(7) - self.assertEqual(lhs, {1: {2: 3, 3: [4, 5, 6]}}) - self.assertEqual(rhs, {1: {3: [4, 5, 6, 7]}}) - - def test_lhs_rhs_notdict(self): - """test merge not dict.""" - lhs = [1, 2, 3] - rhs = {1: 2} - self.assertRaises(TypeError, util.merge_dict, (lhs, rhs)) - lhs = {1: 2} - rhs = [1, 2, 3] - self.assertRaises(TypeError, util.merge_dict, (lhs, rhs)) - - -class TestOrderKeys(unittest2.TestCase): - """test order keys.""" - - def test_simple_order_keys(self): - """test simple order keys.""" - keys = [1, 2, 3, 4, 5] - orders = [3, 4, 5] - ordered_keys = util.order_keys(keys, orders) - self.assertEqual(ordered_keys, [3, 4, 5, 1, 2]) - - def test_order_keys_with_dot(self): - """test order keys with dot in it.""" - keys = [1, 2, 3, 4, 5] - orders = [3, 4, '.', 5] - ordered_keys = util.order_keys(keys, orders) - self.assertEqual(ordered_keys, [3, 4, 1, 2, 5]) - - def test_order_keys_with_multidot(self): - """test order keys with multi dots in it.""" - keys = [1, 2, 3, 4, 5] - orders = [3, '.', 4, '.', 5] - ordered_keys = util.order_keys(keys, orders) - self.assertEqual(ordered_keys, [3, 1, 2, 4, 5]) - - def test_others_in_orders(self): - """test other key in order.""" - keys = [1, 2, 3, 4, 5] - orders = [3, '.', 5, 6] - ordered_keys = util.order_keys(keys, orders) - self.assertEqual(ordered_keys, [3, 1, 2, 4, 5]) - - def test_keys_orders_notlist(self): - """test keys not in order.""" - keys = {1: 1} - orders = [3, 4, 5] - self.assertRaises(TypeError, util.order_keys, keys, orders) - - keys = [1, 2, 3, 4, 5] - orders = {3: 3} - self.assertRaises(TypeError, util.order_keys, keys, orders) - - -class TestIsInstanceOf(unittest2.TestCase): - """test isinstanceof function.""" - def test_isinstance(self): - """test isinstance.""" - self.assertTrue(util.is_instance({}, [dict, list])) - self.assertFalse(util.is_instance({}, [str, list])) - self.assertFalse(util.is_instance({}, [])) - - -class TestGetListWithPossibility(unittest2.TestCase): - """test get list with possibility.""" - - def test_simple_case(self): - """test simple case.""" - lists = [['role1'], ['role2'], ['role3']] - self.assertEqual(util.flat_lists_with_possibility(lists), - ['role1', 'role2', 'role3']) - lists = [['role1', 'role1'], ['role2'], ['role3']] - self.assertEqual(util.flat_lists_with_possibility(lists), - ['role1', 'role2', 'role3', 'role1']) - lists = [['role1', 'role1', 'role1'], ['role2', 'role2'], ['role3']] - self.assertEqual(util.flat_lists_with_possibility(lists), - ['role1', 'role2', 'role3', - 'role1', 'role2', 'role1']) - lists = [['role1', 'role1', 'role1', 'role1'], - ['role2', 'role2'], ['role3']] - self.assertEqual(util.flat_lists_with_possibility(lists), - ['role1', 'role2', 'role3', 'role1', - 'role1', 'role2', 'role1']) - lists = [['role3'], - ['role2', 'role2'], - ['role1', 'role1', 'role1', 'role1']] - self.assertEqual(util.flat_lists_with_possibility(lists), - ['role1', 'role2', 'role3', 'role1', - 'role1', 'role2', 'role1']) - - -if __name__ == '__main__': - flags.init() - logsetting.init() - unittest2.main()