Gamin (File Alteration Monitor) - Python 3 migration
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

27 lines
779 B

4 years ago
  1. From b92b17ecced6df463da73d6de566740cf5cd00d4 Mon Sep 17 00:00:00 2001
  2. From: Marek Kasik <mkasik@redhat.com>
  3. Date: Fri, 1 Feb 2013 15:19:58 +0100
  4. Subject: [PATCH 1/2] Poll files on nfs4
  5. Add nfs4 among polled filesystems.
  6. https://bugzilla.gnome.org/show_bug.cgi?id=693006
  7. ---
  8. server/gam_fs.c | 1 +
  9. 1 file changed, 1 insertion(+)
  10. diff --git a/server/gam_fs.c b/server/gam_fs.c
  11. index c8ca704..143a603 100644
  12. --- a/server/gam_fs.c
  13. +++ b/server/gam_fs.c
  14. @@ -178,6 +178,7 @@ gam_fs_init (void)
  15. gam_fs_set ("reiserfs", GFS_MT_DEFAULT, 0);
  16. gam_fs_set ("novfs", GFS_MT_POLL, 30);
  17. gam_fs_set ("nfs", GFS_MT_POLL, 5);
  18. + gam_fs_set ("nfs4", GFS_MT_POLL, 5);
  19. if (stat("/etc/mtab", &mtab_sbuf) != 0)
  20. {
  21. GAM_DEBUG(DEBUG_INFO, "Could not stat /etc/mtab\n");
  22. --
  23. 1.8.1.2