Changeset e4d8513 in rtems for cpukit/libfs/src/nfsclient/src/rpcio.c
- Timestamp:
- Nov 14, 2014, 7:58:00 AM (6 years ago)
- Branches:
- 4.11, 5, master
- Children:
- 9e8d8b5c
- Parents:
- 69e3f27
- git-author:
- Daniel Cederman <cederman@…> (11/14/14 07:58:00)
- git-committer:
- Daniel Hellstrom <daniel@…> (12/02/14 12:41:20)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
cpukit/libfs/src/nfsclient/src/rpcio.c
r69e3f27 re4d8513 85 85 #include <netinet/in.h> 86 86 #include <arpa/inet.h> 87 #include <sys/cpuset.h> 87 88 88 89 #include "rpcio.h" … … 408 409 409 410 rtems_task_priority rpciodPriority = 0; 411 #ifdef RTEMS_SMP 412 const cpu_set_t *rpciodCpuset = 0; 413 size_t rpciodCpusetSize = 0; 414 #endif 410 415 411 416 #if (DEBUG) & DEBUG_MALLOC … … 983 988 &rpciod); 984 989 assert( status == RTEMS_SUCCESSFUL ); 990 991 #ifdef RTEMS_SMP 992 if ( rpciodCpuset == 0 ) { 993 rpciodCpuset = rtems_bsdnet_config.network_task_cpuset; 994 rpciodCpusetSize = rtems_bsdnet_config.network_task_cpuset_size; 995 } 996 if ( rpciodCpuset != 0 ) 997 rtems_task_set_affinity( rpciod, rpciodCpusetSize, rpciodCpuset ); 998 #endif 985 999 986 1000 wkup.sw_pfn = rxWakeupCB;
Note: See TracChangeset
for help on using the changeset viewer.