Ticket #256 (closed defect: duplicate)
Assertion failed (idxp->pfc) at file 'fat_ops.c', line 295.
| Reported by: | jermar | Owned by: | |
|---|---|---|---|
| Priority: | major | Milestone: | 0.4.3 |
| Component: | helenos/fs/fat | Version: | mainline |
| Keywords: | Cc: | ||
| Blocker for: | Depends on: | ||
| See also: |
Description (last modified by jermar) (diff)
Running changeset:lp:~jakub/helenos/fs,165, which was merged into changeset:mainline,625 I occasionally hit the following assertion:
Assertion failed (idxp->pfc) at file 'fat_ops.c', line 295.
when unlinking a file which is being written to (using the setup from ticket #255 + unlinking the large file at some point).
Attachments
Change History
Changed 21 months ago by jermar
-
attachment
Screenshot-QEMU-1.png
added
Kernel console displaying the stack trace.
Note: See
TracTickets for help on using
tickets.

The corresponding line in fat_ops.c is from the beginning of fat_node_get_core():
/* * We must instantiate the node from the file system. */ assert(idxp->pfc); rc = fat_node_get_new(&nodep); ...