search for: nfs_fs

Displaying 8 results from an estimated 8 matches for "nfs_fs".

Did you mean: ufs_fs
2006 Jun 26
0
[klibc 14/43] Remove in-kernel nfsroot code
...f9b5842..71d6b30 100644 --- a/fs/Kconfig +++ b/fs/Kconfig @@ -1498,20 +1498,6 @@ config NFSD_TCP TCP connections usually perform better than the default UDP when the network is lossy or congested. If unsure, say Y. -config ROOT_NFS - bool "Root file system on NFS" - depends on NFS_FS=y && IP_PNP - help - If you want your Linux box to mount its whole root file system (the - one containing the directory /) from some other computer over the - net via NFS (presumably because your box doesn't have a hard disk), - say Y. Read <file:Documentation/nfsroot.txt>...
2023 Jan 31
1
[PATCH 01/23] block: factor out a bvec_set_page helper
On Mon, Jan 30, 2023 at 08:47:58PM -0800, Jakub Kicinski wrote: > kinda random thought but since we're touching this area - could we > perhaps move the definition of struct bio_vec and trivial helpers > like this into a new header? bvec.h pulls in mm.h which is a right > behemoth :S I bet we can drop mm.h now. It was originally added for nth_page() in 3d75ca0adef4 but those were
2019 Feb 05
0
[vhost:linux-next 3/23] include/linux/swiotlb.h:105:20: error: static declaration of 'is_swiotlb_active' follows non-static declaration
...from include/linux/skbuff.h:34, from include/net/net_namespace.h:36, from include/linux/inet.h:46, from include/linux/sunrpc/msg_prot.h:204, from include/linux/sunrpc/auth.h:16, from include/linux/nfs_fs.h:31, from init/do_mounts.c:22: include/linux/swiotlb.h:100:22: error: static declaration of 'swiotlb_max_mapping_size' follows non-static declaration static inline size_t swiotlb_max_mapping_size(struct device *dev) ^~~~~~~~~~~~~~~~~~~~~~...
2008 Jul 17
1
[PATCH] stopmachine: add stopmachine_timeout v4
...;lock); + kfree(threads); + + return -EBUSY; /* canceled */ } int stop_machine_run(int (*fn)(void *), void *data, const cpumask_t *cpus) diff --git a/kernel/sysctl.c b/kernel/sysctl.c index 2911665..d9e9900 100644 --- a/kernel/sysctl.c +++ b/kernel/sysctl.c @@ -46,6 +46,7 @@ #include <linux/nfs_fs.h> #include <linux/acpi.h> #include <linux/reboot.h> +#include <linux/stop_machine.h> #include <asm/uaccess.h> #include <asm/processor.h> @@ -813,6 +814,17 @@ static struct ctl_table kern_table[] = { .child = key_sysctls, }, #endif +#if defined(CONFIG_S...
2008 Jul 17
1
[PATCH] stopmachine: add stopmachine_timeout v4
...;lock); + kfree(threads); + + return -EBUSY; /* canceled */ } int stop_machine_run(int (*fn)(void *), void *data, const cpumask_t *cpus) diff --git a/kernel/sysctl.c b/kernel/sysctl.c index 2911665..d9e9900 100644 --- a/kernel/sysctl.c +++ b/kernel/sysctl.c @@ -46,6 +46,7 @@ #include <linux/nfs_fs.h> #include <linux/acpi.h> #include <linux/reboot.h> +#include <linux/stop_machine.h> #include <asm/uaccess.h> #include <asm/processor.h> @@ -813,6 +814,17 @@ static struct ctl_table kern_table[] = { .child = key_sysctls, }, #endif +#if defined(CONFIG_S...
2003 May 22
0
[PATCH 2.5.69 2/3] Remove NFS root support from the kernel
...Bryan O'Sullivan + <bos@serpentine.com>, respectively. diff -Nru a/arch/arm/def-configs/a5k b/arch/arm/def-configs/a5k --- a/arch/arm/def-configs/a5k Thu May 22 15:40:37 2003 +++ b/arch/arm/def-configs/a5k Thu May 22 15:40:37 2003 @@ -408,7 +408,6 @@ # CONFIG_CODA_FS is not set CONFIG_NFS_FS=y # CONFIG_NFS_V3 is not set -# CONFIG_ROOT_NFS is not set # CONFIG_NFSD is not set # CONFIG_NFSD_V3 is not set CONFIG_SUNRPC=y diff -Nru a/arch/arm/def-configs/adi_evb b/arch/arm/def-configs/adi_evb --- a/arch/arm/def-configs/adi_evb Thu May 22 15:40:37 2003 +++ b/arch/arm/def-configs/adi_evb...
2013 Oct 21
11
swapfile on btrfs, temporary solution for wiki
Hello list, i know what btrfs don''t support swap files. I read arch wiki and when i reading about systemd addon for auto create swapfile on btrfs, i invent the way, how create and using swap file, just see following sh code: swapfile=$(losetup -f) #free loop device truncate -s 8G /swap #create 8G sparse swap file losetup $swapfile /swap #mount file to loop mkswap $swapfile swapon
2003 May 22
0
[PATCH 2.5.69 1/3] remove ipconfig support from the kernel
...ET_IPIP is not set # CONFIG_NET_IPGRE is not set # CONFIG_IP_MROUTE is not set diff -Nru a/fs/Kconfig b/fs/Kconfig --- a/fs/Kconfig Thu May 22 15:41:57 2003 +++ b/fs/Kconfig Thu May 22 15:41:57 2003 @@ -1331,15 +1331,12 @@ config ROOT_NFS bool "Root file system on NFS" - depends on NFS_FS=y && IP_PNP + depends on NFS_FS=y && NFS_FS=n help If you want your Linux box to mount its whole root file system (the one containing the directory /) from some other computer over the net via NFS (presumably because your box doesn't have a hard disk), - say Y. R...