Merge branch 'for_linus' of git://git.kernel.org/pub/scm/linux/kernel/git/tytso/ext4
[pandora-kernel.git] / kernel / power / disk.c
1 /*
2  * kernel/power/disk.c - Suspend-to-disk support.
3  *
4  * Copyright (c) 2003 Patrick Mochel
5  * Copyright (c) 2003 Open Source Development Lab
6  * Copyright (c) 2004 Pavel Machek <pavel@suse.cz>
7  *
8  * This file is released under the GPLv2.
9  *
10  */
11
12 #include <linux/suspend.h>
13 #include <linux/syscalls.h>
14 #include <linux/reboot.h>
15 #include <linux/string.h>
16 #include <linux/device.h>
17 #include <linux/kmod.h>
18 #include <linux/delay.h>
19 #include <linux/fs.h>
20 #include <linux/mount.h>
21 #include <linux/pm.h>
22 #include <linux/console.h>
23 #include <linux/cpu.h>
24 #include <linux/freezer.h>
25
26 #include "power.h"
27
28
29 static int noresume = 0;
30 static char resume_file[256] = CONFIG_PM_STD_PARTITION;
31 dev_t swsusp_resume_device;
32 sector_t swsusp_resume_block;
33
34 enum {
35         HIBERNATION_INVALID,
36         HIBERNATION_PLATFORM,
37         HIBERNATION_TEST,
38         HIBERNATION_TESTPROC,
39         HIBERNATION_SHUTDOWN,
40         HIBERNATION_REBOOT,
41         /* keep last */
42         __HIBERNATION_AFTER_LAST
43 };
44 #define HIBERNATION_MAX (__HIBERNATION_AFTER_LAST-1)
45 #define HIBERNATION_FIRST (HIBERNATION_INVALID + 1)
46
47 static int hibernation_mode = HIBERNATION_SHUTDOWN;
48
49 static struct platform_hibernation_ops *hibernation_ops;
50
51 /**
52  * hibernation_set_ops - set the global hibernate operations
53  * @ops: the hibernation operations to use in subsequent hibernation transitions
54  */
55
56 void hibernation_set_ops(struct platform_hibernation_ops *ops)
57 {
58         if (ops && !(ops->begin && ops->end &&  ops->pre_snapshot
59             && ops->prepare && ops->finish && ops->enter && ops->pre_restore
60             && ops->restore_cleanup)) {
61                 WARN_ON(1);
62                 return;
63         }
64         mutex_lock(&pm_mutex);
65         hibernation_ops = ops;
66         if (ops)
67                 hibernation_mode = HIBERNATION_PLATFORM;
68         else if (hibernation_mode == HIBERNATION_PLATFORM)
69                 hibernation_mode = HIBERNATION_SHUTDOWN;
70
71         mutex_unlock(&pm_mutex);
72 }
73
74 #ifdef CONFIG_PM_DEBUG
75 static void hibernation_debug_sleep(void)
76 {
77         printk(KERN_INFO "hibernation debug: Waiting for 5 seconds.\n");
78         mdelay(5000);
79 }
80
81 static int hibernation_testmode(int mode)
82 {
83         if (hibernation_mode == mode) {
84                 hibernation_debug_sleep();
85                 return 1;
86         }
87         return 0;
88 }
89
90 static int hibernation_test(int level)
91 {
92         if (pm_test_level == level) {
93                 hibernation_debug_sleep();
94                 return 1;
95         }
96         return 0;
97 }
98 #else /* !CONFIG_PM_DEBUG */
99 static int hibernation_testmode(int mode) { return 0; }
100 static int hibernation_test(int level) { return 0; }
101 #endif /* !CONFIG_PM_DEBUG */
102
103 /**
104  *      platform_begin - tell the platform driver that we're starting
105  *      hibernation
106  */
107
108 static int platform_begin(int platform_mode)
109 {
110         return (platform_mode && hibernation_ops) ?
111                 hibernation_ops->begin() : 0;
112 }
113
114 /**
115  *      platform_end - tell the platform driver that we've entered the
116  *      working state
117  */
118
119 static void platform_end(int platform_mode)
120 {
121         if (platform_mode && hibernation_ops)
122                 hibernation_ops->end();
123 }
124
125 /**
126  *      platform_pre_snapshot - prepare the machine for hibernation using the
127  *      platform driver if so configured and return an error code if it fails
128  */
129
130 static int platform_pre_snapshot(int platform_mode)
131 {
132         return (platform_mode && hibernation_ops) ?
133                 hibernation_ops->pre_snapshot() : 0;
134 }
135
136 /**
137  *      platform_leave - prepare the machine for switching to the normal mode
138  *      of operation using the platform driver (called with interrupts disabled)
139  */
140
141 static void platform_leave(int platform_mode)
142 {
143         if (platform_mode && hibernation_ops)
144                 hibernation_ops->leave();
145 }
146
147 /**
148  *      platform_finish - switch the machine to the normal mode of operation
149  *      using the platform driver (must be called after platform_prepare())
150  */
151
152 static void platform_finish(int platform_mode)
153 {
154         if (platform_mode && hibernation_ops)
155                 hibernation_ops->finish();
156 }
157
158 /**
159  *      platform_pre_restore - prepare the platform for the restoration from a
160  *      hibernation image.  If the restore fails after this function has been
161  *      called, platform_restore_cleanup() must be called.
162  */
163
164 static int platform_pre_restore(int platform_mode)
165 {
166         return (platform_mode && hibernation_ops) ?
167                 hibernation_ops->pre_restore() : 0;
168 }
169
170 /**
171  *      platform_restore_cleanup - switch the platform to the normal mode of
172  *      operation after a failing restore.  If platform_pre_restore() has been
173  *      called before the failing restore, this function must be called too,
174  *      regardless of the result of platform_pre_restore().
175  */
176
177 static void platform_restore_cleanup(int platform_mode)
178 {
179         if (platform_mode && hibernation_ops)
180                 hibernation_ops->restore_cleanup();
181 }
182
183 /**
184  *      platform_recover - recover the platform from a failure to suspend
185  *      devices.
186  */
187
188 static void platform_recover(int platform_mode)
189 {
190         if (platform_mode && hibernation_ops && hibernation_ops->recover)
191                 hibernation_ops->recover();
192 }
193
194 /**
195  *      create_image - freeze devices that need to be frozen with interrupts
196  *      off, create the hibernation image and thaw those devices.  Control
197  *      reappears in this routine after a restore.
198  */
199
200 static int create_image(int platform_mode)
201 {
202         int error;
203
204         error = arch_prepare_suspend();
205         if (error)
206                 return error;
207
208         device_pm_lock();
209         local_irq_disable();
210         /* At this point, device_suspend() has been called, but *not*
211          * device_power_down(). We *must* call device_power_down() now.
212          * Otherwise, drivers for some devices (e.g. interrupt controllers)
213          * become desynchronized with the actual state of the hardware
214          * at resume time, and evil weirdness ensues.
215          */
216         error = device_power_down(PMSG_FREEZE);
217         if (error) {
218                 printk(KERN_ERR "PM: Some devices failed to power down, "
219                         "aborting hibernation\n");
220                 goto Enable_irqs;
221         }
222
223         if (hibernation_test(TEST_CORE))
224                 goto Power_up;
225
226         in_suspend = 1;
227         save_processor_state();
228         error = swsusp_arch_suspend();
229         if (error)
230                 printk(KERN_ERR "PM: Error %d creating hibernation image\n",
231                         error);
232         /* Restore control flow magically appears here */
233         restore_processor_state();
234         if (!in_suspend)
235                 platform_leave(platform_mode);
236  Power_up:
237         /* NOTE:  device_power_up() is just a resume() for devices
238          * that suspended with irqs off ... no overall powerup.
239          */
240         device_power_up(in_suspend ?
241                 (error ? PMSG_RECOVER : PMSG_THAW) : PMSG_RESTORE);
242  Enable_irqs:
243         local_irq_enable();
244         device_pm_unlock();
245         return error;
246 }
247
248 /**
249  *      hibernation_snapshot - quiesce devices and create the hibernation
250  *      snapshot image.
251  *      @platform_mode - if set, use the platform driver, if available, to
252  *                       prepare the platform frimware for the power transition.
253  *
254  *      Must be called with pm_mutex held
255  */
256
257 int hibernation_snapshot(int platform_mode)
258 {
259         int error;
260
261         /* Free memory before shutting down devices. */
262         error = swsusp_shrink_memory();
263         if (error)
264                 return error;
265
266         error = platform_begin(platform_mode);
267         if (error)
268                 goto Close;
269
270         suspend_console();
271         error = device_suspend(PMSG_FREEZE);
272         if (error)
273                 goto Recover_platform;
274
275         if (hibernation_test(TEST_DEVICES))
276                 goto Recover_platform;
277
278         error = platform_pre_snapshot(platform_mode);
279         if (error || hibernation_test(TEST_PLATFORM))
280                 goto Finish;
281
282         error = disable_nonboot_cpus();
283         if (!error) {
284                 if (hibernation_test(TEST_CPUS))
285                         goto Enable_cpus;
286
287                 if (hibernation_testmode(HIBERNATION_TEST))
288                         goto Enable_cpus;
289
290                 error = create_image(platform_mode);
291                 /* Control returns here after successful restore */
292         }
293  Enable_cpus:
294         enable_nonboot_cpus();
295  Finish:
296         platform_finish(platform_mode);
297  Resume_devices:
298         device_resume(in_suspend ?
299                 (error ? PMSG_RECOVER : PMSG_THAW) : PMSG_RESTORE);
300         resume_console();
301  Close:
302         platform_end(platform_mode);
303         return error;
304
305  Recover_platform:
306         platform_recover(platform_mode);
307         goto Resume_devices;
308 }
309
310 /**
311  *      resume_target_kernel - prepare devices that need to be suspended with
312  *      interrupts off, restore the contents of highmem that have not been
313  *      restored yet from the image and run the low level code that will restore
314  *      the remaining contents of memory and switch to the just restored target
315  *      kernel.
316  */
317
318 static int resume_target_kernel(void)
319 {
320         int error;
321
322         device_pm_lock();
323         local_irq_disable();
324         error = device_power_down(PMSG_QUIESCE);
325         if (error) {
326                 printk(KERN_ERR "PM: Some devices failed to power down, "
327                         "aborting resume\n");
328                 goto Enable_irqs;
329         }
330         /* We'll ignore saved state, but this gets preempt count (etc) right */
331         save_processor_state();
332         error = restore_highmem();
333         if (!error) {
334                 error = swsusp_arch_resume();
335                 /*
336                  * The code below is only ever reached in case of a failure.
337                  * Otherwise execution continues at place where
338                  * swsusp_arch_suspend() was called
339                  */
340                 BUG_ON(!error);
341                 /* This call to restore_highmem() undos the previous one */
342                 restore_highmem();
343         }
344         /*
345          * The only reason why swsusp_arch_resume() can fail is memory being
346          * very tight, so we have to free it as soon as we can to avoid
347          * subsequent failures
348          */
349         swsusp_free();
350         restore_processor_state();
351         touch_softlockup_watchdog();
352         device_power_up(PMSG_RECOVER);
353  Enable_irqs:
354         local_irq_enable();
355         device_pm_unlock();
356         return error;
357 }
358
359 /**
360  *      hibernation_restore - quiesce devices and restore the hibernation
361  *      snapshot image.  If successful, control returns in hibernation_snaphot()
362  *      @platform_mode - if set, use the platform driver, if available, to
363  *                       prepare the platform frimware for the transition.
364  *
365  *      Must be called with pm_mutex held
366  */
367
368 int hibernation_restore(int platform_mode)
369 {
370         int error;
371
372         pm_prepare_console();
373         suspend_console();
374         error = device_suspend(PMSG_QUIESCE);
375         if (error)
376                 goto Finish;
377
378         error = platform_pre_restore(platform_mode);
379         if (!error) {
380                 error = disable_nonboot_cpus();
381                 if (!error)
382                         error = resume_target_kernel();
383                 enable_nonboot_cpus();
384         }
385         platform_restore_cleanup(platform_mode);
386         device_resume(PMSG_RECOVER);
387  Finish:
388         resume_console();
389         pm_restore_console();
390         return error;
391 }
392
393 /**
394  *      hibernation_platform_enter - enter the hibernation state using the
395  *      platform driver (if available)
396  */
397
398 int hibernation_platform_enter(void)
399 {
400         int error;
401
402         if (!hibernation_ops)
403                 return -ENOSYS;
404
405         /*
406          * We have cancelled the power transition by running
407          * hibernation_ops->finish() before saving the image, so we should let
408          * the firmware know that we're going to enter the sleep state after all
409          */
410         error = hibernation_ops->begin();
411         if (error)
412                 goto Close;
413
414         suspend_console();
415         error = device_suspend(PMSG_HIBERNATE);
416         if (error) {
417                 if (hibernation_ops->recover)
418                         hibernation_ops->recover();
419                 goto Resume_devices;
420         }
421
422         error = hibernation_ops->prepare();
423         if (error)
424                 goto Resume_devices;
425
426         error = disable_nonboot_cpus();
427         if (error)
428                 goto Finish;
429
430         device_pm_lock();
431         local_irq_disable();
432         error = device_power_down(PMSG_HIBERNATE);
433         if (!error) {
434                 hibernation_ops->enter();
435                 /* We should never get here */
436                 while (1);
437         }
438         local_irq_enable();
439         device_pm_unlock();
440
441         /*
442          * We don't need to reenable the nonboot CPUs or resume consoles, since
443          * the system is going to be halted anyway.
444          */
445  Finish:
446         hibernation_ops->finish();
447  Resume_devices:
448         device_resume(PMSG_RESTORE);
449         resume_console();
450  Close:
451         hibernation_ops->end();
452         return error;
453 }
454
455 /**
456  *      power_down - Shut the machine down for hibernation.
457  *
458  *      Use the platform driver, if configured so; otherwise try
459  *      to power off or reboot.
460  */
461
462 static void power_down(void)
463 {
464         switch (hibernation_mode) {
465         case HIBERNATION_TEST:
466         case HIBERNATION_TESTPROC:
467                 break;
468         case HIBERNATION_REBOOT:
469                 kernel_restart(NULL);
470                 break;
471         case HIBERNATION_PLATFORM:
472                 hibernation_platform_enter();
473         case HIBERNATION_SHUTDOWN:
474                 kernel_power_off();
475                 break;
476         }
477         kernel_halt();
478         /*
479          * Valid image is on the disk, if we continue we risk serious data
480          * corruption after resume.
481          */
482         printk(KERN_CRIT "PM: Please power down manually\n");
483         while(1);
484 }
485
486 static int prepare_processes(void)
487 {
488         int error = 0;
489
490         if (freeze_processes()) {
491                 error = -EBUSY;
492                 thaw_processes();
493         }
494         return error;
495 }
496
497 /**
498  *      hibernate - The granpappy of the built-in hibernation management
499  */
500
501 int hibernate(void)
502 {
503         int error;
504
505         mutex_lock(&pm_mutex);
506         /* The snapshot device should not be opened while we're running */
507         if (!atomic_add_unless(&snapshot_device_available, -1, 0)) {
508                 error = -EBUSY;
509                 goto Unlock;
510         }
511
512         pm_prepare_console();
513         error = pm_notifier_call_chain(PM_HIBERNATION_PREPARE);
514         if (error)
515                 goto Exit;
516
517         error = usermodehelper_disable();
518         if (error)
519                 goto Exit;
520
521         /* Allocate memory management structures */
522         error = create_basic_memory_bitmaps();
523         if (error)
524                 goto Exit;
525
526         printk(KERN_INFO "PM: Syncing filesystems ... ");
527         sys_sync();
528         printk("done.\n");
529
530         error = prepare_processes();
531         if (error)
532                 goto Finish;
533
534         if (hibernation_test(TEST_FREEZER))
535                 goto Thaw;
536
537         if (hibernation_testmode(HIBERNATION_TESTPROC))
538                 goto Thaw;
539
540         error = hibernation_snapshot(hibernation_mode == HIBERNATION_PLATFORM);
541         if (in_suspend && !error) {
542                 unsigned int flags = 0;
543
544                 if (hibernation_mode == HIBERNATION_PLATFORM)
545                         flags |= SF_PLATFORM_MODE;
546                 pr_debug("PM: writing image.\n");
547                 error = swsusp_write(flags);
548                 swsusp_free();
549                 if (!error)
550                         power_down();
551         } else {
552                 pr_debug("PM: Image restored successfully.\n");
553                 swsusp_free();
554         }
555  Thaw:
556         thaw_processes();
557  Finish:
558         free_basic_memory_bitmaps();
559         usermodehelper_enable();
560  Exit:
561         pm_notifier_call_chain(PM_POST_HIBERNATION);
562         pm_restore_console();
563         atomic_inc(&snapshot_device_available);
564  Unlock:
565         mutex_unlock(&pm_mutex);
566         return error;
567 }
568
569
570 /**
571  *      software_resume - Resume from a saved image.
572  *
573  *      Called as a late_initcall (so all devices are discovered and
574  *      initialized), we call swsusp to see if we have a saved image or not.
575  *      If so, we quiesce devices, the restore the saved image. We will
576  *      return above (in hibernate() ) if everything goes well.
577  *      Otherwise, we fail gracefully and return to the normally
578  *      scheduled program.
579  *
580  */
581
582 static int software_resume(void)
583 {
584         int error;
585         unsigned int flags;
586
587         /*
588          * name_to_dev_t() below takes a sysfs buffer mutex when sysfs
589          * is configured into the kernel. Since the regular hibernate
590          * trigger path is via sysfs which takes a buffer mutex before
591          * calling hibernate functions (which take pm_mutex) this can
592          * cause lockdep to complain about a possible ABBA deadlock
593          * which cannot happen since we're in the boot code here and
594          * sysfs can't be invoked yet. Therefore, we use a subclass
595          * here to avoid lockdep complaining.
596          */
597         mutex_lock_nested(&pm_mutex, SINGLE_DEPTH_NESTING);
598         if (!swsusp_resume_device) {
599                 if (!strlen(resume_file)) {
600                         mutex_unlock(&pm_mutex);
601                         return -ENOENT;
602                 }
603                 swsusp_resume_device = name_to_dev_t(resume_file);
604                 pr_debug("PM: Resume from partition %s\n", resume_file);
605         } else {
606                 pr_debug("PM: Resume from partition %d:%d\n",
607                                 MAJOR(swsusp_resume_device),
608                                 MINOR(swsusp_resume_device));
609         }
610
611         if (noresume) {
612                 /**
613                  * FIXME: If noresume is specified, we need to find the
614                  * partition and reset it back to normal swap space.
615                  */
616                 mutex_unlock(&pm_mutex);
617                 return 0;
618         }
619
620         pr_debug("PM: Checking hibernation image.\n");
621         error = swsusp_check();
622         if (error)
623                 goto Unlock;
624
625         /* The snapshot device should not be opened while we're running */
626         if (!atomic_add_unless(&snapshot_device_available, -1, 0)) {
627                 error = -EBUSY;
628                 goto Unlock;
629         }
630
631         pm_prepare_console();
632         error = pm_notifier_call_chain(PM_RESTORE_PREPARE);
633         if (error)
634                 goto Finish;
635
636         error = usermodehelper_disable();
637         if (error)
638                 goto Finish;
639
640         error = create_basic_memory_bitmaps();
641         if (error)
642                 goto Finish;
643
644         pr_debug("PM: Preparing processes for restore.\n");
645         error = prepare_processes();
646         if (error) {
647                 swsusp_close(FMODE_READ);
648                 goto Done;
649         }
650
651         pr_debug("PM: Reading hibernation image.\n");
652
653         error = swsusp_read(&flags);
654         if (!error)
655                 hibernation_restore(flags & SF_PLATFORM_MODE);
656
657         printk(KERN_ERR "PM: Restore failed, recovering.\n");
658         swsusp_free();
659         thaw_processes();
660  Done:
661         free_basic_memory_bitmaps();
662         usermodehelper_enable();
663  Finish:
664         pm_notifier_call_chain(PM_POST_RESTORE);
665         pm_restore_console();
666         atomic_inc(&snapshot_device_available);
667         /* For success case, the suspend path will release the lock */
668  Unlock:
669         mutex_unlock(&pm_mutex);
670         pr_debug("PM: Resume from disk failed.\n");
671         return error;
672 }
673
674 late_initcall(software_resume);
675
676
677 static const char * const hibernation_modes[] = {
678         [HIBERNATION_PLATFORM]  = "platform",
679         [HIBERNATION_SHUTDOWN]  = "shutdown",
680         [HIBERNATION_REBOOT]    = "reboot",
681         [HIBERNATION_TEST]      = "test",
682         [HIBERNATION_TESTPROC]  = "testproc",
683 };
684
685 /**
686  *      disk - Control hibernation mode
687  *
688  *      Suspend-to-disk can be handled in several ways. We have a few options
689  *      for putting the system to sleep - using the platform driver (e.g. ACPI
690  *      or other hibernation_ops), powering off the system or rebooting the
691  *      system (for testing) as well as the two test modes.
692  *
693  *      The system can support 'platform', and that is known a priori (and
694  *      encoded by the presence of hibernation_ops). However, the user may
695  *      choose 'shutdown' or 'reboot' as alternatives, as well as one fo the
696  *      test modes, 'test' or 'testproc'.
697  *
698  *      show() will display what the mode is currently set to.
699  *      store() will accept one of
700  *
701  *      'platform'
702  *      'shutdown'
703  *      'reboot'
704  *      'test'
705  *      'testproc'
706  *
707  *      It will only change to 'platform' if the system
708  *      supports it (as determined by having hibernation_ops).
709  */
710
711 static ssize_t disk_show(struct kobject *kobj, struct kobj_attribute *attr,
712                          char *buf)
713 {
714         int i;
715         char *start = buf;
716
717         for (i = HIBERNATION_FIRST; i <= HIBERNATION_MAX; i++) {
718                 if (!hibernation_modes[i])
719                         continue;
720                 switch (i) {
721                 case HIBERNATION_SHUTDOWN:
722                 case HIBERNATION_REBOOT:
723                 case HIBERNATION_TEST:
724                 case HIBERNATION_TESTPROC:
725                         break;
726                 case HIBERNATION_PLATFORM:
727                         if (hibernation_ops)
728                                 break;
729                         /* not a valid mode, continue with loop */
730                         continue;
731                 }
732                 if (i == hibernation_mode)
733                         buf += sprintf(buf, "[%s] ", hibernation_modes[i]);
734                 else
735                         buf += sprintf(buf, "%s ", hibernation_modes[i]);
736         }
737         buf += sprintf(buf, "\n");
738         return buf-start;
739 }
740
741
742 static ssize_t disk_store(struct kobject *kobj, struct kobj_attribute *attr,
743                           const char *buf, size_t n)
744 {
745         int error = 0;
746         int i;
747         int len;
748         char *p;
749         int mode = HIBERNATION_INVALID;
750
751         p = memchr(buf, '\n', n);
752         len = p ? p - buf : n;
753
754         mutex_lock(&pm_mutex);
755         for (i = HIBERNATION_FIRST; i <= HIBERNATION_MAX; i++) {
756                 if (len == strlen(hibernation_modes[i])
757                     && !strncmp(buf, hibernation_modes[i], len)) {
758                         mode = i;
759                         break;
760                 }
761         }
762         if (mode != HIBERNATION_INVALID) {
763                 switch (mode) {
764                 case HIBERNATION_SHUTDOWN:
765                 case HIBERNATION_REBOOT:
766                 case HIBERNATION_TEST:
767                 case HIBERNATION_TESTPROC:
768                         hibernation_mode = mode;
769                         break;
770                 case HIBERNATION_PLATFORM:
771                         if (hibernation_ops)
772                                 hibernation_mode = mode;
773                         else
774                                 error = -EINVAL;
775                 }
776         } else
777                 error = -EINVAL;
778
779         if (!error)
780                 pr_debug("PM: Hibernation mode set to '%s'\n",
781                          hibernation_modes[mode]);
782         mutex_unlock(&pm_mutex);
783         return error ? error : n;
784 }
785
786 power_attr(disk);
787
788 static ssize_t resume_show(struct kobject *kobj, struct kobj_attribute *attr,
789                            char *buf)
790 {
791         return sprintf(buf,"%d:%d\n", MAJOR(swsusp_resume_device),
792                        MINOR(swsusp_resume_device));
793 }
794
795 static ssize_t resume_store(struct kobject *kobj, struct kobj_attribute *attr,
796                             const char *buf, size_t n)
797 {
798         unsigned int maj, min;
799         dev_t res;
800         int ret = -EINVAL;
801
802         if (sscanf(buf, "%u:%u", &maj, &min) != 2)
803                 goto out;
804
805         res = MKDEV(maj,min);
806         if (maj != MAJOR(res) || min != MINOR(res))
807                 goto out;
808
809         mutex_lock(&pm_mutex);
810         swsusp_resume_device = res;
811         mutex_unlock(&pm_mutex);
812         printk(KERN_INFO "PM: Starting manual resume from disk\n");
813         noresume = 0;
814         software_resume();
815         ret = n;
816  out:
817         return ret;
818 }
819
820 power_attr(resume);
821
822 static ssize_t image_size_show(struct kobject *kobj, struct kobj_attribute *attr,
823                                char *buf)
824 {
825         return sprintf(buf, "%lu\n", image_size);
826 }
827
828 static ssize_t image_size_store(struct kobject *kobj, struct kobj_attribute *attr,
829                                 const char *buf, size_t n)
830 {
831         unsigned long size;
832
833         if (sscanf(buf, "%lu", &size) == 1) {
834                 image_size = size;
835                 return n;
836         }
837
838         return -EINVAL;
839 }
840
841 power_attr(image_size);
842
843 static struct attribute * g[] = {
844         &disk_attr.attr,
845         &resume_attr.attr,
846         &image_size_attr.attr,
847         NULL,
848 };
849
850
851 static struct attribute_group attr_group = {
852         .attrs = g,
853 };
854
855
856 static int __init pm_disk_init(void)
857 {
858         return sysfs_create_group(power_kobj, &attr_group);
859 }
860
861 core_initcall(pm_disk_init);
862
863
864 static int __init resume_setup(char *str)
865 {
866         if (noresume)
867                 return 1;
868
869         strncpy( resume_file, str, 255 );
870         return 1;
871 }
872
873 static int __init resume_offset_setup(char *str)
874 {
875         unsigned long long offset;
876
877         if (noresume)
878                 return 1;
879
880         if (sscanf(str, "%llu", &offset) == 1)
881                 swsusp_resume_block = offset;
882
883         return 1;
884 }
885
886 static int __init noresume_setup(char *str)
887 {
888         noresume = 1;
889         return 1;
890 }
891
892 __setup("noresume", noresume_setup);
893 __setup("resume_offset=", resume_offset_setup);
894 __setup("resume=", resume_setup);