linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] Designated initializers for shm
@ 2002-08-28  5:28 Rusty Russell
  0 siblings, 0 replies; only message in thread
From: Rusty Russell @ 2002-08-28  5:28 UTC (permalink / raw)
  To: torvalds, linux-kernel; +Cc: trivial

[ This is the last remenant in kernel/, mm/ and ipc/ ]

Name: Designated initializers for kernel/, mm/ and ipc/
Author: Rusty Russell
Status: Trivial

D: The old form of designated initializers are obsolete: we need to
D: replace them with the ISO C forms before 2.6.  Gcc has always supported
D: both forms anyway.

diff -urpN --exclude TAGS -X /home/rusty/devel/kernel/kernel-patches/current-dontdiff --minimal .15522-linux-2.5.30/ipc/shm.c .15522-linux-2.5.30.updated/ipc/shm.c
--- .15522-linux-2.5.30/ipc/shm.c	2002-08-02 11:15:10.000000000 +1000
+++ .15522-linux-2.5.30.updated/ipc/shm.c	2002-08-09 16:14:44.000000000 +1000
@@ -154,13 +154,13 @@ static int shm_mmap(struct file * file, 
 }
 
 static struct file_operations shm_file_operations = {
-	mmap:	shm_mmap
+	.mmap	= shm_mmap
 };
 
 static struct vm_operations_struct shm_vm_ops = {
-	open:	shm_open,	/* callback for a new vm-area open */
-	close:	shm_close,	/* callback for when the vm-area is released */
-	nopage:	shmem_nopage,
+	.open	= shm_open,	/* callback for a new vm-area open */
+	.close	= shm_close,	/* callback for when the vm-area is released */
+	.nopage	= shmem_nopage,
 };
 
 static int newseg (key_t key, int shmflg, size_t size)

--
  Anyone who quotes me in their sig is an idiot. -- Rusty Russell.

^ permalink raw reply	[flat|nested] only message in thread

only message in thread, other threads:[~2002-08-28  5:32 UTC | newest]

Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2002-08-28  5:28 [PATCH] Designated initializers for shm Rusty Russell

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 NNTP newsgroup(s).