search for: node_id

Displaying 20 results from an estimated 75 matches for "node_id".

2024 Apr 03
0
[linux-next:master] BUILD REGRESSION 727900b675b749c40ba1f6669c7ae5eb7eb8e837
...error: uninitialized symbol 'rc'. Error/Warning ids grouped by kconfigs: gcc_recent_errors |-- alpha-allnoconfig | |-- mm-mempool.c:warning:Function-parameter-or-struct-member-gfp_mask-not-described-in-mempool_create_node | `-- mm-mempool.c:warning:Function-parameter-or-struct-member-node_id-not-described-in-mempool_create_node |-- alpha-allyesconfig | |-- drivers-gpu-drm-imx-ipuv3-imx-ldb.c:error:_sel-directive-output-may-be-truncated-writing-bytes-into-a-region-of-size-between-and | |-- drivers-gpu-drm-nouveau-nouveau_backlight.c:error:d-directive-output-may-be-truncated-writing-...
2005 Dec 23
4
OO model style: inheritance
...STAMP on update CURRENT_TIMESTAMP, `updated_on` timestamp NOT NULL default ''0000-00-00 00:00:00'', PRIMARY KEY (`id`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1; DROP TABLE IF EXISTS `galleries`; CREATE TABLE `galleries` ( `id` int(11) NOT NULL auto_increment, `node_id` int(11) NOT NULL default ''0'', `user_id` int(11) NOT NULL default ''0'', `title` varchar(255) NOT NULL default '''', `descr` text NOT NULL, PRIMARY KEY (`id`), KEY `user_key` (`user_id`), KEY `node_key` (`node_id`) ) ENGINE=MyISAM DEFAU...
2006 Mar 15
3
Self-referential join model does not work
...is as follows: class InitialSchema < ActiveRecord::Migration def self.up create_table :nodes do |t| t.column :title, :string, :null => false t.column :body, :text, :null => false, :default => '''' end create_table :edges do |t| t.column :node_id, :integer, :null => false t.column :related_node_id, :integer, :null => false t.column :label, :string, :null => false, :default => '''' end add_index :edges, [:node_id, :related_node_id], :unique => true end def self.down drop_table :edges...
2020 Aug 05
1
[PATCH v3 35/38] virtio_mem: convert to LE accessors
...properties that can't change. */ - virtio_cread(vm->vdev, struct virtio_mem_config, plugged_size, - &vm->plugged_size); - virtio_cread(vm->vdev, struct virtio_mem_config, block_size, - &vm->device_block_size); - virtio_cread(vm->vdev, struct virtio_mem_config, node_id, - &node_id); + virtio_cread_le(vm->vdev, struct virtio_mem_config, plugged_size, + &vm->plugged_size); + virtio_cread_le(vm->vdev, struct virtio_mem_config, block_size, + &vm->device_block_size); + virtio_cread_le(vm->vdev, struct virtio_mem_config, node_id, +...
2003 Apr 26
1
Maxtor 5000XT Firewire/USB2 Drive
Hi, I am trying to get FreeBSD 4.7 to connect to a Maxtor 5000XT drive, but I get the following when connecting it -> Apr 26 09:19:43 chowder /kernel: fwohci0: node_id = 0xc000ffc1, CYCLEMASTER mode Apr 26 09:19:43 chowder /kernel: firewire0: 2 nodes, maxhop <= 1, cable IRM = 1 (me) Apr 26 09:19:50 chowder /kernel: fwohci0: BUS reset Apr 26 09:19:50 chowder /kernel: fwohci0: node_id = 0xc000ffc1, CYCLEMASTER mode Apr 26 09:19:50 chowder /kernel: firewire0: 2 n...
2009 Sep 05
2
Running two R instances at the same time
...e two R *interpreter* instances are talking to the same backend that's capable of processing only one thing at a time? Technical details: OS was Ubuntu 9.04 running on a Core2Dou E7300, and the R version used was the default one from the Ubuntu repository. Please see http://www.perlmonks.org/?node_id=792460 for an extended discussion of the problem, and especially http://www.perlmonks.org/?node_id=793506 for excerpts of output and actual code. Thanks for your answers in advance: P?ter Juh?sz
2009 Sep 05
2
Running two R instances at the same time
...e two R *interpreter* instances are talking to the same backend that's capable of processing only one thing at a time? Technical details: OS was Ubuntu 9.04 running on a Core2Dou E7300, and the R version used was the default one from the Ubuntu repository. Please see http://www.perlmonks.org/?node_id=792460 for an extended discussion of the problem, and especially http://www.perlmonks.org/?node_id=793506 for excerpts of output and actual code. I have received several suggestions about R packages that would enable parallel processing in some way or other, and I'm thankful for those. Howeve...
2012 Jan 03
6
Puppet Dashboard: db:migrate failure (1.2.2 to 1.2.4)
...###########################| Time: 00:00:00 Preparing to delete from resource_events 2012-01-03 14:19:13: Deleting 0 orphaned records from resource_events Deleting 100% |##########################################| Time: 00:00:00 -- execute("ALTER TABLE reports ADD CONSTRAINT fk_reports_node_id FOREIGN KEY (node_id) REFERENCES nodes(id) ON DELETE CASCADE;") -> 96.6684s -- execute("ALTER TABLE resource_events ADD CONSTRAINT fk_resource_events_resource_status_id FOREIGN KEY (resource_status_id) REFERENCES resource_statuses(id) ON DELETE CASCADE;") rake aborted! An error...
2006 Aug 18
10
TreeCtrl update
...ScrolledWindow on everything else so I #if defined the .i and .h file accordingly. I also added a .i and .h file for the class wxTreeItemId. The TreeCtrl files were changed so much that I am just uploading the whole files instead of the diffs. traverse_tree(tree_ctrl,tree_ctrl.get_root_item) do |node_id,cookie| puts "Name: #{tree_ctrl.get_item_text(node_id)}\t\tCookie: #{cookie}" end def traverse_tree(tree_ctrl,root_node,cookie=0,&block) if cookie == 0 ret = tree_ctrl.get_first_child(root_node) else ret = tree_ctrl.get_next_child(root_node,cookie) end if ret[0].is...
2020 Jun 08
4
[PATCH] virtio_mem: prevent overflow with subblock size
...nclude/uapi/linux/virtio_mem.h +++ b/include/uapi/linux/virtio_mem.h @@ -185,10 +185,10 @@ struct virtio_mem_resp { struct virtio_mem_config { /* Block size and alignment. Cannot change. */ - __u32 block_size; + __u64 block_size; /* Valid with VIRTIO_MEM_F_ACPI_PXM. Cannot change. */ __u16 node_id; - __u16 padding; + __u8 padding[6]; /* Start address of the memory region. Cannot change. */ __u64 addr; /* Region size (maximum). Cannot change. */ -- MST
2020 Jun 08
4
[PATCH] virtio_mem: prevent overflow with subblock size
...nclude/uapi/linux/virtio_mem.h +++ b/include/uapi/linux/virtio_mem.h @@ -185,10 +185,10 @@ struct virtio_mem_resp { struct virtio_mem_config { /* Block size and alignment. Cannot change. */ - __u32 block_size; + __u64 block_size; /* Valid with VIRTIO_MEM_F_ACPI_PXM. Cannot change. */ __u16 node_id; - __u16 padding; + __u8 padding[6]; /* Start address of the memory region. Cannot change. */ __u64 addr; /* Region size (maximum). Cannot change. */ -- MST
2017 Jan 04
2
Amavis on Centosl help
I'm moving from Ubuntu to CentOS 7 Previously, on Ubuntu, installing amavisd would lead to etc/amavis/conf.d that contained: 01-debian 05-domain_id 05-node_id 15-av_scanners 15-content_filter_mode 20-debian_defaults 21-ubuntu_defaults 25-amavis_helpers 30-template_localization 40-policy_banks 50-user However installing amavisd on centos leads to a spaghetti config file (i.e. /etc/amavisd/amavisd.conf and nothing else) For obvious reasons I want...
2020 Aug 03
0
[PATCH v2 13/24] virtio_mem: correct tags for config space fields
...clude/uapi/linux/virtio_mem.h +++ b/include/uapi/linux/virtio_mem.h @@ -185,27 +185,27 @@ struct virtio_mem_resp { struct virtio_mem_config { /* Block size and alignment. Cannot change. */ - __u64 block_size; + __le64 block_size; /* Valid with VIRTIO_MEM_F_ACPI_PXM. Cannot change. */ - __u16 node_id; + __le16 node_id; __u8 padding[6]; /* Start address of the memory region. Cannot change. */ - __u64 addr; + __le64 addr; /* Region size (maximum). Cannot change. */ - __u64 region_size; + __le64 region_size; /* * Currently usable region size. Can grow up to region_size. Can * shrink...
2020 Aug 05
0
[PATCH v3 13/38] virtio_mem: correct tags for config space fields
...clude/uapi/linux/virtio_mem.h +++ b/include/uapi/linux/virtio_mem.h @@ -185,27 +185,27 @@ struct virtio_mem_resp { struct virtio_mem_config { /* Block size and alignment. Cannot change. */ - __u64 block_size; + __le64 block_size; /* Valid with VIRTIO_MEM_F_ACPI_PXM. Cannot change. */ - __u16 node_id; + __le16 node_id; __u8 padding[6]; /* Start address of the memory region. Cannot change. */ - __u64 addr; + __le64 addr; /* Region size (maximum). Cannot change. */ - __u64 region_size; + __le64 region_size; /* * Currently usable region size. Can grow up to region_size. Can * shrink...
2017 Jun 02
1
more recent perl version?
...in maintenance and operation (despite my initial fears). Alternatively, you can use a container. See for example: https://linuxcontainers.org/ http://www.itzgeek.com/how-tos/linux/centos-how-tos/setup-linux-container-with-lxc-on-centos-7-rhel-7.html http://www.perlmonks.org/index.pl?node_id=1034720 Cheers, Nick
2006 Jun 06
2
Toggle css for display on page load?
In my layout I have a navigation bar with a few elements in it. The elements can be toggled on or off and thereby reveal or conceal some subtopics. I store the state of the toggle for the navigation elements in the session. When the page is reloaded, the navigation items are collapsed because the css for display: none is set by default in the html for the navigation elements. Is there a
2006 May 08
2
Associating with different classes
...ree. Now imagine three other classes--Animals, Fruits and Vegetables. Each node will have an association with one object of ONE type. The object types are different enough to make STI impractical. I am thinking of the following: adding a table called associations and holding three columns--node_id, associated_type, associated_id. Thus: class Node < AR::B has_one :association end class Association < AR::B belongs_to :node end A method of the Association class will pull up the necessary Animal, Fruit or Vegetable, depending on the associated_type and associated_id. A metho...
2012 Jan 13
1
mysql errors
...r, I am frequently getting the following error (approximately 50% of the time when a client connects): err: Could not retrieve catalog from remote server: Error 400 on SERVER: Mysql::Error: Unknown prepared statement handler (7) given to mysqld_stmt_execute: INSERT INTO `inventory_facts` (`name`, `node_id`, `value`) VALUES (?, ?, ?) I don''t see any errors on the other two masters running CentOS 5.7. I have a separate server running CentOS 6.1 and MySQL 5.1.52 for the inventory db. On the masters, I have inventory configured in the puppet.conf as follows: facts_terminus = inventory_act...
2020 Mar 03
1
[PATCH v1 02/11] virtio-mem: Paravirtualized memory hotplug
...by >>): In file included from <command-line>:1:0: >> ./usr/include/linux/virtio_mem.h:185:2: error: unknown type name 'uint32_t' uint32_t block_size; ^ >> ./usr/include/linux/virtio_mem.h:187:2: error: unknown type name 'uint16_t' uint16_t node_id; ^ ./usr/include/linux/virtio_mem.h:188:2: error: unknown type name 'uint16_t' uint16_t padding; ^ >> ./usr/include/linux/virtio_mem.h:190:2: error: unknown type name 'uint64_t' uint64_t addr; ^ ./usr/include/linux/virtio_mem.h:192:2: error: unkn...
2012 Oct 24
5
Multiple resource definition error
...ll be common and hence starts generating multiple definitions error. So, to use the module on Host A, a guy will have to first include ucarp (to do basic stuff like package installation and making sure service is running) and then something like ucarp::host::config { "ucarp-test": node_id => ''1'', password => "testpass", interface_primary => ''eth0'', interface_vip => ''eth1'', vip_addr => ''1.1.1.1'', vip_addr_netmask => ''2.2.2.2'', } On Host B, everything w...