diff options
author | Christoph Hellwig <hch@lst.de> | 2018-11-08 09:28:20 +0100 |
---|---|---|
committer | Martin K. Petersen <martin.petersen@oracle.com> | 2019-02-05 21:28:52 -0500 |
commit | 19fcae3d4f2dd513d472055fb694d802e9a21b91 (patch) | |
tree | 8bcd2155c5e073576dea32ce958b366f311bfbab /drivers/scsi/osd/osd_debug.h | |
parent | 80f2121380caa14895638b24b81800158c0844f2 (diff) | |
download | linux-19fcae3d4f2dd513d472055fb694d802e9a21b91.tar.gz linux-19fcae3d4f2dd513d472055fb694d802e9a21b91.tar.bz2 linux-19fcae3d4f2dd513d472055fb694d802e9a21b91.zip |
scsi: remove the SCSI OSD library
Now that all the users are gone the SCSI OSD library can be removed as
well.
Signed-off-by: Christoph Hellwig <hch@lst.de>
Reviewed-by: Jens Axboe <axboe@kernel.dk>
Signed-off-by: Martin K. Petersen <martin.petersen@oracle.com>
Diffstat (limited to 'drivers/scsi/osd/osd_debug.h')
-rw-r--r-- | drivers/scsi/osd/osd_debug.h | 30 |
1 files changed, 0 insertions, 30 deletions
diff --git a/drivers/scsi/osd/osd_debug.h b/drivers/scsi/osd/osd_debug.h deleted file mode 100644 index 26341261bb5c..000000000000 --- a/drivers/scsi/osd/osd_debug.h +++ /dev/null @@ -1,30 +0,0 @@ -/* - * osd_debug.h - Some kprintf macros - * - * Copyright (C) 2008 Panasas Inc. All rights reserved. - * - * Authors: - * Boaz Harrosh <ooo@electrozaur.com> - * Benny Halevy <bhalevy@panasas.com> - * - * This program is free software; you can redistribute it and/or modify - * it under the terms of the GNU General Public License version 2 - * - */ -#ifndef __OSD_DEBUG_H__ -#define __OSD_DEBUG_H__ - -#define OSD_ERR(fmt, a...) printk(KERN_ERR "osd: " fmt, ##a) -#define OSD_INFO(fmt, a...) printk(KERN_NOTICE "osd: " fmt, ##a) - -#ifdef CONFIG_SCSI_OSD_DEBUG -#define OSD_DEBUG(fmt, a...) \ - printk(KERN_NOTICE "osd @%s:%d: " fmt, __func__, __LINE__, ##a) -#else -#define OSD_DEBUG(fmt, a...) do {} while (0) -#endif - -/* u64 has problems with printk this will cast it to unsigned long long */ -#define _LLU(x) (unsigned long long)(x) - -#endif /* ndef __OSD_DEBUG_H__ */ |