search for: swsusp

Displaying 20 results from an estimated 25 matches for "swsusp".

2007 Jul 21
2
Please How do I calculate the offset of a file within a ext3 partition
Hi, I need to understand and to calculate the offset of the beginning of a file within my partition which uses an ext3 filesystem. Can I use dumpe2fs to figure that out, if yes how? Sincerely, William Tambe
2007 Oct 11
2
CentOS 5 LiveCD better than the real one?
Folks, I am terribly puzzled by an issue reported as bug 2381 [http://bugs.centos.org/view.php?id=2381] ? definitely an upstream bug, as it does the same under X/OS 5 and StartCom 5. Simply put: Hibernation fails with horrendous I/O errors after swsusp starts dumping to swap. What bugs me is that hibernating from the CentOS 5 LiveCD *works*!!! (on the same hardware) How could I investigate to see what is the relevant difference between the LiveCD and the installed system, WRT suspend-to-disk? It has been said that "CentOS 5 i386 Live CD i...
2007 May 01
1
CentOS 5.0 suspend to disk (hibernate)
...work on Ubuntu 6.10 on this machine with an older kernel (2.6.17-10-generic) than CentOS 5 has. Are there some packages or a different kernel that should be installed? Will this feature be added to CentOS 5 or is it considered a server distro that doesn't need this? Thinkwiki.org mentions the swsusp program but it seems to be absent. CentOS 4 and CentOS 5 have been running well on this machine but having the suspend feature would be very nice. Thanks, and thanks to the team for making CentOS available. roland roland_renaud at Mitel.COM
2007 Feb 04
2
klibc 1.4 won't build with linux 2.6.19.1
..._STD_PARTITION symbol _and_ because it actually tests to see if CONFIG_PM_STD_PARTITION is defined, I decided to comment out that include. The build then completes. FYI, the following kernel files have CONFIG_PM_STD_PARTITION in them: frw-r--r-- 4750 2006-12-11.13:32:53 Documentation/power/swsusp-dmcrypt.txt frw-r--r-- 41112 2006-12-11.13:32:53 arch/powerpc/configs/pmac32_defconfig frw-r--r-- 36997 2006-12-11.13:32:53 arch/ppc/configs/prep_defconfig frw-r--r-- 33920 2006-12-11.13:32:53 arch/x86_64/defconfig frw-r--r-- 9021 2006-12-11.13:32:53 kernel/power/disk.c -- --...
2007 Jun 21
2
Dovecot won't stay running
This weekend I upgraded my OS from FC4 to FC6. At the same time I updated Dovecot from 0.99 to 1.0.0. Now, dovecot periodically shuts off. It will run fine for several hours then just dies. Right now my solution is to run a cron every 5 minutes to see if it?s still running, and if not, re-start it. I?m also having trouble finding any sort of meaningful logs to tell me what?s going on. Where
2010 Sep 28
4
[Bug 30424] New: Resume from suspend to ram fails on G71 [Quadro FX 1500M] (rev a1)
...er/nouveau AssignedTo: nouveau at lists.freedesktop.org ReportedBy: cristianrosa at yahoo.com QAContact: xorg-team at lists.x.org Created an attachment (id=39014) --> (https://bugs.freedesktop.org/attachment.cgi?id=39014) dmesg output Resume from suspend to ram using swsusp fails after 2 suspend/resume cycles. The first time always work flawlessly, the second time, it works but the screen is corrupted for a few seconds after a refresh, the third time it just hangs and the screen is corrupted. (it might be possible to do a vt switch but not always, it is very unpredict...
2007 Apr 18
5
[patch 0/4] Revised softlockup watchdog improvement patches
Hi Ingo, This series of patches implements a number of improvements to the softlockup watchdog and its users. They are: 1. Make the watchdog ignore stolen time When running under a hypervisor, the kernel may lose an arbitrary amount of time as "stolen time". This may cause the softlockup watchdog to trigger spruiously. Xen and VMI implement sched_clock() as measuring unstolen time,
2007 Apr 18
5
[patch 0/4] Revised softlockup watchdog improvement patches
Hi Ingo, This series of patches implements a number of improvements to the softlockup watchdog and its users. They are: 1. Make the watchdog ignore stolen time When running under a hypervisor, the kernel may lose an arbitrary amount of time as "stolen time". This may cause the softlockup watchdog to trigger spruiously. Xen and VMI implement sched_clock() as measuring unstolen time,
2010 Oct 13
3
[syslinux:disklib] disklib: make CHS calculation match core/fs/diskio.c
On 10/13/2010 08:36 AM, syslinux-bot for Michal Soltys wrote: > Commit-ID: 9c8db7560e2dc83d1191bb2f90b4d4d0ae3d37d6 > Gitweb: http://syslinux.zytor.com/commit/9c8db7560e2dc83d1191bb2f90b4d4d0ae3d37d6 > Author: Michal Soltys <soltys at ziu.info> > AuthorDate: Wed, 13 Oct 2010 10:57:36 +0200 > Committer: Michal Soltys <soltys at ziu.info> > CommitDate: Wed, 13
2014 Nov 28
2
[PATCH] Add ldisk.c32 Lua module
...lude <stdlib.h> +#include <unistd.h> + +#include <disk/geom.h> +#include <disk/bootloaders.h> +#include <disk/errno_disk.h> +#include <disk/error.h> +#include <disk/mbrs.h> +#include <disk/msdos.h> +#include <disk/partition.h> +#include <disk/swsusp.h> +#include <disk/read.h> + +#include "lua.h" +#include "lauxlib.h" +#include "lualib.h" + +#define SET_TABLE_STRING_INT(state, key, value) do {\ + lua_pushstring((state), (key));\ + lua_pushinteger((state), (value));\ + lua_settable((state), -3);\ +} whil...
2005 Aug 15
3
[-mm PATCH 2/32] fs: fix-up schedule_timeout() usage
...task); INIT_LIST_HEAD(&tmp); - timeleft = (xfs_syncd_centisecs * HZ) / 100; + timeleft = xfs_syncd_centisecs * msecs_to_jiffies(10); for (;;) { - set_current_state(TASK_INTERRUPTIBLE); - timeleft = schedule_timeout(timeleft); + timeleft = schedule_timeout_interruptible(timeleft); /* swsusp */ try_to_freeze(); if (vfsp->vfs_flag & VFS_UMOUNT) @@ -495,7 +494,8 @@ xfssyncd( */ if (!timeleft || list_empty(&vfsp->vfs_sync_list)) { if (!timeleft) - timeleft = (xfs_syncd_centisecs * HZ) / 100; + timeleft = xfs_syncd_centisecs * + msecs_to_jiffies(1...
2016 Oct 24
0
[PATCH v3 34/37] docs: fix locations of several documents that got moved
.../netdev-FAQ.txt | 8 ++-- Documentation/networking/vortex.txt | 2 +- Documentation/power/00-INDEX | 2 +- Documentation/power/pci.txt | 10 ++-- Documentation/power/runtime_pm.txt | 2 +- Documentation/power/swsusp-dmcrypt.txt | 2 +- Documentation/process/4.Coding.rst | 4 +- Documentation/process/5.Posting.rst | 12 ++--- Documentation/process/8.Conclusion.rst | 6 +-- Documentation/process/adding-syscalls.rst | 2 +- Documentation/process/...
2016 Oct 24
0
[PATCH v3 34/37] docs: fix locations of several documents that got moved
.../netdev-FAQ.txt | 8 ++-- Documentation/networking/vortex.txt | 2 +- Documentation/power/00-INDEX | 2 +- Documentation/power/pci.txt | 10 ++-- Documentation/power/runtime_pm.txt | 2 +- Documentation/power/swsusp-dmcrypt.txt | 2 +- Documentation/process/4.Coding.rst | 4 +- Documentation/process/5.Posting.rst | 12 ++--- Documentation/process/8.Conclusion.rst | 6 +-- Documentation/process/adding-syscalls.rst | 2 +- Documentation/process/...
2016 Oct 18
2
[PATCH v2 34/37] docs: fix locations of several documents that got moved
.../netdev-FAQ.txt | 8 ++-- Documentation/networking/vortex.txt | 2 +- Documentation/power/00-INDEX | 2 +- Documentation/power/pci.txt | 10 ++-- Documentation/power/runtime_pm.txt | 2 +- Documentation/power/swsusp-dmcrypt.txt | 2 +- Documentation/process/4.Coding.rst | 4 +- Documentation/process/5.Posting.rst | 12 ++--- Documentation/process/8.Conclusion.rst | 6 +-- Documentation/process/adding-syscalls.rst | 2 +- Documentation/process/...
2016 Oct 18
2
[PATCH v2 34/37] docs: fix locations of several documents that got moved
.../netdev-FAQ.txt | 8 ++-- Documentation/networking/vortex.txt | 2 +- Documentation/power/00-INDEX | 2 +- Documentation/power/pci.txt | 10 ++-- Documentation/power/runtime_pm.txt | 2 +- Documentation/power/swsusp-dmcrypt.txt | 2 +- Documentation/process/4.Coding.rst | 4 +- Documentation/process/5.Posting.rst | 12 ++--- Documentation/process/8.Conclusion.rst | 6 +-- Documentation/process/adding-syscalls.rst | 2 +- Documentation/process/...
2011 Feb 04
5
[PATCH] kdump: introduce "reset_devices" command line option
...eters.txt +++ linux-2.6.18-xen.hg/Documentation/kernel-parameters.txt @@ -1392,6 +1392,9 @@ running once the system is up. reserve= [KNL,BUGS] Force the kernel to ignore some iomem area + reset_devices [KNL] Force drivers to reset the underlying device + during initialization. + resume= [SWSUSP] Specify the partition device for software suspend --- linux-2.6.18-xen.hg.orig/include/linux/init.h +++ linux-2.6.18-xen.hg/include/linux/init.h @@ -68,6 +68,7 @@ extern initcall_t __security_initcall_st /* Defined in init/main.c */ extern char saved_command_line[]; +extern unsigned int...
2007 Apr 18
8
[patch 0/8] Basic infrastructure patches for a paravirtualized kernel
Hi Andrew, This series of patches lays the basic ground work for the paravirtualized kernel patches coming later on. I think this lot is ready for the rough-and-tumble world of the -mm tree. The main change from the last posting is that all the page-table related patches have been moved out, and will be posted separately. Also, the off-by-one in reserving the top of address space has been
2007 Apr 18
8
[patch 0/8] Basic infrastructure patches for a paravirtualized kernel
Hi Andrew, This series of patches lays the basic ground work for the paravirtualized kernel patches coming later on. I think this lot is ready for the rough-and-tumble world of the -mm tree. The main change from the last posting is that all the page-table related patches have been moved out, and will be posted separately. Also, the off-by-one in reserving the top of address space has been
2005 Apr 21
10
apci issue
Hi, Updated to current bk today, and my machine stopped booting ... I''ve tracked it down to the apic changes from end of last week. cset 1.1307 boots fine, 1.1308 doesn''t. Diff of the boot messages is below. Full logs are also attached. Gerd --- log-1.1307 2005-04-21 14:40:57.372885027 +0200 +++ log-1.1308 2005-04-21 14:38:52.236553392 +0200 @@ -7,7 +7,7 @@
2006 Jun 28
35
[klibc 00/31] klibc as a historyless patchset (updated and reorganized)
I have updated the klibc patchset based on feedback received. In particular, the patchset has been reorganized so as not to break git-bisect. Additionally, this updates the patch base to 2.6.17-git12 (d38b69689c349f35502b92e20dafb30c62d49d63) and klibc 1.4.8; the main difference on the klibc side is removal of obsolete code. This is also available as a git tree at: