~ubuntu-branches/ubuntu/precise/linux-lowlatency/precise

« back to all changes in this revision

Viewing changes to fs/fat/namei_vfat.c

  • Committer: Package Import Robot
  • Author(s): Luke Yelavich, Luke Yelavich, Upstream Kernel Changes
  • Date: 2012-04-04 18:49:36 UTC
  • Revision ID: package-import@ubuntu.com-20120404184936-tqu735914muv4wpg
Tags: 3.2.0-22.30
[ Luke Yelavich ]

* [Config] Update configs after rebase against Ubuntu-3.2.0-22.35

[ Upstream Kernel Changes ]

* Low-latency: Rebase against Ubuntu-3.2.0-22.35

Show diffs side-by-side

added added

removed removed

Lines of Context:
512
512
        int charlen;
513
513
 
514
514
        if (utf8) {
515
 
                *outlen = utf8s_to_utf16s(name, len, (wchar_t *)outname);
 
515
                *outlen = utf8s_to_utf16s(name, len, UTF16_HOST_ENDIAN,
 
516
                                (wchar_t *) outname, FAT_LFN_LEN + 2);
516
517
                if (*outlen < 0)
517
518
                        return *outlen;
518
519
                else if (*outlen > FAT_LFN_LEN)