a2eec26922d024859a4ef5913ffd7ddb14f525d9
[reactos.git] / drivers / fs / cdfs / cleanup.c
1 /*
2  *  ReactOS kernel
3  *  Copyright (C) 2002 ReactOS Team
4  *
5  *  This program is free software; you can redistribute it and/or modify
6  *  it under the terms of the GNU General Public License as published by
7  *  the Free Software Foundation; either version 2 of the License, or
8  *  (at your option) any later version.
9  *
10  *  This program is distributed in the hope that it will be useful,
11  *  but WITHOUT ANY WARRANTY; without even the implied warranty of
12  *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13  *  GNU General Public License for more details.
14  *
15  *  You should have received a copy of the GNU General Public License
16  *  along with this program; if not, write to the Free Software
17  *  Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
18  */
19 /* $Id$
20  *
21  * COPYRIGHT:        See COPYING in the top level directory
22  * PROJECT:          ReactOS kernel
23  * FILE:             services/fs/cdfs/cleanup.c
24  * PURPOSE:          CDROM (ISO 9660) filesystem driver
25  * PROGRAMMER:       Hartmut Birr
26  * UPDATE HISTORY: 
27  */
28
29 /* INCLUDES *****************************************************************/
30
31 #include <ddk/ntddk.h>
32
33 #define NDEBUG
34 #include <debug.h>
35
36 #include "cdfs.h"
37
38
39 /* FUNCTIONS ****************************************************************/
40
41 static NTSTATUS
42 CdfsCleanupFile(PDEVICE_EXTENSION DeviceExt,
43               PFILE_OBJECT FileObject)
44 /*
45  * FUNCTION: Cleans up after a file has been closed.
46  */
47 {
48
49   DPRINT("CdfsCleanupFile(DeviceExt %x, FileObject %x)\n",
50          DeviceExt,
51          FileObject);
52
53
54   /* Uninitialize file cache if initialized for this file object. */
55   if (FileObject->SectionObjectPointers && FileObject->SectionObjectPointers->SharedCacheMap)
56     {
57       CcRosReleaseFileCache (FileObject);
58     }
59  
60   return STATUS_SUCCESS;
61 }
62
63 NTSTATUS STDCALL
64 CdfsCleanup(PDEVICE_OBJECT DeviceObject,
65           PIRP Irp)
66 {
67   PDEVICE_EXTENSION DeviceExtension;
68   PIO_STACK_LOCATION Stack;
69   PFILE_OBJECT FileObject;
70   NTSTATUS Status;
71
72   DPRINT("CdfsCleanup() called\n");
73
74   if (DeviceObject == CdfsGlobalData->DeviceObject)
75     {
76       DPRINT("Closing file system\n");
77       Status = STATUS_SUCCESS;
78       goto ByeBye;
79     }
80
81   Stack = IoGetCurrentIrpStackLocation(Irp);
82   FileObject = Stack->FileObject;
83   DeviceExtension = DeviceObject->DeviceExtension;
84
85   ExAcquireResourceExclusiveLite(&DeviceExtension->DirResource, TRUE);
86
87   Status = CdfsCleanupFile(DeviceExtension, FileObject);
88
89   ExReleaseResourceLite(&DeviceExtension->DirResource);
90
91
92 ByeBye:
93   Irp->IoStatus.Status = Status;
94   Irp->IoStatus.Information = 0;
95
96   IoCompleteRequest(Irp, IO_NO_INCREMENT);
97   return(Status);
98 }
99
100 /* EOF */