main (void)
{
- fmode_t *ptr;
+ fmode_t *ptr __attribute__ ((unused));
;
return 0;
main (void)
{
- int val;
+ int val __attribute__ ((unused));
val = KOBJ_NAME_LEN;
;
main (void)
{
- struct block_device *bdev;
+ struct block_device *bdev = NULL;
invalidate_bdev(bdev);
;
main (void)
{
- int flags;
+ int flags __attribute__ ((unused));
flags = (1 << BIO_RW_FAILFAST);
;
main (void)
{
- int flags;
+ int flags __attribute__ ((unused));
flags = ((1 << BIO_RW_FAILFAST_DEV) |
(1 << BIO_RW_FAILFAST_TRANSPORT) |
(1 << BIO_RW_FAILFAST_DRIVER));
main (void)
{
- int flags;
+ int flags __attribute__ ((unused));
flags = REQ_FAILFAST_MASK;
;
{
void (*wanted_end_io)(struct bio *, int) = NULL;
- bio_end_io_t *local_end_io;
+ bio_end_io_t *local_end_io __attribute__ ((unused));
local_end_io = wanted_end_io;
main (void)
{
- int flags;
+ int flags __attribute__ ((unused));
flags = BIO_RW_SYNC;
;
main (void)
{
- int flags;
+ int flags __attribute__ ((unused));
flags = BIO_RW_SYNCIO;
;
main (void)
{
- int flags;
+ int flags __attribute__ ((unused));
flags = REQ_SYNC;
;
main (void)
{
- struct super_block sb;
+ struct super_block sb __attribute__ ((unused));
sb.s_xattr = xattr_handlers;
int (*get)(struct dentry *dentry, const char *name,
void *buffer, size_t size, int handler_flags) = NULL;
- struct xattr_handler xops;
+ struct xattr_handler xops __attribute__ ((unused));
xops.get = get;
int (*set)(struct dentry *dentry, const char *name,
const void *buffer, size_t size, int flags,
int handler_flags) = NULL;
- struct xattr_handler xops;
+ struct xattr_handler xops __attribute__ ((unused));
xops.set = set;
{
int (*fsync) (struct file *, int datasync) = NULL;
- struct file_operations fops;
+ struct file_operations fops __attribute__ ((unused));
fops.fsync = fsync;
{
void (*evict_inode) (struct inode *) = NULL;
- struct super_operations sops;
+ struct super_operations sops __attribute__ ((unused));
sops.evict_inode = evict_inode;
main (void)
{
- fmode_t *ptr;
+ fmode_t *ptr __attribute__ ((unused));
;
return 0;
main (void)
{
- int val;
+ int val __attribute__ ((unused));
val = KOBJ_NAME_LEN;
;
main (void)
{
- struct block_device *bdev;
+ struct block_device *bdev = NULL;
invalidate_bdev(bdev);
;
main (void)
{
- int flags;
+ int flags __attribute__ ((unused));
flags = (1 << BIO_RW_FAILFAST);
;
main (void)
{
- int flags;
+ int flags __attribute__ ((unused));
flags = ((1 << BIO_RW_FAILFAST_DEV) |
(1 << BIO_RW_FAILFAST_TRANSPORT) |
(1 << BIO_RW_FAILFAST_DRIVER));
main (void)
{
- int flags;
+ int flags __attribute__ ((unused));
flags = REQ_FAILFAST_MASK;
;
{
void (*wanted_end_io)(struct bio *, int) = NULL;
- bio_end_io_t *local_end_io;
+ bio_end_io_t *local_end_io __attribute__ ((unused));
local_end_io = wanted_end_io;
main (void)
{
- int flags;
+ int flags __attribute__ ((unused));
flags = BIO_RW_SYNC;
;
main (void)
{
- int flags;
+ int flags __attribute__ ((unused));
flags = BIO_RW_SYNCIO;
;
main (void)
{
- int flags;
+ int flags __attribute__ ((unused));
flags = REQ_SYNC;
;
main (void)
{
- struct super_block sb;
+ struct super_block sb __attribute__ ((unused));
sb.s_xattr = xattr_handlers;
int (*get)(struct dentry *dentry, const char *name,
void *buffer, size_t size, int handler_flags) = NULL;
- struct xattr_handler xops;
+ struct xattr_handler xops __attribute__ ((unused));
xops.get = get;
int (*set)(struct dentry *dentry, const char *name,
const void *buffer, size_t size, int flags,
int handler_flags) = NULL;
- struct xattr_handler xops;
+ struct xattr_handler xops __attribute__ ((unused));
xops.set = set;
{
int (*fsync) (struct file *, int datasync) = NULL;
- struct file_operations fops;
+ struct file_operations fops __attribute__ ((unused));
fops.fsync = fsync;
{
void (*evict_inode) (struct inode *) = NULL;
- struct super_operations sops;
+ struct super_operations sops __attribute__ ((unused));
sops.evict_inode = evict_inode;