Displaying 11 results from an estimated 11 matches for "ramsdel".
Did you mean:
ramsdell
2007 Apr 13
2
O2CB in ocfs2tools 1.2.4
....init. Also, the
o2cb_ctl program needs to be in your path. It lives at
o2cb_ctl/o2cb_ctl in the source tree.
To enable steps 1 and 2 on boot:
# /etc/init.d/o2cb enable
Writing O2CB configuration: OK
or:
# /etc/init.d/o2cb configure
Configuring the O2CB driver.
Thanks,
Randy Ramsdell
2007 Feb 09
6
1.2.4 symbols
Hi,
Everything compiled correctly for the ocfs2 package, but so far the
modules will not load with the "well known" module symbol error.
FATAL: Error inserting ocfs2
(/lib/modules/2.6.16.27-0.6-smp/kernel/fs/ocfs2/ocfs2.ko): Unknown
symbol in module, or unknown parameter (see dmesg)
Okay not sure what is up here, any suggestions? BTW, this is the correct
module location and I
2007 Feb 06
1
ocfs2-tools-1.2.2 compile.
...c.c: In function ?ocfs2_init_eb?:
alloc.c:184: warning: pointer targets in passing argument 1 of ?strcpy?
differ in signedness
make[1]: *** [alloc.o] Error 1
make[1]: Leaving directory `/root/src/ocfs2-tools-1.2.2/libocfs2'
make: *** [libocfs2] Error 2
Anyone know how to resolve this?
Randy Ramsdell
Foreclosure.com
2007 Feb 06
2
Network 10 sec timeout setting?
Hello!
Hey didnt a setting for the 10 second network timeout get into the
2.6.20 kernel?
if so how do we set this?
I am getting
OCFS2 1.3.3
(2201,0):o2net_connect_expired:1547 ERROR: no connection established
with node 1 after 10.0 seconds, giving up and returning errors.
(2458,0):dlm_request_join:802 ERROR: status = -107
(2458,0):dlm_try_to_join_domain:950 ERROR: status = -107
2006 May 11
11
[PATCH] Integrating applications into Mini-OS
I sent this patch directly to Gregor, and neglected to CC this list.
Sorry about that.
I''d like to make it so that there is no need to modify any Mini-OS
source files when extending it with an application. All that is
required is a change to Makefile, and a small change to kernel.c,
printf.c, and string.c. I have enclosed the patch.
With this patch, one could write an application in a
2006 May 01
6
[PATCH] Use stddef.h in Mini-OS to define size_t
Please patch Mini-OS so that it uses stddef.h to define size_t and
NULL. This problem fixes errors that occur when linking Mini-OS with
ANSI standard code that uses stddef.h.
John
diff -ur oxen-3.0-testing/extras/mini-os/include/lib.h nxen-3.0-testing/extras/mini-os/include/lib.h
--- oxen-3.0-testing/extras/mini-os/include/lib.h 2006-04-14 22:21:55.000000000 -0400
+++
2007 Apr 17
1
mount.ocfs2 blah
Hi,
In the ongoing drama surrounding this upgrade, I have encountered
another issue that I am unable to currently resolve.
mount.ocfs2 /dev/sdb1 /mnt
mount.ocfs2: Stale NFS file handle while mounting /dev/sdb1 on /mnt.
Check 'dmesg' for more information on this error.
dmesg:
(3701,1):ocfs2_populate_inode:240 ERROR: file entry generation does not
match superblock!
2006 Sep 15
1
/etc/init.d/samba profile
I have a question about using the /etc/init.d/samba script on irix. I see
that in that script, the acceptable arguments to it are start, stop and
profile. Start and stop are pretty obvious, but can anyone explain to me
what profile does?
-Renee
2012 Nov 26
13
[PATCH 0 of 4] Minios improvements for app development
This patch series contains a set of patches making minios rather easier
to use, from an application development point of view.
Overview of patches:
1 Command line argument parsing support, from Xen.
2 Weak console handler function.
3 Build system tweaks for application directories.
4 Trailing whitespace cleanup. (because it is very messy)
Patch 4 is likely to be more controversial than
2006 Jul 13
0
Re: Xen Roadmap proposal and Mini-OS C library
Ian,
Thank you for your detailed report.
> As a user space application, Qemu can''t run in the stub domain
> directly, but requires an operating system kernel. The neatest way of
> doing this would be to link qemu against `minios'', which is
> effectively a library operating system for just this purpose. Since
> minios makes use of a broad range of libc calls, it
2006 Jul 18
0
Re: [RFC PATCH 24/33] Add support for Xen event channels.
Chris,
I read with interest your patch for adding support for Xen event
channels. I notice that evtchn.h uses an int to represent a port, as
demonstrated, for example, in the following two declarations:
> +extern void mask_evtchn(int port);
> +extern void unmask_evtchn(int port);
Using a signed integer is good because negative numbers can be use to
return error conditions from functions