1. 20 Jun, 2004 3 commits
    • Hirofumi Ogawa's avatar
      [PATCH] FAT: don't use "utf8" charset and NLS_DEFAULT · f9a0a291
      Hirofumi Ogawa authored
      Recently, some distributors have set "utf8" to NLS_DEFAULT, therefore,
      FAT uses the "iocharset=utf8" as default.  But, since "iocharset=utf8"
      doesn't provide the function (lower <-> upper conversion) which FAT
      needs, so FAT can't provide suitable behavior.
      
      This patch does:
      
           - doesn't recognize "utf8" as "iocharset"
           - doesn't use NLS_DEFAULT as default "iocharset"
           - instead of NLS_DEFAULT, adds FAT_DEFAULT_CODEPAGE and
             FAT_DEFAULT_IOCHARSET
         
      NOTE: the following looks like buggy, so it's not recommended
      
          "codepage=437,iocharset=iso8859-1,utf8"
      
      however, some utf8 file name can handle. (in this case, it uses the
      table of iso8859-1 for lower <-> upper conversion)
      Sign-off-by: default avatarJesse Barnes <jbarnes@engr.sgi.com>
      Sign-off-by: default avatarOGAWA Hirofumi <hirofumi@mail.parknet.co.jp>
      Sign-off-by: default avatarLinus Torvalds <torvalds@osdl.org>
      f9a0a291
    • Linus Torvalds's avatar
      b2fba2f3
    • Arjan van de Ven's avatar
      [PATCH] fix amd64 boot breakage · 22e53c65
      Arjan van de Ven authored
      This fixes a bug that prevent my amd64 box from booting;
      numa_default_policy was __init however it's called like this in
      init/main.c:
      
              free_initmem();
              unlock_kernel();
              system_state = SYSTEM_RUNNING;
              numa_default_policy();
      
      
      eg after free_initmem(). This resulted in it being reused/freed and that
      gives a nasty oops.
      22e53c65
  2. 19 Jun, 2004 1 commit
  3. 20 Jun, 2004 1 commit
  4. 19 Jun, 2004 28 commits
  5. 18 Jun, 2004 7 commits