boottime.c 1.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566
  1. /*
  2. * GRUB -- GRand Unified Bootloader
  3. * Copyright (C) 2013 Free Software Foundation, Inc.
  4. *
  5. * GRUB is free software: you can redistribute it and/or modify
  6. * it under the terms of the GNU General Public License as published by
  7. * the Free Software Foundation, either version 3 of the License, or
  8. * (at your option) any later version.
  9. *
  10. * GRUB is distributed in the hope that it will be useful,
  11. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  12. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  13. * GNU General Public License for more details.
  14. *
  15. * You should have received a copy of the GNU General Public License
  16. * along with GRUB. If not, see <http://www.gnu.org/licenses/>.
  17. */
  18. #include <grub/dl.h>
  19. #include <grub/misc.h>
  20. #include <grub/command.h>
  21. #include <grub/i18n.h>
  22. GRUB_MOD_LICENSE ("GPLv3+");
  23. static grub_err_t
  24. grub_cmd_boottime (struct grub_command *cmd __attribute__ ((unused)),
  25. int argc __attribute__ ((unused)),
  26. char *argv[] __attribute__ ((unused)))
  27. {
  28. struct grub_boot_time *cur;
  29. grub_uint64_t last_time = 0, start_time = 0;
  30. if (!grub_boot_time_head)
  31. {
  32. grub_puts_ (N_("No boot time statistics is available\n"));
  33. return 0;
  34. }
  35. start_time = last_time = grub_boot_time_head->tp;
  36. for (cur = grub_boot_time_head; cur; cur = cur->next)
  37. {
  38. grub_uint32_t tmabs = cur->tp - start_time;
  39. grub_uint32_t tmrel = cur->tp - last_time;
  40. last_time = cur->tp;
  41. grub_printf ("%3d.%03ds %2d.%03ds %s:%d %s\n",
  42. tmabs / 1000, tmabs % 1000, tmrel / 1000, tmrel % 1000, cur->file, cur->line,
  43. cur->msg);
  44. }
  45. return 0;
  46. }
  47. static grub_command_t cmd_boottime;
  48. GRUB_MOD_INIT(boottime)
  49. {
  50. cmd_boottime =
  51. grub_register_command ("boottime", grub_cmd_boottime,
  52. 0, N_("Show boot time statistics."));
  53. }
  54. GRUB_MOD_FINI(boottime)
  55. {
  56. grub_unregister_command (cmd_boottime);
  57. }