Merge branch 'svn-trunk'

This commit is contained in:
Bart Van Assche
2015-11-13 21:29:59 -08:00
4 changed files with 5 additions and 5 deletions

View File

@@ -20,7 +20,8 @@
* GNU General Public License for more details.
*/
#include <linux/writeback.h> /* sync_page_range() */
#include <linux/slab.h> /* kmalloc() */
#include <linux/writeback.h> /* sync_page_range() */
/* <asm-generic/barrier.h> */

View File

@@ -20,7 +20,7 @@ uninstall:
perl-module:
@cd ./scst-$(MODULE_VERSION); \
perl Makefile.PL;
perl Makefile.PL PREFIX=$(PREFIX);
$(MAKE) -C scst-$(MODULE_VERSION)
test:

View File

@@ -550,7 +550,8 @@ sub drivers {
if (opendir($dHandle, $_path)) {
foreach my $driver (readdir($dHandle)) {
next if (($driver eq '.') || ($driver eq '..'));
next if ($driver eq '.' || $driver eq '..' ||
$driver eq 'copy_manager');
if (-d make_path(SCST_TARGETS_DIR(), $driver)) {
push @drivers, $driver;

View File

@@ -1423,8 +1423,6 @@ sub writeConfiguration {
}
foreach my $driver (sort keys %{$CURRENT{'assign'}}) {
next if $driver eq 'copy_manager';
my $driver_buff;
my ($drv_attrs, $errorString) = $SCST->driverAttributes($driver);