search for: o2hb_region_dev_write

Displaying 6 results from an estimated 6 matches for "o2hb_region_dev_write".

2009 Feb 09
1
Problema to Mount drbd0
...ing page to bio i = 7, vec_len = 4096, len = 0 Feb 9 18:11:08 tundra kernel: , start = 0 Feb 9 18:11:08 tundra kernel: (31249,0):o2hb_read_slots:385 ERROR: status = -5 Feb 9 18:11:08 tundra kernel: (31249,0):o2hb_populate_slot_data:1299 ERROR: status = -5 Feb 9 18:11:08 tundra kernel: (31249,0):o2hb_region_dev_write:1399 ERROR: status = -5 Feb 9 18:11:42 tundra kernel: (31259,0):o2hb_setup_one_bio:290 ERROR: Error adding page to bio i = 7, vec_len = 4096, len = 0 Feb 9 18:11:42 tundra kernel: , start = 0 Feb 9 18:11:42 tundra kernel: (31259,0):o2hb_read_slots:385 ERROR: status = -5 Feb 9 18:11:42 tundra ke...
2007 Sep 04
3
Ocfs2 and debian
Hi. I'm pretty new to ocfs2 and clusters. I'm trying to make ocfs2 running over a drbd device. I know it's not the best solution but for now i must deal with this. I set up drbd and work perfectly. I set up ocfs and i'm not able to make it to work. /etc/init.d/o2cb status: Module "configfs": Loaded Filesystem "configfs": Mounted Module
2009 Jul 15
1
CentOS-5.3 + DRBD-8.2 + OCFS2-1.4
...b_ctl: "Operation not permitted" [root at node-6A ~]# Dmesg shows: (5070,0):o2hb_setup_one_bio:409 ERROR: Error adding page to bio i = 7, vec_len = 4096, len = 0 , start = 0 (5070,0):o2hb_read_slots:507 ERROR: status = -5 (5070,0):o2hb_populate_slot_data:1432 ERROR: status = -5 (5070,0):o2hb_region_dev_write:1532 ERROR: status = -5 The solution recommended in 2007 was to patch the kernel. I think I've established that the OCFS2 heartbeat patch wasn't committed to the Linux kernel until 2.6.20. I think I've also established that Redhat haven't backported the patch to their RHEL-5 kern...
2006 Dec 29
3
[git patches] ocfs2 fixes
...if (!reg->hr_task) + return 0; + + return sprintf(page, "%u\n", reg->hr_task->pid); +} + struct o2hb_region_attribute { struct configfs_attribute attr; ssize_t (*show)(struct o2hb_region *, char *); @@ -1485,11 +1494,19 @@ static struct o2hb_region_attribute o2hb .store = o2hb_region_dev_write, }; +static struct o2hb_region_attribute o2hb_region_attr_pid = { + .attr = { .ca_owner = THIS_MODULE, + .ca_name = "pid", + .ca_mode = S_IRUGO | S_IRUSR }, + .show = o2hb_region_pid_read, +}; + static struct configfs_attribute *o2hb...
2005 Jul 12
1
problem mounting ocfs2: heartbeat
When attempting to mount the OCFS2 file system I'm getting the following error message: ocfs2_hb_ctl: Internal logic failure while starting heartbeat mount.ocfs2: Error when attempting to run /sbin/ocfs2_hb_ctl: "Operation not permitted" I followed the steps given in the users_guide: modprobe ocfs2_dlmfs mount -t configfs none /config mount -t ocfs2_dlmfs none /dlm o2cb_ctl
2010 Oct 08
23
O2CB global heartbeat - hopefully final drop!
All, This is hopefully the final drop of the patches for adding global heartbeat to the o2cb stack. The diff from the previous set is here: http://oss.oracle.com/~smushran/global-hb-diff-2010-10-07 Implemented most of the suggestions provided by Joel and Wengang. The most important one was to activate the feature only at the end, Also, got mostly a clean run with checkpatch.pl. Sunil