NTFS3 file system kernel mode driver
 help / color / mirror / Atom feed
 messages from 2025-09-09 09:14:33 to 2025-10-20 12:12:47 UTC [more...]

[PATCH v5 00/15] expand mmap_prepare functionality, port more users
 2025-10-20 12:11 UTC  (16+ messages)
` [PATCH v5 01/15] mm/shmem: update shmem to use mmap_prepare
` [PATCH v5 02/15] device/dax: update devdax "
` [PATCH v5 03/15] mm/vma: remove unused function, make internal functions static
` [PATCH v5 04/15] mm: add vma_desc_size(), vma_desc_pages() helpers
` [PATCH v5 05/15] relay: update relay to use mmap_prepare
` [PATCH v5 06/15] mm/vma: rename __mmap_prepare() function to avoid confusion
` [PATCH v5 07/15] mm: add remap_pfn_range_prepare(), remap_pfn_range_complete()
` [PATCH v5 08/15] mm: abstract io_remap_pfn_range() based on PFN
` [PATCH v5 09/15] mm: introduce io_remap_pfn_range_[prepare, complete]()
` [PATCH v5 10/15] mm: add ability to take further action in vm_area_desc
` [PATCH v5 11/15] doc: update porting, vfs documentation for mmap_prepare actions
` [PATCH v5 12/15] mm/hugetlbfs: update hugetlbfs to use mmap_prepare
` [PATCH v5 13/15] mm: add shmem_zero_setup_desc()
` [PATCH v5 14/15] mm: update mem char driver to use mmap_prepare
` [PATCH v5 15/15] mm: update resctl "

[PATCH v4 00/14] expand mmap_prepare functionality, port more users
 2025-10-20 10:58 UTC  (33+ messages)
` [PATCH v4 01/14] mm/shmem: update shmem to use mmap_prepare
` [PATCH v4 02/14] device/dax: update devdax "
` [PATCH v4 03/14] mm: add vma_desc_size(), vma_desc_pages() helpers
` [PATCH v4 04/14] relay: update relay to use mmap_prepare
` [PATCH v4 05/14] mm/vma: rename __mmap_prepare() function to avoid confusion
` [PATCH v4 06/14] mm: add remap_pfn_range_prepare(), remap_pfn_range_complete()
` [PATCH v4 07/14] mm: abstract io_remap_pfn_range() based on PFN
` [PATCH v4 08/14] mm: introduce io_remap_pfn_range_[prepare, complete]()
` [PATCH v4 09/14] mm: add ability to take further action in vm_area_desc
` [PATCH v4 10/14] doc: update porting, vfs documentation for mmap_prepare actions
` [PATCH v4 11/14] mm/hugetlbfs: update hugetlbfs to use mmap_prepare
` [PATCH v4 12/14] mm: add shmem_zero_setup_desc()
` [PATCH v4 13/14] mm: update mem char driver to use mmap_prepare
` [PATCH v4 14/14] mm: update resctl "

[PATCH] fs/ntfs3: Support timestamps prior to epoch
 2025-10-17 10:17 UTC 

[PATCH] fs/ntfs3: fix mount failure for sparse runs in run_unpack()
 2025-10-17 10:18 UTC 

[PATCH] fs/ntfs3: Reformat code and update terminology
 2025-10-17 10:17 UTC 

[PATCH] ntfs3: prevent operations on NTFS system files
 2025-10-14 16:01 UTC  (4+ messages)

[syzbot] [ntfs3?] INFO: trying to register non-static key in ntfs_setattr
 2025-10-13 21:58 UTC 

[PATCH v2] ntfs3: fix uninit memory after failed mi_read in mi_format_new
 2025-10-12 20:16 UTC 

[syzbot] [ntfs3?] WARNING in indx_insert_into_buffer (3)
 2025-10-09  2:37 UTC  (3+ messages)
` [PATCH] ntfs3: avoid memcpy size warning

[PATCH] fs/ntfs3: fix uninitialized memory in ni_create_attr_list()
 2025-10-07 13:40 UTC 

[PATCH] fs/ntfs3: fix KMSAN uninit-value in ni_create_attr_list
 2025-10-07  0:47 UTC  (2+ messages)
` [syzbot] [ntfs3?] KMSAN: uninit-value in attr_set_size

[Bug] Memory allocation errors and system crashing due to buggy disk cache/inode allocations by ntfs3 kernel module
 2025-10-06 10:30 UTC 

[syzbot] [ntfs3?] KMSAN: uninit-value in attr_set_size
 2025-10-05 23:31 UTC 

[Bug] Memory allocation errors and system crashing due to buggy disk cache/inode allocations by ntfs3 kernel module
 2025-10-04 11:26 UTC  (4+ messages)

[syzbot] [ntfs3?] INFO: trying to register non-static key in ntfs_set_size
 2025-10-04 10:43 UTC  (5+ messages)
` [PATCH Next] ntfs3: init run lock for extend inode

[GIT PULL] ntfs3: bugfixes for 6.18
 2025-10-03 21:31 UTC  (3+ messages)

[PATCH] ntfs: set dummy blocksize to read boot_block when mounting
 2025-10-03 15:38 UTC 

[syzbot] [ntfs3?] [usb?] general protection fault in rtlock_slowlock_locked
 2025-10-02 16:01 UTC 

[PATCH] ntfs3: fix uninit memory after failed mi_read in mi_format_new
 2025-09-28 15:25 UTC  (3+ messages)

[syzbot] Monthly ntfs3 report (Sep 2025)
 2025-09-25 16:00 UTC 

[PATCH v1] ntfs3: Fix uninit buffer allocated by __getname()
 2025-09-23  6:40 UTC 

[PATCH v2 00/16] expand mmap_prepare functionality, port more users
 2025-09-19  5:13 UTC  (55+ messages)
` [PATCH v2 01/16] mm/shmem: update shmem to use mmap_prepare
` [PATCH v2 02/16] device/dax: update devdax "
` [PATCH v2 03/16] mm: add vma_desc_size(), vma_desc_pages() helpers
` [PATCH v2 04/16] relay: update relay to use mmap_prepare
` [PATCH v2 05/16] mm/vma: rename __mmap_prepare() function to avoid confusion
` [PATCH v2 06/16] mm: add remap_pfn_range_prepare(), remap_pfn_range_complete()
` [PATCH v2 07/16] mm: introduce io_remap_pfn_range_[prepare, complete]()
` [PATCH v2 08/16] mm: add ability to take further action in vm_area_desc
` [PATCH v2 09/16] doc: update porting, vfs documentation for mmap_prepare actions
` [PATCH v2 10/16] mm/hugetlbfs: update hugetlbfs to use mmap_prepare
` [PATCH v2 11/16] mm: update mem char driver "
` [PATCH v2 12/16] mm: update resctl "
` [PATCH v2 13/16] mm: update cramfs "
` [PATCH v2 14/16] fs/proc: add the proc_mmap_prepare hook for procfs
` [PATCH v2 15/16] fs/proc: update vmcore to use .proc_mmap_prepare
` [PATCH v2 16/16] kcov: update kcov to use mmap_prepare

[syzbot] [ntfs3?] KMSAN: uninit-value in ntfs_read_hdr (3)
 2025-09-17 22:55 UTC 

[PATCH v3 00/13] expand mmap_prepare functionality, port more users
 2025-09-17 15:34 UTC  (49+ messages)
` [PATCH v3 01/13] mm/shmem: update shmem to use mmap_prepare
` [PATCH v3 02/13] device/dax: update devdax "
` [PATCH v3 03/13] mm: add vma_desc_size(), vma_desc_pages() helpers
` [PATCH v3 04/13] relay: update relay to use mmap_prepare
` [PATCH v3 05/13] mm/vma: rename __mmap_prepare() function to avoid confusion
` [PATCH v3 06/13] mm: add remap_pfn_range_prepare(), remap_pfn_range_complete()
` [PATCH v3 07/13] mm: introduce io_remap_pfn_range_[prepare, complete]()
` [PATCH v3 08/13] mm: add ability to take further action in vm_area_desc
` [PATCH v3 09/13] doc: update porting, vfs documentation for mmap_prepare actions
` [PATCH v3 10/13] mm/hugetlbfs: update hugetlbfs to use mmap_prepare
` [PATCH v3 11/13] mm: update mem char driver "
` [PATCH v3 12/13] mm: update resctl "
` [PATCH v3 13/13] iommufd: update "

[PATCH RESEND] fs/ntfs3: Fix a resource leak bug in wnd_extend()
 2025-09-15 13:23 UTC 

[syzbot] [ntfs3?] kernel BUG in dnotify_free_mark
 2025-09-15  7:48 UTC 

[PATCH] ntfs3: fix use-after-free of sbi->options in cmp_fnames
 2025-09-10 15:17 UTC 

[PATCH 00/16] expand mmap_prepare functionality, port more users
 2025-09-09 17:36 UTC  (9+ messages)
` [PATCH 06/16] mm: introduce the f_op->mmap_complete, mmap_abort hooks

[PATCH 03/16] mm: add vma_desc_size(), vma_desc_pages() helpers
 2025-09-09  9:21 UTC  (11+ messages)


This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).