MIT6.828_HW7_xv6 locking

本文讨论了MIT6.828课程作业7中关于xv6操作系统的锁机制。文章提到了不应连续两次获取同一锁,分析了在ide.c和file.c中执行中断时持有锁的影响,以及xv6锁释放过程中清除pcs[0]和cpu的原因。实验结果显示,开启中断可能导致内核崩溃,而filealloc的短时操作降低了冲突概率。

MIT6.828_HW7_xv6 locking

Don’t do this

Make sure you understand what would happen if the xv6 kernel executed the following code snippet:

  struct spinlock lk;
  initlock(&lk, "test lock");
  acquire(&lk);
  acquire(&lk);

查看acquire源码,可以发现若连续两次对同一变量进行acquire,会进入panic

Interrupts in ide.c

acquire中,会关中断,实现原子操作。pushcli(); // disable interrupts to avoid deadlock.

让我们看看如果我们在持有ide锁时打开中断会发生什么。 在ide.c中的iderw中,在acquire()之后添加对sti()的调用,并在release()之前调用cli()。rebulid 内核并在QEMU中启动它。 内核在启动后很快就会panic; 如果没有,多尝试启动QEMU几次。

acquire(&idelock);  //DOC:acquire-lock
  // sti();
  // Append b to idequeue.
  b->qnext = 0;
  for(pp=&idequeue; *pp; pp=&(*pp)->qnext)  //DOC:insert-queue
    ;
  *pp = b;

Transaction check error: file /usr/lib64/mysql/libmysqlclient.so.20.3.31 from install of mysql-wsrep-libs-5.7-5.7.44-25.36.el7.x86_64 conflicts with file from package mysql-community-libs-5.7.44-1.el7.x86_64 file /usr/bin/mysql from install of mysql-wsrep-client-5.7-5.7.44-25.36.el7.x86_64 conflicts with file from package mysql-community-client-5.7.44-1.el7.x86_64 file /usr/bin/mysql_config_editor from install of mysql-wsrep-client-5.7-5.7.44-25.36.el7.x86_64 conflicts with file from package mysql-community-client-5.7.44-1.el7.x86_64 file /usr/bin/mysqladmin from install of mysql-wsrep-client-5.7-5.7.44-25.36.el7.x86_64 conflicts with file from package mysql-community-client-5.7.44-1.el7.x86_64 file /usr/bin/mysqlbinlog from install of mysql-wsrep-client-5.7-5.7.44-25.36.el7.x86_64 conflicts with file from package mysql-community-client-5.7.44-1.el7.x86_64 file /usr/bin/mysqlcheck from install of mysql-wsrep-client-5.7-5.7.44-25.36.el7.x86_64 conflicts with file from package mysql-community-client-5.7.44-1.el7.x86_64 file /usr/bin/mysqldump from install of mysql-wsrep-client-5.7-5.7.44-25.36.el7.x86_64 conflicts with file from package mysql-community-client-5.7.44-1.el7.x86_64 file /usr/bin/mysqlimport from install of mysql-wsrep-client-5.7-5.7.44-25.36.el7.x86_64 conflicts with file from package mysql-community-client-5.7.44-1.el7.x86_64 file /usr/bin/mysqlpump from install of mysql-wsrep-client-5.7-5.7.44-25.36.el7.x86_64 conflicts with file from package mysql-community-client-5.7.44-1.el7.x86_64 file /usr/bin/mysqlshow from install of mysql-wsrep-client-5.7-5.7.44-25.36.el7.x86_64 conflicts with file from package mysql-community-client-5.7.44-1.el7.x86_64 file /usr/bin/mysqlslap from install of mysql-wsrep-client-5.7-5.7.44-25.36.el7.x86_64 conflicts with file from package mysql-community-client-5.7.44-1.el7.x86_64 file /usr/bin/innochecksum from install of mysql-wsrep-server-5.7-5.7.44-25.36.el7.x86_64 conflicts with file from package mysql-community-server-5.7.44-1.el7.x86_64 file /usr/bin/lz4_decompress from install of mysql-wsrep-server-5.7-5.7.44-25.36.el7.x86_64 conflicts with file from package mysql-community-server-5.7.44-1.el7.x86_64 file /usr/bin/my_print_defaults from install of mysql-wsrep-server-5.7-5.7.44-25.36.el7.x86_64 conflicts with file from package mysql-community-server-5.7.44-1.el7.x86_64 file /usr/bin/myisam_ftdump from install of mysql-wsrep-server-5.7-5.7.44-25.36.el7.x86_64 conflicts with file from package mysql-community-server-5.7.44-1.el7.x86_64 file /usr/bin/myisamchk from install of mysql-wsrep-server-5.7-5.7.44-25.36.el7.x86_64 conflicts with file from package mysql-community-server-5.7.44-1.el7.x86_64 file /usr/bin/myisamlog from install of mysql-wsrep-server-5.7-5.7.44-25.36.el7.x86_64 conflicts with file from package mysql-community-server-5.7.44-1.el7.x86_64 file /usr/bin/myisampack from install of mysql-wsrep-server-5.7-5.7.44-25.36.el7.x86_64 conflicts with file from package mysql-community-server-5.7.44-1.el7.x86_64 file /usr/bin/mysql_install_db from install of mysql-wsrep-server-5.7-5.7.44-25.36.el7.x86_64 conflicts with file from package mysql-community-server-5.7.44-1.el7.x86_64 file /usr/bin/mysql_plugin from install of mysql-wsrep-server-5.7-5.7.44-25.36.el7.x86_64 conflicts with file from package mysql-community-server-5.7.44-1.el7.x86_64 file /usr/bin/mysql_secure_installation from install of mysql-wsrep-server-5.7-5.7.44-25.36.el7.x86_64 conflicts with file from package mysql-community-server-5.7.44-1.el7.x86_64 file /usr/bin/mysql_ssl_rsa_setup from install of mysql-wsrep-server-5.7-5.7.44-25.36.el7.x86_64 conflicts with file from package mysql-community-server-5.7.44-1.el7.x86_64 file /usr/bin/mysql_tzinfo_to_sql from install of mysql-wsrep-server-5.7-5.7.44-25.36.el7.x86_64 conflicts with file from package mysql-community-server-5.7.44-1.el7.x86_64 file /usr/bin/mysql_upgrade from install of mysql-wsrep-server-5.7-5.7.44-25.36.el7.x86_64 conflicts with file from package mysql-community-server-5.7.44-1.el7.x86_64 file /usr/bin/mysqld_pre_systemd from install of mysql-wsrep-server-5.7-5.7.44-25.36.el7.x86_64 conflicts with file from package mysql-community-server-5.7.44-1.el7.x86_64 file /usr/bin/perror from install of mysql-wsrep-server-5.7-5.7.44-25.36.el7.x86_64 conflicts with file from package mysql-community-server-5.7.44-1.el7.x86_64 file /usr/bin/replace from install of mysql-wsrep-server-5.7-5.7.44-25.36.el7.x86_64 conflicts with file from package mysql-community-server-5.7.44-1.el7.x86_64 file /usr/bin/resolve_stack_dump from install of mysql-wsrep-server-5.7-5.7.44-25.36.el7.x86_64 conflicts with file from package mysql-community-server-5.7.44-1.el7.x86_64 file /usr/bin/resolveip from install of mysql-wsrep-server-5.7-5.7.44-25.36.el7.x86_64 conflicts with file from package mysql-community-server-5.7.44-1.el7.x86_64 file /usr/bin/zlib_decompress from install of mysql-wsrep-server-5.7-5.7.44-25.36.el7.x86_64 conflicts with file from package mysql-community-server-5.7.44-1.el7.x86_64 file /usr/lib/systemd/system/mysqld.service from install of mysql-wsrep-server-5.7-5.7.44-25.36.el7.x86_64 conflicts with file from package mysql-community-server-5.7.44-1.el7.x86_64 file /usr/lib/systemd/system/mysqld@.service from install of mysql-wsrep-server-5.7-5.7.44-25.36.el7.x86_64 conflicts with file from package mysql-community-server-5.7.44-1.el7.x86_64 file /usr/lib64/mysql/plugin/adt_null.so from install of mysql-wsrep-server-5.7-5.7.44-25.36.el7.x86_64 conflicts with file from package mysql-community-server-5.7.44-1.el7.x86_64 file /usr/lib64/mysql/plugin/debug/adt_null.so from install of mysql-wsrep-server-5.7-5.7.44-25.36.el7.x86_64 conflicts with file from package mysql-community-server-5.7.44-1.el7.x86_64 file /usr/lib64/mysql/plugin/auth_socket.so from install of mysql-wsrep-server-5.7-5.7.44-25.36.el7.x86_64 conflicts with file from package mysql-community-server-5.7.44-1.el7.x86_64 file /usr/lib64/mysql/plugin/debug/auth_socket.so from install of mysql-wsrep-server-5.7-5.7.44-25.36.el7.x86_64 conflicts with file from package mysql-community-server-5.7.44-1.el7.x86_64 file /usr/lib64/mysql/plugin/authentication_ldap_sasl_client.so from install of mysql-wsrep-server-5.7-5.7.44-25.36.el7.x86_64 conflicts with file from package mysql-community-server-5.7.44-1.el7.x86_64 file /usr/lib64/mysql/plugin/debug/authentication_ldap_sasl_client.so from install of mysql-wsrep-server-5.7-5.7.44-25.36.el7.x86_64 conflicts with file from package mysql-community-server-5.7.44-1.el7.x86_64 file /usr/lib64/mysql/plugin/connection_control.so from install of mysql-wsrep-server-5.7-5.7.44-25.36.el7.x86_64 conflicts with file from package mysql-community-server-5.7.44-1.el7.x86_64 file /usr/lib64/mysql/plugin/debug/connection_control.so from install of mysql-wsrep-server-5.7-5.7.44-25.36.el7.x86_64 conflicts with file from package mysql-community-server-5.7.44-1.el7.x86_64 file /usr/lib64/mysql/plugin/debug/group_replication.so from install of mysql-wsrep-server-5.7-5.7.44-25.36.el7.x86_64 conflicts with file from package mysql-community-server-5.7.44-1.el7.x86_64 file /usr/lib64/mysql/plugin/group_replication.so from install of mysql-wsrep-server-5.7-5.7.44-25.36.el7.x86_64 conflicts with file from package mysql-community-server-5.7.44-1.el7.x86_64 file /usr/lib64/mysql/plugin/debug/ha_example.so from install of mysql-wsrep-server-5.7-5.7.44-25.36.el7.x86_64 conflicts with file from package mysql-community-server-5.7.44-1.el7.x86_64 file /usr/lib64/mysql/plugin/ha_example.so from install of mysql-wsrep-server-5.7-5.7.44-25.36.el7.x86_64 conflicts with file from package mysql-community-server-5.7.44-1.el7.x86_64 file /usr/lib64/mysql/plugin/debug/innodb_engine.so from install of mysql-wsrep-server-5.7-5.7.44-25.36.el7.x86_64 conflicts with file from package mysql-community-server-5.7.44-1.el7.x86_64 file /usr/lib64/mysql/plugin/innodb_engine.so from install of mysql-wsrep-server-5.7-5.7.44-25.36.el7.x86_64 conflicts with file from package mysql-community-server-5.7.44-1.el7.x86_64 file /usr/lib64/mysql/plugin/debug/keyring_file.so from install of mysql-wsrep-server-5.7-5.7.44-25.36.el7.x86_64 conflicts with file from package mysql-community-server-5.7.44-1.el7.x86_64 file /usr/lib64/mysql/plugin/keyring_file.so from install of mysql-wsrep-server-5.7-5.7.44-25.36.el7.x86_64 conflicts with file from package mysql-community-server-5.7.44-1.el7.x86_64 file /usr/lib64/mysql/plugin/debug/keyring_udf.so from install of mysql-wsrep-server-5.7-5.7.44-25.36.el7.x86_64 conflicts with file from package mysql-community-server-5.7.44-1.el7.x86_64 file /usr/lib64/mysql/plugin/keyring_udf.so from install of mysql-wsrep-server-5.7-5.7.44-25.36.el7.x86_64 conflicts with file from package mysql-community-server-5.7.44-1.el7.x86_64 file /usr/lib64/mysql/plugin/debug/libmemcached.so from install of mysql-wsrep-server-5.7-5.7.44-25.36.el7.x86_64 conflicts with file from package mysql-community-server-5.7.44-1.el7.x86_64 file /usr/lib64/mysql/plugin/libmemcached.so from install of mysql-wsrep-server-5.7-5.7.44-25.36.el7.x86_64 conflicts with file from package mysql-community-server-5.7.44-1.el7.x86_64 file /usr/lib64/mysql/plugin/debug/locking_service.so from install of mysql-wsrep-server-5.7-5.7.44-25.36.el7.x86_64 conflicts with file from package mysql-community-server-5.7.44-1.el7.x86_64 file /usr/lib64/mysql/plugin/locking_service.so from install of mysql-wsrep-server-5.7-5.7.44-25.36.el7.x86_64 conflicts with file from package mysql-community-server-5.7.44-1.el7.x86_64 file /usr/lib64/mysql/plugin/debug/mypluglib.so from install of mysql-wsrep-server-5.7-5.7.44-25.36.el7.x86_64 conflicts with file from package mysql-community-server-5.7.44-1.el7.x86_64 file /usr/lib64/mysql/plugin/mypluglib.so from install of mysql-wsrep-server-5.7-5.7.44-25.36.el7.x86_64 conflicts with file from package mysql-community-server-5.7.44-1.el7.x86_64 file /usr/lib64/mysql/plugin/debug/mysql_no_login.so from install of mysql-wsrep-server-5.7-5.7.44-25.36.el7.x86_64 conflicts with file from package mysql-community-server-5.7.44-1.el7.x86_64 file /usr/lib64/mysql/plugin/mysql_no_login.so from install of mysql-wsrep-server-5.7-5.7.44-25.36.el7.x86_64 conflicts with file from package mysql-community-server-5.7.44-1.el7.x86_64 file /usr/lib64/mysql/plugin/debug/mysqlx.so from install of mysql-wsrep-server-5.7-5.7.44-25.36.el7.x86_64 conflicts with file from package mysql-community-server-5.7.44-1.el7.x86_64 file /usr/lib64/mysql/plugin/mysqlx.so from install of mysql-wsrep-server-5.7-5.7.44-25.36.el7.x86_64 conflicts with file from package mysql-community-server-5.7.44-1.el7.x86_64 file /usr/lib64/mysql/plugin/debug/rewrite_example.so from install of mysql-wsrep-server-5.7-5.7.44-25.36.el7.x86_64 conflicts with file from package mysql-community-server-5.7.44-1.el7.x86_64 file /usr/lib64/mysql/plugin/rewrite_example.so from install of mysql-wsrep-server-5.7-5.7.44-25.36.el7.x86_64 conflicts with file from package mysql-community-server-5.7.44-1.el7.x86_64 file /usr/lib64/mysql/plugin/debug/rewriter.so from install of mysql-wsrep-server-5.7-5.7.44-25.36.el7.x86_64 conflicts with file from package mysql-community-server-5.7.44-1.el7.x86_64 file /usr/lib64/mysql/plugin/rewriter.so from install of mysql-wsrep-server-5.7-5.7.44-25.36.el7.x86_64 conflicts with file from package mysql-community-server-5.7.44-1.el7.x86_64 file /usr/lib64/mysql/plugin/debug/semisync_master.so from install of mysql-wsrep-server-5.7-5.7.44-25.36.el7.x86_64 conflicts with file from package mysql-community-server-5.7.44-1.el7.x86_64 file /usr/lib64/mysql/plugin/semisync_master.so from install of mysql-wsrep-server-5.7-5.7.44-25.36.el7.x86_64 conflicts with file from package mysql-community-server-5.7.44-1.el7.x86_64 file /usr/lib64/mysql/plugin/debug/semisync_slave.so from install of mysql-wsrep-server-5.7-5.7.44-25.36.el7.x86_64 conflicts with file from package mysql-community-server-5.7.44-1.el7.x86_64 file /usr/lib64/mysql/plugin/semisync_slave.so from install of mysql-wsrep-server-5.7-5.7.44-25.36.el7.x86_64 conflicts with file from package mysql-community-server-5.7.44-1.el7.x86_64 file /usr/lib64/mysql/plugin/debug/validate_password.so from install of mysql-wsrep-server-5.7-5.7.44-25.36.el7.x86_64 conflicts with file from package mysql-community-server-5.7.44-1.el7.x86_64 file /usr/lib64/mysql/plugin/validate_password.so from install of mysql-wsrep-server-5.7-5.7.44-25.36.el7.x86_64 conflicts with file from package mysql-community-server-5.7.44-1.el7.x86_64 file /usr/lib64/mysql/plugin/debug/version_token.so from install of mysql-wsrep-server-5.7-5.7.44-25.36.el7.x86_64 conflicts with file from package mysql-community-server-5.7.44-1.el7.x86_64 file /usr/lib64/mysql/plugin/version_token.so from install of mysql-wsrep-server-5.7-5.7.44-25.36.el7.x86_64 conflicts with file from package mysql-community-server-5.7.44-1.el7.x86_64 file /usr/sbin/mysqld from install of mysql-wsrep-server-5.7-5.7.44-25.36.el7.x86_64 conflicts with file from package mysql-community-server-5.7.44-1.el7.x86_64 file /usr/sbin/mysqld-debug from install of mysql-wsrep-server-5.7-5.7.44-25.36.el7.x86_64 conflicts with file from package mysql-community-server-5.7.44-1.el7.x86_64 file /usr/share/mysql/fill_help_tables.sql from install of mysql-wsrep-server-5.7-5.7.44-25.36.el7.x86_64 conflicts with file from package mysql-community-server-5.7.44-1.el7.x86_64 file /usr/share/mysql/mysql_system_tables.sql from install of mysql-wsrep-server-5.7-5.7.44-25.36.el7.x86_64 conflicts with file from package mysql-community-server-5.7.44-1.el7.x86_64 错误概要 -------------
最新发布
08-26
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值