aboutsummaryrefslogtreecommitdiffstats
path: root/fs/fuse/fuse_i.h
diff options
context:
space:
mode:
authorMiklos Szeredi <mszeredi@suse.cz>2008-11-26 06:03:54 -0500
committerMiklos Szeredi <miklos@szeredi.hu>2008-11-26 06:03:54 -0500
commit1729a16c2c92bbd9e54ac7cad3101fea2e073aa5 (patch)
tree6814c8f122d6e7e6993d3af6ea427b3958b9a4f2 /fs/fuse/fuse_i.h
parented313489badef16d700f5a3be50e8fd8f8294bc8 (diff)
fuse: style fixes
Fix coding style errors reported by checkpatch and others. Uptdate copyright date to 2008. Signed-off-by: Miklos Szeredi <mszeredi@suse.cz>
Diffstat (limited to 'fs/fuse/fuse_i.h')
-rw-r--r--fs/fuse/fuse_i.h38
1 files changed, 19 insertions, 19 deletions
diff --git a/fs/fuse/fuse_i.h b/fs/fuse/fuse_i.h
index 35accfdd747f..4fc5131f5c9d 100644
--- a/fs/fuse/fuse_i.h
+++ b/fs/fuse/fuse_i.h
@@ -1,6 +1,6 @@
1/* 1/*
2 FUSE: Filesystem in Userspace 2 FUSE: Filesystem in Userspace
3 Copyright (C) 2001-2006 Miklos Szeredi <miklos@szeredi.hu> 3 Copyright (C) 2001-2008 Miklos Szeredi <miklos@szeredi.hu>
4 4
5 This program can be distributed under the terms of the GNU GPL. 5 This program can be distributed under the terms of the GNU GPL.
6 See the file COPYING. 6 See the file COPYING.
@@ -355,19 +355,19 @@ struct fuse_conn {
355 /** Connection failed (version mismatch). Cannot race with 355 /** Connection failed (version mismatch). Cannot race with
356 setting other bitfields since it is only set once in INIT 356 setting other bitfields since it is only set once in INIT
357 reply, before any other request, and never cleared */ 357 reply, before any other request, and never cleared */
358 unsigned conn_error : 1; 358 unsigned conn_error:1;
359 359
360 /** Connection successful. Only set in INIT */ 360 /** Connection successful. Only set in INIT */
361 unsigned conn_init : 1; 361 unsigned conn_init:1;
362 362
363 /** Do readpages asynchronously? Only set in INIT */ 363 /** Do readpages asynchronously? Only set in INIT */
364 unsigned async_read : 1; 364 unsigned async_read:1;
365 365
366 /** Do not send separate SETATTR request before open(O_TRUNC) */ 366 /** Do not send separate SETATTR request before open(O_TRUNC) */
367 unsigned atomic_o_trunc : 1; 367 unsigned atomic_o_trunc:1;
368 368
369 /** Filesystem supports NFS exporting. Only set in INIT */ 369 /** Filesystem supports NFS exporting. Only set in INIT */
370 unsigned export_support : 1; 370 unsigned export_support:1;
371 371
372 /* 372 /*
373 * The following bitfields are only for optimization purposes 373 * The following bitfields are only for optimization purposes
@@ -375,43 +375,43 @@ struct fuse_conn {
375 */ 375 */
376 376
377 /** Is fsync not implemented by fs? */ 377 /** Is fsync not implemented by fs? */
378 unsigned no_fsync : 1; 378 unsigned no_fsync:1;
379 379
380 /** Is fsyncdir not implemented by fs? */ 380 /** Is fsyncdir not implemented by fs? */
381 unsigned no_fsyncdir : 1; 381 unsigned no_fsyncdir:1;
382 382
383 /** Is flush not implemented by fs? */ 383 /** Is flush not implemented by fs? */
384 unsigned no_flush : 1; 384 unsigned no_flush:1;
385 385
386 /** Is setxattr not implemented by fs? */ 386 /** Is setxattr not implemented by fs? */
387 unsigned no_setxattr : 1; 387 unsigned no_setxattr:1;
388 388
389 /** Is getxattr not implemented by fs? */ 389 /** Is getxattr not implemented by fs? */
390 unsigned no_getxattr : 1; 390 unsigned no_getxattr:1;
391 391
392 /** Is listxattr not implemented by fs? */ 392 /** Is listxattr not implemented by fs? */
393 unsigned no_listxattr : 1; 393 unsigned no_listxattr:1;
394 394
395 /** Is removexattr not implemented by fs? */ 395 /** Is removexattr not implemented by fs? */
396 unsigned no_removexattr : 1; 396 unsigned no_removexattr:1;
397 397
398 /** Are file locking primitives not implemented by fs? */ 398 /** Are file locking primitives not implemented by fs? */
399 unsigned no_lock : 1; 399 unsigned no_lock:1;
400 400
401 /** Is access not implemented by fs? */ 401 /** Is access not implemented by fs? */
402 unsigned no_access : 1; 402 unsigned no_access:1;
403 403
404 /** Is create not implemented by fs? */ 404 /** Is create not implemented by fs? */
405 unsigned no_create : 1; 405 unsigned no_create:1;
406 406
407 /** Is interrupt not implemented by fs? */ 407 /** Is interrupt not implemented by fs? */
408 unsigned no_interrupt : 1; 408 unsigned no_interrupt:1;
409 409
410 /** Is bmap not implemented by fs? */ 410 /** Is bmap not implemented by fs? */
411 unsigned no_bmap : 1; 411 unsigned no_bmap:1;
412 412
413 /** Do multi-page cached writes */ 413 /** Do multi-page cached writes */
414 unsigned big_writes : 1; 414 unsigned big_writes:1;
415 415
416 /** The number of requests waiting for completion */ 416 /** The number of requests waiting for completion */
417 atomic_t num_waiting; 417 atomic_t num_waiting;